sql stringlengths 6 1.05M |
|---|
drop database if exists sample_db;
create database sample_db;
|
<filename>src/main/resources/db/migration/V4__create-table-user.sql
CREATE TABLE tb_user (
id SERIAL PRIMARY KEY,
name VARCHAR(128) NOT NULL,
email VARCHAR(256) NOT NULL UNIQUE,
password VARCHAR(256),
user_role_id INT NOT NULL,
enabled BOOLEAN NOT NULL,
consecutive_wrong_attempts INT NOT NULL,
password_last_updated_at TIMESTAMPTZ(6),
created_at TIMESTAMPTZ(6) NOT NULL,
updated_at TIMESTAMPTZ(6) NOT NULL,
CONSTRAINT fk_user_role FOREIGN KEY(user_role_id) REFERENCES tb_user_role(id)
); |
CREATE DATABASE tbl_usertbl_user;
CREATE TABLE `tbl_user` (
`id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`nohp` VARCHAR(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` VARCHAR(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`alamat` TEXT COLLATE utf8mb4_unicode_ci NOT NULL,
`password` VARCHAR(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`remember_token` VARCHAR(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` TIMESTAMP NULL DEFAULT NULL,
`updated_at` TIMESTAMP NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `tbl_user_email_unique` (`email`)
);
CREATE TABLE `tbl_produk` (
`id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`nama_produk` VARCHAR(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`image` VARCHAR(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`harga` INTEGER(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`stok` INTEGER(20) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
); |
USE [master]
GO
/****** Object: Database [SoccerStars] Script Date: 4/30/2019 11:46:36 AM ******/
CREATE DATABASE [SoccerStars]
GO
ALTER DATABASE [SoccerStars] SET COMPATIBILITY_LEVEL = 140
GO
IF (1 = FULLTEXTSERVICEPROPERTY('IsFullTextInstalled'))
begin
EXEC [SoccerStars].[dbo].[sp_fulltext_database] @action = 'enable'
end
GO
ALTER DATABASE [SoccerStars] SET ANSI_NULL_DEFAULT OFF
GO
ALTER DATABASE [SoccerStars] SET ANSI_NULLS OFF
GO
ALTER DATABASE [SoccerStars] SET ANSI_PADDING OFF
GO
ALTER DATABASE [SoccerStars] SET ANSI_WARNINGS OFF
GO
ALTER DATABASE [SoccerStars] SET ARITHABORT OFF
GO
ALTER DATABASE [SoccerStars] SET AUTO_CLOSE OFF
GO
ALTER DATABASE [SoccerStars] SET AUTO_SHRINK OFF
GO
ALTER DATABASE [SoccerStars] SET AUTO_UPDATE_STATISTICS ON
GO
ALTER DATABASE [SoccerStars] SET CURSOR_CLOSE_ON_COMMIT OFF
GO
ALTER DATABASE [SoccerStars] SET CURSOR_DEFAULT GLOBAL
GO
ALTER DATABASE [SoccerStars] SET CONCAT_NULL_YIELDS_NULL OFF
GO
ALTER DATABASE [SoccerStars] SET NUMERIC_ROUNDABORT OFF
GO
ALTER DATABASE [SoccerStars] SET QUOTED_IDENTIFIER OFF
GO
ALTER DATABASE [SoccerStars] SET RECURSIVE_TRIGGERS OFF
GO
ALTER DATABASE [SoccerStars] SET ENABLE_BROKER
GO
ALTER DATABASE [SoccerStars] SET AUTO_UPDATE_STATISTICS_ASYNC OFF
GO
ALTER DATABASE [SoccerStars] SET DATE_CORRELATION_OPTIMIZATION OFF
GO
ALTER DATABASE [SoccerStars] SET TRUSTWORTHY OFF
GO
ALTER DATABASE [SoccerStars] SET ALLOW_SNAPSHOT_ISOLATION OFF
GO
ALTER DATABASE [SoccerStars] SET PARAMETERIZATION SIMPLE
GO
ALTER DATABASE [SoccerStars] SET READ_COMMITTED_SNAPSHOT OFF
GO
ALTER DATABASE [SoccerStars] SET HONOR_BROKER_PRIORITY OFF
GO
ALTER DATABASE [SoccerStars] SET RECOVERY FULL
GO
ALTER DATABASE [SoccerStars] SET MULTI_USER
GO
ALTER DATABASE [SoccerStars] SET PAGE_VERIFY CHECKSUM
GO
ALTER DATABASE [SoccerStars] SET DB_CHAINING OFF
GO
ALTER DATABASE [SoccerStars] SET FILESTREAM( NON_TRANSACTED_ACCESS = OFF )
GO
ALTER DATABASE [SoccerStars] SET TARGET_RECOVERY_TIME = 60 SECONDS
GO
ALTER DATABASE [SoccerStars] SET DELAYED_DURABILITY = DISABLED
GO
EXEC sys.sp_db_vardecimal_storage_format N'SoccerStars', N'ON'
GO
ALTER DATABASE [SoccerStars] SET QUERY_STORE = OFF
GO
USE [SoccerStars]
GO
/****** Object: Table [dbo].[Country] Script Date: 4/30/2019 11:46:37 AM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Country](
[CountryId] [int] IDENTITY(1,1) NOT NULL,
[Country] [varchar](40) NOT NULL,
[Abbreviation] [varchar](5) NOT NULL,
CONSTRAINT [PK_Country_1] PRIMARY KEY CLUSTERED
(
[CountryId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[Player] Script Date: 4/30/2019 11:46:37 AM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Player](
[PlayerId] [int] IDENTITY(1,1) NOT NULL,
[FullName] [varchar](40) NOT NULL,
[Nickname] [varchar](40) NULL,
[CountryId] [int] NOT NULL,
CONSTRAINT [PK_Player] PRIMARY KEY CLUSTERED
(
[PlayerId] ASC,
[CountryId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[Player_Team] Script Date: 4/30/2019 11:46:37 AM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Player_Team](
[PlayerId] [int] NOT NULL,
[TeamId] [int] NOT NULL,
[FromYear] [int] NOT NULL,
[ToYear] [int] NOT NULL,
CONSTRAINT [PK_Player_Team_1] PRIMARY KEY CLUSTERED
(
[PlayerId] ASC,
[TeamId] ASC,
[FromYear] ASC,
[ToYear] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[Team] Script Date: 4/30/2019 11:46:37 AM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Team](
[TeamId] [int] IDENTITY(1,1) NOT NULL,
[Team] [varchar](40) NOT NULL,
[Stadium] [varchar](70) NOT NULL,
[Colors] [varchar](40) NULL,
CONSTRAINT [PK_Team] PRIMARY KEY CLUSTERED
(
[TeamId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
SET IDENTITY_INSERT [dbo].[Country] ON
INSERT [dbo].[Country] ([CountryId], [Country], [Abbreviation]) VALUES (2, N'Brazil', N'BRA')
INSERT [dbo].[Country] ([CountryId], [Country], [Abbreviation]) VALUES (3, N'Argentina', N'ARG')
INSERT [dbo].[Country] ([CountryId], [Country], [Abbreviation]) VALUES (4, N'England', N'ENG')
INSERT [dbo].[Country] ([CountryId], [Country], [Abbreviation]) VALUES (5, N'Italy', N'ITA')
INSERT [dbo].[Country] ([CountryId], [Country], [Abbreviation]) VALUES (6, N'Spain', N'SPA')
INSERT [dbo].[Country] ([CountryId], [Country], [Abbreviation]) VALUES (7, N'Germany', N'GER')
INSERT [dbo].[Country] ([CountryId], [Country], [Abbreviation]) VALUES (8, N'Japan', N'JAP')
INSERT [dbo].[Country] ([CountryId], [Country], [Abbreviation]) VALUES (9, N'France', N'FRA')
SET IDENTITY_INSERT [dbo].[Country] OFF
SET IDENTITY_INSERT [dbo].[Player] ON
INSERT [dbo].[Player] ([PlayerId], [FullName], [Nickname], [CountryId]) VALUES (2, N'<NAME>', N'Zico', 2)
INSERT [dbo].[Player] ([PlayerId], [FullName], [Nickname], [CountryId]) VALUES (3, N'<NAME>', N'Messi', 3)
SET IDENTITY_INSERT [dbo].[Player] OFF
INSERT [dbo].[Player_Team] ([PlayerId], [TeamId], [FromYear], [ToYear]) VALUES (2, 1, 1971, 1983)
INSERT [dbo].[Player_Team] ([PlayerId], [TeamId], [FromYear], [ToYear]) VALUES (2, 1, 1985, 1989)
INSERT [dbo].[Player_Team] ([PlayerId], [TeamId], [FromYear], [ToYear]) VALUES (2, 7, 1983, 1985)
INSERT [dbo].[Player_Team] ([PlayerId], [TeamId], [FromYear], [ToYear]) VALUES (2, 8, 1991, 1994)
INSERT [dbo].[Player_Team] ([PlayerId], [TeamId], [FromYear], [ToYear]) VALUES (3, 5, 2000, 0)
INSERT [dbo].[Player_Team] ([PlayerId], [TeamId], [FromYear], [ToYear]) VALUES (3, 9, 1994, 2000)
SET IDENTITY_INSERT [dbo].[Team] ON
INSERT [dbo].[Team] ([TeamId], [Team], [Stadium], [Colors]) VALUES (1, N'Flamengo', N'Maracanã', N'Red and Black')
INSERT [dbo].[Team] ([TeamId], [Team], [Stadium], [Colors]) VALUES (3, N'River Plate', N'Estadio Monumental Antonio Vespucio Liberti', N'Red and White')
INSERT [dbo].[Team] ([TeamId], [Team], [Stadium], [Colors]) VALUES (4, N'Liverpool', N'Anfield', N'Red')
INSERT [dbo].[Team] ([TeamId], [Team], [Stadium], [Colors]) VALUES (5, N'Barcelona', N'Camp Nou', N'Blue and Red')
INSERT [dbo].[Team] ([TeamId], [Team], [Stadium], [Colors]) VALUES (6, N'Ajax', N'Ajax Stadion', N'Red and White')
INSERT [dbo].[Team] ([TeamId], [Team], [Stadium], [Colors]) VALUES (7, N'Udinese', N'Dacia Arena', N'White and Black')
INSERT [dbo].[Team] ([TeamId], [Team], [Stadium], [Colors]) VALUES (8, N'Kashima Antlers', N'Kashima Soccer Stadium', N'Bordeaux and Black')
INSERT [dbo].[Team] ([TeamId], [Team], [Stadium], [Colors]) VALUES (9, N'Newell''s Old Boys', N'<NAME>', N'Red and Black')
SET IDENTITY_INSERT [dbo].[Team] OFF
ALTER TABLE [dbo].[Player_Team] WITH CHECK ADD CONSTRAINT [Team_Player_Team] FOREIGN KEY([TeamId])
REFERENCES [dbo].[Team] ([TeamId])
GO
ALTER TABLE [dbo].[Player_Team] CHECK CONSTRAINT [Team_Player_Team]
GO
USE [master]
GO
ALTER DATABASE [SoccerStars] SET READ_WRITE
GO
|
-- phpMyAdmin SQL Dump
-- version 4.7.7
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: 01 Aug 2019 la 22:48
-- Versiune server: 10.1.30-MariaDB
-- PHP Version: 7.2.2
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `apartamente`
--
-- --------------------------------------------------------
--
-- Structura de tabel pentru tabelul `apartamente`
--
CREATE TABLE `apartamente` (
`id` int(11) NOT NULL,
`nume` varchar(100) NOT NULL,
`telefon` varchar(100) NOT NULL,
`pret` int(11) NOT NULL,
`adresa` varchar(100) NOT NULL,
`descriere` text,
`imagine` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Salvarea datelor din tabel `apartamente`
--
INSERT INTO `apartamente` (`id`, `nume`, `telefon`, `pret`, `adresa`, `descriere`, `imagine`) VALUES
(1, 'david', '0754811111', 320, 'oancea,nr 5,bloc D11', 'In zona tatarasi nord cu 2 camere ,caut un baiat ', 'img13.jpg,ap1.jpg,ap2.jpg'),
(7, 'Tomita', '0743014111', 300, ' Cug,Iasi', 'Persoana fizica, închiriez apartament 2 camere decomandat, complet utilat in zona Rond Vechi, Cug. Ias', 'apartamentN.png');
-- --------------------------------------------------------
--
-- Structura de tabel pentru tabelul `imagini`
--
CREATE TABLE `imagini` (
`id` int(11) NOT NULL,
`imagine` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Salvarea datelor din tabel `imagini`
--
INSERT INTO `imagini` (`id`, `imagine`) VALUES
(1, 'http://[::1]/ApartamenteDeInchiriat/'),
(2, 'http://[::1]/ApartamenteDeInchiriat/'),
(3, 'brasov20182.jpg');
-- --------------------------------------------------------
--
-- Structura de tabel pentru tabelul `user`
--
CREATE TABLE `user` (
`1` int(11) NOT NULL,
`userName` varchar(100) NOT NULL,
`password` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Salvarea datelor din tabel `user`
--
INSERT INTO `user` (`1`, `userName`, `password`) VALUES
(1, 'david', '<PASSWORD>');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `apartamente`
--
ALTER TABLE `apartamente`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `imagini`
--
ALTER TABLE `imagini`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `user`
--
ALTER TABLE `user`
ADD PRIMARY KEY (`1`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `apartamente`
--
ALTER TABLE `apartamente`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT for table `imagini`
--
ALTER TABLE `imagini`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `user`
--
ALTER TABLE `user`
MODIFY `1` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
CREATE TABLE dbo.SolutionEpicStatus
(
Id int NOT NULL,
[Name] nvarchar(16) NOT NULL,
IsMet bit NOT NULL,
CONSTRAINT PK_EpicStatus PRIMARY KEY CLUSTERED (Id),
CONSTRAINT IX_EpicStatusName UNIQUE NONCLUSTERED ([Name])
);
|
-- phpMyAdmin SQL Dump
-- version 4.9.3
-- https://www.phpmyadmin.net/
--
-- Host: localhost:8889
-- Generation Time: Feb 18, 2021 at 02:22 AM
-- Server version: 5.7.26
-- PHP Version: 7.4.2
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
--
-- Database: `fatetext`
--
-- --------------------------------------------------------
--
-- Table structure for table `actions`
--
CREATE TABLE `actions` (
`actionid` int(11) NOT NULL,
`userid` int(11) NOT NULL,
`actionstr` int(11) NOT NULL,
`datecreated` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `books`
--
CREATE TABLE `books` (
`bookid` bigint(20) NOT NULL,
`titlestr` text NOT NULL,
`authorstr` text NOT NULL,
`datapath` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `books`
--
INSERT INTO `books` (`bookid`, `titlestr`, `authorstr`, `datapath`) VALUES
(1, 'Suzy\'s Memoir', '<NAME>', 'http://thesuzy.com'),
(2, 'TheSuzy.com Show', '<NAME>', 'http://thesuzy.com'),
(3, 'TheSuzy Memoirs', '<NAME>', 'http://thesuzy.com'),
(4, 'The Bible', 'BIBLICAL', 'http://www.gutenberg.org/ebooks/10'),
(5, 'All Shakespeare', '<NAME>', 'http://fametext.com'),
(6, 'Meditations', '<NAME>', 'http://fametext.com'),
(7, 'The Aeneid', 'Virgil', 'http://fametext.com'),
(8, 'The Iliad', 'Homer', 'http://fametext.com'),
(9, 'The Republic', 'Plato', 'http://fametext.com'),
(10, 'Politics', 'Aristotle', 'http://fametext.com'),
(11, 'Poetry', 'Horace', 'http://fametext.com');
-- --------------------------------------------------------
--
-- Table structure for table `chests`
--
CREATE TABLE `chests` (
`chestid` bigint(20) NOT NULL,
`datastr` text NOT NULL,
`bookid` bigint(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `gems`
--
CREATE TABLE `gems` (
`gemid` bigint(20) NOT NULL,
`userid` bigint(20) NOT NULL,
`chestid` bigint(20) NOT NULL,
`tokid` bigint(20) NOT NULL,
`stepint` int(11) NOT NULL,
`datecreated` int(11) NOT NULL,
`wordcount` int(11) NOT NULL,
`charcount` int(11) NOT NULL,
`lastloaded` int(11) NOT NULL,
`bookguess` bigint(20) NOT NULL DEFAULT '0',
`authguess` text,
`ansrows` int(11) NOT NULL DEFAULT '5'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `hallart`
--
CREATE TABLE `hallart` (
`artid` bigint(20) NOT NULL,
`datestr` text NOT NULL,
`category` text NOT NULL,
`arturl` text NOT NULL,
`sumstr` text NOT NULL,
`userid` bigint(20) NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `log1`
--
CREATE TABLE `log1` (
`logid` bigint(20) NOT NULL,
`nowtime` bigint(11) NOT NULL,
`ipaddr` varchar(63) NOT NULL,
`webagent` text NOT NULL,
`pagename` text NOT NULL,
`refpage` text NOT NULL,
`hostname` varchar(127) NOT NULL,
`elapsed` double NOT NULL,
`userid` bigint(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `steps`
--
CREATE TABLE `steps` (
`gemid` int(11) NOT NULL,
`stepstr` text NOT NULL,
`whichint` int(11) NOT NULL,
`datecreated` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `toks`
--
CREATE TABLE `toks` (
`tokid` bigint(20) NOT NULL,
`tokstr` text NOT NULL,
`chestidstr` text NOT NULL,
`bookid` bigint(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`userid` bigint(20) NOT NULL,
`username` text NOT NULL,
`hashpass` text NOT NULL,
`flagsint` int(11) NOT NULL,
`lastgem` bigint(20) NOT NULL,
`datecreated` int(11) NOT NULL,
`lastlogin` int(11) NOT NULL,
`lastchange` int(11) NOT NULL,
`datarows` int(11) NOT NULL DEFAULT '5',
`storycoins` int(11) NOT NULL,
`lastcategory` text NOT NULL,
`lastcustom` text NOT NULL,
`lastsearch` text NOT NULL,
`chatindex` int(11) NOT NULL,
`actionindex` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `books`
--
ALTER TABLE `books`
ADD PRIMARY KEY (`bookid`);
--
-- Indexes for table `chests`
--
ALTER TABLE `chests`
ADD PRIMARY KEY (`chestid`);
--
-- Indexes for table `gems`
--
ALTER TABLE `gems`
ADD PRIMARY KEY (`gemid`),
ADD KEY `userid` (`userid`);
--
-- Indexes for table `log1`
--
ALTER TABLE `log1`
ADD PRIMARY KEY (`logid`);
--
-- Indexes for table `toks`
--
ALTER TABLE `toks`
ADD PRIMARY KEY (`tokid`),
ADD UNIQUE KEY `tokstr` (`tokstr`(32),`bookid`) USING BTREE;
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`userid`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `chests`
--
ALTER TABLE `chests`
MODIFY `chestid` bigint(20) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `gems`
--
ALTER TABLE `gems`
MODIFY `gemid` bigint(20) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `log1`
--
ALTER TABLE `log1`
MODIFY `logid` bigint(20) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `toks`
--
ALTER TABLE `toks`
MODIFY `tokid` bigint(20) NOT NULL AUTO_INCREMENT;
|
CREATE TRIGGER check_pro_date AFTER INSERT ON "watch_special"
BEGIN
SELECT CASE
WHEN((SELECT expiredate FROM "special_user" WHERE pro_id = NEW.pro_id) <= DATETIME('now'))
THEN RAISE(ABORT, 'Your wallet amount in low.')
END;
END;
END; |
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
--
-- Name: pgcrypto; Type: EXTENSION; Schema: -; Owner: -
--
CREATE EXTENSION IF NOT EXISTS pgcrypto WITH SCHEMA public;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: agent_arcs; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.agent_arcs (
id bigint NOT NULL,
source_id uuid,
target_id uuid
);
--
-- Name: agent_arcs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.agent_arcs_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: agent_arcs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.agent_arcs_id_seq OWNED BY public.agent_arcs.id;
--
-- Name: agent_regression_checks; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.agent_regression_checks (
id uuid DEFAULT public.gen_random_uuid() NOT NULL,
sentence character varying,
language character varying,
now timestamp without time zone,
agent_id uuid,
expected jsonb,
got jsonb,
state integer DEFAULT 0,
"position" integer DEFAULT '-1'::integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
spellchecking integer
);
--
-- Name: agents; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.agents (
id uuid DEFAULT public.gen_random_uuid() NOT NULL,
name character varying,
description text,
agentname character varying,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
owner_id uuid,
color character varying DEFAULT 'black'::character varying,
image_data text,
api_token character varying,
visibility integer DEFAULT 0,
source_agent jsonb,
nlp_updated_at timestamp without time zone,
locales jsonb,
slug character varying
);
--
-- Name: ar_internal_metadata; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.ar_internal_metadata (
key character varying NOT NULL,
value character varying,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: bots; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.bots (
id uuid DEFAULT public.gen_random_uuid() NOT NULL,
name character varying,
endpoint character varying,
agent_id uuid,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
wip_enabled boolean DEFAULT true
);
--
-- Name: chat_sessions; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.chat_sessions (
id uuid DEFAULT public.gen_random_uuid() NOT NULL,
user_id uuid,
bot_id uuid,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
locale character varying DEFAULT 'en-US'::character varying
);
--
-- Name: chat_statements; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.chat_statements (
id uuid DEFAULT public.gen_random_uuid() NOT NULL,
speaker integer,
nature integer DEFAULT 0,
content jsonb,
chat_session_id uuid,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: entities; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.entities (
id uuid DEFAULT public.gen_random_uuid() NOT NULL,
solution text,
auto_solution_enabled boolean DEFAULT true,
terms jsonb,
entities_list_id uuid,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
"position" integer DEFAULT '-1'::integer,
searchable_terms text,
case_sensitive boolean DEFAULT false,
accent_sensitive boolean DEFAULT false
);
--
-- Name: entities_imports; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.entities_imports (
id uuid DEFAULT public.gen_random_uuid() NOT NULL,
file_data text,
mode integer,
entities_list_id uuid,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
status integer DEFAULT 0,
duration integer DEFAULT 0,
filesize integer DEFAULT 0,
user_id uuid
);
--
-- Name: entities_lists; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.entities_lists (
id uuid DEFAULT public.gen_random_uuid() NOT NULL,
listname character varying,
"position" integer DEFAULT '-1'::integer,
color character varying,
description text,
visibility integer DEFAULT 0,
agent_id uuid,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
proximity integer DEFAULT 0,
entities_count integer DEFAULT 0 NOT NULL
);
--
-- Name: favorite_agents; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.favorite_agents (
id uuid DEFAULT public.gen_random_uuid() NOT NULL,
user_id uuid,
agent_id uuid,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: formulation_aliases; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.formulation_aliases (
id uuid DEFAULT public.gen_random_uuid() NOT NULL,
aliasname character varying NOT NULL,
position_start integer,
position_end integer,
formulation_id uuid,
formulation_aliasable_id uuid,
nature integer DEFAULT 0,
is_list boolean DEFAULT false,
any_enabled boolean DEFAULT false,
formulation_aliasable_type character varying,
reg_exp text
);
--
-- Name: formulations; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.formulations (
id uuid DEFAULT public.gen_random_uuid() NOT NULL,
expression character varying,
interpretation_id uuid,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
locale character varying,
"position" integer DEFAULT '-1'::integer,
keep_order boolean DEFAULT false,
solution text,
auto_solution_enabled boolean DEFAULT true,
proximity integer DEFAULT 3
);
--
-- Name: friendly_id_slugs; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.friendly_id_slugs (
id bigint NOT NULL,
slug character varying NOT NULL,
sluggable_id uuid NOT NULL,
sluggable_type character varying(50),
scope character varying,
created_at timestamp without time zone
);
--
-- Name: friendly_id_slugs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.friendly_id_slugs_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: friendly_id_slugs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.friendly_id_slugs_id_seq OWNED BY public.friendly_id_slugs.id;
--
-- Name: interpretations; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.interpretations (
id uuid DEFAULT public.gen_random_uuid() NOT NULL,
interpretation_name character varying,
description text,
agent_id uuid,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
"position" integer DEFAULT '-1'::integer,
color character varying,
visibility integer DEFAULT 0
);
--
-- Name: memberships; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.memberships (
id bigint NOT NULL,
user_id uuid,
agent_id uuid,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
rights character varying DEFAULT 'show'::character varying
);
--
-- Name: memberships_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.memberships_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: memberships_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.memberships_id_seq OWNED BY public.memberships.id;
--
-- Name: readmes; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.readmes (
id uuid DEFAULT public.gen_random_uuid() NOT NULL,
content text,
agent_id uuid,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
--
-- Name: schema_migrations; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.schema_migrations (
version character varying NOT NULL
);
--
-- Name: users; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.users (
id uuid DEFAULT public.gen_random_uuid() NOT NULL,
email character varying DEFAULT ''::character varying NOT NULL,
encrypted_password character varying DEFAULT ''::character varying NOT NULL,
reset_password_token character varying,
reset_password_sent_at timestamp without time zone,
remember_created_at timestamp without time zone,
sign_in_count integer DEFAULT 0 NOT NULL,
current_sign_in_at timestamp without time zone,
last_sign_in_at timestamp without time zone,
current_sign_in_ip inet,
last_sign_in_ip inet,
confirmation_token character varying,
confirmed_at timestamp without time zone,
confirmation_sent_at timestamp without time zone,
unconfirmed_email character varying,
failed_attempts integer DEFAULT 0 NOT NULL,
unlock_token character varying,
locked_at timestamp without time zone,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
admin boolean DEFAULT false,
invitation_token character varying,
invitation_created_at timestamp without time zone,
invitation_sent_at timestamp without time zone,
invitation_accepted_at timestamp without time zone,
invitation_limit integer,
invited_by_type character varying,
invited_by_id uuid,
invitations_count integer DEFAULT 0,
username character varying,
name character varying,
bio text,
image_data text,
ui_state jsonb DEFAULT '{}'::jsonb,
quota_enabled boolean DEFAULT true,
chatbot_enabled boolean DEFAULT false
);
--
-- Name: agent_arcs id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.agent_arcs ALTER COLUMN id SET DEFAULT nextval('public.agent_arcs_id_seq'::regclass);
--
-- Name: friendly_id_slugs id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.friendly_id_slugs ALTER COLUMN id SET DEFAULT nextval('public.friendly_id_slugs_id_seq'::regclass);
--
-- Name: memberships id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.memberships ALTER COLUMN id SET DEFAULT nextval('public.memberships_id_seq'::regclass);
--
-- Name: agent_arcs agent_arcs_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.agent_arcs
ADD CONSTRAINT agent_arcs_pkey PRIMARY KEY (id);
--
-- Name: agent_regression_checks agent_regression_checks_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.agent_regression_checks
ADD CONSTRAINT agent_regression_checks_pkey PRIMARY KEY (id);
--
-- Name: agents agents_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.agents
ADD CONSTRAINT agents_pkey PRIMARY KEY (id);
--
-- Name: ar_internal_metadata ar_internal_metadata_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.ar_internal_metadata
ADD CONSTRAINT ar_internal_metadata_pkey PRIMARY KEY (key);
--
-- Name: bots bots_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.bots
ADD CONSTRAINT bots_pkey PRIMARY KEY (id);
--
-- Name: chat_sessions chat_sessions_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.chat_sessions
ADD CONSTRAINT chat_sessions_pkey PRIMARY KEY (id);
--
-- Name: chat_statements chat_statements_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.chat_statements
ADD CONSTRAINT chat_statements_pkey PRIMARY KEY (id);
--
-- Name: entities_imports entities_imports_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.entities_imports
ADD CONSTRAINT entities_imports_pkey PRIMARY KEY (id);
--
-- Name: entities_lists entities_lists_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.entities_lists
ADD CONSTRAINT entities_lists_pkey PRIMARY KEY (id);
--
-- Name: entities entities_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.entities
ADD CONSTRAINT entities_pkey PRIMARY KEY (id);
--
-- Name: favorite_agents favorite_agents_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.favorite_agents
ADD CONSTRAINT favorite_agents_pkey PRIMARY KEY (id);
--
-- Name: friendly_id_slugs friendly_id_slugs_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.friendly_id_slugs
ADD CONSTRAINT friendly_id_slugs_pkey PRIMARY KEY (id);
--
-- Name: entities index_entities_on_entities_list_id_and_position; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.entities
ADD CONSTRAINT index_entities_on_entities_list_id_and_position UNIQUE (entities_list_id, "position") DEFERRABLE;
--
-- Name: formulations index_interpretations_on_intent_id_locale_and_position; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.formulations
ADD CONSTRAINT index_interpretations_on_intent_id_locale_and_position UNIQUE (interpretation_id, locale, "position") DEFERRABLE;
--
-- Name: interpretations intents_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.interpretations
ADD CONSTRAINT intents_pkey PRIMARY KEY (id);
--
-- Name: formulation_aliases interpretation_aliases_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.formulation_aliases
ADD CONSTRAINT interpretation_aliases_pkey PRIMARY KEY (id);
--
-- Name: formulations interpretations_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.formulations
ADD CONSTRAINT interpretations_pkey PRIMARY KEY (id);
--
-- Name: memberships memberships_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.memberships
ADD CONSTRAINT memberships_pkey PRIMARY KEY (id);
--
-- Name: readmes readmes_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.readmes
ADD CONSTRAINT readmes_pkey PRIMARY KEY (id);
--
-- Name: schema_migrations schema_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.schema_migrations
ADD CONSTRAINT schema_migrations_pkey PRIMARY KEY (version);
--
-- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.users
ADD CONSTRAINT users_pkey PRIMARY KEY (id);
--
-- Name: index_agent_arcs_on_source_id_and_target_id; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_agent_arcs_on_source_id_and_target_id ON public.agent_arcs USING btree (source_id, target_id);
--
-- Name: index_agent_regression_checks_on_agent_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_agent_regression_checks_on_agent_id ON public.agent_regression_checks USING btree (agent_id);
--
-- Name: index_agents_on_api_token; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_agents_on_api_token ON public.agents USING btree (api_token);
--
-- Name: index_agents_on_owner_id_and_agentname; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_agents_on_owner_id_and_agentname ON public.agents USING btree (owner_id, agentname);
--
-- Name: index_bots_on_agent_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_bots_on_agent_id ON public.bots USING btree (agent_id);
--
-- Name: index_chat_sessions_on_bot_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_chat_sessions_on_bot_id ON public.chat_sessions USING btree (bot_id);
--
-- Name: index_chat_sessions_on_user_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_chat_sessions_on_user_id ON public.chat_sessions USING btree (user_id);
--
-- Name: index_chat_statements_on_chat_session_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_chat_statements_on_chat_session_id ON public.chat_statements USING btree (chat_session_id);
--
-- Name: index_entities_imports_on_entities_list_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_entities_imports_on_entities_list_id ON public.entities_imports USING btree (entities_list_id);
--
-- Name: index_entities_lists_on_agent_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_entities_lists_on_agent_id ON public.entities_lists USING btree (agent_id);
--
-- Name: index_entities_on_entities_list_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_entities_on_entities_list_id ON public.entities USING btree (entities_list_id);
--
-- Name: index_entities_on_terms; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_entities_on_terms ON public.entities USING gin (terms);
--
-- Name: index_favorite_agents_on_agent_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_favorite_agents_on_agent_id ON public.favorite_agents USING btree (agent_id);
--
-- Name: index_favorite_agents_on_user_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_favorite_agents_on_user_id ON public.favorite_agents USING btree (user_id);
--
-- Name: index_favorite_agents_on_user_id_and_agent_id; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_favorite_agents_on_user_id_and_agent_id ON public.favorite_agents USING btree (user_id, agent_id);
--
-- Name: index_formulation_aliases_on_formulation_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_formulation_aliases_on_formulation_id ON public.formulation_aliases USING btree (formulation_id);
--
-- Name: index_formulations_on_interpretation_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_formulations_on_interpretation_id ON public.formulations USING btree (interpretation_id);
--
-- Name: index_friendly_id_slugs_on_slug_and_sluggable_type; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_friendly_id_slugs_on_slug_and_sluggable_type ON public.friendly_id_slugs USING btree (slug, sluggable_type);
--
-- Name: index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope ON public.friendly_id_slugs USING btree (slug, sluggable_type, scope);
--
-- Name: index_friendly_id_slugs_on_sluggable_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_friendly_id_slugs_on_sluggable_id ON public.friendly_id_slugs USING btree (sluggable_id);
--
-- Name: index_friendly_id_slugs_on_sluggable_type; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_friendly_id_slugs_on_sluggable_type ON public.friendly_id_slugs USING btree (sluggable_type);
--
-- Name: index_ialiases_on_ialiasable_type_and_ialiasable_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_ialiases_on_ialiasable_type_and_ialiasable_id ON public.formulation_aliases USING btree (formulation_aliasable_type, formulation_aliasable_id);
--
-- Name: index_interpretations_on_agent_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_interpretations_on_agent_id ON public.interpretations USING btree (agent_id);
--
-- Name: index_interpretations_on_interpretation_name_and_agent_id; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_interpretations_on_interpretation_name_and_agent_id ON public.interpretations USING btree (interpretation_name, agent_id);
--
-- Name: index_memberships_on_agent_id_and_user_id; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_memberships_on_agent_id_and_user_id ON public.memberships USING btree (agent_id, user_id);
--
-- Name: index_readmes_on_agent_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_readmes_on_agent_id ON public.readmes USING btree (agent_id);
--
-- Name: index_users_on_confirmation_token; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_users_on_confirmation_token ON public.users USING btree (confirmation_token);
--
-- Name: index_users_on_email; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_users_on_email ON public.users USING btree (email);
--
-- Name: index_users_on_invitation_token; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_users_on_invitation_token ON public.users USING btree (invitation_token);
--
-- Name: index_users_on_invitations_count; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_users_on_invitations_count ON public.users USING btree (invitations_count);
--
-- Name: index_users_on_invited_by_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_users_on_invited_by_id ON public.users USING btree (invited_by_id);
--
-- Name: index_users_on_invited_by_type_and_invited_by_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_users_on_invited_by_type_and_invited_by_id ON public.users USING btree (invited_by_type, invited_by_id);
--
-- Name: index_users_on_reset_password_token; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_users_on_reset_password_token ON public.users USING btree (reset_password_token);
--
-- Name: index_users_on_unlock_token; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_users_on_unlock_token ON public.users USING btree (unlock_token);
--
-- Name: index_users_on_username; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_users_on_username ON public.users USING btree (username);
--
-- Name: agent_regression_checks fk_rails_0dcfffec3c; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.agent_regression_checks
ADD CONSTRAINT fk_rails_0dcfffec3c FOREIGN KEY (agent_id) REFERENCES public.agents(id) ON DELETE CASCADE;
--
-- Name: favorite_agents fk_rails_0fcae3d88f; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.favorite_agents
ADD CONSTRAINT fk_rails_0fcae3d88f FOREIGN KEY (user_id) REFERENCES public.users(id) ON DELETE CASCADE;
--
-- Name: memberships fk_rails_217f170eb7; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.memberships
ADD CONSTRAINT fk_rails_217f170eb7 FOREIGN KEY (agent_id) REFERENCES public.agents(id) ON DELETE CASCADE;
--
-- Name: agents fk_rails_2ec9ab8593; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.agents
ADD CONSTRAINT fk_rails_2ec9ab8593 FOREIGN KEY (owner_id) REFERENCES public.users(id);
--
-- Name: agent_arcs fk_rails_468a311c35; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.agent_arcs
ADD CONSTRAINT fk_rails_468a311c35 FOREIGN KEY (target_id) REFERENCES public.agents(id) ON DELETE CASCADE;
--
-- Name: bots fk_rails_4bd5a3b9b9; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.bots
ADD CONSTRAINT fk_rails_4bd5a3b9b9 FOREIGN KEY (agent_id) REFERENCES public.agents(id) ON DELETE CASCADE;
--
-- Name: chat_statements fk_rails_655fa33a02; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.chat_statements
ADD CONSTRAINT fk_rails_655fa33a02 FOREIGN KEY (chat_session_id) REFERENCES public.chat_sessions(id) ON DELETE CASCADE;
--
-- Name: chat_sessions fk_rails_6d2ee2e9b7; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.chat_sessions
ADD CONSTRAINT fk_rails_6d2ee2e9b7 FOREIGN KEY (user_id) REFERENCES public.users(id) ON DELETE CASCADE;
--
-- Name: interpretations fk_rails_799ec70975; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.interpretations
ADD CONSTRAINT fk_rails_799ec70975 FOREIGN KEY (agent_id) REFERENCES public.agents(id) ON DELETE CASCADE;
--
-- Name: entities_lists fk_rails_79b09e3f2b; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.entities_lists
ADD CONSTRAINT fk_rails_79b09e3f2b FOREIGN KEY (agent_id) REFERENCES public.agents(id) ON DELETE CASCADE;
--
-- Name: formulations fk_rails_7c761fd9bc; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.formulations
ADD CONSTRAINT fk_rails_7c761fd9bc FOREIGN KEY (interpretation_id) REFERENCES public.interpretations(id) ON DELETE CASCADE;
--
-- Name: entities_imports fk_rails_88c41ffe66; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.entities_imports
ADD CONSTRAINT fk_rails_88c41ffe66 FOREIGN KEY (entities_list_id) REFERENCES public.entities_lists(id) ON DELETE CASCADE;
--
-- Name: agent_arcs fk_rails_95db84923f; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.agent_arcs
ADD CONSTRAINT fk_rails_95db84923f FOREIGN KEY (source_id) REFERENCES public.agents(id) ON DELETE CASCADE;
--
-- Name: chat_sessions fk_rails_9859487ffe; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.chat_sessions
ADD CONSTRAINT fk_rails_9859487ffe FOREIGN KEY (bot_id) REFERENCES public.bots(id) ON DELETE CASCADE;
--
-- Name: memberships fk_rails_99326fb65d; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.memberships
ADD CONSTRAINT fk_rails_99326fb65d FOREIGN KEY (user_id) REFERENCES public.users(id) ON DELETE CASCADE;
--
-- Name: readmes fk_rails_9957ac55b4; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.readmes
ADD CONSTRAINT fk_rails_9957ac55b4 FOREIGN KEY (agent_id) REFERENCES public.agents(id) ON DELETE CASCADE;
--
-- Name: formulation_aliases fk_rails_bed1931875; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.formulation_aliases
ADD CONSTRAINT fk_rails_bed1931875 FOREIGN KEY (formulation_id) REFERENCES public.formulations(id) ON DELETE CASCADE;
--
-- Name: entities fk_rails_c1fe4c2b97; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.entities
ADD CONSTRAINT fk_rails_c1fe4c2b97 FOREIGN KEY (entities_list_id) REFERENCES public.entities_lists(id) ON DELETE CASCADE;
--
-- Name: favorite_agents fk_rails_c7c6b86f19; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.favorite_agents
ADD CONSTRAINT fk_rails_c7c6b86f19 FOREIGN KEY (agent_id) REFERENCES public.agents(id) ON DELETE CASCADE;
--
-- PostgreSQL database dump complete
--
SET search_path TO "$user", public;
INSERT INTO "schema_migrations" (version) VALUES
('20170912063509'),
('20170912145413'),
('20170918142114'),
('20170920125523'),
('20170926122126'),
('20170927065415'),
('20171009075847'),
('20171009080206'),
('20171009085209'),
('20171009114519'),
('20171009125135'),
('20171012122420'),
('20171013073854'),
('20171016114217'),
('20171019123348'),
('20171020072626'),
('20171023071851'),
('20171030155848'),
('20171106133451'),
('20171106143706'),
('20171107144047'),
('20171108092907'),
('20171109092932'),
('20171113144756'),
('20171114101806'),
('20171115094044'),
('20171116130506'),
('20171122103416'),
('20171124103717'),
('20171124145014'),
('20171127084247'),
('20171128151146'),
('20171128161639'),
('20171129102345'),
('20171129150528'),
('20171129153008'),
('20171201131020'),
('20171206083552'),
('20171206152252'),
('20171207090553'),
('20171211084412'),
('20171212081844'),
('20180103152608'),
('20180108083533'),
('20180123151817'),
('20180126104321'),
('20180206102733'),
('20180208094531'),
('20180313095304'),
('20180314081810'),
('20180321162900'),
('20180322162723'),
('20180406083214'),
('20180411130045'),
('20180417074632'),
('20180417125213'),
('20180418070143'),
('20180418070901'),
('20180504134825'),
('20180516073306'),
('20180516123032'),
('20180827124416'),
('20181023152900'),
('20181121091528'),
('20190116134343'),
('20190130141915'),
('20190226153941'),
('20190228101317'),
('20190228142502'),
('20190301133440'),
('20190305084159'),
('20190311102618'),
('20190312150519'),
('20190322134748'),
('20190322143442'),
('20190322144120'),
('20190403120508'),
('20190405120340'),
('20190408083049'),
('20190412074505'),
('20190424102329'),
('20190503151110'),
('20190517140227'),
('20190619122021'),
('20190729072037'),
('20190729112306'),
('20190925090036'),
('20191018130844'),
('20191025090323'),
('20191028091856'),
('20191029091355'),
('20191029145256'),
('20191204085403');
|
/*
Change GradeDetails table always to insert value 100 in AchievementMaxPoints column if no value is provided on insert
Change GradeDetails table to prevent inserting AchievementPoints that will more than AchievementMaxPoints
Change AchievementType table to guarantee unique names across the Achievement types
*/
ALTER TABLE [dbo].[GradeDetails]
ADD CONSTRAINT DF_GradeDetails_AchievementMaxPoints
DEFAULT 100 FOR [AchievementMaxPoints]
GO
ALTER TABLE [dbo].[GradeDetails] WITH CHECK
ADD CONSTRAINT CHK_GradeDetails_AchievementPoints
CHECK ([AchievementPoints] <= [AchievementMaxPoints]);
GO
ALTER TABLE [dbo].[AchievementType] WITH CHECK
ADD CONSTRAINT UC_AchievementType_Name UNIQUE (Name)
GO
|
<reponame>uk-gov-mirror/UKHomeOffice.hocs-info-service
ALTER TABLE system_configuration
ADD COLUMN read_only_case_view_adapter TEXT NOT NULL DEFAULT 'CASE_VIEW_ALL_STAGES';
|
/* Formatted on 12-20-2018 9:50:30 AM (QP5 v5.126.903.23003) */
CREATE OR REPLACE FUNCTION ORG.GET_CRITERIA_ID1 (CRITERIA_NAME VARCHAR2,
CRTRIATYPE VARCHAR2,
ORGID INTEGER)
RETURN INTEGER
AS
BID INTEGER := -1;
BEGIN
IF CRTRIATYPE = 'Everyone'
THEN
SELECT -1 INTO BID FROM DUAL;
ELSIF CRTRIATYPE = 'Divisions/Groups'
THEN
SELECT DIV_ID
INTO BID
FROM ORG.ORG_DIVS_GROUPS
WHERE LOWER (DIV_CODE_NAME) = LOWER (CRITERIA_NAME);
ELSIF CRTRIATYPE = 'Grade'
THEN
SELECT GRADE_ID
INTO BID
FROM ORG.ORG_GRADES
WHERE LOWER (GRADE_CODE_NAME) = LOWER (CRITERIA_NAME);
ELSIF CRTRIATYPE = 'Job'
THEN
SELECT JOB_ID
INTO BID
FROM ORG.ORG_JOBS
WHERE LOWER (JOB_CODE_NAME) = LOWER (CRITERIA_NAME);
ELSIF CRTRIATYPE = 'Position'
THEN
SELECT POSITION_ID
INTO BID
FROM ORG.ORG_POSITIONS
WHERE LOWER (POSITION_CODE_NAME) = LOWER (CRITERIA_NAME);
ELSIF CRTRIATYPE = 'Site/Location'
THEN
SELECT LOCATION_ID
INTO BID
FROM ORG.ORG_SITES_LOCATIONS
WHERE LOWER (LOCATION_CODE_NAME) = LOWER (CRITERIA_NAME);
ELSIF CRTRIATYPE = 'Person Type'
THEN
SELECT A.PSSBL_VALUE_ID
INTO BID
FROM GST.GEN_STP_LOV_VALUES A, GST.GEN_STP_LOV_NAMES B
WHERE A.VALUE_LIST_ID = B.VALUE_LIST_ID
AND B.VALUE_LIST_NAME = 'Person Types'
AND LOWER (A.PSSBL_VALUE) = LOWER (CRITERIA_NAME);
ELSIF CRTRIATYPE = 'Single Person'
THEN
SELECT PRS.GET_PRSN_ID (CRITERIA_NAME, ORGID) INTO BID FROM DUAL;
END IF;
RETURN COALESCE (BID, -1);
END; |
<filename>test/test-files/create/create-view.sql<gh_stars>100-1000
CREATE OR REPLACE VIEW my_view AS
SELECT CustomerName, ContactName, City
FROM Customers
WHERE Country = 'Brazil';
|
<filename>apps/hasura/migrations/default/1635716127097_create_table_platyplus_pages/up.sql
CREATE TABLE "platyplus"."pages" (
"id" uuid NOT NULL DEFAULT gen_random_uuid(),
"updated_at" timestamptz NOT NULL DEFAULT now(),
"deleted" boolean NOT NULL DEFAULT false,
"slug" text NOT NULL,
"contents" jsonb not null default '[{ "type": "paragraph", "children": [{ "text": "" }] }]',
"title" text,
"icon" text,
PRIMARY KEY ("id")
);
CREATE OR REPLACE FUNCTION "platyplus"."set_current_timestamp_updated_at"() RETURNS TRIGGER AS $$
DECLARE _new record;
BEGIN _new := NEW;
_new."updated_at" = NOW();
RETURN _new;
END;
$$ LANGUAGE plpgsql;
CREATE TRIGGER "set_platyplus_pages_updated_at" BEFORE
UPDATE ON "platyplus"."pages" FOR EACH ROW EXECUTE PROCEDURE "platyplus"."set_current_timestamp_updated_at"();
COMMENT ON TRIGGER "set_platyplus_pages_updated_at" ON "platyplus"."pages" IS 'trigger to set value of column "updated_at" to current timestamp on row update';
CREATE EXTENSION IF NOT EXISTS pgcrypto; |
-- alerts
SET @iHandler := (SELECT `id` FROM `sys_alerts_handlers` WHERE `name` = 'bx_bloog_profile_join' LIMIT 1);
DELETE FROM `sys_alerts` WHERE `handler_id` = @iHandler;
DELETE FROM `sys_alerts_handlers` WHERE `id` = @iHandler;
-- settings
DELETE FROM `sys_options` WHERE `Name` = 'bx_blogs_auto_create';
|
<reponame>PBorio/hotel<filename>WebContent/sqls/20140723_0935_alterPagamentoReservaDeleteDataDepositoValorDeposito.sql<gh_stars>0
ALTER TABLE `hotel`.`pagamentos_reservas`
DROP COLUMN `valor_deposito`,
DROP COLUMN `data_deposito`; |
select c3 from (select * from (select * from dfs.drillTestDir.`DRILL_6118_parquet_without_partitioning`)) where c1 = 3; |
-- --------------------------------------------------------
-- Host: 127.0.0.1
-- Server version: 8.0.20-0ubuntu0.20.04.1 - (Ubuntu)
-- Server OS: Linux
-- HeidiSQL Version: 11.0.0.5919
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
-- Dumping structure for table hometown.accesspolicy
CREATE TABLE IF NOT EXISTS `accesspolicy` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`parent_id` int unsigned NOT NULL,
`owner_id` int unsigned NOT NULL COMMENT 'owner user ID',
`key` varchar(32) NOT NULL,
`object_type` varchar(50) NOT NULL COMMENT 'is a type name of an object (i.e.: user)',
`object_id` int unsigned NOT NULL COMMENT 'is an object ID (depends on the scope)',
`flags` tinyint unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `key` (`key`),
KEY `parent_id` (`parent_id`),
KEY `owner_id` (`owner_id`),
KEY `object_id` (`object_id`),
KEY `id_checksum` (`id`),
KEY `object_type` (`object_type`),
KEY `flags` (`flags`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- Data exporting was unselected.
-- Dumping structure for table hometown.accesspolicy_roster
CREATE TABLE IF NOT EXISTS `accesspolicy_roster` (
`policy_id` int unsigned NOT NULL,
`subject_kind` tinyint unsigned NOT NULL COMMENT 'typical kinds: everyone, user, group, role_group, etc...',
`subject_id` int unsigned NOT NULL COMMENT 'represents an ID of a user, group, role_group, etc...; 0 if not required',
`access` bigint unsigned NOT NULL COMMENT 'bitmask which represents the accesspolicy rights to a policy for the subject of its kind',
`access_explained` text NOT NULL COMMENT 'a human-readable conjunction of comma-separated accesspolicy names for this given context namespace',
PRIMARY KEY (`policy_id`,`subject_kind`,`subject_id`),
KEY `access_right` (`access`),
KEY `policy_id` (`policy_id`),
KEY `subject_kind` (`subject_kind`),
KEY `subject_id` (`subject_id`),
KEY `subject_id_access` (`subject_id`,`access`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- Data exporting was unselected.
-- Dumping structure for table hometown.group
CREATE TABLE IF NOT EXISTS `group` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`parent_id` int unsigned NOT NULL,
`is_default` tinyint(1) NOT NULL DEFAULT '0',
`kind` tinyint NOT NULL,
`key` varchar(50) NOT NULL,
`name` varchar(100) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `key` (`key`),
KEY `parent_id` (`parent_id`),
KEY `kind` (`kind`),
KEY `name` (`name`),
KEY `is_default` (`is_default`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- Data exporting was unselected.
-- Dumping structure for table hometown.group_users
CREATE TABLE IF NOT EXISTS `group_users` (
`group_id` int unsigned NOT NULL,
`user_id` int unsigned NOT NULL,
PRIMARY KEY (`group_id`,`user_id`),
KEY `FK_group_users_group` (`group_id`),
KEY `FK_group_users_user` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- Data exporting was unselected.
-- Dumping structure for table hometown.password
CREATE TABLE IF NOT EXISTS `password` (
`kind` tinyint unsigned NOT NULL,
`owner_id` int unsigned NOT NULL,
`hash` binary(60) NOT NULL,
`is_change_required` tinyint(1) NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`expire_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`kind`,`owner_id`),
KEY `created_at` (`created_at`),
KEY `updated_at` (`updated_at`),
KEY `expire_at` (`expire_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- Data exporting was unselected.
-- Dumping structure for table hometown.token
CREATE TABLE IF NOT EXISTS `token` (
`kind` smallint unsigned NOT NULL DEFAULT '0',
`token` binary(64) NOT NULL,
`payload` blob NOT NULL,
`checkin_total` smallint NOT NULL DEFAULT '0',
`checkin_remainder` smallint NOT NULL DEFAULT '0',
`created_at` timestamp NOT NULL,
`expire_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`token`),
KEY `kind` (`kind`),
KEY `c_remainder` (`checkin_remainder`),
KEY `c_total` (`checkin_total`),
KEY `created_at` (`created_at`),
KEY `expire_at` (`expire_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- Data exporting was unselected.
-- Dumping structure for table hometown.user
CREATE TABLE IF NOT EXISTS `user` (
`id` int NOT NULL AUTO_INCREMENT,
`ulid` binary(16) NOT NULL,
`username` varchar(30) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`display_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`last_login_at` timestamp NULL DEFAULT NULL,
`last_login_ip` varchar(45) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`last_login_failed_at` timestamp NULL DEFAULT NULL,
`last_login_failed_ip` varchar(45) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`last_login_attempts` tinyint unsigned NOT NULL DEFAULT '0',
`is_suspended` tinyint(1) NOT NULL DEFAULT '0',
`suspension_reason` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`suspended_at` timestamp NULL DEFAULT NULL,
`suspension_expires_at` timestamp NULL DEFAULT NULL,
`suspended_by_id` int NOT NULL DEFAULT '0',
`checksum` bigint unsigned NOT NULL DEFAULT '0',
`confirmed_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`created_by_id` int NOT NULL DEFAULT '0',
`updated_at` timestamp NULL DEFAULT NULL,
`updated_by_id` int NOT NULL DEFAULT '0',
`deleted_at` timestamp NULL DEFAULT NULL,
`deleted_by_id` int NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `username` (`username`),
UNIQUE KEY `display_name` (`display_name`),
KEY `ulid` (`ulid`),
KEY `deleted_at` (`deleted_at`),
KEY `created_at` (`created_at`),
KEY `updated_at` (`updated_at`),
KEY `is_suspended` (`is_suspended`),
KEY `checksum` (`checksum`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=DYNAMIC;
-- Data exporting was unselected.
-- Dumping structure for table hometown.user_email
CREATE TABLE IF NOT EXISTS `user_email` (
`user_id` int unsigned NOT NULL,
`addr` varchar(255) NOT NULL,
`is_primary` tinyint(1) NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`confirmed_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`user_id`,`addr`),
UNIQUE KEY `user_id_is_primary` (`user_id`,`is_primary`),
UNIQUE KEY `addr` (`addr`),
KEY `confirmed_at` (`confirmed_at`),
KEY `created_at` (`created_at`),
KEY `updated_at` (`updated_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
-- Data exporting was unselected.
-- Dumping structure for table hometown.user_phone
CREATE TABLE IF NOT EXISTS `user_phone` (
`user_id` int unsigned NOT NULL,
`number` varchar(15) NOT NULL,
`is_primary` tinyint(1) NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`confirmed_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`user_id`,`number`),
UNIQUE KEY `number` (`number`),
UNIQUE KEY `user_id_is_primary` (`user_id`,`is_primary`),
KEY `confirmed_at` (`confirmed_at`),
KEY `created_at` (`created_at`),
KEY `updated_at` (`updated_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
-- Data exporting was unselected.
-- Dumping structure for table hometown.user_profile
CREATE TABLE IF NOT EXISTS `user_profile` (
`user_id` int unsigned NOT NULL,
`firstname` varchar(50) NOT NULL,
`middlename` varchar(50) NOT NULL,
`lastname` varchar(50) NOT NULL,
`language` char(2) NOT NULL,
`checksum` bigint unsigned NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`user_id`),
KEY `updated_at` (`updated_at`),
KEY `checksum` (`checksum`),
KEY `created_at` (`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
-- Data exporting was unselected.
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
INSERT INTO Usuario( email, senha, data_cadastro)VALUES('<EMAIL>','123456',NOW());
INSERT INTO Categoria(nome) VALUES('Celulares');
INSERT INTO Produto(nome, valor, quantidade_disponivel, descricao, categoria_id, data_cadastro, dono_id)
VALUES ('Smartphone Motorola', 2000.00, 5,'Smartphone samsung', 1, NOW(), 1); |
<filename>EdFi.Ods.Utilities.Migration/Scripts/MsSql/02Upgrade/v25_to_v31/11 Create Constraints/53110 SectionClassPeriod [FK].sql<gh_stars>0
-- SPDX-License-Identifier: Apache-2.0
-- Licensed to the Ed-Fi Alliance under one or more agreements.
-- The Ed-Fi Alliance licenses this file to you under the Apache License, Version 2.0.
-- See the LICENSE and NOTICES files in the project root for more information.
PRINT N'Adding foreign keys to [edfi].[SectionClassPeriod]'
GO
ALTER TABLE [edfi].[SectionClassPeriod] ADD CONSTRAINT [FK_SectionClassPeriod_ClassPeriod] FOREIGN KEY ([ClassPeriodName], [SchoolId]) REFERENCES [edfi].[ClassPeriod] ([ClassPeriodName], [SchoolId]) ON UPDATE CASCADE
GO
ALTER TABLE [edfi].[SectionClassPeriod] ADD CONSTRAINT [FK_SectionClassPeriod_Section] FOREIGN KEY ([LocalCourseCode], [SchoolId], [SchoolYear], [SectionIdentifier], [SessionName]) REFERENCES [edfi].[Section] ([LocalCourseCode], [SchoolId], [SchoolYear], [SectionIdentifier], [SessionName]) ON DELETE CASCADE ON UPDATE CASCADE
GO
|
<gh_stars>0
-- sqlitecaching table keys
SELECT
"a", -- key
"b" -- key
FROM "aa_bb__cc"
ORDER BY __timestamp ASC;
|
explain plan for select * from (
select
sum(o.c_integer),
sum(r.c_integer),
sum(o.c_bigint),
sum(r.c_bigint)
from
optional_type_v as o,
required_type_v as r
where
o.c_date = r.c_date
group by
o.c_integer,
r.c_bigint) t limit 0;
|
CREATE INDEX "IX_COLL_EVENT_NUMBER_COLLID" ON "COLL_EVENT_NUMBER" ("COLLECTING_EVENT_ID")
|
CREATE TABLE "Patient" (
"ID" INTEGER,
"FirstName" VARCHAR(50),
"LastName" VARCHAR(50),
"Sex" VARCHAR(6),
"Weight" REAL,
"Height" FLOAT,
"BirthDate" DATE,
"EntranceDate" TIMESTAMP,
"PaidInAdvance" BOOLEAN,
"Photo" VARBINARY(200),
PRIMARY KEY ("ID")
);
INSERT INTO "Patient" ("ID", "FirstName","LastName","Sex","Weight","Height","BirthDate","EntranceDate","PaidInAdvance","Photo")
VALUES (10,'Monica','Geller','female',80.25,1.65,'1981-10-10','2009-10-10 12:12:22',FALSE,
X'89504E470D0A1A0A0000000D49484452000000050000000508060000008D6F26E50000001C4944415408D763F9FFFEBFC37F062005C3201284D031F18258CD04000EF535CBD18E0E1F0000000049454E44AE426082');
INSERT INTO "Patient" ("ID", "FirstName","LastName","Sex","Weight","Height","BirthDate","EntranceDate","PaidInAdvance","Photo")
VALUES (11,'Rachel','Green','female',70.22,1.70,'1982-11-12','2008-11-12 09:45:44',TRUE,
X'89504E470D0A1A0A0000000D49484452000000050000000508060000008D6F26E50000001C4944415408D763F9FFFF3FC37F062005C3201284D031F18258CD04000EF535CBD18E0E1F0000000049454E44AE426082');
INSERT INTO "Patient" ("ID", "FirstName","LastName","Sex","Weight","Height","BirthDate","EntranceDate","PaidInAdvance","Photo")
VALUES (12,'Chandler','Bing','male',90.31,1.76,'1978-04-06','2007-03-12 02:13:14',TRUE,
X'89504E470D0A1A0A0000000D49484452000000050000000508060000008D6F26E50000001C4944415408D763F9FFFEBFC37F062005C3201284D031F18258CD04000EF535CBD18E0E1F0000000049454E44AE426082'); |
drop table if exists APP_USERS cascade;
drop table if exists ADDRESSES cascade;
create table ADDRESSES
(
id varchar(42) primary key,
street varchar(100) not null,
city varchar(100) not null
);
create table APP_USERS
(
id varchar(42) primary key,
address varchar(42) not null references ADDRESSES (id),
name varchar(100) not null,
email varchar(100) not null,
enabled boolean not null default true
); |
alter table ACT_HI_TASKINST
add CLAIM_TIME_ timestamp;
alter table ACT_HI_TASKINST
add FORM_KEY_ varchar(255);
Call Sysproc.admin_cmd ('REORG TABLE ACT_HI_TASKINST');
alter table ACT_RU_IDENTITYLINK
add PROC_INST_ID_ varchar(64);
alter table ACT_RU_IDENTITYLINK
add constraint ACT_FK_IDL_PROCINST
foreign key (PROC_INST_ID_)
references ACT_RU_EXECUTION (ID_);
Call Sysproc.admin_cmd ('REORG TABLE ACT_RU_IDENTITYLINK');
create index ACT_IDX_HI_ACT_INST_EXEC on ACT_HI_ACTINST(EXECUTION_ID_, ACT_ID_); |
-- number * string
create table t1 (s1 varchar(10),sn1 nchar varying(10), i2 int);
insert into t1 values ('4',n'4',2);
insert into t1 values (NULL,n'4',2);
insert into t1 values ('4',n'2',NULL);
insert into t1 values ('4a',n'2',2);
insert into t1 values ('4',n'2a',2);
select s1,sn1,i2,s1*i2 from t1 order by 1,2,3,4;
select s1,sn1,i2,i2*sn1 from t1 order by 1,2,3,4;
select s1,sn1,i2,s1*sn1 from t1 order by 1,2,3,4;
truncate table t1;
-- columns with HV
insert into t1 values ('4',n'4',2);
prepare st from 'select ? * i2 from t1';
execute st using '4';
prepare st from 'select ? * i2 from t1';
execute st using NULL;
prepare st from 'select i2 * ? from t1';
execute st using n'1';
prepare st from 'select s1 * ? from t1';
execute st using 0.2e1;
prepare st from 'select ? * sn1 from t1';
execute st using 8.4;
prepare st from 'select s1 * ? from t1';
execute st using NULL;
prepare st from 'select s1 * ? from t1';
execute st using 0;
drop table t1;
-- constants
select '2001-10-11' * 4;
select 4* '2';
select 4 * 'abc';
select 4 * NULL;
select 4 * 0;
-- 2 HV
prepare st from 'select ? * ?';
execute st using '2001-10-11',4;
prepare st from 'select ? * ?';
execute st using 4,'abc';
prepare st from 'select ? * ?';
execute st using 4,'2';
prepare st from 'select ? * ?';
execute st using 4,NULL;
prepare st from 'select ? * ?';
execute st using 4,2;
prepare st from 'select ? * ?';
execute st using 4.0,2;
-- divide by zero
prepare st from 'select ? * ?';
execute st using '4',0;
-- 1 HV
prepare st from 'select 4 * ?';
execute st using '2';
prepare st from 'select 4 * ?';
execute st using 2.0;
prepare st from 'select ? * ''2''';
execute st using 4;
|
<reponame>RIPE-NCC/rpki-core<gh_stars>1-10
-- There should be no older objects for a published URI that are not withdrawn.
UPDATE ta_published_object upd
SET status = 'WITHDRAWN'
WHERE status <> 'WITHDRAWN'
AND upd.id < (SELECT MAX(id) FROM ta_published_object po WHERE upd.uri = po.uri AND po.status = 'PUBLISHED');
-- There should be no older objects for a to be published URI that have status PUBLISHED.
UPDATE ta_published_object upd
SET status = 'TO_BE_WITHDRAWN'
WHERE status = 'PUBLISHED'
AND upd.id < (SELECT MAX(id) FROM ta_published_object po WHERE upd.uri = po.uri AND po.status = 'TO_BE_PUBLISHED');
CREATE UNIQUE INDEX idx_uniq_ta_published_object_location
ON ta_published_object (uri)
WHERE status IN ('PUBLISHED', 'TO_BE_WITHDRAWN');
|
<filename>OpenSim/Data/SQLite/Resources/008_UserStore.sql
BEGIN TRANSACTION;
ALTER TABLE users add email varchar(250);
COMMIT;
|
<gh_stars>0
-- MySQL dump 10.13 Distrib 5.7.27, for Linux (x86_64)
--
-- Host: localhost Database: management
-- ------------------------------------------------------
-- Server version 5.7.27
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `Request_Accepted`
--
DROP TABLE IF EXISTS `Request_Accepted`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Request_Accepted` (
`ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
`requestID` int(10) unsigned DEFAULT NULL,
`volunteerID` int(10) unsigned DEFAULT NULL,
`acceptedTime` datetime NOT NULL,
PRIMARY KEY (`ID`),
UNIQUE KEY `ra_unique` (`requestID`,`volunteerID`),
KEY `volunteerID` (`volunteerID`),
CONSTRAINT `Request_Accepted_ibfk_1` FOREIGN KEY (`requestID`) REFERENCES `Victim_Request` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `Request_Accepted_ibfk_2` FOREIGN KEY (`volunteerID`) REFERENCES `Volunteer` (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Request_Accepted`
--
LOCK TABLES `Request_Accepted` WRITE;
/*!40000 ALTER TABLE `Request_Accepted` DISABLE KEYS */;
INSERT INTO `Request_Accepted` VALUES (3,23,85,'2019-06-14 09:12:14');
/*!40000 ALTER TABLE `Request_Accepted` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Victim_Request`
--
DROP TABLE IF EXISTS `Victim_Request`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Victim_Request` (
`ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL,
`phone` char(13) NOT NULL,
`location` varchar(50) NOT NULL,
`latitude` decimal(8,6) NOT NULL,
`longitude` decimal(9,6) NOT NULL,
`requestTime` datetime NOT NULL,
PRIMARY KEY (`ID`),
UNIQUE KEY `phone_UNIQUE` (`phone`)
) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Victim_Request`
--
LOCK TABLES `Victim_Request` WRITE;
/*!40000 ALTER TABLE `Victim_Request` DISABLE KEYS */;
INSERT INTO `Victim_Request` VALUES (22,'aslam','+913215246354','kalamassery',10.053946,76.379520,'2019-06-14 09:00:18'),(23,'mirsha','+913252555555','malapuram',10.053946,76.378520,'2019-06-14 09:01:38'),(25,'Abu','+919141427272','Aluva',10.053946,76.379720,'2019-06-14 13:54:29'),(28,'Babu','+912349488548','attapady',10.053946,76.379720,'2019-06-14 14:32:48');
/*!40000 ALTER TABLE `Victim_Request` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Volunteer`
--
DROP TABLE IF EXISTS `Volunteer`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Volunteer` (
`ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL,
`phone` char(13) NOT NULL,
`latitude` decimal(8,6) NOT NULL,
`longitude` decimal(9,6) NOT NULL,
`creationTime` datetime NOT NULL,
`online_status` tinyint(4) NOT NULL DEFAULT '1',
`verified` tinyint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
UNIQUE KEY `phone_UNIQUE` (`phone`)
) ENGINE=InnoDB AUTO_INCREMENT=87 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Volunteer`
--
LOCK TABLES `Volunteer` WRITE;
/*!40000 ALTER TABLE `Volunteer` DISABLE KEYS */;
INSERT INTO `Volunteer` VALUES (85,'John','+919648564646',10.053946,76.379720,'2019-06-14 09:10:03',1,0),(86,'Aslam','+918089454846',10.053946,76.379720,'2019-06-14 14:12:05',1,0);
/*!40000 ALTER TABLE `Volunteer` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `news`
--
DROP TABLE IF EXISTS `news`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `news` (
`ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
`priority` tinyint(4) NOT NULL,
`code` char(6) DEFAULT NULL,
`creationTime` datetime NOT NULL,
`heading` varchar(100) NOT NULL,
`body` varchar(500) NOT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `news`
--
LOCK TABLES `news` WRITE;
/*!40000 ALTER TABLE `news` DISABLE KEYS */;
INSERT INTO `news` VALUES (1,1,NULL,'2019-03-07 14:41:52','Shutter Opens at 9:30','The minister has announced that the shutter is going to open today at 19:00PM'),(2,2,NULL,'2019-03-07 14:56:00','Dam exploded','District collector has said that the dam have been severly damaged and exploded.'),(7,1,'b1c1eb','2019-06-14 10:44:38','water level reducing','water level is reducing in areas near Aluva.'),(8,1,'f7295a','2019-06-14 14:00:19','Dont spread fake news: Chief Minister','Chief minister asked people not to spread any fake news.');
/*!40000 ALTER TABLE `news` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping routines for database 'management'
--
/*!50003 DROP FUNCTION IF EXISTS `calculate_distance` */;
/*!50003 SET @saved_cs_client = @@character_set_client */ ;
/*!50003 SET @saved_cs_results = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client = utf8 */ ;
/*!50003 SET character_set_results = utf8 */ ;
/*!50003 SET collation_connection = utf8_general_ci */ ;
/*!50003 SET @saved_sql_mode = @@sql_mode */ ;
/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ;
DELIMITER ;;
CREATE DEFINER=`remote`@`%` FUNCTION `calculate_distance`(lat1 decimal(8,6), lng1 decimal(9,6), lat2 decimal(8,6), lng2 decimal(9,6)) RETURNS decimal(7,3)
DETERMINISTIC
BEGIN
DECLARE R INT;
DECLARE dLat DECIMAL(30,15);
DECLARE dLng DECIMAL(30,15);
DECLARE a1 DECIMAL(30,15);
DECLARE a2 DECIMAL(30,15);
DECLARE a DECIMAL(30,15);
DECLARE c DECIMAL(30,15);
DECLARE d DECIMAL(30,15);
SET R = 6371;
SET dLat = RADIANS( lat2 ) - RADIANS( lat1 );
SET dLng = RADIANS( lng2 ) - RADIANS( lng1 );
SET a1 = SIN( dLat / 2 ) * SIN( dLat / 2 );
SET a2 = SIN( dLng / 2 ) * SIN( dLng / 2 ) * COS( RADIANS( lng1 )) * COS( RADIANS( lat2 ) );
SET a = a1 + a2;
SET c = 2 * ATAN2( SQRT( a ), SQRT( 1 - a ) );
SET d = R * c;
RETURN d;
RETURN 1;
END ;;
DELIMITER ;
/*!50003 SET sql_mode = @saved_sql_mode */ ;
/*!50003 SET character_set_client = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection = @saved_col_connection */ ;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2019-08-04 9:41:30
|
<reponame>YarikGS/perfectum_currency
# ************************************************************
# Sequel Pro SQL dump
# Версия 4541
#
# http://www.sequelpro.com/
# https://github.com/sequelpro/sequelpro
#
# Адрес: 127.0.0.1 (MySQL 5.7.21)
# Схема: perfectum
# Время создания: 2019-06-04 13:31:32 +0000
# ************************************************************
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
# Дамп таблицы currency
# ------------------------------------------------------------
DROP TABLE IF EXISTS `currency`;
CREATE TABLE `currency` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`base_currency` varchar(3) DEFAULT NULL,
`currency` varchar(3) DEFAULT NULL,
`buy` float DEFAULT NULL,
`sale` float DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
LOCK TABLES `currency` WRITE;
/*!40000 ALTER TABLE `currency` DISABLE KEYS */;
/*!40000 ALTER TABLE `currency` ENABLE KEYS */;
UNLOCK TABLES;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
<reponame>KarmaScripter/Data<gh_stars>0
CREATE TABLE [StatusOfFunds]
(
[StatusOfFundsId] INT NOT NULL IDENTITY (1,1),
[BudgetLevel] NVARCHAR(255),
[BFY] NVARCHAR(255),
[EFY] NVARCHAR(255),
[RpioCode] NVARCHAR(255),
[RpioName] NVARCHAR(255),
[AhCode] NVARCHAR(255),
[AhName] NVARCHAR(255),
[ProgramAreaName] NVARCHAR(255),
[ProgramProjectCode] NVARCHAR(255),
[ProgramProjectName] NVARCHAR(255),
[AccountCode] NVARCHAR(255),
[LowerName] NVARCHAR(255),
[RcCode] NVARCHAR(255),
[RcName] NVARCHAR(255),
[DivisionName] NVARCHAR(255),
[OrgCode] NVARCHAR(255),
[OrgName] NVARCHAR(255),
[BocCode] NVARCHAR(255),
[BocName] NVARCHAR(255),
[FundCode] NVARCHAR(255),
[FundName] NVARCHAR(255),
[Amount] FLOAT,
[OpenCommitments] FLOAT,
[ULO] FLOAT,
[ExpenseAccruals] FLOAT,
[Expenditures] FLOAT,
[Obligations] FLOAT,
[Used] FLOAT,
[Available] FLOAT,
[NpmCode] NVARCHAR(255),
[NpmName] NVARCHAR(255),
[NpmTitle] NVARCHAR(255),
[ProgramAreaCode] NVARCHAR(255),
CONSTRAINT PK_StatusOfFunds
PRIMARY KEY (StatusOfFundsId)
); |
CREATE CACHED TABLE OPENMM_FOLDERS (
FOLDER_ID INTEGER GENERATED BY DEFAULT AS IDENTITY,
AVAILABLE CHAR( 1 ) DEFAULT 'Y' NOT NULL,
MOUNTPOINT VARCHAR( 128 ) DEFAULT '' NOT NULL,
PATH VARCHAR( 512 ) NOT NULL,
PRIMARY KEY ( FOLDER_ID ),
CONSTRAINT OPENMM_FOLDERS_UN1 UNIQUE( PATH )
);
CREATE CACHED TABLE OPENMM_USERS (
USER_ID INTEGER GENERATED BY DEFAULT AS IDENTITY,
USER_NAME VARCHAR( 64 ) NOT NULL,
DISPLAY_NAME VARCHAR( 128 ),
IS_ADMIN CHAR( 1 ), -- Y/N is this user an admin
SALT VARCHAR( 64 ),
ENC_CHAIN VARCHAR( 64 ),
ENC_PASSWORD VARCHAR( <PASSWORD> ),
PRIMARY KEY ( USER_ID ),
CONSTRAINT OPENMM_USERS_UN1 UNIQUE( USER_NAME )
);
CREATE CACHED TABLE OPENMM_SHOWS (
SHOW_ID INTEGER GENERATED BY DEFAULT AS IDENTITY,
NAME VARCHAR( 64 ) NOT NULL,
DISPLAY_NAME VARCHAR( 64 ) NOT NULL,
TVDB_ID VARCHAR( 16 ), -- optional TVDB show id
TVDB_LANG VARCHAR( 4 ), -- optional TVDB show id language
IMDB_ID VARCHAR( 16 ),
ZAP2IT_ID VARCHAR( 16 ),
ACTIVE CHAR( 1 ) NOT NULL, -- Y/N, are they actively making new episodes
CONTENT_RATING VARCHAR( 8 ),
BANNER_PATH VARCHAR( 128 ),
DESCRIPTION VARCHAR( 255 ),
PRIMARY KEY ( SHOW_ID )
);
CREATE CACHED TABLE OPENMM_SHOW_SEASONS (
SEASON_ID INTEGER GENERATED BY DEFAULT AS IDENTITY,
SHOW_ID INTEGER NOT NULL,
NAME VARCHAR( 64 ) NOT NULL,
NUMBER INTEGER DEFAULT 0 NOT NULL,
PRIMARY KEY ( SEASON_ID ),
FOREIGN KEY ( SHOW_ID ) REFERENCES OPENMM_SHOWS( SHOW_ID )
);
CREATE CACHED TABLE OPENMM_SHOW_EPISODES (
EPISODE_ID INTEGER GENERATED BY DEFAULT AS IDENTITY,
SEASON_ID INTEGER NOT NULL,
TVDB_ID VARCHAR( 16 ), -- optional TVDB episode id
NAME VARCHAR( 128 ) NOT NULL,
EPNUM INTEGER,
DVD_EPNUM INTEGER,
SCREENSHOT_PATH VARCHAR( 255 ),
DESCRIPTION VARCHAR( 255 ),
GUESTS VARCHAR( 255 ),
AIR_DATE VARCHAR( 16 ),
RATING VARCHAR( 16 ),
LAST_WATCHED DATE,
WATCH_COUNT INTEGER DEFAULT 0 NOT NULL,
PRIMARY KEY ( EPISODE_ID ),
FOREIGN KEY ( SEASON_ID ) REFERENCES OPENMM_SHOW_SEASONS( SEASON_ID )
);
CREATE CACHED TABLE OPENMM_MOVIES (
MOVIE_ID INTEGER GENERATED BY DEFAULT AS IDENTITY,
NAME VARCHAR( 128 ) NOT NULL,
DISPLAY_NAME VARCHAR( 128 ) NOT NULL,
DESCRIPTION VARCHAR( 1024 ),
IMDB_NUMBER VARCHAR( 16 ),
RTID_NUMBER VARCHAR( 16 ), -- Rotten Tomatoes ID
YEAR VARCHAR( 4 ),
KEYWORDS VARCHAR( 255 ),
GENRE VARCHAR( 255 ),
RELEASE_DATE VARCHAR( 16 ),
MPAA_RATING VARCHAR( 8 ),
RATING VARCHAR( 8 ),
RUNTIME VARCHAR( 16 ),
POSTER_URL VARCHAR( 255 ),
LAST_WATCHED DATE,
WATCH_COUNT INTEGER DEFAULT 0 NOT NULL,
PRIMARY KEY ( MOVIE_ID )
);
CREATE CACHED TABLE OPENMM_LINKS (
LINK_ID INTEGER GENERATED BY DEFAULT AS IDENTITY,
AVAILABLE CHAR( 1 ) NOT NULL, -- Y/N
REF_TYPE_CODE CHAR( 1 ) NOT NULL, -- I or E for internal or external
EXT_SERVICE VARCHAR( 16 ), -- name of the external service that hosts the content
TYPE_CODE CHAR( 1 ) NOT NULL, -- M or S for movie or show
REF_ID INTEGER NOT NULL, -- reference to the id from the other table
URL VARCHAR( 128 ) NOT NULL,
FILE_SIZE BIGINT, -- size of the local file
PRIMARY KEY ( LINK_ID )
);
-- Cache of web resources (Mostly images)
CREATE CACHED TABLE OPENMM_WEB_CACHE (
CACHE_ID INTEGER GENERATED BY DEFAULT AS IDENTITY,
HASH VARCHAR( 255 ) NOT NULL, -- Hash of the url
URL VARCHAR( 255 ) NOT NULL, -- Url
LAST_ACCESSED DATETIME,
PRIMARY KEY( CACHE_ID ),
CONSTRAINT OPENMM_WEB_CACHE_UN1 UNIQUE( HASH ),
CONSTRAINT OPENMM_WEB_CACHE_UN2 UNIQUE( URL )
);
INSERT INTO OPENMM_USERS ( USER_NAME, DISPLAY_NAME, IS_ADMIN, SALT, ENC_CHAIN, ENC_PASSWORD )
VALUES ( 'admin', 'Administrator', 'Y', '', 'PLAIN', 'admin' );
|
/*
Script : SQL Server - Windows Group Membership Checker
Version : 1.0 (August 2010)
Author : <NAME>
Email : <EMAIL>
Web : http://sqlsolace.blogspot.com
*/
DECLARE @CurrentRow INT
DECLARE @TotalRows INT
SET @CurrentRow = 1
DECLARE @SqlGroupMembership TABLE(
ACCOUNT_NAME SYSNAME,
ACCOUNT_TYPE VARCHAR(30),
ACCOUNT_PRIVILEGE VARCHAR(30),
MAPPED_LOGIN_NAME SYSNAME,
PERMISSION_PATH SYSNAME
)
DECLARE @WindowsGroupsOnServer TABLE(
UniqueRowID int IDENTITY (1, 1) Primary key NOT NULL
, Name SYSNAME
)
INSERT INTO @WindowsGroupsOnServer (NAME)
SELECT [NAME] FROM master.sys.server_principals WHERE TYPE = 'G'
SELECT @TotalRows = MAX(UniqueRowID) FROM @WindowsGroupsOnServer
DECLARE @WindowsGroupName sysname
-- Loop Each Windows Group present on the server
WHILE @CurrentRow <= @TotalRows
BEGIN
SELECT @WindowsGroupName = [Name]
FROM @WindowsGroupsOnServer
WHERE UniqueRowID = @CurrentRow
BEGIN TRY
-- Insert found logins into table variable
INSERT INTO @SqlGroupMembership (ACCOUNT_NAME,ACCOUNT_TYPE,ACCOUNT_PRIVILEGE,MAPPED_LOGIN_NAME,PERMISSION_PATH)
EXEC xp_logininfo @WindowsGroupName , 'members'
END TRY
BEGIN CATCH
-- No action for if xp_logininfo fails
END CATCH
SELECT @CurrentRow = @CurrentRow + 1
END
-- Display final results
SELECT @@servername AS Servername
, [PERMISSION_PATH] AS WindowsGroup
, Account_Name
, Mapped_Login_Name
, Account_Type
, Account_Privilege
FROM @SqlGroupMembership
ORDER BY [PERMISSION_PATH], [ACCOUNT_NAME]
|
CREATE TABLE IF NOT EXISTS erc20.tokens (
contract_address bytea UNIQUE,
symbol text,
decimals integer
);
BEGIN;
DELETE FROM erc20.tokens *;
COPY erc20.tokens (contract_address, symbol, decimals) FROM stdin;
\\xe62174753ea3275f65f4cf980dc002fea7887ea8 🦄 18
\\x3106a0a076bedae847652f42ef07fd58589e001f $ADS 18
\\xee06a81a695750e71a662b51066f2c74cf4478a0 $DG 18
\\x9077f9e1efe0ea72867ac89046b2a6264cbcaef5 $HRIMP 18
\\xa6368d7df5731eae98ccc7e4e1bf458bb0855e9d $KIRBYRELOADED 18
\\x4af698b479d0098229dc715655c667ceb6cd8433 $MAID 18
\\xf5274576dc1c7bd4d5116bc8f9adf901b92abc6c $wick 18
\\xb6ed7644c69416d67b522e20bc294a9a9b405b31 0xBTC 8
\\x035df12e0f3ac6671126525f1015e47d79dfeddf 0XMR 18
\\xc86817249634ac209bc73fca1712bbd75e37407d 1-UP 18
\\x7ff4169a6b5122b664c51c95727d87750ec07c84 10SET 18
\\x35872fea6a4843facbcdbce99e3b69596a3680b8 1337 4
\\x5a9bf6badcd24fe0d58e1087290c2fe2c728736a 18C 18
\\x208bbb6bcea22ef2011789331405347394ebaa51 1AI 18
\\x111111111117dc0aa78b770fa6a738034120c302 1INCH 18
\\xa4ef4b0b23c1fc81d3f9ecf93510e64f58a4a016 1MIL 18
\\xf0bc1ae4ef7ffb126a8347d06ac6f8add770e1ce 1MT 7
\\xd5cd84d6f044abe314ee7e414d37cae8773ef9d3 1ONE 18
\\x07597255910a51509ca469568b048f2597e72504 1UP 18
\\xfdbc1adc26f0f8f8606a5d63b7d3a3cd21c22b23 1WO 8
\\x168e39f96a653ce0a456560687241b0b2936e5ff 2BASED 18
\\x2c9c19ce3b15ae77c6d80aec3c1194cfd6f7f3fa 2CRZ 18
\\xc96c1609a1a45ccc667b2b7fa6508e29617f7b69 2GT 18
\\xe48972fcd82a274411c01834e2f031d4377fa2c0 2KEY 18
\\x167e2a574669b0eeb552aaf3da47c728cb348a41 300 7
\\x4f56221252d117f35e2f6ab937a3f77cad38934d 3CS 18
\\x6c3f90f043a72fa612cbac8115ee7e52bde6e490 3PoolCurve 18
\\x96cf107e446a6e528ffd045f4eb6dff3cdb6a666 3XT 18
\\xe552dfeae83f01ada1a5e071c7f590a63e3c24b8 420 18
\\xff44b5719f0b77a9951636fc5e69d3a1fc9e7d73 4ART 18
\\xa3ac41fde5f3a569fa79e81ffe6734ee8097ce9d 4XB 8
\\xb95f156b77373b470df75a798e5bad526e9ad70d 518 18
\\x62d75a2a10f755104bd1024d997141ce793cf585 520 18
\\x02fdd6866333d8cd8b1ca022d382080698060bc2 69C 18
\\xed36482c7f8e5850e91ac0cf6bf2130a1aa2df92 7ADD 18
\\x186a33d4dbcd700086a26188dcb74e69be463665 7E 8
\\x5b535edfa75d7cb706044da0171204e1c48d00e8 808TA 18
\\xfeea0bdd3d07eb6fe305938878c0cadbfa169042 8PAY 18
\\xffc63b9146967a1ba33066fb057ee3722221acf0 A 18
\\xe8272210954ea85de6d2ae739806ab593b5d9c51 A5T 18
\\x6aba1623ea906d1164cbb007e764ebde2514a2ba AAA 10
\\x8c6bf16c273636523c29db7db04396143770f6a0 AAA 18
\\xd938137e6d96c72e4a6085412ada2dad78ff89c4 AAA 8
\\xba3D9687Cf50fE253cd2e1cFeEdE1d6787344Ed5 aAAVE 18
\\x686c650dbcfeaa75d09b883621ad810f5952bd5d AAB 18
\\xe75ad3aab14e4b0df8c5da4286608dabb21bd864 AAC 5
\\x41efc0253ee7ea44400abb5f907fdbfdebc82bec AAPL 18
\\xd059c8a4c7f53c4352d933b059349ba492294ac9 AAPL 18
\\xbfd815347d024f449886c171f78fa5b8e6790811 AAPX 18
\\x9f31fab2405dfba05a487ebce88f3abd26f1cba6 AAT 18
\\x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9 AAVE 18
\\x05ec93c0365baaeabf7aeffb0972ea7ecdd39cf1 ABAT 18
\\xe1ba0fb44ccb0d11b80f92f4f8ed94ca3ff51d00 aBAT 18
\\x9ff4f50efd40c915f7d1476bf36acb8908e0c56d ABC123 18
\\xf8b358b3397a8ea5464f8cc753645d42e14b79ea ABL 18
\\xe692c8d72bd4ac7764090d54842a305546dd1de5 ABLOCK 8
\\x865bfd8232778f00cae81315bf75ef1fe6e30cdd ABLX 18
\\x8d39041025e845d9c1828fc2fd9d8b497616665c ABM 18
\\x41a08648c3766f9f9d85598ff102a08f4ef84f84 ABPT 18
\\xf9e149a2935bd69e80b50018134132794f8b43a2 ABQ 18
\\xa11bd36801d8fa4448f0ac4ea7a62e3634ce8c7c ABR 18
\\x2feb105fbb4c922597b125c56822b3db7351b55d ABST 4
\\xa0b207103f764a920b4af9e691f5bd956de14ded ABST 8
\\xb98d4c97425d9908e66e53a6fdf673acca0be986 ABT 18
\\x6ee0f7bb50a54ab5253da0667b0dc2ee526c30a8 aBUSD 18
\\xa361718326c15715591c299427c62086f69923d9 ABUSD 18
\\x9a794dc1939f1d78fa48613b89b8f9d0a20da00e ABX 18
\\x0e8d6b471e332f140e7d9dbb99e5e3822f728da6 ABYSS 18
\\x9a0aba393aac4dfbff4333b06c407458002c6183 AC 18
\\x63d958d765f5bd88efdbd8afd32445393b24907f ACA 8
\\xe45fc4290fd3159588f532058592ea327d2e97d4 ACD 18
\\xea6d4d7b36c00b3611de0b0e1982b12e9e736c66 ACD 18
\\x06147110022B768BA8F99A8f385df11a151A9cc8 ACE 0
\\xbdb4a359a506b0997a257da767308436c7340245 ACE 18
\\xe17e41acd4caa3cec048837bfd1918b3c4141767 ACE 6
\\xec5483804e637d45cde22fa0869656b64b5ab1ab ACE 18
\\x4b3a0c6d668b43f3f07904e124328659b90bb4ca AceD 18
\\x885e127aba09bf8fae058a2895c221b37697c9be ACED 18
\\xed04915c23f00a313a544955524eb7dbd823143d ACH 8
\\xcad2d4c4469ff09ab24d02a63bcedfcd44be0645 ACPT 18
\\x76306f029f8f99effe509534037ba7030999e3cf ACR 18
\\x7b2df125567815ac9b57da04b620f50bc93b320c ACTP 8
\\xd536bbd5414a8c2beed82a63737b9327d2fa35a6 ACU 18
\\x7be00ed6796b21656732e8f739fc1b8f1c53da0d ACXT 18
\\xf6dbe88ba55f1793ff0773c9b1275300f830914f AD 8
\\xb3299d4bab93bf04d5b11bc49cd6dfad1f77d23f ADABEAR 18
\\x43de1145cd22f0a9cc99e51c205e6e81161df6b9 ADABULL 18
\\x028171bca77440897b824ca71d1c56cac55b68a3 aDAI(v2) 18
\\xfc1e690f61efd961294b3e1ce3313fbd8aa4f85d aDAI 18
\\xed363bafb0f50d99c6599427741d0380628b27f2 ADAM 18
\\x2baac9330cf9ac479d819195794d79ad0c7616e3 ADB 18
\\x1e41a55030e0d0794abfb6dced22e6c7d18d8247 ADC 18
\\xb6c3dc857845a713d3531cea5ac546f6767992f4 ADCO 6
\\x635d081fd8f6670135d8a3640e2cf78220787d56 ADD 18
\\x94d863173ee77439e4292284ff13fad54b3ba182 ADEL 18
\\x7220e92d418e2eb59d0c25d195fa004bfd3afc42 ADF 18
\\x8810c63470d38639954c6b41aac545848c46484a ADI 18
\\x660e71483785f66133548b10f6926dc332b06e61 ADL 18
\\xc314b0e758d5ff74f63e307a86ebfe183c95767b ADP 18
\\xcfcecfe2bd2fed07a9145222e8a7ad9cf1ccd22a ADS 11
\\xd0d6d6c5fe4a677d343cc433536bb717bae167dd ADT 9
\\xf8d1254fc324d2e75a5a37f5bd4ca34a20ef460d ADVC 8
\\x4470bb87d77b963a013db939be332f927f2b992e ADX 4
\\xade00c28244d5ce17d72e40330b1c318cd12b7c3 ADX 18
\\x5ca9a71b1d01849c0a95490cc00559717fcf0d1d AE 18
\\x0405be40241a2f7822c33c5a3eee238bf2973ba3 AEL 18
\\x712db54daa836b53ef1ecbb9c6ba3b9efb073f40 aENJ 18
\\xac6df26a590f08dcc95d5a4705ae8abbc88509ef AENJ 18
\\xd38de88687172bde440755b5237987e4a87c23a7 AENS 8
\\xac4d22e40bf0b8ef4750a99ed4e935b99a42685e AER 18
\\x91af0fbb28aba7e31403cb457106ce79397fd4e6 AERGO 18
\\xd932ba8adf16009e5571648e070f9eebb2f259c0 AES 18
\\x8c9e4cf756b9d01d791b95bc2d0913ef2bf03784 AET 18
\\x3a3a65aab0dd2a17e3f1947ba16138cd37d08c04 aETH 18
\\x14dffd4f515d4c43493c6c512c78fbc59a8af254 AFC 18
\\xf576ff0d7e4c1e8f27dbd50321e95e36a965985f AFC 18
\\xb8a5dba52fe8a0dd737bf15ea5043cea30c7e30b AFCASH 18
\\xd8a8843b0a5aba6b030e92b3f4d669fad8a5be50 AFDLT 4
\\x68e8a20128e1902c02f533a02ed0cfd8396e3fbc AFI 18
\\xee9e5eff401ee921b138490d00ca8d1f13f67a72 AFIN 8
\\x08130635368aa28b217a4dfb68e1bf8dc525621c AFROX 4
\\x2d80f5f5328fdcb6eceb7cacf5dd8aedaec94e20 AGA 4
\\xb453f1f2ee776daf2586501361c457db70e1ca0f AGAR 8
\\xb3ed706b564bba9cab64042f4e1b391be7bebce5 AGF 18
\\x8028a34ec63678bcb64325f805449beba98c28a8 AGGT 18
\\x8eb24319393716668d768dcec29356ae9cffe285 AGI 8
\\x5b7533812759b45c2b44c19e320ba2cd2681b542 AGIX 8
\\x32353a6c91143bfd6c7d363b546e62a9a2489a20 AGLD 18
\\x72c9fb7ed19d3ce51cea5c56b3e023cd918baadf AGLT 18
\\x2fcee080ceb4ff95fcdc8a03052cd85e51ecc69c AGOL 18
\\xc1ad269f10bf36d6972ee30827051b59d0d2456b AGOV 18
\\xa704fce7b309ec09df16e2f5ab8caf6fe8a4baa9 AGRI 18
\\xEab935f35693c3218b927436E63564018E92034f AGRIBNT 18
\\x738865301a9b7dd80dc3666dd48cf034ec42bdda AGRS 8
\\x7db5454f3500f28171d1f9c7a38527c9cf94e6b2 AGS 4
\\xdb2f2bcce3efa95eda95a233af45f3e0d4f00e2a AGS 8
\\x8d2fab1ff34f1c545673a816f1438b02d0a2e32d AGT 8
\\x8b79656fc38a04044e495e22fad747126ca305c4 AGVC 18
\\xd6d3608f2d770d0a8d0da62d7afe21ea1da86d9c AHF 18
\\xb125cceb9c6e349217d09b069a8d88dbeacf06e5 AHOUSE 9
\\xc91b523a59acc63a64f61fc7bbfb4bfc82dd25f2 AI 18
\\xe7fb3559358a99df54466d0350e4ad6dc7093da3 AICO 8
\\x37e8789bb9996cac9156cd5f5fd32599e6b91289 AID 18
\\xe3BF775Ec5f4F4dFCbb21194B22be1217b815b1d AIDBNT 18
\\xda1e53e088023fe4d1dc5a418581748f52cbd1b8 AIDI 9
\\x584b44853680ee34a0f337b712a8f66d816df151 AIDOC 18
\\xa957045a12d270e2ee0dca9a3340c340e05d4670 AIDUS 18
\\x53352e7d6620cc931c0c9318166ae2a92c1a4666 AIM 18
\\x3a810ff7211b40c4fa76205a14efe161615d0385 AIN 18
\\x4ceda7906a5ed2179785cd3a40a69ee8bc99c466 AION 8
\\x626e8036deb333b408be468f951bdb42433cbf18 AIOZ 18
\\x44e4963f9012e7a7aeee05b7f2caae3419557aea AIPE 18
\\x8cb1d155a5a1d5d667611b7710920fd9d1cd727f AIRX 8
\\x79650799e7899a802cb96c0bc33a6a8d4ce4936c AIT 18
\\x1063ce524265d5a3a624f4914acd573dd89ce988 AIX 18
\\xA415cD56C694bd7402d14560D18Bb19A28F77617 AIXBNT 18
\\x3301ee63fb29f863f2333bd4466acb46cd8323e6 AKITA 18
\\x6b4d5e9ec2acea23d4110f4803da99e25443c5df aKLIMA 18
\\x5f02cf3c7ada49dfc4a3645fc85c8ae86808dd9b AKM 18
\\x39c6b3e42d6a679d7d776778fe880bc9487c2eda AKNC 18
\\x9d91be44c06d373a8a226e1f3b146956083803eb aKNC 18
\\x8ab7404063ec4dbcfd4598215992dc3f8ec853d7 AKRO 18
\\x564f45b6bb68aded8b660a0d8a0a948dd6d6e4e8 ALA 8
\\x00a8b738e453ffd858a7edf03bccfe20412f0eb0 ALBT 18
\\x95d82ba91256db995c80bed690d0a779191af62b ALC 18
\\x0000a1c00009a619684135b824ba02f7fbf3a572 ALCH 18
\\xdbdb4d16eda451d0503b854cf79d55697f90c8df ALCX 18
\\xb26c4b3ca601136daf98593feaeff9e0ca702a8d ALD 18
\\xb339fca531367067e98d7c4f9303ffeadff7b881 ALD 18
\\x7d2d3688df45ce7c552e19c27e007673da9204b8 aLEND 18
\\x27702a26126e0b3702af63ee09ac4d1a084ef628 ALEPH 18
\\x0100546f2cd4c9d97f798ffc9755e47865ff7ee6 ALETH 18
\\x8ba6dcc667d3ff64c1a2123ce72ff5f0199e5315 ALEX 18
\\x16b0a1a87ae8af5c792fabc429c4fe248834842b ALG 18
\\x057fb10e3fec001a40e6b75d3a30b99e23e54107 ALGOBEAR 18
\\x584936357d68f5143f12e2e64f0089db93814dad ALGOBULL 18
\\xfdc3d57eb7839ca68a2fad7a93799c8e8afa61b7 ALGOHEDGE 18
\\x4c6719bf85903d18c295da44216f862b01b36f43 ALH 18
\\x4289c043a12392f1027307fb58272d8ebd853912 ALI 18
\\xac51066d7bec65dc4589368da368b212745d63e8 ALICE 6
\\xa06bc25b5805d5f8d82847d191cb4af5a3e873e0 ALINK 18
\\xa64bd6c70cb9051f6a9ba1f163fdc07e0dfb5f84 aLINK 18
\\xea610b1153477720748dc13ed378003941d84fab ALIS 18
\\x6c16119b20fa52600230f074b349da3cb861a7e3 ALK 18
\\xf4e447c390167e5a17a95ab2475b71d4ea785200 ALLBI 18
\\x1b7b723e66a0dd33e8f5e8ec039b51acafcd66a5 ALN 18
\\x8185bc4757572da2a610f887561c32298f1a5748 ALN 18
\\x455f7ef6d8bcfc35f9337e85aee1b0600a59fabe ALOHA 18
\\x37d6e7f287200c740012747d2a79295caed2db35 ALP 8
\\x7ca4408137eb639570f8e647d9bd7b7e8717514a ALPA 18
\\xa78a391A060B3B904EbA36E4f28B97d86cE0548A ALPH 18
\\xa1faa113cbe53436df28ff0aee54275c13b40975 ALPHA 18
\\xaa99199d1e9644b588796f3215089878440d58e0 ALPHR 18
\\x419b8ed155180a8c9c64145e76dad49c0a4efb97 ALT 18
\\x90b417ab462440cf59767bcf72d0d91ca42f21ed ALTBEAR 18
\\xd829664cdbf3195b2ce76047a65de29e7ed0a9a8 ALTBULL 18
\\xbc6da0fe9ad5f3b0d58160288917aa56653660e9 ALUSD 18
\\xf2cdf38e24738ba379ffa38d47bc88a941df5627 ALY 2
\\x2509ee05b8df07ec75046e24bbf1cfcdb8b2a183 AMA 18
\\x1de37068c22bc477a3d6f512e09c186d937e5a27 AMALGAM 18
\\x6fce4a401b6b80ace52baaefe4421bd188e76f6f aMANA 18
\\xa685a61171bb30d4072b338c80cb7b2c865c873e AMANA 18
\\x4dc3643dbc642b72c158e7f3d2ff232df61cb6ce AMB 18
\\x7603de2ea4cbceb0250118de03fcb70fe1e8e935 AMC 18
\\x9e5a64943f9f48463f07cc0578bbf9e2e67f0f61 AMC 18
\\x12513335ffd5dafc2334e98625d27c1ca84bff86 AME 18
\\x72c14bc8e28f18e91a2e9551802d3fb2cb80e712 AMI 18
\\x564393b8d6deaea8f3d739a3f6d9b441d8ee6198 AMIX 18
\\x7deb5e830be29f91e298ba5ff1356bb7f8146998 aMKR 18
\\xc713e5e149d5d0715dcd1c156a020976e7e56b88 AMKR 18
\\xca0e7269600d353f70b14ad118a49575455c0f2f AMLT 18
\\x8b1f49491477e0fb46a29fef53f1ea320d13c349 AMM 6
\\x737f98ac8ca59f2c68ad658e3c3d8c8963e40a4c AMN 18
\\x0f9Be347378a37CED33A13AE061175AF07CC9868 AMNBNT 18
\\x38c87aa89b2b8cd9b95b736e1fa7b612ea972169 AMO 18
\\x00059ae69c1622a7542edc15e8d17b060fe307b6 AMON 18
\\xff20817765cb7f73d4bde2e66e067e58d11095c2 AMP 18
\\xd46ba6d942050d489dbd938a2c909a5d5039a161 AMPL 9
\\x0e2145A23f7810431Ba0f2e19676530b3F1Fb0EC AMPLBNT 18
\\xd3fb5cabd07c85395667f83d20b080642bde66c7 AMR 16
\\x2c9aceb63181cd08a093d052ec041e191f229692 ANB 18
\\x0f3adc247e91c3c50bc08721355a41037e89bc20 ANC 18
\\xbbe319b73744db9d54f5d29df7d8256b7e43995c ANC 18
\\x5456bc77dd275c45c3c15f0cf936b763cf57c3b5 ANCT 8
\\x130914e1b240a7f4c5d460b7d3a2fd3846b576fa ANG 18
\\x6c7b97c7e09e790d161769a52f155125fac6d5a1 ANGEL 18
\\x31429d1856ad1377a8a0079410b297e1a9e214c2 ANGLE 18
\\xcd62b1c403fa761baadfc74c525ce2b51780b184 ANJ 18
\\x3c45b24359fb0e107a4eaa56bd0f2ce66c99a0e5 ANK 18
\\x437F7d93540094Da58F337644ba7D6E5Ad823564 ANKBNT 18
\\x8290333cef9e6d528dd5618fb97a76f268f3edd4 ANKR 18
\\xe95a203b1a91a908f9b9ce46459d101078c2c3cb ankrETH 18
\\xcae72a7a0fd9046cf6b165ca54c9e3a3872109e0 ANRX 18
\\x960b236a07cf122663c4303350609a66a7b288c0 ANT[old] 18
\\xa117000000f279d81a1d3cc75430faa017fa5a2e ANT 18
\\x0c485BffD5df019F66927B2C32360159884D4409 ANTBNT 18
\\xa9fbb83a2689f4ff86339a4b96874d718673b627 ANTS 18
\\x3d382228c54736d831fac2748f4734d9177c7332 ANV 18
\\x7dbdd9dafdc4c1c03d67925a4f85daa398af32b0 ANW 18
\\xf99d58e463a2e07e5692127302c20a191861b4d6 ANY 18
\\x9ab165d795019b6d8b3e971dda91071421305e5a AOA 18
\\x8578530205cecbe5db83f7f29ecfeec860c297c2 AOG 18
\\x15bda08c3afbf5955d6e9b235fd55a1fd0dbc829 APC 6
\\x584267b60874132f82ef1554f6e079a23aab4408 APC 18
\\x209c1808febf6c1ab7c65764bb61ad67d3923fcc APE 18
\\x26ea1f595f6567b7050fbba24f6a66e19db4d560 APE 18
\\xfa898efdb91e35bd311c45b9b955f742b6719aa2 APED 18
\\x14dd7ebe6cb084cb73ef377e115554d47dc9d61e APES 18
\\x0f775ad69e3c93d599d3315a130bd82a0cdda397 apeUSD-LINK-DEC21 18
\\x5c6af72cbd740b90528c8fe226125413b6bd7e5a apeUSD-SNX-DEC21 18
\\xec6a5d88bf56fd3f96957ae65916c69f29db35c5 apeUSD-AAVE-DEC21 18
\\xfa5e27893aee4805283d86e4283da64f8c72dd56 apeUSD-UMA-DEC21 18
\\xfbb6b34dd77274a06ea2e5462a5e0b9e23ce478e apeUSD-UNI-DEC21 18
\\x16448014a29484b82e3a5a6cf254e5c563a28929 API 18
\\x0b38210ea11411557c13457d4da7dc6ea731b88a API3 18
\\xec02f6e35183d46da66c55f2aac1ad6f45474a8c APING 18
\\x4c0fbe1bb46612915e7967d2c3213cd4d87257ad APIS 18
\\xf51ebf9a26dbc02b13f8b3a9110dac47a4d62d78 APIX 18
\\x69275ac5477f3a9dc051180bc559140bc647f8e9 APLP 18
\\xc8c424b91d8ce0137bab4b832b7f7d154156ba6c APM 18
\\xd4342a57ecf2fe7ffa37c33cb8f63b1500e575e6 APN 18
\\x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db APPC 18
\\x4104b135dbc9609fc1a9490e61369036497660c8 APW 18
\\x95a4492f028aa1fd432ea71146b433e7b4446611 APY 18
\\xf7413489c474ca4399eee604716c72879eea3615 APYS 18
\\x2a9bdcff37ab68b95a53435adfd8892e86084f93 AQT 18
\\x7e32c8727cc19dd59a7a4d01b95ae1cbfc8f4c77 AQUA 9
\\xd34a24006b862f4e9936c506691539d6433ad297 AQUA 18
\\xa92e7c82b11d10716ab534051b271d2f6aef7df5 ARA 18
\\x387c291bc3274389054e82ce81dd318a0113caf5 ARAID 18
\\x30680ac0a8a993088223925265fd7a76beb87e7f ARAW 18
\\xfee2fa52de307316d9d47ffe3781d4cba2c4f6fd ARC 18
\\x1f3f9d3068568f8040775be2e8c03c103c61f3af ARCH 18
\\x3781731acd887b14d7f7f261f3aada7f6405868a ARCN 18
\\x0f71b8de197a1c84d31de0f1fa7926c365f052b3 ARCONA 18
\\x1245ef80f4d9e02ed9425375e8f649b9221b31d8 ARCT 8
\\x1321f1f1aa541a56c31682c57b80ecfccd9bb288 ARCX 18
\\xed30dd7e50edf3581ad970efc5d9379ce2614adb ARCX 18
\\xb8e2e2101ed11e9138803cd3e06e16dd19910647 ARDX 2
\\x69948cc03f478b95283f7dbf1ce764d0fc7ec54c aREN 18
\\xcc12abe4ff81c9378d670de1b57f8e0dd228d77a AREN 18
\\x71010a9d003445ac60c4e6a7017c1e89a477b438 aREP 18
\\x358aa737e033f34df7c54306960a38d09aabd523 ARES 18
\\x28cca76f6e8ec81e4550ecd761f899110b060e97 ARGO 18
\\x29917c3b1c2b4779a7b61f08d98b3da0fcf3b6a4 ARGP 18
\\xedf6568618a00c6f0908bf7758a16f76b6e04af9 ARIA20 18
\\x1cceed434a7a64d1d8f9bb719fe0d29cbba9f120 ARIX 3
\\xa9248f8e40d4b9c3ca8ebd8e07e9bcb942c616d8 ARKE 4
\\xa9ff725189fe00da9c5f27a580dc67fea61e3fb2 ARM 18
\\x1337def16f9b486faed0293eb623dc8395dfe46a ARMOR 18
\\x0c37bcf456bc661c14d596683325623076d7e283 ARNX 18
\\x1337def18c680af1f9f45cbcab6309562975b1dd ARNXM 18
\\xba50933c268f567bdc86e1ac131be072c6b0b71a ARPA 18
\\xfec0cf7fe078a500abf15f1284958f22049c2c7e ART 18
\\x34612903db071e888a4dadcaa416d3ee263a87b9 ARTE 18
\\x897abf83f0c44b86cb67ec56c006c00d56659517 ARTEON 18
\\x4fd0b42d14ad7ffd18d2d1d7ea6b4b45f3d56463 ARTG 18
\\x0e3cc2c4fb9252d17d07c67135e48536071735d9 ARTH 18
\\xf013e0ea26cb386b3021783a3201bf2652778f93 ARTS 18
\\x741b0428efdf4372a8df6fb54b018db5e5ab7710 ARTX 18
\\x7d8daff6d70cead12c6f077048552cf89130a2b1 ARX 18
\\xa5f8fc0921880cb7342368bd128eb8050442b1a1 ARY 18
\\x6913ccabbc337f0ea7b4109dd8200d61c704d332 ASAC 8
\\x3b73c1b2ea59835cbfcadade5462b6ab630d9890 ASAP 18
\\xcc665390b03c5d324d8faf81c15ecee29a73bcb4 ASAP 18
\\x75b02aa1084a12b8729f5acbe1078bd450abe552 ASEC 8
\\x0dc5189ec8cde5732a01f0f592e927b304370551 ASG 9
\\x64d91f12ece7362f91a6f8e7940cd55f05060b92 ASH 18
\\x5ef3347c34c69d5c6e0b25233a7b259ef34c1103 ASI 4
\\xeeee2a622330e6d2036691e983dee87330588603 ASKO 18
\\x2565ae0385659badcada1031db704442e1b69982 ASM 18
\\x328c4c80bc7aca0834db37e6600a6c49e12da4de aSNX 18
\\x35f6b052c598d933d69a4eec4d04c73a191fe6c2 ASNX 18
\\xfa2562da1bba7b954f26c74725df51fb62646313 ASSY 18
\\x27054b13b1b798b345b591a4d22e6562d47ea75a AST 4
\\xcbd55d4ffc43467142761a764763652b48b969ff ASTRO 18
\\x625ae63000f46200499120b906716420bd059240 aSUSD 18
\\x6c5024cd4f8a59110119c56f8933403a539555eb ASUSD 18
\\xad0887734461af8c6033068bde4047dbe84074cc ASWAP 8
\\x017b584acfd16d767541ae9e80cdc702f4527b0b ASY 18
\\xbf8fb919a8bbf28e590852aef2d284494ebc0657 AT 18
\\xe54b3458c47e44c37a267e7c633afef88287c294 AT 5
\\xa2120b9e674d3fc3875f415a7df52e382f141225 ATA 18
\\x72b2b8e42a10d785abf85f3044223db8c9167bd6 ATC 10
\\x8052327f1baf94a9dc8b26b9100f211ee3774f54 ATD 18
\\x8c680d0de5a9a3f6a99649d0a000225054934742 ATFI 18
\\x821144518dfe9e7b44fcf4d0824e15e8390d4637 ATIS 18
\\x78b7fada55a64dd895d8c8c35779dd8b67fa8a05 ATL 18
\\x9b91ef0d78488c5ef4c509eb7a73f7d8ca650ce4 ATM 18
\\x461733c17b0755ca5649b6db08b3e213fcf22546 ATN 18
\\xb551d08d2189ef67b4788be2c35c0743693625ca ATO 18
\\x3b834a620751a811f65d8f599b3b72617a4418d0 ATOMBEAR 18
\\x75f0038b8fbfccafe2ab9a51431658871ba5182c ATOMBULL 18
\\xdacd69347de42babfaecd09dc88958378780fb62 ATRI 0
\\x2daee1aa61d60a252dc80564499a69802853583a ATS 4
\\x89fb927240750c1b15d4743cd58440fc5f14a11c ATT 18
\\x44e2dec86b9f0e0266e9aa66e10323a2bd69cf9a ATTR 18
\\x101cc05f4a51c0319f570d5e146a8c625198e636 ATUSD 18
\\x4da9b813057d04baef4e5800e36083717b4a0341 aTUSD 18
\\xc12d099be31567add4e4e4d0d45691c3f58f5663 AUC 18
\\xa9b1eb5908cfc3cdf91f9b8b3a74108598009096 AUCTION 18
\\x18aaa7115705e8be94bffebde57af9bfc265b998 AUDIO 18
\\xB124541127A0A657f056D9Dd06188c4F1b0e5aab aUNI 18
\\x6e98e5401adcb0d76f4debfc3d794b3031f48790 AUR 18
\\x94183cfacfaca73ba36a12a4cd7775fdae5fed69 AUR-0819 18
\\x6417e8673dedd7a0471a87804bf85a559fd8bcc2 AURA 9
\\x0aaca86e54fe70edd7c86cbf3cfb470caa49faef AURELIO 18
\\x59f1b6d0f5105cf025a3de58858a9363f4fef084 AUSC 18
\\x1c7bbadc81e18f7177a95eb1593e5f5f35861b10 AUSCM 18
\\x9ba00d6856a4edf4665bca2c2309936572473b7e aUSDC 6
\\xbcca60bb61934080951369a648fb03df4f96263c aUSDC(v2) 6
\\x3ed3b47dd13ec9a98b44e6204a523e766b225811 aUSDT(v2) 6
\\x71fc860f7d3a592a4a98740e39db31d25db65ae8 aUSDT 6
\\x0ed55f31ee2f9875a738c6496842b0e6519d7833 AUTO 4
\\x622dffcc4e83c64ba959530a5a5580687a57581b AUTO 18
\\x9aa53df7263a73b93ec6a5e2a767ee30da10c304 AUTZ 9
\\x423f3da166470030a86fa76280b2d688fce1f722 AUX 18
\\xbcf9dbf8b14ed096b2ba08b7269356197fdd1b5d AVAL 18
\\xfa6f7881e52fdf912c4a285d78a3141b089ce859 AVO 18
\\x94d916873b22c9c1b53695f1c002f78537b9b3b2 AVS 18
\\x0d88ed6e74bbfd96b831231638b66c05571e824f AVT 18
\\x9ff58f4ffb29fa2266ab25e75e2a8b3503311656 AWBTC 18
\\xfc4b8ed459e00e5400be803a9bb3954234fd50e3 aWBTC 18
\\x030ba81f1c18d280636f32af80b9aad02cf0854e aWETH 18
\\x0342ac5dfad866985dde477caa85027a3c01a334 AWF 18
\\x696acc2de564b48682d71d0847b3632f87c9a402 AWG 18
\\x68c85b9f78f30a0df5ac5723e4e700037f185415 AWO 18
\\xb89903dde3899f0280b99913168ee833a7896b93 AWS 18
\\xa51fc71422a30fa7ffa605b360c3b283501b5bf6 AWX 18
\\xf8ed6c51762208ff26f8f3e4efd4e06af2da649c AXA 18
\\x73ee6d7e6b203125add89320e9f343d65ec7c39a AXI 18
\\x793786e2dd4cc492ed366a94b88a3ff9ba5e7546 AXIAV3 18
\\xecc0f1f860a82ab3b442382d93853c02d6384389 AXIS 18
\\x4fac0ccd9e2ed9fd462d42b66fb81ba9a1f6f25e AXL 18
\\x71f85b2e46976bd21302b64329868fd15eb0d127 AXN 18
\\xdd0020b1d5ba47a54e2eb16800d73beb6546f91a AXPR 18
\\xbb0e17ef65f82ab018d8edd776e8dd940327b28b AXS 18
\\xf5d669627376ebd411e34b98f19c868c8aba5ada AXS 18
\\x12e51e77daaa58aa0e9247db7510ea4b46f9bead aYFI 18
\\xaaaaaaaba2ea3daab0a6c05f1b962c78c9836d99 AZ 18
\\x6fb0855c404e09c47c3fbca25f08d4e41f9f062f aZRX 18
\\xdf7ff54aacacbff42dfe29dd6144a69b629f8c9e AZRX 18
\\xef7f1aae6f60de9f353dc170a35b8f7c7814e32b AZT 18
\\x910524678c0b1b23ffb9285a81f99c29c11cbaed AZUKI 18
\\xd26a9c3437f7d121098c8c05c7413f5cc70bb070 AZUM 18
\\x4b742b5bdb1d252907ae7f399a891d4a178dbc24 B1P 18
\\xc4de189abf94c57f396bd4c52ab13b954febefd8 B20 18
\\x6faa826af0568d1866fca570da79b318ef114dab B21 18
\\x481de76d5ab31e28a33b0ea1c1063adcb5b1769a B26 18
\\x350758e4a1256561fd0ee142dc7e0545f561fadc B2U 18
\\xa870879e2872f9f2dc3a33933a9af3345b00fd14 B360 18
\\x3e65e1eefde5ea7ccfc9a9a1634abe90f32262f8 BAAS 18
\\xc36824905dff2eaaee7ecc09fcc63abc0af5abc5 BAB 18
\\xdb13fb60d3fddabc41743d9d603ce3f42c17d057 BABY 18
\\xdf35988d795d90711e785b488bb2127692e6f956 BABYFLOKI 9
\\x062e3be6a7c56a395b1881a0cd69a4923ade4fa2 BAC 18
\\x3449fc1cd036255ba1eb19d65ff4ba2b8903a69a BAC 18
\\x7dc59729b0adf4ae34721a1e06ef82a19e690b04 BAC 8
\\x175ab41e2cedf3919b2e4426c19851223cf51046 BACON 18
\\x3472a5a71965499acd81997a54bba8d852c6e53d BADGER 18
\\x6bffa07a1b0cebc474ce6833eaf2be6326252449 BAEPAY 4
\\xad808e7a446f14a109dafce7dd2fe7ae7ff86b20 BAFI 18
\\x28a06c02287e657ec3f8e151a13c36a1d43814b0 BAG 18
\\xf33121a2209609cadc7349acc9c40e41ce21c730 BAG 18
\\x3b5f11dbac1476af17957c6e5991f21c826743dd BAK 8
\\x8379f52d09b9998ecba731288ee4fe532fd91c0b BAKT 18
\\xba100000625a3754423978a60c9317c58a424e3d BAL 18
\\x6523203bd28d399068acc14db6b7f31d9bf43f1a BALO 18
\\x7a5ce6abd131ea6b148a022cb76fc180ae3315a6 BALPHA 18
\\xf56842af3b56fd72d17cb103f92d027bba912e89 BAMBOO 18
\\x21f54372c07b930b79c5c2d9bb0eaaca86c3b298 BANANA 18
\\xe2311ae37502105b442bbef831e9b53c5d2e9b3b BANANA 18
\\x998b3b82bc9dba173990be7afb772788b5acb8bd BANCA 18
\\xba11d00c5f74255f56a5e366f4f77f5a186d7f55 BAND 18
\\x24a6a37576377f63f194caa5f518a60f45b42921 BANK 18
\\x2d94aa3e47d9d5024503ca8491fce9a2fb4da198 BANK 18
\\x1c45ed430bb3629672c6c8010dc7747cdcdf6a94 BANus 18
\\x20b2974669e5c70c46962ab7eae34528f9dc83ab BANus 18
\\x879e57f3b2d913b4aebb5242abbc6f4ee64a1ab3 BANus 18
\\x374cb8c27130e2c9e04f44303f3c8351b9de61c1 BAO 18
\\xa4644fb79f6fcc2f386b7be5b6a084889611adc9 BAOSHIBA 18
\\x705C71b262C511B66bAA4791cC2BE61B971bD784 BAP0 18
\\x54c9ea2e9c9e8ed865db4a4ce6711c2a0d5063ba BART 18
\\x106538cc16f938776c7c180186975bca23875287 BAS 18
\\x07150e919b4de5fd6a63de1f9384828396f25fdc BASE 9
\\x68a118ef45063051eac49c7e647ce5ace48a68a5 BASED 18
\\xf25c91c87e0b1fd9b4064af0f427157aab0193a7 BASIC 18
\\xe33f363351186e185470f35f6deb94aba44347d8 BASID 18
\\x44564d0bd94343f72e3c8a0d22308b7fa71db0bb BASK 18
\\x47eb79217f42f92dbd741add1b1a6783a2c873cf BAST 18
\\xa7ed29b253d8b4e3109ce07c80fc570f81b63696 BASV1 18
\\x0d8775f648430679a709e98d2b0cb6250d2887ef BAT 18
\\x131da075a2832549128e93AcC2b54174045232Cf BATBNT 18
\\x7FfE011B93e06FA14CE5A6E00320937652664366 BATUSDB 18
\\x9a0242b7a33dacbe40edb927834f96eb39f8fbcb BAX 18
\\xacf3d402e5e2c3edd5b8129e966017d293f12a4c BAXS 18
\\xea47b64e1bfccb773a0420247c0aa0a3c1d2e5c5 BAYC 18
\\xb020ed54651831878e5c967e0953a900786178f9 BAZT 18
\\x19d97d8fa813ee2f51ad4b4e04ea08baf4dffc28 bBADGER 18
\\xf4b5470523ccd314c6b9da041076e7d79e0df267 BBANK 18
\\x58723c7afcd33a2db6ae06c37521725d65f0cc15 BBB 18
\\x675ce995953136814cb05aaaa5d02327e7dc8c93 BBC 18
\\xf43b2f981efc5a611a97951ce4fd7d3bd87f4902 BBE 18
\\x00e2dde5a0e824740ed4bd2a27d6a6b0d92d8c99 bBETA 18
\\x4fbb0b4cd8f960ac3428194f1c94c805d5b35836 BBGC 8
\\x336c21557185079f42f6ffc098ab572c87ae9435 BBI 18
\\xac00797df10e825589d8b53e715393be4e617459 BBL 18
\\x84f7c44b6fed1080f647e354d552595be2cc602f BBO 18
\\xbb0a009ba1eb20c5062c790432f080f6597662af BBP 18
\\x7671904eed7f10808b664fc30bb8693fd7237abf BBR 18
\\x70460c3bb9abcc0aa51f922c00d37816d6ede4d7 BBRA 18
\\x1500205f50bf3fd976466d0662905c9ff254fc9c BBT 4
\\x9800af4ee8ee12f9548dc954d0bc492756af5acc BBT 18
\\x9be89d2a4cd102d8fecc6bf9da793be995c22541 BBTC 8
\\x57f55d89c30172a913bae10a2e702e5302f1e356 BBW 9
\\x2ecb13a8c458c379c4d9a7259e202de03c8f3d19 BC 18
\\xc222e5b89309fab5faf55a3b3bd9082be834916c BCA 6
\\xff3519eeeea3e76f1f699ccce5e23ee0bdda41ac BCAP 0
\\xb5bb48567bfd0bfe9e4b08ef8b7f91556cc2a112 BCASH 18
\\xfdeaa4ab9fea519afd74df2257a21e5bca0dfd3f BCAT 18
\\xae17f4f5ca32f77ea8e3786db7c0b2fe877ac176 BCC 18
\\x1e797ce986c3cff4472f7d38d5c4aba55dfefe40 BCDN 15
\\xacfa209fb73bf3dd5bbfb1101b9bc999c49062a5 BCDT 18
\\xa9fc65da36064ce545e87690e06f5de10c52c690 BCHBEAR 18
\\x4c133e081dfb5858e39cca74e69bf603d409e57a BCHBULL 18
\\x2ab05b915c30093679165bcdba9c26d8cd8bee99 BCHC 18
\\x02e88a689fdfb920e7aa6174fb7ab72add3c5694 BCHHEDGE 18
\\x5ef227f7ce4e96c9ce90e32d4850545a6c5d099b BCHIP 8
\\x2ba8349123de45e931a8c8264c332e6e9cf593f9 BCMC 18
\\x9669890e48f330acd88b78d63e1a6b3482652cd9 BCNT 18
\\x72e203a17add19a3099137c9d7015fd3e2b7dba9 BCP 18
\\xd26fb114401ec86887cd09f62eccd95fcf20b571 BCP 8
\\xe047705117eb07e712c3d684f5b18e74577e83ac BCP 8
\\xe4f726adc8e89c6a6017f01eada77865db22da14 BCP 18
\\x1c4481750daa5ff521a2a7490d9981ed46465dbd BCPT 18
\\x27E98fC7d05f54E544d16F58C194C2D7ba71e3B5 bcrv3crypto 18
\\x6dEf55d2e18486B9dDfaA075bc4e4EE0B28c1545 bcrvRenWBTC 18
\\xd04c48A53c111300aD41190D63681ed3dAd998eC bcrvRenWSBTC 18
\\xb9D076fDe463dbc9f915E5392F807315Bf940334 bcrvTbtcSbtc 18
\\x03066da434e5264ef0b32f787923f974a5726fdc BCS 18
\\x31274db8b609df99e5988ee527071643b5160fc3 BCS 18
\\x98bde3a768401260e7025faf9947ef1b81295519 BCS 18
\\x9ec251401eafb7e98f37a1d911c0aea02cb63a80 BCT 18
\\x579353231f3540b218239774422962c64a3693e7 BCTR 18
\\x93c9175e26f57d2888c7df8b470c9eea5c0b0a93 BCUBE 18
\\x14da7b27b2e0fedefe0a664118b0c9bc68e2e9af BCUG 18
\\x1014613e2b3cbc4d575054d4982e580d9b99d7b1 BCV 8
\\x8d717ab5eac1016b64c2a7fd04720fd2d27d1b86 BCVT 18
\\x53c8e199eb2cb7c01543c137078a038937a68e40 bCVX 18
\\x2B5455aac8d64C14786c3a29858E43b5945819C0 bcvxCRV 18
\\xd45247c07379d94904e0a87b4481f0a1ddfa0c64 BCZERO 18
\\x827eed050df933f6fda3a606b5f716cec660ecba BD 8
\\x6a4ffaafa8dd400676df8076ad6c724867b0e2e8 bDAI 18
\\x3a3547d62e9f9e76f99d51d5ab4f07aae0db2dbb BDCC 18
\\x1961b3331969ed52770751fc718ef530838b6dee BDG 18
\\x7e7e112a68d8d2e221e11047a72ffc1065c38e1a bDIGG 18
\\xbfc1502ebc37475b940ced8f036b91018a73c8f6 BDK 18
\\x92416e32042c9e67b0771a1b00bcdf92ecb64950 BDOG 18
\\x37092dbf8c26da9cc805683b4cc0b942e92de2fd BDOGE 9
\\x593114f03a0a575aece9ed675e52ed68d2172b8c BDP 18
\\xf3dcbc6d72a4e1892f7917b7c43b74131df8480e BDP 18
\\x0309c98b1bffa350bcb3f9fb9780970ca32a5060 bDPI 18
\\x4efe8665e564bf454ccf5c90ee16817f7485d5cf BDT 18
\\x7bce667ef12023dc5f8577d015a2f09d99a5ef58 BDT 18
\\xdc59ac4fefa32293a95889dc396682858d52e5db BEAN 6
\\x016ee7373248a80bde1fd6baa001311d233b3cfa BEAR 18
\\xaf162491c0b21900c01f4cc0f7110238aacdebe7 BEAR 4
\\x48dee19c81b89a9ab473361bae7a19210f2deaa4 BEARSHIT 18
\\xdbb2f12cb89af05516768c2c69a771d92a25d17c BEAST 18
\\x59c033ec65e6b9c501c1ee34fb42f2575da4b517 BEC 18
\\x2af1df3ab0ab157e1e2ad8f88a7d04fbea0c7dc6 BED 18
\\x1763ad73694d4d64fb71732b068e32ac72a345b1 BEE 18
\\x573be8873cc39149e71b92918e73634acb3c54d5 BEER 8
\\xfbcecb002177e530695b8976638fbd18d2038c3c BEFX 8
\\xa91ac63d040deb1b7a5e4d4134ad23eb0ba07e14 BEL 18
\\xd8ef149b4e1e8f050d52925f9c68d3a296e77227 BEP 18
\\xcf3c8be2e2c42331da80ef210e9b1b307c03d36a BEPRO 18
\\x6aeb95f06cda84ca345c2de0f3b7f96923a44f4c BERRY 14
\\x1b073382e63411e3bcffe90ac1b9a43fefa1ec6f BEST 8
\\x35f67c1d929e106fdff8d1a55226afe15c34dbe2 BETA 18
\\xbe1a001fe942f96eea22ba08783140b9dcc09d28 BETA 18
\\x83d6a2171f78e8ffe4dfe7680983effc49cff7a0 BETC 4
\\x14c926f2290044b647e1bf2072e67b495eff1905 BETHER 18
\\x763186eb8d4856d536ed4478302971214febc6a9 BETR 18
\\x679F601F0deb53c2dB0C8C26369FDcba5fD753CF BETRBNT 18
\\xa7925aa2a6e4575ab0c74d169f3bc3e03d4c319a BETTER 4
\\x3839d8ba312751aa0248fed6a8bacb84308e20ed BEZ 18
\\xdc349913d53b446485e98b76800b6254f43df695 BEZOGE 9
\\x5b71bee9d961b1b848f8485eec8d8787f80217f5 BF 18
\\x0c7d5ae016f806603cb1782bea29ac69471cab9c BFC 18
\\x4d31200e6d7854c2f664af7fc38a21600960f74d BFC 18
\\x708aa4e8aaeaad6074dd09cc4e5c52a70452eb39 BFF 8
\\x2b2b0559081c41e962777b5049632fdb30f7e652 BFI 8
\\xc980be019f2ac10a1c96f964b971a5f44551d318 BFI 18
\\xf680429328caaacabee69b7a9fdb21a71419c063 BFLY 18
\\x244c5276ea5bb927575417156038d7381b44ab2c BFR 18
\\x01ff50f8b7f74e4f00580d9596cd3d0d6d6e326f BFT 18
\\x3779d960261f882750b39c622527822c88c98e13 BFT 18
\\x25901f2a5a4bb0aaabe2cdb24e0e15a0d49b015d BFX 18
\\xcfabaff3bb057ba878f43ce027c9266d2f900561 BFZ 18
\\xd043f70ff0634167db1149b15e5668f5be52d72c BGC 18
\\xd34c9281585866a9fb2af0931adb1fa35ed44039 BGC 8
\\xea54c81fe0f72de8e86b6dc78a9271aa3925e3b5 BGG 18
\\xba7970f10d9f0531941dced1dda7ef3016b24e5b BGLD 18
\\x5cbb89b03534d82692b183882c2a2a9ff7fdeb44 BGT 18
\\x7a545ed3863221a974f327199ac22f7f12535f11 BGTT 18
\\x4a6be56a211a4c4e0dd4474d524138933c17f3e3 BHIBA 9
\\x996229d0c6a485c7f4b52e092eaa907cb2def5c6 BHIG 18
\\xee74110fb5a1007b06282e0de5d73a61bf41d9cd BHPC 18
\\x35101c731b1548b5e48bb23f99edbc2f5c341935 BHSC 18
\\xa7d10ff962eda41f3b037e3af1d8b4037eba4b86 BICAS 18
\\x00000000000045166c45af0fc6e4cf31d9e14b9a BID 18
\\x1da01e84f3d4e6716f274c987ae4bee5dc3c8288 BID 18
\\x25e1474170c4c0aa64fa98123bdc8db49d7802fa BID 18
\\x2791bfd60d232150bff86b39b7146c0eaaa2ba81 BIFI 18
\\x56c64e280ef1262da370d2c5862bb61c6dc3dbb4 BIG 8
\\xa6e7dc135bdf4b3fee7183eab2e87c0bb9684783 BIGO 8
\\x70debcdab2ef20be3d1dbff6a845e9ccb6e46930 BIKI 8
\\x0239d3a3485ec54511bee9d77d92695e443bf060 BILL 18
\\x9e7ce36dbd1a9a6c6e80d08e38077745855edd3a BIM 18
\\x75230d7d86b59213773d47103b96a0e7133c8621 BIN 8
\\x384e12f6bc9e4f1f0c42f57a28652750a4d53c09 BINU 18
\\xf18432ef894ef4b2a5726f933718f5a8cf9ff831 BIO 8
\\x9b1b1e109ff130b298cf1d47389c47569f5c2932 BION 18
\\x29641e1096d4240b09a933839feac57b200652a4 BIOP 18
\\xaaca86b876ca011844b5798eca7a67591a9743c8 BIOS 18
\\xc07a150ecadf2cc352f5586396e344a6b17625eb BIOT 9
\\x5cb888182fbffdb62c08fb4b5a343914f00fdfee BIPS 18
\\x70401dfd142a16dc7031c56e862fc88cb9537ce0 BIRD 18
\\x99043bb680ab9262c7b2ac524e00b215efb7db9b BISHU 9
\\x6e8908cfa881c9f6f2c64d3436e7b80b1bf0093f BIST 18
\\x1a4b46696b2bb4794eb3d4c26f1c55f9170fa4c5 BIT 18
\\x47da42696a866cdc61a4c809a515500a242909c1 BIT 18
\\x0a2a86bb0bee386a11291d5d01e89cdfb565df5d BITB 0
\\x4eed0fa8de12d5a86517f214c2f11586ba2ed88d BITE 18
\\x8811e4dd5ec5eb8764b97cc814b1339089717ada BITH 8
\\x41ad4093349c8a60de591a3c37dcd184558eaae3 BITN 18
\\x93b1e78a3e652cd2e71c4a767595b77282344932 BITO 18
\\xc38f1fb49acdf2f1213caf3319f6eb3ea2cb7527 BITS 18
\\x9f9913853f749b3fe6d6d4e16a1cc3c1656b6d51 BITT 18
\\x55a290f08bb4cae8dcf1ea5635a3fcfd4da60456 BITTO 18
\\xa0ed4c4acbf07c03365d6bbe28150a819aff700f BITX 18
\\xff2b3353c3015e9f1fbf95b9bda23f58aa7ce007 BITX 18
\\x009c43b42aefac590c719e971020575974122803 BIX 18
\\xb3104b4b9da82025e8b9f8fb28b3553ce2f67069 BIX 18
\\x3e9e371f8d2e9fca315fb0a747533ced8a3fcbcb BIXCPRO 4
\\x7a8ca2f815a260660158a38c34ca321a3605ecfe BIZZ 8
\\x6a27348483d59150ae76ef4c0f3622a78b0ca698 BKBT 18
\\x34bdf48a8f753de4822a6cfb1fee275f9b4d662e BKC 18
\\x1ca02dd95f3f1e33da7f5afe15ea866dab07af04 BKING 9
\\x0d6f6a130c3046713cba425f41a65c17205df6b5 BKITA 9
\\x1df7aa5551e801e280007dc0fc0454e2d06c1a89 BKK 18
\\x8af22fbdefe01b4dc7960ec04ec73e8502f4a6b0 BKKG 8
\\xbee6edf5fa7e862ed2ea9b9f42cb0849184aae85 BKN 0
\\x9d62526f5ce701950c30f2caca70edf70f9fbf0f BKT 18
\\x45245bc59219eeaaf6cd3f382e078a461ff9de7b BKX 18
\\x646b41183bb0d18c01f75f630688d613a5774dc7 BKY 8
\\xd714d91a169127e11d8fab3665d72e8b7ef9dbe2 BLACK 18
\\x936ff029bcefb5a12275b9a72f79f2bed17a85fd BLACKHOLE 18
\\x41a3dba3d677e573636ba691a70ff2d606c29666 BLANK 18
\\xaec7e1f531bb09115103c53ba76829910ec48966 BLANK 18
\\x326caf6980d4e9161cfb3c55f195b3d825c266d4 BLC 18
\\x6d2c508fc4a588a41713ff59212f85489291d244 BLCT 18
\\xe796d6ca1ceb1b022ece5296226bf784110031cd BLES 18
\\x417ffdbc285dd2c4dc00937798ab901634137caa BLFI 18
\\x42bedd647e387dabec65a7dc3a3babcc68bb664d BLINK 18
\\x50d2de5397d7c657c3d424634a2ddf4e0d73d789 BLISS 18
\\x065cc8636a00c007276ed9cb874cd59b89e6609b BLL 18
\\xdc190ea63142c7522dd56077f9b48b5073e3bd49 BLND 18
\\x68481f2c02be3786987ac2bc3327171c5d05f9bd BLO 18
\\xe6404a4472e5222b440f8fafb795553046000841 BLOAP 18
\\x6f919d67967a97ea36195a2346d9244e60fe0ddb BLOC 18
\\x8a6d4c8735371ebaf8874fbd518b56edd66024eb BLOCKS 18
\\xd2727e4259bba31955fd582986334aea4fba8c52 BLOOD 8
\\x892f5a0b08bb7b1eecccc63ef3916ff201c93664 BLOODY 18
\\x107c4504cd79c5d2696ea0030a8dd4e92601b82e BLT 18
\\x539efe69bcdd21a83efd9122571a64cc25e0282b BLUE 8
\\x927937aa4c989f8c907941e39abd79cc2bfd7cb1 BLUE 18
\\x8da25b8ed753a5910013167945a676921e864436 BLV 18
\\xd1ef9a7310d0806855c672288ef5a1bab62cef33 BLVR 18
\\x38d9eb07a7b8df7d86f440a4a5c4a4c1a27e1a08 BLXM 18
\\xf8ad7dfe656188a23e89da09506adf7ad9290d5d BLY 18
\\x5732046a883704404f284ce41ffadd5b007fd668 BLZ 18
\\x70efdc485a10210b056ef8e0a32993bc6529995e BLZN 18
\\xe2fe5e7e206e7b46cad6a5146320e5b4b9a18e97 BM 2
\\xd945d2031b4c63c0e363304fb771f709b502dc0a BMC 18
\\xdf6ef343350780bf8c3410bf062e0c015b1dd671 BMC 8
\\xf03045a4c8077e38f3b8e2ed33b8aee69edf869f BMH 18
\\x725c263e32c72ddc3a19bea12c5a0479a81ee688 BMI 18
\\x25ce333b325f02c9720da526a01b5f5be889b4e3 BMJ 18
\\x5913d0f34615923552ee913dbe809f9f348e706e BMJ 18
\\x01b23286ff60a543ec29366ae8d6b6274ca20541 BMP 18
\\x86c2752f8fe2c6679a942c8ee6c785c28f42cd55 BMT 18
\\xf028adee51533b1b47beaa890feb54a457f51e89 BMT 18
\\xf205d2d65205711b6f6aae3fcb7ebdbc8573f192 BMT 18
\\x986ee2b944c42d017f52af21c4c69b84dbea35d8 BMX 18
\\x42edc1c5ff57ff5240c90e2d8dfa269d77d68013 BN 18
\\x20910e5b5f087f6439dfcb0dda4e27d1014ac2b8 BNA 18
\\x07ef9e82721ac16809d24dafbe1792ce01654db4 BNANA 18
\\xb8c77482e45f1f44de1745f52c74426c631bdd52 BNB 18
\\x6febdfc0a9d9502c45343fce0df08828def44795 BNBBEAR 18
\\xE6b31fB3f29fbde1b92794B0867A315Ff605A324 BNBBNT 18
\\x9d1a62c2ad99019768b9126fda004a9952853f6e BNBBULL 18
\\x2840ad41cf25ad58303ba24c416e79dce4161b4f BNBHEDGE 18
\\xbe5b336ef62d1626940363cf34be079e0ab89f20 BNC 18
\\x84cd68c3e470ecee4b8b6212efcb8c6bcb38da1d BND 18
\\x1de5e000c41c8d35b9f1f4985c23988f05831057 BNF 18
\\x68e0a48d3bff6633a31d1d100b70f93c3859218b BNFI 18
\\x4981553e8ccf6df916b36a2d6b6f8fc567628a51 BNI 18
\\xc80c5e40220172b36adee2c951f26f2a577810c5 BNK 8
\\x8752bf7ad53d25a4165b9370f2becc22dd8ae838 BNOX 2
\\xd27d76a1ba55ce5c0291ccd04febbe793d22ebf4 BNP 18
\\x84d821f7fbdd595c4c4a50842913e6b1e07d7a53 BNPL 18
\\x695106ad73f506f9d0a9650a78019a93149ae07c BNS 8
\\x668dbf100635f593a3847c0bdaf21f0a09380188 BNSD 18
\\x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c BNT 18
\\x3f71558cf0055d84943790eab617b15f8b34fc78 BNT 18
\\x202f21b2a809cc4af932d2e3e5b700f9936588a8 BNTAMB 18
\\x323fab7e88ea9db8768ec52fd0f21b6a9b782415 BNTBUG 18
\\xd42a4fd1845333f24d88e70d5837927cecaf7f26 BNTCRT 18
\\xb80650a44bafbeb4aa2a52c62d79112f5f94126c BNTTRL 18
\\x86d1d12523b65203851c571fcc029bf90903fb6d BNTX 18
\\xd2d6158683aee4cc838067727209a0aaf4359de3 BNTY 18
\\xbcf8969f0f5c5075f0b925809fed62eb04e58ecf BNUS 18
\\xbbdce056cbe561ee004094c75099172e7e3b34df BNV 18
\\x40c836982788dca47d11024b1fa3e01fd4661766 BNX 18
\\x014a543f767b3b06e31a811b0a75483ee8dfd72d BNZ 18
\\x746dda2ea243400d5a63e0700f190ab79f06489e BOA 7
\\xf9c36c7ad7fa0f0862589c919830268d1a2581a1 BOA 18
\\xdf347911910b6c9a4286ba8e2ee5ea4a39eb2134 BOB 18
\\x0602121722642936150f12ea1e07d62a8bb2aa71 BOBT 18
\\xc39835d32428728cbde6903f84c76750976c0323 BOCBP 18
\\x2d4de3c744d43cf77cb12399921faf0d78b7415b BOLD 18
\\xd5930c307d7395ff807f2921f12c5eb82131a789 BOLT 18
\\xbb340a2eaf55c5e67a5a05fe5ceed9b9702d76f4 BOLTT 8
\\x1c95b093d6c236d3ef7c796fe33f9cc6b8606714 BOMB 0
\\xcc34366e3842ca1bd36c1f324d15257960fcc801 BON 18
\\x0391d2021f89dc339f60fff84546ea23e337750f BOND 18
\\x5dc02ea99285e17656b8350722694c35154db1e8 BOND 8
\\x91dfbee3965baaee32784c2d546b7a0c62f268c9 BONDLY 18
\\xd2dda223b2617cb616c1580db421e4cfae6a8a85 BONDLY 18
\\x5c84bc60a796534bfec3439af0e6db616a966335 BONE 18
\\x9813037ee2218799597d83d4a5b6f3b6778218d9 BONE 18
\\x6d6506e6f438ede269877a0a720026559110b7d5 BONK 18
\\xa9c44135b3a87e0688c41cf8c27939a22dd437c9 BOOB 18
\\x6c929cde908481f3d1d775008791f42b1b89dbb0 BOOL 18
\\xdb7eab9ba6be88b869f738f6deeba96d49fe13fd BOOM 18
\\x82b89e0f9c0695639eb88659d0c306dbc242af96 BOOMB 9
\\x3e780920601d61cedb860fe9c4a90c9ea6a35e78 BOOST 18
\\xc8ce75f643ecad864fc625902a6a07371f38320d BOOT 18
\\x6b01c3170ae1efebee1a3159172cb3f7a5ecf9e5 BOOTY 18
\\xd9b48548de7710519221207d70e40aa24d7d1985 BOOTY 9
\\x3c9d6c1c73b31c837832c72e04d3152f051fc1a9 BOR 18
\\x26fb86579e371c7aedc461b2ddef0a8628c93d3b BORA 18
\\xbc19712feb3a26080ebf6f2f7849b417fdd792ca BORING 18
\\xc477d038d5420c6a9e0b031712f61c5120090de9 BOSON 18
\\x5beabaebb3146685dd74176f68a0721f91297d37 BOT 18
\\xf9fbe825bfb2bf3e387af0dc18cac8d87f29dea8 BOTS 18
\\x9dfad1b7102d46b1b197b90095b5c4e9f5845bba BOTTO 18
\\x139d9397274bb9e2c29a9aa8aa0b5874d30d62e3 BOUTS 18
\\x63f584fa56e60e4d0fe8802b27c7e6e3b33e007f BOX 18
\\xe1a178b681bd05964d3e3ed33ae731577d9d96dd BOX 18
\\x780116d91e5592e58a3b3c76a351571b39abcec6 BOXX 15
\\xdf290b162a7d3e0a328cf198308d421954f08b94 BP 18
\\xdf22da9a8c1d80095175ae601d182a734923f01a BPAKC 8
\\xe865a04fb0d565107eaf9049ef22c27dd0c4bbef BPC 18
\\x426fc8be95573230f6e6bc4af91873f0c67b21b4 BPLC 18
\\x0452aed878805514e28fb5bd0b56bef92176e32a BPOP 8
\\x52d904eff2605463c2f0b338d34abc9b7c3e3b08 BPP 18
\\x197e6bca6bc2f488ec760a6ce46b1399cd2954b0 BPRO 8
\\xbbbbbbb5aa847a2003fbc6b5c16df0bd1e725f61 BPRO 18
\\x0ec9f76202a7061eb9b3a7d6b59d36215a7e37da BPT 18
\\x283669123bd83da2536bb534e20512101c18e5d8 BPT 9
\\x6c22b815904165f3599f0a4a092d458966bd8024 BPTN 18
\\x2aa4a3e8bb72be68a31c9c3c98ca7bec723c6222 BPX 18
\\xea3cb156745a8d281a5fc174186c976f2dd04c2e BRAIN 18
\\x56ed2f7dac19243df100bac10364c56df20cb1e9 BRAP 18
\\x9e77d5a1251b6f7d456722a6eac6d2d5980bd891 BRAT 8
\\x61d24aabb3e5e800d8f3d3d43dcbd66ae6cab51e BRB 18
\\x73484a262730d1d422610729e828346f9b2ff480 BRCP 18
\\x558ec3152e2eb2174905cd19aea4e34a23de9ad6 BRD 18
\\x77a2bf0bda9775fb3524a6720dd3b16bd455e2c2 BREAST 9
\\x4639cd8cd52ec1cf2e496a606ce28d8afb1c792f BREE 18
\\x4893a1938df49f4178c37e4e965cc8a1b3882173 BRI 18
\\x679fa6dc913acab6def33ec469fc6e421bc794f5 BRIBE 18
\\x92868a5255c628da08f550a858a802f5351c5223 BRIDGE 18
\\xbeab712832112bd7664226db7cd025b153d3af55 BRIGHT 18
\\x1de6cb5b085ac84bd247b8176c781e913166aa6b BRILX 18
\\x4674a4f24c5f63d53f22490fb3a08eaaad739ff8 BRKL 18
\\x501e8726d06cdef66f3e0cb67f54924cca1cc894 BRMV 18
\\xe5b998f63e7022664d3c36c56d1798cca7751573 BRP 18
\\x8abf3a95862619a55fa00cb3e4eedbe113ff468c BRRR 18
\\xf0acf8949e705e0ebb6cb42c2164b0b986454223 BRTR 8
\\x420412e765bfa6d85aaac94b4f7b708c89be2e2b BRZ 4
\\xe12128d653b62f08fbed56bdeb65db729b6691c3 BRZC 18
\\x77c07555af5ffdc946fb47ce15ea68620e4e7170 BRZE 18
\\xaeaf14ce56b052dfc2a2eb0654136ecf87821fbf BS1 18
\\xa478a13242b64629bff309125770b69f75bd77cb BSB 18
\\xde8607ccad60814c8d9cd6f5ce8e9031e4675c8f BSBT 8
\\xcfad57a67689809cda997f655802a119838c9cec BSC 8
\\xe541504417670fb76b612b41b4392d967a1956c7 BSC 18
\\x003e0af2916e598fa5ea5cb2da4edfda9aed9fde BSD 18
\\xe7c9c188138f7d70945d420d75f8ca7d8ab9c700 BSDS 18
\\xa30189d8255322a2f8b2a77906b000aeb005570c BSE 18
\\xb34ab2f65c6e4f764ffe740ab83f982021faed6d BSG 18
\\xa9d232cc381715ae791417b624d7c4509d2c28db BSGS 18
\\xc03841b5135600312707d39eb2af0d2ad5d51a91 BSKT 18
\\x26a79bd709a7ef5e5f747b8d8f83326ea044d8cc BSOCIAL 8
\\x26946ada5ecb57f3a1f91605050ce45c482c9eb1 BSOV 8
\\xa1454f9c704af96636f3a7532b9a04c411f85680 BSP 18
\\xd4f6f9ae14399fd5eb8dfc7725f0094a1a7f5d80 BST 18
\\xdf0041891bda1f911c4243f328f7cf61b37f965b BST 18
\\x336492a0601cc85e08c14d390bf07d960328aaf4 BST1 18
\\xAf5A1DECfa95BAF63E0084a35c62592B774A2A87 bSupercrvRenWBTC 18
\\x1862A18181346EBd9EdAf800804f89190DeF24a5 bsushiBadgerWbtc 18
\\x88128580ACdD9c04Ce47AFcE196875747bF2A9f6 bsushiDiggWbtc 18
\\x758A43EE2BFf8230eeb784879CdcFF4828F2544D bsushiWbtcEth 18
\\xce49c3c92b33a1653f34811a9d7e34502bf12b89 BSVBEAR 18
\\x6e13a9e4ae3d0678e511fb6d2ad531fcf0e247bf BSVBULL 18
\\x7a647637e75d34a7798ba06bd1adf5c084bb5dd5 BSY 18
\\x3004cf8b4e28d60f4e305df25a57cd5faf37b8d5 BSYS 18
\\x6628606c321faf52b7230a57b26c01b19aa68e82 BT 18
\\x76c5449f4950f6338a393f53cda8b53b0cd3ca3a BT 18
\\x997507cc49fbf0cd6ce5e1ee543218556fafdebc BT 18
\\x270371c58d9d775ed73971dd414656107384f235 BTAP 18
\\x06e0feb0d74106c7ada8497754074d222ec6bcdf BTB 18
\\x32e6c34cd57087abbd59b5a4aecc4cb495924356 BTBS 18
\\x0327112423f3a68efdf1fcf402f6c5cb9f7c33fd BTC++ 18
\\x0b498ff89709d3838a063f1dfa463091f9801c2b BTC2x-FLI 18
\\xf2cee90309418353a57717eca26c4f8754f0d84e BTCB 18
\\x534DF0Ec6D65cD6fE1b05D3b8c935c97Eb844190 BTCDEFI 18
\\xc06aec5191be16b94ffc97b6fc01393527367365 BTCETH5050 18
\\xa35fc5019c4dc509394bd4d74591a0bf8852c195 BTCETH7525 18
\\x2409d6059e2a8130c099e49f3cb418fd6c3d9aff BTCFUND 18
\\x305f8157c1f841fbd378f636abf390c5b4c0e330 BTCGW 8
\\x5547136b913b68881596275ace01e9a589c5b16b BTCHG 18
\\x5acd19b9c91e596b1f062f18e3d02da7ed8d1e50 BTCL 8
\\x87f5e8c3425218837f3cb67db941af0c01323e56 BTCONE 18
\\x723cbfc05e2cfcc71d3d89e770d32801a5eef5ab BTCP 8
\\x0371f7b219fff864b437bcfb564810f323fffcca BTCR 4
\\x6aac8cb9861e42bf8259f5abdc6ae3ae89909e11 BTCRED 8
\\x924e26fee8e10c20726006cc2bd307a538b0ebe5 BTCRSIAPY 18
\\x820a8481451e893bc66dce50c84d45617cac3705 BTCT 18
\\x5f2ec9cf1ec1c0e2c880b6584921e812a4225395 BTCUI 8
\\x51b0bcbeff204b39ce792d1e16767fe6f7631970 BTCV 18
\\x4588c3c165a5c66c020997d89c2162814aec9cd6 BTCWH 8
\\x9388f54fa978aa9e24395a8b69033304eccea4df BTCX 4
\\xfd62247943f94c3910a4922af2c62c2d3fac2a8f BTE 18
\\x6682195e2a0048ce38b727a3711802d58244606e BTKC 18
\\xcb97e65f07da24d46bcdd078ebebd7c6e6e3d750 BTM 8
\\xcca0c9c383076649604ee31b20248bc04fdf61ca BTMX 18
\\xdbf637f78624f896b92f801e81f6031b7865ed20 BTMXBEAR 18
\\x9885ca101dfd8f23d364874f799554c52bfee820 BTMXBULL 18
\\x8fb6c8a44a4e23fd1f5a936818b39083b4cdc865 BTNYX 18
\\x36905fc93280f52362a1cbab151f25dc46742fb5 BTO 18
\\xfaa965d80d956de59808974e33ada054f7696de5 BTOUR 18
\\xcce63fd31e9053c110c74cebc37c8e358a6aa5bd BTR 4
\\xd433138d12beb9929ff6fd583dc83663eea6aaa5 BTR 18
\\x388fd8a5145d6ef85aae14d494f93df9d1c7c00c BTRL 8
\\x03c780cd554598592b97b7256ddaad759945b125 BTRN 18
\\x73c9275c3a2dd84b5741fd59aebf102c91eb033f BTRS 18
\\x666d875c600aa06ac1cf15641361dec3b00432ef BTSE 8
\\x05079687d35b93538cbd59fe5596380cae9054a9 BTSG 18
\\x2b04dadd412f7281d3ccabfb8425fd9c9e841588 BTU 8
\\x3c76ef53be46ed2e9be224e8f0b92e8acbc24ea0 BTU 3
\\xb683d83a532e2cb7dfa5275eed3698436371cc9f BTU 18
\\xccbf21ba6ef00802ab06637896b799f7101f54a2 BUBO 18
\\x57652fc91f522f9eff0b38cdf1d51f5fb5764215 BUD 18
\\x0a7e4d70e10b63fef9f8dd19fba3818d15154d2f BUFFDOGE 18
\\x1aabf9b575e4329b8c8f272428ad5e43ab4aefc8 BUGG 9
\\xbc3ec4e491b835dce394a53e9a9a10ac19564839 BUGS 18
\\x7b123f53421b1bf8533339bfbdc7c98aa94163db BUIDL 18
\\x6e36556b3ee5aa28def2a8ec3dae30ec2b208739 BUILD 18
\\xa143ac515dca260a46c742c7251ef3b268639593 BULK 18
\\x68eb95dc9934e19b86687a10df8e364423240e94 BULL 18
\\xd06b25f67a17f12b41f615b34d87ecd716ff55a0 BULLSHIT 18
\\x8d3e855f3f55109d473735ab76f753218400fe96 BUND 18
\\x235c9e24D3FB2FAFd58a2E49D454Fdcd2DBf7FF1 buniBadgerWbtc 18
\\xC17078FDd324CC473F8175Dc5290fae5f2E84714 buniDiggWbtc 18
\\x3ea50b7ef6a7eaf7e966e2cb72b519c16557497c BUNNY 9
\\x755eb14d2feff2939eb3026f5cad9d03775b9ff4 BUNNY 18
\\xb04dfdb8271ed2d5e13858562c44a77d3ceb9e57 BUP 18
\\x8515cd0f00ad81996d24b9a9c35121a3b759d6cd BURN 18
\\x106238737b85b4220c7a7ddfd5c4caf8597281fe BURNX 18
\\x33f391f4c4fe802b70b77ae37670037a92114a7c BURP 18
\\x4fabb145d64652a948d72533023f6e7a623c7c53 BUSD 18
\\xedf216b3c9748082c2d7f3f54efe45b41076e3e1 BUSD 18
\\xE94C892f90ABea59F3dd1D7d8c34aC9d7312F18A BUSDUSDB 18
\\x5cb3ce6d081fb00d5f6677d196f2d70010ea3f4a BUSY 18
\\x31fdd1c6607f47c14a2821f599211c67ac20fa96 BUY 18
\\xae8488e75493b89a0e1488bf91542208c416f486 BUZ 18
\\x10d88d7495ca381df1391229bdb82d015b9ad17d BVA 18
\\xfd05D3C7fe2924020620A8bE4961bBaA747e6305 bveCVX 18
\\x04c90c198b2eff55716079bc06d7ccc4aa4d7512 bveCVXCVXf 18
\\xe7d324b2677440608fb871981b220eca062c3fbf BVL 18
\\x81824663353a9d29b01b2de9dd9a2bb271d298cd BVOL 18
\\xf7e04d8a32229b4ca63aa51eea9979c7287fea48 BWF 5
\\xca3ea3061d638e02113aa960340c98343b5acd62 BWT 18
\\xce5114d7fa8361f0c088ee26fa3a5446c4a1f50b BWX 18
\\x98d8d146e644171cd47ff8588987b7bdeef72a87 BXA 18
\\xdecf7be29f8832e9c2ddf0388c9778b8ba76af43 BXC 18
\\x5c4ac68aac56ebe098d621cd8ce9f43270aaa355 BXIOT 6
\\xeb6985acd6d0cbff60b88032b0b29ac1d9d66a1b BXK 18
\\x24d77c210a014b1e123a0878f6c903df74a2317b BXT 8
\\x54f9b4b4485543a815c51c412a9e20436a06491d BXX 18
\\x827d53c8170af52625f414bde00326fc8a085e86 BXY 18
\\x4bb3205bf648b7f59ef90dee0f1b62f6116bc7ca BYN 18
\\xb089db4cebbf0618b295d9defc7feb00f56da033 BYT 18
\\xac8ea871e2d5f4be618905f36f73c760f8cfdc8e BYTE 18
\\xff32b6dc663e9aa3ef61117749c6ccc168100b99 BYTE3 18
\\x87f14e9460cecb789f1b125b2e3e353ff8ed6fcd BYTS 3
\\x4b92d19c11435614CD49Af1b589001b7c08cD4D5 byvWBTC 8
\\x4375e7ad8a01b8ec3ed041399f62d9cd120e0063 BZ 18
\\xd28cfec79db8d0a225767d06140aee280718ab7e BZKY 16
\\x6524b87960c2d573ae514fd4181777e7842435d4 BZN 18
\\xe1aee98495365fc179699c1bb3e761fa716bee62 BZNT 18
\\x56d811088235f11c8920698a204a5010a788f4b3 BZRX 18
\\x19062190b1925b5b6689d7073fdfc8c2976ef8cb BZZ 16
\\x26e75307fc0c021472feb8f727839531f112f317 C20 18
\\x1EF9e0ac29b3813528FbfdAdf5118AB63e4be015 C20BNT 18
\\x13ca8eb6405cfbe2eae5d00207651002083fbc9d C2O 2
\\xf1a91c7d44768070f711c68f33a7ca25c8d30268 C3 18
\\xf2ef3551c1945a7218fc4ec0a75c9ecfdf012a4f C4G3 18
\\xd42debe4edc92bd5a3fbb4243e1eccf6d63a4a5d C8 18
\\xae12c5930881c53715b369cec7606b70d8eb229f C98 18
\\x2029017f38128bfefaa6c7b9cdd1b680ce8e5c03 CAD 18
\\xcadc0acd4b445166f12d2c07eac6e2544fbe2eef CADC 18
\\x7d4b8cce0591c9044a22ee543533b72e976e36c3 CAG 18
\\x3c6a7ab47b5f058be0e7c7fe1a4b7925b8aca40e CAJ 18
\\xb8fa12f8409da31a4fc43d15c4c78c33d8213b9b CALI 18
\\xbbe761ea1447a20b75aa485b7bcad4837415d7d7 CALL 18
\\xe9e73e1ae76d17a16cc53e3e87a9a7da78834d37 CAMP 18
\\x1d462414fe14cf489c7a21cac78509f4bf8cd7c0 CAN 6
\\x917fd2f7378ff479419dcb56c5cbb445fbbf902a CAN 10
\\x50eb346fc29a80d97563a50146c3fcf9423b5538 CANDY 18
\\x540d3087b21f31f9a810385c94627a067cfd0b08 CANDY 18
\\x8bb95734f5011088fd228c8060b3e02ca53e3c0d CANDYBOX 18
\\x43044f861ec040db59a7e324c40507addb673142 CAP 18
\\xeda6efe5556e134ef52f2f858aa1e81c84cda84b CAP 18
\\x11613b1f840bb5a40f8866d857e24da126b79d73 CAPP 2
\\x2e9c861713a8cbd4aca72a832f347b9520edbb90 CAPP 18
\\x03be5c903c727ee2c8c4e9bc0acc860cca4715e2 CAPS 18
\\x03a5d1d4c764decf50ae12decbed8a51a421faa0 CAPT 18
\\x954b890704693af242613edef1b603825afcd708 CARD 18
\\x3d6f0dea3ac3c607b3998e6ce14b6350721752d9 CARDS 18
\\x884ddbb5dc6c2cef77d3e74c6ccca315797d655b CARR 18
\\x1234567461d3f8db7496581774bd869c83d51c93 CAT 18
\\x56015bbe3c01fe05bc30a8a9a9fd9a88917e7db3 CAT 18
\\xB3c55930368D71F643C3775869aFC73f6c5237b2 CATBNT 18
\\xa42f266684ac2ad6ecb00df95b1c76efbb6f136c CATE 18
\\x6e605c269e0c92e70beeb85486f1fc550f9380bd CATT 18
\\xc7743bf0b300ec041e704cc34d4f43050942099e CATX 18
\\x456d8f0d25a4e787ee60c401f8b963a465148f70 CAVA 9
\\x24ea9c1cfd77a8db3fb707f967309cf013cc1078 CAVO 18
\\xa5e412ba6fca1e07b15defcaa4236ff7b5a7f086 CBANK 18
\\x6c8c6b02e7b2be14d4fa6022dfd6d75921d90e4e cBAT 8
\\x26db5439f651caf491a87d48799da81f191bdb6b CBC 8
\\x790bfacae71576107c068f494c8a6302aea640cb CBC 18
\\x35dd2ebf20746c6e658fac75cd80d4722fae62f6 CBET 18
\\x122f96d596384885b54bccdddf2125018c421d83 CBIX 18
\\xcf8f9555d55ce45a3a33a81d6ef99a2a2e71dee2 CBIX7 18
\\xd85a6ae55a7f33b0ee113c234d2ee308edeaf7fd CBK 18
\\x29a99c126596c0Dc96b02A88a9EAab44EcCf511e CBLT 18
\\x95efd1fe6099f65a7ed524def487483221094947 CBM 18
\\x6f4ee03ca6c942c9397d2ba5f8f83ea58f918f47 CBP 18
\\x4ba012f6e411a1be55b98e9e62c3a4ceb16ec88b CBR 18
\\xa6fa6531acdf1f9f96eddd66a0f9481e35c2e42a CBRL 6
\\xd4a80224350528b7c0ae8c325a0b5778d92fd86e CBS3 18
\\x7d4b1d793239707445305d8d2456d2c735f6b25b cBSN 18
\\x076c97e1c869072ee22f8c91978c99b4bcb02591 CBT 18
\\x26c908b9b8154206af727175c493988200d7e133 CBT 18
\\x3ca6b185285684e14f925179992387fb4ef90ac7 CBT 18
\\xaf5f584d79701d5bdc9ca045e66ae130b67a68ad CBT 18
\\xfa93660c3f6a848556bb8e265f994160a1f2b289 CBT 18
\\x7b5982dcab054c377517759d0d2a3a5d02615ab8 cBTC 8
\\xcef46305d096fa876dd23048bf80f9345282e3fc CBU 0
\\x0d2bb9d68dd4451a09ec94c05e20bd395022bd8e CBUCKS 2
\\x15c9dd08fb16331b9749a8d7d16bcd71c985f190 CC 18
\\x9e547061a345015869d26c7b6ee4ab5b63424441 CC 18
\\xb7fbff4ce5200215c690cc95855e5d6c5236ee9f CC 18
\\x17ac188e09a7890a1844e5e65471fe8b0ccfadf3 CC10 18
\\x17b26400621695c2d8c2d8869f6259e82d7544c4 CCN 18
\\x679badc551626e01b23ceecefbc9b877ea18fc46 CCO 18
\\x70e36f6bf80a52b3b46b3af8e106cc0ed743e8e4 CCOMP 8
\\x0f00c8dd21da51bc6a6ac07f491a7dbe69746f16 CCT 18
\\x336f646f87d9f6bc6ed42dd46e8b3fd9dbd15c22 CCT 18
\\x5d3a536e4d6dbd6114cc1ead35777bab948e3643 cDAI 8
\\x86b300ef935284a99fa5d148a9a6ccc5103b21a8 CDASH 18
\\xcb17cd357c7acd594717d899ecb9df540f633f27 CDL 18
\\x5a9f5992085e8a25a45716cb6f8ff5b57a05d332 CDR 8
\\xde25486ccb4588ce5d9fb188fb6af72e768a466a CDSD 18
\\x177d39ac676ed1c67a2b268ad7f1e58826e5b0af CDT 18
\\x8f12dfc7981de79a8a34070a732471f2d335eece CE 18
\\xf256f3ac4176126f55af7c6e25fa5f3cdf518b38 CEDS 18
\\xb056c38f6b7dc4064367403e26424cd2c60655e1 CEEK 18
\\x2F2ad6954d99Ea14fA145B9AB0fb6BA5Ac32c0Ee CEEKBNT 18
\\xaaaebe6fe48e54f431b0c390cfaf0b017d09d42d CEL 4
\\x19b58d95929586ad750893caad43e77aa6e8ce9e CELC 8
\\xa3e53fe692eeda3502cf5ccfd8a535e1f93d23dd CELEB 18
\\x26c8afbbfe1ebaca03c2bb082e69d0476bffe099 CELL 18
\\x4f9254c83eb525f9fcf346490bbb3ed28a81c667 CELR 18
\\x0bc61dded5f6710c637cf8288eb6058766ce1921 CEN 18
\\x1122b6a0e00dce0563082b6e2953f3a943855c1f CENNZ 18
\\x504cde95dbc5d90d09b802f43b371971adbecf79 CENX 18
\\x081f67afa0ccf8c7b17540767bbe95df2ba8d97f CET 18
\\x4ddc2d193948926d02f9b1fe9e1daa0718270ed5 cETH 8
\\xfebc25f4c5fc3e90a7efae0b4d436a77c9e131b3 CEZ 18
\\x63b4f3e3fa4e438698ce330e365e831f7ccd1ef4 CFI 18
\\x9b683d81b8334325bcc1802d47de65571993fe89 CFT 8
\\x0557e0d15aec0b9026dd17aa874fdf7d182a2ceb CFXQ 6
\\x2858ed0225e9aa0638ccd9b552bee2712426fa24 CGB 18
\\xcbb20d755abad34cb4a9b5ff6dd081c76769f62e CGC 6
\\x1fe24f25b1cf609b9c4e7e12d802e3640dfa5e43 CGG 18
\\xada0a1202462085999652dc5310a7a9e2bf3ed42 CGI 18
\\xf5238462e7235c7b62811567e63dd17d12c2eaa0 CGT 8
\\xf56b164efd3cfc02ba739b719b6526a6fa1ca32a CGT 18
\\x19f4a2f8e21915376f1429c26a3a9b9b1db5ff5a CHADLINK 18
\\x69692d3345010a207b759a7d1af6fc7f38b35c5e CHADS 18
\\x06af07097c9eeb7fd685c692751d5c66db49c215 CHAI 18
\\xc4c2614e694cf534d407ee49f8e44d125e4681c4 CHAIN 18
\\x1cc0744c5106bb47a61c4e41f517cb6f1c49b547 CHAL 18
\\xb53de031602cd825febe9f2eedf962cd8cc3805d CHAOS 18
\\x1d37986f252d0e349522ea6c3b98cb935495e63e CHART 18
\\x442bc47357919446eabc18c7211e57a13d983469 CHAT 18
\\x24810d836f6d60a7ee499622b7103ec769e81e3b CHC 18
\\x332e824e46fceeb9e59ba9491b80d3e6d42b0b59 CHEESE 18
\\x4ecb692b0fedecd7b486b4c99044392784877e8c CHERRY 4
\\x5f75112bbb4e1af516fbe3e21528c63da2b6a1a5 CHESS 18
\\x58002a6b6e659a16de9f02f529b10536e307b0d9 CHFT 18
\\xc4a86561cb0b7ea1214904f26e6d50fd357c7986 CHG 18
\\x0000000000004946c0e9f43f4dee607b0ef1fa1c CHI 0
\\x6dc02164d75651758ac74435806093e421b64605 CHI 8
\\xffc16ab7d366273466c705f03cfeaca8dd964f89 CHIEFS 15
\\x26ff6d16549a00ba8b36ce3159b5277e6e798d18 CHIHUA 18
\\x910985ffa7101bf5801dd2e91555c465efd9aab3 CHINU 9
\\x5c761c1a21637362374204000e383204d347064c CHIZ 18
\\x538a151dd910c1d1227719bd400d6c4f99ea06d0 CHM 18
\\x84679bc467dc6c2c40ab04538813aff3796351f1 CHONK 18
\\x646707246d7d5c2a86d7206f41ca8199ea9ced69 CHOP 18
\\x925f2c11b99c1a4c46606898ee91ed3d450cfeda CHOW 9
\\xf3db7560e820834658b590c96234c333cd3d5e5e CHP 18
\\x8a2279d4a90b6fe1c4b30fa660cc9f926797baa2 CHR 6
\\xb41380174d0b06181513a5677b60200b93b5efb4 CHS 18
\\xba9d4199fab4f26efe3551d490e3821486f135ba CHSB 8
\\x3277dd536471a3cbeb0c9486acad494c95a31e73 CHT 18
\\x1460a58096d80a50a2f1f956dda497611fa4f165 CHX 18
\\x3506424f91fd33084466f402d5d97f05f8e3b4af CHZ 18
\\x4599836c212cd988eaccc54c820ee9261cdaac71 CID 18
\\x83eb94cb563146a42fe0a8b3d051f2387a7fb81f CIPHC 8
\\xa01199c61841fce3b3dafb83fefc1899715c8756 CIRUS 18
\\x37fe0f067fa808ffbdd12891c0858532cfe7361d CIV 18
\\x6393e822874728f8afa7e1c9944e417d37ca5878 CIX100 18
\\x3abdff32f76b42e7635bdb7e425f0231a5f3ab17 CJT 18
\\xbf25ea982b4f850dafb4a95367b890eee5a9e8f2 Ckita 8
\\xe81d72d14b1516e68ac3190a46c93302cc8ed60f CL 18
\\xf7269a10e85d4aa8282529516cf86847748da2bf CLA 18
\\x1a94656a6245379bc0d9c64c402197528edb2bd1 CLC 18
\\x951301a2bbce3d357785ba1e13ec8f42322252b8 CLC 8
\\x0def8d8adde14c9ef7c2a986df3ea4bd65826767 CLIQ 18
\\x4162178b78d6985480a308b2190ee5517460406d CLN 18
\\xa4e4ff5a3aea352378a3bfefef13765130909376 CLOCK 18
\\xa10ae543db5d967a73e9abcc69c81a18a7fc0a78 CLOUT 18
\\x2396fbc0e2e3ae4b7206ebdb5706e2a5920349cb CLR 18
\\x675bbc7514013e2073db7a919f6e4cbef576de37 CLS 18
\\x2001f2a0cf801ecfda622f6c28fb6e10d803d969 CLT 8
\\xa69f7a10df90c4d6710588bc18ad9bf08081f545 CLT 18
\\x22222c03318440305ac3e8a7820563d6a9fd777f CLV 6
\\x80c62fe4487e1351b47ba49809ebd60ed085bf52 CLV 18
\\xc52e23194476b1dd39408cb0b9d935da8e6db3d6 CLVA 18
\\x9f8f7ea504588a58b8b24b832b5d25a4aeb4706f CLX 18
\\x47bc01597798dcd7506dcca36ac4302fc93a8cfb CMCT 8
\\xb2c19ba4d5246d4c587a62f0dfe9f78083568455 CMDX 18
\\x5fd1ffa1d817e2bc1e594081a9f883a8707e959c CMG 8
\\x68cfb82eacb9f198d508b514d898a403c449533e CMK 18
\\x9f949124e2a23492005a9bb937acb29bda2cab9e CMME 8
\\x9f20ed5f919dc1c1695042542c13adcfc100dcab CMP 18
\\xf83301c5cd1ccbb86f466a6b3c53316ed2f8465a CMS 6
\\xf85feea2fdd81d51177f6b8f35f0e6734ce45f5f CMT 18
\\xc538143202f3b11382d8606aae90a96b042a19db CNB 18
\\x54a9ed327f2614316914c3f3a782a77d0aa47aee CNCT 18
\\xd4c435f5b09f855c3317c8524cb1f586e42795fa CND 18
\\xeabb8996ea1662cad2f7fb715127852cd3262ae9 CNFI 18
\\x8e2b4badac15a4ec8c56020f4ce60faa7558c052 CNFT 18
\\x883a158c9b28f8d626acfcfbe1028f49e70c9d75 CNG 18
\\x00a55375002f3cda400383f479e7cd57bad029a9 CNJ 18
\\x8713d26637cf49e1b6b4a7ce57106aabc9325343 CNN 18
\\x6c3be406174349cfa4501654313d97e6a31072e1 CNNS 18
\\xc21dbee65d62770953035f0434c532d578a666c9 CNRG 18
\\x429876c4a6f89fb470e92456b8313879df98b63c CNT 18
\\x0e5f00da8aaef196a719d045db89b5da8f371b32 CNTM 18
\\x03042482d64577a7bdb282260e2ea4c8a89c064b CNTR 18
\\x722f2f3eac7e9597c73a593f7cf3de33fbfc3308 CNUS 18
\\xe0b7e882c194881c690924cb46154b8241f9145e CNX 18
\\xc541b907478d5cd334c0cbfcb9603b6dac6e9ee3 CNYQ 18
\\x91b7ed3b352aa3502f94e58eac930ae1f5b5ebcd CNYT 0
\\xc1965d7d18f37062b18ab3d5d1fe7f69873b30dd CNZ 18
\\x75739d5944534115d7c54ee8c73f186d793bae02 CO2 18
\\xb2f7eb1f2c37645be61d73953035360e768d81e6 COB 18
\\x22b6c31c2beb8f2d0d5373146eed41ab9ede3caf COC 8
\\xc4c7ea4fab34bd9fb9a5e1b1a98df76e26e6407c COCOS 18
\\x46b4a7d906f1a943b7744df23625e63726d79035 CODEO 18
\\x1a23a6bfbadb59fa563008c0fb7cf96dfcf34ea1 COFI 18
\\x3136ef851592acf49ca4c825131e364170fa32b3 COFI 18
\\xc382e04099a435439725bb40647e2b32dc136806 COGE 18
\\x3936ad01cf109a36489d93cabda11cf062fd3d48 COIL 9
\\x87b008e57f640d94ee44fd893f0323af933f9195 COIN 18
\\xe61fdaf474fac07063f2234fb9e60c1163cfa850 COIN 18
\\xa3a3f076413a362bb0d69eea1dc5b0e79c831edc COKE 18
\\xc76fb75950536d98fa62ea968e1d6b45ffea2a55 COL 18
\\x957891c11616d3e0b0a76a76fb42724c382e0ef3 COLL 18
\\x9783b81438c24848f85848f8df31845097341771 COLLAR 18
\\xc92276872cd1907d2e00b58a81a9bbd275b0a4ba COLLG 18
\\x1b4052d98fb1888c2bf3b8d3b930e0aff8a910df COM 18
\\xcae838187c1f813fc3bfae6387bf34aeacb5bef6 COM 18
\\x7c81542ed859a2061538fee22b6544a235b9557d COMB 18
\\x7d36cce46dd2b0d28dde12a859c2ace4a21e3678 COMB 18
\\xffffffff2ba8f66d4e51811c5190992176930278 COMBO 18
\\xa5e99ad202bdd71d3518306cf4dd163261981af1 COMC 18
\\x752efadc0a7e05ad1bcccda22c141d01a75ef1e4 COMFI 18
\\xc7deb5543cfa97b0af2841418f53b8e554ff566a COMM 18
\\xc00e94cb662c3520282e6f5717214004a7f26888 COMP 18
\\x40d2025ed2e89632d3a41d8541df9ed2ac0e2b1c CON 18
\\x4dd672e77c795844fe3a464ef8ef0faae617c8fb CON 18
\\x695db6508d66bf111d8d96adaffc5356b7f4581f CONI 8
\\x4983f767b1bc44328e434729ddabea0a064ca1ac CONST 2
\\xc834fa996fa3bec7aad3693af486ae53d8aa8b50 CONV 18
\\xff75ced57419bcaebe5f05254983b013b0646ef5 COOK 18
\\x114f1388fab456c4ba31b1850b244eedcd024136 COOL 18
\\x2dab4ce3490bb50b2ea4c07ab1b6a9cfe29d89b3 COOL20 18
\\x2f3e054d233c93c59140c0905227c7c607c70cbb COOM 18
\\x25b539b1c179fbe2af92abdfdc7e152cbc97addc COOOM 18
\\x689cf5f8dd09bbb4417514c88909bb64eba2547d COOP 18
\\x14dfa5cfaafe89d81d7bf3df4e11eaeda0416618 COPS 18
\\x9c2dc0c3cc2badde84b0025cf4df1c5af288d835 COR 18
\\x0077d27cb82ff12322987b225bfce0bb6e8931b4 CORA 18
\\x74fb9da15d4f9a34d8c825798da0fa5c400dade1 CORD 18
\\x62359ed7505efc61ff1d56fef82158ccaffa23d7 CORE 18
\\xe50006781f435ae43096288334afd9ae5ba50065 CORGI 10
\\x3080ec2a6960432f179c66d388099a48e82e2047 CORN 18
\\xa456b515303b2ce344e9d2601f91270f8c2fea5e CORN 18
\\x26a604dffe3ddab3bee816097f81d3c4a2a4cf97 CORX 8
\\x668c50b1c7f46effbe3f242687071d7908aab00a COSHI 9
\\xd1e10c37a27d95d95720291b1dc6f12f74c71443 COSM 18
\\x5c872500c00565505f3624ab435c222e558e9ff8 COT 18
\\xed64142f7d0a4d94ce0e7fe45d12f712fe360bd0 COT 18
\\x19dB077A54dEa3fD4CBCd9d31D4dB297562CbD94 COTBNT 18
\\xddb3422497e61e13543bea06989c0789117555c5 COTI 18
\\xf091cf09c51811819db705710e9634b8bf18f164 COU 18
\\x0538a9b4f4dcb0cb01a7fa34e17c0ac947c22553 COURT 18
\\xada86b1b313d1d5267e3fc0bb303f0a2b66d0ea7 COV 18
\\xb37a769b37224449d92aac57de379e1267cd3b00 COVA 18
\\x3d658390460295fb963f54dc0899cfb1c30776df COVAL 8
\\x4688a8b1f292fdab17e9a90c8bc379dc1dbd8713 COVER 18
\\x5d8d9f5b96f4438195be9b99eee6118ed4304286 COVER[old] 18
\\x34965f73cfa05bf8d8af37cb4af64fa950605ea8 COW 18
\\xc3d6dda603fc15fd4bf9303150fe11c7cd6059dc COW 18
\\xf0be50ed0620e0ba60ca7fc968ed14762e0a5dd3 COW 9
\\xa2c1e04aca801da92fa95af161040d37f103d69d COY 18
\\x41523a22144f3d129dddf1e9a549333148d0c37d COZOM 18
\\x06a6fc23e6ec8a2b2aeeefd70d772dc3d6b45010 CP 18
\\x7ef1081ecc8b5b5b130656a41d4ce4f89dbbcc8c CP3R 18
\\x0ebb614204e47c09b6c3feb9aaecad8ee060e23e CPAY 0
\\xfae4ee59cdd86e3be9e8b90b53aa866327d7c090 CPC 18
\\x9b31bb425d8263fa1b8b9d090b83cf0c31665355 CPD 18
\\x2b67d1a87a8d8b280a23e97bc55095215ee0ec53 CPI 18
\\x20ae0ca9d42e6ffeb1188f341a7d63450452def6 CPR 18
\\x0fb843d37aa2a99db8d81af9fe2f0a6485c7c002 CPROP 18
\\xb5a52519426ec6d88784cc80e621062498306734 CPS 18
\\x88d50b466be55222019d71f9e8fae17f5f45fca1 CPT 8
\\xe0bdfe2ce51f44556309665d59818ccb541ff067 CPTE 18
\\x6d52dfefb16bb9cdc78bfca09061e44574886626 CPU 18
\\x52ceefc5f5c64a6d3dc6e4fde5f2d7810bccde49 CPX 18
\\xd417144312dbf50465b1c641d016962017ef6240 CQT 18
\\x608f006b6813f97097372d0d31fb0f11d1ca3e4e CRAD 18
\\xa09ff006c652496e72d648cef2f4ee6777efdf6f CRAFT 18
\\x6767615a97a8204298bbac44c57ef1a615eed244 CRB 18
\\xcdeee767bed58c5325f68500115d4b722b3724ee CRBN 18
\\xf41e5fbc2f6aac200dd8619e121ce1f05d150077 CRC 18
\\xfb19c03a02a519a44542343803f3d42578cbc243 CRC 8
\\x4760e7a401558aa59639161454bb2a41a3c5a90b CRD 18
\\xcaaa93712bdac37f736c323c93d4d5fdefcc31cc CRD 18
\\xdaab5e695bb0e8ce8384ee56ba38fa8290618e52 CRDT 18
\\x115ec79f1de567ec68b7ae7eda501b406626478e CRE 18
\\x2ba592f78db6436527729929aaf6c908497cb200 CREAM 18
\\x672a1ad4f667fb18a333af13667aa0af1f5b5bdd CRED 18
\\xed7fa212e100dfb3b13b834233e4b680332a3420 CRED 18
\\xc4cb5793bd58bad06bf51fb37717b86b02cbe8a4 CREDIT 18
\\x4e0603e2a27a30480e5e3a4fe548e29ef12f64be CREDO 18
\\xc13f4f0f865bac08f62654b57e38669ebc4747a3 CREDS 18
\\x675e7d927af7e6d0082e0153dc3485b687a6f0ad CREED 18
\\x158079ee67fce2f58472a96584a73c7ab9ac95c1 cREP 18
\\xcbc1065255cbc3ab41a6868c22d1f1c573ab89fd CRETH2 18
\\xa0b73e1ff0b80914ab6fe0444e65848c4c34450b CRO 8
\\x1505c95a707348c2bcc75698be258891387f008b CROOGE 9
\\xc0ada8ef0c811fdd3059bb6df5f5947d708f80ae CROP 18
\\x08389495d7456e1951ddf7c3a1314a4bfb646d8b CRPT 18
\\xec7d3e835da3f6118079fa9a236b267d044fd7ca CRS 18
\\x36a28c7c9b3dea22f07f4df67833cbe764feeeb4 CRT 18
\\x825a64810e3ee35bd64c940140ea91a609608abe CRTS 18
\\x94ca37d108e89775dc8ae65f51ae28c2d9599f9a CRTS 9
\\x32a7c02e79c4ea1008dd6564b35f131428673c41 CRU 18
\\xd533a949740bb3306d119cc777fa900ba034cd52 CRV 18
\\x410e3e86ef427e30b9235497143881f717d93c2a crvBbtcSbtc 18
\\xb19059ebb43466c323583928285a49f558e572fd crvHbtcWbtc 18
\\x2fe94ea3d5d4a175184081439753de15aef9d614 crvObtcSbtc 18
\\xde5331ac4b3630f94853ff322b66407e0d6331e8 crvPbtcSbtc 18
\\x075b1bb99792c9e1041ba13afef80c91a1e70fb3 crvRenWSBTC 18
\\x64eda51d3ad40d56b9dfc5554e06f94e1dd786fd crvTbtcSbtc 18
\\xca3d75ac011bf5ad07a98d02f18225f9bd9a6bdf crvTricrypto 18
\\xc4ad29ba4b3c580e6d59105fff484999997675ff crvTricrypto2 18
\\x72a56f7bbee939a8c441c891e1754bb795ee0b21 CRWN 8
\\xdbddf072d7aae7b9288e31a4eebe6c54e3a143b1 CRWNY 18
\\x1062fdf250b44697216d07e41df93824519f47aa CRYPL 8
\\x46b9ad944d1059450da1163511069c718f699d31 CS 6
\\xf5dce57282a584d2746faf1593d3121fcac444dc cSAI 8
\\x2620638eda99f9e7e902ea24a285456ee9438861 CSM 18
\\xd8698a985b89650d0a70f99ad2909bd0c0b4b51c CSM 18
\\x5ecb025e51415dba9fd272c551076357cf4069f5 CSO 18
\\xa6446d655a0c34bc4f05042ee88170d056cbaf45 CSP 18
\\x2466ba59e474c46639ceb4eb9b7248638443560d CSTO 18
\\x3aadc3bce49724ce299fd9f3850211211c399c8c CSX 18
\\x196c81385bc536467433014042788eb707703934 CTASK 18
\\xf7461c8d8e469e9c41a9013dc09ba8abed66ef65 CTAT 8
\\x00b7db6b4431e345eee5cc23d21e8dbc1d5cada3 CTC 18
\\xa3ee21c306a700e682abcdfe9baa6a08f3820419 CTC 18
\\xfd6c31bb6f05fc8db64f4b740ab758605c271fd8 CTCN 18
\\xc760721eb65aa6b0a634df6a008887c48813ff63 CTG 8
\\x8c18d6a985ef69744b9d57248a45c0861874f244 CTI 18
\\xaa55ac677abffa4af9b798b6c138d830820d49e6 CTPL 18
\\x923b83c26b3809d960ff80332ed00aa46d7ed375 CTR 18
\\x8606a8f28e1e2fd50b9074d65c01548b1f040b32 CTRT 8
\\x57e83505827788c9f92bcfd398a51a7b0c83dd8e CTS 18
\\x491604c0fdf08347dd1fa4ee062a822a5dd06b5d CTSI 18
\\x1a4743cf1af4c289351390a2b3fe7c13d2f7c235 CTT 18
\\x321c2fe4446c7c963dc41dd58879af648838f98d CTX 18
\\xea11755ae41d889ceec39a63e6ff75a02bc1c00d CTXC 18
\\xa8892bfc33fa44053a9e402b1839966f4fec74a4 CUB 18
\\xdf801468a808a32656d2ed2d2d80b72a129739f4 CUBE 8
\\xecd20f0ebc3da5e514b4454e3dc396e7da18ca6a CUDL 18
\\x817bbdbc3e8a1204f3691d14bb44992841e3db35 CUDOS 18
\\xb44a59d72cb84a2f29cd1836734208e1860798fd CULTUR 18
\\xd6327ce1fb9d6020e8c2c0e124a1ec23dcab7536 CUMINU 18
\\x35a18000230da775cac24873d00ff85bccded550 CUNI 8
\\x13339fd07934cd674269726edf3b5ccee9dd93de CUR 18
\\x0a4b2d4b48a63088e0897a3f147ba37f81a27722 CURA 18
\\x089a502032166e07ae83eb434c16790ca2fa4661 CURE 18
\\xc2d3ae29c8309c14994d02ecd228cf86f3efde77 CURRY 18
\\x5c406d99e04b8494dc253fcc52943ef82bca7d75 cUSD 6
\\x39aa39c021dfbae8fac545936693ac917d5e7563 cUSDC 8
\\xf650c3d88d12db855b8bf7d11be6c55a4e07dcc9 cUSDT 8
\\xf6abff616043c2da572573dcc583b656297b30e7 CUST 18
\\xe2da716381d7e0032cecaa5046b34223fc3f218d CUT 5
\\x047686fb287e7263a23873dea66b4501015a2226 CUTE 18
\\x50bc2ecc0bfdf5666640048038c1aba7b7525683 CV 18
\\x78a52e12c7b63d05c12f9608307587cf654ec3d0 CVA 18
\\x41e5560054824ea6b0732e656e3ad64e20e94e45 CVC 8
\\x6b466b0232640382950c45440ea5b630744eca99 CVD 0
\\x01fa555c97d7958fa6f771f3bbd5ccd508f81e22 CVL 18
\\x6400b5522f8d448c0803e6245436dd1c81df09ce CVNT 8
\\x19fd4c760a7d4a38aee9f226035cbc9fdf434ffe CVP 18
\\x38e4adb44ef08f22f5b5b76a8f0c2d0dcbe7dca1 CVP 18
\\x2578a20a07e8761d91d0961d3ea92e14510885aa CVR 18
\\x3c03b4ec9477809072ff9cc9292c9b25d4a8e6c6 CVR 18
\\x88930072f583936f506ce1f1d5fe69290c2d6a2a CVT 18
\\xbe428c3867f05dea2a89fc76a102b544eac7f772 CVT 18
\\x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b CVX 18
\\x62b9c7356a2dc64a1969e19c23e4f579f9810aa7 CVXCRV 18
\\xd55236d48606c295adebf129dad04fc74bfaa708 CW 18
\\xe74dc43867e0cbeb208f1a012fc60dcbbf0e3044 CWAP 18
\\xc11b1268c1a384e55c48c2391d8d480264a3a7f4 cWBTC 8
\\xccf4429db6322d5c611ee964527d42e5d685dd6a CWBTC 8
\\xac0104cca91d167873b8601d2e71eb3d4d8c33e0 CWS 18
\\x3f4e02741b155f5ce8d6190d294d4f916125b896 CX 18
\\xb48e0f69e6a3064f5498d495f77ad83e0874ab28 CXN 18
\\xb6ee9668771a79be7967ee29a63d4184f8097143 CXO 18
\\x86BBD9ac8B9B44C95FFc6BAAe58E25033B7548AA cyAUD 8
\\x481578423221a35b9358cfe5400d202d2bdc66f1 CYBERD 18
\\x09bdcce2593f0bef0991188c25fb744897b6572d cyBUSD 8
\\x8861cff2366c1128fd699b68304ad99a0764ef9a CYC 18
\\x4f12c9dabb5319a252463e6028ca833f1164d045 cyCDAI 8
\\x1b3E95E8ECF7A7caB6c4De1b344F94865aBD12d5 cyCHF 8
\\x950027632fbd6adadfe82644bfb64647642b6c09 cyCUSDC 8
\\xbb4b067cc612494914a902217cb6078ab4728e36 cyCUSDT 8
\\x8e595470ed749b85c6f7669de83eae304c2ec68f cyDAI 8
\\x7736ffb07104c0c400bb0cc9a7c228452a732992 cyDPI 8
\\x297d4da727fbc629252845e96538fc46167e453a cyDUSD 8
\\x00e5c0774A5F065c285068170b20393925C84BF3 cyEUR 8
\\xa8caea564811af0e92b1e044f3edd18fa9a73e4f cyEURS 8
\\xdb33d49b5a41a97d296b7242a96ebd8ac77b3bb8 CYF 18
\\x4a621d9f1b19296d1c0f87637b3a8d4978e9bf82 CYFM 18
\\xecaB2C76f1A8359A06fAB5fA0CEea51280A97eCF cyGBP 8
\\xa0e5a19e091bbe241e655997e50da82da676b083 cyGUSD 8
\\x215F34af6557A6598DbdA9aa11cc556F5AE264B1 cyJPY 8
\\x3c9f5385c288cE438Ed55620938A4B967c080101 cyKRW 8
\\x26cb3641aaa43911f1d4cb2ce544eb652aac7c47 CYL 18
\\xe7bff2da8a2f619c2586fb83938fa56ce803aa16 cyLINK 8
\\x78c292d1445e6b9558bf42e8bc369271ded062ea CYMT 8
\\xbe86e8918dfc7d3cb10d295fc220f941a1470c5c cyMUSD 8
\\xca55f9c4e77f7b8524178583b0f7c798de17fd54 cySEUR 8
\\x12a9cc33a980daa74e00cc2d1a0e74c57a93d12c cySNX 8
\\x4e3a36a633f63aee0ab57b5054ec78867cb3c0b8 cySUSD 8
\\xbd05cee8741100010d8e93048a80ed77645ac7bf CYTR 18
\\x76eb2fe28b36b3ee97f3adae0c69606eedb2a37c cyUSDC 8
\\x48759f220ed983db51fa7a8c0d2aab8f3ce4166a cyUSDT 8
\\x8fc8bfd80d6a9f17fb98a373023d72531792b431 cyWBTC 8
\\x41c84c0e2ee0b740cf0d31f63f3b6f627dc6b393 cyWETH 8
\\x7589c9e17bcfce1ccaa1f921196fda177f0207fc cyY3CRV 8
\\xfa3472f7319477c9bfecdd66e4b948569e7621b9 cyYFI 8
\\x672473908587b10e65DAB177Dbaeadcbb30BF40B cyZAR 8
\\xb3319f5d18bc0d84dd1b4825dcde5d5f7266d407 cZRX 8
\\x9f4f1c679fc8479cd71482a8d8c88dc60c1403f9 DAA 8
\\x8281ee37f164c0e26e6b6f87e7695baac256df07 DAC 18
\\xf8c595d070d104377f58715ce2e6c93e49a87f3c DACC 6
\\xa31108e5bab5494560db34c95492658af239357c DACS 18
\\xefab7248d36585e2340e5d25f8a8d243e6e3193f DACXI 18
\\x5b322514ff727253292637d9054301600c2c81e8 DAD 9
\\xfc979087305a826c2b2a0056cfaba50aad3e6439 DAFI 18
\\xb9e6bdcba653b5f768dd2e2faf6288df9054e554 DAH 18
\\x6b175474e89094c44da98b954eedeac495271d0f DAI 18
\\xee01b3AB5F6728adc137Be101d99c678938E6E72 DAIBNT 18
\\xd7d706ed3598a354a4adfce5d8c5383df99a4461 DAIN 18
\\x73d9e335669462cbdd6aa3adafe9efee86a37fe9 DAIQ 18
\\x40955d77f87123b71b145098358a60573ac7be96 DAISY 18
\\xcb913ED43e43cc7Cec1D77243bA381615101E7E4 DAIUSDB 18
\\x07d9e49ea402194bf48a8276dafb16e4ed633317 DALC 8
\\xf80d589b3dbe130c270a69f1a69d050f268786df DAM 18
\\x9b70740e708a083c6ff38df52297020f5dfaa5ee DAN 10
\\x9dfc4b433d359024eb3e810d77d60fbe8b0d9b82 DANDY 18
\\x9ea1ae46c15a4164b74463bc26f8aa3b0eea2e6e DANK 18
\\xbe3c393fb670f0a29c3f3e660ffb113200e36676 DANT 18
\\x0f51bb10119727a7e5ea3538074fb341f56b09ad DAO 18
\\xce3f6f6672616c39d8b6858f8dac9902eca42c84 DAO1 18
\\xd82bb924a1707950903e2c0a619824024e254cd1 DAOFI 18
\\x7f6b4d98789d283622d6b85d0efa3a7928c59b89 DAOMSTR 18
\\x4bebe99fac607dc7ef2d99d352ca18999f51b709 DAP 10
\\x939B462ee3311f8926c047D2B576C389092b1649 DAPP 4
\\x96184d9c811ea0624fc30c80233b1d749b9e485b DAPPT 18
\\x00d8318e44780edeefcf3020a5448f636788883c DAPPX 18
\\x3108ccfd96816f9e663baa0e8c5951d229e8c6da DARK 18
\\x5a4623f305a8d7904ed68638af3b4328678eddbf DART 18
\\x81c9151de0c8bafcd325a57e3db5a5df1cebf79c DAT 18
\\x0cf0ee63788a0849fe5297f3407f701e122cc023 DATA 18
\\x33d63ba1e57e54779f7ddaeaa7109349344cf5f1 DATA 18
\\x8f693ca8d21b157107184d29d398a8d082b38b76 DATA 18
\\x813b428af3920226e059b68a62e4c04933d4ea7a DATP 8
\\xabbbb6447b68ffd6141da77c18c7b5876ed6c5ab DATX 18
\\xd82df0abd3f51425eb15ef7580fda55727875f14 DAV 18
\\x1559295394b36fce85cc6b92dc52ea0acca8c79d DAVCC 18
\\x02b67949695111bd016bc649279550e7f3ceddc5 DAVSG 18
\\x01582f53baad0fa7678565ea8632b7b933f2a323 DAVSM 18
\\xb94932c26ae9adacb2d8669d72a422409e467534 DAVTG 18
\\x6b82bc2e2f0cde90c768a001cd6a220a65f09758 DAVTR 18
\\x95f1d54ce40eb1e1da2a2667fbed6c707de81ce7 DAVYT 18
\\x580c8520deda0a441522aeae0f9f7a5f29629afa DAWN 18
\\x0b4bdc478791897274652dc15ef5c135cae61e60 DAX 18
\\xe814aee960a85208c3db542c53e7d4a6c8d5f60f DAY 18
\\x9b68bfae21df5a510931a262cecf63f41338f264 DBET 18
\\xacbed9726ffd232b59d3ca86a0f5c856e2abef29 DBNK 18
\\x18f462815e21b6dacd2803d8d840972a399e7bcc DBOT 18
\\xc28d4341ad8224e1a424558074ef0b4515f424d5 DBT 0
\\x0c7e25e15e9f6818fa2770107b3ba565470bc8c5 DBTC 18
\\xc6d19a604fbdb5c2eeb363255fd63c9eea29288e DBUND 18
\\x4ece5c5cfb9b960a49aae739e15cdb6cfdcc5782 DBUY 9
\\x3cbc780d2934d55a06069e837fabd3e6fc23dab0 DBX 18
\\x18aa7c90d3ae4c5bb219d0a2813f441704084625 DCA 18
\\x4a73e60adbb8575500ffc6aaea6128954011c8af DCH 18
\\x08d32b0da63e2c3bcf8019c9c5d849d7a9d791e6 DCN 0
\\x0ce6d5a093d4166237c7a9ff8e0553b0293214a1 DCNT 18
\\xb944b46bbd4ccca90c962ef225e2804e46691ccf DCORE 18
\\xbded3f7537e75d6c38c036a3a788a549afde12b1 DCS 8
\\xb566e883555aebf5b1db211070b530ab00a4b18a DCTD 18
\\x9ccbd05d4d25c745d49f5e6bf17e09113eb4c769 DCTO 18
\\xd5dc8921a5c58fb0eba6db6b40eab40283dc3c01 DDAM 9
\\x9f5f3cfd7a32700c93f971637407ff17b91c7342 DDD 18
\\x8ca9a0fbd8db501f013f2e9e33a1b9dc129a48e0 DDDD 18
\\xfbeea1c75e4c4465cb2fccc9c6d6afe984558e20 DDIM 18
\\x7fbec0bb6a7152e77c30d005b5d49cbc08a602c3 DDOS 18
\\x3ef36d53a168c44ed2ec7a98129ca0308bc1ae45 DDRST 8
\\x94501b6a153c8973fd1f321fcc8188d40dc5d72d DDRT 8
\\xf9fbaefde7112f78fa9bfe813341f0f49f888cb3 DDS 18
\\x56cdbbeec9828962cecb3f1b69517d430295d952 DDTG 18
\\x3a880652f47bfaa771908c07dd8673a787daed3a DDX 18
\\x80ab141f324c3d6f2b18b030f1c4e95d4d658778 DEA 18
\\x151202c9c18e495656f372281f493eb7698961d5 DEB 18
\\x9248c485b0b80f76da451f167a8db30f33c70907 DEBASE 18
\\x30f271c9e86d2b7d00a6376cd96a1cfbd5f0b9b3 DEC 18
\\x58379bf685ea2e251ae63d3ee26269c7c3848a17 DEC 8
\\x9393fdc77090f31c7db989390d43f454b1a6e7f3 DEC 3
\\x6cbedec4f1ac9d874987d2769596544e0d9161ab DEEP 18
\\x78f225869c08d478c34e5f645d07a87d3fe8eb78 DEFI+L 18
\\x8d1ce361eb68e9e05573443c407d4a3bed23b033 DEFI++ 18
\\xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c DEFI+S 18
\\xfa6de2697d59e88ed7fc4dfe5a33dac43565ea41 DEFI5 18
\\x84cffa78b2fbbeec8c37391d2b12a04d2030845e DEFIT 18
\\x4ec2efb9cbd374786a03261e46ffce1a67756f3b DEFL 18
\\x70d47fd6c9497b11c1caf0e2a84a5e7661e66c1d DEFLA 9
\\xbc6819294c554f46bee6f5eb5260089a03e270a2 DEFLA 9
\\x3aa5f749d4a6bcf67dac1091ceb69d1f5d86fa53 DEFLCT 9
\\xe481f2311c774564d517d015e678c2736a25ddd3 DEFO 18
\\xdef1fac7bf08f173d286bbbdcbeeade695129840 DEFT 18
\\x5f474906637bdcda05f29c74653f6962bb0f8eda DEFX 18
\\x126c121f99e1e211df2e5f8de2d96fa36647c855 DEGEN 18
\\xdd039990bd551ce7437d3bf54d155220b7988b71 DEGENS 18
\\x88ef27e69108b2633f8e1c184cc37940a075cc02 DEGO 18
\\x469e66e06fec34839e5eb1273ba85a119b8d702f DEGOV 18
\\x9ea3b5b4ec044b70375236a281986106457b20ef DELTA 18
\\xde1e0ae6101b46520cf66fdc0b1059c5cc3d106c DELTA 8
\\xfcfc434ee5bff924222e084a8876eee74ea7cfba DELTARLP 18
\\x3597bfd533a99c9aa083587b074434e61eb0a258 DENT 8
\\x63726dae7c57d25e90ec829ce9a5c745ffd984d3 DEOR 10
\\x1a3496c18d558bd9c6c8f609e1b129f67ab08163 DEP 18
\\xa0bed124a09ac2bd941b10349d8d224fe3c955eb DEPAY 18
\\x9fa69536d1cda4a04cfb50688294de75b505a9ae DERC 18
\\xa487bf43cf3b10dffc97a9a744cbb7036965d3b9 DERI 18
\\x634239cfa331df0291653139d1a6083b9cf705e3 DES 18
\\x28f2c01a3d86ee4faf037147f0aeb49c2eab47ce DESH 18
\\x95ba34760ac3d7fbe98ee8b2ab33b4f1a6d18878 DESH 18
\\x5a80b50a0420a2507e33508a93e0aa037fc90636 DESS 18
\\xab93df617f51e1e415b5b4f8111f122d6b48e55c DETO 18
\\xd379700999f4805ce80aa32db46a94df64561108 DETS 18
\\x3b62f3820e0b035cc4ad602dece6d796bc325325 DEUS 18
\\x5caf454ba92e6f2c929df14667ee360ed9fd5b26 DEV 18
\\x7ed621d37e30214d5e197454f08b1c5c9558517a DEVA 18
\\xfdb615d6a15f929ddabc6b83a4f1cf9d361b064e DEVE 18
\\x3516415161c478df10adbb8bb884cc83fbd5f11a DEX 18
\\xde4ee8057785a7e8e800db58f9784845a5c2cbd6 DEXE 18
\\xb81d70802a816b5dacba06d708b5acf19dcd436d DEXG 18
\\x0020d80229877b495d2bf3269a4c13f6f1e1b9d3 DEXM 18
\\xcbe40c0efe2c40fab7018e6d901ad1b97712426f DEXO 18
\\x26ce25148832c04f3d7f26f32478a9fe55197166 DEXT 18
\\xfb7b4564402e5500db5bb6d63ae671302777c75a DEXT 18
\\x5f64ab1544d28732f0a24f4713c2c8ec0da089f0 DEXTF 18
\\x431ad2ff6a9c365805ebad47ee021148d6f7dbe0 DF 18
\\x1b2a76da77d03b7fc21189d9838f55bd849014af DFC 8
\\x20c36f062a31865bed8a5b1e512d9a1a20aa333a DFD 18
\\xd35ce4fd815522ff52243eb587020d557617f4db DFE 18
\\xe3a64a3c4216b83255b53ec7ea078b13f21a7dad DFGL 18
\\xee3b9b531f4c564c70e14b7b3bb7d516f33513ff DFIO 18
\\xa17de0ab0a97bc5e56fa8b39ebfc81cc3f1f349e DFK 18
\\x09ce2b746c32528b7d864a1e3979bd97d2f095ab DFL 18
\\x70a6d0d1561ba98711e935a76b1c167c612978a2 DFLY 9
\\x0ccd5dd52dee42b171a623478e5261c1eaae092a DFM 18
\\xc8ba3cf103e5a1658209c366153197ac7fa9c9b1 DFN 0
\\xd2adc1c84443ad06f0017adca346bd9b6fc52cab DFND 18
\\xdf276a2442ccbbdf0707427668434d6d130b75eb DFNI 18
\\x1640bd2898eee4c36f369836a067dea8725ac0cc DFO 8
\\x2f57430a6ceda85a67121757785877b4a71b8e6d DFP2 18
\\xcec38306558a31cdbb2a9d6285947c5b44a24f3e DFS 18
\\x54ee01beb60e745329e6a8711ad2d6cb213e38d7 DFSOCIAL 18
\\x46bFA3Bb807B5c3b3Ce7F7e0E667397020B6dc15 DFST 18
\\xb6ee603933e024d8d53dde3faa0bf98fe2a3d6f1 DFT 18
\\x888888435fde8e7d4c54cab67f206e4199454c60 DFX 18
\\xf1f5de69c9c8d9be8a7b01773cc1166d4ec6ede2 DFX 18
\\x7ccc863ece2e15bc45ac0565d410da7a3340ad98 DFY 18
\\x9695e0114e12c0d3a3636fab5a18e6b737529023 DFYN 18
\\x53c8395465a84955c95159814461466053dedede DG 18
\\x63b8b7d4a3efd0735c4bffbd95b332a55e4eb851 DGCL 18
\\xe0b7927c4af23765cb51314a0e0521a9645f0e2a DGD 9
\\x842c2b97772b4528589ed243f6bda3381ef0261f DGL 18
\\x6a55b1105497ce7939349f83cfe8b966845b1eb8 DGLD 18
\\x0d4b4da5fb1a7d55e85f8e22f728701ceb6e44c9 DGMT 18
\\x7ace84ac394e41f1c01711ed134d9bbcfa770ce7 DGN 6
\\xee87b220d9b0e762f0643c501fadefd6d9cc5b7e DGNN 18
\\x927159670c50042109d7c0f4aed0cee89452433e DGP 18
\\x1c83501478f1320977047008496dacbd60bb15ef DGTX 18
\\xc666081073e8dff8d3d1c2292a29ae1a2153ec09 DGTX 18
\\x26e43759551333e57f073bb0772f50329a957b30 DGVC 18
\\x87b87a7583d8d8f15b58bdd290318386ac8ee174 DGW 18
\\x4f3afec4e5a3f2a6a1a411def7d7dfe50ee057bf DGX 9
\\x152687bc4a7fcc89049cf119f9ac3e5acf2ee7ef DHC 18
\\x20b4b41ddaecd180798bd4322ba971fa1a54e512 DHD 0
\\x30365ed4ca8173013ad948b9842f34ac71d01f7c DHS 18
\\xca1207647ff814039530d7d35df0e1dd2e91fa84 DHT 18
\\x62dc4817588d53a056cbbd18231d91ffccd34b2a DHV 18
\\x84ca8bc7997272c7cfb4d0cd3d55cd942b3c9419 DIA 18
\\x2e071d2966aa7d8decb1005885ba1977d6038a65 DICE 16
\\x15f5f5f29a819bf7b4b80bf55352e1e42707c94e DIE 18
\\x763f8b4fb067190e739ed6acb12f40f2f3890840 DIGEX 0
\\x798d1be841a82a273720ce31c822c61a67a601c3 DIGG 9
\\x3cbf23c081faa5419810ce0f6bc1ecb73006d848 DIGI 18
\\x37f74e99794853777a10ea1dc08a64c86958f06a DILI 18
\\xbb1ee07d6c7baeb702949904080eb61f5d5e7732 DINU 18
\\x786448439d9401e0a8427acf7ca66a5114eb2368 DIP 8
\\xc719d010b63e5bbf2c0551872cd5316ed26acd83 DIP 18
\\xd1517663883e2acc154178fb194e80e8bbc29730 DIP 18
\\xbdea5bb640dbfc4593809deec5cdb8f99b704cd2 DIREWOLF 2
\\x4fab740779c73aa3945a5cf6025bf1b0e7f6349c DIRTY 18
\\x220b71671b649c03714da9c621285943f3cbcdc6 DIS 18
\\x4b4701f3f827e1331fb22ff8e2beac24b17eb055 DISTX 18
\\xf14922001a2fb8541a433905437ae954419c2439 DIT 8
\\xfb782396c9b20e564a64896181c7ac8d8979d5f4 DIVER 18
\\xb5e09e6bf6a5e96934b3fd99a40f7edaca1173ed DIVINE 18
\\xff1beda5ca92a83d05323e338d0534410858b6a2 DIVO 18
\\x43e6228b5bf22eab754486082ca91fdd8585521a DIXT 18
\\x5d269fac3b2e0552b0f34cdc253bdb427682a4b9 DJ15 9
\\x5dc60c4d5e75d22588fa17ffeb90a63e535efce0 DKA 18
\\x3f5dd1a1538a4f9f82e543098f01f22480b0a3a8 dKUMA 18
\\x38d1b0d157529bd5d936719a8a5f8379afb24faa DKYC 18
\\xc0ba369c8db6eb3924965e5c4fd0b4c1b91e305f DLP-DUCK 18
\\x07e3c70653548b04f0a75970c1f81b4cbbfb606f DLT 18
\\x0000000de40dfa9b17854cbc7869d80f9f98d823 DLTA 18
\\x0435316b3ab4b999856085c98c3b1ab21d85cd4d DLTX 18
\\x6673b317c45f490cd8342120a7c02e2ace7cbdd9 DMC 8
\\xed91879919b71bb6905f23af0a68d231ecf87b14 DMG 18
\\xbcdfe338d55c061c084d81fd793ded00a27f226d DML 18
\\x9556f8ee795d991ff371f547162d5efb2769425f DMME 18
\\x5f6c5c2fb289db2228d159c69621215e354218d7 DMOD 18
\\xf29992d7b589a0a6bd2de7be29a97a6eb73eaf85 DMST 18
\\x2ccbff3a042c68716ed2a2cb0c544a9f1d1935e1 DMT 8
\\x79126d32a86e6663f3aaac4527732d0701c1ae6c DMT 18
\\x3be6e7bf2cd8e1a0a95597e72ca6d3709bbeff76 DMTC 18
\\x51cb253744189f11241becb29bedd3f1b5384fdb DMTR 18
\\xf058501585023d040ea9493134ed72c083553eed DMX 18
\\x82b0e50478eeafde392d45d1259ed1071b6fda81 DNA 18
\\xef6344de1fcfc5f48c30234c16c1389e8cdc572c DNA 18
\\x0fbe9cc858d7ad6e246fe9d01aed22abd2a66f0b DNC 18
\\x17c090f9a17e4e5a8ceb23bbe7e7e28e3c4ca196 DNS 18
\\x0abdace70d3790235af448c88547603b945604ea DNT 18
\\x20a8cec5fffea65be7122bcab2ffe32ed4ebf03a DNXC 18
\\xe7ab45162f5979f09b0bda1cc7dfc97c270ea3d5 DOBE 18
\\xe5dada80aa6477e85d09747f2842f7993d0df71c DOCK 18
\\x43dfc4159d86f3a37a5a4b3d4580b888ad7d4ddd DODO 18
\\xf8e9f10c22840b613cda05a0c5fdb59a4d6cd7ef DOE 18
\\xbaac2b4491727d78d2b78815144570b9f2fe8899 DOG 18
\\x80bb277f4355a43cdbb86a82f9876c946476d9eb DOGDEFI 18
\\x4206931337dc273a630d328da6441786bfad668f DOGE 8
\\x7aa6b33fb7f395ddbca7b7a33264a3c799fa626f DOGEBULL 18
\\x044f613cdfffbac8bba42283dd8d97b81c8b3f3c DogeDao 18
\\x11cfda8c07eaf4903329458fe5826528dad65cb6 DOGEFATHER 18
\\x9b9087756eca997c5d595c840263001c9a26646d DOGEFI 18
\\xfb130d93e49dca13264344966a611dc79a456bc5 DOGEGF 18
\\x17eb50fdd2995696ee82912a80a9766fcbb0ecca DOGEN 18
\\xb4fbed161bebcb37afb1cb4a6f7ca18b977ccb25 DOGES 18
\\x559efe1d7a54fb1c7f25a036952f8498cdf02edb DOGG 18
\\x4b86e0295e7d32433ffa6411b82b4f4e56a581e1 DOGIRA 18
\\xe7a7ef72466167ff78e08ad76b12ca0c13c496e1 DOGPRO 18
\\x903904cb39bac33d4983ead3b3f573d720c7965e DOGUS 18
\\x9c405acf8688afb61b3197421cdeec1a266c6839 DOGY 18
\\x82a77710495a35549d2add797412b4a4497d33ef DOGZ 18
\\x9ceb84f92a0561fa3cc4132ab9c0b76a59787544 DOKI 18
\\x865377367054516e17014ccded1e7d814edc9ce4 DOLA 18
\\x217ddead61a42369a266f1fb754eb5d3ebadc88a DON 18
\\x4576e6825b462b6916d2a41e187626e9090a92c6 DON 18
\\x058bc8ef040bd3971418e36aa88b64899378ccf4 DONA 18
\\xe4f6d46c244bb7cf3e218cdfb5c35cf9a4d9c920 DONK 18
\\x23d80c4ee8fb55d4183dd9329296e176dc7464e1 DONUT 18
\\xc0f9bd5fa5698b6505f643900ffa515ea5df54a9 DONUT 18
\\x6bb61215298f296c55b19ad842d3df69021da2ef DOP 18
\\xbc4171f45ef0ef66e76f979df021a34b46dcc81d DORA 18
\\x0a913bead80f321e7ac35285ee10d9d922659cb7 DOS 18
\\xfab5a05c933f1a2463e334e011992e897d56ef0a DOTX 18
\\xad32a8e6220741182940c5abf610bde99e737b2d DOUGH 18
\\xac3211a5025414af2866ff09c23fc18bc97e79b1 DOV 18
\\x76974c7b79dc8a6a109fd71fd7ceb9e40eff5382 DOW 18
\\x661ab0ed68000491d98c796146bcf28c20d7c559 DOWS 18
\\xfb62ae373aca027177d1c18ee0862817f9080d08 DPET 18
\\x875353da48c4f9627c4d0b8b8c37b162fc43ce67 DPH 18
\\x1494ca1f11d487c2bbe4543e90080aeba4ba3c2b DPI 18
\\x01b3ec4aae1b8729529beb4965f27d008788b0eb DPP 18
\\xf3ae5d769e153ef72b4e3591ac004e89f48107a1 DPR 18
\\x10c71515602429c19d53011ea7040b87a4894838 DPT 18
\\xeec2be5c91ae7f8a338e1e5f3b5de49d07afdc81 DPX 18
\\x6c2adc2073994fb2ccc5032cc2906fa221e9b391 DPY 18
\\xb78b3320493a4efaa1028130c5ba26f0b6085ef8 DRACULA-DRC 18
\\x86642d169db9f57a02c65052049cbbbfb3e3b08c DRAY 4
\\xa150db9b1fa65b44799d4dd949d922c0a33ee606 DRC 0
\\xd7f5cabdf696d7d1bf384d7688926a4bdb092c67 DRC 18
\\x9d561d63375672abd02119b9bc4fb90eb9e307ca DRCT 18
\\x82f4ded9cec9b5750fbff5c2185aee35afc16587 DREAM 6
\\xa93d5cfaa41193b13321c035b4bdd2b534172762 DREAM 18
\\x22de9912cd3d74953b1cd1f250b825133cc2c1b3 DREP 18
\\x3ab6ed69ef663bd986ee59205ccad8a20f98b4c2 DREP 18
\\x814f67fa286f7572b041d041b1d99b432c9155ee DRG 8
\\x9d3e0892d11f19f5181d4a4c5d04187a9e0d7032 DRGB 18
\\x419c4db4b9e25d6db2ad9691ccb832c8d9fda05e DRGN 18
\\x223fb5c14c00cfb70cf56bb63c2eef2d74fe1a78 DRGNBEAR 18
\\xa7774F9386E1653645E1A08fb7Aae525B4DeDb24 DRGNBNT 18
\\x3335f16af9008bfd32f1ee6c2be5d4f84fa0b9da DRGNBULL 18
\\x239119c43e3cac84c8a2d45bcba0e46f528e5f77 DRIP 9
\\x2369686fc9fb6e1fdc46541891568c2f341906ef DRK 18
\\x89551b940e2a8ed8eccf509935bac9213fe30584 DRM 18
\\x9af4f26941677c706cfecf6d3379ff01bb85d5ab DRT 8
\\xb67beb26ebeb0dceec354ae0942256d03c01771b DS 18
\\x048eb9b9c08e2df45644cf0db1fcb3e866c401ad DSC 18
\\xdece0f6864c1511369ae2c30b90db9f5fe92832c DSCP 18
\\x3ee6e46f52c475c52040b934745501f2a0cea252 DSCVR 18
\\x1e3a2446c729d34373b87fd2c9cbb39a93198658 DSD 18
\\xbd2f0cd039e0bfcf88901c98c0bfac5ab27566e3 DSD 18
\\x136bced3af8530b81e4c7ff45c9228376726d173 DSE 18
\\x537a9095b78517597b5f2058edcd6e1978095909 DSGN 4
\\x3affcca64c2a6f4e3b6bd9c64cd2c969efd1ecbe DSLA 18
\\x213c53c96a01a89e6dcc5683cf16473203e17513 DSS 18
\\x3f344c88d823f180fb8b44a3c7cfc4edc92dfa35 DSWAP 6
\\x10a34bbe9b3c5ad536ca23d5eefa81ca448e92ff DSYS 18
\\x69b148395ce0015c13e36bffbad63f49ef874e03 DTA 18
\\x5adc961d6ac3f7062d2ea45fefb8d8167d44b190 DTH 18
\\xb57420fad6731b004309d5a0ec7c6c906adb8df7 DTO 18
\\x0f4c00139602ab502bc7c1c0e71d6cb72a9fb0e7 DTOP 18
\\x54ad74edeab48e09ccc43ee324f2603071dad72b DTOP 18
\\xc20464e0c373486d2b3335576e83a218b1618a5e DTRC 18
\\xd2be3722b17b616c51ed9b8944a227d1ce579c24 DTUBE 2
\\x765f0c16d1ddc279295c1a7c24b0883f62d33f75 DTX 18
\\x82fdedfb7635441aa5a92791d001fa7388da8025 DTX 18
\\xa117ea1c0c85cef648df2b6f40e50bb5475c228d DUCATO 18
\\x92e187a03b6cd19cb6af293ba17f2745fd2357d5 DUCK 18
\\xffe136de12a2cd95f64cef9f36414c93e9003959 DUCK 18
\\xd69ae79b01c4af7f19b9a824e5643363b202b3a1 DUET 18
\\x73f2651ea38d48b3b808ffddbd398fd600ab5ba7 DUK+ 4
\\xdada00a9c23390112d08a1377cc59f7d03d9df55 DUNG 18
\\x56e0b2c7694e6e10391e870774daa45cf6583486 DUO 18
\\x5bc25f649fc4e26069ddf4cf4010f9f706c23831 DUSD 18
\\x940a2db1b7008b6c776d4faaca729d6d4a4aa551 DUSK 18
\\x424242115b5bbdc12a1f5c06dd8dd0ddd03c321d DUST 18
\\xbca3c97837a39099ec3082df97e28ce91be14472 DUST 8
\\x5e6ffe7b174a50c81ff3f3c54c04fd3c11e20830 DVC 18
\\x77dce26c03a9b833fc2d7c31c22da4f42e9d9582 DVD 18
\\xdddddd4301a082e62e84e43f474f044423921918 DVF 18
\\x51e00a95748dbd2a3f47bc5c3b3e7b3f0fea666c DVG 18
\\x10633216e7e8281e33c86f02bf8e565a635d9770 DVI 18
\\x8e30ea2329d95802fd804f4291220b0e2f579812 DVP 18
\\xdcbcffeee34eb128336fd45ed62fe8f420c8857d DVS 8
\\x975769557510167d25beed6e32806537173e292c DVX 18
\\xc626c9e2247c8a0c863ad6daa97ed939e12786de DWC 8
\\xf4b54874cd8a6c863e3a904c18fda964661ec363 DWS 18
\\x7dee45dff03ec7137979586ca20a2f4917bac9fa DWZ 18
\\x973e52691176d36453868d9d86572788d27041a9 DX 18
\\xb0e99627bc29adef1178f16117bf495351e81997 DXC 18
\\xa1d65e8fb6e87b60feccbc582f7f97804b725521 DXD 18
\\x15eabb7500e44b7fdb6e4051ca8deca430cf9fb8 DXF 18
\\x42891d10b550d0c5c4ac2e17bcd7e2a19c7230f0 DXH 18
\\x8b6dd24bcb2d0aea92c3abd4eb11103a5db6d714 DXIOT 18
\\x528b3e98c63ce21c6f680b713918e0f89dfae555 DXO 18
\\xfff3ada5a2555a2b59bff4f44dfad90146cce8cb DXR 18
\\x39fa206c1648944f92e8f7b626e1cbdf78d7e9db DXY 18
\\x92d6c1e31e14520e676a687f0a93788b716beff5 DYDX 18
\\x3b7f247f21bf3a07088c2d3423f64233d4b069f7 DYNMT 2
\\x961c8c0b1aad0c0b10a51fef6a867e3091bcef17 DYP 18
\\x740623d2c797b7d8d1ecb98e9b4afcf99ec31e14 DYT 18
\\x042f972ac93404f0fcbe4e3a0729f0b395232106 DYX 8
\\x9cb2f26a23b8d89973f08c957c4d7cdf75cd341c DZAR 6
\\xa0b84460a1e78339692c7463009c35f0b9a6ae4c E2P 18
\\xa0c995f7d051e85afd817caeabb352cc13671009 EAGLE 9
\\xb4742e2013f96850a5cef850a3bb74cf63b9a5d5 EAN 18
\\x1caa202df9240d7b464d9486a6f1542768ef0d30 EAPEX 9
\\x31e92324ef7185c65dd4d154cfa4f6326b489c55 EARN 8
\\x913d8adf7ce6986a8cbfee5a54725d9eea4f0729 EASY 18
\\xc36c65693ea9e207ad35d4ee2fb6c5f6f43bdec8 EAURIC 18
\\xa689dcea8f7ad59fb213be4bc624ba5500458dc6 EBASE 18
\\x27fbdd15fb0820b50b9c3683ea628bb6ab9b2d70 EBATo 18
\\xbddab785b306bcd9fb056da189615cc8ece1d823 EBK 18
\\x253444bd9ecf11e5516d6d00974e91c9f0857ccb EBLOAP 18
\\x33840024177a7daca3468912363bed8b425015c5 EBOX 18
\\x6f063c0fcda0ea6dcc01d5a7cb3066ed4f90d1a8 EBSP 0
\\xeb7c20027172e5d143fb030d50f91cece2d1485d EBTC 8
\\x12fd19dac0fab61bed5e0f09091b470c452d4d61 EC 18
\\xf0196985601598a35a48606b643fd2c34fb861e1 EC 18
\\x3ff426ca07a9f589a80f18cccc759e84cf06f0eb EC2 18
\\xfab25d4469444f28023075db5932497d70094601 ECA 18
\\x5d21ef5f25a985380b65c8e943a0082feda0db84 ECASH 18
\\x906710835d1ae85275eb770f06873340ca54274b ECASH 9
\\x9b62ec1453cea5dde760aaf662048ca6eeb66e7f ECELL 2
\\x171706b7d113c68f2cc68a6ce63b1dbdcdf7b233 ECHO 18
\\x08e411220e47e3fc43bfb832186aba95108f2861 ECL 18
\\x191557728e4d8caa4ac94f86af842148c0fa8f7e ECO 8
\\xc242eb8e4e27eae6a2a728a41201152f19595c83 ECO 18
\\x171d750d42d661b62c277a6b486adb82348c3eca ECOM 18
\\x8b8a8a91d7b8ec2e6ab37ed8ffbacee062c6f3c7 ECP 6
\\xb55732a15b3dc5d6e8d4adf40634f37470da71fa ECPN 8
\\xe9fa21e671bcfb04e6868784b89c19d5aa2424ea ECTE 18
\\x921c87490ccbef90a3b0fc1951bd9064f7220af6 ECTO 18
\\x8fc9b6354e839ab1c8b31f4afa53607092b8c2e5 ECU 18
\\xd3cdc4e75750dc1e59f8342200742b6b29490e70 ECU 3
\\x9d5963ba32e877871dff3e2e697283dc64066271 EDC 18
\\xfbbe9b1142c699512545f47937ee6fae0e4b0aa9 EDDA 18
\\x1559fa1b8f28238fd5d76d9f434ad86fd20d1559 EDEN 18
\\x08711d3b02c8758f2fb3ab4e80228418a7f8e39c EDG 0
\\x4ec1b60b96193a64acae44778e51f7bff2007831 EDGE 18
\\x3b046fde911d3b6f9caa4759dbcfb034a87648ba EDH 8
\\x79c5a1ae586322a07bfb60be36e1b31ce8c84a1e EDI 18
\\x89020f0d5c5af4f3407eb5fe185416c457b0e93e EDN 18
\\xced4e93198734ddaff8492d525bd258d49eb388e EDO 18
\\xc528c28fec0a90c083328bc45f587ee215760a0f EDR 18
\\xf263292e14d9d8ecd55b58dad1f1df825a874b7c EDU 18
\\xdeb14c17e9c8ed4c64a2194e7758a072af69ef89 eEMPEROR 18
\\x3cc5eb07e0e1227613f1df58f38b549823d11cb9 EER 18
\\x656c00e1bcd96f256f224ad9112ff426ef053733 EFI 18
\\x6653c0d21507573cc39ead1e609d74d5e0ca16e2 EFK 18
\\x47ec6af8e27c98e41d1df7fb8219408541463022 EFOOD 18
\\xc0ec8caec55f37d47fbfa595727418868a21fd48 EGC 8
\\xaf8a215e81faea7c180ce22b72483525121813bd EGCC 18
\\x65ccd72c0813ce6f2703593b633202a0f3ca6a0c EGG 18
\\x1e83916ea2ef2d7a6064775662e163b2d4c330a7 EGL 18
\\x2aa5ce395b00cc486159adbdd97c55b535cf2cf9 EGT 18
\\x8e1b448ec7adfc7fa35fc2e885678bd323176e34 EGT 18
\\x5e8f0e658aff673aa635a889c5b4f38f12e2a740 EGX 18
\\x2942e3b38e33123965bfbc21e802be943a76bbc6 EHASH 18
\\x96610186f3ab8d73ebee1cf950c750f3b1fb79c2 EJS 18
\\xa6a840e50bcaa50da017b91a0d86b8b2d41156ee EKO 18
\\x4ecdb6385f3db3847f9c4a9bf3f9917bb27a5452 EKT 8
\\xbab165df9455aa0f2aed1f2565520b91ddadb4c8 EKT 8
\\x2781246fe707bb15cee3e5ea354e2154a2877b16 EL 18
\\xe6fd75ff38adca4b97fbcd938c86b98772431867 ELA 18
\\xfb444c1f2b718ddfc385cb8fd9f2d1d776b24668 ELAMA 18
\\x33e07f5055173cf8febede8b21b12d1e2b523205 ELAND 18
\\x796e47b85a0d759f300f1de96a3583004235d4d8 ELD 18
\\xf0c6521b1f8ad9c33a99aaf056f6c6247a3862ba ELD 18
\\x48be867b240d2ffaff69e0746130f2c027d8d3d2 ELE 9
\\xd49ff13661451313ca1553fd6954bd1d9b6e02b9 ELEC 18
\\x6f0f28ceee6ae686ee0f939375674c01b156365a ELENA 18
\\x6c37bf4f042712c978a73e3fd56d1f5738dd7c43 ELET 18
\\xbf2179859fc6d5bee9bf9158632dc51678a4100e ELF 18
\\x0F2318565f1996CB1eD2F88e172135791BC1FcBf ELFBNT 18
\\xa2085073878152ac3090ea13d1e41bd69e60dc99 ELG 18
\\xc7c03b8a3fc5719066e185ea616e87b88eba44a3 ELI 18
\\xc19216eea17b2f4dd677f1024cda59c7d142f189 ELOAP 18
\\x761d38e5ddf6ccf6cf7c55759d5210750b5d60f3 ELON 18
\\x09e333e720e1bd0fe82d188d6aed36d22f96d399 ELONDM 18
\\x348b7f3106b5da47405332534d06069ff9ce4d1b ELONGD 9
\\x97b65710d03e12775189f0d113202cc1443b0aa2 ELONONE 9
\\x380291a9a8593b39f123cf39cc1cc47463330b1f ELT 18
\\x44197a4c44d6a059297caf6be4f7e172bd56caaf ELTCOIN 8
\\x9048c33c7bae0bbe9ad702b17b4453a83900d154 ELX 18
\\xa95592dcffa3c080b4b40e459c5f5692f67db7f8 ELY 18
\\x881a7e25d44591c467a37da96adf3c3705e7251b ELYX 18
\\x35b08722aa26be119c1608029ccbc976ac5c1082 EM 8
\\x15874d65e649880c2614e7a480cb7c9a55787ff6 EMAX 18
\\xdb0acc14396d108b3c5574483acb817855c9dc8d EMB 8
\\x0a425122852ed351946a828b348bfdcda51effd8 EMC 18
\\x9a07fd8a116b7e3be9e6185861496af7a2041460 EMCO 18
\\xd97e471695f73d8186deabc1ab5b8765e667cd96 EMCO 18
\\x365200f8fa677158fe690fbf36fbe82fc4f6769f eMinion 18
\\xb5f278ee11811efec0692ec61b1e9f9984f2de11 EMIT 3
\\x37be876ef051eb8eddd0745107c5222d8ca8ec60 EMIT1USDB 18
\\x2a3a6596b35735efac3577dc36bf750bfe5888e8 EMIT1USDB2FCO 18
\\xcbd380c2d84deafed09f79863705353505764f26 EMOJI 18
\\xd6a5ab46ead26f49b03bbb1f9eb1ad5c1767974a EMON 18
\\x95daaab98046846bf4b2853e23cba236fa394a31 EMONT 8
\\x9b639486f4a40c1a7a6728114f2413973f5fa4c6 EMP 18
\\xbdbc2a5b32f3a5141acd18c39883066e4dab9774 EMRX 8
\\x17e6616c45d267bc20a9892b58a01621c592b72d EMS 18
\\x9501bfc48897dceeadf73113ef635d2ff7ee4b97 EMT 18
\\xbd2949f67dcdc549c6ebe98696449fa79d988a9f EMTRG 18
\\xa6fb1df483b24eeab569e19447e0e107003b9e15 ENB 18
\\xe0e4839e0c7b2773c58764f9ec3b9622d01a0428 ENCORE 18
\\xf0ee6b27b759c9893ce4f094b49ad28fd15a23e4 ENG 8
\\xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c ENJ 18
\\xf3aD2cBc4276eb4B0fb627Af0059CfcE094E20a1 ENJBNT 18
\\x92b914f1ddcbb1d117a718e83c9ed7eb32fc44d1 ENK 18
\\x63d0eea1d7c0d1e89d7e665708d7e8997c0a9ed6 ENOL 18
\\xc18360217d8f7ab5e7c516566761ea12ce7f9d72 ENS 18
\\xec1a718d1a6f8f8d94ecec6fe91465697bb2b88c ENTONE 8
\\xd779eea9936b4e323cddff2529eb6f13d0a4d66e ENTR 18
\\xd9d01d4cb824219a8f482a0fad479cb971fd0628 ENTRC 8
\\x5bc7e5f0ab8b2e10d2d0a3f21739fce62459aef3 ENTRP 18
\\xd0d7a9f2021958e51d60d6966b7bbed9d1cb22b5 ENX 10
\\xa8006e3ac1bd94e54e3136b8e5dd75db0163e6f4 EOC 18
\\x86fa049857e0209aa7d9e616f7eb3b3b78ecfdb0 EOS 18
\\x3d3dd61b0f9a558759a21da42166042b114e12d5 EOSBEAR 18
\\xead7f3ae4e0bb0d8785852cc37cc9d0b5e75c06a EOSBULL 18
\\x7e9e431a0b8c4d532c745b1043c7fa29a48d4fba EOSDAC 18
\\xb38f206615325306dddeb0794a6482486b6b78b8 EOSHEDGE 18
\\x87210f1d3422ba75b6c40c63c78d79324dabcd55 EOST 18
\\x72630b1e3b42874bf335020ba0249e3e9e47bafc EPAN 18
\\x2b5ca2f9510cf1e3595ff219f24d75d4244585ea EPAY 18
\\xd0c4ad14f872bcdf7c3cc2bae99279ab5cdead30 EPC 18
\\xbcd9e216200369803ed059b7744f6fb4cf3887c7 EPIC 18
\\x4da0c48376c277cdbd7fc6fdc6936dee3e4adf75 EPIK 18
\\xdaf88906ac1de12ba2b1d2f7bfc94e9638ac40c4 EPK 18
\\x57b3140f522a3ef2f98c046f78e0d03075908591 EPLAT 18
\\x02e3083a51e8632e571fbd6a62ac396c10c653ba EPLUS 8
\\xba630d3ba20502ba07975b15c719beecc8e4ebb0 EPRO 9
\\x50ec35d1e18d439f02fa895746fc3e1bef311780 EPS 18
\\x051cf5178f60e9def5d5a39b2a988a9f914107cb EPSTEIN 18
\\xa462d0e6bb788c7807b1b1c96992ce1f7069e195 EQMT 18
\\x46e9fe43470fafd690100c86037f9e566e24d480 EQO 18
\\xc28e931814725bbeb9e670676fabbcb694fe7df2 EQUAD 18
\\xbd3de9a069648c84d27d74d701c9fa3253098b15 EQX 18
\\x1da87b114f35e1dc91f72bf57fc07a768ad40bb0 EQZ 18
\\xc3761eb917cd790b30dad99f6cc5b4ff93c4f9ea ERC20 18
\\xf8f237d074f637d777bcd2a4712bde793f94272b ERC223 10
\\x12dc767728105aa415dd720dfbd0ea1d85841172 ERD 2
\\xbbc2ae13b23d715c30720f079fcd9b4a74093505 ERN 18
\\xc1fa06e8596c3fa98ccd2113c38b6b60b6efa00d EROTICA 18
\\x07bac35846e5ed502aa91adf6a9e7aa210f2dcbe EROWAN 18
\\x0a0e3bfd5a8ce610e735d4469bc1b3b130402267 ERP 18
\\xd3deff001ef67e39212f4973b617c2e684fa436c ERROR 18
\\x5218e472cfcfe0b64a064f055b43b4cdc9efd3a6 ERSDL 18
\\xe29c5b523590165795bbd7d52369c2895b18841f ERT 19
\\x72108a8cc3254813c6be2f1b77be53e185abfdd9 ES 18
\\x49614661737efbfc6a102efaeefdc8e197f7cc0e ESCE 8
\\xa8ebb13b9895e52ab7d815ce7f63591402581624 ESCX 8
\\x36f3fd68e7325a35eb768f1aedaae9ea0689d723 ESD 18
\\x5cf9242493be1411b93d064ca2e468961bbb5924 ESG 18
\\xd6a55c63865affd67e2fb9f284f87b7a9e5ff3bd ESH 18
\\xdf329603bd378021698f9833cd5205b52f9e370e ESH 18
\\xbdab72602e9ad40fc6a6852caf43258113b8f7a5 ESOV 18
\\x35a79fceb867ee3392ed0c8dedd8dc2f6124c9cd ESPI 18
\\x29c56e7cb9c840d2b2371b17e28bab44ad3c3ead ESPRO 18
\\xfc05987bd2be489accf0f509e44b0145d68240f7 ESS 18
\\x0efc2390c79c47452898a234a27f2b9c39a7a725 EST 18
\\xf3924df14812b3d3db29124aa9da4353ed5e04a3 ESTI 18
\\x1ebe1e64dd249c6fdb600d05a927a7d26a4a895f ESUPREME 9
\\xa0471cdd5c0dc2614535fd7505b17a651a8f0dab ESWA 18
\\xe8a1df958be379045e2b46a31a98b93a2ecdfded ESZ 18
\\x856c4388c56c2a613c60507a4701af627157fed6 ETAS 18
\\xa340f0937a8c00db11c83cc16cec12310160f0b6 ETCBEAR 18
\\x974c98bc2e82fa18de92b7e697a1d9bd25682e80 ETCBULL 18
\\xc2b58812c24020ea924c3d7c241c441605f12e75 ETF 8
\\x28c8d01ff633ea9cd8fc6a451d7457889e698de6 ETG 0
\\x74603e780545d02c4257e7d2be19c74de7be1952 ETGF 18
\\xa96f31f1c187c28980176c3a27ba7069f48abde4 ETGP 8
\\x ETH 18
\\x0000000000000000000000000000000000000000 ETH 18
\\x14580a45324d0d35dc08edf982007a44325e3730 ETH 18
\\x55370c60fca4929867f8e0e59acfc6198bdca274 ETH 18
\\x65558b5b48dca1ed00dbd677c02faba8a6eb270f ETH 18
\\xa0158a5b778e792e861bb44ae663ff9dba1eb427 ETH 18
\\xc0829421c1d260bd3cb3e0f06cfe2d52db2ce315 ETH 18
\\xd76b5c2a23ef78368d8e34288b5b65d616b746ae ETH 18
\\xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE ETH 18
\\x2c5a9980b41861d91d30d0e0271d1c093452dca5 ETH12EMACO 18
\\xb647a1d7633c6c4d434e22ee9756b36f2b219525 ETH20MACOAPY 18
\\x9ea463ec4ce9e9e5bc9cfd0187c4ac3a70dd951d ETH20SMACO 18
\\x614857c755739354d68ae0abd53849cf45d6a41d ETH26EMACO 18
\\xaa6e8127831c9de45ae56bb1b0d4d4da6e5665bd ETH2x-FLI 18
\\x239b0fa917d85c21cf6435464c2c6aa3d45f6720 ETH3L 18
\\xa360f2af3f957906468c0fd7526391aed08ae3db ETH50SMACO 18
\\x59e9261255644c411afdd00bd89162d09d862e38 ETHA 18
\\x2f5e2c9002c058c063d21a06b6cabb50950130c8 ETHBEAR 18
\\x96b52b5bf8d902252d0714a1bd2651a785fd2660 ETHBN 18
\\xb1cd6e4153b2a390cf00a6556b0fc1458c4a5533 ETHBNT 18
\\xa6c040045d962e4b8efa00954c7d23ccd0a2b8ad ETHBTC7525 18
\\xb9ffe0b8ee2d1af94202ffed366520300748a4d8 ETHBTCEMACO 18
\\xbf70a33a13fbe8d0106df321da0cf654d2e9ab50 ETHBTCRSI 18
\\x871baed4088b863fd6407159f3672d70cd34837d ETHBULL 18
\\x316b13b951efe25aad1cb565385b23869a7d4c48 ETHEMAAPY 18
\\x54e8371c1ec43e58fb53d4ef4ed463c17ba8a6be ETHEMAAPY 18
\\x10e1e953ddba597011f8bfa806ab0cc3415a622b ETHHEDGE 18
\\xfd09911130e6930bf87f2b0554c44f400bd80d3e ETHIX 18
\\x340ef83ec8560892168d4062720f030460468656 ETHM 18
\\xfd957f21bd95e723645c07c48a2d8acb8ffb3794 ETHM 18
\\xef0fda1d4bd73ddc2f93a4e46e2e5adbc2d668f4 ETHMACOAPY 18
\\xbf4a2ddaa16148a9d0fa2093ffac450adb7cd4aa ETHMNY 2
\\x98a25ba4c3793b9029652cbc1a8875cbe223df13 ETHMO 18
\\x73104e9d3da91e410a6c211068f7bffabbbd3e26 ETHMOONX 18
\\xb1ca7e6714263a64659a3a89e1c313af30fd660a ETHMOONX 18
\\x99676c9fa4c77848aeb2383fcfbd7e980dc25027 ETHO 18
\\xeed736b2b809550d89a941c2005de93588c628e2 ETHP 18
\\x09e4bdfb273245063ef5e800d891eff7d04f9b83 ETHPA 18
\\xe0c6ce3e73029f201e5c0bedb97f67572a93711c ETHPLO 6
\\x601938988f0fdd937373ea185c33751462b1d194 ETHPY 18
\\x93e01899c10532d76c0e864537a1d26433dbbddb ETHRSI6040 18
\\x136fae4333ea36a24bb751e2d505d6ca4fd9f00b ETHRSIAPY 18
\\x9f49ed43c90a540d1cf12f6170ace8d0b88a14e6 ETHRSIAPY 18
\\xa2dca1505b07e39f96ce41e875b447f46d50c6fc ETHS 18
\\xcfd069247bd5f01a17f1ca76424c9e424256908d ETHSC 18
\\xb8243b4eeca27a4191e879760b88fe2270561796 ETHUSDADL4 18
\\x482c31355F4f7966fFcD38eC5c9635ACAe5F4D4F ETHUSDB 18
\\x058349297672b6cc7ccb6e59a679c5add74a6898 ETHV 18
\\xc53342fd7575f572b0ff4569e31941a5b821ac76 ETHV 18
\\xeeeeeeeee2af8d0e1940679860398308e0ef24d6 ETHV 18
\\xd1afbccc9a2c2187ea544363b986ea0ab6ef08b5 ETHY 18
\\xd0d3ebcad6a20ce69bc3bc0e1ec964075425e533 ETHYS 18
\\x6020da0f7c1857dbe4431ec92a15cc318d933eaa ETM 18
\\x4526dc4ac8f692535ed9bf235a3a20a2b9ff3328 ETO 18
\\x32163c2d2d313c73279e87398e7f84bb9f537e9d ETOR 18
\\x71e5fb8793b5a2fb0c4918930180f8b36500cbb8 ETR 8
\\x1212b68d8555cf0b08f3371b926b3e1148b520f1 ETT 18
\\x952b65d976e8669c4ce92a17cce5b2586912adb5 ETT 18
\\x5acd07353106306a6530ac4d49233271ec372963 ETY 18
\\xc37e8a31ba2d110c12f09f0239954a68b00bc599 EUBC 8
\\x6ab4a7d75b0a42b6bc83e852dab9e121f9c610aa EUM 18
\\xe532a2a37b0707b4306b21b412d2e8c22f9824ec EUP 18
\\xdb25f211ab05b1c97d595516f45794528a807ad8 EURS 2
\\xFC0e04Eae452c163883AAAd4Ac1AE091Cc87FEf3 EURSBNT 18
\\xabdf147870235fcfc34153828c769a70b3fae01f EURT 6
\\x6c139349ee94ebaaff55ed52d382673c263b22d6 EURU 18
\\x05ac103f68e05da35e78f6165b9082432fe64b58 EURX 18
\\x0bead9a1bcc1b84d06e3f2df67e3549fd55ab054 EURXB 18
\\x70126bd012e39038792366c9115bb64407d5cbe1 EVA 9
\\xd6caf5bd23cf057f5fccce295dcc50c01c198707 EVA 18
\\x50f09629d0afdf40398a3f317cc676ca9132055c EVAI 8
\\x89e3ac6dd69c15e9223be7649025d6f68dab1d6a EVAN 18
\\xaa843f65872a25d6e9552ea0b360fb1d5e333124 EVC 18
\\xb62d18dea74045e822352ce4b3ee77319dc5ff2f EVC 18
\\xba14b245d449965bdbeb630ebe135b569474f5b1 EVC 6
\\x923108a439c4e8c2315c4f6521e5ce95b44e9b4c EVE 18
\\x5aaefe84e0fb3dd1f0fcff6fa7468124986b91bd EVED 18
\\x6b40d317bc1de4b0938519ac707ae36464f49171 EVEO 18
\\x3f9078b8fbcb1c4e03b41fa9e5a0532a28848db7 EVERAPE 9
\\x920db6c38cf5a2a12554e812d4b3ac2daa8eba4d EVI 18
\\x68909e586eeac8f47315e84b4c9788dd54ef65bb EVN 18
\\x9af15d7b8776fa296019979e70a5be53c714a7ec EVN 18
\\xd780ae2bf04cd96e577d3d014762f831d97129d0 EVN 18
\\x9a24b8e8a6d4563c575a707b1275381119298e60 EVNY 18
\\xefbd6d7def37ffae990503ecdb1291b2f7e38788 EVO 18
\\x3137619705b5fc22a3048989f983905e456b59ab EVR 8
\\x5aaa2182459377b6ca18b10712f9f602140764af EVT 8
\\xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8 EVX 4
\\xeed3ae7b0f8b5b9bb8c035a9941382b1822671cd EVY 12
\\x7a939bb714fd2a48ebeb1e495aa9aaa74ba9fa68 EVZ 18
\\x178c820f862b14f316509ec36b13123da19a6054 EWTB 18
\\x5e6f3bc1186132565946fea123181529e7aeafd8 eXAU 18
\\x6baa91cd8aa07431760ef2eedfedcef662a6b8b3 EXCHBEAR 18
\\x592ef68c18f05a22c5890263dea5d952dd140d2a EXCHBULL 18
\\xf8cc67e304f8e1a351ed83b4dbbe6b4076d51376 EXCHHEDGE 18
\\x412d397ddca07d753e3e0c61e367fb1b474b3e7d EXE 18
\\x2a1174d1cd4348cb1eaec3f00310908ca289e5be EXG 6
\\x83869de76b9ad8125e22b857f519f001588c0f62 EXM 8
\\x331fa6c97c64e47475164b9fc8143b533c5ef529 EXMR 18
\\x0766e79a6fd74469733e8330b3b461c0320ff059 EXN 18
\\xd6c67b93a7b248df608a653d82a100556144c5da EXNT 16
\\xE58E751abA3B9406367B5F3CbC39c2Fa9B519789 EXO 18
\\x5330a5805b9db68ebcf5247bbc9097163c1c2442 EXP 18
\\x6468e79a80c0eab0f9a2b574c8d5bc374af59414 EXRD 18
\\xe469c4473af82217b30cf17b10bcdb6c8c796e75 EXRN 0
\\xb20043f149817bff5322f1b928e89abfc65a9925 EXRT 8
\\x5c743a35e903f6c584514ec617acee0611cf44f3 EXY 18
\\x155ff1a85f440ee0a382ea949f24ce4e0b751c65 EYE 18
\\x2dca19e944453e46d9130950ca135461b3bc0c30 EYES 18
\\x511f7db02f793f48879bd2e7a780aa50cfee90b3 EYFI 18
\\x00aba6fe5557de1a1d565658cbddddf7c710a1eb EZ 18
\\x78a2a1029e3168b49d3a276c787050ff5106dcf2 EZW 18
\\xa6d5c720a9af5a405dfb6b9f44fc44fab5d4a58d EZY 8
\\xb0a0a070640b450eb136dc377208469ee4f49fbc F1C 18
\\x38a94e92a19e970c144ded0b2dd47278ca11cc1f F9 9
\\x1ccaa0f2a7210d76e1fdec740d5f323e2e1b1672 FACE 18
\\x23aeff664c1b2bba98422a0399586e96cc8a1c92 FACT 18
\\xcda2f16c6aa895d533506b426aff827b709c87f5 FAI 18
\\x9b20dabcec77f6289113e61893f7beefaeb1990a FAIR 18
\\xe531642e9bb5d027e9c20e03284287b97919a9a5 FAITH 8
\\x9d24364b97270961b2948734afe8d58832efd43a FAM 18
\\x06f65b8cfcb13a9fe37d836fe9708da38ecb29b2 FAME 18
\\x833e4c02c47b7e38f5b9a80b26eb07d23d1961f4 FAMILY 4
\\x4838903d6319e483ab82ae3f09a1ec36489a4193 FAMOUS 18
\\xd33d0eb1c0c0295c3a2409a9101dd511823bf217 FANS 18
\\xbf06035c31386d0d024895a97d0cc6ef6884854f FANTA 18
\\xaae3cf9968d26925bdb73ce3864e0084a20f4687 FAR 18
\\xa0246c9032bc3a600820415ae600c6388619a14d FARM 18
\\xc888a0ab4831a29e6ca432babf52e353d23db3c2 FAST 18
\\x2ec95b8eda549b79a1248335a39d299d00ed314c FAT 18
\\x7a9716685f852ee268feb86dffa562d214cc13db FBT 6
\\x4c6e796bbfe5eb37f9e3e0f66c009c8bf2a5f428 FCBTC 6
\\x74db83feba1574fec860413eb509d1ddfb1b730b FCD 18
\\xf4d861575ecc9493420a3f5a14f85b13f0b50eb3 FCL 18
\\x051aab38d46f6ebb551752831c7280b2b42164db FCN 8
\\x4cbdaea41e4c864477e1430a896d9e3bac11f593 FCO 0
\\xee4dc4c5ca843b83035d8e5159ac1bd1b4ebdff5 FCO 18
\\x94a2aaa374a8f2d52dad24330c8a0ec2934700ae FCOUSDB 18
\\xe1bad922f84b198a08292fb600319300ae32471b FCT 18
\\x0b66015bc42601d5986b540373b4e02d7383c7c1 FCX 9
\\x14cfc7aeaa468e8c789785c39e0b753915aeb426 FDD 18
\\x361887c1d1b73557018c47c8001711168128cf69 FDO 18
\\x212ceb1923f5ab3393ba4d1b8f14761179d07fba FDOGE 18
\\x23352036e911a22cfc692b5e2e196692658aded9 FDZ 18
\\x88a9a52f944315d5b4e917b9689e65445c401e83 FEAR 18
\\xf2df8458130f00c94bcde2dd3f288cf608187f87 FEAST 0
\\x389999216860ab8e0175387a0c90e5c52522c945 FEG 9
\\x956f47f50a910163d8bf957cf5846d573e7f87ca FEI 18
\\x539f3615c1dbafa0d008d87504667458acbd16fa FERA 18
\\xe09394f8ba642430ed448ca20f342ec7aa1ba2e1 FESS 18
\\xaea46a60368a7bd060eec7df8cba43b7ef41ad85 FET 18
\\xefcec6d87e3ce625c90865a49f2b7482963d73fe FETISH 6
\\x9fb83c0635de2e815fd1c21b3a292277540c2e8d FEVR 18
\\x60e46a4dd91d10506d8efa2caa266e7191fe7ea8 FEWGO 18
\\x1c1c14a6b5074905ce5d367b0a7e098b58ebfd47 FEX 8
\\xe8e06a5613dc86d459bc8fb989e173bb8b256072 FEY 18
\\x7e9d8f07a64e363e97a648904a89fb4cd5fb94cd FF 18
\\x59af0356cdebd1fa23ae5dadff9170bbfc31278c FF1 18
\\x22f098f08c4eda4be4ad6b4ba59866f3e98cef92 FFF 18
\\xabafa52d3d5a2c18a4c1ae24480d22b831fc0413 FFF 18
\\xca76baa777d749de63ca044853d22d56bc70bb47 FFYI 18
\\x509eece4793b46e4d81c0d4cb0a5a0c26c45e304 FGLD 18
\\xd9a8cfe21c232d485065cb62a96866799d4645f7 FGP 18
\\x0dd83b5013b2ad7094b1a7783d96ae0168f82621 FIC 18
\\x7e442206da059905050ba02be63cbb85c559eb04 FICO 18
\\x054f76beed60ab6dbeb23502178c52d6c5debe40 FIN 18
\\x48a3d9510f7c2aa61a285ccb4eaa5ba072692468 FINU 9
\\x3f8a2f7bcd70e7f7bdd3fbb079c11d073588dea2 FIRE 18
\\xf921ae2dac5fa128dc0f6168bf153ea0943d2d43 FIRE 8
\\x9903a4cd589da8e434f264deafc406836418578e FIRST 4
\\xef3a930e1ffffacd2fc13434ac81bd278b0ecc8d FIS 18
\\x2604e9f68259e609e8744fb67cc410d50fc9aa0f FISH 18
\\x30bcd71b8d21fe830e493b30e90befba29de9114 FISH 18
\\x3c72fca8523686fd9e5740b0826fa4bb376e0241 FIT 18
\\x903d78ca7d892e4518586d0b64f418bd4ca9a82d FK 18
\\x009e864923b49263c7f10d19b7f8ab7a9a5aad33 FKX 18
\\x16484d73ac08d2355f466d448d2b79d2039f6ebb FKX 18
\\xffed56a180f23fd32bc6a1d8d3c09c283ab594a8 FL 18
\\x7be5901f679bde8202a123c84c19bbce2cf3449b FLA 18
\\xcfb72ed3647cc8e7fa52e4f121ecdabefc305e7f FLAP 18
\\x20398ad62bb2d930646d45a6d4292baa0b860c1f FLASH 18
\\x5f0366c9962193fa774cdce9602195593b49f23c FLASH 18
\\x32c4adb9cf57f972bc375129de91c897b4f364f1 FLC 18
\\x40897c872214303b6f479a37e549ee1516b264a2 FLETA 18
\\xfcf8eda095e37a41e002e266daad7efc1579bc0a FLEX 18
\\xdbf5c7d8ac5007667617a15db2c1b1d616c9d302 FLEXETHBTC 18
\\xa774ffb4af6b0a91331c084e1aebae6ad535e6f3 FLEXUSD 18
\\xf04a8ac553fcedb5ba99a64799155826c136b0be FLIXX 18
\\x9235bda06b8807161b8fbb1e102cb654555b212f FLL 3
\\xb05097849bca421a3f51b249ba6cca4af4b97cb9 FLOAT 18
\\xb1f4b66104353ec63d8d59d3da42c0b4fb06e7f3 FLOKI 9
\\x049399a6b048d52971f7d122ae21a1532722285f FLOT 18
\\xc6e64729931f60d2c8bc70a27d66d9e0c28d1bf9 FLOW 18
\\x3a1bda28adb5b0a812a7cf10a1950c920f79bcd3 FLP 18
\\xb351da6ffebd5dddd1da037929fcf334d6b4a8d5 FLT 18
\\x60f63b76e2fc1649e57a3489162732a90acf59fe FLURRY 18
\\x469eda64aed3a3ad6f868c44564291aa415cb1d9 FLUX 18
\\x7645ddfeeceda57e41f92679c4acd83c56a81d14 FLUX 18
\\x6243d8cea23066d098a15582d81a598b4e8391f4 FLX 18
\\x85f6eb2bd5a062f5f8560be93fb7147e16c81472 FLY 4
\\x0f8794f66c7170c4f9163a8498371a747114f6c4 FMA 18
\\x947938339bf61c84669e303bc39c794d65a525d0 FME 18
\\x2991341d28eaea277785d20e1d878d478c7ba4c7 FMG 18
\\xde522a2778e4554707e6a8df36a4871ce9967bb5 FML 18
\\x99c6e435ec259a7e8d65e1955c9423db624ba54c FMT 18
\\xaa9d866666c2a3748d6b23ff69e63e52f08d9ab4 FMTA 18
\\xe6d2c3cb986db66818c14c7032db05d1d2a6ee74 FNB 8
\\x01fb4a9a68dd46852addfa98321def44289b7d8d FNCD 18
\\x04b7c9b88c1d33f0293449aa81b143272bcb2a8b FNCD 18
\\x07be1d613ec9a7965bbe98064e66e3b3d648da66 FNCD 18
\\x151a1eb5a1c989cdca7a48c07a1a5ae0ef80ea0d FNCD 18
\\x15887c0a2ee20e2b6f22a977b18bce47c5c5a2f2 FNCD 18
\\x2561df6c7ee681864c8a1245aa51a06a1e22a52b FNCD 18
\\x26157a6e4f84c49942e32484d4728aa6e05c6417 FNCD 18
\\x304b137223b0b240ba9e86d49aafc152a11b6dc2 FNCD 18
\\x3796878de516db33cf1cba0b7d333cd1db96434e FNCD 18
\\x3798e0b7453b2954d61cbc86bbea2d52292531bf FNCD 18
\\x536cb3bafccb17537ba581b0ac4355f7e19df395 FNCD 18
\\x6ec5a9d14d5206cad15b32e4bbe5e0b0be30ce14 FNCD 18
\\x84a9986f4d04e73bc9442245b8dfef7f77305637 FNCD 18
\\x8e0f05cd0e4e9dc28dbba761aac1f59337d1c455 FNCD 18
\\x910822f6844304afb34ae8d7db619cdfa498ad49 FNCD 18
\\x994e4008bcdc6cf08094fd08bb4418e70b6d686d FNCD 18
\\x9fd85ca57f20e7a39726e0e9cfad51f45bb2b0e3 FNCD 18
\\xa0bbe61f8705d0dde7fa46f78a148c913b260c35 FNCD 18
\\xb2db902091500cd04f41396d664dfa653517af68 FNCD 18
\\xb7f5497f2ae792d59608c9a046b141cd29f3b526 FNCD 18
\\xbfc615ab171d10a4e6498549cd3a46766feefe01 FNCD 18
\\xc3308318eca1eab76d2f4b52c310289ae526c8ca FNCD 18
\\xce6437ee4932cfba3ecaefb93a1929a379b13b24 FNCD 18
\\xcf97b4f961fa247cd60eb3cbf92a135fa2c9cc5d FNCD 18
\\xd2a3e62ca1658421a8a711bd1f8ed9d01780e6e6 FNCD 18
\\xd609609fdf3a6ea89d5ea981af5ce5c3c3daa44a FNCD 18
\\xe23a3a78b131553c0bab4323bba7f61f6950bdaa FNCD 18
\\xf0fd2500bd31a56cf1a3839e32fd28e11cda60b3 FNCD 18
\\xfb6f6467724b7cdc75a1977812d78b7467f69d77 FNCD 18
\\xfc382c9f9f65a66bbd3b35e10e7ac5a7abf11c8f FNCD 18
\\xbe6c01a67bd0160fe3e731555ad014895b225dfa FND 18
\\x00873432f09143556cc156d3cf971e4c8f68dace FND1066XT31D 0
\\xb5fe099475d3030dde498c3bb6f3854f762a48ad FNK 18
\\x3b78dc5736a49bd297dd2e4d62daa83d35a22749 FNSP 18
\\xdc5864ede28bd4405aa04d93e05a0531797d9d59 FNT 6
\\xef9cd7882c067686691b6ff49e650b43afbbcc6b FNX 18
\\x4946fcea7c692606e8908002e55a582af44ac121 FOAM 18
\\x4c2e59d098df7b6cbae0848d66de2f8a4889b9c3 FODL 18
\\x76851a93977bea9264c32255b6457882035c7501 FOGE 9
\\xa8580f3363684d76055bdc6660caefe8709744e1 FOL 18
\\xd084944d3c05cd115c09d072b9f44ba3e0e45921 FOLD 18
\\x05385abd2a95a8cd9b696f738aed73f1afbc12e0 FOMP 18
\\x4c25bdf026ea05f32713f00f73ca55857fbf6342 FONT 18
\\x1fcdce58959f536621d76f5b7ffb955baa5a672f FOR 18
\\x2c31b10ca416b82cec4c5e93c615ca851213d48d FORCE 18
\\x6807d7f7df53b7739f6438eabd40ab8c262c0aa8 FORCE 18
\\x81afa8aca19d5693883b0b1e10ae1ccaf2f42781 FOREVERUP 9
\\xa4e9584daa093cb1205e17ba737c3fd015748087 FOREX 18
\\x5bb1632fa0023e1aa76a1ae92b4635c8dba49fa2 FORK 18
\\x21381e026ad6d8266244f2a583b35f9e4413fa2a FORM 18
\\xb1ec548f296270bc96b8a1b3b3c8f3f04b494215 FORS 18
\\x77fba179c79de5b7653f68b5039af940ada60ce0 FORTH 18
\\x4270bb238f6dd8b1c3ca01f96ca65b2647c06d3c FOTA 18
\\xd9a1fe8b4d6de4f41c8a1b6ad3b6457916e546b4 FOTC 18
\\xf6ea0e60cee427b90aa36f327ee61d1d4cabc49f FOTO 18
\\x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0 FOUR 18
\\xc770eefad204b5180df6a14ee197d99d808ee52d FOX 18
\\xfbe878ced08132bd8396988671b450793c44bc12 FOXT 18
\\x31d457e7bcff5bc9a5ef86e6a5ea1db5b5c3bfb0 FOXX 18
\\xaf91e8afbe87642dc628786188a54b78580a4d76 FOY 18
\\x084da5a9c0e3f086532b98d8568432349b89d9df FPT 18
\\x9d5e6b92ba3f75589943372df82dbd3a8a802e80 FPT 18
\\xc626e0619ac79afea9281c8eb9b1a9f9d3fab532 FR 18
\\x853d955acef822db058eb8505911ed77f175b99e FRAX 18
\\xd8b8e1eca89da014e67fdbc2014eaa8e171079bf FRECNX 18
\\xd8e2b153e94daec5fe657a49ff59bb68fa67f126 FREDX 18
\\x2f141ce366a2462f02cea3d12cf93e4dca49e4fd FREE 18
\\xc2bd7a597391f31d2e36c2cb769fce0e5bd6d482 FREE 18
\\x44aa95fa2e84d3acdacdeffe16d9b5ed0498cc8b FREELINK 18
\\x29ceddcf0da3c1d8068a7dfbd0fb06c2e438ff70 FREL 18
\\xe5caef4af8780e59df925470b050fb23c43ca68c FRM 6
\\xf6832ea221ebfdc2363729721a146e6745354b14 FRMX 18
\\x29502fe4d233ef0b45c3647101fa1252ce0634bd FROGE 9
\\xf8c3527cc04340b208c854e985240c02f7b7793f FRONT 18
\\x229b239b7d00aa2a41c8b74b1db50a821f58d31a FRTS 8
\\x48df4e0296f908ceab0428a5182d19b31fc037d6 FRV 8
\\x6c972b70c533e2e045f333ee28b9ffb8d717be69 FRY 18
\\x1ed7ae1f0e2fa4276dd7ddc786334a3df81d50c0 FSBT 18
\\x0789dbae94fb18e5789b8e4489bcb7a1adb58622 FSCC 8
\\xd27af03cb73a29ee2f37194c70c4ee13b68fe8cb FSD 18
\\xd0352a019e9ab9d757776f532377aaebd36fd541 FSN 18
\\x0128e4fccf5ef86b030b28f0a8a029a3c5397a94 FSP 18
\\x0e192d382a36de7011f795acc4391cd302003606 FST 18
\\xfffffffff15abf397da76f1dcc1a1604f45126db FSW 18
\\xf0b0a13d908253d954ba031a425dfd54f94a2e3d FSXA 8
\\x1e71034c89dd191accb27dc35f18a3d8b6f91311 FTB 18
\\xb414f8ec2d14c64f37b1559cbe43746284514596 FTH 18
\\x943ed852dadb5c3938ecdc6883718df8142de4c8 FTI 18
\\x4e15361fd6b4bb609fa63c81a2be19d873717870 FTM 18
\\x2023dcf7c438c8c8c0b0f28dbae15520b4f3ee20 FTR 18
\\x50d1c9771902476076ecfc8b2a83ad6b9355a4c9 FTT 18
\\xd559f20296ff4895da39b5bd9add54b442596a61 FTX 18
\\x41875c2332b0877cdfaa699b641402b7d4642c32 FTXT 8
\\x8bda3517f899b95304a0598f86d312c2dce16451 FUCKVB 18
\\x2688213fedd489762a281a67ae4f2295d8e17ecc FUD 18
\\xea38eaa3c86c8f9b751533ba2e562deb9acded40 FUEL 18
\\x419d0d8bdd9af5e606ae2232ed285aff190e711b FUN 8
\\xd20bcbd56d9d551cac10a6bc2a83635bfb72f3f4 FUND 6
\\x30d862bbbef3b75f700d6ba7d323b95708eaafaa FUNDX 18
\\xbf5496122cf1bb778e0cbe5eab936f2be5fc0940 FUNDZ 18
\\x970b9bb2c0444f5e81e9d0efb84c8ccdcdcaf84d FUSE 18
\\x187d1018e8ef879be4194d6ed7590987463ead85 FUZE 18
\\x4bcddfcfa8cb923952bcf16644b36e5da5ca3184 FUZZY 12
\\x5343bdba6bc8bfa514e59a22787105e26ade1d1e FV3 18
\\x45080a6531d671ddff20db42f93792a489685e32 FVT 18
\\x35bd01fc9d6d5d81ca9e055db88dc49aa2c699a8 FWB 18
\\x7d91e637589ec3bb54d8213a9e92dc6e8d12da91 FWB[OLD] 4
\\xf151980e7a781481709e8195744bf2399fb3cba4 FWT 18
\\x8c15ef5b4b21951d50e53e4fbda8298ffad25057 FX 18
\\xed0e2041bfb5a426e5ed426a73765624e08bbb75 FX1 18
\\x4a57e687b9126435a9b19e4a802113e266adebde FXC 18
\\x8a40c222996f9f3431f63bf80244c36822060f12 FXF 18
\\x14ddda446688b73161aa1382f4e4343353af6fc8 FXP 8
\\x3432b6a60d23ca0dfca7761b7ab56459d9c964d0 FXS 18
\\x1829aa045e21e0d59580024a951db48096e01782 FXT 18
\\xf83bf320a4a3f4bf365c3114b6f19fc3f6b1228c FXT 6
\\x8f0921f30555624143d427b340b1156914882c10 FYP 18
\\x6f39297bc0c386355c77da3a0275c867b21b2454 FYY 8
\\x6bff2fe249601ed0db3a87424a2e923118bb0312 FYZ 18
\\x19a2cf2a1b2f76e52e2b0c572bd80a95b4fa8643 FYZNFT 18
\\xe5aee163513119f4f750376c718766b40fa37a5f FZ 18
\\x8720c8429b78df262360b0f39917a03f9b894746 FZY 8
\\xf05626e2a8c360fbfaab0f595c4c463b5b30391f Gaia 9
\\xd9b312d77bc7bed9b9cecb56636300bed4fe5ce9 GAINS 18
\\x9fda7ceec4c18008096c2fe2b85f05dc300f94d0 GAJ 18
\\x15d4c048f83bd7e37d49ea4c83a07267ec4203da GALA 8
\\x63f88a2298a5c4aee3c216aa6d926b184a4b2437 GAME 18
\\xd567b5f02b9073ad3a982a099a23bf019ff11d1c GAME 5
\\x1e1eed62f8d82ecfd8230b8d283d5b5c1ba81b55 GAMMA 18
\\x9570ec7ab05d61877ff7eb180f837c7c079c4844 GAP 18
\\xc58467b855401ef3ff8fda9216f236e29f0d6277 GASG 18
\\x24efe6b87bf1bfe9ea2ccb5a9d0a959c7172b364 GAT 0
\\x687174f8c49ceb7729d925c3a961507ea4ac7b28 GAT 18
\\x9d7630adf7ab0b0cb00af747db76864df0ec82e4 GATE 18
\\xf5c0e24aca5217bcbae662871cae1a86873f02db GATOR 18
\\xd1e06952708771f71e6dd18f06ee418f6e8fc564 GAZE 18
\\x539e890f31f8e3fc63d5a2f5756a785c20f5c85d GBC 18
\\xcb67be5c54eab9462967ee3c03c35bfffeb801cd GBI 18
\\x3e522d144814bd6149c1f3e0c6cd19d0941372ac GBK 18
\\x0cf58006b2400ebec3eb8c05b73170138a340563 GBP 18
\\x27ed129c298c5df130364083f491e2920e5a2f29 GBPU 18
\\xf85ef57fcdb36d628d063fa663e61e44d35ae661 GBPX 18
\\x30634241d3a7fbcea55f0ba7df42dfd8cdd8b2cd GBT 18
\\x486a72811ae65c4c814ba929d6da35497d21296f GC 18
\\x720c2c93f5f9a6b82226e84095558b10f399b0fa GC 18
\\x15c303b84045f67156acf6963954e4247b526717 GCBN 18
\\xfde43cd91f7f127dbbbc263394519669296396db GCG 18
\\x1e23fb8bd851cc2a341428c0b10e65d49987d744 GCOOOM 18
\\x37f6f8eb409deb9feaf032c109a72319f665c79d GCR 18
\\x6307b25a665efc992ec1c1bc403c38f3ddd7c661 GCR 4
\\x44a67c8570a61a28bafd0035042f2f0a73a64428 GCX 6
\\x515d7e9d75e2b76db60f8a051cd890eba23286bc GDAO 18
\\x301c755ba0fca00b1923768fffb3df7f4e63af31 GDC 18
\\xb5e88b229b18e748e3aa16a1c2bfefdfc8a5560d GDEFI 18
\\x874d4c9b980f1a13dd44cbcdb912e24ef0671ed0 GDR 18
\\xc67b12049c2d0cf6e476bc64c7f82fc6c63cffc5 GDT 8
\\x1b980e05943de3db3a459c72325338d327b6f5a9 GEAR 18
\\x6b9f031d718dded0d681c20cb754f97b3bb81b78 GEEQ 18
\\x30b1efb052205e6ca3c4888c3c50c5b339cc0602 GEM 18
\\x90f62b96a62801488b151ff3c65eac5fae21a962 GEM 18
\\xc7bba5b765581efb2cdd2679db5bea9ee79b201f GEM 18
\\xe74ac81b14021d0cfb835f269f48f25918c5cae6 GEMS 18
\\x543ff227f64aa17ea132bf9886cab5db55dcaddf GEN 18
\\x884181554dfa9e578d36379919c05c25dc4a15bb GENE 18
\\xf6ec87dfe1ed3a7256cc0c38e3c8139103e9af3b GENE 18
\\x1673a63aa0047294d75954226f3f2f98de77b16f GENES 18
\\x0f767338244418310342d49b02183715691d988f GENT 18
\\x147faf8de9d8d8daae129b187f0d02d819126750 GEO 18
\\xde5ea375ffbdc8b25a80fe13d631e8ba0ab4bb02 GERA 18
\\x3431f91b3a388115f00c5ba9fdb899851d005fb5 GERO 18
\\xd667d5a228cb09f190c4308cf89d39cab18a413c GES 18
\\xfb1e5f5e984c28ad7e228cdaa1f8a0919bb6a09b GES 18
\\x5972CED550248B17c9F674639D33E5446b6ad95A GESBNT 18
\\x8a854288a5976036a725879164ca3e91d30c6a1b GET 18
\\x9ad03c34aab604a9e0fde41dbf8e383e11c416c4 GETH 18
\\x03282f2d7834a97369cad58f888ada19eec46ab6 GEX 8
\\x544288176bb6d7d198302a2d18fad38442e69b25 GFARM 18
\\x831091da075665168e01898c6dac004a867f1e1b GFARM2 18
\\x3930e4ddb4d24ef2f4cb54c1f009a3694b708428 GFN 8
\\x919d3a363776b1ceec9352610c82dfaf80edc32d GFUN 18
\\x65ad6a2288b2dd23e466226397c8f5d1794e58fc GFX 18
\\xe4fa3c576c31696322e8d7165c5965d5a1f6a1a5 GFX 18
\\x7f969c4d388ca0ae39a4fddb1a6f89878ca2fbf8 GGC 18
\\xfa99a87b14b02e2240c79240c5a20f945ca5ef76 GGTK 18
\\x3b544e6fcf6c8dce9d8b45a4fdf21c9b02f9fda9 GHD 18
\\x4c327471C44B2dacD6E90525f9D629bd2e4f662C GHOST 18
\\x3bb86d867a9f3addf994cdadb210fa82f0d4157a GHOUL 18
\\x3f382dbd960e3a9bbceae22651e88158d2791550 GHST 18
\\xbe30f684d62c9f7883a75a29c162c332c0d98f23 GHT 18
\\x728f30fa2f100742c7949d1961804fa8e0b1387d GHX 18
\\x838d8e11b160dec88fe62bf0f743fb7000941e13 GIG 18
\\xae4f56f072c34c0a65b3ae3e4db797d831439d93 GIM 8
\\xf6537fe0df7f0cc0985cf00792cc98249e73efa0 GIV 18
\\xba8e5a4c64c1be42230910f7b39a6388f3d4297c GIVE 18
\\xbd434a09191d401da3283a5545bb3515d033b8c4 GIX 18
\\x4b7dfae2567181e54776337c840e142acb42aa1f gKIMCHI 18
\\x70fadbe1f2cccbaf98ac88fdcf94a0509a48e46d GL 8
\\x038a68ff68c393373ec894015816e33ad41bd564 GLCH 18
\\x172f20402afc807c8a5566bceed00831adb938ca GLDR 18
\\xF2BA4AFcBE22F0e626d67D8f31E96428706282e9 GLDR 18
\\x594207c791afd06a8d087d84d99d1da53ccbd45f GLDY 3
\\x0a0db74ef8b4480cc29b7d68647727feeb1ea4ec GLEX 18
\\x47fd85128312ee72aa0e0382a531a8f848b8b2cb GLF 18
\\x7dd9c5cba05e151c895fde1cf355c9a1d5da6429 GLM 18
\\xc0e6737a29de7a00e2f6011924eb257106cb082f GLO 18
\\x45f2ab0ca2116b2e1a70bf5e13293947b25d0272 GLOB 18
\\x0222be1f1b8413b2d7d76ebfc9e0285c1300692f GLOX 18
\\x9f9c8ec3534c3ce16f928381372bfbfbfb9f4d24 GLQ 18
\\x299948bc2ca54a5e814b19849327a6d9a0e7de1b GLY 18
\\xd70240dd62f4ea9a6a2416e0073d72139489d2aa GLYPH 18
\\xb13de094cc5cee6c4cc0a3737bf0290166d9ca5d GMAT 18
\\xa0008f510fe9ee696e7e320c9e5cbf61e27791ee GMB 18
\\xa6272359bc37f61af398071b65c8934aca744d53 GMC 18
\\x06141f60ee56c8ecc869f46568e2cb1e66baaf41 GMC24 18
\\x5dc74029509752f4ed9a609c2bb52216275e4c1d GMCI 8
\\x9eb6be354d88fd88795a04de899a57a77c545590 GME 18
\\xd9016a907dc0ecfa3ca425ab20b6b785b42f2373 GMEE 18
\\x7af89c8a06719271a96e62e290ea9ed192e73fc1 GMM 18
\\xcf81e6fdb8d7a743c3d4c3542a5356ff197ea1c0 GMNG 8
\\x7ddc52c4de30e94be3a6a0a2b259b2850f421989 GMT 18
\\x7aa46a51f717404d944051af3075bbcb49b2288b GNBT 18
\\x639ae8f3eed18690bf451229d14953a5a5627b72 GNBU 18
\\xf1a355cc5953a5c04130f221b6ccad13c3f82990 GNG 18
\\x6a5ce34290f6b1efa6987dbed1a139f170456e9a GNJI 9
\\x6810e776880c02933d47db1b9fc05908e5386b96 GNO 18
\\xd7eB9DB184DA9f099B84e2F86b1da1Fe6b305B3d GNOBNT 18
\\x7c5ff719a6c76fe643e9ecd0f11f146a2de05f14 GNSH 18
\\xa74476443119a942de498590fe1f2454d7d4ac0d GNT 18
\\x7b3296198f8a548edf89bdb16864da8f37b7d9cb GNTO 18
\\x6ec8a24cabdc339a06a172f8223ea557055adaa5 GNX 9
\\xb1f871ae9462f1b2c6826e88a7827e76f86751d4 GNY 18
\\x37611b28aca5673744161dc337128cfdd2657f69 GOAT 9
\\xccc8cb5229b0ac8069c51fd58367fd1e622afd97 GODS 18
\\x488e0369f9bc5c40c002ea7c1fe4fd01a198801c GOF 18
\\x9a96e767bfcce8e80370be00821ed5ba283d4a17 GOGO 18
\\x2f34dd3d46855277eee79a1d724c2249f770054b GOI 18
\\x083d41d6dd21ee938f0c055ca4fb12268df0efac GOL 4
\\x150b0b96933b75ce27af8b92441f8fb683bf9739 GOLD 18
\\x34d6a0f5c2f5d0082141fe73d93b9dd00ca7ce11 GOLD 18
\\x40d1f63b5d2048e67e9bedb1b4c2f1a9fb4b6817 GOLD 18
\\x61d40b844ea5b68c9c504fccdb05b68c2d7ae965 GOLD 18
\\x670f9d9a26d3d42030794ff035d35a67aa092ead GOLD 8
\\xdfc628a33c18e856cd1c59583cb5ace8db706f14 GOLD 9
\\xe081b71ed098fbe1108ea48e235b74f122272e68 GOLD 8
\\xf1b8762a7fa8c244e36f7234edf40cfae24394e3 GOLD 18
\\xcfe4f03c3afbb9857b29fc706180bf0044900d59 GOLDR 8
\\x355c665e101b9da58704a8fddb5feef210ef20c0 GOLDX 18
\\x996652b6c5c4b1154b25515db21b7bbadd40ddfa GOLF 18
\\xb8c6ad2586bb71d518c2aaf510efe91f82022f58 GOM 18
\\x48783486ddd7fa85eca6b0c4ae8920bc25dfbcd7 GOM2 0
\\xb0302d59237e6104c3f0d145996302f044797ca5 GOON 9
\\x5c484894fe1aaae696662943abc6cd7dd50807d3 GOOP 18
\\x423b5f62b328d0d6d44870f4eee316befa0b2df5 GOT 18
\\x613fa2a6e6daa70c659060e86ba1443d2679c9d7 GOT 18
\\xeeaa40b28a2d1b0b08f6f97bb1dd4b75316c6107 GOVI 18
\\x5cf501e64786444e025c5b24025f98399538ea5d GPO 18
\\xce593a29905951e8fc579bc092eca72577da575c GR 6
\\x6589fe1271a0f29346796c6baf0cdf619e25e58e GRAIN 18
\\xc8d2ab2a6fdebc25432e54941cb85b55b9f152db GRAP 18
\\x165440036ce972c5f8ebef667086707e48b2623e GRAPH 18
\\x15822a64c8cb27d7828c45e0aafc3e6c5decd172 GREED 18
\\x4fbb350052bca5417566f188eb2ebce5b19bc964 GRG 18
\\x12b19d3e2ccc14da04fae33e63652ce469b3f2fd GRID 12
\\x618acb9601cb54244f5780f09536db07d2c7acf4 GRIG 2
\\xe245286c988ebf5099287749453cf19273436c04 GRIG 2
\\x912D734C351425Ca35f22Ab7E16524147628E61c GRIGBNT 18
\\x1F6e51ce0533A075fDd602FbD6159763aCaB579b GRIGUSDB 18
\\x09e64c2b61a5f1690ee6fbed9baf5d6990f8dfd0 GRO 18
\\x3ec8798b81485a254928b70cda1cf0a2bb0b74d7 GRO 18
\\x64b986211c0cc675143f895c437b79c3cadf364a GRPFT 8
\\x15e4132dcd932e8990e794d1300011a472819cbd GRPL 18
\\xb83cd8d39462b761bb0092437d38b37812dd80a2 GRT 18
\\xc944e90c64b2c07662a292be6244bdf05cda44a7 GRT 18
\\x93b2fff814fcaeffb01406e80b4ecd89ca6a021b GRUMPY 9
\\xe0b9a2c3e9f40cf74b2c7f591b2b0cca055c3112 GS 18
\\x228ba514309ffdf03a81a205a6d040e429d6e80c GSC 18
\\xe530441f4f73bdb6dc2fa5af7c3fc5fd551ec838 GSE 4
\\x02f3a1819851d127bcd6f468253d7a498567eee0 GSFY 18
\\x7713bcda5106424ff6b0ae1e7fa05c3f4ae3ecb0 GSMT 8
\\x3afa1902b1f8a802abc18e5ad982d1bcd34afe22 GST 18
\\x67a9099f0008c35c61c00042cd9fb03684451097 GST 18
\\x0000000000b3f879cb30fe243b4dfee438691c04 GST2 2
\\xaac41ec512808d64625576eddd580e7ea40ef8b2 GSWAP 18
\\xe66747a101bff2dba3697199dcce5b743b454759 GT 18
\\xb70835d7822ebb9426b56543e391846c107bd32c GTC 18
\\xde30da39c46104798bb5aa3fe8b9e0e1f348163f GTC 18
\\xe138fda441fc31b36171122397a8a11d6cd2c479 GTC 0
\\x40f8b7a82b6355d26546d363ce9c12ce104cf0ce GTF 8
\\x87befc1d367190f2b9cbe9b689e0e5ca658e3b71 GTF 8
\\xc3771d47e2ab5a519e2917e61e23078d0c05ed7f GTH 18
\\xc5bbae50781be1669306b9e001eff57a2957b09d GTO 5
\\xc4938292EA2d3085fFFc11C46B87CA068a83BE01 GTOBNT 18
\\x01e0e2e61f554ecaaec0cc933e739ad90f24a86d GTON 18
\\x951a1070ac39851dcc07b302230a68f81929a5f1 GTS 8
\\x916885426255235da7a0bd90447986c00675f9ec GTX 18
\\xbdcfbf5c4d91abc0bc9709c7286d00063c0e6f22 GUESS 2
\\x4f5fa8f2d12e5eb780f6082dd656c565c48e0f24 GUM 18
\\x3684b581db1f94b721ee0022624329feb16ab653 GUNTHY 18
\\xf7b098298f7c69fc14610bf71d5e02c60792894c GUP 3
\\x056fd409e1d7a124bd7017459dfea2f387b6d5cd GUSD 2
\\x3242aebcdcf8de491004b1c98e6595e9827f6c17 GUSDT 18
\\xdae6f68da3bab6866742a7f4050366f6ac48760d GUSS 18
\\xa57392548087453dec6106e670bbfb849276b358 GVC 8
\\x81705082ef9f0d660f07be80093d46d826d48b25 GVE 18
\\x103c3a209da59d3e7c4a89307e66521e081cfdf0 GVT 18
\\x3adb04e127b9c0a5d36094125669d4603ac52a0c GVT 18
\\x31be30217989766215672e88ed449913e05bf0f5 GVY 18
\\x953e22945b416730bad05009af05b420e598e412 GXC 18
\\xbcfdaeb22ab6e10dfb99546e6240155edc1084f7 GXI 18
\\x28d3e409bb9bc58f1ca6e009f8fc78a1db85e6b7 GXT 18
\\xc08512927d12348f6620a698105e1baac6ecd911 GYEN 6
\\xbea98c05eeae2f3bc8c3565db7551eb738c8ccab GYSR 18
\\x4ac00f287f36a6aad655281fe1ca6798c9cb727b GZE 18
\\x85eba557c06c348395fd49e35d860f58a4f7c95a H3X 18
\\x43567eb78638a55bbe51e9f9fb5b2d7ad1f125aa HAC 4
\\xccac36423def6c19ee6b5679144e2976e309ca45 HACHIKO 18
\\x05fb86775fd5c16290f1e838f5caaa7342bd9a63 HAI 8
\\xd85ad783cc94bd04196a13dc042a3054a9b52210 HAKA 18
\\x0e29e5abbb5fd88e28b2d355774e73bd47de3bcd HAKKA 18
\\x0746b8cb6dd33134baf0ead66146f442c098b42e HALO 8
\\x9e7cb236e43c4bd042fe463df6a175d4479ee186 HALV 18
\\x48c1b2f3efa85fbafb2ab951bf4ba860a08cdbb7 HAND 0
\\x72e5390edb7727e3d4e3436451dadaff675dbcc0 HANU 12
\\xd9c2d319cd7e6177336b0a9c93c21cb48d84fb54 HAPI 18
\\x3079f61704e9efa2bcf1db412f735d8d4cfa26f4 HAPPY 18
\\x173b1e935e653d0098ae692a37177ff132834595 HART 1
\\x6f3009663470475f0749a6b76195375f95495fcb HATCH 18
\\x054bd236b42385c938357112f419dc5943687886 HATE 18
\\xb9725b33f2937d9b1bfc0aa090f78a7ae2575410 HATSU 18
\\xf2051511b9b121394fa75b8f7d4e7424337af687 HAUS 18
\\x3142dad33b1c6e1371d8627365f2ee2095eb6b37 HAUT 18
\\x7c2e5b7ec572199d3841f6a38f7d4868bd0798f1 HAVY 8
\\x877c7deb5eb1fc5faad30c71e3a6e39dc8b1519f HB 18
\\xfb9553afa2b5c19c5f8e5b8ee175fc01abd1555f HBC 18
\\xaac679720204aaa68b6c5000aa87d789a3ca0aa5 HBCH 18
\\x39d30828a163713d91c4eadbba2c497a9139ec5c HBDC 18
\\x0ace32f6e87ac1457a5385f8eb0208f37263b415 HBT 10
\\xdd6c68bb32462e01705011a4e2ad1a60740f217f HBT-HUBII 15
\\x0316eb71485b0ab14103307bf65a021042c6d380 HBTC 18
\\x88d39566dae88dc838652d9898f0aa6a8ff2819a HBURN 18
\\x6fe355c62c6faf6946ce888ffaba9fd12355ae27 HBX 18
\\x60a995cebcd44ca566ae22a9666ed28c67b598a1 HCORE 18
\\xd31a9d28d66a1f7e62b5565416ea14607690f788 HCUT 18
\\x6ce654ac973d326f89f0685e7459542641410ed9 HD 18
\\x74faab6986560fd1140508e4266d8a7b87274ffd HDAO 18
\\x58a3520d738b268c2353ecee518a1ad8e28e4ae5 HDI 2
\\x9ffc3bcde7b68c46a6dc34f0718009925c1867cb HDOT 18
\\xc4d5545392f5fc57eba3af8981815669bb7e2a48 HDP 4
\\xcafe27178308351a12fffffdeb161d9d730da082 HDS 18
\\xd0cb75298d5c1e3b277e3cd95c56b3caa81a99d3 HDT 8
\\xca176a8ac234446b2561293db7543e0cdadc6627 HDW 4
\\x6725363e565baa1dda45d492810298ae0b25c4ac HEAD 18
\\xf6fd82dedbbe0ffadb5e1ecc2a283ab52b9ed2b0 HEAL 18
\\x3363d570f6df3c74d486bb8785d3ebfb9e2347d3 HEDG 18
\\xf1290473e210b2108a85237fbcd7b6eb42cc654f HEDG 18
\\x1fa3bc860bf823d792f04f662f3aa3a500a68814 HEDGE 18
\\x1d9cd2180fd4e9771fca28681034d02390b14e4c HEDGESHIT 18
\\x584bc13c7d411c00c01a62e8019472de68768430 HEGIC 18
\\xbbc2045d335cb224228f1850b29173d9d7d7b989 HELP 18
\\x491c9a23db85623eed455a8efdd6aba9b911c5df HER 18
\\x04a020325024f130988782bd5276e53595e8d16e HERB 8
\\x2e91e3e54c5788e9fdd6a181497fdcea1de1bcc1 HERC 18
\\x2b591e99afe9f32eaa6214f7b7629768c40eeb39 HEX 8
\\xeef9f339514298c6a857efcfc1a762af84438dee HEZ 18
\\x9afb950948c2370975fb91a441f36fdc02737cd4 HFIL 18
\\x1bc9f31c327ce04b6fa9d56fd84c14cc0b0a4f47 HG 18
\\x5b5a353fc217ebef77bc7686ea05a003ebdb7d1a HGC 18
\\x7968bc6a03017ea2de509aaa816f163db0f35148 HGET 6
\\x40c6f861a08f97dfbc3c0931485bff4921975a56 HGH 18
\\x0c93b616933b0cd03b201b29cd8a22681dd9e0d9 HGOLD 8
\\xba2184520a1cc49a6159c57e61e1844e085615b6 HGT 8
\\x3fa729b4548becbad4eab6ef18413470e6d5324c HH 18
\\xb14ebf566511b9e6002bb286016ab2497b9b9c9d HID 18
\\x71ab77b7dbb4fa7e017bc15090b2163221420282 HIGH 18
\\xbd0a4bf098261673d5e6e600fd87ddcd756e6764 HINA 9
\\x6ce21e5f5383c95691d243879a86a6025e0870c0 HINT 18
\\x81313f7c5c9c824236c9e4cba3ac4b049986e756 HIPPO 18
\\x74b1af114274335598da72f5c6ed7b954a016eed HIT 18
\\x7995ab36bb307afa6a683c24a25d90dc1ea83566 HIT 6
\\xc761d1ccb38a94703675d2cdb15f7f1b3dcff7b7 HIZ 18
\\x6dc59f089dfd2312f666c46893296f79b24d559b HKINU 18
\\xba7b2c094c1a4757f9534a37d296a3bed7f544dc HLAND 18
\\x58c69ed6cd6887c0225d1fccecc055127843c69b HLC 9
\\xd520ddbdf81323f4b9a0ea0adbb692ebef6ce280 HLD 18
\\x308564dc5217c39386f5eae96545159e1d396661 HLP 18
\\x2c000c0093de75a8fa2fccd3d97b314e20b431c3 HLTC 18
\\x8f8e787989bc652eea01a6c88a19f0f379bdf4fd HLX 5
\\x77e31d674a46d356b2e65892bde7758bb26238ca HMNC 9
\\xcbcc0f036ed4788f63fc0fee32873d6a7487b908 HMQ 8
\\xb1a30851e3f7d841b231b086479608e17198363a HMR 18
\\x9c197c4b58527faaab67cb35e3145166b23d242e HNB 18
\\xa771b49064da011df051052848477f18dba1d2ac HNS 6
\\x135093731f61dd5cbfd7744751bf3ced3aaa69b1 HNTC 18
\\xc3589f56b6869824804a5ea29f2c9886af1b0fce HNY 18
\\x239dc02a28a0774738463e06245544a72745d5c5 HNZO 9
\\xe2a083397521968eb05585932750634bed4b7d56 HODL 9
\\xa56ed2632e443db5f93e73c89df399a081408cc4 HOE 18
\\xfad45e47083e4607302aa43c65fb3106f1cd7607 HOGE 9
\\xc40af1e4fecfa05ce6bab79dcd8b373d2e436c4e HOKK 18
\\x03fb52d4ee633ab0d06c833e32efdd8d388f3e6a HOLE 18
\\x39eae99e685906ff1c11a962a743440d0a1a6e09 HOLY 18
\\xca208bfd69ae6d2667f1fcbe681bae12767c0078 HOMI 0
\\xef7a985e4ff9b5dccd6eddf58577486887288711 HOMT 15
\\xd241d7b5cb0ef9fc79d9e4eb9e21f5e209f52f7d HOO 8
\\xf5581dfefd8fb0e4aec526be659cfab1f8c781da HOPR 18
\\x43a96962254855f16b925556f9e97be436a43448 HORD 18
\\x5b0751713b2527d7f002c0c4e2a37e1219610a6b HORSE 18
\\x6c6ee5e31d828de241282b9606c8e98ea48526e2 HOT 18
\\x9af839687f6c94542ac5ece2e317daae355493a1 HOT 18
\\x4297394c20800e8a38a619a243e9bbe7681ff24e HOTCROSS 18
\\xf8a2ed21fea517665b35ac824387bf9b41c71919 HOTEL 18
\\x19810559df63f19cfe88923313250550edadb743 HOUSE 0
\\x5a4b14aea23a605abc463f04a6b8aaf52dd3e7c6 HP 18
\\xab55bdef7057b76482914e79f037999f4ebb6bf1 HP 8
\\xf83d7ff2e4b43ebad2fa534e621e31076f4d254c HPAY 18
\\x38c6a68304cdefb9bec48bbfaaba5c5b47818bb2 HPB 18
\\xff744f2315c9d61d825b581c973576055c3da07e HPLUS 18
\\x8cd024cc8f73f5cd132005d1584403877b318c9d HPOT 18
\\x3e1d5a855ad9d948373ae68e4fe1f094612b1322 HQT 18
\\x1b957dc4aefeed3b4a2351a6a6d5cbfbba0cecfa HQX 18
\\xc617d51e3a1f621da8ae67b2f652d6ac02eb8d95 HRD 18
\\x2bba3cf6de6058cc1b4457ce00deb359e2703d7f HSC 18
\\x365542df3c8c9d096c5f0de24a0d8cf33c19c8fd HSN 8
\\x6f259637dcd74c767781e37bc6133cd6a68aa161 HT 18
\\x6be61833fc4381990e82d7d4a9f4c9b3f67ea941 HTB 18
\\x86eb791495be777db763142a2c547d1112554fb8 HTBEAR 18
\\x0d5e2681d2aadc91f7da4146740180a2190f0c79 HTBULL 18
\\xbff89386d062c6040ed1955e180c87dd00bb71af HTG 18
\\x4b4b1d389d4f4e082b30f75c6319c0ce5acbd619 HTN 18
\\xdea67845a51e24461d5fed8084e69b426af3d5db HTRE 18
\\x46ae264bf6d9dc6dd84c31064551f961c67a755c HTX 18
\\x8e9a29e7ed21db7c5b2e1cd75e676da0236dfb45 HUB 18
\\xba358b6f5b4c0215650444b8c30d870b55050d2d HUB 18
\\xdcfe18bc46f5a0cd0d3af0c2155d2bcb5ade2fc5 HUE 4
\\x174afe7a032b5a33a3270a9f6c30746e25708532 HUM 18
\\x9aab071b4129b083b01cb5a0cb513ce7eca26fa5 HUNT 18
\\xcdb7ecfd3403eef3882c65b761ef9b5054890a47 HUR 18
\\xdf574c24545e5ffecb9a659c229253d4111d87e1 HUSD 8
\\xd5281bb2d1ee94866b03a0fccdd4e900c8cb5091 HUSKY 9
\\x56be94d29e1125d2d61d06629c1b251d72c1b3b3 HUSL 18
\\xa2881f7f441267042f9778ffa0d4f834693426be HUSL 18
\\xd487892bb4c57edbe7ab401d9fe801c8fe6473f5 HVE2 18
\\xc0eb85285d83217cd7c891702bcbc0fc401e2d9d HVN 8
\\x0e1fe60bc4ac0e3102343752ae7e49d01d444c0b HXN 18
\\x4bd70556ae3f8a6ec6c4080a0c327b24325438f3 HXRO 18
\\xf3a2ace8e48751c965ea0a1d064303aca53842b9 HXY 8
\\x9b53e429b0badd98ef7f01f03702986c516a5715 HY 18
\\x20bcae16a8ba95d8e8363e265de4ecfc36ec5cd9 HYBN 18
\\x946112efab61c3636cbd52de2e1392d7a75a6f01 HYDRO 18
\\xebbdf302c940c6bfd49c6b165f457fdb324649bc HYDRO 18
\\xe99a894a69d7c2e3c92e61b64c505a6a57d2bc07 HYN 18
\\x2630997aab62fa1030a8b975e1aa2dc573b18a13 HYPE 18
\\x4ff7c227e1e7bd59351de8635381c379750a8040 HYPE 18
\\x610c67be018a5c5bdc70acd8dc19688a11421073 HYPE 18
\\xc9dfcd0a1dd2d7bb6fd2ef91a16a6a1c4e9846dd HYPEBET 18
\\xd794dd1cada4cf79c9eebaab8327a1b0507ef7d4 HYVE 18
\\x78a5b382b9a83fe042a4f7eb2399d563fda931c3 HZT 2
\\x560cc7de81b2a594f6518713cbe122bcf297a6e8 i7 18
\\x7cf74238d48ce383db00a1efff8da99303552cb0 I9C 8
\\x60a16b9efd33bb45c18833aed45ca66045b3b714 I9X 8
\\x8A8079c7149B8A1611e5C5d978DCA3bE16545F83 iADA 18
\\x40eb746dee876ac1e78697b7ca85142d178a1fc8 IAG 18
\\x1ee1c46251b811075fd480fb64197f4e49c37ee0 IAI 18
\\xFAFdF0C4c1CB09d430Bf88c75D88BB46DAe09967 ibAUD 18
\\xc4e15973e6ff2a35cc804c2cf9d2a1b817a8b40f ibBTC 18
\\xf6E9b246319ea30e8C2fA2d1540AAEBF6f9E1B89 iBCH 18
\\x1CC481cE2BD2EC7Bf67d1Be64d4878b16078F309 ibCHF 18
\\xee8389d235e092b2945fe363e97cdbed121a0439 ibDAIv2 8
\\x67b66c99d3eb37fa76aa3ed1ff33e8e39f0b9c7a ibETHv1 18
\\xeea3311250fe4c3268f8e684f7c87a82ff183ec1 ibETHv2 8
\\x96e61422b6a9ba0e068b6c5add4ffabc6a4aae27 ibEUR 18
\\x69681f8fde45345C3870BCD5eaf4A05a60E7D227 ibGBP 18
\\x5555f75e3d5278082200Fb451D1b6bA946D8e13b ibJPY 18
\\x95dFDC8161832e4fF7816aC4B6367CE201538253 ibKRW 18
\\x7c8f07ac5b0a2876ee582a661d53de2d0bbad96f iBNB 18
\\xAFD870F32CE54EfdBF677466B612bf8ad164454B iBNB 18
\\x7d14b842630cbc2530cb288109e5719e0c4d67d7 IBP 18
\\x2b143041a6f8be9dcc66e9110178a264a223a3bd iBTC 18
\\xd6014ea05bde904448b743833ddf07c3c7837481 iBTC 18
\\x2590f1fd14ef8bb0a46c7a889c4cbc146510f9c3 IBTCV 18
\\x08bd64bfc832f1c2b3e07e634934453ba7fa2db2 ibUSDCv2 8
\\x020edc614187f9937a1efeee007656c6356fb13a ibUSDTv2 8
\\x627e2ee3dbda546e168eaaff25a2c5212e4a95a0 IBVOL 18
\\x6a68de599e8e0b1856e322ce5bd11c5c3c79712b IBY 18
\\x81d66D255D47662b6B16f3C5bbfBb15283B05BC2 ibZAR 18
\\xf16e81dce15b08f326220742020379b855b87df9 ICE 18
\\x336213e1DDFC69f4701Fc3F86F4ef4A160c1159d iCEX 18
\\xf8483e2d6560585c02d46bf7b3186bf154a96166 ICH 8
\\x903bef1736cddf2a537176cf3c64579c3867a881 ICHI 9
\\xffcf5f9feb7e14833331b6687755d1622399316c ICICB 0
\\x793e2602a8396468f3ce6e34c1b6c6fd6d985bad ICK 18
\\x888666ca69e0f178ded6d75b5726cee99a87d698 ICN 18
\\xb3e2cb7cccfe139f8ff84013823bf22da6b6390a ICNQ 18
\\xb5a5f22694352c15b00323844ad545abb2b11028 ICX 18
\\xebd9d99a3982d547c5bb4db7e3b1f9f14b67eb83 ID 18
\\xCB98f42221b2C251A4E74A1609722eE09f0cc08E iDASH 18
\\x5d3a4f62124498092ce665f865e0b38ff6f5fbea IDEA 18
\\x14d10003807ac60d07bb0ba82caeac8d2087c157 iDEFI 18
\\xb705268213d593b8fd88d3fdeff93aff5cbdcfae IDEX 18
\\x5136c98a80811c3f46bdda8b5c4555cfd9f812f0 IDH 6
\\x61fd1c62551850d0c04c76fce614cbced0094498 IDK 8
\\x6febd6be8fa45be6a5eeb61a17c82d33b9addd41 IDL 18
\\x875773784af8135ea0ef43b5a374aad105c5d39e IDLE 18
\\xa14ea0e11121e6e951e87c66afe460a00bcd6a16 IDLEDAISAFE 18
\\x3fe7940616e5bc47b0775a0dccf6237893353bb4 IDLEDAIYIELD 18
\\xf52cdcd458bf455aed77751743180ec4a595fd3f IDLESUSDYIELD 18
\\xc278041fdd8249fe4c1aad1193876857eea3d68c IDLETUSDYIELD 18
\\x3391bc034f2935ef0e1e41619445f998b2680d35 IDLEUSDCSAFE 18
\\x5274891bec421b39d23760c04a6755ecb444797c IDLEUSDCYIELD 18
\\x28fac5334c9f7262b3a3fe707e250e01053e07b5 IDLEUSDTSAFE 18
\\xf34842d05a1c888ca02769a633df37177415c2f8 IDLEUSDTYIELD 18
\\x8c81121b15197fa0eeaee1dc75533419dcfd3151 IDLEWBTCYIELD 18
\\x46a97629c9c1f58de6ec18c7f536e7e6d6a6ecde IDOT 18
\\x998ffe1e43facffb941dc337dd0468d52ba5b48a IDRT 2
\\x92ec47df1aa167806dfa4916d9cfb99da6953b8f IDV 18
\\xcc13fc627effd6e35d2d2706ea3c4d7396c610ea IDXM 8
\\xf4eebdd0704021ef2a6bbe993fdf93030cd784b4 iEOS 18
\\xd50c1746D835d2770dDA3703B69187bFfeB14126 iETC 18
\\xa9859874e1743a32409f75bb11549892138bba1e iETH 18
\\xc71d8baaa436aa7e42da1f40bec48f11ab3c9e4a IETH 8
\\xd4fb1706ae549febec06bb7175b08010dd1b0c2e iETH 18
\\x3a707d56d538e85b783e8ce12b346e7fb6511f90 IETHV 18
\\x1571ed0bed4d987fe2b498ddbae7dfa19519f651 IFARM 18
\\xa891cf72aeda692570928efe1a832342e9783cdc IFEX 18
\\xb2de3ffdb3409f607c82b1cd777d34f489e9dba4 IFNFT 18
\\x2731d151cbdf84a8a4c6d9d0bae74012db51e428 IFT 18
\\x04b5e13000c6e9a3255dc057091f3e3eeee7b0f0 IFUND 18
\\xc962ad021a69d457564e985738c719ae3f79b707 IFX24 18
\\x8a88f04e0c905054d2f33b26bb3a46d7091a039a IG 18
\\xb1a5b7e9a268742b9b5d2455ffcf43babc6929ba IGA 18
\\x8ffe40a3d0f80c0ce6b203d5cdc1a6a86d9acaea IGG 6
\\xde9d41a01bb11a9f41e709242824e54c3917084e IGN 9
\\xaf1250fa68d7decd34fd75de8742bc03b29bd58e IHF 18
\\xeda8b016efa8b1161208cf041cd86972eee0f31e IHT 18
\\xb6f43025b29196af2dddd69b0a58afba079cd600 IIC 18
\\xc7ff1e126cc81e816915ff48c940ed9d4e6d05d6 IJC 18
\\x6a625ddb2e2a2de0257c5129364dd80bb4afa3b9 IKOMP 18
\\x2d7aC061fc3db53c39fe1607fB8cec1B2C162B01 iLINK 18
\\xf784682c82526e245f50975190ef0fff4e4fc077 ILK 8
\\x79da1431150C9b82D2E5dfc1C68B33216846851e iLTC 18
\\x767fe9edc9e0df98e07454847909b5e959d7ca0e ILV 18
\\x17d8cbb6bce8cee970a4027d1198f6700a7a6c24 IMBTC 18
\\x3212b29e33587a00fb1c83346f5dbfa69a458923 imBTC 8
\\xeaf60da0199be2f62005225248705de774582328 iMKR 18
\\x48ff53777f747cfb694101222a944de070c15d36 IMP 7
\\xfac3f6391c86004289a186ae0198180fcb4d49ab IMPACT 18
\\x696c1de4e7f475d5231372c47a627e4cd6ce555a IMPULSE 18
\\x3c4030839708a20fd2fb379cf11810dde4888d93 IMS 18
\\x13119e34e140097a507b07a5564bde1bc375d9e6 IMT 18
\\x30647a72dc82d7fbb1123ea74716ab8a317eac19 IMUSD 18
\\x7b35ce522cb72e4077baeb96cb923a5529764a00 IMX 18
\\xf57e7e7c23978c3caec3c3548e3d615c346e79ff IMX 18
\\xca75c43f8c9afd356c585ce7aa4490b48a95c466 INARI 9
\\x17aa18a4b64a55abed7fa543f2ba4e91f2dce482 INB 18
\\xf8e386eda857484f5a12e4b5daa9984e06e73705 IND 18
\\x0954906da0bf32d5479e25f46056d22f08464cab INDEX 18
\\x86e6a4f512b1290c043970b04e0b570d4fc98291 INE 18
\\xa2d77f8353cb2afd709aba4a967257511ecff716 INEX 8
\\x159751323a9e0415dd3d6d42a1212fe9f4a0848c INFI 18
\\x193408ca0576b73156ed42a2ea7d6fd3f6507162 INFS 1
\\x83d60e7aed59c6829fb251229061a55f35432c4d INFT 6
\\x24ddff6d8b8a42d835af3b440de91f3386554aa4 ING 18
\\xe28b3b32b6c345a34ff64674606124dd5aceca30 INJ 18
\\xb67718b98d52318240c52e71a898335da4a28c42 INNBC 6
\\x0cc9fccff81252f4bd8c5c6b359b14ae2ed851cf INNBCL 6
\\xc9859fccc876e6b4b3c749c5d29ea04f48acb74f INO 0
\\x5b2e4a700dfbc560061e957edec8f6eeeb74a320 INS 10
\\x6f40d4a6237c257fff2db00fa0510deeecd303eb INST 18
\\xc72fe8e3dd5bef0f9f31f259399f301272ef2a2d INSTAR 18
\\x544c42fbb96b39b21df61cf322b5edc285ee7429 INSUR 18
\\x89c0b027bd7cc2d17854b06f8322e29451192ce3 INTETH 18
\\xba8ea15b647f54d9ff849670fcaacf35df21a457 INTRATIO 18
\\x7533d63a2558965472398ef473908e1320520ae2 INTX 9
\\xf32aa187d5bc16a2c02a6afb7df1459d0d107574 INU 18
\\x41d5d79431a913c4ae7d69a668ecdfe5ff9dfb68 INV 18
\\xece83617db208ad255ad4f45daf81e25137535bb INV 8
\\xdac4ae188ace3c8985765edc6c9b4739d4845ddc INVE 18
\\x4485561Db76614Ff727f8E0a3Ea95690b8b16022 INVOX 18
\\x018d7d179350f1bb9853d04982820e37cce13a92 INX 8
\\x84fe25f3921f3426395c883707950d0c00367576 INX 18
\\xa8006c4ca56f24d6836727d106349320db7fef82 INXT 8
\\x1e4e46b7bf03ece908c88ff7cc4975560010893a IOEN 18
\\x1c4b7d0e1885bd7667af3378e0c538f74e712006 IOG 18
\\x8b3870df408ff4d7c3a26df852d41034eda11d81 IOI 6
\\xbc647aad10114b89564c0a7aabe542bd0cf2c5af IONC 18
\\x02d3a27ac3f55d5d91fb0f52759842696a864217 IONX 18
\\xf6923f7d96fc22c4b8010a865e41cf7edfb6379c IOOX 8
\\xfa1a856cfa3409cfa145fa4e20eb270df3eb21ab IOST 18
\\x6fb3e0a217407efff7ca062d46c26e5d60a14d69 IOTX 18
\\x0e69d0a2bbb30abcb7e5cfea0e4fde19c00a8d47 IOV 8
\\x555d051538c7a13712f1f590fa6b4c176ca4529f IOWN 18
\\x36ed7baad9a571b5dad55d096c0ed902188d6d3c IPAD 18
\\x622cd54deb2bb7a051515192417109bcf3fe098f IPC 8
\\x64cdf819d3e75ac8ec217b3496d7ce167be42e80 IPL 18
\\x8feef860e9fa9326ff9d7e0058f637be8579cc29 IPM 18
\\x579cea1889991f68acc35ff5c3dd0621ff29b0c9 IQ 18
\\x0db8d8b76bc361bacbb72e2c491e06085a97ab31 IQN 18
\\x68a9d92fe19399feebed6a9a0980a7ea7638074c IQQ 18
\\x51ee82641ac238bde34b9859f98f5f311d6e4954 IQT 8
\\xade7b5f4a421d81ddad8ce86f77a0efe8921e9cc IRA 8
\\x8e12bd795d2608f90440c84dddd2d985240696d5 ISAL 7
\\xf2354f740f31704820f6fcfba70b9da065459b62 ISDT 18
\\x42726d074bba68ccc15200442b72afa2d495a783 ISIKC 4
\\x20a68f9e34076b2dc15ce726d7eebb83b694702d ISLA 18
\\x697ef32b4a3f5a4c39de1cb7563f24ca7bfc5947 ISLA 18
\\x1681bcb589b3cfcf0c0616b0ce9b19b240643dc1 ISLE 9
\\x3db1678170418d1014012f855e2dda492f35c289 ISP 18
\\xc8807f0f5ba3fa45ffbdc66928d71c5289249014 ISP 18
\\xb16d3ed603d62b125c6bd45519eda40829549489 ISR 18
\\x7a4d70528c0b8d376c206b0fb2c9db1d26315c2d IST 18
\\x3b4f7cb9e60362a49dd04eb0091a374d340e3efd ITAM 18
\\x5e6b6d9abad9093fdc861ea1600eba1b355cd940 ITC 18
\\x65b678936c489a2639036755aa2107ec09569198 ITEN 18
\\xf88b137cfa667065955abd17525e89edcf4d6426 ITG 18
\\xd502f487e1841fdc805130e13eae80c61186bc98 ITGR 18
\\x122a86b5dff2d085afb49600b4cd7375d0d94a5f ITL 8
\\xC5807183a9661A533CB08CbC297594a0B864dc12 iTRX 18
\\xcd8d927f2cb03d2efb7f96ceb66ec4976843e012 iTRX 18
\\xc32cc5b70bee4bd54aa62b9aefb91346d18821c4 ITS 18
\\x0aef06dcccc531e581f0440059e6ffcc206039ee ITT 8
\\xd36a0e7b741542208ae0fbb35453c893d0136625 IUT 0
\\xa91464abd4625a23ab719e3f0fce84dadd54e546 IVI 18
\\x829067d40a8d1233927891d9b3381d6aecee1e80 IVY 18
\\x53f0c9f1b6e283a59bcd672e80e2222b97e534cb IX 18
\\x4AdF728E2Df4945082cDD6053869f51278fae196 iXMR 18
\\x27269b3e45A4D3E79A3D6BFeE0C8fB13d0D711A6 iXRP 18
\\x73d7c860998ca3c01ce8c808f5577d94d545d1b4 IXS 18
\\xfca47962d45adfdfd1ab2d972315db4ce7ccf094 IXT 8
\\x8deef89058090ac5655A99EEB451a4f9183D1678 iXTZ 18
\\xc2992b2c22238f296c2f429ee2f7afb462ed1750 iXTZ 18
\\x5d762f76b9e91f71cc4f94391bdfe6333db8519c IYF 18
\\x6944d3e38973c4831da24e954fbd790c7e688bdd IZE 18
\\xab5c04bbe42667610a2da07ac98ea9fa6e4a9514 IZER 8
\\xdf59c8ba19b4d1437d80836b45f1319d9a429eed IZI 4
\\x0d262e5dc4a06a0f1c90ce79c7a60c09dfc884e4 J8T 8
\\x4e12eb8e506ccd1427f6b8f7faa3e88fb698eb28 JACK 18
\\x56687cf29ac9751ce2a4e764680b6ad7e668942e JAMM 4
\\xaf80e6612d9c2e883122e7f2292ee6c34176ad4f JAN 18
\\xa249de6948022783765fee4850d7b85e43118fcc JAR 18
\\x7420b4b9a0110cdc71fb720908340c03f9bc03ec JASMY 18
\\x884e3902c4d5cfa86de4ace7a96aa91ebc25c0ff JBX 18
\\xea7aa1edd21735a5ab05ee3e90869016191e274e JCC 18
\\x53dfea0a8cc2a2a2e425e1c174bc162999723ea0 JCHF 18
\\x2fe39f22eac6d3c1c86dd9d143640ebb94609fce JDC 18
\\x940f0c2e9af3144dc57abcead1ed8dd635dcafec JEDI 9
\\x939a7a577d93ad29b64c1595b1284ce660a479b9 JEJUDOGE 18
\\x21cf09bc065082478dcc9ccb5fd215a978dc8d86 JEM 18
\\x8727c112c712c4a03371ac87a74dd6ab104af768 JET 18
\\x0f17bc9a994b87b5225cfb6a2cd4d667adb4f20b JEUR 18
\\x940bdcb99a0ee5fb008a606778ae87ed9789f257 JFIN 18
\\x7409856cae628f5d578b285b45669b36e7005283 JGBP 18
\\x73374ea518de7addd4c2b624c0e8b113955ee041 JGN 18
\\x94939d55000b31b7808904a80aa7bab05ef59ed6 JIAOZI 18
\\xf07376f0e3bff57116ed62e5e8e2bb1341e4b4c2 JIC 18
\\x3f4cd830543db25254ec0f05eac058d4d6e86166 JINDOGE 18
\\xc074d1425cff85f9559c319f5ae0d458a963e2c0 JINU 18
\\x5661c46e366570360064ae1a50a17a7a1a8f3236 JLL 18
\\x4b6628c5396e0740630e3c597cc47f2185002e43 JMC 18
\\xda022ca91df99413e8cb0caab4d1cba4e9018bea JMT 18
\\x21d5a14e625d767ce6b7a167491c2d18e0785fda JNB 18
\\xa5fd1a791c4dfcaacc963d4f73c6ae5824149ea7 JNT 18
\\xcd899e343a192ac3ce6530cE0ED9009275a2c701 JNTR 18
\\x1368452bfb5cd127971c8de22c58fbe89d35a6bf JNTRE 18
\\xdfbc9050f5b01df53512dcc39b4f2b2bbacd517a JOB 8
\\x347c099f110ca6761779329d2879957b606b6ace JOINT 18
\\x174897edd3ce414084a009d22db31c7b7826400d JOON 4
\\x05f9abf4b0c5661e83b92c056a8791d5ccd7ca52 JOOS 18
\\xdde12a12a6f67156e0da672be05c374e1b0a3e57 JOY 6
\\xfb725bab323927cfb20fb82ba9a1975f7d24705b JOY 18
\\x2370f9d504c7a6e775bf6e14b3f12846b594cd53 JPYC 18
\\x558a069a3a1a1e72398607b9e3577fce1c67ea63 JPYQ 18
\\x081d3ccbf23b0edcae2bf05af5f6ecee12c4cdcf JPYT 18
\\x8f81d11f95461872c7d803cd6ffecf3163a8fd4f JPYT 18
\\x638155f4bd8f85d401da32498d8866ee39a150b8 JREX 8
\\x8a9c67fee641579deba04928c4bc45f66e26343a JRT 18
\\x4827e558e642861Cd7a1C8f011b2B4661F8d51fa JRTUSDB 18
\\x5046e860ff274fb8c66106b0ffb8155849fb0787 JS 8
\\x1426cc6d52d1b14e2b3b1cb04d57ea42b39c4c7c JSHIBA 9
\\xeb7355c2f217b3485a591332fe13c8c5a76a581d JT 18
\\xe9ed705842bd7219a963e452c41be85ce5cff884 JTT 18
\\x2cae31d2ca104a951654456f46168bc9f88fdc65 JUI 18
\\x889efb523cc39590b8483eb9491890ac71407f64 JUICE 18
\\x5580ab97f226c324c671746a1787524aef42e415 JUL 18
\\xe6710e0cda178f3d921f456902707b0d4c4a332b JULIEN 4
\\x4b1e80cac91e2216eeb63e29b957eb91ae9c2be8 JUP 18
\\x14ca41eecd7d81d5d13098586c0d2314eba285be JUS 18
\\x8275ebf521dc217aa79c88132017a5bcef001dd9 JWL 18
\\xb9d99c33ea2d86ec5ec6b8a4dd816ebba64404af K21 18
\\xf6bf74a97d78f2242376769ef1e79885cf1f0c1c KAASO 18
\\x65def5029a0e7591e46b38742bfedd1fb7b24436 KAE 18
\\xBD6467a31899590474cE1e84F70594c53D628e46 KAI 18
\\xd9ec3ff1f8be459bb9369b4e79e9ebcf7141c093 KAI 18
\\xfd30c9bea1a952feeed2ef2c6b2ff8a8fc4aad07 KALLY 18
\\xbdbb0ee6144544ec814d417b0ad41f16fc8b858e KAM 8
\\x1410434b0346f5be678d0fb554e5c7ab620f8f4a KAN 18
\\x6e765d26388a17a6e86c49a8e41df3f58abcd337 KANGAL 18
\\x5d2c6545d16e3f927a25b4567e39e2cf5076bef4 KAPPA 18
\\xdfe691f37b6264a90ff507eb359c45d55037951c KARMA 4
\\x2c50ba1ed5e4574c1b613b044bd1876f0b0b87a9 KASH 18
\\x4cc84b41ececc387244512242eec226eb7948a92 KASSIAHOME 18
\\x06ff1a3b08b63e3b2f98a5124bfc22dc0ae654d3 KASSIAHOTEL 18
\\x14da230d6726c50f759bc1838717f8ce6373509c KAT 18
\\xe6410569602124506658ff992f258616ea2d4a3d KATANA 18
\\x17a4ae8b1ea75d51ab0f2875b80452f7e34c272a KAWA 18
\\xd67b1db49801b6f4c96a01a4f7964233150dc58b KBC 7
\\xf3586684107ce0859c44aa2b2e0fb8cd8731a15a KBC 7
\\xa8c2af8c403704a31f32f0aa70a43e63afcd54d0 KBOND 18
\\xe6c3502997f97f9bde34cb165fbce191065e068f KBTC 18
\\x14eb60f5f270b059b0c788de0ddc51da86f8a06d KCAL 10
\\xdb80734b094a3f964dedfd10e8946753ae0ac04c KCH 18
\\x039b5649a59967e3e936d7471f9c3700100ee1ab KCS 6
\\xf34960d9d60be18cc1d5afc1a6f012a723a28811 KCS 6
\\x95e40e065afb3059dcabe4aaf404c1f92756603a KDAG 18
\\x106552c11272420aad5d7e94f8acab9095a6c952 KEANU 9
\\x85eee30c52b0b379b046fb0f85f4f3dc3009afec KEEP 18
\\xc0114f14638a333a4d5c3b04f09b96372348a842 KEI 9
\\x3fa400483487a489ec9b1db29c4129063eec4654 KEK 18
\\x4abb9cc67bd3da9eb966d1159a71a0e68bd15432 KEL 18
\\x672d7b3333d0f069a28b73a268bc6eaec65f2e1a KELPIE 9
\\x6a7ef4998eb9d0f706238756949f311a59e05745 KEN 18
\\x7841b2a48d1f6e78acec359fed6d874eb8a0f63c KERMAN 4
\\x16980b3b4a3f9d89e33311b5aa8f80303e5ca4f8 KEX 6
\\x4cc19356f2d37338b9802aa8e8fc58b0373296e7 KEY 18
\\x4cd988afbad37289baaf53c13e98e2bd46aaea8c KEY 18
\\xb8647e90c0645152fccf4d9abb6b59eb4aa99052 KEYFI 18
\\xce13abce0db5a8224616ef24d3979d466f19cf90 KEYT 18
\\xe63684bcf2987892cefb4caa79bd21b34e98a291 KFC 18
\\x3b0e1508fae33ffba8d3ea64851cf98c02f1c61b KFI 9
\\xef53462838000184f35f7d991452e5f25110b207 KFT 18
\\xa8262eb913fccea4c3f77fc95b8b4043b384cfbb KGC 18
\\x55eb5288c9b65037a4cd2289637f38a4f9db3a6b KGW 18
\\xc12d1c73ee7dc3615ba4e37e4abfdbddfa38907e KICK 8
\\xd91a6162f146ef85922d9a15ee6eb14a00344586 KICKS 18
\\x177ba0cac51bfc7ea24bad39d81dcefd59d74faa KIF 18
\\x1e18821e69b9faa8e6e75dffe54e7e25754beda0 KIMCHI 18
\\x818fc6c2ec5986bc6e2cbf00939d90556ab12ce5 KIN 18
\\x4618519de4c304f3444ffa7f812dddc2971cc688 KIND 8
\\xcbfef8fdd706cde6f208460f2bf39aa9c785f05d KINE 18
\\xd2057d71fe3f5b0dc1e3e7722940e1908fc72078 KING 18
\\x64e65d352f6a2949463b3a7595911b61bbafc63e KIP 18
\\xce9f106d565d71e7198c5c51dcdc89716c9c0a44 KIRKY 18
\\xb1191f691a355b43542bea9b8847bc73e7abb137 KIRO 18
\\xa2b4c0af19cc16a6cfacce81f192b024d625817d KISHU 9
\\x080eb7238031f97ff011e273d6cad5ad0c2de532 KIT 18
\\x7866e48c74cbfb8183cd1a929cd9b95a7a5cb4f4 KIT 18
\\x9b9fb226e98c4e90db2830c9aefa9cfcbe3b000a KITTY 18
\\x2bf91c18cd4ae9c2f2858ef9fe518180f7b5096d KIWI 8
\\x368c5290b13caa10284db58b4ad4f3e9ee8bf4c9 KKO 18
\\x382f0160c24f5c515a19f155bac14d479433a407 KLEE 9
\\xb97d5cf2864fb0d08b34a484ff48d5492b2324a0 KLON 18
\\xbf15797bb5e47f6fb094a4abdb2cfc43f77179ef KLONX 18
\\xe8d17542dfe79ff4fbd4b850f2d39dc69c4489a2 KMPL 9
\\x9b8c184439245b7bb24a5b2ec51ec81c39589e8a KMX 18
\\xdd974d5c2e2928dea5f71b9825b8b646686bd200 KNC 18
\\xdefa4e8a7bcba345f687a2f1456f5edd9ce97202 KNC 18
\\x248AFFf1aa83cF860198ddeE14b5b3E8eDb46d47 KNCBNT 18
\\x8e5610ab5e39d26828167640ea29823fe1dd5843 KNDC 8
\\xff5c25d2f40b47c4a37f989de933e26562ef0ac0 KNT 16
\\x5935ffc231e93ac04daa089c0f1b94d0fb2449de KNV 18
\\xcb4e8cafeda995da5cedfda5205bd5664a12b848 KOBE 18
\\x66d28cb58487a7609877550e1a34691810a6b9fc KOIN 8
\\x1c8266a4369af6d80df2659ba47b3c98f35cb8be KOJI 18
\\x7bd6a4e7db3a34c485a8dd02b30b6565e3bbc633 KOK 18
\\x7c3e3eae4d893d11c61e74d5187c962ba5744a3b KOKO 18
\\x1cc30e2eac975416060ec6fe682041408420d414 KOL 18
\\x878cf148ccbb50426043a9affe54ba408221c7fa KOMBAT 8
\\x6cfb6df56bbdb00226aeffcdb2cd1fe8da1abda7 KOMET 18
\\x41bc0913ed789428e107c4ea9ed007815c5a8230 KOMP 18
\\x7c3cf2d43b50e78e27a81293a43fcac45796fb54 KONG 9
\\x850aab69f0e0171a9a49db8be3e71351c8247df4 KONO 18
\\x1ceb5cb57c4d4e2b2433641b95dd330a33185a44 KP3R 18
\\xa89ac6e529acf391cfbbd377f3ac9d93eae9664e KP4R 18
\\xc89b4a8a121dd3e726fe7515e703936cf83e3350 KPER 18
\\x7b7983967409fce461ea8bbdf9ed37631b1d59c9 KPOP 18
\\x9588fc24a9796fbd870951a2cd54c6f1f24b2e7c KREX 8
\\x32a8cd4d04d5f2e5de30ad73ef0a377eca2fdd98 KRG 18
\\x464ebe77c293e473b48cfe96ddcf88fcf7bfdac0 KRL 18
\\x952bbd5344ca0a898a1b8b2ffcfe3acb1351ebd5 KRO 18
\\x990e081a7b7d3ccba26a2f49746a68cc4ff73280 KSC 18
\\x3f09400313e83d53366147e3ea0e4e2279d80850 KSEED 18
\\x049e119413ab1f1b0fd836e657e3e4ba3ad9cab8 KSF 18
\\x44bbb689aa13315ea5d56ebda2d263e53cb4b0b7 KSK 18
\\xbc17729fdf562723f0267f79ff25ade441056d87 KST 18
\\x9827f6e8df0ccc584ff7b37144de8bac7c446385 KTC 18
\\x24e3794605c84e580eea4972738d633e8a7127c8 KTLYO 18
\\x491e136ff7ff03e6ab097e54734697bb5802fc1c KTN 18
\\x9f284e1337a815fe77d2ff4ae46544645b20c5ff KTON 18
\\x14cc8dfaf2258e1b8b2869300dba1b734dc0fe43 KTT 18
\\xc59cb23295e2deeb66bd090acb6b02be8d30a11f KUB 10
\\x4f76e85d067e219779a863ff18577846b3152f1f KUBO 8
\\xdf1338fbafe7af1789151627b886781ba556ef9a KUE 18
\\xe6b7743e2b9aa2d0a9b163c4e69186abb57817d9 KUKY 18
\\x48c276e8d03813224bb1e55f953adb6d02fd3e02 KUMA 18
\\xb525ecee288b99216cd481c56b6efbdbe9bf90b5 KUMA 18
\\x65d9bc970aa9b2413027fa339f7f179b3f3f2604 KUN 18
\\xc6c6224cf32f5b0850ddf740b47cd1ed31abead4 KUPP 8
\\xf70d160102cf7a22c1e432d6928a9d625db91170 KUV 18
\\x8868ff4893113193313465a0ccc5f1bd370d7751 KVI 18
\\x241ba672574a78a3a604cdd0a94429a73a84a324 KWATT 18
\\xb8ddc930c2bab6c71610a2be639036e829f9c10b KWH 18
\\x286c0936c7eaf6651099ab5dab9ee5a6cb5d229d KWIK 18
\\x43244c686a014c49d3d5b8c4b20b4e3fab0cbda7 KXUSD 18
\\x67b6d479c7bb412c54e03dca8e1bc6740ce6b99c KYL 18
\\xa053c1b7013e77fe0a873ce0ca2bd5d0b7414c41 KYTE 18
\\xe328d8daa44b766f8a2e04e0479f6b316c0bf290 L1 18
\\xbbff34e47e559ef680067a6b1c980639eeb64d24 L2 18
\\xee0f286776639cd363da810daf3e0623f82576b0 L2P 18
\\xdef1da03061ddd2a5ef6c59220c135dec623116d L3P 18
\\xe50365f5d679cb98a1dd62d6f6e58e59321bcddf LA 18
\\x106d3c66d22d2dd0446df23d7f5960752994d600 LABRA 9
\\x8b0e42f366ba502d787bb134478adfae966c8798 LABS 18
\\xeb61393503691c6e20eafd82655b7a94450c3124 LADY 18
\\x1287c0509df9a475ef178471ab2132b9dfd312b3 LADZ 4
\\x0bffc5692960bb043d3216839bdd6e5e64ff1b4e LAIKA 9
\\x8971f9fd7196e5cee2c1032b50f656855af7dd26 LAMB 18
\\x0e2ef8aecb3c01ad5d596f1b67134e178199984d LAND 18
\\x6226caa1857afbc6dfb6ca66071eb241228031a1 LAR 18
\\x2f85e502a988af76f7ee6d83b7db8d6c0a823bf9 LATX 8
\\x0ff6ffcfda92c53f615a4a75d982f399c989366b LAYER 18
\\xfe56e974c1c85e9351325fb2d62963a022ad624f LAYERX 18
\\xfe5f141bf94fe84bc28ded0ab966c16b17490657 LBA 18
\\xb15ae165000c8d7b69d2a82e425e110668c73ad5 LBD 9
\\x932d447274dcffb4aea4f0944d3c804e88056416 LBET 18
\\x9cb1aeafcc8a9406632c5b084246ea72f62d37b6 LBK 8
\\xd9af2d11d788da0097076f4eb21bd1c5533743d9 LBK 18
\\x93ecd2ecdfb91ab2fee28a8779a6adfe2851cda6 LBURST 18
\\xffe510a92434a0df346c5e72a3494b043cf249eb LBXC 18
\\x8aa2af3df13bb6f0cb922bd34446d65244733ad0 LC 18
\\x2c644c3bbea053ed95a6bc04a94c9ce928ff9881 LCE 8
\\x6e1a58e7e9e801f32bb82462636a8a2e7b65e036 LCG 18
\\xaa19961b6b858d9f18a115f25aa1d98abc1fdba8 LCS 18
\\x037a54aab062628c9bbae1fdb1583c195585fe41 LCX 18
\\x5102791ca02fc3595398400bfe0e33d7b6c82267 LDC 18
\\x5479d565e549f3ecdbde4ab836d02d86e0d6a8c7 LDFI 18
\\xb29663aa4e2e81e425294193616c1b102b70a158 LDN 18
\\x5a98fcbea516cf06857215779fd812ca3bef1b32 LDO 18
\\x1dd80016e3d4ae146ee2ebb484e8edd92dacc4ce LEAD 18
\\x7b39917f9562c8bc83c7a6c2950ff571375d505d LEAG 18
\\x27c70cd1946795b66be9d954418546998b546634 LEASH 18
\\x72de803b67b6ab05b61efab2efdcd414d16ebf6d LED 18
\\x5b26c5d0772e5bbac8b3182ae9a13f9bb2d03765 LEDU 8
\\xc166f976ce9926a3205b145af104eb0e4b38b5c0 LEGA 18
\\x8a63be90f095f6777be3ed25d9fc7cd2a63ddb30 LELOAP 18
\\xfc05205ff402849b081e72ae4f8fc93cbdf40db1 Lelouch 9
\\xf45f6c8bb3d77ea762175b8f7ca4d251941649fa LEMD 18
\\x60c24407d01782c2175d32fe7c8921ed732371d1 LEMO 18
\\x80fb784b7ed66730e8b1dbd9820afd29931aab03 LEND 18
\\x2af5d2ad76741191d15dfe7bf6ac92d4bd912ca3 LEO 18
\\x3c955e35b6da1ff623d38d750c85b3aed89a10c1 LEOBEAR 18
\\xc2685307ef2b8842fbf3def432408c46bd0420fd LEOBULL 18
\\x62786eeacc9246b4018e0146cb7a3efeacd9459d LESS 18
\\xfa3118b34522580c35ae27f6cf52da1dbb756288 LET 6
\\x0f4ca92660efad97a9a70cb0fe969c755439772c LEV 9
\\xbc194e6f748a222754c3e8b9946922c09e7d4e91 LEV 18
\\x09970aec766b6f3223aca9111555e99dc50ff13a LEVL 18
\\x88665a7556e1b3c939d6661248116886845249a8 LF 18
\\xafce9b78d409bf74980cacf610afb851bf02f257 LFBTC 18
\\xe0c8087ce1a17bdd5d6c12eb52f8d7eff7791987 LFC 18
\\xe09b10efa59f6e17052e9a2d947bad6214e7cc90 LFETH 18
\\x5881da4527bcdc44a100f8ba2efc4039243d2c07 LGBTQ 1
\\xae697f994fc5ebc000f8e22ebffee04612f98a0d LGCY 18
\\x0a50c93c762fdd6e56d86215c24aaad43ab629aa LGO 8
\\x27778e14ce36d3b85e1effeb43816a17bbb7088a LGOLD 18
\\x0778cc2e8bbad3d483e82371606d100cc8604522 LHCOIN 8
\\x0bf6261297198d91d4fa460242c69232146a5703 LIB 18
\\x3fd2e747cea0e8a78f1827ea2ffd3334628a600b LIB 18
\\x49184e6dae8c8ecd89d8bdc1b950c597b8167c90 LIBERTAS 2
\\xc0ea83113038987d974fe667831a36e442e661e7 LIBFX 18
\\x449efe48ad7cd423bab056276639f8120cd4f9a3 LIBREF 18
\\x0417912b3a7af768051765040a55bb0925d4ddcf LID 18
\\xab37e1358b639fd877f015027bb62d3ddaa7557e LIEN 8
\\xeb9951021698b42e4399f9cbb6267aa35f82d59d LIF 18
\\x6c936d4ae98e6d2172db18c16c4b601c99918ee6 LIFE 18
\\xf9209d900f7ad1dc45376a2caa61c78f6dea53b6 LIFT 18
\\x9d0b65a76274645b29e4cc41b8f23081fa09f4a3 LIME 18
\\x400b1d8a7dd8c471026b2c8cbe1062b27d120538 LIMEX 8
\\x1712aad2c773ee04bdc9114b32163c058321cd85 LIMIT 18
\\x3e9bc21c9b189c09df3ef1b824798658d5011937 LINA 18
\\xc05d14442a510de4d3d71a3d316585aa0ce32b50 LINA 18
\\x514910771af9ca656af840dff83e8264ecf986ca LINK 18
\\x578b49c45961f98d8df92854b53f1641af0a5036 LINKA 18
\\xa209ba34c01a2713a4453a656630cc9de8a362bc LINKBEAR 18
\\x83ad87c988ac0c6277c0c6234cc8108b20bb5d9b LINKBULL 18
\\x542156d51d10db5accb99f9db7e7c91b74e80a2c LINKETHPA 18
\\x8933ea1ce67b946bdf2436ce860ffbb53ce814d2 LINKETHRSI 18
\\x78e29d35573bea6265aedfcb9f45481b717ebfde LINKPT 18
\\x0329d23fc7b1b1e6cca57afa3f0090f1189069e8 LINKRSICO 18
\\x0e2ec54fc0b509f445631bf4b91ab8168230c752 LINKUSD 18
\\x6E4DB478e55745A8711eCFf193C9d95e970Eb001 LINKUSDB 18
\\x2167fb82309cf76513e83b25123f8b0559d6b48f LION 18
\\x72ca0501427bb8f089c1c4f767cb17d017e803a9 LIQ 18
\\x59ad6061a0be82155e7acce9f0c37bf59f9c1e3c LIQLO 18
\\xac2385e183d9301dd5e2bb08da932cbf9800dc9c LIQUID 18
\\xb59490ab09a0f526cc7305822ac65f2ab12f9723 LIT 18
\\x188e817b02e635d482ae4d81e25dda98a97c4a42 LITH 18
\\xf8a4a419c2d7140e49ef952a7e7ae1bd4a8b6b9c LITH 18
\\x763fa6806e1acf68130d2d0f0df754c93cc546b2 LITION 18
\\xd0345d30fd918d7682398acbcdf139c808998709 LIX 18
\\x9f549ebfd4974cd4ed4a1550d40394b44a7382aa LKN 18
\\x80ce3027a70e0a928d9268994e9b85d03bd4cdcf LKR 18
\\xfC4A2Cd574bdcC385173f03A6a52cC3B853BB9d4 LKSC 18
\\x243c56e8e740025ac6b112d7b9af59be8eef6e33 LKT 6
\\xd9b89eee86b15634c70cab51baf85615a4ab91a1 LKT 18
\\x49bd2da75b1f7af1e4dfd6b1125fecde59dbec58 LKY 18
\\xe5bf6790d138b154f1df3db8d245be46a5d05ee4 LLAND 18
\\x9205c049c231dda51bace0ba569f047e3e1e9979 LMCH 18
\\x25b6325f5bb1c1e03cfbc3e53f470e1f1ca022e3 LML 18
\\x034455c8a9882bf44c9704c780a55198e05ba559 LMS 18
\\x327673ae6b33bd3d90f0096870059994f30dc8af LMT 18
\\x66fd97a78d8854fec445cd1c80a07896b0b4851f LMY 18
\\x63e634330a20150dbb61b15648bc73855d6ccf07 LNC 18
\\x6beb418fc6e1958204ac8baddcf109b8e9694966 LNC 18
\\x0947b0e6d821378805c9598291385ce7c791a6b2 LND 18
\\x11afe7fa792589dd1236257f99ba09f510460ad9 LNKO 8
\\x3a73f6156c4fbc71b8fdf38090a9d99401163644 LNT 18
\\x5e3845a1d78db544613edbe43dc1ea497266d3b8 LNX 18
\\x7458fd786b2fe8cd801c0381f88b61c5071a006f LOA 18
\\xa883e72c12473ded50a5fbffa60e4000fa5fe3c8 LOAD 8
\\x5e3346444010135322268a4630d2ed5f8d09446c LOC 18
\\x38838B895cbf02048455Fb7f649D97C564fC18a8 LOCBNT 18
\\x556938621c19e5eae58c94a806da9d237b969bd8 LOCC 18
\\x60eb57d085c59932d5faa6c6026268a4386927d0 LOCG 18
\\x9c23d67aea7b95d80942e3836bcdf7e708a747c2 LOCI 18
\\x95172ccbe8344fecd73d0a30f54123652981bd6f LOCK 18
\\xb9464ef80880c5aea54c7324c0b8dd6ca6d05a90 LOCK 18
\\x5978708d6cce1cc9640eed47422d64c91bbd5171 LOL 18
\\x0000000000095413afc295d19edeb1ad7b71c952 LON 18
\\x491d6b7d6822d5d4bc88a1264e1b47791fd8e904 LONDON 18
\\x42476f744292107e34519f9c357927074ea3f75d LOOM 18
\\xa4e8c3ec456107ea67d3075bf9e3df3a75823db0 LOOM 18
\\x7c5d5100b339fe7d995a893af6cb496b9474373c LOON 18
\\x7b3d36eb606f873a75a6ab68f8c999848b04f935 LOOT 18
\\xcfbd04b3cef2cf1527f143a49e5dc1e19941d254 LOOTL 18
\\x6556d2ec4d96da39cf75cbe50d58fae90079800a LOT 18
\\xf947b0824c3995787efc899017a36bc9f281265e LOTO 8
\\xb0dfd28d3cf7a5897c694904ace292539242f858 LOTTO 18
\\xe3c864307b5592404431649de541c259497e2bd1 LOV 8
\\x14d9444f6b9d55caba5d73f15bea947695c11c82 LP 9
\\x99295f1141d58a99e939f7be6bbe734916a875b8 LPL 18
\\x6149c26cd2f7b5ccdb32029af817123f6e37df5b LPOOL 18
\\x58b6a8a3302369daec383334672404ee733ab239 LPT 18
\\xd29f0b5b3f50b07fe9a9511f7d86f4f4bac3f8c4 LQD 18
\\x6dea81c8171d0ba574754ef6f8b412f2ed88c54d LQTY 18
\\xbbbbca6a901c926f240b89eacb641d8aec7aeafd LRC 18
\\xef68e7c694f40c8202821edf525de3782458639f LRC 18
\\xc77d7e0dd7b2a01b990e866feb21d031f1418c2e LSC 18
\\xd64809f5f7d772d9112a6bd379de00a77188199e LSILVER 18
\\x3b9be07d622accaed78f479bc0edabfd6397e320 LSS 18
\\x355376d6471e09a4ffca8790f50da625630c5270 LST 18
\\x4de2573e27e648607b50e1cfff921a33e4a34405 LST 18
\\x681ecc5a0bfd18c308a1138ff607f818bac5e417 LST 18
\\x6b9f1f092e0b10015a4391a80cd3e6b6cefd1728 LST 18
\\xee059f0ca1507e4e20c689b20cff71b5e924f7bd LSV 18
\\xa105c740bc012a43a342ab4a0ef40143452c8e89 LTB 18
\\xb422e605fbd765b80d2c4b5d8196c2f94144438b LTCBEAR 18
\\xdb61354e9cf2217a29770e9811832b360a8daad3 LTCBULL 18
\\xd0c64d6c0e9aa53fffd8b80313e035f7b83083f3 LTCHEDGE 18
\\xb4c9abc8a74bd2e0e0b7ac5ece30792e65d86c59 LTG 8
\\x8a732bc91c33c167f868e0af7e6f31e0776d0f71 LTK 18
\\x3db6ba6ab6f95efed1a6e794cad492faaabf294d LTO 8
\\xa393473d64d2f9f026b60b6df7859a689715d092 LTX 8
\\xb1f66997a5760428d3a87d68b90bfe0ae64121cc LUA 18
\\x5dbe296f97b23c4a6aa6183d73e574d02ba5c719 LUC 18
\\x0955a73d014f0693ac7b53cfe77706dab02b3ef9 LUCK 18
\\xe478d4f4a87d4d641af97ca0b5cc3db61e266357 LUCKY 18
\\xe64b47931f28f89cc7a0c6965ecf89eadb4975f5 LUD 18
\\x89a64014d429509cffda1aebc7eb36b9435794bd LULZ 18
\\xfa05a73ffe78ef8f1a739473e462c54bae6567d9 LUN 18
\\xd2877702675e6ceb975b4a1dff9fb7baf4c91ea9 LUNA 18
\\x5f98805a4e8be255a32880fdec7f6728c6568ba0 LUSD 18
\\x88dafebb769311d7fbbeb9a21431fa026d4100d0 LUX 18
\\xa8eda9d4aee0eb882f8752c6ba7e16d9233c9ad2 LVL 8
\\xc8cac7672f4669685817cf332a33eb249f085475 LVN 18
\\x261638ec8ee8100484130ebd2febfdadc0d8742a LVX 18
\\x6a404a3386655bd8b63e584f2efd2e3fb60e70f8 LXC 18
\\x61c320935da31552b0d0de515ddee964267c4764 LXMT 8
\\xbc46d9961a3932f7d6b64abfdec80c1816c4b835 LXT 18
\\xc690f7c7fcffa6a82b79fab7508c466fefdfc8c5 LYM 18
\\xb0b1685f55843d03739c7d9b0a230f1b7dcf03d5 LYN 18
\\x8f87ec6aad3b2a8c44f1298a1af56169b8e574cf LYNC 18
\\xa8b919680258d369114910511cc87595aec0be6d LYXE 18
\\xfe69bc0920fb63c5924cfc322dc4a5cc23d9afed LZE 18
\\xd36932143f6ebdedd872d5fb0651f4b72fd15a84 MAAPL 18
\\xc3e2de0b661cf58f66bde8e896905399ded58af5 MAC 0
\\xb119ce94d098c18fe380904c24e358bd887f00be MACH 18
\\x5b09a0371c1da44a8e24d36bf5deb1141a84d875 MAD 18
\\x4889f721f80c5e9fade6ea9b85835d405d79a4f4 MAFI 18
\\xb0c7a3ba49c7a6eaba6cd4a96c55a1391070ac9a MAGIC 18
\\xb4d930279552397bba2ee473229f89ec245bc365 MAHA 18
\\x75387e1287dd85482ab66102da9f6577e027f609 MAI 18
\\x270d09cb4be817c98e84feffde03d5cd45e30a27 MAKI 18
\\xa3e7833775a9cc022db2c72eb900378f90ce89b4 MALLY 9
\\x0cae9e4d663793c2a2a0b211c1cf4bbca2b9caa7 MAMZN 18
\\xe25bcec5d3801ce3a794079bf94adf1b8ccd802d MAN 18
\\x0f5d2fb29fb7d3cfee444a200298f468908cc942 MANA 18
\\x79d83B390cF0EDF86B9EFbE47B556Cc6e20926aC MANABNT 18
\\x5aa485e6b794bcf5f834bf5c7ff43b9b83322764 MANDI 8
\\xab7aaf9e485a3bc885985184abe9fc6aba727bd6 MANY 18
\\x9e976f211daea0d652912ab99b0dc21a7fd728e4 MAP 18
\\xa9080bf7c8e55f2af5c6603243d5865f4f328715 MAR 18
\\x67c597624b17b16fb77959217360b7cd18284253 MARK 9
\\x26d946d9993990d0d7c7ec8cbc5d6aa91d90cbd2 MARS 6
\\x66c0dded8433c9ea86c8cf91237b14e10b4d70b7 MARS 18
\\xedd8da5c20eb014e550008df3304213dde5e29f0 MARS 8
\\x16cda4028e9e872a38acb903176719299beaed87 MARS4 18
\\x5a666c7d92e5fa7edcb6390e4efd6d0cdd69cf37 MARSH 18
\\x2b100be232f90dd33d3b6e4b9ad70d1e8ac0e208 MARX 18
\\x23ccc43365d9dd3882eab88f43d515208f832430 MAS 18
\\xa0d440c6da37892dc06ee7930b2eede0634fd681 MASH 8
\\x69af81e73a73b40adf4f3d4223cd9b1ece623074 MASK 18
\\xc7a8b45e184138114e6085c82936a8db93dd156a MASK 18
\\x06f3c323f0238c72bf35011071f2b5b7f43a054c MASQ 18
\\x08d967bb0134f2d07f7cfb6e246680c53927dd30 MATH 18
\\x7d1afa7b718fb893db30a3abc0cfc608aacfebb0 MATIC 18
\\x7e03521b9da891ca3f79a8728e2eaeb24886c5f9 MATICBULL 18
\\x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f MATTER 18
\\x9b99cca871be05119b2012fd4474731dd653febe MATTER 18
\\xe7976c4efc60d9f4c200cc1bcef1a1e3b02c73e7 MAX 18
\\x14468ff6b324f1c5a869e62b9c442846e7d0baf1 MAYA 18
\\x7cda79830faf07ed696fe220566116951ced36a7 MAYP 18
\\x7ab1fc79f319718690e9c883bac910f8e289ce8f MB 18
\\x8d8129963291740dddd917ab01af18c7aed4ba58 MB 18
\\x56aa298a19c93c6801fdde870fa63ef75cc0af72 MBABA 18
\\x26cf82e4ae43d31ea51e72b663d26e26a75af729 MBBASED 18
\\x8888889213dd4da823ebdd1e235b09590633c150 MBC 18
\\xb879da8b24c9b8685de8526cf492e954f165d74b MBL 18
\\x281f5b914b0d589f8193cd5e711c6920874e00c8 MBM 18
\\x4eeea7b48b9c3ac8f70a9c932a8b1e8a5cb624c7 MBN 18
\\xaf80951201a0eff85a0fd3adf4c7043db856d3e6 MBN 18
\\xacfe45c352c902ae3a3f9b6bfe6ec994c5d791bf MBONK 18
\\x53893a4a67d4392ebebdf1a683e98e1c577ab6c1 MBS 18
\\x7e8c149f70437eba6785f9059190a5b08abf03de MBTC 8
\\x945facb997494cc2570096c74b5f66a3507330a1 mBTC 18
\\x949d48eca67b17269629c7194f4b727d4ef9e5d6 MC 18
\\xa38b7ee9df79955b90cc4e2de90421f6baa83a3d MC 18
\\x72ba699f0f3c29d0f886c264ec7350533a32b3d5 MCAN 8
\\xf961a1fa7c781ecd23689fe1d0b7f3b6cbb2f972 MCAT20 18
\\x4e352cf164e64adcbad318c3a1e222e9eba4ce42 MCB 18
\\x0643def9014b055823bdf2ec57ef02da619b0711 McGregor 9
\\xa4e7414fcba1af15203030c6daac630df8f16aea MCH 18
\\xd69f306549e9d96f183b1aeca30b8f4353c2ecc3 MCHC 18
\\x3b58c52c03ca5eb619eba171091c86c34d603e5f MCI 9
\\x3b3801f0fc76528e42390df701f513fc62cbf154 MCM 18
\\xd91e9a0fef7c0fa4ebdaf4d0acf55888949a2a9b MCN 18
\\xb63b606ac810a52cca15e44bb630fd42d8d1d83d MCO 8
\\xfc98e825a2264d890f9a1e68ed50e1526abccacd MCO2 18
\\x2186ecb39f1b765ba7d78f1c43c2e9d7fc0c1eca MCP 18
\\x6876eba317272fe221c67405c5e8eb3b24535547 MCT 18
\\xd15ecdcf5ea68e3995b2d0527a0ae0a3258302f8 MCX 18
\\xcb696c86917175dfb4f0037ddc4f2e877a9f081a MD+ 18
\\x51db5ad35c671a87207d88fc11d593ac0c8415bd MDA 18
\\xd24dff6117936b6ff97108cf26c1dd8865743d87 MDM 18
\\x66186008c1050627f979d464eabb258860563dbe MDS 18
\\x814e0908b12a99fecf5bc101bb5d0b8b5cdf7d26 MDT 18
\\x625687081ba9fcbffb0ae6bfe8d7fad6f616f494 MDTL 18
\\x947aeb02304391f8fbe5b25d7d98d649b57b1788 MDX 18
\\x0ecdd783dc7bf820614044b51862ed29714d2ba5 MDZA 18
\\x47140a767a861f7a1f3b0dd22a2f463421c28814 ME 18
\\xdb726152680ece3c9291f1016f1d36f3995f6941 MEDIA 6
\\x737fa0372c8d001904ae6acaf0552d4015f9c947 MEDIBIT 18
\\xfd1e80508f243e64ce234ea88a5fd2827c71d4b7 MEDX 8
\\xe1b583dc66e0a24fd9af2dc665f6f5e48978e106 MEE 18
\\x641927e970222b10b2e8cdbc96b1b4f427316f16 MEEB 18
\\x61be6fac719f871a24d9bdcdf97b6c94772c7e28 MEEBITS20 18
\\x3218a02f8f8b5c3894ce30eb255f10bcba13e654 MEGA 18
\\xed0889f7e1c7c7267407222be277e1f1ef4d4892 MEL 18
\\x42dbbd5ae373fea2fc320f62d44c058522bb3758 MEM 18
\\xd5525d397898e5502075ea5e830d8914f6f0affe MEME 8
\\xfc69371a453759bea35c43359c62d2f2b66f0b1e MEOW 18
\\x8f1135ea4f8946949441716d66e5390c5a990df0 MES 8
\\xcf9fbffec9e0e5bbc62e79bf1965f5db76955661 MESH 18
\\xa3d58c4e56fedcae3a7c43a725aee9a71f0ece4e MET 18
\\x17a459bff9277e945354fc32b2daef5211fe801b META 18
\\x8807e69dc04155af64172cd6f0b4738f8068d0d4 META 18
\\x93ecdfe316de6dc44c2104183b7f6736d83521c2 META 18
\\xc0bfeba72805f22dc18dde31467c5a55c16ff57b META 18
\\xde2f7766c8bf14ca67193128535e5c7454f8387c META 18
\\x0dc7d0192c148d7d2d6fa32dc280f953c0ad6a34 MetaCat 18
\\x8530b66ca3ddf50e0447eae8ad7ea7d5e62762ed METADOGE 18
\\x765baefcb5418fa9f7dddacb1ccc07bd0e890e4e METEOR 9
\\x11003e410ca3fcd220765b3d2f343433a0b2bffd METH 18
\\x9e32b13ce7f2e80a01932b42553652e053d6ed8e Metis 18
\\x33824827a6cdb3f2f00c1f6cec8f6df2b3d233fe METL 9
\\xfef3884b603c33ef8ed4183346e093a173c94da6 METM 18
\\x108d27f9c4b2a98c025c94c76ca78c6ce6c7a4eb METP 18
\\xefc1c73a3d8728dc4cf2a18ac5705fe93e5914ac METRIC 18
\\x7F8c53072d9B809A108b1A9D677Bcc3B7B3F844e METUSDB 18
\\x7de2d123042994737105802d2abd0a10a7bde276 MEXC 18
\\xde201daec04ba73166d9917fdf08e1728e270f06 MEXP 18
\\x0e99cc0535bb6251f6679fa6e65d6d3b430e840b MFB 18
\\x6710c63432a2de02954fc0f851db07146a6c0312 MFG 18
\\xaa4e3edb11afa93c41db59842b29de64b72e355b MFI 18
\\xdf2c7238198ad8b389666574f2d8bc411a4b7428 MFT 18
\\x4319f9130848544afB97e92cb3Ea9fdb4b0A0B2a MFTBNT 18
\\xba745513acebcbb977497c569d4f7d340f2a936b MFTU 18
\\x174bfa6600bf90c885c7c01c7031389ed1461ab9 MGC 18
\\xa6eb54102f20095679882db4c84e72e65ab782a4 MGC 8
\\x80f222a749a2e18eb7f676d371f19ad7efeee3b7 MGN 18
\\x40395044ac3c0c57051906da938b54bd6557f212 MGO 8
\\x59a921db27dd6d4d974745b7ffc5c33932653442 MGOOGL 18
\\x8a845fc339ceb022a695281554890429a34df120 MGP 18
\\x0cb20b77adbe5cd58fcecc4f4069d04b327862e5 MGT 8
\\xa207ef81c35848a60a732005a42fae0ba89a9be2 MGT 4
\\x1412f6aa5adc77c620715bb2a020aa690b85f68a MGX 18
\\xe3d0a162fcc5c02c9448274d7c58e18e1811385f MHLK 2
\\x74303d9d085a0d647ef47f9c0c424c73f3bfa6ca MIAMI 18
\\x1d350417d9787e000cc1b95d70e9536dcd91f373 MIAU 18
\\x146d8d942048ad517479c9bab1788712af180fde MIB 18
\\x74fc4575a47330340e631f7e0ea550be519fcd0a MIB 18
\\x368b3a58b5f49392e5c9e4c998cb0bb966752e51 MIC 18
\\x3b4102dfe101ec3fc22f4c95fbef78ef6213656b MICRO 18
\\xbe6c8f2810ef39420d2dc2901b8414c8c45fee6d MICRO 18
\\xc82abb524257c8ee4790bfdefb452b2d6a395e21 MIDBEAR 18
\\x59db60bd41bbc8ca4c1efee6ea2a97eae1e30cf5 MIDBULL 18
\\x05a78ffea2b35aa1af438c21cf06668cf118df0a MIG 18
\\xfbaf48e57cab46f4c2e03edb90a421d9fc6c7cbf MIKS 18
\\xdc26fc0419bf3b4e034eceb2e4154fc653c7a372 MILEY&MUSK 18
\\x0dd1989e4b0e82f154b729ff47f8c9a4f4b2cc1c MILF 18
\\x66d1b01c0fd7c2d8718f0997494b53ff5c485688 MILK 18
\\x80c8c3dcfb854f9542567c8dac3f44d709ebc1de MILK2 18
\\x99d8a9c45b2eca8864373a26d1459e3dff1e17f3 MIM 18
\\x90b831fa3bebf58e9744a14d638e25b4ee06f9bc MIMO 18
\\x5d64d850c8368008afb39224e92ad0dceff3cf38 MIN 18
\\xb26631c6dda06ad89b93c71400d25692de89c068 MINDS 18
\\x4d953cf077c0c95ba090226e59a18fcf97db44ec MINI 19
\\x0cdf9acd87e940837ff21bb40c9fd55f68bba059 MINT 18
\\xb6c6920327b33f8eec26786c7462c5f4098d47e3 MINTY 18
\\xae353daeed8dcc7a9a12027f7e070c0a50b7b6a4 MINX 6
\\x09a3ecafa817268f77be1283176b946c4ff2e608 MIR 18
\\x0168703872fa06741ecaa9dff7803168e83f7ae0 MIRO 8
\\x024b6e7dc26f4d5579bdd936f8d7bc31f2339999 MIS 18
\\x4b4d2e899658fb59b1d518b68fe836b100ee8958 MIS 18
\\xcd1cb16a67937ff8af5d726e2681010ce1e9891a MIS 8
\\xe653967f0beb6e313c6350f20bca9a5f4c636eed MISS 18
\\x88acdd2a6425c3faae4bc9650fd7e27e0bebb7ab MIST 18
\\x3893b9422cd5d70a81edeffe3d5a1c6a978310bb MITH 18
\\x4a527d8fc13c5203ab24ba0944f4cb14658d1db6 MITX 18
\\x5d285f735998f36631f678ff41fb56a10a4d0429 MIX 18
\\xb0bfb1e2f72511cf8b4d004852e2054d7b9a76e1 MIXS 18
\\xf3281c539716a08c754ec4c8f2b4cee0fab64bb9 MKCY 18
\\xe154d54890c35634ca525d543ed58c741af7cf7a MKEY 18
\\x9f8f72aa9304c8b593d555f12ef6589cc3a579a2 MKR 18
\\xf553E6eA4CE2F7dEEcbe7837E27931850eC15faB MKRBNT 18
\\xcff20ce22e71ecf2ea89c86ecbd4a3cf513768c7 MKS 6
\\x16558553e4647ca500c3718c56c356edb6f9b11c MKT 6
\\x4534492034a2cd3eab34c8f357cd139c95b09f52 MLGC 0
\\xbeb9ef514a379b997e0798fdcc901ee474b6d9a1 MLN 18
\\xec67005c4e498ec7f55e092bd1d35cbc47c91892 MLN 18
\\x0d6777bfc95b284ea9246c889e99903641129d72 MLNUSDB 18
\\x2772b0dd22381932b104d683e73c5ecb5a3a2408 mLOOT 18
\\xf26893f89b23084c4c6216038d6ebdbe9e96c5cb MLR 18
\\x9506d37f70eb4c3d79c398d326c871abbf10521d MLT 18
\\x6b4c7a5e3f0b99fcd83e9c089bddd6c7fce5c611 MM 18
\\xa283aa7cfbb27ef0cfbcb2493dd9f4330e0fd304 MM 18
\\xc3c221fe28c33814c28c822b631fd76047ef1a63 MM 18
\\xc4c28d107735ad2f9811199e8145ecd9fbea44c1 MMACOM 18
\\x8315472bae77f9a2b856a67eb0796480aafcd51c MMAON 18
\\xd0e818391623487be25e89170ea0c40ff09c8278 Mmax 18
\\x5b558564b57e4ff88c6b8d8e7eeee599bf79b368 MMM 18
\\x41bbedd7286daab5910a1f15d12cbda839852bd7 MMSFT 18
\\x9f0f1be08591ab7d990faf910b38ed5d60e4d5bf MNC 18
\\xbac7a1798350cdf2dbfe0c210c2c9861223f4b31 MNC 18
\\x426ca1ea2406c07d75db9585f22781c096e3d0e0 MNE 8
\\xc8d674114bac90148d11d3c1d33c61835a0f9dcd MNFLX 18
\\x66af49ebaeefed6f0f43df48142341391f3f25c1 MNGUZ 18
\\xf45091f25d374bbe956c0bb64bb85e02d07aa741 MNMC 8
\\x53884b61963351c283118a8e1fc05ba464a11959 MNS 18
\\x310da5e1e61cd9d6eced092f085941089267e71e MNT 18
\\x83cee9e086a77e492ee0bb93c2b0437ad6fdeccc MNTP 18
\\x8DA321aB610cD24fB2bcCe191F423Dae7c327ca9 MNTPBNT 18
\\xa6f7645ed967faf708a614a2fca8d4790138586f MNY 18
\\x4fd5b9b5dcc9a5d5931d007ba4ae573e760d9b64 MO 18
\\x187eff9690e1f1a61d578c7c492296eaab82701a MOAR 18
\\x29f6e320dbdbf1f5ebf599d36242634739a24609 MOBI 18
\\x865ec58b06bf6305b886793aa20a2da31d034e68 MOC 18
\\x9ac07635ddbde5db18648c360defb00f5f22537e MOCA 18
\\x957c30ab0426e0c93cd8241e2c60392d08c6ac8e MOD 0
\\xea1ea0972fa092dd463f2968f9bb51cc4c981d71 MOD 18
\\x4bcea5e4d0f6ed53cf45e7a28febb2d3621d7438 MODEX 18
\\x3c6da7763caa0e4b684bbc733f04a8ec08af3762 MODX 8
\\x653430560be843c4a3d143d0110e896c2ab8ac0d MOF 16
\\xb2dbf14d0b47ed3ba02bdb7c954e05a72deb7544 MOFI 18
\\xbdec45952b5e234eddc2981b43eed360826d5087 MOGX 18
\\x1443e7c1cce72662545d94779120c59251447e91 MOL 18
\\x97cb5cc1b2e10cc56dc16ab9179f06dfedbe41a2 MOLK 18
\\xbd1848e1491d4308ad18287a745dd4db2a4bd55b MOMA 18
\\x275f5ad03be0fa221b4c6649b8aee09a42d9412a MONA 18
\\xd3c89cac4a4283edba6927e2910fd1ebc14fe006 MOOI 18
\\x68a3637ba6e75c0f66b61a42639c4e9fcd3d4824 MOON 18
\\x98968f0747e0a261532cacc0be296375f5c08398 MOONCAT 18
\\x1ad606adde97c0c28bd6ac85554176bc55783c01 MOONDAY 18
\\xf1e4b3403e857760cc75ba2a6779e4cf0efe02c4 MOONDOGE 18
\\x260e63d91fccc499606bae3fe945c4ed1cf56a56 MOONS 18
\\x24ec2ca132abf8f6f8a6e24a1b97943e31f256a7 MOOV 18
\\xae746520ffdb15d0505e32f1d6e9a2b4ab866572 MOR 18
\\xb64cd4f56043f8d80691433e395d08b1bebdadf0 MORA 18
\\x236ecfb32c2b496f942c86d43b8ca4f6bd931e30 MORC 18
\\x305de070488c8469dfac957226c9c900c4bfba22 MORE 8
\\xf552b656022c218c26dad43ad88881fc04116f76 MORK 4
\\x2ef27bf41236bd859a95209e17a43fbd26851f92 MORPH 4
\\x970b596ea3cb9864397f799902f0a579cdc3377b MORT 18
\\x784561b89a160990f46de6db19571ca1b5f14bce MOST 9
\\x40284109c3309a7c3439111bfd93bf5e0fbb706c MOV 18
\\x7bd82b320ebc28d8eb3c4f5fa2af7b14da5b90c3 MOZ 18
\\xea4931bfcf3260da6dbf0550e27f5c214e3c268b MOZOX 2
\\x018fb5af9d015af25592a014c4266a84143de7a0 MP3 18
\\xe1a0da60f8802b49cc36313bafade3f9e12342fd MP4 18
\\x3810a4ddf41e586fa0dba1463a7951b748cecfca MPAY 18
\\x6369c3dadfc00054a42ba8b2c09c48131dd4aa38 MPH 18
\\x8888801af4d980682e47f1a9036e589479e835c5 MPH 18
\\x33349b282065b0284d756f0577fb39c158f935e6 MPL 18
\\x96c645d3d3706f793ef52c19bbace441900ed47d MPS 0
\\x47481c1b44f2a1c0135c45aa402ce4f4dde4d30e MPT 18
\\x428dc22668e6f3468273634067e5545ed5417a3e MQL 18
\\x13b02c8de71680e71f0820c996e4be43c2f57d15 MQQQ 18
\\x77b1465b0e01ba085e515324e30fee6555c623ea MQSS 18
\\xbed4ab0019ff361d83ddeb74883dac8a70f5ea1e MRCH 18
\\xcbee6459728019cb1f2bb971dde2ee3271bc7617 MRG 18
\\x7b0c06043468469967dba22d1af33d77d44056c8 MRPH 4
\\x2bc586ffbfa2d6e9c30d5ad95d546091db7607cf MSB 8
\\x84c722e6f1363e8d5c6db3ea600bef9a006da824 MSB 18
\\x6954874e3e9ccb527d0caa602be5502db2a1d76a MSK 18
\\xfdd7399e22918ba7234f5568cc2ef922489f7ba6 MSK 18
\\x9d1555d8cb3c846bb4f7d5b1b1080872c3166676 MSLV 18
\\x68aa3f232da9bdc2343465545794ef3eea5209bd MSP 18
\\x3d3ab800d105fbd2f97102675a412da3dc934357 MSV 18
\\xc005204856ee7035a13d8d7cdbbdc13027afff90 MSWAP 0
\\x9b4e2b4b13d125238aa0480dd42b4f6fc71b37cc MT 18
\\xa3bed4e1c75d00fa6f4e5e6922db7261b5e9acd2 MTA 18
\\x905e337c6c8645263d3521205aa37bf4d034e745 MTC 18
\\xf6117cc92d7247f605f11d4c942f0feda3399cb5 MTCN 18
\\x025c9f1146d4d94f8f369b9d98104300a3c8ca23 MTGY 18
\\xaf4dce16da2877f8c9e00544c93b62ac40631f16 MTH 5
\\x84ba4aecfde39d69686a841bab434c32d179a169 MTHD 18
\\x86d3f38edaf7e7959e5d8e6aea5ad3187b78c346 MTI 18
\\xf433089366899d83a9f26a773d59ec7ecf30355e MTL 8
\\x2e1e15c44ffe4df6a0cb7371cd00d5028e571d14 MTLX 18
\\x41dbecc1cdc5517c6f76f6a6e836adbee2754de3 MTN 18
\\xe66b3aa360bb78468c00bebe163630269db3324f MTO 18
\\xa9598333b99d14d90bc81cad8af82c4c70625e75 MTS 18
\\x21ca39943e91d704678f5d00b6616650f066fd63 MTSLA 18
\\x6226e00bcac68b0fe55583b90a1d727c14fab77f MTV 18
\\xedb0414627e6f1e3f082de65cd4f9c693d78cca9 MTWTR 18
\\x0af44e2784637218dd1d32a322d44e603a8f0c6a MTX 18
\\x944eee930933be5e23b690c8589021ec8619a301 MUNCH 9
\\xa52383b665b91dce42dd4b6d1e0fb37d3effe489 MUSD 18
\\xe2f2a5c287993345a840db3b0845fbc70f5935a5 mUSD 18
\\xb6ca7399b4f9ca56fc27cbff44f4d2e4eef1fc81 MUSE 18
\\xea6412fb370e8d1605e6aeeaa21ad07c3c7e9f24 MUSH 18
\\x5003b168b457b663c3c18ffcf5b6a24bee8f59c7 MUSK 18
\\x95a8a98727272ed6ee7b7834c081e55801dcd9e5 MUSK 18
\\xe85e3b73eff4873d99de238a9cb256df847b803d MUSK 18
\\xbc93d1aba134cc81f431de04f2d9f46fc5d6d6bc MUSKETS 18
\\x8b4d07623583558ae311a696de834f9731d3e67d MUSKY 18
\\x31c63146a635eb7465e5853020b39713ac356991 MUSO 18
\\x9c78ee466d6cb57a4d01fd887d2b5dfb2d46288f MUST 18
\\x8ee04e1e9400d4e2091ff3a46509e246e2f34542 MUSUBI 9
\\xa49d7499271ae71cd8ab9ac515e6694c755d400c MUTE 18
\\x581911b360b6eb3a14ef295a83a91dc2bce2d6f7 MVC 18
\\xcbe7142f5c16755d8683ba329efa1abf7b54482d MVEDA 8
\\x45c943973e65d069906b0dc33dc31d1d7d9d09dc MVH 8
\\x72e364f2abdc788b7e918bc238b21f109cd634d7 MVI 18
\\xf72fcd9dcf0190923fadd44811e240ef4533fc86 MVIXY 18
\\xa849eaae994fb86afa73382e9bd88c2b6b18dc71 MVL 18
\\x65fc94d99cb301c5630c485d312e6ff5edde13d0 MVP 18
\\x8a77e40936bbc27e80e9a3f526368c967869c86d MVP 18
\\x6425c6be902d692ae2db752b3c268afadb099d3b MWAT 18
\\x3521c85c3000bff57eac04489eb05bbd3193a531 MWBTC 18
\\x45128cb743951121fb70cb570c0784492732778a MWG 18
\\x11eef04c884e24d9b7b4760e7476d06ddf797f36 MX 18
\\x5ca381bbfb58f0092df149bd3d243b08b9a8386e MXC 18
\\x6a750d255416483bec1a31ca7050c6dac4263b57 MXM 18
\\x8e766f57f7d16ca50b4a0b90b88f6468a09b0439 MXM 18
\\x6251e725cd45fb1af99354035a414a2c0890b929 MXT 18
\\x8a6f3bf52a26a21531514e23016eeae8ba7e7018 MXX 8
\\x5d60d8d7ef6d37e16ebabc324de3be57f135e0bc MYB 18
\\xb8323cfafb0e6cc60ce332f1181d56e91ba0d8ba MYC 18
\\xe1ac9eb7cddabfd9e5ca49c23bd521afcdf8be49 MYC 18
\\x1efb2286bf89f01488c6b2a22b2556c0f45e972b MYFI 18
\\x5273063725a43a323300c502478c22fbb4e92c2d MYID 18
\\xc8645f0d6a622e2a9a66c1db9d33b1a46b4462dc MYK 18
\\x50987e6be405ebac691f8988304562e5efc3b2ea MYO 18
\\x75d12e4f91df721fafcae4c6cd1d5280381370ac MYOBU 9
\\xdfdd3459d4f87234751696840092ee20c970fb07 MYOBU 9
\\x4cf89ca06ad997bc732dc876ed2a7f26a9e7f361 MYST 18
\\xa645264C5603E96c3b0B078cdab68733794B0A71 MYST 8
\\xa12d7e5319f5b43476ef19d1569e10097cacdfe2 MYTH 18
\\x45af324f53a8d7da1752dad74adc1748126d7978 MYTV 18
\\x2129ff6000b95a973236020bcd2b2006b0d8e019 MYX 18
\\x075190c6130ea0a3a7e40802f1d77f4ea8f38fe2 N0031 18
\\xacbd826394189cf2623c6df98a18b41fc8ffc16d N1 18
\\x32c868f6318d6334b2250f323d914bc2239e4eee N3RDZ 18
\\x630bc7dd0abfc2d196289ce09db947dd2cafae7c NABOX 18
\\x2e10348ee563dec5fe483de558d1946b7a3372c2 NAKA 18
\\xe1a4c5bbb704a92599fedb191f451e0d3a1ed842 NAME 18
\\x2f7b618993cc3848d6c7ed9cdd5e835e4fe22b98 NAMI 18
\\x7eb4db4dddb16a329c5ade17a8a0178331267e28 NAMI 18
\\xb393cd041afc1aca4c380c663793fe2c7b8a0212 NAN 18
\\xffe02ee4c69edf1b340fcad64fbd6b37a7b9e265 NANJ 8
\\x4a615bb7166210cce20e6642a6f8fb5d4d044496 NAOS 18
\\x5d65d971895edc438f465c17db6992698a52318d NAS 18
\\x90d46a9636b973f18186541d1b04ed3621a49cb0 NAT 18
\\xecb79a9b7559168174c41b153997bc462b6dfe4e NAT 18
\\x7d529a5b3c41126760a0fa3c1a9652d8a7a07793 NAWA 18
\\x9f195617fa8fbad9540c5d113a99a0a0172aaedc NBC 18
\\xeb58343b36c7528f23caae63a150240241310049 NBU 18
\\x809826cceab68c387726af962713b64cb5cb3cca nCash 18
\\x5d48f293baed247a2d0189058ba37aa238bd4725 NCC 18
\\xe0c8b298db4cffe05d1bea0bb1ba414522b33c1b NCDT 18
\\xdb5c3c46e28b53a39c255aa39a411dd64e5fed9c NCR 18
\\x8a9c4dfe8b9d8962b31e4e16f8321c44d48e246e NCT 18
\\x9e46a38f5daabe8683e10793b06749eef7d733d1 NCT 18
\\x6ec47a178a9d50d4ec4683003d8324f19ca35382 NDN 18
\\x739763a258640919981f9ba610ae65492455be53 NDR 18
\\x747f564d258612ec5c4e24742c5fd4110bcbe46b NDS 18
\\x1966d718a565566e8e202792658d7b5ff4ece469 NDX 18
\\x86772b1409b61c639eaac9ba0acfbb6e238e5f83 NDX 18
\\xacce88f5a63a5e65db9aa7303720be16b556e751 NEAL 18
\\x85f17cf997934a597031b2e18a9ab6ebd4b9f6a4 NEAR 24
\\x7f0c8b125040f707441cad9e5ed8a8408673b455 NEBO 18
\\xcc80c051057b774cd75067dc48f8987c4eb97a5e NEC 18
\\xe367d6a0ba57a71fd76e449dced9d67b5feb5062 NEKO 18
\\x71e02750c97a940eccc6f36be05763842b31e1fe NELK 18
\\x957b28f93b0e01557e21e6c564ab26ddc2d18ec5 NEMO 18
\\x04abeda201850ac0124161f037efd70c74ddc74c NEST 18
\\xa823e6722006afe99e91c30ff5295052fe6b8e32 NEU 18
\\x1997830b5beb723f5089bb8fc38766d419a0444d NEWINU 9
\\x94b593002a327f2a3f1b190c50d3bcc8b869b5f5 NEWS 18
\\xae9cbe6ebf72a51c9fcea3830485614486318fd4 NEWTON 18
\\xa7be196d92629620154291e4b90c056517489904 NEX 18
\\xe2dc070524a6e305ddb64d8513dc444b6a1ec845 NEX 8
\\xb62132e35a6c13ee1ee0f84dc5d40bad8d815206 NEXO 18
\\x515d562496C43487eb2DDce1a2A7721148D44E36 NEXOUSDB 18
\\x377d552914e7a104bc22b4f3b6268ddc69615be7 NEXT 18
\\xdfdb7f72c1f195c5951a234e8db9806eb0635346 NFD 18
\\xcb8d1260f9c92a3a545d409466280ffdd7af7042 NFT 18
\\xef40b859d21e4d566a3d713e756197c021bffaaa NFT 6
\\x1847e59d9c2f30c7fe0347ba3e53da1ae8a7f0e8 NFTA 18
\\x9a54a39a8d78cd6031636628a11c890124b1b5cf NFTA 18
\\xbf6ff49ffd3d104302ef0ab0f10f5a84324c091c NFTFY 18
\\xe5feeac09d36b18b3fa757e5cf3f8da6b8e27f4c NFTI 18
\\x3c8d2fce49906e11e71cb16fa0ffeb2b16c29638 NFTL 18
\\xe7f72bc0252ca7b16dbb72eeee1afcdb2429f2dd NFTL 18
\\x68bb81b3f67f7aab5fd1390ecb0b8e1a806f2465 NFTP 18
\\x08037036451c768465369431da5c671ad9b37dbc NFTS 18
\\x5fa2e9ba5757504b3d6e8f6da03cc40d4ce19499 NFTT 18
\\x0fe629d1e84e171f8ff0c1ded2cc2221caa48a3f NFTX-MASK 18
\\x87d73e916d7057945c9bcd8cdd94e42a6f47f776 NFTX 18
\\xe1d7c7a4596b038ced2a84bf65b8647271c53208 NFTY 18
\\x2d39ec4da54329d28d230b4973f5aa27886c3aee NFXC 18
\\x1cbb83ebcd552d5ebf8131ef8c9cd9d9bab342bc NFY 18
\\x72dd4b6bd852a3aa172be4d6c5a6dbec588cf131 NGC 19
\\xed0d5747a9ab03a75fbfec3228cd55848245b75d NGM 6
\\x1ebd8d3ca115451b9b6bbaa7ee2f7b0f96e49fd8 NGOT 5
\\x62947ff43626ea26427be5ae4c7dd03b4f1ca872 NHC 8
\\xdb11f6fc8e16c02719e9c2eb3c4c762fee8f5c5b NIA 18
\\x53f64be99da00fec224eaf9f8ce2012149d2fc88 NICE 18
\\xc4895f94340f30fc126d1149d6cbd4a5fea50890 NICKEL 18
\\x7e291890b01e5181f7ecc98d79ffbe12ad23df9e NIF 18
\\x7c8155909cd385f120a56ef90728dd50f9ccbe52 NII 15
\\x852e5427c86a3b46dd25e5fe027bb15f53c4bcb8 NIIFI 15
\\x47252a63c723889814aebcac0683e615624cec64 NIL 18
\\x645035d009182b480fe554d2926664105d62c309 NIMBUS 9
\\xc813ea5e3b48bebeedb796ab42a30c5599b01740 NIOX 4
\\x2b90f0020aff33ecfef42c9c729031a04736f268 NJINU 18
\\x5cf04716ba20127f1e2297addcf4b5035000c9eb NKN 18
\\x48e234d2ddcb32d780971c0df7fdde25bba192de NLD 18
\\x493c8d6a973246a7b26aa8ef4b1494867a825de5 NLINK 3
\\x1776e1f26f98b1a5df9cd347953a26dd3cb46671 NMR 18
\\xe2a05a52bb1582a8c436e972531cda45b45d7ff4 NMST 18
\\xd81b71cbb89b2800cdb000aa277dc1491dc923c3 NMT 18
\\xd9a6803f41a006cbf389f21e55d7a6079dfe8df3 NMT 19
\\xb66a2131a6b840dd020151f80723caed603efb51 NNB 18
\\x0fd3822072ad001aac1c90a09d9506f097f24458 NOA 9
\\x58a4884182d9e835597f405e5f258290e46ae7c2 NOAH 18
\\xfce94fde7ac091c2f1db00d62f15eeb82b624389 NOAHARK 18
\\x41b3f18c6384dc9a39c33afeca60d9b8e61eaa9f NOAHP 18
\\x0c3ef32f802967db75b9d49fe1e76620151ccb81 NODE 5
\\x435d664f72d6f194ef67d63b5f3936650187b131 NODE 18
\\xda007777d86ac6d989cc9f79a73261b3fc5e0da0 NODE 18
\\xa8c8cfb141a3bb59fea1e2ea6b79b5ecbcd7b6ca NOIA 18
\\xfc858154c0b2c4a3323046fb505811f110ebda57 NOIA 18
\\x36151737b45017234e9570cf9a1cac97138953c2 NOIZ 18
\\x1fc52f1abade452dd4674477d4711951700b3d27 NOKU 18
\\x1fc05d480b1ef1175a31123bfdbd36bfee256889 NOOB 18
\\x420ab548b18911717ed7c4ccbf46371ea758458c NOODLE 18
\\x6e9730ecffbed43fd876a264c982e254ef05a0de NORD 18
\\x7061ee0896ab2c1865078b6c91731f67a89ea6a4 NOS 18
\\x40ce0a1d8f4999807b92ec266a025f071814b15d NOTRUMP 18
\\xb48b7e5bf6563b3e0a85055821a83deb8cfc12f6 NOVA 3
\\xe9a95d175a5f4c9369f3b74222402eb1b837693b NOW 8
\\x97fb6fc2ad532033af97043b563131c5204f8a35 NPLC 18
\\xa15c7ebe1f07caf6bff097d8a589fb8ac49ae5b3 NPXS 18
\\x69fa8e7f6bf1ca1fb0de61e1366f7412b827cc51 NRCH 9
\\x4282456d6d24332758fca738f98c3bb0f04da215 NRMN 4
\\x3918c42f14f2eb1168365f911f63e540e5a306b5 NRP 8
\\x9d79d5b61de59d882ce90125b18f74af650acb93 NSBT 6
\\xe069af87450fb51fc0d0e044617f1c134163e591 NSDX 18
\\x4e3bddd468abfc6c88bc25daa5d894380ced5bc8 NSS 18
\\x20945ca1df56d237fd40036d47e866c7dccd2114 Nsure 18
\\xbe393aa534f82c0ffac31bf06a23e283acb3352b NTB 18
\\x5d4d57cd06fa7fe99e26fdc481b468f77f05073c NTK 18
\\x69beab403438253f13b6e92db91f7fb849258263 NTK 18
\\xcfb152e5b93fc2c9906d4ff41fc8407dfa5e8851 NTON 18
\\xeccf15a4b5976a1365baed5297058b4ca42777c0 NTRS 18
\\x44ea84a85616f8e9cd719fc843de31d852ad7240 NTRUMP 15
\\xfc0d6cf33e38bce7ca7d89c0e292274031b7157a NTVRK 18
\\xfdb15e5e6799be72798b1ccfaecbf186bf73a0c4 NTX 8
\\x4fe83213d56308330ec302a8bd641f1d0113a4cc NU 18
\\xbbc23359b5b9a59404d41b71503bd9e92e7f30e3 NUDES 18
\\x245ef47d4d0505ecf3ac463f4d81f41ade8f1fd1 NUG 18
\\xb91318f35bdb262e9423bc7c7c2a3a93dd93c92c NULS 18
\\x84294fc9710e1252d407d3d80a84bc39001bd4a8 NUTS 18
\\xe2db94e8d4e4144c336e45668a792d17d48a482c NUVO 18
\\x89bd2e7e388fab44ae88bef4e1ad12b4f1e0911c NUX 18
\\x38f7cd43662d1cff4cc3c2c4b749f7cfed1d1db3 NVA 18
\\x968f6f898a6df937fc1859b323ac2f14643e3fed NWC 18
\\x41ab75435668919bb507f871dd01e9762c2d173a NXCT 18
\\x6839ac5ea8082688b706c773d5d2afd7d503fdd4 NXL 0
\\xd7c49cee7e9188cca6ad8ff264c1da2e69d4cf3b NXM 18
\\xbf4a9a37ecfc21825011285222c36ab35de51f14 NYAN-2 18
\\xc1215988f2e555ac324d1e2d2a6164f1010ff29f NYANTE 8
\\x798a9055a98913835bbfb45a0bbc209438dcfd97 NYB 18
\\x24d8c2163d6b13a6b8770b794d00c98cb4e0cbca O-OCEAN-MAR22 18
\\xee9801669c6138e84bd50deb500827b776777d28 O3 18
\\xf17e9e4e32d842e4ddfbed5750a26f7bd77777ee OAC 18
\\x1788430620960f9a70e3dc14202a3a35dde1a316 OAP 18
\\x701c244b988a513c945973defa05de933b23fe1d OAX 18
\\x3678d8cc9eb08875a3720f34c1c8d1e1b31f5a11 OBEE 18
\\xa8b6d0bd067ce5b2e4e9e225b2e0ff5eb74ded8a OBIC 18
\\xedadeb5faa413e6c8623461849dfd0b7c3790c32 OBOT 18
\\x595643d83b35df38e29058976c04000acfa31570 OBR 18
\\x8064d9ae6cdf087b1bcd5bdf3531bd5d8c537a68 OBTC 18
\\x466912baa9430a4a460b141ee8c580d817441449 OCB 18
\\x2f109021afe75b949429fe30523ee7c0d5b27207 OCC 18
\\x967da4048cd07ab37855c090aaf366e4ce1b9f48 OCEAN 18
\\x985dd3d42de1e256d09e1c10f112bccb8015ad41 OCEAN 18
\\x4092678e4e78230f46a1534c0fbc8fa39780892b OCN 18
\\xf5cfbc74057c610c8ef151a439252680ac68c6dc OCT 18
\\x7240ac91f01233baaf8b064248e80feaa5912ba3 OCTO 18
\\x49e90537d5ef6778fd000d1f05be20134f9f6dc6 ODC 8
\\xcd2828fc4d8e8a0ede91bb38cf64b1a81de65bf6 ODDZ 18
\\xbf52f2ab39e26e0951d2a02b49b7702abe30406a ODE 18
\\xa960d2ba7000d58773e7fa5754dec3bb40a069d5 ODEX 18
\\xa49dc04d118bdf4a3471f593c1bba0c99b2187ea ODI 18
\\x57c8d5d5b87a1580fdaf996cef674bb0d7f14c98 ODIN 18
\\xc0a25a24cce412e2fb407c08e3785437fee9ad1d OFT 18
\\x8a4491936a8e5a1662c8a755932b83dbe9634b0d OG 18
\\x8207c1ffc5b6804f6024322ccf34f29c3541ae26 OGN 18
\\xff0e5e014cf97e0615cb50f6f39da6388e2fae6e OGO 18
\\x1051a014e4b3f2bd08e5a7e52522f0f71628162b OGODS 18
\\x16ba8efe847ebdfef99d399902ec29397d403c30 OH 18
\\x1098269bfc70b26dea43f18f812d2b9854e874ba OHGEEZ 18
\\x383518188c0c6d7730d91b2c03a03c837814a899 OHM 9
\\x0275e1001e293c46cfe158b3702aade0b99f88a5 OIL 18
\\xa29a8e360c0cba25a3719763fde43a1ee570271d OIL 8
\\xae6eb6f6c0a1694968b9f78a4316319c27b0964b OIL 18
\\x9aeb50f542050172359a0e1a25a9933bc8c01259 OIN 8
\\x75231f58b43240c9718dd58b4967c5114342a86c OKB 18
\\x053e5ba7cb9669dcc2feb2d0e1d3d4a0ad6aae39 OKBBEAR 18
\\x8af785687ee8d75114b028997c9ca36b5cc67bc4 OKBBULL 18
\\x889bc62e94bb6902d022bb82b38f7fcd637df28c OKBHEDGE 18
\\xeeaa34af95b034bada4baf565063132c765b1fa5 OLCF 18
\\x64a60493d888728cf42616e034a0dfeae38efcf0 OLT 18
\\x6595b8fd9c920c81500dca94e53cdc712513fb1f OLY 18
\\x2baecdf43734f22fd5c152db08e3c27233f0c7d2 OM 18
\\x3593d125a4f7849a1b059e64f4517a86dd60c95d OM 18
\\xd6bd97a26232ba02172ff86b055d5d7be789335b OMC 18
\\xd26114cd6ee289accf82350c8d8487fedb8a0c07 OMG 18
\\x99eBD396Ce7AA095412a4Cd1A0C959D6Fd67B340 OMGBNT 18
\\x2b17b8927a8e9844b6ca11c5e0e818bb633c044d OMNIS 18
\\xd22dcf31ca28cf4dce530a0f120e244f4b4539eb OMNIUNIT 18
\\x3d1e3c5f658d74c585267350cac22fd44e8d951c OMS 18
\\x4e30910845f0cb4f66781b35c832eafc09774022 OMT 18
\\xb5dbc6d3cf380079df3b27135664b6bcf45d1869 OMX 8
\\x3b4caaaf6f3ce5bee2871c89987cbd825ac30822 ON 18
\\xd90e69f67203ebe02c917b5128629e77b4cd92dc ONC 18
\\x4d807509aece24c0fa5a102b6a3b059ec6e14392 ONE 18
\\x946551dd05c5abd7cc808927480225ce36d8c475 ONE 18
\\xc88f47067db2e25851317a2fdae73a22c0777c37 ONEBTC 9
\\xec0d77a58528a218cbf41fa6e1585c8d7a085868 ONEETH 9
\\x18cc17a1eed37c02a77b0b96b7890c7730e2a2cf ONELINK 9
\\x0b342c51d1592c41068d5d4b4da4a68c0a04d5a4 ONES 18
\\x7bd198b9107496fd5cc3d7655af52f43a8edbc4c ONEVBTC 9
\\x8f041a3940a5e6fb580075c3774e15fcfa0e1618 ONEWING 9
\\x12419eea0b053ffea92f9afcd7986a495e2cf0dd ONEZ 18
\\xd341d1680eeee3255b8c4c75bcce7eb57f144dae ONG 18
\\x8104E7ce81FaB39c42e34Cd9d8B654135261Fae8 ONGBNT 18
\\xcf9c692f7e62af3c571d4173fd4abf9a3e5330d0 ONIGIRI 18
\\x410e731c2970dce3add351064acf5ce9e33fdbf0 ONIT 18
\\x33384af34b03eaca63fd153f59589f504772b570 ONLEXPA 18
\\xb31c219959e06f9afbeb36b388a4bad13e802725 ONOT 18
\\x5bb29c33c4a3c29f56f8aca40b4db91d8a5fe2c5 ONS 18
\\xe0ad1806fd3e7edf6ff52fdb822432e847411033 ONX 18
\\x7778360f035c589fce2f4ea5786cbd8b36e5396b OOE 18
\\x69d9905b2e5f6f5433212b7f3c954433f23c1572 OOKS 18
\\xdb05ea0877a2622883941b939f0bb11d1ac7c400 OPCT 18
\\x69e8b9528cabda89fe846c67675b5d73d463a916 OPEN 18
\\x9d86b1b2554ec410eccffbf111a6994910111340 OPEN 8
\\x888888888889c00c67689029d7856aac1065ec11 OPIUM 18
\\xf4c17bc4979c1dc7b4ca50115358dec58c67fd9d OPM 18
\\xa829f97373069ee5d23175e4105df8fd49238be7 OPNN 18
\\x4355fc160f74328f9b383df2ec589bb3dfd82ba0 OPT 18
\\x4fe5851c9af07df9e5ad8217afae1ea72737ebda OPT 18
\\x7d25d9f10cd224ecce0bc824a2ec800db81c01d7 OPT 18
\\x80d55c03180349fff4a229102f62328220a96444 OPUL 18
\\x4c11249814f11b9346808179cf06e71ac328c1b5 ORAI 18
\\xee1cea7665ba7aa97e982edeaecb26b59a04d035 ORAO 18
\\x1b7c4d4f226ccf3211b0f99c4fdfb84a2606bf8e ORB 18
\\x11a2ab94ade17e96197c78f9d5f057332a19a0b9 ORBI 9
\\x2de27d3432d3188b53b02137e07b47896d347d45 ORBI 9
\\xff56cc6b1e6ded347aa0b7676c85ab0b3d08b0fa ORBS 18
\\x324af2d5353f2dd138e234b359d30d67c64b1b20 ORC 18
\\x662b67d00a13faf93254714dd601f5ed49ef2f51 ORC 18
\\xd6cb2adf47655b1babddc214d79257348cbc39a7 ORCL5 18
\\x69fe11b042789bc6e2fdaad064afd32bb298ae05 ORDR 18
\\x4f640f2529ee0cf119a2881485845fa8e61a782a ORE 18
\\x727f064a78dc734d33eec18d5370aef32ffd46e4 ORION 18
\\xd51e852630debc24e9e1041a03d80a0107f8ef0c ORM 0
\\xc96df921009b790dffca412375251ed1a2b75c60 ORME 8
\\x0258f474786ddfd37abce6df6bbb1dd5dfc4434a ORN 8
\\xc3eb2622190c57429aac3901808994443b64b466 ORO 18
\\x1c5b760f133220855340003b43cc9113ec494823 OROX 18
\\xac2e58a06e6265f1cf5084ee58da68e5d75b49ca ORS 18
\\xeb9a4b185816c354db92db09cc3b50be60b901b6 ORS 18
\\x5c0bc243fb13632c4d247f4f0bc27f2f58982c39 ORYX 18
\\xfdb29741f239a2406ae287913ef12415160378d3 OS 18
\\xc6abf3c09341741ac6041b0b08195701bdfd460c OSA 18
\\x24700a297960e8477ce3ca6c58b70a7af3410398 OSC 18
\\xc11a6ef32464985cbc52fed419e3a557de36cfc8 OSHIB 18
\\x39ad22c916f42af5f67371d6f2fb0dab42321a89 OSINA 4
\\x9b75848172677042269c63365b57b0a51c21d031 OSM 18
\\x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca OST 18
\\x86cc39e9f575667b56871274f2f0a3cc43b9eb88 OST 18
\\x010a0288af52ed61e32674d82bbc7ddbfa9a1324 OT-aUSDC-30DEC2021 6
\\x3d4e7f52efafb9e0c70179b688fc3965a75bcfea OT-CDAI-29DEC2022 8
\\x8fcb1783bf4b71a51f702af0c266729c4592204a OT-AUSDC-29DEC2022 6
\\xa86a0da9d05d0771955df05b44ca120661af16de OTB 18
\\x9720bcf5a92542d4e286792fc978b63a09731cf0 OTBC 18
\\xdff3d69a00759449f091561a0af99a218982bd7f OUR 18
\\x2a8e1e676ec238d8a992307b495b45b3feaa5e86 OUSD 18
\\x7c0afd49d40ec308d49e2926e5c99b037d54ee7e OUSD 18
\\x6b3760facdeb7f798cd13c0af2e4cd9ddc085122 OVI 18
\\x96dd2c778fb281294fa9c1d2b8af3b47369306f2 OvOa 18
\\x21bfbda47a0b4b5b1248c767ee49f7caa9b23697 OVR 18
\\x1a5f9352af8af974bfc03399e3767df6370d82e4 OWL 18
\\x2a7f709ee001069771ceb6d42e85035f7d18e736 OWL 18
\\x170b275ced089fffaebfe927f445a350ed9160dc OWN 8
\\xcc6f15be8573cb8243c42d300565566d328213dd OWN 18
\\x47dac6bd80f024575a6d367af5ba8e89202a09fc OXO 18
\\x4575f41308ec1483f3d399aa9a2826d74da13deb OXT 18
\\x965697b4ef02f0de01384d0d4f9f782b1670c163 OXY 6
\\x33c8517e8b1beefd4a5275ab72acf39cd18331a3 OYT 18
\\xabe9b2e4bbd5a8c718752c41254ed81aae7d98bf P2P 10
\\xa2a19165c17b36a5c753a246c1e188489754a693 P2PG 8
\\x4527a3b4a8a150403090a99b87effc96f2195047 P2PS 8
\\x3d9ac8e7a9c9be11dfac1677dda901e28d44527f PAA 8
\\x66e7ce35578a37209d01f99f3d2ff271f981f581 PACT 18
\\x5067006f830224960fb419d7f25a3a53e9919bb0 PAD 18
\\x992a8a9f4bde0fb2ee1f5bbb3cb7b1e64748e13d PAD 18
\\xea7cc765ebc94c4805e3bff28d7e4ae48d06468a PAD 18
\\x1614f18fc94f47967a3fbe5ffcd46d4e7da3d787 PAID 18
\\x4c6ec08cf3fc987c6c4beb03184d335a2dfc4042 PAINT 18
\\xc8af92371af91965c493569693c4385567f874d0 PAIR 18
\\x7f0f118d083d5175ab9d2d34c4c8fa4f43c3f47b PAMP 8
\\xf0fac7104aac544e4a7ce1a55adf2b5a25c65bd1 PAMP 18
\\x536381a8628dbcc8c70ac9a30a7258442eab4c92 PAN 8
\\xd56dac73a4d6766464b38ec6d91eb45ce7457c44 PAN 18
\\x5bc52b5367b637bec5f818e69208eb9f03c426ee PAND 9
\\x7a3c45f34ea5df6fe5f6af710ec8a04d388a71d1 PANDO 18
\\x7ae1d57b58fa6411f32948314badd83583ee0e8c PAPER 18
\\xddce093888c8dc636677cd29bc6c68d35cfdac33 PAPER 18
\\x1beef31946fbbb40b877a72e4ae04a8d1a5cee06 PAR 18
\\x68037790a0229e9ce6eaa8a99ea92964106c4703 PAR 18
\\x3a8d5bc8a8948b68dfc0ce9c14ac4150e083518c PARA 18
\\xea5f88e54d982cbb0c441cde4e79bc305e5b43bc PARETO 18
\\x314bd765cab4774b2e547eb0aa15013e03ff74d2 PARTY 6
\\x6c4522f0035bed2180b40f4c5d9dbaab64b41325 PASS 18
\\xe54f9e6ab80ebc28515af8b8233c1aee6506a15e PASTA 18
\\xf3b3cad094b89392fce5fafd40bc03b80f2bc624 PAT 18
\\x8e870d67f660d95d5be530380d0ec0bd388289e1 PAX 18
\\xc1d204d77861def49b6e769347a883b15ec397ff PAX 18
\\x45804880de22913dafe09f4980848ece6ecbaf78 PAXG 18
\\x3c4a46f0c075a7f191a7459bb51eb1f81ac36f8a PAXGBEAR 18
\\x81f09ed4b98b1c8e99b1fa838b72acb842afe94c PAXGBULL 18
\\xb97048628db6b661d4c2aa833e95dbe1a905b280 PAY 18
\\xcb2fa15f4ea7c55bf6ef9456a662412b137043e9 PAYOU 18
\\x8ef47555856f6ce2e0cd7c36aef4fab317d2e2e2 PAYT 18
\\x62a56a4a2ef4d355d34d10fbf837e747504d38d4 PAYX 2
\\xbcd8756ea481608ea3dd5a555493305cf0a79640 PAZZI 18
\\x74c287ad5328daca276c6a1c1f149415b12c148d PAZZY 18
\\x44b537b6f94c73a54f7bf8a9b68f8125da3c330b PBASE 9
\\x55648de19836338549130b1af587f16bea46f66b PBL 18
\\x0d6ae2a429df13e44a07cd2969e085e4833f64a0 PBR 18
\\x298d492e8c1d909d3f63bc4a36c66c64acb3d695 PBR 18
\\x5228a22e72ccc52d415ecfd199f99d0665e7733b pBTC 18
\\xa8b12cc90abf65191532a12bb5394a714a46d358 PBTC35A 18
\\xEEF7551e59b34F431D71C7593249F61D5c52ce65 pBTCBNT 18
\\x6B09B01c19E4bD573eae4e235ee47CBD51dF3B6E pBTCUSDB 18
\\xd528cf2e081f72908e086f8800977df826b5a483 PBX 18
\\xa6714a2e5f0b1bdb97b895b0913b4fcd3a775e4d PC 5
\\xe3f4b4a5d91e5cb9435b947f090a319737036312 PCH 18
\\xa4c6984e817c086ddc3ebaeedbdcc01469586918 PCHS 18
\\x0f02e27745e3b6e9e1310d19469e2b5d7b5ec99a PCL 8
\\x6096d2460cf5177e40b515223428dc005ad35123 PCM 18
\\x657b83a0336561c8f64389a6f5ade675c04b0c3b PCNT 18
\\x2925c2a312a4934fd695fab72b1e425cc41978f2 PCPI 18
\\xbc16da9df0a22f01a16bc0620a27e7d6d6488550 PCT 18
\\xd81b1a8b1ad00baa2d6609e0bae28a38713872f7 PCUSDC 6
\\x9043d4d51c9d2e31e3f169de4551e416970c27ef PDAI 18
\\xf59ae934f6fe444afc309586cc60a84a0f89aaea PDEX 18
\\xb16e967ff83de3f1e9fceafbc2c28c1c5c56ef91 PDOG 18
\\xcde07f2d976b2687944ad2c70e2cec9a7034b75b PDT 18
\\x630d98424efe0ea27fb1b3ab7741907dffeaad78 PEAK 8
\\x432bf73443909c33b545efed536a5246c9a722ca PEC 18
\\x31d939dc09a6bb55642fcbf9d56166ebc0bdec9a PEECH 18
\\xe1030b48b2033314979143766d7dc1f40ef8ce11 PEEPS 18
\\x5dd115eb39a0fc5da9022e4bbb8e8679ca066a74 PEER 18
\\x8ae56a6850a7cbeac3c3ab2cb311e7620167eac8 PEG 18
\\xa485bD50228440797Abb4d4595161d7546811160 PEG:USD 18
\\x88bd6efe33bc82860278c044efa33364c6285032 PEGS 18
\\x808507121b80c02388fad14726482e061b8da827 PENDLE 18
\\x5d30ad9c6374bf925d0a75454fa327aacf778492 PERI 18
\\xeca82185adce47f39c684352b0439f030f860318 PERL 18
\\xbc396689893d065f41bc2c6ecbee5e0085233447 PERP 18
\\x3c6ff50c9ec362efa359317009428d52115fe643 PERX 18
\\x6ad61128aba16b9d4295e6cf8bdb57b70085c9c7 PETH 18
\\xf53ad2c6851052a81b42133467480961b2321c09 PETH 18
\\xa15690e9205de386ce849889831c1668c300c1ad PETH18C 18
\\xa701122c1b67220a8b6883d03c8ad67896b12466 PEW 8
\\x6a8c66cab4f766e5e30b4e9445582094303cc322 PFARM 18
\\x46760d2bf2f4dd5405646d9b2ce7b723efe74a48 PFB 18
\\x7b69d465c0f9fb22affae56aa86149973e9b0966 PFI 18
\\x989ac4c1fc5ab2b8c86924c6253aaf1ee68e9ce9 PFI 18
\\x87c4bd3038176301e81e6682ce51a6fdaefabd0c PFID 18
\\x6353eadf8d1d4421002332bb9074222b14d54881 PFR 18
\\x9fadea1aff842d407893e21dbd0e2017b4c287b6 PGF7T 18
\\xc949fc82a15964fb5b97e5cf8f9ffed139086821 PGPAY 18
\\x931ad0628aa11791c26ff4d41ce23e40c31c5e4e PGS 8
\\xeaccb6e0f24d66cf4aa6cbda33971b9231d332a1 PGT 18
\\x98c36c0e953463bd5146c8783ce081ce1d187acf PGU 18
\\x6c5ba91642f10282b576d91922ae6448c9d52f4e PHA 18
\\xc4d586ef7be9ebe80bd5ee4fbd228fe2db5f2c4e PHIBA 9
\\xf73fc4b74a4cc6f9ea203a9d5bbff4ffce3a4c48 PHN 18
\\x38a2fdc11f526ddd5a607c1f251c065f40fbf2f7 PHNX 18
\\x79256db1bdb6259315a1a3d7dd237f69cadfd8fc PHOON 18
\\x457a57e931cba4dff5ce8500cc0dff18356df041 PHTF 18
\\xe1fc4455f62a6e89476f1072530c20cf1a0622da PHTR 18
\\xb39185e33e8c28e0bb3dbbce24da5dea6379ae91 PHUNK 18
\\xaec65404ddc3af3c897ad89571d5772c1a695f22 PHX 18
\\x1864ce27e9f7517047933caae530674e8c70b8a7 PIB 18
\\x1baffbc23f2246040cce12f7a140c38c5dc73e46 PIB 18
\\x1ece1739dae08253ae582c404511b37355b42c84 PICA 4
\\x1e05f68b29b286fb3bbad3c688d7e2abda549b80 PICIPO 18
\\x287609a15a683640a5bbc4d93d4d5f4ed6bad3a0 PICK 18
\\x429881672b9ae42b8eba0e26cd9c73711b891ca5 PICKLE 18
\\x607c794cda77efb21f8848b7910ecf27451ae842 PIE 18
\\x47e820df943170b0e31f9e18ecd5bdd67b77ff1f PIGX 18
\\xa682ee16b497afceedf47e4820fc2af3845fd2d2 PIKA 18
\\xe09fb60e8d6e7e1cebbe821bd5c3fc67a40f86bf PIKACHU 18
\\xc1f976b91217e240885536af8b63bc8b5269a9be PIN 18
\\x21cd6af01383651ed10554394c0497f9db5e5dbc PING 8
\\xfecba472b2540c5a2d3700b2c9e06f0aa7dc6462 PINT 18
\\xe64509f0bf07ce2d29a7ef19a8a9bc065477c1b4 PIPL 8
\\x26607ac599266b21d13c7acf7942c7701a8b699c PIPT 18
\\x834ce7ad163ab3be0c5fd4e0a81e67ac8f51e00c PIS 18
\\x315dc1b524de57ae8e809a2e97699dbc895b8a21 PIST 9
\\x87f56ee356b434187105b40f96b230f5283c0ab4 PITCH 9
\\x89045d0af6a12782ec6f701ee6698beaf17d0ea2 PIXEL 18
\\xad4c6ad1f02def1710a2d06c875a31d4868bd70a PIXU 9
\\x61bc1f530ac6193d73af1e1a6a14cb44b9c3f915 PJM 18
\\xe6f143a0e0a8f24f6294ce3432ea10fad0206920 PKEX 18
\\x8b39b70e39aa811b69365398e0aace9bee238aeb PKF 18
\\x02f2d4a04e6e01ace88bd2cd632875543b2ef577 PKG 18
\\x6a532b08c654a1a86069b74c560d8fa0ff842218 PKP 18
\\x2604fa406be957e542beb89e6754fcde6815e83f PKT 18
\\x0198f46f520f33cd4329bd4be380a25a90536cd5 PLA 18
\\x307d45afbb7e84f82ef3d251a6bb0f00edf632e4 PLA 18
\\x3a4f40631a4f906c2bad353ed06de7a5d3fcb430 PLA 18
\\x60571e95e12c78cba5223042692908f0649435a5 PLAAS 18
\\x130966628846bfd36ff31a822705796e8cb8c18d PLAY 18
\\x33e18a092a93ff21ad04746c7da12e35d34dc7c4 PLAY 18
\\xe477292f1b3268687a29376116b0ed27a9c76170 PLAY 18
\\x0affa06e7fbe5bc9a764c979aa66e8256a631f02 PLBT 6
\\xe9541c7ea236332f4d07be73101670f39b27da02 PLD 18
\\xaeeaa9c0ecd8d50ab7fcd159bddad0f52ce360c2 PLE 18
\\xada62f7ccd6af6cacff04accbc4f56f3d4ffd4ef PLF 18
\\x85ca6710d0f1d511d130f6935edda88acbd921bd PLG 18
\\xba069ee53b8b531f3ab117c92ca09a204c9e6285 PLG 18
\\x72f020f8f3e8fd9382705723cd26380f8d0c66bb PLOT 18
\\xe3818504c1b32bf1557b16c238b2e01fd3149c17 PLR 18
\\x22314b3d1375548c969eaae65e43203b51f9e9e9 PLST 2
\\x429d83bb0dcb8cdd5311e34680adc8b12070a07f PLTC 18
\\x5979f50f1d4c08f9a53863c2f39a7b0492c38d0f PLTC 18
\\xd8912c10681d8b21fd3742244f44658dba12264e PLU 18
\\x47da5456bc2e1ce391b645ce80f2e97192e4976a PLUG 18
\\xf38011f9153acffaca3fbfc42ddfa766c980d967 PLUT 18
\\x846c66cf71c43f80403b51fe3906b3599d63336f PMA 18
\\xaffcdd96531bcd66faed95fc61e443d08f79efef PMGT 5
\\x1796ae0b0fa4862485106a0de9b654efe301d0b2 PMON 18
\\xc1322d8ae3b0e2e437e0ae36388d0cfd2c02f1c9 PMT 4
\\x31141dc226c214d40b1f77feb532741d8f893c6f PNC 18
\\x469a8ea7683c27d31cd9b0de769151d8a8b66c5a PNGN 9
\\x93ed3fbe21207ec2e8f2d3c3de6e058cb73bc04d PNK 18
\\x9fc8f0ca1668e87294941b7f627e9c15ea06b459 PNL 18
\\xaf691508ba57d416f895e32a1616da1024e882d2 PNODE 18
\\x53066cddbc0099eb6c96785d9b3df2aaeede5da3 PNT 18
\\x89ab32156e46f46d02ade3fecbe5fc4243b9aaed PNT 18
\\x6758b7d441a9739b98552b373703d8d3d14f9e62 POA20 18
\\x926be13b4d93f29ea254e4e518f33099e45d7f06 POCC 18
\\xc697648021870cc250fbcd6ea8e77524f57b45c0 POD 18
\\x0e0989b1f9b8a38983c2ba8053269ca62ec9b195 POE 8
\\xb71e9c710e84f003d456552d6aa0c37e0107c4dc POGE 9
\\xbc8deee89f1cf4b661514185aa1ab780336c4c4a POK 18
\\xc17fbe1d709ddf6c0b6665dd0591046815ac7554 POL 18
\\xbbe5c81412bad19877300d63cc8d8264a154091e POLA 18
\\xc691bc298a304d591ad9b352c7a8d216de9f2ced POLA 18
\\xaa8330fb2b4d5d07abfe7a72262752a8505c6b37 POLC 18
\\x622f2962ae78e8686ecc1e30cf2f9a6e5ac35626 POLIS 18
\\xd478161c952357f05f0292b56012cd8457f1cfbf POLK 18
\\x705ee96c1c160842c92c1aecfcffccc9c412e3d9 POLL 18
\\x83e6f1e41cdd28eaceb20cb649155049fac3d5aa POLS 18
\\x4a6ab9792e9f046c3ab22d8602450de5186be9a7 POLVEN 18
\\x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec POLY 18
\\xdf4df8ee1bd1c9f01e60ee15e4c2f7643b690699 POMAC 18
\\x57b946008913b82e4df85f501cbaed910e58d26c POND 18
\\x56a980328aee33aabb540a02e002c8323326bf36 POODL 9
\\x0cec1a9154ff802e7934fc916ed7ca50bde6844e POOL 18
\\x69a95185ee2a045cdc4bcd1b1df10710395e4e23 POOLZ 18
\\x4c44f9183d99df69b1b5fa2484bec6efcffa5c98 POP 18
\\x5d858bcd53e085920620549214a8b27ce2f04670 POP 18
\\x7fc3ec3574d408f3b59cd88709bacb42575ebf2b POP 18
\\x98629512ed2239974e169341be5b920ea4dcdb21 POP! 18
\\x8db90e3e7d04c875a51997092f9178fcac9defdb PORTAL 18
\\x685aea4f02e39e5a5bb7f7117e88db1151f38364 POSH 18
\\x042afd3869a47e2d5d42cc787d5c9e19df32185f POT 18
\\x66e714bfb21f255f57c0682ac1e20254a7821779 POW 18
\\xf2f9a7e93f845b3ce154efbeb64fb9346fcce509 POWER 18
\\x595832f8fc6bf59c85c527fec3740a1b7a361269 POWR 6
\\x168D7Bbf38E17941173a352f1352DF91a7771dF3 POWRBNT 18
\\x054d64b73d3d8a21af3d764efd76bcaa774f3bb2 PPAY 18
\\x4d2ee5dae46c86da2ff521f7657dad98834f97b8 PPBLZ 18
\\x84f710bae3316a74fb0fcb01904d2578a4cc6a26 PPC 1
\\xf1f508c7c9f0d1b15a76fba564eef2d956220cf7 PPDEX 18
\\xc42209accc14029c1012fb5680d95fbd6036e2a0 PPP 18
\\xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a PPT 8
\\xf8c17c840549974ec17c6573b3963f1e3046c0eb PQT 18
\\x2c2f7e7c5604d162d75641256b80f1bf6f4dc796 PRARE 18
\\xcaa05e82bdcba9e25cd1a3bf1afb790c1758943d PRC 8
\\x556148562d5ddeb72545d7ec4b3ec8edc8f55ba7 PRDX 18
\\x4e085036a1b732cbe4ffb1c12ddfdd87e7c3664d PRDZ 18
\\xec213f83defb583af3a000b1c0ada660b1902a0f PRE 18
\\x6399c842dd2be3de30bf99bc7d1bbf6fa3650e70 PREMIA 18
\\xb9871cb10738eada636432e86fc0cb920dc3de24 PRIA 18
\\xe59064a8185ed1fca1d17999621efedfab4425c9 PRIME 18
\\x54b8c98268da0055971652a95f2bfd3a9349a38c PRINT 18
\\xd46df541148932690b81092f600f35208afd4325 PRISM 18
\\x3adfc4999f77d04c8341bac5f3a76f58dff5b37a PRIX 8
\\x1844b21593262668b7248d0f57a220caaba46ab9 PRL 18
\\x226bb599a12c826476e3a771454697ea52e9e220 PRO 8
\\x9041Fe5B3FDEA0f5e4afDC17e75180738D877A01 PRO 18
\\xfb559ce67ff522ec0b9ba7f5dc9dc7ef6c139803 PROB 18
\\xfc82bb4ba86045af6f327323a46e80412b91b27d PROM 18
\\x8d5db0c1f0681071cb38a382ae6704588d9da587 PROPHET 9
\\x6fe56c0bcdd471359019fcbc48863d6c3e9d4f41 PROPS 18
\\x094f00cb5e31ab6164e3cacb654e8d6c2b3b471c PROS 6
\\x8642a849d0dcb7a15a974794668adcfbe4794b56 PROS 18
\\x2341dd0a96a0dab62aa1efb93d59ff7f3bdb8932 PROT 18
\\x362bc847a3a9637d3af6624eec853618a43ed7d2 PRQ 18
\\xa211f450ce88deb31d3f12ae3c1ebf6b0e55a5d9 PRQBOOST 18
\\xe0d95530820aafc51b1d98023aa1ff000b78d8b2 PRS 18
\\x00ad22ab1006fc282674887aff1114e5ad14077d PRSTX 18
\\x6d0f5149c502faf215c89ab306ec3e50b15e2892 PRT 18
\\xf01d7939441a3b1b108c70a28dcd99c6a98ad4b4 PRTL 18
\\x6d10e0194400a04600881057787eb9e9c063dca0 PRTN 18
\\xa36e59c08c9f251a6b7a9eb6be6e32fd6157acd0 PRVS 18
\\x22acaee85ddb83a3a33b7f0928a0e2c3bfdb6a4f PRXY 18
\\x3c81d482172cc273c3b91dd9d8eb212023d00521 PRY 18
\\x88d59ba796fdf639ded3b5e720988d59fdb71eb8 PSHP 18
\\xd4cb461eace80708078450e465881599d2235f1a PSI 9
\\x1c5f43710a1776b0ea7191b7ead75d4b98d69858 PSK 18
\\x3f84c4184b35c488f7fe4a12469610c9b1cb03c9 PSK 18
\\x36ce7a52cda404b8fa87a98d0d17ec7dd0b144ed PSLIP 18
\\xe3fedaecd47aa8eab6b23227b0ee56f092c967a9 PST 18
\\x519c1001d550c0a1dae7d1fc220f7d14c2a521bb PSWAP 18
\\x51bb9c623226ce781f4a54fc8f4a530a47142b6b PTE 18
\\x02eca910cb3a7d43ebc7e8028652ed5c6b70259b PTERIA 18
\\xc57d533c50bc22247d49a368880fb49a1caa39f7 PTF 18
\\x7c32db0645a259fae61353c1f891151a2e7f8c1e PTM 18
\\xfe76be9cec465ed3219a9972c21655d57d21aec6 PTN 18
\\x4946583c5b86e01ccd30c71a05617d06e3e73060 PTON 18
\\x8ae4bf2c33a8e667de34b54938b0ccd03eb8cc06 PTOY 8
\\x4689a4e169eb39cc9078c0940e21ff1aa8a39b9c PTT 18
\\xabea7663c472648d674bd3403d94c858dfeef728 PUDGY 18
\\xdb69c3f8977f78952303987e87153c1988cf65a9 PUGL 18
\\x52a047ee205701895ee06a375492490ec9c597ce PULSE 18
\\x31903e333809897ee57af57567f4377a1a78756c PUN 18
\\x0fd10b9899882a6f2fcb5c371e17e70fdee00c38 PUNDIX 18
\\x269616d549d7e8eaa82dfb17028d0b212d11232a PUNK 18
\\x27ffed7e5926fb2795fc85aaab558243f280a8a2 PUNK-FEMALE 18
\\x49706a576bb823cde3180c930f9947d59e2ded4d PUNK-ATTR-4 18
\\x69bbe2fa02b4d90a944ff328663667dc32786385 PUNK-BASIC 18
\\x9cea2ed9e47059260c97d697f82b8a14efa61ea5 PUNK 18
\\xab9c92a9337a1494c6d545e48187fa37144403c8 PUNK-ATTR-5 18
\\xf18ade29a225faa555e475ee01f9eb66eb4a3a74 PUNK-ZOMBIE 18
\\x81dbc1c8e40c3095071949eda9800c2209a7279a PUP 18
\\x2904b9b16652d7d0408eccfa23a19d4a3358230f PURE 18
\\x412e5a36bde71aa2c38e1c0e26baaf7f2f0bc24a PUSD 18
\\xf418588522d5dd018b425e472991e52ebbeeeeee PUSH 18
\\x9196e18bc349b1f64bc08784eae259525329a1ad PUSSY 18
\\xe277ac35f9d327a670c1a3f3eec80a83022431e4 PUX 8
\\x6f0b09bfa87410ab993291ec5f8cda81f1d2acd9 PVG 18
\\x7869c4a1a3f6f8684fbcc422a21ad7abe3167834 PVT 18
\\x5a14fe6923e767a8238f29d3e1fb1a913975f0d7 PWAY 18
\\xa3d93c0616dbc31fef1e112c7665a4ba4ddbf0be PWC 18
\\xf0a93d4994b3d98fb5e3a2f90dbc2d69073cb86b PWRD 18
\\x47e67ba66b0699500f18a53f94e2b9db3d47437e PXG 18
\\x5247c0db4044fb6f97f32c7e1b48758019a5a912 PXGOLD-MAR2022 18
\\x59fec83ec709c893aedd1a144cf1828eb04127cd PXGOLD-MAY2021 18
\\xf88951d7b676798705fd3a362ba5b1dbca2b233b PXL 18
\\xc14830e53aa344e8c14603a91229a0b925b0b262 PXT 8
\\x4b606e9eb2228c70f44453afe5a73e1fea258ce1 PXUSD-MAR2022 18
\\xf93340b1a3adf7eedcaec25fae8171d4b736e89f PXUSD-MAR2021 18
\\xd8924385cd46e6af6f377871c732bde2f8e9dd18 PYLNT 18
\\xd7b7d3c0bda57723fb54ab95fd8f9ea033af37f2 PYLON 18
\\x0142c3b2fc51819b5af5dfc4aa52df9722790851 PYN 18
\\x9534ad65fb398e27ac8f4251dae1780b989d136e PYR 18
\\x14409b0fc5c7f87b5dad20754fe22d29a3de8217 PYRO 18
\\xa31f7a32db329f270a0e6b59558823e64d8ef0a6 Q8E20 8
\\xaaa7a10a8ee237ea61e8ac46c50a8db8bcc1baaa QANX 18
\\x618e75ac90b12c6049ba3b27f5d5f8651b0037f6 QASH 6
\\x1602af2c782cc03f9241992e243290fccf73bb13 QBIT 18
\\x2467aa6b5a2351416fd4c3def8462d841feeecec QBX 18
\\x9bbc9286cdf6eefebf21df19bac71c6bdd7759d4 QBZ 18
\\x687bfc3e73f6af55f0ccca8450114d107e781a0e QCH 18
\\x82866b4a71ba9d930fe338c386b6a45a7133eb36 QCORE 9
\\x3166c570935a7d8554c8f4ea792ff965d2efe1f2 QDAO 18
\\x19683E94943E6b348D8AFB98C128B9b549B400DF QDAOBNT 18
\\xfee4dbe2751bf8d1b1b861aaf9664961f19ce91a QDEFI 18
\\x6fe88a211863d0d818608036880c9a4b0ea86795 QFI 18
\\x5df94780f00140fe72d239d0d261f7797e3fbd1b QHC 18
\\xea26c4ac16d4a5a106820bc8aee85fd0b7b2b664 QKC 18
\\xb73404280697080da0116cfac0e577fafdf44b37 QM 8
\\x4a220e6096b25eadb88358cb44068a3248254675 QNT 18
\\xbd1e7f594600dcaf7f483af55deacec0159a064e QOB 8
\\x2822f6d1b2f41f93f33d937bc7d84a8dfa4f4c21 QQQ 18
\\x4123a133ae3c521fd134d7b13a2dec35b56c2463 QRDO 8
\\x697beac28b09e122c4332d163985e8a73121b97f QRL 8
\\x6e0dade58d2d89ebbe7afc384e3e4f15b70b14d8 QRX 18
\\x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d QSP 18
\\x19131a8ae42e32c747c1ead318fadb98b0be45b7 QTC 18
\\x1bf7fd22709733ccd7c45ab27dd02c7ec8e50078 QTCON 18
\\x0fcbc31c503b4a9ed90e87f8ff46c318a4a14260 QTF 8
\\x40821cd074dfecb1524286923bc69315075b5c89 QUAI 18
\\xba8a621b4a54e61c442f5ec623687e2a942225ef QUARTZ 18
\\x6c28aef8977c9b773996d0e8376d2ee379446f2f QUICK 18
\\x86e44543164d9b97b14ef7f6f3ab7ba670cab346 QUIN 18
\\x264dc2dedcdcbb897561a57cba5085ca416fb7b4 QUN 18
\\xefd720c94659f2ccb767809347245f917a145ed8 QUO 18
\\x59d4ccc94a9c4c3d3b4ba2aa343a9bdf95145dd1 QUSD 18
\\x1d96fd43ee07aa79f8fd003cbdf404fb5ce41ad2 QWLA 18
\\x48f775efbe4f5ece6e0df2f7b5932df56823b990 R 0
\\x688ff43c3c19e4714f0beb76df8ee394207ab411 R2R 18
\\xcaeaf8381d4b20b43afa42061d6f80319a8881f6 R34P 8
\\x13572851103bed49ff743af4c4bb5ace88b22e2f R3FI 9
\\x8c7424c3000942e5a93de4a01ce2ec86c06333cb R3T 18
\\xf3110b27f481f9ac3c1ba3c54de542accb2d913c R64X 18
\\xc22b30e4cce6b78aaaadae91e44e73593929a3e9 RAC 18
\\x12bb890508c125661e03b09ec06e404bc9289040 RACA 18
\\x31c8eacbffdd875c74b94b077895bd78cf1e64a3 RAD 18
\\xe5a3229ccb22b6484594973a03a3851dcd948756 RAE 18
\\x94804dc4948184ffd7355f62ccbb221c9765886f RAGE 18
\\x03ab458634910aad20ef5f1c8ee96f1d6ac54919 RAI 18
\\x4c9bbfc1fbd93dfb509e718400978fbeedf590e9 RAI 18
\\xf30547ff2df1f1cbe5c8dd758b3dd098c856e38f RAI 18
\\xe76c6c83af64e4c60245d8c7de953df673a7a33d RAIL 18
\\x61cdb66e56fad942a7b5ce3f419ffe9375e31075 RAIN 18
\\xeb953eda0dc65e3246f43dc8fa13f35623bdd5ed RAINI 18
\\x10ba8c420e912bf07bedac03aa6908720db04e0c RAISE 18
\\xa8b0f154a688c22142e361707df64277e0a0be66 RAK 18
\\x51bc0deaf7bbe82bc9006b0c3531668a4206d27f RAKU 18
\\x714599f7604144a3fe1737c440a70fc0fd6503ea RAKUC 18
\\xac6fe9aa6b996d15f23e2e9a384fe64607bba7d5 RAM 9
\\x33d0568941c0c64ff7e0fb4fba0b11bd37deed9f RAMP 18
\\xd8dae35b487e3453cffd998c6754713c81b0f200 RAPDOGE 18
\\x81b1bfd6cb9ad42db395c2a27f73d4dcf5777e2d RARE 4
\\x93dfaf57d986b9ca77df9376c50878e013d9c7c8 RARE 18
\\xba5bde662c17e2adff1075610382b9b691296350 RARE 18
\\xfca59cd816ab1ead66534d82bc21e7515ce441cf RARI 18
\\x393fac0773c765c80dc887451377d553c46f83b1 RAS 18
\\xe8663a64a96169ff4d95b4299e7ae9a76b905b31 RATING 8
\\x68496ee825dafe1cf66d4083f776b9eaab31e447 RAUX 18
\\x5245c0249e5eeb2a0838266800471fd32adb1089 RAY 6
\\x5eaa69b29f99c84fe5de8200340b4e9b4ab38eac RAZE 18
\\x50de6856358cc35f3a9a57eaaa34bd4cb707d2cd RAZOR 18
\\x0719046cf7f82f9322479538b69a89c26a70a5bc RB 18
\\xe8b251822d003a2b2466ee0e38391c2db2048739 RBASE 9
\\xa4eed63db85311e22df4473f87ccfc3dadcfa3e3 RBC 18
\\xfc2c4d8f95002c14ed0a7aa65102cac9e5953b5e RBLX 18
\\x6123b0049f904d730db3c36a31167d9d4121fa6b RBN 18
\\x61b2d3ea9f1c6b387c985c73d40e8fbfb284e5c7 RC20 18
\\x33bfd20660eeaf952e8d5bc3236e1918701f17d0 RCCC 18
\\x78571accaf24052795f98b11f093b488a2d9eaa4 RCKT 18
\\xf970b8e36e23f7fc3fd752eea86f8be8d83375a6 RCN 18
\\xf7b9fa01098f22527Db205Ff9BB6FdF7C7D9F1C5 RCNBNT 18
\\x261b45D85cCFeAbb11F022eBa346ee8D1cd488c0 rDAI 18
\\x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6 RDN 18
\\xcb459689182459186a5d690e3da41dc65e754645 RDNA 18
\\x0ff5a8451a839f5f0bb3562689d9a44089738d11 RDPX 18
\\x4740735aa98dc8aa232bd049f8f0210458e7fca3 RDT 18
\\x6b4389afb3e243a65668b7311fa9ef092a8a3b64 REAL 18
\\x9214ec02cb71cba0ada6896b8da260736a67ab10 REAL 18
\\x464fdb8affc9bac185a7393fd4298137866dcfb8 REALM 18
\\x021bb23a45e9fc824260435e670fc383b7b8cbbb REALTOKEN-S-16200-F 18
\\x06d0e5aee443093ac5635b709c8a01342e59df19 REALTOKEN-S-10617-H 18
\\x08ad1f3a48be1d23c723a6cc8486b247f5de935a REALTOKEN-S-13116-K 18
\\x175cbd54d38f58b530785e01471a2ec0d4596eb5 REALTOKEN-S-15770-P 18
\\x1e001730a23c7ebaff35bc8bc90da5a9b20804a4 REALTOKEN-S-9481-WA 18
\\x1eb16ec378f0ce8f81449120629f52ba28961d47 REALTOKEN-S-1000-FL 18
\\x1fdb4015fd5e031c5641752c1e03b973ad5ea168 REALTOKEN-S-17500-E 18
\\x211618fa0934910666f2c2731101f5a3ac013fd8 REALTOKEN-S-19200-S 18
\\x21f1af3e751317a2f7de7df31d5d092e6a907bde REALTOKEN-S-18276-A 18
\\x23684569c0636c9aea246551879d457d0a0e6f58 REALTOKEN-S-9336-PA 18
\\x24293ab20159cfc0f3d7c8727cd827fba63d4f64 REALTOKEN-S-19333-M 18
\\x280e9ed3b20c580a2f4219657bb9332d80bc01f1 REALTOKEN-S-19020-R 18
\\x2adc1cfa726a45264a328d9d2e2c692ceac97458 REALTOKEN-S-14494-C 18
\\x2c6f00a020b613c9419bb6c1ac220036dbe9e622 REALTOKEN-S-18776-S 18
\\x311fc485f1fea0c8cc9b5c783e79f4313ddfa720 REALTOKEN-S-19996-J 18
\\x3150f0ebc0efee280b5348b9c8c271ad44eb8b13 REALTOKEN-S-19596-G 18
\\x315699f1ba88383cff2f2f30fcad187adb2e4d72 REALTOKEN-S-14078-C 18
\\x31820af2d43c08bd82bd94b08974062482bd98d3 REALTOKEN-S-11653-N 18
\\x31aa5fa895fd186fde12347a6fcaf540875b6434 REALTOKEN-S-14882-T 18
\\x33722ea778df197f1b7b1cf0b124d7a962181d65 REALTOKEN-S-19136-T 18
\\x34ed9e71449529e034d0326cfbb3b5ccdca00cbc REALTOKEN-S-19317-G 18
\\x3c56d5e887d8fa7ae1ba65bf7eccc25ec09eaf18 REALTOKEN-S-9165-KE 18
\\x400b5716b0c23b6f1f0f2a5fdb038949962b803e REALTOKEN-S-3432-HA 18
\\x41599149f1b52035392402f9e311b1edb0c9f699 REALTOKEN-S-14319-R 18
\\x42b387cdf0951a0e08336d35651544c47cd05c95 REALTOKEN-S-10974-W 18
\\x43fed9f9bf7deedcb314b432a8e38219dd62ce9e REALTOKEN-S-14825-W 18
\\x46f8a600337dec5cab03aa9b8f67f1d5b788ce28 REALTOKEN-S-18433-F 18
\\x499a6c19f5537dd6005e2b5c6e1263103f558ba4 REALTOKEN-S-17813-B 18
\\x4a99cc509f7facf58d7b67e99236db5e0921ef81 REALTOKEN-S-10639-S 18
\\x4cc53ee5ef306a95d407321d4b4acc30814c04ee REALTOKEN-S-19163-M 18
\\x4d0da4e75d40bd7d9c4f7a292bf883bcdf38c45d REALTOKEN-S-15373-P 18
\\x4e98493920b16dd6642e9d48497c8d0a49150f6f REALTOKEN-S-13991-W 18
\\x5600e25b4f24c63afa655c3bd96e3c178b654fa1 REALTOKEN-S-13045-W 18
\\x57eadd2a542cfe9f00a37f55df4d5062f857c0e8 REALTOKEN-S-9943-MA 18
\\x5e2a09064b2dca8c44aad8a5b69a69bb1854fe72 REALTOKEN-S-11201-C 18
\\x63a1849b47ef5913ccc5adb0e2708b11a4ba6972 REALTOKEN-S-14918-J 18
\\x67a83b28f6dd8c07301495ee2c6f83b73fd21092 REALTOKEN-S-9309-CO 18
\\x69d1b42b20f3ded07bec322253d0140b04cbb6f5 REALTOKEN-S-1542-SR 18
\\x6db6d540f5614e6bab7475af3f430f46a0b083e2 REALTOKEN-S-5942-AU 18
\\x6f442da588232dc57bf0096e8de48d6961d5cc83 REALTOKEN-S-13895-S 18
\\x73bde888664df8ddfd156b52e6999eeabab57c94 REALTOKEN-S-9717-EV 18
\\x741857c07b100c9c0c1272d95845dddc4f1b67cb REALTOKEN-S-8342-SC 18
\\x750fa12ae51d1515c893c1aaabe2c135937a2c8b REALTOKEN-S-9465-BE 18
\\x75f06b482adbfb04b877d8ee683e2fcdf18ad153 REALTOKEN-S-18481-W 18
\\x76dbeb740ecd1f3b052a9afa302abc7eb4fb5390 REALTOKEN-S-9133-DE 18
\\x7e95b310724334ff74537dc08bfd3377d25e65ce REALTOKEN-S-15039-W 18
\\x7f940b5509a22e81d29167581bdeea3fa5a0abee REALTOKEN-S-15784-M 18
\\x804f6baa10615c85e4b4a5bc4efe516d9f7a4365 REALTOKEN-S-13606-W 18
\\x806690b7a093d2cf6419a515abedb7f28595bc5e REALTOKEN-S-9169-BO 18
\\x830b0e9a5ecf36d0a886d21e1c20043cd2d16515 REALTOKEN-S-19201-W 18
\\x8626b38267e4fc0d8c92e0bb86f97acab3f6aa05 REALTOKEN-S-10604-S 18
\\x8a9f904b4ead6a97f3ab304d0d2196f5c602c807 REALTOKEN-S-19311-K 18
\\x8d1090df790ffafdaccda03015c05df3b4cc9c21 REALTOKEN-S-15753-H 18
\\x8fcb39a25e639c8fbd28e8a018227d6570e02352 REALTOKEN-S-1815-SA 18
\\x92161385c9de8798ad5fb01c0be99ffcbc84dfd8 REALTOKEN-S-10084-G 18
\\x92d31e19f88597f368825ba16410f263a844527a REALTOKEN-S-8181-BL 18
\\x94fa7f8cb8453ad57cd133363b3012044647078c REALTOKEN-S-1244-SA 18
\\x9528a7402c0fe85b817aa6e106eafa03a02924c4 REALTOKEN-S-14231-S 18
\\x96700ffae33c651bc329c3f3fbfe56e1f291f117 REALTOKEN-S-4380-BE 18
\\x969d42ad7008e6651e1fd52742153f8743225d98 REALTOKEN-S-12409-W 18
\\x9856c5ca15a4ac9c65aac090c38a9f39eb3b5eec REALTOKEN-S-18273-M 18
\\x9a99f283e1f6c3b7f24901995624ef7b78e94471 REALTOKEN-S-18466-F 18
\\x9b5b4886033b4abc5eb0552fff7c15a67c3c47c7 REALTOKEN-S-11300-R 18
\\x9d918ee39a356be8ef99734599c7e70160db4db6 REALTOKEN-S-12405-S 18
\\x9eb90ec3faafc22092c9b91559fddde538042093 REALTOKEN-S-18900-M 18
\\x9f923653a19537b5a1b003854a1920fe67a8ffeb REALTOKEN-S-13114-G 18
\\x9fef44fc4c571010bccd5b63e1cdc807d3b347bf REALTOKEN-S-15095-H 18
\\xa137d82197ea4cdfd5f008a91ba816b8324f59e1 REALTOKEN-S-5601-SW 18
\\xa29ae272bc89e5f315b2793925f700045f845d82 REALTOKEN-S-581-587 18
\\xa2b2ae397492c7ed8a4c1e751ac72d2b59947e6b REALTOKEN-S-9920-BI 18
\\xa68b7779504b0ae372ddcc109f8786db9b91e93e REALTOKEN-S-4340-EA 18
\\xa69d7d4ddf397f3d1e7ebaf108555d1107b3b117 REALTOKEN-S-9166-DE 18
\\xa81f77e8988b28fb74243b907ace3c83353dc80a REALTOKEN-S-15634-L 18
\\xa9f30c907321718e655b74463ca665b690b78894 REALTOKEN-S-15860-H 18
\\xad91999f534f4075b00ba4231c018e57bdebb342 REALTOKEN-S-18983-A 18
\\xb09850e2b93aa3aaa1476bf0c007cfc960e2de79 REALTOKEN-S-14229-W 18
\\xb3d3c1bbcef737204aadb4fa6d90e974bc262197 REALTOKEN-S-15796-H 18
\\xb5d30c28f87acf675ed5b9f343e5fff39ec9942c REALTOKEN-S-10024-1 18
\\xb5dd2b6e0a0422e069e1d2cc3ed16533488a05e3 REALTOKEN-S-12866-L 18
\\xb8403b7730368942a5bfe5aac04a31b44015b1cc REALTOKEN-S-11078-W 18
\\xba07997f594a52df179620284b52b50a4e66227d REALTOKEN-S-17809-C 18
\\xc731eca970979cd2da2a1094a808f49894070d35 REALTOKEN-S-19218-H 18
\\xce111a198eb04f388aceb78c40ced6daf1b0514a REALTOKEN-S-272-NE- 18
\\xd08d2b199e9e5df407427d4085877d1fdff3b1d6 REALTOKEN-S-6923-GR 18
\\xd1c15cebfdcd16f00d91666bf64c8b66cbf5e9b5 REALTOKEN-S-10612-S 18
\\xd5d1adf54fbf73a00b197ddcfdad7cc27d93002f REALTOKEN-S-10629-M 18
\\xd5fc0c4c4c5ff316e1e91494d963ff1d52ba25ff REALTOKEN-S-11078-L 18
\\xd9e89bfebae447b42c1fa85c590716ec8820f737 REALTOKEN-S-4061-GR 18
\\xda47bd33e8f5d17bb81b8752784bfb46c1c44b2a REALTOKEN-S-15350-G 18
\\xdd833d0eef6d5d7cec781b03c19f3b425f3039df REALTOKEN-S-11957-O 18
\\xe255caf8893382465368b8e1cd4ef8436acf0ade REALTOKEN-S-402-SKO 18
\\xe5ce63ac9a08c1eb160889151cd84855f16c94d2 REALTOKEN-S-10616-M 18
\\xe7b6de709ffc3bd237c2f2c800e1002f97a760f3 REALTOKEN-S-4852-48 18
\\xe82cbb7c29d00a4296ee505d12a473c26cd9c423 REALTOKEN-S-10700-W 18
\\xe887dc4fcb5240c0c080aeab8870421d3ebd0b28 REALTOKEN-S-14066-S 18
\\xee2f2212a64ec3f6bc0f7580e10c53cb38b57508 REALTOKEN-S-12334-L 18
\\xeedc2f5f4d1226759b1acf9efa23a99661de6663 REALTOKEN-S-20200-L 18
\\xefe82d6baf0db71f92889eb9d00721bd49121316 REALTOKEN-S-4680-BU 18
\\xf18cffb528eca0ea31d1d6b28bc80d2eca34d14d REALTOKEN-S-25097-A 18
\\xf23b80216a10e6f0c0d3b5ad5c9349e9425cad40 REALTOKEN-S-15778-M 18
\\xf4657ab08681214bcb1893aa8e9c7613459250ec REALTOKEN-S-1617-SA 18
\\xfe17c3c0b6f38cf3bd8ba872bee7a18ab16b43fb REALTOKEN-S-15777-A 18
\\x1fc5ef0337aea85c5f9198853a6e3a579a7a6987 REAP 18
\\xa20b44c001578e2c52665098ba62b00ebf8963cb REAP 18
\\x87f5f9ebe40786d49d35e1b5997b07ccaa8adbff REB2 9
\\x4208d8d500b1643dca98dd27ba6c0060bca311c5 REBASE 9
\\x76960dccd5a1fe799f7c29be9f19ceb4627aeb2f RED 18
\\xebdf9a7ae0009b958c6d09501eb9ac1dafeb31ab REDI 18
\\x514cdb9cd8a2fb2bdcf7a3b8ddd098caf466e548 REDPANDA 9
\\xfe3e6a25e6b192a42a44ecddcd13796471735acf REEF 18
\\x89303500a7abfb178b274fd89f2469c264951e1f REF 8
\\x21a870c7fce1bce5d88bdf845ac332c76204a9a0 REFRACTION 18
\\x6c93c838d362656430d81e150cdbe9b69ba8efc4 REHAB 18
\\x011864d37035439e078d64630777ec518138af05 REI 18
\\x61bfc979ea8160ede9b862798b7833a97bafa02a REL 18
\\xb6c4267c4877bb0d6b1685cfd85b0fbe82f105ec REL 18
\\x5d843fa9495d23de997c394296ac7b4d721e841c RELAY 18
\\x0e58ed58e150dba5fd8e5d4a49f54c7e1e880124 RELI 18
\\x83984d6142934bb535793a82adb0a46ef0f66b6d REM 4
\\x408e41876cccdc0f92210600ef50372656052a38 REN 18
\\x56de8bc61346321d4f2211e3ac3c0a7f00db9b76 RENA 18
\\x459086f2376525bdceba5bdda135e4e9d3fef5bf RENBCH 8
\\xeb4c2781e4eba804ce9a9803c67d0893436bb27d renBTC 8
\\x49849c98ae39fff122806c06791fa73784fb3675 RENBTCCURVE 18
\\x3832d2f059e55934220881f831be501d180671a7 RENDOGE 8
\\xd5147bc8e386d91cc5dbe72099dac6c9b99276f5 RENFIL 18
\\x1c5db575e2ff833e46a2e9864c22f4b22e0b37c2 renZEC 8
\\x1985365e9f78359a9b6ad760e32412f4a445e862 REP 18
\\x221657776846890989a759ba2973e427dff5c9bb REP 18
\\x4d305c2334c02e44ac592bbea681ba4cc1576de3 REPUX 18
\\x8f8221afbb33998d8584a2b05749ba73c37a938a REQ 18
\\xccB5E3Ba5356D57001976092795626ac3b87Ad4e REQBNT 18
\\x0a9f693fce6f00a51a8e0db4351b5a8078b4242e RES 5
\\x6753795d67ed0b2b65b57fc45c7ac0f53b55f4fe REST 18
\\xd7394087e1dbbe477fe4f1cf373b9ac9459565ff RET 8
\\x9559aaa82d9649c7a7b220e7c461d2e74c9a3593 RETH 18
\\x20bc832ca081b91433ff6c17f85701b6e92486c5 RETH2 18
\\x2ef52ed7de8c5ce03a4ef0efbe9b7450f2d7edc9 REV 6
\\xe6be436df1ff96956dfe0b2b77fab84ede30236f REV 18
\\x155040625d7ae3e9cada9a73e3e44f76d3ed1409 REVO 18
\\x557b933a7c2c45672b610f8954a3deb39a51a8ca REVV 18
\\x3ffffa8f3cc943e43f9f17a83cbb18f4bbb9f4ac REW 18
\\xf05a9382a4c3f29e2784502754293d88b835109c REX 18
\\x16b1eb8b8e9058800bf0ba3684f805a6711a1d2c RFCTR 9
\\xa1afffe3f4d611d252010e3eaf6f4d77088b0cd7 RFI 9
\\xc82eb6dea0c93edb8b697b89ad1b13d19469d635 RFIS 18
\\xa1d6df714f91debf4e0802a542e13067f31b8262 RFOX 18
\\xd0929d411954c47438dc1d871dd6081f5c5e149c RFR 4
\\xe0bdaafd0aab238c55d68ad54e616305d4a21772 RFR 18
\\xaf9f549774ecedbd0966c52f250acc548d3f36e5 RFUEL 18
\\x159a1dfae19057de57dfffcbb3da1ae784678965 RFX 8
\\x3f5be50e4651ee184109a0b1b71d344d12e8b603 RFY 9
\\x4af5ff1a60a6ef6c7c8f9c4e304cd9051fca3ec0 RGP 18
\\xd291e7a03283640fdc51b121ac401383a46cc623 RGT 18
\\xf7a219fffeade6cd98789da5642b687f743270eb RHEA 18
\\x47c0ad2ae6c0ed4bcf7bc5b380d7205e89436e84 rHEGIC 18
\\xad7ca17e23f13982796d27d1e6406366def6ee5f RHEGIC2 18
\\x3f3cd642e81d030d7b514a2ab5e3a5536beb90ec RHO 18
\\x168296bb09e24a88805cb9c33356536b980d3fc5 RHOC 8
\\x37e808f084101f75783612407e7c3f5f92d8ee3f RI 18
\\x4ca0654f4fc1025cf1a17b7459c20ac0479522ad RIGEL 18
\\xbfa3fa772ea6d1ed0808160c9b705875ca4123a0 RIGHT 18
\\x9469d013805bffb7d3debe5e7839237e535ec483 RING 18
\\x7f86c782ec802ac402e0369d2e6d500256f7abc5 RINGX 18
\\xf21661d0d1d76d3ecb8e1b9f1c923dbfffae4097 RIO 18
\\x3fa807b6f8d4c407e6e605368f4372d14658b38c RISE 9
\\x6e5a43db10b04701385a34afb670e404bc7ea597 RKN 12
\\x3c3842c4d3037ae121d69ea1e7a0b61413be806c rKSM 18
\\x607f4c5bb672230e8672085532f7e901544a7375 RLC 9
\\x9003411Ac4073C2D9f37af71d00E373B72Cbe9E2 RLCBNT 18
\\xd1632efa392925089785b43410c529f8959a8d9a RLD 8
\\x0e3ef895c59e7db27214ab5bbf56347ce115a3f4 RLR 18
\\x5b3f693efd5710106eb2eac839368364acb5a70f RLR 18
\\x4a42d2c580f83dce404acad18dab26db11a1750e RLX 18
\\x7fc693b16184b6778f4534f5410f06633cb030e0 RLX 6
\\xf1f955016ecbcd7321c7266bccfb96c68ea5e49b RLY 18
\\xe17f017475a709de58e976081eb916081ff4c9d5 RMPL 9
\\x2a039b1d9bbdccbb91be28691b730ca893e5e743 RNB 18
\\xe94b97b6b43639e238c851a7e693f50033efd75c RNBW 18
\\x6de037ef9ad2725eb40118bb1702ebb27e4aeb24 RNDR 18
\\xff603f43946a3a28df5e6a73172555d8c8b02386 RNT 18
\\x1fe70be734e473e5721ea57c8b5b01e6caa52686 RNTB 18
\\x72a6344185b383035d6665c3f44a9dfcc73873c8 RNX 18
\\x2344871f523cbb28a4f60045531184cf1f03ad24 ROBET 18
\\x6fc2f1044a3b9bb3e43a43ec8f840843ed753061 ROBO 18
\\xfb5453340c03db5ade474b27e68b6a9c6b2823eb ROBOT 18
\\xda0b283316b1f998a0be6c371dc7b4f446cd548e ROC 18
\\xff44b937788215eca197baaf9af69dbdc214aa04 ROCKI 18
\\x0829d2d5cc09d3d341e813c821b0cfae272d9fb2 ROCKS 18
\\x92ece48522e1acbcda4aaa8c2fbf2aa9fb15d624 ROCKS 18
\\xacaca5b8805636608e14c64b0bfffc2deb2c6cec ROM 18
\\xa31b1767e09f842ecfd4bc471fe44f830e3891aa ROOBEE 18
\\xfa5047c9c78b8877af97bdcb85db743fd7313d4a ROOK 18
\\xad4f86a25bbc20ffb751f2fac312a0b4d8f88c64 ROOM 18
\\xcb5f72d37685c3d5ad0bb5f982443bc8fcdf570e ROOT 18
\\x9d47894f8becb68b9cf3428d256311affe8b068b ROPE 18
\\xd04785c4d8195e4a54d9dec3a9043872875ae9e2 ROT 18
\\x16eccfdbb4ee1a85a33f3a9b21175cd7ae753db4 ROUTE 18
\\x574f84108a98c575794f75483d801d1d5dc861a5 ROX 18
\\x7eaf9c89037e4814dc0d9952ac7f888c784548db ROYA 18
\\xc0844fdf1bcbde59a3af0859455d964d350a2cb6 ROYAL 18
\\xe55cc44c0cf9cede2d68f9432cbeeafa6357ed92 ROZ 8
\\xf18af466f8885f9ea93d2b85c47a427cb01bad52 RPC 18
\\x0e9b56d2233ea2b5883861754435f9c51dbca141 RPEPE 18
\\x0e5c8c387c5eba2ecbc137ad012aed5fe729e251 RPG 18
\\xb4efd85c19999d84251304bda99e90b92300bd93 RPL 18
\\xa0bb0027c28ade4ac628b7f81e7b93ec71b4e020 RPT 18
\\x3b08c03fa8278cf81b9043b228183760376fcdbb RPTC 18
\\x68350d30d9f58c81aaaa41929f1bfc52fff4ea49 RPZX 18
\\xdc7836bc6c84c51275365e337fd147db2dc7b3c3 RRC 18
\\xc275865a6cce78398e94cb2af29fa0d787b7f7eb RSCT 18
\\xc844ceda9e917302012fa4f3692cc46b6ec54968 RSHIB 18
\\xa979f7a5a7d3a0b7ab2e41bcb46f805760013fbc RSP 18
\\xcf42de80d80edc4a8d56e4e840b5ff0dc84aaa17 RSP 18
\\x016bf078abcacb987f0589a6d3beadd4316922b0 RSPT 18
\\x8762db106b2c2a0bccb3a80d1ed41273552616e8 RSR 18
\\x86d17e2ef332293391303f188f6a467dc0d1fd0d RST100 18
\\x196f4727526ea7fb1e17b2071b3d8eaa38486988 RSV 18
\\x7f9a00e03c2e53a3af6031c17a150dbedaaab3dc RTC 18
\\x436f0f3a982074c4a05084485d421466a994fe53 RTE 18
\\x3fd8f39a962efda04956981c31ab89fab5fb8bc8 RTH 18
\\x1f6deadcb526c4710cf941872b86dcdfbbbd9211 RTK 18
\\x395768aeb16484e5785612a98e9408e4cc1269ec RUC 18
\\xf278c1ca969095ffddded020290cf8b5c424ace2 RUFF 18
\\xd0df3b1cf729a29b7404c40d61c750008e631ba7 RUG 18
\\xedfbd6c48c3ddff5612ade14b45bb19f916809ba RUGZ 18
\\x2aeccb42482cc64e087b6d2e5da39f5a7a7001f8 RULER 18
\\x1b17dbb40fbed8735e7fe8c9eb02c20984fadfd6 rUMB1 18
\\x3155ba85d5f96b2d030a4966af206230e46849cb RUNE 18
\\xcfcd43d7ee21416a71c2eb9888587d52716fc77a RUSH 8
\\xdc8af07a7861bedd104b8093ae3e9376fc8596d2 RVF 18
\\x43ae53b8c920c6c69f4abf393fcb68a6dd4cbab4 RVMT 18
\\x17ef75aa22dd5f6c2763b8304ab24f40ee54d48a RVP 18
\\x120a3879da835a5af037bb2d1456bebd6b54d4ba RVST 18
\\x3d1ba9be9f66b8ee101911bc36d3fb562eac2244 RVT 18
\\x91d6f6e9026e43240ce6f06af6a4b33129ebde94 RVX 18
\\x5cd2fac9702d68dde5a94b1af95962bcfb80fc7d RWASTE 18
\\x08ad83d779bdf2bbe1ad9cc0f78aa0d24ab97802 RWS 18
\\xd78e5b24aae1bd03a488af642770e2abb986f9d5 RYIP 18
\\x429ac77f069bff489e2d78f9479e1e933305c528 RZB 8
\\xd8c82fbc4d8ed0644a7ec04cf973e84c6153c1d7 RZN 18
\\x96b0bf939d9460095c15251f71fda11e41dcbddb S 18
\\xcd39b5434a0a92cf47d1f567a7df84be356814f0 S1INCH 18
\\xaec7d1069e3a914a3eb50f0bfb1796751f2ce48a S4F 18
\\xd2df355c19471c8bd7d8a3aa27ff4e26a21b4076 SAAVE 18
\\xabc1280a0187a2020cc675437aed400185f86db6 SAC 18
\\xacd8f2523a4613eee78904354187c81bb05ae2b8 SAC 18
\\xa6610ed604047e7b76c1da288172d15bcda57596 SACKS 18
\\xe36e2d3c7c34281fa3bc737950a68571736880a1 sADA 18
\\x250a3500f48666561386832f1f1f1019b89a2699 SAFE2 18
\\xe6f1966d04cfcb9cd1b1dc4e8256d8b501b11cba SAFEEARTH 9
\\x2b1fe2cea92436e8c34b7c215af66aaa2932a8b2 SAHU 9
\\x89d24a6b4ccb1b6faa2625fe562bdd9a23260359 SAI 18
\\x8b3192f5eebd8579568a2ed41e6feb402f93f73f SAITAMA 9
\\xfa14fa6958401314851a17d6c5360ca29f74b57b SAITO 18
\\xe9f84de264e91529af07fa2c746e934397810334 SAK3 18
\\x066798d9ef0833ccc719076dab77199ecbd178b0 SAKE 18
\\xc28a4162e3cc1838bad6dfaec83d57a0d62c80f3 SALE 18
\\xf063fe1ab7a291c5d06a86e14730b00bf24cb589 SALE 18
\\x4156d3342d5c385a87d264f90653733592000581 SALT 8
\\x53378825d95281737914a8a2ac0e5a9304ae5ed7 SAM 18
\\x9cf7e61853ea30a41b02169391b393b901eac457 SAMZN 18
\\x7c5a0ce9267ed19b22f8cae653f198e3e8daf098 SAN 18
\\x87cdc02f0812f08cd50f946793706fad9c265e2d SANA 16
\\x3845badade8e6dff049820680d1f14bd3903a5d0 SAND 18
\\xc73c167e7a4ba109e4052f70d5466d0c312a344d SANSHU 9
\\x91f529e972d6cf43d36abfa91c1118122ff7f16c SAP 18
\\xa12a00e73e4e7174acc50a1c073e36aa0c9cb305 SAP 4
\\xf6ed276a69270a895d6e419d99dcb5aaa2f3cb4a SAP 18
\\x4df76a9dab9bb8310e4ad3dc4336a8e26ed24ebb SAPP 18
\\xbd4a858139b155219e2c8d10135003fdef720b6b SAR 18
\\x7697b462a7c4ff5f8b55bdbc2f4076c2af9cf51a SARCO 18
\\x4c38d0e726b6c86f64c1b281348e725973542043 SAS 18
\\xc54b353a1847d6257795f5293b2682c16640da59 SASH 18
\\xc28e27870558cf22add83540d2126da2e4b464c2 SASHIMI 18
\\x1f0f468ee03a6d99cd8a09dd071494a83dc1c0e5 SAT 4
\\xc56b13ebbcffa67cfb7979b900b736b3fb480d78 SAT 8
\\xc9f1016d336ef77aee75fc11ad64c5ecf9121332 SAT 18
\\x3ebb4a4e91ad83be51f8d596533818b246f4bee1 SATA 18
\\xdf49c9f599a0a9049d97cff34d0c30e468987389 SATT 18
\\xe96f2c381e267a96c29bbb8ab05ab7d3527b45ab SATX 8
\\xed4699f180a14b5974c26f494483f9c327fd381a sAUD 18
\\xf48e200eaf9906362bb1442fca31e0835773b8b4 sAUD 18
\\x6e10aacb89a28d6fa0fe68790777fec7e7f01890 SAV3 18
\\xc1eecf1f4af8eb9a2a19f6c26b434aa96ce859e1 SAVE 8
\\x36a2422a863D5B950882190Ff5433E513413343a sBCH 18
\\x888e88e71378133b7ada5a90c08bc97d772a0a28 SBECOM 18
\\x2697e0974e4fd348869d9cd414b7eaad8ee35c6e SBF 18
\\x013ae307648f529aa72c5767a334ddd37aab43c3 sBNB 18
\\x617aecb6137b5108d1e7d4918e3725c8cebdb848 sBNB 18
\\x309013d55fb0e8c17363bcc79f25d92f711a5802 SBTC 9
\\x9073ee83b6ce96c444547ddcaf777b9352163581 sBTC 18
\\xb8e103b60a33597136ea9511f46b6dbeb643a3a5 SBTC 18
\\xfe18be6b3bd88a2d2a7f928d00292e7a9963cfc6 sBTC 18
\\x2579bb08387f0de7ab135edd6c2a985a3f577b6b SBX 18
\\x4791143576c375919d086c35d989feff61d2c390 SCA 18
\\x0bc209fb72390af12bd6fd775355ea0856864b31 sCAD 18
\\xa008e737e305d700c97b1eb7cc2bf77b2be6f9dd SCAM 18
\\x8424c5ac326834b404742de0067bcb654e86be30 SCAT 18
\\x355a458d555151d3b27f94227960ade1504e526a SCC 18
\\x4a9f00de5d8a244944313faee23849ff725e680d SCC 18
\\x74fd51a98a4a1ecbef8cc43be801cce630e260bd SCC 18
\\x86696431d6aca9bae5ce6536ecf5d437f2e6dba2 SCC 18
\\xe6b75a1960f91bfa7010dec8543685ead67f8cff SCC 18
\\xb72c794effb775197287d767ca80c22ae9094cb5 SCDS 18
\\xeabacd844a196d7faf3ce596edebf9900341b420 sCEX 18
\\x2cad4991f62fc6fcd8ec219f37e7de52b688b75a SCHA 0
\\x0F83287FF768D1c1e17a42F44d644D7F22e8ee1d sCHF 18
\\x28af5a2f0cc12f2f19dd946608c945456b52b3f6 sCHF 18
\\xfdc4a3fc36df16a78edcaf1b837d3acaaedb2cb4 SCIFI 18
\\xd7631787b4dcc87b1254cfd1e5ce48e96823dee8 SCL 8
\\x3f5df2f90df67e10974fbcb1729c00d3f87c0eb4 SCOIN 6
\\xeb029507d3e043dd6c87f2917c4e82b902c35618 SCOMP 18
\\x06a87f6afec4a739c367bef69eefe383d27106bd SCOOBI 18
\\xd38aeb759891882e78e957c80656572503d8c1b1 SCRV 18
\\x81995ff7aee5c780192b47e0b42a7a86692d1415 SCS 18
\\x6fa0952355607dfb2d399138b7fe10eb90f245e4 SCT 18
\\x8b8d971c8bc37f65a93c4609644fef0590af2fc7 SCU 18
\\x646cec6ee42d258336165cbbd5deb4af14f0f476 SDAO 4
\\x993864e43caa7f7f12953ad6feb1d1ca635b875f SDAO 18
\\xfe33ae95a9f0da8a845af33516edc240dcd711d6 sDASH 18
\\xe1afe1fd76fd88f78cbf599ea1846231b8ba3b6b sDEFI 18
\\x77678cfd0f2b55152adc6599db9f988ab28d72f2 SDEX 18
\\x537edd52ebcb9f48ff2f8a28c51fcdb9d6a6e0d4 SDOG 18
\\x1715ac0743102bf5cd58efbb6cf2dc2685d967b6 SDOT 18
\\x73968b9a57c6e53d41345fd57a6e6ae27d6cdb2f SDT 18
\\x041fdd6637ecfd96af8804278ac12660ac2d12c0 SDX 7
\\x33c2da7fd5b125e629b3950f3c38d7f721d7b30d SEAL 18
\\x75d669c53142302c8826d16b5689bffad50a7e18 SEC 18
\\x30cf203b48edaa42c3b4918e955fed26cd012a3f SEED 18
\\xc969e16e63ff31ad4bcac3095c616644e6912d79 SEED 18
\\xb1e93236ab6073fdac58ada5564897177d4bcc43 SEELE 18
\\xca3fe04c7ee111f0bbb02c328c699226acf9fd33 SEEN 18
\\x6332e73c09125a42ff5cc0220f11f540d9d4e7e1 SEENUS 18
\\x91856c0130f9a2b9223cfc2c672cd3ece4aea93a SEENUS 18
\\xfb3c0a8a470068536f9f62c61f8f7f2382a62ecc SEENUS 18
\\x0f1ed66c251bcb52ecf7e67ac64bb72482048adb SEER 18
\\x27201232579491ce9b116ac6f37d354cc723a2f3 SEFA 8
\\x773258b03c730f84af10dfcb1bfaa7487558b8ac SEFI 6
\\xf3624e3692fdf95ded5a97d6cca9963f05a4181d SELON 18
\\x6d7917864003a9bb13cbbec8f1cdd4e36ddf6fc8 SEMI 18
\\xa13f0743951b4f6e3e3aa039f682e17279f52bc3 SENC 18
\\x5a705745373a780814c379ef17810630d529efe0 SENPAI 18
\\x6745fab6801e376cd24f03572b9c9b0d4edddccf SENSE 8
\\xc19b6a4ac7c7cc24459f08984bbd09664af17bd1 SENSO 0
\\x97abee33cd075c58bfdd174e0885e08e8f03556f SENT 18
\\xa44e5137293e855b1b7bc7e2c6f8cd796ffcb037 SENT 8
\\x88c8cf3a212c0369698d13fe98fcb76620389841 sEOS 18
\\x10994aa2fb8e6ba5d9fb2bc127ff228c4fe6167f SEPA 18
\\x79ba92dda26fce15e1e9af47d5cfdfd2a093e000 SERGS 18
\\x0a2d9370cf74da3fd3df5d764e394ca8205c50b6 SET 18
\\x22602469d704bffb0936c7a7cfcd18f7aa269375 sETC 18
\\x5e74c9036fb86bd7ecdcb084a0673efc32ea31cb sETH 18
\\x78b039921e84e726eb72e7b1212bb35504c645ca SETH 18
\\xfe2e637202056d30016725477c5da089ab0a043a SETH2 18
\\x04e0af0af1b7f0023c6b12af5a94df59b0e8cf59 SETS 18
\\x3eb064766109d150e4362222df80638bce00e037 sEUR 18
\\xd71ecff9342a5ced620049e616c5035f1db98620 sEUR 18
\\xed314bf44013612e8c00abd3cb6eade61cc8c72e SF 18
\\xf50b5e535f62a56a9bd2d8e2434204e726c027fa SFB 18
\\x8b6cda5cc518c904e8844f445e1a7c7d2db0ff16 SFCP 18
\\x8a6aca71a218301c7081d4e96d64292d3b275ce0 SFG 18
\\xa6312567e419e73951c451feaba07b6d74a0e8ce SFI 18
\\xb753428af26e81097e7fd17f40c88aaa3e04902c SFI 18
\\x648d19d775a8d4bafba09e189090bdcbf8ef31c1 SFR 8
\\xf4ea51408e7cece8eb9ebbaf3bfbcec74ac574f4 SFT 18
\\x23348160D7f5aca21195dF2b70f28Fce2B0be9fC sFTSE 18
\\xddf7fd345d54ff4b40079579d4c4670415dbfd0a SG 18
\\x91a7769afcf796a3c8fff879ed80b10dd76d3ccd SG20 18
\\x4b4eb5c44d50bfd44124688c6754633f7e258b01 SGB 8
\\x0c8a7d55ef593a2cad34894c1523162ee2ffb9ac sGBP 18
\\x97fe22E7341a0Cd8Db6F6C021A24Dc8f4DAD855F sGBP 18
\\xab456bdb0a373bbac6c4a76176e9f159cacd5752 SGE 9
\\x3ea6bae5c10ff3f99925bdf29fd3f8bcae5aaa66 SGLD 18
\\xc63b8ecce56ab9c46184ec6ab85e4771fea4c8ad SGOOG 18
\\xaea8e1b6cb5c05d1dac618551c76bcd578ea3524 SGR 18
\\x24c19f7101c1731b85f1127eaa0407732e36ecdd SGT 18
\\x84810bcf08744d5862b8181f12d17bfd57d3b078 SGT 18
\\xc4199fb6ffdb30a829614beca030f9042f1c3992 SGT 18
\\x6006fc2a849fedaba8330ce36f5133de01f96189 SHAKE 18
\\xbebdab6da046bc49ffbb61fbd7b33157eb270d05 SHARD 18
\\x39795344cbcc76cc3fb94b9d1b15c23c2070c66d SHARE 9
\\x232afce9f1b3aae7cb408e482e847250843db931 SHARK 18
\\x7c3e3bdcec89a3f706c9a02797ec427ffa596787 SHB 18
\\x5845cd0205b5d43af695412a79cf7c1aeddb060f SHD 18
\\x8a8221628361fa25294a83a172dd4f0133207b37 SHD 18
\\x232fb065d9d24c34708eedbf03724f2e95abe768 SHEESHA 18
\\xc29e9cd9ddc53e60cbc2417517ddd93ef071d18b SHELON 18
\\x22ef3753e3658e81d5a0d0889ce078178fe66595 SHENG 18
\\xb17c88bda07d28b3838e0c1de6a30eafbcf52d85 SHFT 18
\\xcba3eae7f55d0f423af43cc85e67ab0fbf87b61c SHFT 18
\\x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce SHIB 18
\\x49828c1453d317ca3fffa60c8b5f7f42eeaae56a SHIB2 18
\\xa4cf2afd3b165975afffbf7e487cdd40c894ab6b SHIBAKEN 0
\\x77f39c61ddac121ca1b24fdea984fab734fdce8f SHIBAL 9
\\xb2e20502c7593674509b8384ed9240a03869faf3 SHIBARAMEN 9
\\xc5c43ad81e6c76eaa1f2dd92cb6a11ff6b6d09ea SHIBCO 9
\\x2dfac6327dce9f88e31ff46de13049eca5a7dfcb SHIBERUS 9
\\x505a84a03e382331a1be487b632cf357748b65d6 SHIBGF 18
\\x841fb148863454a3b3570f515414759be9091465 SHIH 18
\\x71beff5533dd4c0a47b739da50c56a2dd28633fa SHINU 18
\\xa1ab427451f19df7445a22dea7073800ea3b687f SHINU 9
\\xc150bac3cd3678acb2c093e433bed40a6ef08542 SHINY 18
\\xe25b0bba01dc5630312b6a21927e578061a13f55 SHIP 18
\\xaa7fb1c8ce6f18d4fd4aabb61a2193d4d441c54f SHIT 6
\\x29a5c1db7321c5c9eae57f9366ee8eef00ca11fb SHKOOBY 18
\\xd49efa7bc0d339d74f487959c573d518ba3f8437 SHLD 18
\\xcc0014ccb39f6e86b1be0f17859a783b6722722f SHO 18
\\x0fd67b4ceb9b607ef206904ec73459c4880132c9 SHOE 18
\\xec0bf0e934d092d31e769e8c9722ffbaa582db3b SHOKK 9
\\x7bef710a5759d197ec0bf621c3df802c2d60d848 SHOPX 18
\\xef2463099360a085f1f10b076ed72ef625497a06 SHP 18
\\x13b1e6b036ac0a1495f876313f92a0706cc10871 SHPP 18
\\xd98f75b1a3261dab9eed4956c93f33749027a964 SHR 2
\\x38c4102d11893351ced7ef187fcf43d33eb1abe6 SHRIMP 18
\\xed0439eacf4c4965ae4613d77a5c2efe10e5f183 SHROOM 18
\\x3a9fff453d50d4ac52a6890647b823379ba36b9e SHUF 18
\\x236d53148f83706c3d670064809577385f923a75 SHUSKY 9
\\xd23ac27148af6a2f339bd82d0e3cff380b5093de SI 18
\\x8b98df4dff429e64e9a56fc6eebe2380c6c3409c SI14 8
\\x4afb0aac9b862946837b2444566b8a914d6d0d97 SIFI 9
\\x6888a16ea9792c15a4dcf2f6c623d055c8ede792 SIG 18
\\x7777777777697cfeecf846a76326da79cc606517 SIG 18
\\x6d728ff862bfe74be2aba30537e992a24f259a22 SIH 18
\\x4c1e085d8c2d2a8377834d0d7b38f12cc5b86898 SILK 18
\\x398aea1c9ceb7de800284bb399a15e0efe5a9ec2 sILV 18
\\x254417f7b56328a48f554b173dca7bdda7a2a0d2 SIMBA 18
\\xcc72961e7ba4a8f7982594b0b661d3f02dcf239f SIMBA 18
\\xeb2c0e11af20fb1c41c6e7abe5ad214e48738514 SINE 18
\\xcba8162778e6a3eba60e1cf7c012b327340bd05d SINOC 18
\\x99ddddd8dfe33905338a073047cfad72e6833c06 SINU 9
\\x559e848a1b6a7afc69ee27f8d20280a42628b2cf sJPY 18
\\xF6b1C627e95BFc3c1b4c9B825a032Ff0fBf3e07d sJPY 18
\\x4af328c52921706dcb739f25786210499169afe6 SKB 8
\\x0fe156436f203b114c6c562cb1a2a81aa2801090 SKC 18
\\x06a01a4d579479dd5d884ebf61a31727a3d8d442 SKEY 8
\\x996dc5dfc819408dd98cd92c9a76f64b0738dc3d SKI 18
\\x2bdc0d42996017fce214b21607a515da41a9e0c5 SKIN 6
\\x00c83aecc790e8a4453e5dd3b0b4b3680501a7a7 SKL 18
\\x048fe49be32adfc9ed68c37d32b5ec9df17b3603 SKM 18
\\xfdfe8b7ab6cf1bd1e3d14538ef40686296c42052 SKRP 18
\\x887168120cb89fb06f3e74dc4af20d67df0977f6 SKRT 18
\\xdce506b196b0df677d07e718f872cac9bc368a33 sKRW 18
\\x012e0e6342308b247f36ee500ecb14dc77a7a8c1 SKT 8
\\x82bdfb4c6f488fc47700cef12c448a2f13f8ff4f SKT 18
\\xbcc66ed2ab491e9ae7bf8386541fb17421fa9d35 SKULL 4
\\x7297862b9670ff015192799cc849726c88bf1d77 SKYM 18
\\x2610f0bfc21ef389fe4d03cfb7de9ac1e6c99d6e SKYRIM 18
\\x755e83f560335e6bb8e45e44460ec4af598e24c9 SLASH 18
\\x2ac22ebc138ff127566f68db600addad7df38d38 SLC 18
\\x1ef6a7e2c966fb7c5403efefde38338b1a95a084 SLD 18
\\x0aee8703d34dd9ae107386d3eff22ae75dd616d1 SLICE 18
\\x10bae51262490b4f4af41e12ed52a0e744c1137a SLINK 9
\\xbbc455cb4f1b9e4bfc4b73970d360c8f032efee6 sLINK 18
\\x07a0ad7a9dfc3854466f8f29a173bf04bba5686e SLM 18
\\x37236cd05b34cc79d3715af2383e96dd7443dcf1 SLP 0
\\xcc8fa225d80b9c7d42f96e9570156c65d6caaa25 SLP 0
\\x56ee8c9bd1d445a3324ad83e86d8be309db8f85d SLRM 18
\\xe9f3cb0229eb8d0aaf03ec84883950134ed20ddc SLT 8
\\xc14103c2141e842e228fbac594579e798616ce7a sLTC 18
\\x4c1c4957d22d8f373aed54d0853b090666f6f9de SLV 18
\\x72e9d9038ce484ee986fea183f8d8df93f9ada13 SMARTCREDIT 18
\\x8fa025e8342ead1037d2954b95333ff2bf57162b SMAX 9
\\x53bd789f2cdb846b227d8ffc7b46ed4263231fdf SMB SWAP 18
\\x7e8539d1e5cb91d63e46b8e188403b3f262a949b SMDX 18
\\xcd7492db29e2ab436e819b249452ee1bbdf52214 SMI 8
\\x4140919de11fce58e654cc6038017af97f810de1 sMKR 18
\\xe88a4976cb7d8898d39e3f317421d625403ecb8c sMKR 18
\\x2216e873ea4282ebef7a02ac5aea220be6391a7c SMOL 18
\\x8bf92cad232f72a7c61eb42e9185e8d0ea470f6b SMPL 18
\\xe5867608b51a2c9c78b9587355cc093140a49b0a SMS 3
\\x668f7dfb8c8d716839fa5dbea317d8723ebe6110 SMSCT 0
\\x21f15966e07a10554c364b988e91dab01d32794a SMT 18
\\xb17548c7b510427baac4e267bea62e800b247173 SMT 18
\\xbf776e4fca664d791c4ee3a71e2722990e003283 SMTY 18
\\x179e31fb25e433441a2839389a7b8ec9c4654b7b SNB 18
\\xf4134146af2d511dd5ea8cdb1c4ac88c57d60404 SNC 18
\\xff19138b039d938db46bdda0067dc4ba132ec71c SNET 8
\\x5a7e3c07604eb515c16b36cd51906a65f021f609 SNFLX 18
\\xa3c4dc4a9ce2a6b40b57f25f8b50decc2c64dec2 SNFT 18
\\xcfd6ae8bf13f42de14867351eaff7a8a3b9fbbe7 SNG 8
\\x249f71f8d9da86c60f485e021b509a206667a079 SNGJ 18
\\xaec2e87e0a235266d9c5adc9deb4b2e29b54d009 SNGLS 0
\\x757de3ac6B830a931eF178C6634c5C551773155c sNIKKEI 18
\\xa806b3fed6891136940cf81c4085661500aa2709 SNL 6
\\x983f6d60db79ea8ca4eb9968c6aff8cfa04b3c63 SNM 18
\\xf5717f5df41ea67ef67dfd3c1d02f9940bcf5d08 SNN 3
\\x072c46f392e729c1f0d92a307c2c6dba06b5d078 SNOGE 9
\\xbdc5bac39dbe132b1e030e898ae3830017d7d969 SNOV 18
\\xfe9a29ab92522d14fc65880d817214261d8479ae SNOW 18
\\x795dbf627484f8248d3d6c09c309825c1563e873 SNP 18
\\x744d70fdbe2ba4cf95131626614a1763df805b9e SNT 18
\\xa3b3c5a8b22C044D5f2d372f628245E2106D310D SNTBNT 18
\\x7865af71cf0b288b4e7f654f4f7851eb46a2b7f8 SNTVT 18
\\xc011a72400e58ecd99ee497cf89e3775d4bd732f SNX 18
\\xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f SNX 18
\\x28271853E950bE371B050F3f93aA0146225bF374 SNXUSDB 18
\\xbae5f2d8a1299e5c4963eaff3312399253f27ccb SOAR 9
\\x65032604dab202aff9adf89300cdb4bd0d059f55 SOBA 18
\\x2d0e95bd4795d7ace0da3c0ff7b706a5970eb9d3 SOC 18
\\x23b608675a2b2fb1890d3abbd85c5775c51691d5 SOCKS 18
\\x7afb39837fd244a651e4f0c5660b4037214d4adf SODA 18
\\xaea5e11e22e447fa9837738a0cd2848857748adf SOFI 18
\\x41933422dc4a1cb8c822e06f12f7b52fa5e7e094 SOGE 18
\\x04f2694c8fcee23e8fd0dfea1d4f5bb8c352111f sOHM 9
\\x6d16cf3ec5f763d4d99cb0b0b110eefd93b11b56 SOIL 18
\\x930ed81ad809603baf727117385d01f04354612e SOLARITE 18
\\x5011d48d4265b6fb8228600a111b2faa1fda3139 SOLID 18
\\x446c9033e7516d820cc9a2ce2d0b7328b579406f SOLVE 8
\\x3e8ffc8c3cb0db3081df85dec91b63abbbe99f71 SOME 18
\\x65f9a292f1aeed5d755aa2fd2fb17ab2e9431447 SOMEE 18
\\x076641af1b8f06b7f8c92587156143c109002cbe SOP 18
\\x0dde6f6e345bfd23f3f419f0dfe04e93143b44fb SOTA 18
\\x79c75e2e8720b39e258f41c37cc4f309e0b0ff80 SOUL 8
\\xbb1f24c0c1554b9990222f036b0aad6ee4caec29 SOUL 18
\\x300a902513815028e97fc79e92082ce6a98d3b74 SOX 18
\\x9631483f28b7f5cbf7d435ab249be8f709215bc3 SPA 24
\\xaa2409594dc0aef63c0f367e30f6b51149cbe613 SPACEDOGE 9
\\x42d6622dece394b54999fbd73d108123806f6a18 SPANK 18
\\x24aef3bf1a47561500f9430d74ed4097c47f51f2 SPARTA 4
\\x810908b285f85af668f6348cd8b26d76b3ec12e1 SPAZ 8
\\x86ed939b500e121c0c5f493f399084db596dad20 SPC 18
\\x1dea979ae76f26071870f824088da78979eb91c8 SPD 18
\\xbcd4b7de6fde81025f74426d43165a5b0d790fdd SPDR 18
\\x2c756e74b7309d785b5e2960ef262c4f14a87930 SPDX 0
\\x090185f2135308bad17527004364ebcc2d37e5f6 SPELL 18
\\xa0cf46eb152656c7090e769916eb44a138aaa406 SPH 18
\\x8a0cdfab62ed35b836dc0633482798421c81b3ec SPHRI 18
\\x3833dda0aeb6947b98ce454d89366cba8cc55528 SPHTX 18
\\x9b02dd390a603add5c07f9fd9175b7dabe8d63b7 SPI 18
\\x1fdab294eda5112b7d066ed8f2e4e562d5bcc664 SPICE 18
\\xa7fc5d2453e3f68af0cc1b78bcfee94a1b293650 SPIKE 10
\\xa7a5c1058194af8f00c187adb7fcc0c95f1c6c2d SPIZ 18
\\x51d3e4c0b2c83e62f5d517d250b3e856897d2052 SPMK 9
\\x20f7a3ddf244dc9299975b4da1c39f8d5d75f05a SPN 6
\\xddd460bbd9f79847ea08681563e8a9696867210c SPND 18
\\xcbe771323587ea16dacb6016e269d7f08a7acc4e SPO 18
\\x4b7ad3a56810032782afce12d7d27122bdb96eff SPRKL 8
\\xc560984d8c4ced2a0eba5790b33b6f43afeef759 SPRTZ 18
\\x01cc4151fe5f00efb8df2f90ff833725d3a482a3 SPT 8
\\xef7bce1be2ba032131326910a6c11e716daedbff SPUP 18
\\xe516d78d784c77d479977be58905b3f2b1111126 SPWN 18
\\x05aaaa829afa407d83315cded1d45eb16025910c SPX 18
\\xe4883bcb919386bb5f48ef59b7c31c1d93a51a57 SPY 18
\\x8d137e3337eb1b58a222fef2b2cc7c423903d9cf SQGL 18
\\x21ad647b8f4fe333212e735bfc1f36b4941e6ad2 SQUID 9
\\x373acda15ce392362e4b46ed97a7feecd7ef9eb8 SQUIG 4
\\x16587cf43f044aba0165ffa00acf412631194e4b SRC 18
\\xd31533e8d0f3df62060e94b3f1318137bb6e3525 SREN 18
\\xc350e846e2c57f9eece90febc253d14c8080871b SRH 18
\\x0488401c3f535193fa8df029d9ffe615a06e74e6 SRK 18
\\x476c5e26a75bd202a9683ffd34359c0cc15be0ff SRM 6
\\x68d57c9a1c35f63e2c83ee8e49a64e9d70528d25 SRN 18
\\xd6d4018a665617bfbae160c964474e79b03c6bf7 SRNSCL 18
\\xde2b8c72012a6c52c66ea4e7534db01dfbc7d5d0 SRNTGM 18
\\x5d98030ee646e6b3f25425c31c038310696616ea SRSC20 18
\\x0352557b007a4aae1511c114409b932f06f9e2f4 SRUNE 18
\\xbbff862d906e348e9946bfb2132ecb157da3d4b4 SS 18
\\x2ecc48ba346a73d7d55aa5a46b5e314d9daa6161 SSGT 18
\\xb4ae194a0dcf1b4080b164c1d775ee06e0817305 SSJ 18
\\x0d9227f9c4ab3972f994fccc6eeba3213c0305c4 SSL 18
\\xa5b46ff9a887180c8fb2d97146398ddfc5fef1cd SSN 18
\\x624d520bab2e4ad83935fa503fb130614374e850 SSP 4
\\x2863916c6ebdbbf0c6f02f87b7eb478509299868 SST 18
\\x6936f1dcd8c2e3a69469311a130858174f9f0a15 SSWIM 9
\\x06874f973dc3c96dc22a10ef0d0609f877f335ea STA 18
\\xa7de087329bfcda5639247f96140f9dabe3deed1 STA 18
\\xd7d05bda4bf5876ba1254b3eaaf8b47d2f5676eb STA 18
\\x1bbb57def2f6192f0b9b8565f49034bf1fcdb604 STACK 18
\\x56a86d648c435dc707c8405b78e2ae8eb4e60ba4 STACK 18
\\xe0955f26515d22e347b17669993fcefcc73c3a0a STACK 18
\\x286708f069225905194673755f12359e6aff6fe1 STACS 18
\\xf12ec0d3dab64ddefbdc96474bde25af3fe1b327 STACY 18
\\x5918f7add7fd774cffb8a67cb696ecc4597b5536 STAD 18
\\x1f8a626883d7724dbd59ef51cbd4bf1cf2016d13 STAK 18
\\x0ae055097c6d159879521c384f1d2123d1f195e6 STAKE 18
\\xdfe66b14d37c77f4e9b180ceb433d1b164f0281d STAKEHOUND-stETH 18
\\x43afc9058a3debf37eadf99138e449ce8a480a8a STAMP 18
\\xf70a642bd387f94380ffb90451c2c81d4eb82cbc STAR 18
\\x8e6cd950ad6ba651f6dd608dc70e5886b1aa6b24 STARL 18
\\x7ccfeef4f0ff48b0e0abd19bbbebae90939f180d STARS 18
\\xc55c2175e90a46602fd42e931f62b3acc1a013ca STARS 18
\\x5f435cd858f71e42a3db4282231d1ed25ba07aed STARSB 18
\\x1d7ca62f6af49ec66f6680b8606e634e55ef22c1 START 18
\\x965f109d31ccb77005858defae0ebaf7b4381652 STASH 18
\\xe4f356ecce6fbda81ecdea2e38527e59422861c2 STASH 8
\\x3154da898943fc7151bc77f16e43c0c47b5e452d STB 18
\\xc48b1ac1417db27c4e2c2ed3dae5a3d2fbb07dc5 STB 8
\\x212dd60d4bf0da8372fe8116474602d429e5735f STBU 18
\\xb987d48ed8f2c468d52d6405624eadba5e76d723 STBZ 18
\\x15b543e986b8c34074dfc9901136d9355a537e7e STC 18
\\x9a005c9a89bd72a4bd27721e7a09a3c11d2b03c4 STC 18
\\xeed9e4f2450035d6426276a8aa2084966ee3b1bb STEAK 18
\\x6f022e991ea21d26f85f6716c088e2864101dfec STEEL 0
\\xae7ab96520de3a18e5e111b5eaab095312d7fe84 stETH 18
\\xfd9cd8c0d18cd7e06958f3055e0ec3adbdba0b17 STFI 18
\\x160b1e5aabfd70b2fc40af815014925d71ceed7e STFIRO 8
\\xa9a8377287ea9c6b8b4249dd502e75d34148fc5b STGZ 9
\\xb52bbd3d5bfa3836bf2b55fe3b7467219280bc2e STI 8
\\xae73b38d1c9a8b274127ec30160a4927c4d71824 STK 18
\\x4da27a545c0c5b758a6ba100e3a049001de870f5 stkAAVE 18
\\xa1116930326d21fb917d5a27f1e9943a9595fb47 STKABPT 18
\\x89dcff5fd892f2bfc8b75dba12804b651f769579 STKR 18
\\x3d1be3fef769399cce7e504e85324d622f23cf85 STLP 9
\\x0E22734e078d6e399BCeE40a549DB591C4EA46cB STM 18
\\xbe9375c6a420d2eeb258962efb95551a5b722803 STMX 18
\\x592481a5f6b4f078cc303c2cde4337dfa2d76fa0 STN 18
\\xe63d6b308bce0f6193aec6b7e6eba005f41e36ab STN 18
\\x55150e8378b81f930f310d4b62ab7e1252c30b9b STN5 18
\\x9040e237c3bf18347bb00957dc22167d0f2b999d STND 18
\\xcb39c3502415152b2ec90ff07ee18cc94f681a72 STO 18
\\x1296a923cd4f39116e0297d921fe25fe228552c6 STOGE 18
\\x4ff5253e2304e3f5ed6547ac5d9952a62b91e3e8 STOL 18
\\xdc47f2ba852669b178699449e50682d6ceaf8c07 STON 18
\\x35b55c25731e9b05b1d8480ba39463d52c9d0211 STONK 18
\\x60ca261e14f26e8daae8b1a7f8e783d64859126c STONK 18
\\xb4058411967d5046f3510943103805be61f0600e STONK 18
\\x8c3ee4f778e282b59d42d693a97b80b1ed80f4ee STOP 18
\\xa3ceac0aac5c5d868973e546ce4731ba90e873c2 STOR 8
\\xb64ef51c888972c908cfacf59b47c1afbc0ab8ac STORJ 8
\\xd0a4b8946cb52f0661273bfbc6fd0e0c75fc6433 STORM 18
\\x08c32b0726c5684024ea6e141c50ade9690bbdcc STOS 18
\\x3fb8d8a28aff053ccf446bc075eecb7a0ef65d0c STPC 18
\\x9b5c2be869a19e84bdbcb1386dad83a2ec8dae82 STPL 18
\\xde7d85157d9714eadf595045cc12ca4a5f3e2adb STPT 18
\\x5c3a228510d246b78a3765c20221cbf3082b44a4 STQ 18
\\x426567f78e74577f8a6233b635970eb729631e05 STR 18
\\x84bb947fcedba6b9c7dcead42df07e113bb03007 STR 18
\\x74232704659ef37c08995e386a2e26cc27a8d7b1 STRK 18
\\x90b426067be0b0ff5de257bc4dd6a4815ea03b5f STRN 18
\\x350a6a30c79df3600c4e0e67deab0a64b645e2c2 STRNG 18
\\xc2e343118f937f88ee1fc3150cdc0d6f3d11bba7 STRO 18
\\x990f341946a3fdb507ae7e52d17851b87168017c STRONG 18
\\x97872eafd79940c7b24f7bcc1eadb1457347adc9 STRP 18
\\x0944d2c41fef3088467287e208e5bbb622a0c09c sTRX 18
\\x12c8b0914e6dee22c7557a0a8b928ae6cacfbcf7 STRX 18
\\xf2E08356588EC5cd9E437552Da87C0076b4970B0 sTRX 18
\\x4c14114c107d6374ec31981f5f6cc27a13e22f9a STS 18
\\x918da91ccbc32b7a6a0cc4ecd5987bbab6e31e6d sTSLA 18
\\xac9bb427953ac7fddc562adca86cf42d988047fd STT 18
\\x0371a82e4a9d0a4312f3ee2ac9c6958512891372 STU 18
\\x226e390751a2e22449d611bac83bd267f2a2caff STV 18
\\x006bea43baa3f7a6f765f14f10a1a1b08334ef45 STX 18
\\x0c63cae5fcc2ca3dde60a35e50362220651ebec8 STXEM 8
\\x8f5e78888f8933ed676a62bb6b58a4b279abe408 STXYM 6
\\x31b595e7cfdb624d10a3e7a562ed98c3567e3865 STZEN 8
\\x12480e24eb5bec1a9d4369cab6a80cad3c0a377a SUB 2
\\x8d75959f1e61ec2571aa72798237101f084de63a SUB 18
\\x0763fdccf1ae541a5961815c0872a8c5bc6de4d7 SUKU 18
\\x043c308bb8a5ae96d0093444be7f56459f1340b1 SUM 18
\\x7cc61e3ae6360e923e9296c802382ec7c9dd3652 SUN 8
\\xbdbf245c690d54b67c6e610a28486a2c6de08be6 SUNDER 18
\\x30635297e450b930f8693297eba160d9e6c8ebcf SUNI 18
\\x4a22a69e45ab29f9f7276b0267797474daf1f27c SUNI 18
\\xc890b0d8e98180759ea996563a938dce03a2dd55 SUNU 18
\\x47935edfb3cdd358c50f6c0add1cc24662e30f5f SUP8EME 6
\\xe53ec727dbdeb9e2d5456c3be40cff031ab40a55 SUPER 18
\\x0563dce613d559a47877ffd1593549fb9d3510d6 SUPERBID 18
\\x868ab6c9e560ff70584b9770d1bd1b961ad09d82 SUPT 8
\\xe120c1ecbfdfea7f0a8f0ee30063491e8c26fedf SUR 8
\\xb5a4ac5b04e777230ba3381195eff6a60c3934f2 SURE 18
\\xcb86c6a22cb56b6cf40cafedb06ba0df188a416e SURE 18
\\x46d473a0b3eeec9f55fade641bc576d5bc0b2246 SURF 8
\\xea319e87cf06203dae107dd8e5672175e3ee976c SURF 18
\\x57ab1e02fee23774580c119740129eac7081e9d3 sUSD 18
\\x57ab1ec28d129707052df4df418d58a2d46d5f51 sUSD 18
\\xc25a3a3b969415c80451098fa907ec722572917f sUSDCurve 18
\\xb2D679F6D676f173fAF3670a074B2C3A6D7Ebe28 SUSDDAI 18
\\x9B6678c766003aD69A15f795f433C0F62c10D4d5 sUSDUSDB 18
\\x6b3595068778dd592e39a122f4f5a5cf09c90fe2 SUSHI 18
\\x0a54d4b378c8dbfc7bc93be50c85debafdb87439 sushiBbadgerEth 18
\\xf9440fedc72a0b8030861dcdac39a75b544e7a3c sushiBdiggEth 18
\\x110492b31c59716ac47337e616804e3e3adc0b4a sushiWbtcBadger 18
\\x9a13867048e01c663ce8Ce2fE0cDAE69Ff9F35E3 sushiWbtcDigg 18
\\xceff51756c56ceffca006cd410b03ffc46dd3a58 sushiWbtcEth 18
\\x18d98d452072ac2eb7b74ce3db723374360539f1 sushiWbtcIbbtc 18
\\xaa2ce7ae64066175e0b90497ce7d9c190c315db4 SUTER 18
\\x676a32b50e58924effad343f1d4d3c8dd0128889 SV7 18
\\x3408b204d67ba2dbca13b9c50e8a45701d8a1ca6 SVB 18
\\x64ea2c6104f1cf3035e28be0f781b6286d50934d SVC 18
\\xa8b3b1392b17f64d5a50b4b4bd3800324d07800b SVC001 8
\\x9cec686ba6f07d6135b2091140c795166ef5b761 SVCS 18
\\xbdeb4b83251fb146687fa19d1c660f99411eefe3 SVD 18
\\x7ca62545a380e7d71f8f5cfa14b9211002075930 SVS 18
\\xc434b27736a6882d33094d34792999702860a13c SVX 9
\\x03b155af3f4459193a276395dd76e357bb472da1 SWACE 18
\\x87edffde3e14c7a66c9b9724747a1c5696b742e6 SWAG 18
\\xa19a40fbd7375431fab013a4b08f00871b9a2791 SWAGG 4
\\xadcc610f96c386d78f68b7f0a04e3a7c8ff94ff8 SWAN 18
\\xcc4304a31d09258b0029ea7fe63d032f52e44efe SWAP 18
\\x8cb924583681cbfe487a62140a994a49f833c244 SWAPP 18
\\xc0f1728d9513efc316d0e93a0758c992f88b0809 SWAT 8
\\xadf8b8050639b6236915f7516d69de714672f0bf SWC 18
\\x4d07fdd4bae81ce2c8b1b76f4db2064c35d7851e SWET 18
\\xba21ef4c9f433ede00badefcc2754b8e74bd538a SWFL 18
\\x0bb217e40f8a5cb79adf04e1aab60e5abd0dfc1e SWFTC 8
\\x92ef4ffbfe0df030837b65d7fccfe1abd6549579 SWG 18
\\x8287c7b963b405b7b8d467db9d79eec40625b13a SWINGBY 18
\\x13d71cfc90a83cd1cc0e59675c3f4b90d4162a8b SWIPE 8
\\x48c3399719b582dd63eb5aadf12a40b4c3f52fa2 SWISE 18
\\x692eb773e0b5b7a79efac5a015c8b36a2577f65c SWISS 18
\\x3505f494c3f0fed0b594e01fa41dd3967645ca39 SWM 18
\\x9e88613418cf03dca54d6a2cf6ad934a78c7a17a SWM 18
\\xb8baa0e4287890a5f79863ab62b7f175cecbd433 SWRV 18
\\x3ac2ab91ddf57e2385089202ca221c360ced0062 SWSH 18
\\xb9e7f8568e08d5659f5d29c4997173d84cdf2607 SWT 18
\\xb4371da53140417cbb3362055374b10d97e420bb SWTH 8
\\x77c6e4a580c0dce4e5c7a17d0bc077188a83a059 SWUSD 18
\\xa1248c718d52752b2cc257eeb0eba900408daeb8 SWYFTT 18
\\x99fe3b1391503a1bc1788051347a1324bff41452 SX 18
\\x6a22e5e94388464181578aa7a6b869e00fe27846 sXAG 18
\\x6e5709515c767c907e43a03388cc816bd65e797c sXAG 18
\\x261efcdd24cea98652b9700800a13dfbca4103ff sXAU 18
\\xe05d803fa0c5832fa2262465290abb25d6c2bfa3 sXAU 18
\\x6a48ba795e3289b9151036e189e352e3ee2c7798 SXC 18
\\x12b306fa98f4cbb8d4457fdff3a0a0a56f07ccdf SXDT 18
\\x6a126b1a4d6a66370930eca642eff93d8e1be321 SXHC 12
\\x222efe83d8cc48e422419d65cf82d410a276499b SXL 4
\\x5299d6f7472dcc137d7f3c4bcfbbb514babf341a sXMR 18
\\x8ce9137d39326ad0cd6491fb5cc0cba0e089b6a9 SXP 18
\\xa2b0fde6d710e201d0d608e924a484d1a5fed57c sXRP 18
\\x2e59005c5c0f0a4D77CcA82653d48b46322EE5Cd sXTZ 18
\\xf45b14ddabf0f0e275e215b94dd24ae013a27f12 sXTZ 18
\\x2c82c73d5b34aa015989462b2948cd616a37641f SXUT 18
\\xef31cb88048416e301fee1ea13e7664b887ba7e8 SYAX 18
\\x86a49f08ab6531a3e0e814c75f36de661b986ca1 SYB7 18
\\x69428bb4272e3181de9e3cab461e19b0131855c8 SYBC 8
\\xe49214e4c92dc9bcb3b56c1309afe0d626dd730e SYC 18
\\x322124122df407b0d0d902cb713b3714fb2e2e1f SYFI 9
\\x8282df223ac402d04b2097d16f758af4f70e7db0 SYFL 18
\\xf293d23bf2cdc05411ca0eddd588eb1977e8dcd4 SYLO 18
\\x2fd61567c29e7adb4ca17e60e1f4a3fcfe68acb8 SYM 18
\\x57db3ffca78dbbe0efa0ec745d55f62aa0cbd345 SYMM 18
\\x0f2d719407fdbeff09d87557abb7232601fd9f29 SYN 18
\\x1695936d6a953df699c38ca21c2140d497c08bd9 SYN 18
\\xb6ff96b8a8d214544ca0dbc9b33f7ad6503efd32 SYNC 18
\\x6086b52cab4522b4b0e8af9c3b2c5b8994c36ba6 SZO 18
\\xe7775a6e9bcf904eb39da2b68c5efb4f9360e08c TAAS 6
\\xca694eb79ef355ea0999485d211e68f39ae98493 TAC 8
\\xdeeb6091a5adc78fa0332bee5a38a8908b6b566e TAC 18
\\x00d1793d7c3aae506257ba985b34c76aaf642557 TACO 18
\\x41c028a4c1f461ebfc3af91619b240004ebad216 TACO 18
\\x9f7229af0c4b9740e207ea283b9094983f78ba04 TAD 18
\\xcc4ae94372da236e9b113132e0c46c68704246b9 TAG 18
\\x4f9f3504d6c3670672692fcbcaeb409b0cfb40b2 TAIYAKI 18
\\x1d4ccc31dab6ea20f461d329a0562c1c58412515 TALAO 18
\\xcaabcaa4ca42e1d86de1a201c818639def0ba7a7 TALK 18
\\x2c36204a0712a2a50e54a62f7c4f01867e78cb53 TAN 18
\\x182f4c4c97cd1c24e1df8fc4c053e5c47bf53bef TANGO 18
\\xf604d1e51122592e0babe63ac334c0e647222f2d TANKS 18
\\x7f1f2d3dfa99678675ece1c243d3f7bc3746db5d TAP 18
\\xc567bca531992352166252ea5121e535432e81ed TAR 8
\\xf001937650bb4f62b57521824b2c20f5b91bea05 TARA 18
\\xcdd0a6b15b49a9eb3ce011cce22fac2ccf09ece6 TARM 18
\\x37ee79e0b44866876de2fb7f416d0443dd5ae481 TAT 18
\\xc27a2f05fa577a83ba0fdb4c38443c0718356501 TAU 18
\\x00006100f7090010005f1bd7ae6122c3c2cf0090 TAUD 18
\\xdd690d8824c00c84d64606ffb12640e932c1af56 TAVITT 8
\\x4a7adcb083fe5e3d6b58edc3d260e2e61668e7a2 TBB 18
\\x627974847450c45b60b3fe3598f4e6e4cf945b9a TBC 18
\\xa1ed0364d53394209d61ae8bfdb8ff50484d8c91 TBC 18
\\x2ecb95eb932dfbbb71545f4d23ca303700ac855f TBCC 18
\\x323e4d8097B0A58aB8210AC6efCC4a89285cFc6B TBCUSDB 18
\\x391612e67b0252e0d1e1460501b41545931faef9 TBG 18
\\x8daebade922df735c38c80c7ebd708af50815faa TBTC 18
\\x3a92bd396aef82af98ebc0aa9030d25a23b11c6b TBX 18
\\x00000100f2a2bd000715001920eb70d229700085 TCAD 18
\\x16c52ceece2ed57dad87319d91b5e3637d50afa4 TCAP 18
\\x7510d6fac98a6eca2db7c9357619715a7f5049d4 TCAPBTCUSDC 18
\\x8e4dbf540bf814c044785218b58c930b20a56be1 TCAPETHDAI 18
\\x7051620d11042c4335069aaa4f10cd3b4290c681 TCASH 8
\\xaff84e86d72edb971341a6a66eb2da209446fa14 TCAT 18
\\x36dcffe069a3f2878fab2a46d81e83d462d0cbf7 TCFX 18
\\x59c337ef937d0ba9cb1cc47d4e6ded632d22d623 TCH 18
\\x9972a0f24194447e73a7e8b6cd26a52e02ddfad5 TCH 0
\\x9b39a0b97319a9bd5fed217c1db7b030453bac91 TCH 18
\\xcd475371e39c0d94e82fccc9dd0ea710d0dc0c0b TCH 18
\\x28d7f432d24ba6020d1cbd4f28bedc5a82f24320 TCNX 18
\\x00ff902d4b2bfdbd0db38887412447c30b565aa0 TCO 18
\\x7a3d5d49d64e57dbd6fbb21df7202bd3ee7a2253 TCORE 18
\\x06576eb3b212d605b797dc15523d9dc9f4f66db4 TCP 18
\\x331a4589516eae384ea5f557853af6af73b9534e TCP 18
\\x9c4a4204b79dd291d6b6571c5be8bbcd0622f050 TCR 18
\\xe38b72d6595fd3885d1d2f770aa23e94757f91a1 TCR 8
\\x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7 TCT 18
\\xc5e19fd321b9bc49b41d9a3a5ad71bcc21cc3c54 TDEX 18
\\x5b11aacb6bddb9ffab908fdce739bf4aed554327 TDP 18
\\x6295ab2be04a617747481b292c390bfca592cf28 TDS 18
\\x5dced3c2fab61e21b25177c6050d3f166f696110 TEA 18
\\x1c79ab32c66acaa1e9e81952b8aaa581b43e54e7 TEAM 4
\\xb05af453011d7ad68a92b0065ffd9d1277ed2741 TEAM 18
\\x38d58b82cb24a3e0410a7991f255174c9fd8093b TEAT 0
\\x6286a9e6f7e745a6d884561d88f94542d6715698 TECH 18
\\x467bccd9d29f223bce8043b84e8c8b282827790f TEL 2
\\x85e076361cc813a908ff672f9bad1541474402b2 TEL 2
\\x470ebf5f030ed85fc1ed4c2d36b9dd02e77cf1b7 TEMPLE 18
\\x74159651a992952e2bf340d7628459aa4593fc05 TEN 18
\\xdd16ec0f66e54d453e6756713e533355989040e4 TEN 18
\\x1453dbb8a29551ade11d89825ca812e05317eaeb TEND 18
\\x776ca7ded9474829ea20ad4a5ab7a6ffdb64c796 TENS 18
\\x2e65e12b5f0fd1d58738c6f38da7d57f5f183d1c TEP 8
\\x2d5bed63b0fe325ed3b865ae2cdaa3649eb25461 TESLF 18
\\x79cdfa04e3c4eb58c4f49dae78b322e5b0d38788 TFB 18
\\x8694ee05b45c9fe1058ce532de8dbcf1d84a4154 TFC 5
\\xE5F166c0D8872B68790061317BB6CcA04582C912 TFD 18
\\x666a64f5567c3145fba7ca9ef73648cd4fa2008f TFG1 8
\\xa7f976c360ebbed4465c2855684d1aae5271efa9 TFL 8
\\xaef4f02e31cdbf007f8d98da4ae365188a0e9ecc TFT 8
\\xf8e06e4e4a80287fdca5b02dccecaa9d0954840f TGAME 18
\\x00000000441378008ea67f4284a57932b1c000a5 TGBP 18
\\x375a08ce3a460f20bbafd282be1e3579a2c31f41 TGCO 18
\\xdb0c52980e66ef97ee2ab85f57f86cd53928ac93 THANOS 9
\\xb4a677b0e363c3815d46326954a4e4d2b1ace357 THE 18
\\x9e10f61749c4952c320412a6b26901605ff6da1d THEOS 18
\\x3883f5e181fccaf8410fa61e12b59bad963fb645 THETA 18
\\x3204dcde0c50b7b2e606587663a0fe2ee8dfb6bf THEX 0
\\x0000852600ceb001e08e00bc008be620d60031f2 THKD 18
\\xa5f2211b9b8170f694421f2046281775e8468044 THOR 18
\\x9f58702ef19ebeb76363884362439a8691e3f033 THPT 4
\\x35a735b7d1d811887966656855f870c05fd0a86d THRN 18
\\x4f27053f32eda8af84956437bc00e5ffa7003287 THRT 18
\\x43a89815f33747edbecc588d6bb7e1c10dda5599 THUN 18
\\xa98ed1fd277ead2c00d143cbe1465f59e65a0066 THX 18
\\xf08c68bd5f4194d994fd70726746bf529ee5a617 THX 0
\\x72430a612adc007c50e3b6946dbb1bb0fd3101d1 TIC 8
\\x36b60a425b82483004487abc7adcb0002918fc56 TICO 8
\\x29cbd0510eec0327992cd6006e63f9fa8e7f33b7 TIDAL 18
\\x999967e2ec8a74b7c8e9db19e039d920b31d39d0 TIE 18
\\x749826f1041caf0ea856a4b3578ba327b18335f8 TIG 18
\\x485d17a6f1b8780392d53d64751824253011a260 TIME 8
\\xa54c67bd320da4f9725a6f585b7635a0c09b122e TIME 6
\\x47fa4b26c1c52bc35654f98d10cd61b9f3e10267 TINKU 9
\\x2d0e64b6bf13660a4c0de42a0b88144a7c10991f TINU 9
\\x80bc5512561c7f85a3a9508c7df7901b370fa1df TIO 18
\\xd947b0ceab2a8885866b9a04a06ae99de852a3d4 TIOX 18
\\x07de533cbc72395c32eb8981ddccd2cc6a6e1c4e TIP 18
\\x3a8cccb969a61532d1e6005e2ce12c200caece87 TITAN 18
\\xea1f346faf023f974eb5adaf088bbcdf02d761f4 TIX 18
\\x24e89bdf2f65326b94e36978a7edeac63623dafa TKING 18
\\xc626d951eff8e421448074bd2ad7805c6d585793 TKING 18
\\xda23d301761e4e2bf474951f978f6dfb6f3c9f14 TKINU 9
\\x2b5016cea1c425f915e13727f7657025de3208fe TKMN 18
\\xaaaf91d9b90df800df4f55c205fd6989c977e73a TKN 8
\\x497Ec0D6Ba2080f0ed7ecf7a79a2A907401b3239 TKNBNT 18
\\xbce7bd79558dda90b261506768f265c5543a9f90 TKNT 18
\\xd31695a1d35e489252ce57b129fd4b1b05e6acac TKP 18
\\x13e9ec660d872f55405d70e5c52d872136f0970c TKT 18
\\x667102bd3413bfeaa3dffb48fa8288819e480a88 TKX 8
\\x888888848b652b3e3a0f34c96e00eec0f3a23f72 TLM 4
\\x679131f591b4f369acb8cd8c51e68596806c3916 TLN 18
\\x9f300b4ac0bf94cad77e7e2d3f850352b8bb264c TLNT 8
\\x7825e833d495f3d1c28872415a4aee339d26ac88 TLOS 18
\\x4afadb32b8fdb334cf9f20afb476a06c1f5b111a TLS 8
\\x06f3cdabae564b0546529b4dd8fef1bcd4235753 TLW 8
\\x1c153badb7e54abcdcb65f0a09fcd6f10de36aa3 TMC 18
\\xe13559cf6edf84bd04bf679e251f285000b9305e TMC 18
\\x5d45aa01b73c971c65f3df409c9b3627b8fe2726 TMCN 18
\\x6e742e29395cf5736c358538f0f1372ab3dfe731 TME 18
\\xd32641191578ea9b208125ddd4ec5e7b84fcab4c TMED 18
\\x901fe080ee18383bf5494049538f1bca155f4d0b TMH 18
\\x52132a43d7cae69b23abe77b226fa1a5bc66b839 TMPL 9
\\x3209f98bebf0149b769ce26d71f7aea8e435efea TMT 18
\\x6f02055e3541dd74a1abd8692116c22ffafadc5d TMT 18
\\xb9cb7905981198add8059114b3b7dc7042b52f7b TMT 18
\\x5abfd418adb35e89c68313574eb16bdffc15e607 TMV 18
\\xf7920b0768ecb20a123fac32311d07d193381d6f TNB 18
\\x39e743fee400a5d9b36f1167b70c10e8f06440e5 TNC 18
\\xa5a2af22eac6f050227d844b108c2b2a011fd329 TNI 9
\\xad6683b7f3618c44f5ca6040902812dd890dde4d TNO 18
\\xb0280743b44bf7db4b6be482b2ba7b75e5da096c TNS 18
\\x08f5a9235b08173b7569f83645d2c7fb55e8ccd8 TNT 8
\\x1999a92711cf8815b7f6b07bd34b4287d853cfba TOADZ 18
\\x7777770f8a6632ff043c8833310e245eba9209e6 TOB 18
\\x4fb721ef3bf99e0f2c193847afa296b9257d3c30 TOK 8
\\x9a49f02e128a8e989b443a8f94843c0918bf45e7 TOK 8
\\x2e9d63788249371f1dfc918a52f8d799f4a38c94 TOKE 18
\\xa0f0546eb5e3ee7e8cfc5da12e5949f3ae622675 TOKO 18
\\xd07d9fe2d2cc067015e2b4917d24933804f42cfa TOL 18
\\xf7970499814654cd13cb7b6e7634a12a7a8a9abc TOM 18
\\x82bd290afa5cc1b75f46822fec415e2be51d7d46 TOMATO 18
\\x8b353021189375591723e7384262f45709a3c3dc TOMO 18
\\xa38920c00d1a5303db538a3ea08da7a779e1f751 TOMOBULL 18
\\x05d3606d5c81eb9b7b18530995ec9b29da05faba TOMOE 18
\\x2be5e8c109e2197d077d13a82daead6a9b3433c5 TON 18
\\x6a6c2ada3ce053561c2fbc3ee211f23d9b8c520a TON 18
\\x582d872a1b094fc48f5de31d3b73f2d9be47def1 TONCOIN 9
\\x2ab6bb8408ca3199b8fa6c92d5b455f820af03c4 TONE 18
\\x0ebd5ec91680d3b0cedbb1d5bb61851154d3edb6 TOP 18
\\xdcd85914b8ae28c1e62f1c488e1d968d5aaffe2b TOP 18
\\xf6317dd9b04097a9e7b016cd23dcaa7cfe19d9c6 TOPB 18
\\x1b6c5864375b34af3ff5bd2e5f40bc425b4a8d79 TOPC 6
\\x4f5f2eea4ed3485e5e23a39704d5fd9d0a423886 TOR 18
\\x9ea20fbfaa44efbc60c6728fcdba17f01b7e04fe TOR 8
\\xc71e20e54adfc415f79bf0a8f11122917920050e TORI 18
\\x77777feddddffc19ff86db637967013e6c6a116c TORN 18
\\x406ae253fb0aa898f9912fb192c1e6deb9623a07 TOROCUS 18
\\xfb5a551374b656c6e39787b1d3a03feab7f3a98e TOS 18
\\xf136d7b0b7ae5b86d21e7b78dfa95375a7360f19 TOSHI 18
\\x6ff1bfa14a57594a5874b37ff6ac5efbd9f9599a TOTM 18
\\xe3278df3eb2085ba9b6899812a99a10f9ca5e0df TOTO 8
\\x1c9922314ed1415c95b9fd453c3818fd41867d0b TOWER 18
\\x29239242a83479a4074cb1c9e2a3e6705a4a4455 TOZ 18
\\x4161725d019690a3e0de50f6be67b07a86a9fae1 TPT 4
\\xaa7a9ca87d3694b5755f213b5d04094b8d0f0a6f TRAC 18
\\xb09ad98524780228d2df4f34aa665d9dbb9999e4 TRAD 18
\\x40e45890dff79e7d533797d964e64a2c0121f49a TRADE 7
\\x6e5970dbd6fc7eb1f29c6d2edf2bc4c36124c0c1 TRADE 18
\\x6f87d756daf0503d08eb8993686c7fc01dc44fb1 TRADE 18
\\xe225aca29524bb65fd82c79a9602f3b4f9c6fe3f TRAT 5
\\x0ba45a8b5d5575935b8158a88c631e9f9c95a2e5 TRB 18
\\x88df592f8eb5d7bd38bfef7deb0fbc02cf3778a0 TRB 18
\\x901f8679a6ef435d533732f5ea49bb82d568be99 TRB 18
\\x7031ab87dcc46818806ec07af46fa8c2ad2a2bfc TRBT 18
\\x0a9d68886a0d7db83a30ec00d62512483e5ad437 TRCL 0
\\x92a42db88ed0f02c71d439e55962ca7cab0168b5 TRDG 9
\\x297d33e17e61c2ddd812389c2105193f8348188a TRDL 18
\\xc6d603a9df53d1542552058c382bf115aace70c7 TRET 8
\\xc299004a310303d1c0005cb14c70ccc02863924d TRI 9
\\x3a856d4effa670c54585a5d523e96513e148e95d TRIAS 18
\\xe09216f1d343dd39d6aa732a08036fee48555af0 TRIB 18
\\xc7283b66eb1eb5fb86327f08e1b5816b0720212b TRIBE 18
\\x8b40761142b9aa6dc8964e61d0585995425c3d94 TRIO 18
\\x1350fbe8ce27762ec19134bf8fc405a427fe9bf1 TRIPS 18
\\x56b4f8c39e07d4d5d91692acf9d0f6d4d3493763 TRISM 18
\\x056354f3ff20743aa4c0da365603871c7000b081 TRIX 18
\\xbffe4fdcd397e7942fd7c9f99255e0aa34e4b3fb TRM 8
\\x70968feaf13299d0dbf78f66860bab9dbe3856bc TRN 18
\\xc3dd23a0a854b4f9ae80670f528094e9eb607ccb TRND 18
\\x831168e04047d881968d236249689cc001a6da08 TRO 18
\\x2ec75589856562646afe393455986cad26c4cc5f TROP 18
\\x9b1e1fc958b83e801d1342f9f9ba7da3a55ba1ef TRP 8
\\x490e3f4af13e1616ec97a8c6600c1061a8d0253e TRR 18
\\xcb94be6f13a1182e4a4b6140cb7bf2025d28e41b TRST 6
\\x32054526df40fbb08b733abe256a8d21de58432d TRT 18
\\xa690a5349054d8c8a887591b0ff5eb944f56274a TRUDOGE 9
\\xf65b5c5104c4fafd4b709d9d60a185eae063276c Truebit 18
\\x4c19596f5aaff459fa38b0f7ed92f11ae6543784 TrueFi 8
\\x012ba3ae1074ae43a34a14bca5c4ed0af01b6e53 TRUMP 18
\\xdd436a0dce9244b36599ae7b22f0373b4e33992d TRUSD 18
\\x57700244b20f84799a31c6c96dadff373ca9d6c5 TRUST 18
\\x72955ecff76e48f2c8abcce11d54e5734d6f3657 TRV 18
\\xf230b790e05390fc8295f4d3f60332c93bed42e2 TRX 6
\\x86807da5b92d31f67e128771cacb85f3579646ea TRXBEAR 18
\\xc175e77b04f2341517334ea3ed0b198a01a97383 TRXBULL 18
\\xad5fe5b0b8ec8ff4565204990e4405b2da117d8e TRXC 0
\\xe58c8df0088cf27b26c7d546a9835deacc29496c TRXHEDGE 18
\\xc12ecee46ed65d970ee5c899fcc7ae133aff9b03 TRY 18
\\x2c537e5624e4af88a7ae4060c022609376c8d0eb TRYb 6
\\xa5ddfca8b837ccd0cf80fe6c24e2a9018fb50dba TRYBBEAR 18
\\xc7038ccf60e48c5b7119e55566a6ad9f2d66c7c2 TRYBBULL 18
\\x4846239fdf4d4c1aeb26729fa064b0205aca90e1 TSD 18
\\x525794473f7ab5715c81d06d10f52d11cc052804 TSHP 18
\\x03806ce5ef69bd9780edfb04c29da1f23db96294 TSL 18
\\x110fe5f21c1edd4f03a6e0de0d96d0c2eed0b9cc TSLA 18
\\x58959e0c71080434f237bd42d07cd84b74cef438 TSR 5
\\xd9bae39c725a1864b1133ad0ef1640d02f79b78c TST 18
\\x734c90044a0ba31b3f2e640c10dc5d3540499bfd TSX 18
\\xecacab6725ac1711d97e55df35d525b863b8b9f7 TT 18
\\xaff4abdc75f07387401ba9bc0f75ebe4c734b4c9 TTC 18
\\x714b1fded61090a6c49eb0b4d088b8e5ebd64e61 TTM 18
\\x2494a68c1484376fef880b4c24d91f049d29b02a TTT 18
\\x9f599410d207f3d2828a8712e5e543ac2e040382 TTT 18
\\xef2e239b21a81719abaabc6239e2e90859b44d9b TTX 18
\\xd1766a85b0d6f81185782dc07f15326d63c3cbaa TUBER 18
\\x5e3002dff591c5e75bb9dedae268049742e6b13a TUDA 8
\\xb5943c96b28570d63512dda2069045b304994daf TUGZ 18
\\x1600c2e08acb830f2a4ee4d34b48594dade48651 TUR 18
\\x0000000000085d4780b73119b644ae5ecd22b376 TUSD 18
\\x8dd5fbce2f6a956c3022ba3663759011dd51e73e TUSD 18
\\xd084b83c305dafd76ae3e1b4e1f1fe2ecccb3988 TVK 18
\\x5635ddeabf9cdda686995fe90beb5411831563fc TVNT 8
\\x98e0438d3ee1404fea48e38e92853bb08cfa68bd TVT 8
\\xa2ef2757d2ed560c9e3758d1946d7bcccbd5a7fe TWA 18
\\x2b6ff53fc2493ccd5202d80a6c439741414c5ff2 TWEE 18
\\xdad26bce7dcf59cd03a2455558e4dd73e1c07b66 TWI 18
\\x975ce667d59318e13da8acd3d2f534be5a64087b TWOB 18
\\xc11551bb497875050b69a2fdccc20a53a9a70263 TXC 18
\\x8eef5a82e6aa222a60f009ac18c24ee12dbf4b41 TXL 18
\\x3a82d3111ab5faf39d847d46023d9090261a658f TYC 18
\\xeaf61fc150cd5c3bea75744e830d916e60ea5a9f TYPE 4
\\x614fd8f06ce4d93aa2361b342c86554eb5cb39f1 TYT 6
\\x888888877a18532b78d259577d00057054c50dd8 U8D 18
\\x17e347aad89b30b96557bcbfbff8a14e75cc88a1 UAPE 18
\\x822808104e173cb4b21549d8e921cae9e4f655e9 UAPE 9
\\x44440bd68b5e4b1e0cb810669097e9573175601b UARC 18
\\xf824402747e5142d04892fdc27c73e6460e80080 UARTB 18
\\x01c0987e88f778df6640787226bc96354e1a9766 UAT 18
\\x1fc31488f28ac846588ffa201cde0669168471bd UAX 2
\\x68b1cadb8d5ab0c97fe9d9fbe0eb60acb329fe3f UAXIE 18
\\x817e2addceaa4907623666a7800b1553ca21192d UBA 18
\\x1cde42a34d549fbc1e75f63e56867f14a8e1175b UBC 18
\\xcb4b17b9fa78bf1fac6d239e5bce291035750b6c UBEEPLE 18
\\x6704b673c70de9bf74c8fba4b4bd748f0e2190e1 UBEX 18
\\xdd1ad9a21ce722c151a836373babe42c868ce9a4 UBI 18
\\xb9eceb9f717852ad0d936b46155cb0c0f43cbe8e UBIN 18
\\xdb13025b219db5e4529f48b65ff009a26b6ae733 UBN 18
\\x265ba42daf2d20f3f358a7361d9f69cb4e28f0e6 UBOMB 18
\\x8400d94a5cb0fa0d041a3788e395285d61c9ee5e UBT 8
\\x290bd3a8F785a8dB30a0F6Baf9B88863b831747F UBTBNT 18
\\x6b74dd5d01f8320081247f5cf1f7a48324700db6 UBU 8
\\xf5b5efc906513b4344ebabcf47a04901f99f09f3 UBX 0
\\x8564653879a18c560e7c0ea0e084c516c62f5653 UBXT 18
\\xbaa70614c7aafb568a93e62a98d55696bcc85dfe UCAP 18
\\x92e52a1a235d9a103d970901066ce910aacefd37 UCASH 8
\\x5fb99a3593d7088e44377a1beb27739bd928f269 UCM 18
\\x722f97a435278b7383a1e3c47f41773bebf3232c UCM 18
\\xaaf37055188feee4869de63464937e683d61b2a1 UCN 18
\\x8a3d77e9d6968b780564936d15b09805827c21fa UCO 18
\\xa918897bd10d6dee614470c24a061b78b021b3a9 UCOIN 18
\\xd8d887b5611a5b3e90bf764085d9858031d2be67 UCOS 18
\\xe7bf7fe480a707cf516b4dc431ea8958ab427220 UCS 18
\\x3c4bea627039f0b7e7d21e34bb9c9fe962977518 UCT 18
\\x6d1dc3928604b00180bb570bdae94b9698d33b79 UCT 18
\\x3d3af44cf092a49280e316f09c8f20ecf97bc933 UCX 18
\\xe7cd2c56d3f01f9f8ae542ba5b2f00cf2cf994b1 UCX 18
\\x4ad0b81f92b16624bbcf46fc0030cfbbf8d02376 UDAI 18
\\xea3983fc6d0fbbc41fb6f6091f68f3e08894dc06 UDO 18
\\x7e6c38d007740931e4b419bf15a68c79a0fb0c66 UDOKI 18
\\x12f649a9e821f90bb143089a6e56846945892ffb UDOO 18
\\x90de74265a416e1393a450752175aed98fe11517 UDT 18
\\xb3dd5dce850dca7519e74a943568b69f958df52c UENC 18
\\x77607588222e01bf892a29abab45796a2047fc7b UETH 18
\\x40986a85b4cfcdb054a6cbfb1210194fee51af88 UFARM 18
\\x995de3d961b40ec6cdee0009059d48768ccbdd48 UFC 8
\\xcccf837f40d334f8602f031e64b52ad4cd2b6601 UFEWO 18
\\x021576770cb3729716ccfb687afdb4c6bf720cb6 UFFYI 18
\\xcda4e840411c00a614ad9205caec807c7458a0e3 UFI 18
\\x249e38ea4102d0cf8264d3701f1a0e39c4f2dc3b UFO 18
\\xea097a2b1db00627b2fa17460ad260c016016977 UFR 18
\\x0202be363b8a4820f3f4de7faf5224ff05943ab1 UFT 18
\\x3d995510f8d82c2ea341845932b5ddde0bead9a3 UGAS-JAN21 18
\\x8716fc5da009d3a208f0178b637a50f4ef42400f UGAS 18
\\xa6b9d7e3d76cf23549293fb22c488e0ea591a44e UGAS-JUN21 18
\\x81fab276aec924fbde190cf379783526d413cf70 UGASFEB21 18
\\x2b5DFb7874F685BEA30b7d8426c9643A4bCF5873 UGASJUN21 18
\\x4e110603e70b0b5f1c403ee543b37e1f1244cf28 UGASMAR21 18
\\xf485c5e679238f9304d986bb2fc28fe3379200e5 UGC 18
\\xf503bf7a7b0962205668ed041140f4af360304be UGLYPH 18
\\xd4f2249dd6c26446f1413f6d97f14fcaa7792545 uGMC 18
\\xc9df0ed2e9ef4357b51db171ff08297d10875280 UGONE 17
\\x30c2a84aed6db30e31cf4d7059b1836c12c68068 UGOTCHI 18
\\x9cf98eb8a8b28c83e8612046cf55701ce3eb0063 UGT 18
\\x9135d92e3a34e2a94e4474b74b9dc2d51118eed5 UHP 18
\\x4290563c2d7c255b5eec87f2d3bd10389f991d68 UIP 18
\\xa499648fd0e80fd911972bbeb069e4c20e68bf22 UJENNY 18
\\xaffdb768e5f909b9a6ed110ad724b5e454670c08 UJORD 18
\\x24692791bc444c5cd0b81e3cbcaba4b04acd1f3b UKG 18
\\x5313e18463cf2f4b68b392a5b11f94de5528d01d ULLU 18
\\x09617f6fd6cf8a71278ec86e23bbab29c04353a7 ULT 18
\\xe884cc2795b9c45beeac0607da9539fd571ccf85 ULT 18
\\x035bfe6057e15ea692c0dfdcab3bb41a64dd2ad4 ULU 18
\\xb19dd661f076998e3b0456935092a233e12c2280 UM 18
\\x04fa0d235c4abf4bcf4787af4cf447de572ef828 UMA 18
\\x5872e64c3f93363822d2b1e4717be3398fdcea51 UMASK 18
\\x6fc13eace26590b80cccab1ba5d51890577d83b2 UMB 18
\\xa4bbe66f151b22b167127c770016b15ff97dd35c UMBR 18
\\x190fb342aa6a15eb82903323ae78066ff8616746 UMC 6
\\xd3ec111e4e33c0a1c32e3ad0be976214d30dc37e UMC 18
\\x61107a409fffe1965126aa456af679719695c69c UMI 18
\\x683239a4cab49642c6e025cf81d283f9c87bc07d UMOON 18
\\x10be9a8dae441d276a5027936c3aaded2d82bc15 UMX 18
\\xf29e46887ffae92f1ff87dfe39713875da541373 UNC 18
\\xf1795e0962c72a17b224335887b82e8a37afa430 UNCK 18
\\x2f4eb47a1b1f4488c71fc10e39a4aa56af33dd49 UNCL 18
\\x2d94408f45b2e6fa9effe1068b75116187c4e388 UNCLE 18
\\xadb2437e6f65682b85f814fbc12fec0508a7b1d0 UNCX 18
\\xd03b6ae96cae26b743a6207dcee7cbe60a425c70 UNDB 18
\\xa5959e9412d27041194c3c3bcbe855face2864f7 UNDG 18
\\x1f9840a85d5af5bf1d1762f925bdaddc4201f984 UNI 18
\\x2730d6fdc86c95a74253beffaa8306b40fedecbb UNI 8
\\x94e0bab2f6ab1f19f4750e42d7349f2740513ad5 UNIC 18
\\x64c5572e7a100af9901c148d75d72c619a7f1e9d UNICRAP 18
\\x83ee8ec605c0ae3d7f1c9e360ab45a6c1c033ab9 UNIDUB 18
\\x95b3497bbcccc46a8f45f5cf54b0878b39f8d96c UNIDX 18
\\x0ef3b2024ae079e6dbc2b37435ce30d2731f0101 UNIFI 18
\\x9e78b8274e1d6a76a0dbbf90418894df27cbceb5 UNIFI 18
\\x825130aa1beef07bdf4f389705321816d05b0d0f UNII 18
\\x3e370a6c8255b065bd42bc0ac9255b269cfcc172 UNIPOT 8
\\x3758e00b100876c854636ef8db61988931bb8025 UNIQ 18
\\x9ed8e7c9604790f7ec589f99b94361d8aab64e5e UNISTAKE 18
\\x25cef4fb106e76080e88135a0e4059276fa9be87 UNITS 5
\\x256845e721c0c46d54e6afbd4fa3b52cb72353ea UNIUSD 18
\\x0d4a11d5eeaac28ec3f61d100daf4d40471f1852 UNIv2(ETH/USDT) 18
\\x231b7589426ffe1b75405526fc32ac09d44364c4 UNIv2(WBTC/DAI) 18
\\xa2107fa5b38d9bbd2c461d6edf11b11a50f6b974 UNIv2(LINK/ETH) 18
\\xa478c2975ab1ea89e8196811f51a7b7ade33eb11 UNIv2(DAI/ETH) 18
\\xc5be99A02C6857f9Eac67BbCE58DF5572498F40c UNIv2(ETH/AMPL) 18
\\xcD7989894bc033581532D2cd88Da5db0A4b12859 UNIv2(WBTC/BADGER) 18
\\xd3d2e2692501a5c9ca623199d38826e513033a17 UNIv2(UNNI/ETH) 18
\\xdfc14d2af169b0d36c4eff567ada9b2e0cae044f UNIv2(AAVE/ETH) 18
\\xE86204c4eDDd2f70eE00EAd6805f917671F56c52 UNIv2(WBTC/DIGG) 18
\\x04ab43d32d0172c76f5287b6619f0aa50af89303 UNL 18
\\x354e514c135c8603f840ffadb4c33cde6d2a37e0 UNL 18
\\x226f7b842e0f0120b7e194d05432b3fd14773a9d UNN 18
\\x474021845c4643113458ea4414bdb7fb74a01a77 UNO 18
\\xd18a8abed9274edbeace4b12d86a8633283435da UNOS 18
\\x6dddf4111ad997a8c7be9b2e502aa476bf1f4251 UNT 18
\\x8d610e20481f4c4f3acb87bba9c46bef7795fdfe UNT 18
\\xf009f5531de69067435e32c4b9d36077f4c4a673 UNV 18
\\xe4ae84448db5cfe1daf1e6fb172b469c161cb85f UOP 18
\\xd13c7342e1ef687c5ad21b27c2b65d772cab5c8c UOS 4
\\x6ba460ab75cd2c56343b3517ffeba60748654d26 UP 8
\\xa46f33694f5b31a6ed27eda16ccd466e94c80f1a UPAK 18
\\x114a86d31b8cb3867040b48e7c17d5d04d886ce0 UPB 8
\\x6c103d85c15107dce19f5a75fc746227e610aabd UPEUR 2
\\x70d2b7c19352bb76e4409858ff5746e500f2b67c UPI 18
\\x6aca6de211ee17d38d05c7af583e43f9b1ec4c07 UPL 18
\\xc86d054809623432210c107af2e3f619dcfbf652 UPP 18
\\xf720e38f678b29b243f7d53b56acbf5de98f2385 UPR 18
\\x1EFa978C8560aB6A50B33810328a71f4D24967Ce UPT 8
\\x67abf1c62d8acd07ada35908d38cd67be7dfeb36 UPT 8
\\x6ca88cc8d9288f5cad825053b6a1b179b05c76fc UPT 18
\\x8d2bffcbb19ff14a698c424fbcdcfd17aab9b905 UPUNK 18
\\x86367c0e517622dacdab379f2de389c3c9524345 UPUSD 2
\\x5f778ec4b31a506c1dfd8b06f131e9b451a61d39 UPX 18
\\x0557df767419296474c3f551bb0a0ed4c2dd3380 UPXAU 5
\\x8806926ab68eb5a7b909dcaf6fdbe5d93271d6e2 UQC 18
\\xff8be4b22cedc440591dcb1e641eb2a0dd9d25a5 URAC 18
\\x72b19558b05706708b612fbbe86b71446eafc002 UREVV 14
\\x1735db6ab5baa19ea55d0adceed7bcdc008b3136 URQA 18
\\x6c5fbc90e4d78f70cc5025db005b39b03914fc0c URUS 18
\\x22a39c2dd54b71ac884657bb3e37308abe2d02e1 USD 0
\\x2f6081e3552b1c86ce4479b80062a1dda8ef23e3 USD 9
\\x44086035439e676c02d411880fccb9837ce37c57 USD 18
\\x9a48bd0ec040ea4f1d3147c025cd4076a2e71e3e USD++ 18
\\xf6c0aa7ebfe9992200c67e5388e4f42da49e1783 USD1 2
\\x3c7b464376db7c9927930cf50eefdea2eff3a66a USDA 8
\\x9a1997c130f4b2997166975d9aff92797d5134c2 USDAP 18
\\x1f5350558f1e3e8bf370d4d552f3ebc785bf2979 USDARY 18
\\x309627af60f0926daa6041b8279484312f2bf060 USDB 18
\\x846f7a6dE1eFbd7617760eBe1B89aa8CA2094025 USDB:PEGUSD 18
\\xd1146B08e8104EeDBa44a73B7bda1d102c6ceDC9 USDB / BNT 18
\\x36aaB614d872BEdC6eA6731339c82A3fa3aEc65B USDBNT 18
\\xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48 USDC 6
\\x4726e9de74573255ea41e0d00b49b833c77a671e USDEX 6
\\x05462671c05adc39a6521fa60d5e9443e9e9d2b9 USDF 9
\\x3d61e677944204cd1002202912a2b7a43a8e2823 USDF 9
\\x2b4200a8d373d484993c37d63ee14aee0096cd12 USDFL 18
\\x1c0b9c1995ea61f8fb505e4d94aa32b0c024899e USDG 6
\\x1c48f86ae57291f7686349f12601910bd8d470bb USDK 18
\\x3e991dbec296e00626e58c33b62e53bec9d54636 USDL 18
\\x674c6ad92fd080e4004b2312b45f796a192d27a0 USDN 18
\\x1456688345527be1f37e9e627da0837d6f08c925 USDP 18
\\x4954db6391f4feb5468b6b943d4935353596aec9 USDQ 18
\\x9921f8F53EE185a6BFD5d9D8935107934D0B07DA USDQBNT 18
\\xa4bdb11dc0a2bec88d24a3aa1e6bb17201112ebe USDS 6
\\xdac17f958d2ee523a2206206994597c13d831ec7 USDT 6
\\x0cd6c8161f1638485a1a2f5bf1a0127e45913c2f USDTBEAR 18
\\x8cce19943a01e78b7c277794fb081816f6151bab USDTBULL 18
\\xF2ff22976B973d6bcC17a7dC93B719162ADA2045 USDTUSDB 18
\\x41a03e41ef555392c9f0ad60f4f61e263078bf10 USDU 18
\\xeb269732ab75a6fd61ea60b06fe994cd32a83549 USDX 18
\\x147e3d644d53adadd18a28201b91e2b98aeb7f94 USE 18
\\xd9485499499d66b175cf5ed54c0a19f1a6bcb61a USE 18
\\xe0e05c43c097b0982db6c9d626c4eb9e95c3b9ce USF 18
\\xb893a8049f250b57efa8c62d51527a22404d7c9a USHIBA 9
\\xc18e7a03f8986798323658dd8645f93aa79ac5c9 USKITA 9
\\x2f766a83146f7eaee2c635c9f9a291e4b86f4108 USNS 18
\\xa47c8bf37f92abed4a126bda807a7b7498661acd UST 18
\\xec58d3aefc9aaa2e0036fa65f70d569f49d9d1ed USTONKS-APR21 6
\\x70a72833d6bf7f508c8224ce59ea1ef3d0ea3a38 UTK 18
\\xdc9ac3c20d1ed0b540df9b1fedc10039df13f99c UTK 18
\\x9e3319636e2126e3c0bc9e3134aec5e1508a46c7 UTNP 18
\\x1f8f123bf24849443a56ed9fc42b9265b7f3a39a UTO 18
\\x99f2b69ee2468c834a634ff50d930ae64e3e500f UTRIN 18
\\x16f812be7fff02caf662b85d5d58a5da6572d4df UTT 8
\\xa58a4f5c4bb043d2cc1e170613b74e767c94189b UTU 18
\\x21ae9e080a53ab98cc1266ed1c8cc27ffd3256d5 uTVL-0621 18
\\xc6bf2a2a43ca360bb0ec6770f57f77cdde64bb3f UTY 8
\\x3d9233f15bb93c78a4f07b5c5f7a018630217cb3 UUNICLY 18
\\xbc5991ccd8caceba01edc44c2bb9832712c29cab UUSDC 6
\\x178bf8fd04b47d2de3ef3f6b3d112106375ad584 UUSDT 6
\\xd16c79c8a39d44b2f3eb45d2019cd6a42b03e2a9 UUSDWETH-DEC 18
\\x3543638ed4a9006e4840b105944271bcea15605d UUU 18
\\x3ac7a71b97183e3db7722c75eaa8df2c1a0badfc UWAIFU 24
\\x3af5ba94c29a8407785f5f6d90ef5d69a8eb2436 UWBTC 8
\\xdbdd6f355a37b94e6c7d32fef548e98a280b8df5 UWL 18
\\xbdcd5fafe4336a844233ebb0aff845d6b2100899 UZE 18
\\x66e5d4063219a54a8244078affb49e23982d9640 UZZ 8
\\xe7ae6d0c56cacaf007b7e4d312f9af686a9e9a04 VAB 18
\\x9f801c1f02af03cc240546dadef8e56cd46ea2e9 VAI-VAIOT 18
\\xe88f8313e61a97cec1871ee37fbbe2a8bf3ed1e4 VAL 18
\\x297e4e5e59ad72b1b0a2fd446929e76117be0e0a VALOR 18
\\x49e833337ece7afe375e44f4e3e8481029218e5c VALUE 18
\\xb2c822a1b923e06dbd193d2cfc7ad15388ea09dd VAMP 18
\\x790baf0c914898c62163a61f150637d4bd180697 VANA 18
\\x4edd66235349e353eb8cb8e40596599644bfe91c VANY 18
\\x861b2456ac1a6ab5fb5c72aa456091f23ddec1cc VAULTZ 18
\\x9263dc18a4d2af78a3c2e1b95320076b94b5667f VBEE 18
\\xb8366948b4a3f07bcbf14eb1739daa42a26b07c4 VBIT 18
\\x48fb253446873234f2febbf9bdeaa72d9d387f94 vBNT 18
\\x1ffe24629f1b3df74fc0f6e5d086f2fd09258ff2 VBT 18
\\xe1406825186d63980fd6e2ec61888f7b91c4bae4 VBTC 18
\\xb72b31907c1c95f3650b64b2469e08edacee5e8f VBZRX 18
\\x9746953f5b1324a78132895cfd263f417b0faae3 VCT 18
\\x91e64f39c1fe14492e8fdf5a8b0f305bd218c8a1 VDX 18
\\x340d2bde5eb28c1eed91b2f790723e3b160613b7 VEE 18
\\xc9c3A465380bFaaC486C89ff7d5F60CC275D4E08 VEEBNT 18
\\xcb84d72e61e383767c4dfeb2d8ff7f4fb89abc6e VEGA 18
\\xcfeb09c3c5f0f78ad72166d55f9e6e9a60e96eec VEMP 18
\\xe14e06671702f0db50055388c29adc66821d933b VEN 18
\\x166f1a7ecae00bd43876a25b10a63c575e05c0e7 VERA 18
\\xd7f0cc50ad69408ae58be033f4f85d2367c2e468 VERA 18
\\x8f3470a7388c05ee4e7af3d01d8c722b0ff52374 VERI 18
\\x7ae0d42f23c33338de15bfa89c7405c068d9dc0a VERSE 18
\\x1f19f83fc9a25f3c861260143e36c17706257986 VEST 18
\\x37f04d2c3ae075fad5483bb918491f656b12bdb6 VEST 8
\\x3aef8e803bd9be47e69b9f36487748d30d940b96 VESTA 18
\\xd850942ef8811f2a866692a623011bde52a462c1 VET 18
\\x4ba6ddd7b89ed838fed25d208d4f644106e34279 VETH 18
\\x708b63545467a9bcfb67af92299102c650e34a0e VETH 18
\\xc3d088842dcf02c13699f936bb83dfbbc6f721ab VETH 18
\\x898bad2774eb97cf6b94605677f43b41871410b1 VETH2 18
\\x70a63225bcadacc4430919f0c1a4f0f5fcffbaac VEY 4
\\x44001a5656baafa5a3359ced8fa38e150a71eea2 VFI 18
\\x8e87f1811de0025d2335174dbc7338a43df6d7cc VGO 18
\\x16987c021c14ca1045cd0afebb33c124a58bf16c VGR 2
\\xcc394f10545aeef24483d2347b32a34a44f20e6f VGT 18
\\xe61eecfdba2ad1669cee138f1919d08ced070b83 VGTG 18
\\xb52fc0f17df38ad76f290467aab57cabaeeada14 VGTN 18
\\x94236591125e935f5ac128bb3d5062944c24958c VGW 5
\\x5af2be193a6abca9c8817001f45744777db30756 VGX 8
\\x8b6c3b7c01d9db4393f9aa734750f36df1543e9a VI 18
\\x2c974b2d0ba1716e644c1fc59982a89ddd2ff724 VIB 18
\\xe8ff5c9c75deb346acac493c463c8950be03dfba VIBE 18
\\x2c9023bbc572ff8dc1228c7858a280046ea8c9e5 VID 18
\\xe35f19e4457a114a951781aaf421ec5266ef25fe VIDA 18
\\xfef4185594457050cc9c23980d301908fe057bb1 VIDT 18
\\xc77b230f31b517f1ef362e59c173c2be6540b5e8 VIDY 18
\\x3d3d35bb9bec23b06ca00fe472b50e7a4c692c30 VIDYA 18
\\x0d5bb28972e0b2d63732f558b4af265aa5407467 VII 4
\\xd2946be786f35c3cc402c29b323647abda799071 VIKKY 8
\\x3db99ab08006aefcc9600972eca8c202396b4300 VINCI 18
\\x010c282118aa76174ce5952572ba715cf60a0c9b VINX 18
\\xf406f7a9046793267bc276908778b29563323996 VISION 18
\\xf938424f7210f31df2aee3011291b658f872e91e VISR 18
\\x23b75bc7aaf28e2d6628c3f424b3882f8f072a3c VIT 18
\\x81f8f0bb1cb2a06649e51913a151f0e7ef6fa321 VITA 18
\\x49bf0220c9ce17e52dcca3d217231746d676085b VIX 18
\\x5c62da804298d5972a323c80b539b8e7517a0dde VJC 18
\\x922ac473a3cc241fd3a0049ed14536452d58d73c VLD 18
\\x3989f36540052668c340a53aaeacb46d6cf0dd6c VLM 18
\\x98ad9b32dd10f8d8486927d846d4df8baf39abe2 VLO 18
\\x6b785a0322126826d8226d77e173d75dafb84d11 VLT 18
\\xaf5db2cc35ef9bba3cfa5f8faeedcf9b4e2f286f VLTM 8
\\x8c543aed163909142695f2d2acd0d55791a9edb9 VLX 18
\\x8d6b0fcdc476dac3529f6f8cada214612892b347 VLX 18
\\x1f3f677ecc58f6a1f9e2cf410df4776a8546b5de VNDC 0
\\x1017b147b05942ead495e2ad6d606ef3c94b8fd0 VNL 12
\\xb97faf860045483e0c7f08c56acb31333084a988 VNLA 18
\\x97941ff1962026955852e9609e202d1058bc0f48 VNS 8
\\x69d2779533a4d2c780639713558b2cc98c46a9b7 VNT 8
\\xe912b8ba2513d7e29b7b2e5b14398dbf77503fb4 VNT 18
\\xd0f05d3d4e4d1243ac826d8c6171180c58eaa9bc VNTW 18
\\x00fc270c9cc13e878ab5363d00354bebf6f05c15 VNXLU 18
\\xb5ca46cf1da09248126682a7bd72401fd7a6b151 VOCO 18
\\x2e2364966267b5d7d2ce6cd9a9b5bd19d9c7c6a9 VOICE 18
\\x83eea00d838f92dec4d1475697b9f4d3537b56e3 VOISE 8
\\x2e2e0a28f6585e895dd646a363bae29b77b88a31 VOL 18
\\x5166e09628b696285e3a151e84fb977736a83575 VOL 18
\\x14d1c83df4decee9deb14ee851f109f0101a6631 VOLTS 18
\\x60715e436c37444e29772c0d26a98ae1e8e1a989 VOLTZ 18
\\x12d102f06da35cc0111eb58017fd2cd28537d0e1 VOX 18
\\x5eeaa2dcb23056f4e8654a349e57ebe5e76b5e6e VPP 18
\\xf411903cbc70a74d22900a5de66a2dda66507255 VRA 18
\\x3e6a17e1913b2f49ceb6803e46094066ff5f9c78 VRISE 9
\\x72377f31e30a405282b522d588aebbea202b4f23 VRN 18
\\x10bc518c32fbae5e38ecb50a612160571bd81e44 VRO 8
\\x92e78dae1315067a8819efd6dca432de9dcde2e9 VRS 6
\\xabc430136a4de71c9998242de8c1b4b97d2b9045 VRS 6
\\x87de305311d5788e8da38d19bb427645b09cb4e5 VRX 18
\\x35de3eccaccb02e627062b5d63aa941b137288fe VSD 18
\\xac9ce326e95f51b5005e9fe1dd8085a01f18450c VSF 18
\\xdb144cd0f15ee40aac5602364b470d703d7e16b6 VSL 18
\\x456ae45c0ce901e2e7c99c0718031cec0a7a59ff VSN 18
\\x1b40183efb4dd766f11bda7a7c3ad8982e998421 VSP 18
\\x44e28f2acc84c36373badcd681749d38e01e2cc4 VSPACEX 18
\\x3e1e15afd5d50b090adcc88160dd84a48ea1b80e VSPY 18
\\x38405fa410c6eba342f9eb5ac66b2aaf6498c8e9 VT 18
\\xf0e3543744afced8042131582f2a19b6aeb82794 VTD 18
\\xceb286c9604c542d3cc08b41aa6c9675b078a832 VTX 18
\\xd957e08ac5421e2c28510586b57d095e5094836a VTX 18
\\x3479b0acf875405d7853f44142fe06470a40f6cc VUSD 18
\\x677ddbd918637e5f2c79e164d402454de7da8619 VUSD 18
\\xba4cfe5741b357fa371b506e5db0774abfecf8fc VVSP 18
\\x755be920943ea95e39ee2dc437b268917b580d6e VVT 18
\\x14f0a12a43c36c49d4b403dd6e1a9b8222be456c VXC 18
\\x8ba009cad493c7646e31d69428ab9a54f47b3779 VXT 18
\\x7d29a64504629172a429e64183d6673b9dacbfce VXV 18
\\x3a1c1d1c06be03cddc4d3332f7c20e1b37c97ce9 VYBE 18
\\x777ba4d2393ea77893322743c7d817efef872204 W3B 18
\\x286bda1413a2df81731d4930ce2f862a35a609fe WABI 18
\\x2f7b88458f4e6d9abb19396b5a08b8ba7f3d4b20 WAE 6
\\x0a8b16b27d5219c8c6b57d5442ce31d81573eee4 WAG8 8
\\xb2279b6769cfba691416f00609b16244c0cf4b20 WAIF 18
\\xe7f4c89032a2488d327323548ab0459676269331 WAIFU 18
\\x3383c5a8969dc413bfddc9656eb80a1408e4ba20 WANATHA 18
\\x27f610bf36eca0939093343ac28b1534a721dbb4 WAND 18
\\x4d75d9e37667a2d4677ec3d74bdd9049326ad8d6 WAR 18
\\xf4a81c18816c9b0ab98fac51b36dcb63b0e58fde WAR 18
\\xed40834a13129509a89be39a9be9c0e96a0ddd71 WARP 18
\\x0c572544a4ee47904d54aaa6a970af96b6f00e1b WAS 18
\\x896e145568624a498c5a909187363ae947631503 WASABI 18
\\x14c38e90a593b0bd5b7e9896a8ef4ae0a119d6ae WAV3 18
\\x1cf4592ebffd730c7dc92c1bdffdfc3b9efcf29a WAVES 18
\\x39bb259f66e1c59d5abef88375979b4d20d98022 WAX 8
\\x67563E7A0F13642068F6F999e48c690107A4571F WAXBNT 18
\\x7a2bc711e19ba6aff6ce8246c546e8c4b4944dfd WAXE 8
\\x15334dcb171e8b65d6650321581dca83be870115 WBIND 8
\\xbaa2c10ea6409b58870b5c773c0ff429af7c6f20 WBPC 18
\\xe2ee1ac57b2e5564522b2de064a47b3f98b0e9c9 WBT 18
\\x2260fac5e5542a773aa44fbcfedf7c193bc2c599 WBTC 8
\\xFEE7EeaA0c2f3F7C7e6301751a8dE55cE4D059Ec WBTC 18
\\x396ec402b42066864c406d1ac3bc86b575003ed8 WBUY 2
\\xbb97e381f1d1e94ffa2a5844f6875e6146981009 WBX 18
\\x21686f8ce003a95c99acd297e302faacf742f7d4 WCCX 6
\\xab51e836bdcbc7cc06d926c50d88328f1bb17148 WCDC 18
\\xe452e6ea2ddeb012e20db73bf5d3863a3ac8d77a WCELO 18
\\x09fe5f0236f0ea5d930197dce254d77b04128075 WCK 18
\\xd44bb6663936cab1310584a277f7daa6943d4904 WCO 8
\\x4185cf99745b2a20727b37ee798193dd4a56cdfa WCOINBASE-IOU 18
\\xa0afaa285ce85974c3c881256cb7f225e3a1178a wCRES 18
\\xad3e3fc59dff318beceaab7d00eb4f68b1ecf195 WCUSD 18
\\xc014186cf1ba36032aaec7f96088f09eb3934347 WCX 18
\\x123151402076fc819b7564510989e475c9cd93ca wDGLD 8
\\x35a532d376ffd9a705d0bb319532837337a398e7 WDOGE 18
\\xd61b60ccbdaf09c2e036c72734adb3270ed27192 WDP 18
\\x78b6174cc8a3848251704b8a5ced7f86e5d8ddf1 WDR 8
\\xd110bb8a24b100c37af7310416e685af807c1f10 WDT 18
\\xf344490abd414dafa97f34c8ca501b0aa5bf8873 WEB 1
\\x15a664416e42766a6cc0a1221d9c088548a6e731 WEBN 8
\\xcc1a8bd438bebc4b2a885a34475bb974f2124317 WEC 18
\\x1b06b43f3b0bbad73784d858c782e029f3f5af14 WELL 18
\\x46f4e420c75401494a39b70653f4bbb88ad2d728 WENB 6
\\x36d10c6800d569bb8c4fe284a05ffe3b752f972c WET 18
\\xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2 WETH 18
\\xc6065b9fc8171ad3d29bad510709249681758972 WFAIR 18
\\x6e1a19f235be7ed8e3369ef73b196c07257494de WFIL 18
\\xba1ed22c69ad00739ee2b4abd70e270be9e87ee2 WFX 18
\\xa10740ff9ff6852eac84cdcff9184e1d6d27c057 WG0 18
\\xb14b87790643d2dab44b06692d37dd95b4b30e56 WGK 18
\\xdd94842c15abfe4c9bafe4222ade02896beb064c WGP 18
\\xc237868a9c5729bdf3173dddacaa336a0a5bb6e0 WGR 8
\\x804e26c4eff0bb196b805bdfb5b29ab828cf0b1f WHALE 18
\\x9355372396e3f6daf13359b7b607a3374cc638e0 WHALE 4
\\xca5d29b3e74d59ebcdf09111495d86f319886a40 WHEY 18
\\x5f0e628b693018f639d10e4a4f59bd4d8b2b6b44 WHITE 18
\\x2af72850c504ddd3c1876c66a914caee7ff8a46a WHL 18
\\xe6179bb571d2d69837be731da88c76e377ec4738 WHOLE 18
\\x4f878c0852722b0976a955d68b376e4cd4ae99e5 WIC 8
\\xbbe460dc4ac73f7c13a2a2feecf9acf6d5083f9b WICK 18
\\xe202873079913858f9ba8795ba957a4ad561ca24 WIFI 18
\\x66bad545596fb17a0b4ebdc003a85def10e8f6ae WIKI 18
\\x08a75dbc7167714ceac1a8e43a8d643a4edd625a WILD 18
\\x2a3bff78b79a009976eea096a51a948a3dc00e34 WILD 18
\\xd3c00772b24d997a812249ca637a921e81357701 WILD 18
\\xcb3df3108635932d912632ef7132d03ecfc39080 WING 18
\\x667088b212ce3d06a1b553a7221e1fd19000d9af WINGS 18
\\xA6Ab3c8aE51962f4582db841dE6b0A092041461e WINGSBNT 18
\\x27460aac4b005de72e2326bd8391c27fb41780f8 WINR 18
\\xdecade1c6bf2cd9fb89afad73e4a519c867adcf5 WIS 18
\\x66a0f676479cee1d7373f3dc2e2952778bff5bd6 WISE 18
\\x13de0b0c1507d424fad4c6212830a0b2e59587c5 WISH 18
\\x1b22c32cd936cb97c28c5690a0695a82abf688e6 WISH 18
\\xd123575d94a7ad9bff3ad037ae9d4d52f41a7518 WISH 8
\\x1C9Df905571B22214Fa5FB10ad99ebe327f199C5 WISHBNT 18
\\xa00055e6ee4d1f4169096ecb682f70caa8c29987 WIVA 18
\\x7ba19b7f7d106a9a1e0985397b94f38eee0b555e WIX 2
\\x33d20575f20c6a1881f8ab08e69f6fbaffaeedf2 WIZ 12
\\x7a82c573b378ceea29772afb93891f0d0afa93b7 WIZ 18
\\x018a6106cb540af1ae6da985361afd5e176d1c00 WIZ1 18
\\x87931e7ad81914e7898d07c68f145fc0a553d8fb WIZARD 18
\\x73a9fb46e228628f8f9bb9004eca4f4f529d3998 WLEO 3
\\x0b63128c40737b13647552e0c926bcfeccc35f93 wLITI 18
\\xf6b55acbbc49f4524aa48d19281a9a77c54de10f WLK 18
\\xb7bc7b0a32455f7e7a924f832ca4f0a0ac3b6b88 WLT 18
\\x71ba91dc68c6a206db0a6a92b4b1de3f9271432d wMBX 18
\\xf203ca1769ca8e9e8fe1da9d147db68b6c919817 WNCG 18
\\xcfbf70e33d5163e25b0dad73955c1bd9e8cd8ba2 WNL 18
\\x4690d8f53e0d367f5b68f7f571e6eb4b72d39ace WNRZ 18
\\x0d438f3b5175bebc262bf23753c1e53d03432bde wNXM 18
\\xec0a0915a7c3443862b678b0d4721c7ab133fdcf WOA 18
\\x7dbbcae15d4db168e01673400d7844870cc1e36f WOLFY 9
\\xbd356a39bff2cada8e9248532dd879147221cf76 WOM 18
\\x04969cd041c0cafb6ac462bd65b536a5bdb3a670 WOMI 18
\\x1eddee3fa21591a9637f88dab9615c33ee636b9d WON 18
\\x4691937a7508860f876c9c0a2a617e7d9e945d4b WOO 18
\\x644dd21a0a423bbd8322c09cffdbc511d1638ba0 WOOFT 18
\\xd0660cd418a64a1d44e9214ad8e459324d8157f1 WOOFY 12
\\xbf494f02ee3fde1f20bee6242bce2d1ed0c15e47 WORLD 18
\\x2849e422dafac5cf100d841498bbc64268d2b933 WOSHIB 18
\\x3405a1bd46b85c5c029483fbecf2f3e611026e45 WOW 18
\\x672ef7e4fe230b5ca1466c5fdd40588d30fdf90a WOWS 18
\\x34950ff2b487d9e5282c5ab342d08a2f712eb79f WOZX 18
\\xd075e95423C5c4BA1E122CaE0f4CdFA19b82881b wPE 18
\\x0d7072bdc1c8a1a58a7352782d27209d64ad2ecb WPLS 18
\\x056dd20b01799e9c1952c7c9a5ff4409a6110085 WPP 18
\\x1955d744f9435522be508d1ba60e3c12d0690b6a WPP 18
\\x4cf488387f035ff08c371515562cba712f9015d4 WPR 18
\\xdfc3829b127761a3218bfcee7fc92e1232c9d116 WPRCY 8
\\xe04491d64eaa464ec8fdf53c7a4c92bf5b2278cd WPT 18
\\xb3bace433288645114fe8e8aa91f87659cbf665b WPX 18
\\x06677dc4fe12d3ba3c7ccfd0df8cd45e4d4095bf WQT 18
\\x72adadb447784dd7ab1f472467750fc485e4cb2d WRC 6
\\x7c9d8fb3bde3d9ea6e89170618c2dc3d16695d36 WRC 18
\\xb2cf3a438acf46275839a38db7594065f64151d3 WRLD 18
\\x62f8dbdea37a4ed40ff3d2631001e4490c13218f WSB 18
\\x2dcd9b1a7ed408ff48bd4918a1f9c0535dc54ead WSC 6
\\x2b89bf8ba858cd2fcee1fada378d5cd6936968be WSCRT 6
\\xcbdf1deb934e945a70b7289bb98e97013777f820 WSDOGE 9
\\x4b4571925e94ccd8c546b39462a270cc9b3ed1e4 WSHIFT 18
\\x9b00e6e8d787b13756eb919786c9745054db64f9 WSIENNA 18
\\x175666d12fc722abd9e4a8ebf5d9b2d17b36b268 WSKR 18
\\x2cf2f4e07ecc54740293df6d6fb4150d725a919f WST 18
\\xedeec5691f23e4914cf0183a4196bbeb30d027a0 WSTA 18
\\x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0 wstETH 18
\\x5538ac3ce36e73bb851921f2a804b4657b5307bf WSZO 18
\\xb7cb1c96db6b22b0d3d9536e0108d062bd488f74 WTC 18
\\x0501e7a02c285b9b520fdbf1badc74ae931ad75d WTF 18
\\xdf9d4674a430bdcc096a3a403128357ab36844ba WTK 2
\\x9a0587eae7ef64b2b38a10442a44cfa43edd7d2a WTL 18
\\x0ea984e789302b7b612147e4e4144e64f21425eb WTN 8
\\x1680cfdad75da2bb56ded4f36bb9423c86ffa7b7 WTP 18
\\x84119cb33e8f590d75c2d6ea4e6b0741a7494eda WTT 0
\\x7c974104df9dd7fb91205ab3d66d15aff1049de8 WUSD 18
\\x25c7b64a93eb1261e130ec21a3e9918caa38b611 WVG0 18
\\x38118bdb3b480f570837a4c2e88fac6e83be6689 WWC 18
\\x07ca256267128fbe1a79b74fc7b0e6ed3359ad08 WWT 9
\\x5592c5aa89492ea918d55b804e177b5ca7dccd5a WXBTC 18
\\x86225481747c774b24c7c3bac4c1b7382f787c7f WXC 18
\\x4a5b3d0004454988c50e8de1bcfc921ee995ade3 wXEQ 18
\\x465e07d6028830124be2e4aa551fbe12805db0f5 WXMR 18
\\xa02120696c7b8fe16c09c749e4598819b2b0e915 WXT 18
\\x2a69655c22eda32ff48d315bb26ed45f150700b4 WXTZ 6
\\xa3865e64121537b5b59b5e239db4acbe6f36aa74 WXTZ 18
\\x05edffbda103d90d5040829a105f687443e0ca3e WYX 18
\\x4a64515e5e1d1073e83f30cb97bed20400b66e10 WZEC 18
\\x41045282901e90bda7578d628e479e5421d1cdd5 X22 18
\\x910dfc18d6ea3d6a7124a6f8b5458f281060fa4c X8X 18
\\x80dc468671316e50d4e9023d3db38d3105c1c146 XAAVEA 18
\\x704de5696df237c5b9ba0de9ba7e0c63da8ea0df XAAVEB 18
\\xde4c5a791913838027a2185709e98c5c6027ea63 XAC 8
\\x35e78b3982e87ecfd5b3f3265b601c046cdbe232 XAI 18
\\xf911a7ec46a2c6fa49193212fe4a2a9b95851c27 XAMP 9
\\x0e7f79e89ba8c4a13431129fb2db0d4f444b5b9a XANK 16
\\x01c8857057326b8f64dcb5cba6d802dcd132946e XAT 18
\\x4df812f6064def1e5e029f1ca858777cc98d2d81 XAUR 8
\\x4922a015c4407f87432b179bb209e125432e4a2a XAUT 6
\\x31cbf205e26ba63296fdbd254a6b1be3ed28ce47 XAUTBEAR 18
\\xc9287623832668432099cef2ffdef3ced14f4315 XAUTBULL 18
\\x5bdc00b6676579b301b276198db1ea9affb94329 XBASE 18
\\x5de7cc4bcbca31c473f6d2f27825cfb09cc0bb16 XBE 18
\\x28dee01d53fed0edf5f6e310bf8ef9311513ae40 XBP 18
\\xb35e9ad7e9ebf731e04c73845f1bf75e55828700 XBRT 18
\\x64fb96d0395f6bf105f35233911e3df2c5bf4ce8 XBT 8
\\xecbf566944250dde88322581024e611419715f7a XBTC 9
\\x57c09a8de0b0f471f8567609777addffb5c46a08 XBX 18
\\x7659ce147d0e714454073a5dd7003544234b6aa0 XCAD 18
\\x010d14d36c3ea6570d240ae3ac9d660398f7c48e XCF 18
\\xb4272071ecadd69d933adcd19ca99fe80664fc08 XCHF 18
\\x36ac219f90f5a6a3c77f2a7b660e3cc701f68e25 XCM 18
\\xe60b3fcbd8f400a38476adeb01fcac861ccd2e42 XCMG 18
\\x015df42d36bc851c7f15f80bd1d4e8dbf02aed0c XCON 18
\\xe1c7e30c42c24582888c758984f6e382096786bd XCUR 8
\\x24dcc881e7dd730546834452f21872d5cb4b5293 XD 18
\\xb9eefc4b0d472a44be93970254df4f4016569d27 XDB 7
\\x41ab1b6fcbb2fa9dced81acbdec13ea6315f2bf2 XDCE 18
\\xd1BB51fECC950c7b1e4197D8d13A1d2A60795D2C XDCEBNT 18
\\x5166d4ce79b9bf7df477da110c560ce3045aa889 XDEF2 9
\\x000000000000d0151e748d25b766e77efe2a6c83 XDEX 18
\\x8e57c27761ebbd381b0f9d09bb92ceb51a358abb XDNA 18
\\x5f9d86fa0454ffd6a59ccc485e689b0a832313db XDT 18
\\xee573a945b01b788b9287ce062a0cfc15be9fd86 XED 18
\\xe748269494e76c1cec3f627bb1e561e607da9161 XELS 8
\\x59321ace77c8087ff8cb9f94c8384807e4fd8a3c XEMX 18
\\x5fbdb42bb048c685c990a37f2c87fe087c586655 XEN 8
\\xe4cfe9eaa8cdb0942a80b7bc68fd8ab0f6d44903 XEND 18
\\x054c64741dbafdc19784505494029823d89c3b13 XET 8
\\xe577e0b200d00ebdecbfc1cd3f7e8e04c70476be XEURO 0
\\x5befbb272290dd5b8521d4a938f6c4757742c430 XFI 18
\\xe4e822c0d5b329e8bb637972467d2e313824efa0 XFI 18
\\x1fa21b20222076d7465fb901e5f459289c95f66a XFII 18
\\x4aa41bc1649c9c3177ed16caaa11482295fc7441 XFIT 18
\\xf5a562597d5fb5cc19482379755e1a5275a6607b XFOC 7
\\xabe580e7ee158da464b51ee1a83ac0289622e6be XFT 18
\\x892a6f9df0147e5f079b0993f486f9aca3c87881 XFUND 9
\\x6be7e93e45740c314c89a3be52473a0ddf2450fe XFYI 18
\\x89d3c0249307ae570a316030764d12f53bb191fd XGC 14
\\x06b179e292f080871825bed5d722162fd96b4c95 XGG 18
\\xf1738912ae7439475712520797583ac784ea9033 XGT 18
\\x6fcb6408499a7c0f242e32d77eb51ffa1dd28a7e xHDX 12
\\xd3c625f54dec647db8780dbbe0e880ef21ba4329 XHT 18
\\x295b42684f90c77da7ea46336001010f2791ec8c XI 18
\\xf6650117017ffd48b725b4ec5a00b414097108a7 XIDO 18
\\xa974c709cfb4566686553a20790685a47aceaa33 XIN 18
\\x8f6a193c8b3c949e1046f1547c3a3f0836944e4b XINCHA 18
\\x6b33f15360cedbfb8f60539ec828ef52910aca9b XINCHB 18
\\x0f7f961648ae6db43c75663ac7e5414eb79b5704 XIO 18
\\x31024a4c3e9aeeb256b825790f5cb7ac645e7cd5 XIOT 3
\\x44f262622248027f8e2a8fb1090c4cf85072392c XIV 18
\\x604026696fdb3c6720ae3049c46d59ac604dea0a XJP 18
\\x4f6103bad230295bacf30f914fda7d4273b7f585 XKI 6
\\x0bfec35a1a3550deed3f6fc76dde7fc412729a91 XKNCA 18
\\x06890d4c65a4cb75be73d7ccb4a8ee7962819e81 XKNCB 18
\\x8c4e7f814d40f8929f9112c5d09016f923d34472 XLAB 18
\\x960efd63ae895f165d874e6cc62501fd0e7dc50a XLMBEAR 18
\\x3a43a04d80f9881d88080bf9fa8bb720afb6c966 XLMBULL 18
\\x6c862f803ff42a97d4a483ab761256ad8c90f4f8 XLS 18
\\x36b679bd64ed73dbfd88909cdcb892cb66bd4cbb XMARK 9
\\x9a7a4c141a3bcce4a31e42c1192ac6add35069b4 XMM 10
\\x3aada3e213abf8529606924d8d1c55cbdc70bf74 XMON 18
\\xbf1d65af601dcff5b804e02a75833ff51e3869b2 XMPT 18
\\x0f8c45b896784a1e408526b9300519ef8660209c XMX 8
\\x8317b216d7c3f9a5b8401e4b6814d13a7be390ec XNC 8
\\xbc86727e770de68b1060c91f6bb6945c73e10388 XNK 18
\\x05bbe7240de66f6480c9aeda77c1376b13393f83 XNO 18
\\x79c71d3436f39ce382d0f58f1b011d88100b9d91 XNS 18
\\x40fd72257597aa14c7231a7b1aaa29fce868f677 XOR 18
\\x153ed9cc1b792979d2bde0bbf45cc2a7e436a5f9 XOV 18
\\x948c70dc6169bfb10028fdbe96cbc72e9562b2ac XP 18
\\xbb1fa4fdeb3459733bf67ebc6f893003fa976a82 XPAT 18
\\xEe769CE6B4E2C2A079c5f67081225Af7C89F874C XPATBNT 18
\\xbc81bf5b3173bccdbe62dba5f5b695522ad63559 XPB 18
\\x3b9e094d56103611f0acefdab43182347ba60df4 XPN 18
\\x1a3564852d8ede7c8249805e71718bd7aa93dd6d XPO 2
\\xd7efb00d12c2c13131fd319336fdf952525da2af XPR 4
\\x08aa0ed0040736dd28d4c8b16ab453b368248d19 XPT 18
\\xf0814d0e47f2390a8082c4a1bd819fdde50f9bfc XPT 8
\\x70da48f4b7e83c386ef983d4cef4e58c2c09d8ac XQC 8
\\xa1c7d450130bb77c6a23ddfaecbc4a060215384b XRGE 18
\\xe1329ebf8b719881549909d689987f746a8931d1 XRM 18
\\x94fc5934cf5970e944a67de806eeb5a4b493c6e6 XRPBEAR 18
\\x27c1ba4f85b8dc1c150157816623a6ce80b7f187 XRPBULL 18
\\xd4ca5c2aff1eefb0bea9e9eab16f88db2990c183 XRPC 8
\\x55b54d8fb1640d1321d5164590e7b020ba43def2 XRPHEDGE 18
\\x7de91b204c1c737bcee6f000aaa6569cf7061cb7 XRT 9
\\x69fa0fee221ad11012bab0fdb45d444d3d2ce71c XRUNE 18
\\xaC14864ce5A98aF3248Ffbf549441b04421247D3 xSDT 18
\\x70e8de73ce538da2beed35d14187f6959a8eca96 XSGD 6
\\xb4a81261b16b92af0b9f7c4a83f1e885132d81e4 xSHIB 18
\\x2367012ab9c3da91290f71590d5ce217721eefe4 xSNXa 18
\\x9b06d48e0529ecf05905ff52dd426ebec0ea3011 XSP 18
\\x6bc1f3a1ae56231dbb64d3e82e070857eae86045 XSR 18
\\x91383a15c391c142b80045d8b4730c1c37ac0378 XST 9
\\xc0e47007e084eef3ee58eb33d777b3b4ca98622f XSTAR 18
\\x8798249c2e607446efb7ad49ec89dd1865ff4272 xSUSHI 18
\\x4be10da47a07716af28ad199fbe020501bddd7af XT 18
\\x7f3edcdd180dbe4819bd98fee8929b5cedb3adeb XTK 18
\\xbff0e42eec4223fbd12260f47f3348d29876db42 XTK 6
\\xcd1faff6e578fa5cac469d2418c95671ba1a62fe XTM 18
\\x6368e1e18c4c419ddfc608a0bed1ccb87b9250fc XTP 18
\\x36232b1328e49a043434e71c02c0dc2be278e975 XTS 18
\\xbc41d05287498dec58129560de6bd1b8d4e3ac1d XTZBEAR 18
\\x8af17a6396c8f315f6b6dbc6aa686c85f9b3e554 XTZBULL 18
\\x4bae380b5d762d543d426331b8437926443ae9ec XVIX 18
\\x5cc00cca0692b9b34af816e5439cdb47d3b63691 XWO 18
\\x55296f69f40ea6d20e478533c15a6b08b654e758 XYO 18
\\x5cc737a37a02a1b34ba8edf899aa6441765232a0 XYX 8
\\x618679df9efcd19694bb1daa8d00718eacfa2883 XYZ 18
\\x48f07301E9E29c3C38a80ae8d9ae771F224f1054 XZAR 18
\\x4ee438be38f8682abb089f2bfea48851c5e71eaf YAE 18
\\x0aacfbec6a24756c20d41914f2caba817c0d8521 YAM 18
\\x0e2298E3B3390e3b945a5456fBf59eCc3f55DA16 YAM 18
\\xaba8cac6866b83ae4eec97dd07ed254282f6ad8a YAMV2 24
\\x245392ee7ce736ec6a0908b67dc5d0a218230005 YAP 18
\\xb1dc9124c395c1e97773ab855d66e879f053a289 YAX 18
\\x0ada190c81b814548ddc2f6adc4a689ce7c1fe73 YAXIS 18
\\x1706c33b9a5b12aeb85b862215378dee9480eb95 YBAN 18
\\x2994529c0652d127b7842094103715ec5299bbed ybCRV 18
\\x11f4c6b3e8f50c50935c7889edc56c96f41b5399 YBREE 18
\\x04bc0ab673d88ae9dbc9da2380cb6b79c4bca9ae YBUSD 18
\\x37e1160184f7dd29f00b78c050bf13224780b0b0 YCC 8
\\x99d1Fa417f94dcD62BfE781a1213c092a47041Bc ycDAI 18
\\x3d0293f06daf4311b482564330d57c8db6c10893 YCO 8
\\xdf5e0e81dff6faf3a7e52ba697820c5e32d806a8 yCURVE 18
\\x9777d7E2b60bB01759D0E2f8be2095df444cb07E ycUSDC 6
\\x1bE5d71F2dA660BFdee8012dDc58D024448A0A59 ycUSDT 6
\\x002f0b1a71c5730cf2f4da1970a889207bdb6d0d YD-BTC-MAR21 18
\\x4b7fb448df91c8ed973494f8c8c4f12daf3a8521 YD-BTC-JUN21 8
\\x90f802c7e8fb5d40b0de583e34c065a3bd2020d8 YD-ETH-MAR21 18
\\xcbe430927370e95b4b10cfc702c6017ec7abefc3 YD-ETH-JUN21 18
\\xacd43e627e64355f1861cec6d3a6688b31a6f952 yDAI 18
\\x40b92fce37cefa03baf7603e7913c1d34dd1a4ec YEA 8
\\x922105fad8153f516bcfb829f56dc097a0e1d705 YEE 18
\\xca2796f9f61dc7b238aab043971e49c6164df375 YEED 18
\\xcf282ba0bc91d2aa6e775bcfd90da6b7912f1b1a YEFI 18
\\x4b34c0cbeef271f895d339c5f76322d71a60782b YEFIM 18
\\x7815bda662050d84718b988735218cffd32f75ea YEL 18
\\x468ab3b1f63a1c14b361bc367c3cc92277588da1 YELD 18
\\x5963fd7ca9b17b85768476019f81cb43d9d1818e YESTRUMP 18
\\xe1237aa7f535b0cc33fd973d66cbf830354d16c7 yETH 18
\\xb4bebd34f6daafd808f73de0d10235a92fbb6c3d YETI 18
\\xf4cd3d3fda8d7fd6c5a500203e38640a70bf9577 YF-DAI 18
\\x38acefad338b870373fb8c810fe705569e1c7225 YF4 18
\\xf5d0fefaab749d8b14c27f0de60cc6e9e7f848d1 YFARM 18
\\x7b0f66fa5cf5cc28280c1e7051af881e06579362 YFARMER 18
\\x59e7b5db9be0bdd26fa048d39e01fee456ab674e YFB2 18
\\x89ee58af4871b474c30001982c3d7439c933c838 YFBETA 18
\\xf0a0f3a6fa6bed75345171a5ea18abcadf6453ba YFBT 18
\\xc6ff7eac464c99ff0e1ad8bcfd0ab0cebe08c9a3 YFC 18
\\xe8ed08a581777f112654e28de507e11613da0379 YFC 18
\\x4f4f0ef7978737ce928bff395529161b44e27ad9 YFD 18
\\x2e6539edc3b76f1e21b71d214527faba875f70f3 YFDOT 18
\\x1378ec93ab2b07ba5a0eaef19cf354a33f64b9fd YFDT 18
\\x33811d4edbcaed10a685254eb5d3c4e4398520d2 YFE 18
\\x2dbd330bc9b7f3a822a9173ab52172bdddcace2a YFED 8
\\xc151ca64d66ea44ee4be9d47c3ce7e031b2fccb7 YFET 18
\\x8be6a6158f6b8a19fe60569c757d16e546c2296d YFF 18
\\xea004e8fa3701b8e58e41b78d50996e0f7176cbd YFFC 18
\\xcee1d3c3a02267e37e6b373060f79d5d7b9e1669 YFFI 18
\\x6c4b85cab20c13af72766025f0e17e0fe558a553 YFFII 18
\\x90d702f071d2af33032943137ad0ab4280705817 YFFS 18
\\x0bc529c00c6401aef6d220be8c6ea1667f6ad93e YFI 18
\\x09843b9137fc5935b7f3832152f9074db5d2d1ee YFI3 18
\\xd778e4f5450ede47289fef874a37b79db77c4cf1 YFIA 18
\\x03829f5675f3b51d0f8c2a74417a757625acf22f YFIB 18
\\x47632da9227e322eda59f9e7691eacc6430ac87c YFIB 18
\\x9080e92296a176883aab1d7d1b7e50bc055b0caa YFICG 18
\\x61266424b904d65ceb2945a1413ac322185187d5 YFID 18
\\x2e6e152d29053b6337e434bc9be17504170f8a5b YFIEC 8
\\xa1d0e215a23d7030842fc67ce582a6afa3ccab83 YFII 18
\\xef8ba8cba86f81b3108f60186fce9c81b5096d5c YFIIG 18
\\x4be40bc9681d0a7c24a99b4c92f85b9053fc2a45 YFIII 18
\\x649ebf73043ffcc70a59855ecd8a568fd996415a YFIII 18
\\x5f7fa1a0ae94b5dd6bb6bd1708b5f3af01b57908 YFIKING 18
\\xcec2387e04f9815bf12670dbf6cf03bba26df25f YFILD 18
\\x2e2f3246b6c65ccc4239c9ee556ec143a7e5de2c YFIM 18
\\xb9782532fa7062a6f73df1ce71d75c0e16046ebc YFIP 8
\\x86965a86539e2446f9e72634cefca7983cc21a81 YFIS 18
\\x519083fc539f23131c3b7046992584592772d12a YFIV 18
\\xd3e8695d2bef061eab38b5ef526c0f714108119c YFIVE 18
\\xa4f779074850d320b5553c9db5fc6a8ab15bd34a YFIX 18
\\x4086692d53262b2be0b13909d804f0491ff6ec3e YFKA 18
\\x28cb7e841ee97947a86b06fa4090c8451f64c0be YFL 18
\\x7afac1d878c66a47263dce57976c371ae2e74882 YFMB 18
\\xfef3bef71a5eb97e097039038776fd967ae5b106 YFMS 18
\\x3dd66732113af9981a861cf489431533aeba33b8 YFN 18
\\xac0c8da4a4748d8d821a0973d00b157aa78c473d YFO 18
\\xcd254568ebf88f088e40f456db9e17731243cb25 YFOS 18
\\x706cb9e741cbfee00ad5b3f5acc8bd44d1644a74 YFOX 6
\\x96d62cdcd1cc49cb6ee99c867cb8812bea86b9fa YFP 18
\\x05d27cdd23e22ca63e7f9c7c6d1b79ede9c4fcf5 YFPI 18
\\x0fdc5313333533cc0c00c22792bff7383d3055f2 YFPRO 18
\\xd6940a1ffd9f3b025d1f1055abcfd9f7cda81ef9 YFR 18
\\x5d1b1019d0afa5e6cc047b9e78081d44cc579fc4 YFRB 18
\\xbe685c5e06866cfb94a4242e3df8f2fa3e7c2b73 YFRM 18
\\x1df6f1bb7454e5e4ba3bca882d3148fbf9b5697a YFSI 18
\\x32a18b15985a290604dd9b2ebc39a1035b1a6b9c YFST 18
\\x26b3038a7fc10b36c426846a9086ef87328da702 YFT 18
\\x9cd39da8f25ec50cf2ee260e464ac23ea23f6bb0 YFT 18
\\x94f31ac896c9823d81cf9c2c93feceed4923218f YFTE 18
\\xbd301be09eb78df47019aa833d29edc5d815d838 YFUEL 18
\\x45f24baeef268bb6d63aee5129015d69702bcdfa YFV 18
\\xf55a93b613d172b86c2ba3981a849dae2aecde2f YFX 18
\\xd811e485cb4ab1fad56233de4464fb5d1c9f3e99 YG 18
\\x25f8087ead173b73d6e8b84329989a8eea16cf73 YGG 18
\\x11b0a8c0fa626627601ed518c3538a39d92d609e YGY 6
\\x5a143f78bb66294ff37c47b5164584475b932bab YHFI 18
\\xcf33eb02227255c45f595727dbb24ce16afc36a2 YHTS 18
\\x03e4bdce611104289333f35c8177558b04cc99ff YI12 18
\\xa8b61cff52564758a204f841e636265bebc8db9b YIELD 18
\\xe52d53c8c9aa7255f8c2fa9f7093fea7192d2933 YIELDX 18
\\x87047986e8e4961c11d2edcd94285e3a1331d97b YKZ 18
\\x9ba60ba98413a60db4c651d4afe5c937bbd8044b YLA 18
\\x454cb9d0845bb4a28462f98c21a4fafd16ceb25f YLAB 18
\\xd0658324074d6249a51876438916f7c423075451 YLAND 18
\\x21d5678a62dfe63a47062469ebb2fac2817d8832 YLC 8
\\xdcb01cc464238396e213a6fdd933e36796eaff9f YLD 18
\\xf94b5c5651c888d928439ab6514b93944eee6f48 YLD(YIELD-App) 18
\\x88cb253d4c8cab8cdf7948a9251db85a13669e23 YLDY 18
\\x062f90480551379791fbe2ed74c1fe69821b30d3 YMAX 18
\\xd0c59798f986d333554688cd667033d469c2398e YMEN 18
\\x16be21c08eb27953273608629e4397556c561d26 YMF20 8
\\x4787610b082832106a12bde9dd398148b54afa4f YMI 18
\\xb7ba8461664de526a3ae44189727dfc768625902 YMPL 9
\\x87c00817abe35ed4c093e59043fae488238d2f74 YNK 18
\\xebf4ca5319f406602eeff68da16261f1216011b5 YO 18
\\x05fcc72cfb4150abae415c885f7a433ff523296f YOK 18
\\xc7596f3fc97ae603e1d7ffa61e6efb7b6a59bed2 YOO 18
\\xae1eaae3f627aaca434127644371b67b18444051 YOP 8
\\x9f978aa425148cdd9223eb175446a877b86727ff YOT 6
\\x34364bee11607b1963d66bca665fde93fca666a8 YOU 18
\\x3d371413dd5489f3a04c07c0c2ce369c20986ceb YOUC 10
\\xcbeaec699431857fdb4d37addbbdc20e132d4903 YOYOW 18
\\x17525e4f4af59fbc29551bc4ece6ab60ed49ce31 YPIE 18
\\x40e7705254494a7e61d5b7c86da50225ddc3daae YPLT 18
\\x6051c1354ccc51b4d561e43b02735deae64768b8 YRISE 18
\\xeea9ae787f3a620072d13b2cdc8cabffb9c0ab96 YSEC 18
\\x9c664f20c0a00a4949dffca76748c02754c875aa YSKF 18
\\xd9a947789974bad9be77e45c2b327174a9c59d71 YSR 18
\\x5c89736e9454200141b80c37eb28eaceca2ce8cb YT 8
\\x5edc1a266e8b2c5e8086d373725df0690af7e3ea YTA 18
\\x48cf0e2eca22eae0ad33fee16a5cb6e62207a8ab YTHO 18
\\x3af375d9f77ddd4f16f86a5d51a9386b7b4493fa YTRUMP 15
\\x5322a3556f979ce2180b30e689a9436fddcb1021 YTSLA 18
\\x37d19d1c4e1fa9dc47bd1ea12f742a0887eda74a yTUSD 18
\\x73a052500105205d34daf004eab301916da8190f YTUSD 18
\\x8ae005c97aa6853478c7f373b1d0f72aa92880a7 YUANG 18
\\x4c10bd19688b906665fbd53415f279f34b44ece7 YUI 18
\\x5ab793e36070f0fac928ea15826b0c1bc5365119 YUKI 8
\\x4b4f5286e0f93e965292b922b9cd1677512f1222 YUNO 18
\\x69bbc3f8787d573f1bbdd0a5f40c7ba0aee9bcc9 YUP 18
\\x5dbcf33d8c2e976c6b560249878e6f1491bca25c yUSD 18
\\x81ab848898b5ffd3354dbbefb333d5d183eedcb5 yUSD-SEP20 18
\\xb2fdd60ad80ca7ba89b9bab3b5336c2601c020b4 yUSD-OCT20 18
\\x26ea744e5b887e5205727f55dfbe8685e3b21951 YUSDC 6
\\x597ad1e0c13bfe8025993d9e79c69e1c0233522e yUSDC 6
\\x2f08119c6f07c006695e079aafc638b8789faf18 yUSDT 6
\\x9d409a0a012cfba9b15f6d4b36ac57a46966ab9a YVBOOST 18
\\xc5bddf9843308380375a611c18b50fb9341f502a yveCRV-DAO 18
\\xec681f28f4561c2a9534799aa38e0d36a83cf478 YVS 18
\\xa696a63cc78dffa1a63e9e50587c197387ff6c7e yvWbtc 8
\\xaf20b44c1c651d1d29cfb916ee2a0630b828eb7a YYFI 18
\\x2cd9324ba13b77554592d453e6364086fbba446a Z502 0
\\x98a90499b62ae48e151a66b0f647570b5a473b1c ZAC 18
\\x9d1233cc46795e94029fda81aaadc1455d510f15 ZAI 18
\\x6781a0f84c7e9e846dcb84a9a5bd49333067b104 ZAP 18
\\x8CB24ed2e4f7e2065f4eB2bE5f6B0064B1919850 ZARP 18
\\xbd0793332e9fb844a52a205a233ef27a5b34b927 ZB 18
\\x29257908879c5792f1bb25449a7209205434dc3f ZBK 18
\\x26548041e3a78fdc60f3cce21977e1f5e46561b7 ZCC 18
\\x6737fe98389ffb356f64ebb726aa1a92390d94fb ZCC 18
\\xedb7b7842f7986a7f211d791e8f306c4ce82ba32 ZCK 18
\\xb9ef770b6a5e12e45983c5d80545258aa38f3b78 ZCN 10
\\x8b83116e05f722554e1089b9850e731ee20dd692 ZCNOX 18
\\x2008e3057bd734e10ad13c9eae45ff132abc1722 ZCO 8
\\x83ff572a1757b9e4508cb08f13a79ed162c756c4 ZCOR 0
\\xc7e43a1c8e118aa2965f5eabe0e718d83db7a63c ZCRT 18
\\xc52c326331e9ce41f04484d3b5e5648158028804 ZCX 18
\\x1cf402135d7bd27dc9d21c03ae2d8375bc43e9ec ZDC 18
\\x5150956e082c748ca837a5dfa0a7c10ca4697f9c ZDEX 18
\\xbdfa65533074b0b23ebc18c7190be79fa74b30c2 ZDR 8
\\x78a8c84b4c23563be4518e7045016d3170130823 ZECBEAR 18
\\xd437d88153daef4784cacd2084b1d8cc2d3312b8 ZECBULL 18
\\x2edf094db69d6dcd487f1b3db9febe2eec0dd4c5 ZEE 18
\\xb1e9157c2fdcc5a856c8da8b2d89b6c32b3c1229 ZEFU 18
\\xcf55a7f92d5e0c6683debbc1fc20c0a6e056df13 ZELDAELASTICCASH 18
\\x654eebac62240e6c56bab5f6adf7cfa74a894510 ZELDASPRINGNUTSCASH 18
\\xb3f83a3be59e71876659c5cecc6a3c4d690d258e ZELDASUMMERNUTSCASH 18
\\xe5b826ca2ca02f09c1725e9bd98d9a8874c30532 ZEON 18
\\xf0939011a9bb95c3b791f0cb546377ed2693a574 ZERO 18
\\x757703bd5b2c4bbcfde0be2c0b0e7c2f31fcf4e9 ZEST 18
\\xe7e4279b80d319ede2889855135a22021baf0907 ZEUS 18
\\x19fffd124cd9089e21026d10da97f8cd6b442bff ZFL 8
\\xa72b32f11c49f3f9aa14125c4c89a9c60c390eb4 ZGT 18
\\x837010619aeb2ae24141605afc8f66577f6fb2e7 ZHEGIC 18
\\x7bebd226154e865954a87650faefa8f485d36081 ZIG 18
\\x05f4a42e251f2d52b8ed15e9fedaacfcef1fad27 ZIL 18
\\x006699d34aa3013605d468d2755a2fe59a16b12b ZILD 18
\\x033e223870f766644f7f7a4b7dc2e91573707d06 ZIN 18
\\x4aac461c86abfa71e9d00d9a2cde8d74e4e1aeea ZINC 18
\\xfb22ced41b1267da411f68c879f4defd0bd4796a ZIOT 18
\\xa9d2927d3a04309e008b6af6e2e282ae2952e7fd ZIP 18
\\xedd7c94fd7b4971b916d15067bc454b9e1bad980 ZIPT 18
\\x8dd4228605e467671941ffb4cae15cf7959c8d9d ZITI 8
\\xbc34985b4d345aea933d5cac19f3a86bd1fb398f ZJLT 18
\\xe4815ae53b124e7263f08dcdbbb757d41ed658c6 ZKS 18
\\xfd8971d5e8e1740ce2d0a84095fca4de729d0c16 ZLA 18
\\xa8e7ad77c60ee6f30bac54e2e7c0617bd7b5a03e ZLOT 18
\\x94d8db14831c2c08943798542c450df2844913e5 ZLP 18
\\x5319e86f0e41a06e49eb37046b8c11d78bcad68c ZLW 18
\\x554ffc77f4251a9fb3c0e3590a6a205f8d4e067d ZMN 18
\\xaa602de53347579f86b996d2add74bb6f79462b2 ZMT 18
\\xe95990825aab1a7f0af4cc648f76a3bcc99f25b2 ZNT 18
\\x1a231e75538a931c395785ef5d1a5581ec622b0e ZOM 18
\\x42382f39e7c9f1add5fa5f0c6e24aa62f50be3b3 ZOM 18
\\x5091aed52ad421969254e48d29aa1d1807e1870b ZOM 18
\\x78175901e9b04090bf3b3d3cb7f91ca986fb1af6 ZOMB 18
\\xc1d9b5a0776d7c8b98b8a838e5a0dd1bc5fdd53c ZONE 18
\\x69cf3091c91eb72db05e45c76e58225177dea742 ZOOM 18
\\x1341a2257fa7b770420ef70616f888056f90926c ZOOT 9
\\xd8e3fb3b08eba982f2754988d70d57edc0055ae6 ZORA 9
\\x825cd4201f8a2bbb1a69668eac4e5fa71283273d ZORT 18
\\xeffea57067e02999fdcd0bb45c0f1071a29472d9 ZPAY 18
\\xb5b8f5616fe42d5ceca3e87f3fddbdd8f496d760 ZPR 18
\\xe41d2489571d322189246dafa5ebde1f4699f498 ZRX 18
\\x1a3c6768e200482F5f47D1BE77B7255aBCAe4Fe2 ZRXUSDB 18
\\x7a41e0517a5eca4fdbc7fbeba4d4c47b9ff6dc63 ZSC 18
\\xfe39e6a32acd2af7955cb3d406ba2b55c901f247 ZT 18
\\x6b4689e4514957699edeb2ee91c947f18e439806 ZUC 18
\\xfee5f54e1070e7ed31be341e0a5b1e847f6a84ab ZUG 18
\\xe0b9bcd54bf8a730ea5d3f1ffce0885e911a502c ZUM 8
\\x76417e660df3e5c90c0361674c192da152a806e4 zUSD 18
\\xbf0f3ccb8fa385a287106fba22e6bb722f94d686 ZUSD 6
\\xc56c2b7e71b54d38aab6d52e94a04cbfa8f604fa ZUSD 6
\\x83f873388cd14b83a9f47fabde3c9850b5c74548 ZUT 18
\\x202f1877e1db1120ca3e9a98c5d505e7f035c249 ZUZ 18
\\x83e2be8d114f9661221384b3a50d24b96a5653f5 ZXC 18
\\xe65ee7c03bbb3c950cfd4895c24989afa233ef01 ZYN 18
\\xf974b5f9ac9c6632fee8b76c61b0242ce69c839d ZYX 18
\\xc75f15ada581219c95485c578e124df3985e4ce0 ZZZ 18
\\x93ed140172ff226dad1f7f3650489b8daa07ae7f ZZZV2 18
\.
COMMIT;
CREATE INDEX IF NOT EXISTS tokens_contract_address_decimals_idx ON erc20.tokens USING btree (contract_address) INCLUDE (decimals);
CREATE INDEX IF NOT EXISTS tokens_symbol_decimals_idx ON erc20.tokens USING btree (symbol) INCLUDE (decimals);
|
<reponame>khandy21yo/aplus
DEFINE RECORD CDD$TOP.AP.AP_CLOSE
DESCRIPTION IS /*Accounts Payable Closed File*/.
AP_CLOSE_CDD STRUCTURE.
/* Element =
Description = */
VENNUM DATATYPE IS TEXT SIZE IS 10.
/* Element =
Description = */
TRANKEY DATATYPE IS TEXT SIZE IS 6.
/* Element =
Description = */
TRANKEY_DATE DATATYPE IS TEXT SIZE IS 8.
/* Element =
Description = */
INVNUM DATATYPE IS TEXT SIZE IS 15.
/* Element =
Description = */
INVDAT DATATYPE IS TEXT SIZE IS 8.
/* Element =
Description = */
INVAMT DATATYPE IS G_FLOATING.
/* Element =
Description = */
CODE_1099 DATATYPE IS TEXT SIZE IS 2.
/* Element =
Description = */
AMT_1099 DATATYPE IS G_FLOATING.
/* Element =
Description = */
USE_JOB_NUM DATATYPE IS TEXT SIZE IS 10.
/* Element =
Description = */
USE_AMT DATATYPE IS G_FLOATING.
/* Element =
Description = */
DISCDAT DATATYPE IS TEXT SIZE IS 8.
/* Element =
Description = */
DISAMT DATATYPE IS G_FLOATING.
/* Element =
Description = */
DUEDAT DATATYPE IS TEXT SIZE IS 8.
/* Element =
Description = */
PONUM DATATYPE IS TEXT SIZE IS 10.
/* Element =
Description = */
AP_ACCT DATATYPE IS TEXT SIZE IS 18.
/* Element =
Description = */
CASH_ACCT DATATYPE IS TEXT SIZE IS 18.
/* Element =
Description = */
CKNUM DATATYPE IS TEXT SIZE IS 6.
/* Element =
Description = */
CKDAT DATATYPE IS TEXT SIZE IS 8.
/* Element =
Description = */
CKDESC DATATYPE IS TEXT SIZE IS 20.
/* Element =
Description = */
CKAMT DATATYPE IS G_FLOATING.
/* Element =
Description = (MMYYYY) */
UPDATED DATATYPE IS TEXT SIZE IS 8.
/* Element =
Description = (MMYYYY) */
CLOSEDATE DATATYPE IS TEXT SIZE IS 6.
/* Element =
Description = Selected for payment (Y/N) */
SELECTED DATATYPE IS TEXT SIZE IS 1.
/* Element =
Description = */
BATCH DATATYPE IS TEXT SIZE IS 6.
END AP_CLOSE_CDD STRUCTURE.
END AP_CLOSE.
|
drop index idx_device_tags;
create index idx_device_tags on device using gin (tags); |
<reponame>scheltwort-it-services/common_schema
SELECT split_token('a--b--c--d', '--', 3) = 'c'
|
CREATE OR REPLACE FORCE VIEW logs_tree AS
SELECT
l.log_id,
l.log_parent,
l.user_id,
l.app_id,
l.page_id,
l.flag,
NULLIF(l.action_name, '-') AS action_name,
LPAD(' ', (LEVEL - 1) * 4) || l.module_name AS module_name,
l.module_line AS line,
l.arguments,
--
REGEXP_REPLACE(REGEXP_SUBSTR(
l.message,
'(\s' || USER || '\..*)'),
'(\s*' || USER || '.TREE.LOG_[A-Z_]+\s+\[\d+\]){1,2}', '') AS message,
--
l.session_id,
app.get_duration(l.timer) AS timer,
l.created_at
FROM logs l
CONNECT BY l.log_parent = PRIOR l.log_id
START WITH l.log_id = tree.get_tree_id()
ORDER SIBLINGS BY l.log_id;
--
COMMENT ON TABLE logs_tree IS 'All messages related to selected tree id (`trel.get_tree_id()`)';
--
COMMENT ON COLUMN logs_trel.log_id IS 'Log ID generated from `LOG_ID` sequence';
COMMENT ON COLUMN logs_trel.log_parent IS 'Parent log record; dont use FK to avoid deadlocks';
--
COMMENT ON COLUMN logs_trel.user_id IS 'User ID';
COMMENT ON COLUMN logs_trel.app_id IS 'APEX Application ID';
COMMENT ON COLUMN logs_trel.page_id IS 'APEX Application PAGE ID';
COMMENT ON COLUMN logs_trel.flag IS 'Type of error listed in `tree` package specification; FK missing for performance reasons';
--
COMMENT ON COLUMN logs_trel.action_name IS 'Action name to distinguish position in module or use it as warning/error names';
COMMENT ON COLUMN logs_trel.module_name IS 'Module name (procedure or function name)';
COMMENT ON COLUMN logs_trel.line IS 'Line in the module';
--
COMMENT ON COLUMN logs_trel.arguments IS 'Arguments passed to module';
COMMENT ON COLUMN logs_trel.message IS 'Formatted call stack, error stack or query with DML error';
COMMENT ON COLUMN logs_trel.session_id IS 'Session id from `sessions` table';
--
COMMENT ON COLUMN logs_trel.timer IS 'Timer for current row in seconds';
COMMENT ON COLUMN logs_trel.created_at IS 'Timestamp of creation';
|
CREATE TABLE list (id VARCHAR(10) NOT NULL, value VARCHAR(64) NOT NULL, PRIMARY KEY(id));
INSERT INTO "list" ("id", "value") VALUES (E'AFN', E'Afghaanse afghani');
INSERT INTO "list" ("id", "value") VALUES (E'AFA', E'Afghani (1927–2002)');
INSERT INTO "list" ("id", "value") VALUES (E'ALL', E'Albanese lek');
INSERT INTO "list" ("id", "value") VALUES (E'ALK', E'Albanese lek (1946–1965)');
INSERT INTO "list" ("id", "value") VALUES (E'DZD', E'Algerijnse dinar');
INSERT INTO "list" ("id", "value") VALUES (E'USD', E'Amerikaanse dollar');
INSERT INTO "list" ("id", "value") VALUES (E'USN', E'Amerikaanse dollar (volgende dag)');
INSERT INTO "list" ("id", "value") VALUES (E'USS', E'Amerikaanse dollar (zelfde dag)');
INSERT INTO "list" ("id", "value") VALUES (E'ADP', E'Andorrese peseta');
INSERT INTO "list" ("id", "value") VALUES (E'AOA', E'Angolese kwanza');
INSERT INTO "list" ("id", "value") VALUES (E'AOK', E'Angolese kwanza (1977–1990)');
INSERT INTO "list" ("id", "value") VALUES (E'AOR', E'Angolese kwanza reajustado (1995–1999)');
INSERT INTO "list" ("id", "value") VALUES (E'AON', E'Angolese nieuwe kwanza (1990–2000)');
INSERT INTO "list" ("id", "value") VALUES (E'ARA', E'Argentijnse austral');
INSERT INTO "list" ("id", "value") VALUES (E'ARS', E'Argentijnse peso');
INSERT INTO "list" ("id", "value") VALUES (E'ARM', E'Argentijnse peso (1881–1970)');
INSERT INTO "list" ("id", "value") VALUES (E'ARP', E'Argentijnse peso (1983–1985)');
INSERT INTO "list" ("id", "value") VALUES (E'ARL', E'Argentijnse peso ley (1970–1983)');
INSERT INTO "list" ("id", "value") VALUES (E'AMD', E'Armeense dram');
INSERT INTO "list" ("id", "value") VALUES (E'AWG', E'Arubaanse gulden');
INSERT INTO "list" ("id", "value") VALUES (E'AUD', E'Australische dollar');
INSERT INTO "list" ("id", "value") VALUES (E'AZN', E'Azerbeidzjaanse manat');
INSERT INTO "list" ("id", "value") VALUES (E'AZM', E'Azerbeidzjaanse manat (1993–2006)');
INSERT INTO "list" ("id", "value") VALUES (E'BSD', E'Bahamaanse dollar');
INSERT INTO "list" ("id", "value") VALUES (E'BHD', E'Bahreinse dinar');
INSERT INTO "list" ("id", "value") VALUES (E'BBD', E'Barbadaanse dollar');
INSERT INTO "list" ("id", "value") VALUES (E'BEF', E'Belgische frank');
INSERT INTO "list" ("id", "value") VALUES (E'BEC', E'Belgische frank (convertibel)');
INSERT INTO "list" ("id", "value") VALUES (E'BEL', E'Belgische frank (financieel)');
INSERT INTO "list" ("id", "value") VALUES (E'BZD', E'Belizaanse dollar');
INSERT INTO "list" ("id", "value") VALUES (E'BDT', E'Bengalese taka');
INSERT INTO "list" ("id", "value") VALUES (E'BMD', E'Bermuda-dollar');
INSERT INTO "list" ("id", "value") VALUES (E'BTN', E'Bhutaanse ngultrum');
INSERT INTO "list" ("id", "value") VALUES (E'BUK', E'Birmese kyat');
INSERT INTO "list" ("id", "value") VALUES (E'BOB', E'Boliviaanse boliviano');
INSERT INTO "list" ("id", "value") VALUES (E'BOL', E'Boliviaanse boliviano (1863–1963)');
INSERT INTO "list" ("id", "value") VALUES (E'BOV', E'Boliviaanse mvdol');
INSERT INTO "list" ("id", "value") VALUES (E'BOP', E'Boliviaanse peso');
INSERT INTO "list" ("id", "value") VALUES (E'BAM', E'Bosnische convertibele mark');
INSERT INTO "list" ("id", "value") VALUES (E'BAD', E'Bosnische dinar');
INSERT INTO "list" ("id", "value") VALUES (E'BWP', E'Botswaanse pula');
INSERT INTO "list" ("id", "value") VALUES (E'BRC', E'Braziliaanse cruzado');
INSERT INTO "list" ("id", "value") VALUES (E'BRN', E'Braziliaanse cruzado novo');
INSERT INTO "list" ("id", "value") VALUES (E'BRR', E'Braziliaanse cruzeiro');
INSERT INTO "list" ("id", "value") VALUES (E'BRZ', E'Braziliaanse cruzeiro (1942–1967)');
INSERT INTO "list" ("id", "value") VALUES (E'BRE', E'Braziliaanse cruzeiro (1990–1993)');
INSERT INTO "list" ("id", "value") VALUES (E'BRB', E'Braziliaanse cruzeiro novo (1967–1986)');
INSERT INTO "list" ("id", "value") VALUES (E'BRL', E'Braziliaanse real');
INSERT INTO "list" ("id", "value") VALUES (E'GBP', E'Brits pond');
INSERT INTO "list" ("id", "value") VALUES (E'BND', E'Bruneise dollar');
INSERT INTO "list" ("id", "value") VALUES (E'BGL', E'Bulgaarse harde lev');
INSERT INTO "list" ("id", "value") VALUES (E'BGN', E'Bulgaarse lev');
INSERT INTO "list" ("id", "value") VALUES (E'BGO', E'Bulgaarse lev (1879–1952)');
INSERT INTO "list" ("id", "value") VALUES (E'BGM', E'Bulgaarse socialistische lev');
INSERT INTO "list" ("id", "value") VALUES (E'BIF', E'Burundese frank');
INSERT INTO "list" ("id", "value") VALUES (E'XOF', E'CFA-franc BCEAO');
INSERT INTO "list" ("id", "value") VALUES (E'XAF', E'CFA-frank');
INSERT INTO "list" ("id", "value") VALUES (E'XPF', E'CFP-frank');
INSERT INTO "list" ("id", "value") VALUES (E'KHR', E'Cambodjaanse riel');
INSERT INTO "list" ("id", "value") VALUES (E'CAD', E'Canadese dollar');
INSERT INTO "list" ("id", "value") VALUES (E'CLE', E'Chileense escudo');
INSERT INTO "list" ("id", "value") VALUES (E'CLP', E'Chileense peso');
INSERT INTO "list" ("id", "value") VALUES (E'CLF', E'Chileense unidades de fomento');
INSERT INTO "list" ("id", "value") VALUES (E'CNY', E'Chinese renminbi');
INSERT INTO "list" ("id", "value") VALUES (E'COP', E'Colombiaanse peso');
INSERT INTO "list" ("id", "value") VALUES (E'KMF', E'Comorese frank');
INSERT INTO "list" ("id", "value") VALUES (E'CDF', E'Congolese frank');
INSERT INTO "list" ("id", "value") VALUES (E'CRC', E'Costa Ricaanse colon');
INSERT INTO "list" ("id", "value") VALUES (E'CUC', E'Cubaanse convertibele peso');
INSERT INTO "list" ("id", "value") VALUES (E'CUP', E'Cubaanse peso');
INSERT INTO "list" ("id", "value") VALUES (E'CYP', E'Cyprisch pond');
INSERT INTO "list" ("id", "value") VALUES (E'DKK', E'Deense kroon');
INSERT INTO "list" ("id", "value") VALUES (E'DJF', E'Djiboutiaanse frank');
INSERT INTO "list" ("id", "value") VALUES (E'DOP', E'Dominicaanse peso');
INSERT INTO "list" ("id", "value") VALUES (E'DEM', E'Duitse mark');
INSERT INTO "list" ("id", "value") VALUES (E'ECS', E'Ecuadoraanse sucre');
INSERT INTO "list" ("id", "value") VALUES (E'ECV', E'Ecuadoraanse unidad de valor constante (UVC)');
INSERT INTO "list" ("id", "value") VALUES (E'EGP', E'Egyptisch pond');
INSERT INTO "list" ("id", "value") VALUES (E'GQE', E'Equatoriaal-Guinese ekwele guineana');
INSERT INTO "list" ("id", "value") VALUES (E'ERN', E'Eritrese nakfa');
INSERT INTO "list" ("id", "value") VALUES (E'EEK', E'Estlandse kroon');
INSERT INTO "list" ("id", "value") VALUES (E'ETB', E'Ethiopische birr');
INSERT INTO "list" ("id", "value") VALUES (E'EUR', E'Euro');
INSERT INTO "list" ("id", "value") VALUES (E'XEU', E'European Currency Unit');
INSERT INTO "list" ("id", "value") VALUES (E'FKP', E'Falklandeilands pond');
INSERT INTO "list" ("id", "value") VALUES (E'FJD', E'Fiji-dollar');
INSERT INTO "list" ("id", "value") VALUES (E'PHP', E'Filipijnse peso');
INSERT INTO "list" ("id", "value") VALUES (E'FIM', E'Finse markka');
INSERT INTO "list" ("id", "value") VALUES (E'XFU', E'Franse UIC-franc');
INSERT INTO "list" ("id", "value") VALUES (E'FRF', E'Franse franc');
INSERT INTO "list" ("id", "value") VALUES (E'XFO', E'Franse gouden franc');
INSERT INTO "list" ("id", "value") VALUES (E'GMD', E'Gambiaanse dalasi');
INSERT INTO "list" ("id", "value") VALUES (E'GEK', E'Georgische kupon larit');
INSERT INTO "list" ("id", "value") VALUES (E'GEL', E'Georgische lari');
INSERT INTO "list" ("id", "value") VALUES (E'GHS', E'Ghanese cedi');
INSERT INTO "list" ("id", "value") VALUES (E'GHC', E'Ghanese cedi (1979–2007)');
INSERT INTO "list" ("id", "value") VALUES (E'GIP', E'Gibraltarees pond');
INSERT INTO "list" ("id", "value") VALUES (E'GRD', E'Griekse drachme');
INSERT INTO "list" ("id", "value") VALUES (E'GTQ', E'Guatemalteekse quetzal');
INSERT INTO "list" ("id", "value") VALUES (E'GWP', E'Guinee-Bissause peso');
INSERT INTO "list" ("id", "value") VALUES (E'GNF', E'Guinese frank');
INSERT INTO "list" ("id", "value") VALUES (E'GNS', E'Guinese syli');
INSERT INTO "list" ("id", "value") VALUES (E'GYD', E'Guyaanse dollar');
INSERT INTO "list" ("id", "value") VALUES (E'HTG', E'Haïtiaanse gourde');
INSERT INTO "list" ("id", "value") VALUES (E'HNL', E'Hondurese lempira');
INSERT INTO "list" ("id", "value") VALUES (E'HUF', E'Hongaarse forint');
INSERT INTO "list" ("id", "value") VALUES (E'HKD', E'Hongkongse dollar');
INSERT INTO "list" ("id", "value") VALUES (E'ISK', E'IJslandse kroon');
INSERT INTO "list" ("id", "value") VALUES (E'ISJ', E'IJslandse kroon (1918–1981)');
INSERT INTO "list" ("id", "value") VALUES (E'IEP', E'Iers pond');
INSERT INTO "list" ("id", "value") VALUES (E'INR', E'Indiase roepie');
INSERT INTO "list" ("id", "value") VALUES (E'IDR', E'Indonesische roepia');
INSERT INTO "list" ("id", "value") VALUES (E'IQD', E'Iraakse dinar');
INSERT INTO "list" ("id", "value") VALUES (E'IRR', E'Iraanse rial');
INSERT INTO "list" ("id", "value") VALUES (E'ILP', E'Israëlisch pond');
INSERT INTO "list" ("id", "value") VALUES (E'ILS', E'Israëlische nieuwe shekel');
INSERT INTO "list" ("id", "value") VALUES (E'ILR', E'Israëlische sjekel (1980–1985)');
INSERT INTO "list" ("id", "value") VALUES (E'ITL', E'Italiaanse lire');
INSERT INTO "list" ("id", "value") VALUES (E'JMD', E'Jamaicaanse dollar');
INSERT INTO "list" ("id", "value") VALUES (E'JPY', E'Japanse yen');
INSERT INTO "list" ("id", "value") VALUES (E'YDD', E'Jemenitische dinar');
INSERT INTO "list" ("id", "value") VALUES (E'YER', E'Jemenitische rial');
INSERT INTO "list" ("id", "value") VALUES (E'YUN', E'Joegoslavische convertibele dinar');
INSERT INTO "list" ("id", "value") VALUES (E'YUD', E'Joegoslavische harde dinar');
INSERT INTO "list" ("id", "value") VALUES (E'YUR', E'Joegoslavische hervormde dinar (1992–1993)');
INSERT INTO "list" ("id", "value") VALUES (E'YUM', E'Joegoslavische noviy-dinar');
INSERT INTO "list" ("id", "value") VALUES (E'JOD', E'Jordaanse dinar');
INSERT INTO "list" ("id", "value") VALUES (E'KYD', E'Kaaimaneilandse dollar');
INSERT INTO "list" ("id", "value") VALUES (E'CVE', E'Kaapverdische escudo');
INSERT INTO "list" ("id", "value") VALUES (E'KZT', E'Kazachse tenge');
INSERT INTO "list" ("id", "value") VALUES (E'KES', E'Keniaanse shilling');
INSERT INTO "list" ("id", "value") VALUES (E'KGS', E'Kirgizische som');
INSERT INTO "list" ("id", "value") VALUES (E'KWD', E'Koeweitse dinar');
INSERT INTO "list" ("id", "value") VALUES (E'HRD', E'Kroatische dinar');
INSERT INTO "list" ("id", "value") VALUES (E'HRK', E'Kroatische kuna');
INSERT INTO "list" ("id", "value") VALUES (E'LAK', E'Laotiaanse kip');
INSERT INTO "list" ("id", "value") VALUES (E'LSL', E'Lesothaanse loti');
INSERT INTO "list" ("id", "value") VALUES (E'LVL', E'Letse lats');
INSERT INTO "list" ("id", "value") VALUES (E'LVR', E'Letse roebel');
INSERT INTO "list" ("id", "value") VALUES (E'LBP', E'Libanees pond');
INSERT INTO "list" ("id", "value") VALUES (E'LRD', E'Liberiaanse dollar');
INSERT INTO "list" ("id", "value") VALUES (E'LYD', E'Libische dinar');
INSERT INTO "list" ("id", "value") VALUES (E'LTL', E'Litouwse litas');
INSERT INTO "list" ("id", "value") VALUES (E'LTT', E'Litouwse talonas');
INSERT INTO "list" ("id", "value") VALUES (E'LUC', E'Luxemburgse convertibele franc');
INSERT INTO "list" ("id", "value") VALUES (E'LUL', E'Luxemburgse financiële franc');
INSERT INTO "list" ("id", "value") VALUES (E'LUF', E'Luxemburgse frank');
INSERT INTO "list" ("id", "value") VALUES (E'MOP', E'Macause pataca');
INSERT INTO "list" ("id", "value") VALUES (E'MKD', E'Macedonische denar');
INSERT INTO "list" ("id", "value") VALUES (E'MKN', E'Macedonische denar (1992–1993)');
INSERT INTO "list" ("id", "value") VALUES (E'MGA', E'Malagassische ariary');
INSERT INTO "list" ("id", "value") VALUES (E'MGF', E'Malagassische franc');
INSERT INTO "list" ("id", "value") VALUES (E'MWK', E'Malawische kwacha');
INSERT INTO "list" ("id", "value") VALUES (E'MVP', E'Maldivische roepie');
INSERT INTO "list" ("id", "value") VALUES (E'MVR', E'Maldivische rufiyaa');
INSERT INTO "list" ("id", "value") VALUES (E'MYR', E'Maleisische ringgit');
INSERT INTO "list" ("id", "value") VALUES (E'MLF', E'Malinese franc');
INSERT INTO "list" ("id", "value") VALUES (E'MTP', E'Maltees pond');
INSERT INTO "list" ("id", "value") VALUES (E'MTL', E'Maltese lire');
INSERT INTO "list" ("id", "value") VALUES (E'MAD', E'Marokkaanse dirham');
INSERT INTO "list" ("id", "value") VALUES (E'MAF', E'Marokkaanse franc');
INSERT INTO "list" ("id", "value") VALUES (E'MRO', E'Mauritaanse ouguiya');
INSERT INTO "list" ("id", "value") VALUES (E'MUR', E'Mauritiaanse roepie');
INSERT INTO "list" ("id", "value") VALUES (E'MXN', E'Mexicaanse peso');
INSERT INTO "list" ("id", "value") VALUES (E'MXV', E'Mexicaanse unidad de inversion (UDI)');
INSERT INTO "list" ("id", "value") VALUES (E'MXP', E'Mexicaanse zilveren peso (1861–1992)');
INSERT INTO "list" ("id", "value") VALUES (E'MDC', E'Moldavische cupon');
INSERT INTO "list" ("id", "value") VALUES (E'MDL', E'Moldavische leu');
INSERT INTO "list" ("id", "value") VALUES (E'MCF', E'Monegaskische frank');
INSERT INTO "list" ("id", "value") VALUES (E'MNT', E'Mongoolse tugrik');
INSERT INTO "list" ("id", "value") VALUES (E'MZE', E'Mozambikaanse escudo');
INSERT INTO "list" ("id", "value") VALUES (E'MZN', E'Mozambikaanse metical');
INSERT INTO "list" ("id", "value") VALUES (E'MMK', E'Myanmarese kyat');
INSERT INTO "list" ("id", "value") VALUES (E'NAD', E'Namibische dollar');
INSERT INTO "list" ("id", "value") VALUES (E'ANG', E'Nederlands-Antilliaanse gulden');
INSERT INTO "list" ("id", "value") VALUES (E'NLG', E'Nederlandse gulden');
INSERT INTO "list" ("id", "value") VALUES (E'NPR', E'Nepalese roepie');
INSERT INTO "list" ("id", "value") VALUES (E'NIO', E'Nicaraguaanse córdoba');
INSERT INTO "list" ("id", "value") VALUES (E'NIC', E'Nicaraguaanse córdoba (1988–1991)');
INSERT INTO "list" ("id", "value") VALUES (E'NZD', E'Nieuw-Zeelandse dollar');
INSERT INTO "list" ("id", "value") VALUES (E'BAN', E'Nieuwe Bosnische dinar (1994–1997)');
INSERT INTO "list" ("id", "value") VALUES (E'TWD', E'Nieuwe Taiwanese dollar');
INSERT INTO "list" ("id", "value") VALUES (E'NGN', E'Nigeriaanse naira');
INSERT INTO "list" ("id", "value") VALUES (E'KPW', E'Noord-Koreaanse won');
INSERT INTO "list" ("id", "value") VALUES (E'NOK', E'Noorse kroon');
INSERT INTO "list" ("id", "value") VALUES (E'UGX', E'Oegandese shilling');
INSERT INTO "list" ("id", "value") VALUES (E'UGS', E'Oegandese shilling (1966–1987)');
INSERT INTO "list" ("id", "value") VALUES (E'UAH', E'Oekraïense hryvnia');
INSERT INTO "list" ("id", "value") VALUES (E'UAK', E'Oekraïense karbovanetz');
INSERT INTO "list" ("id", "value") VALUES (E'UZS', E'Oezbeekse sum');
INSERT INTO "list" ("id", "value") VALUES (E'OMR', E'Omaanse rial');
INSERT INTO "list" ("id", "value") VALUES (E'XCD', E'Oost-Caribische dollar');
INSERT INTO "list" ("id", "value") VALUES (E'DDM', E'Oost-Duitse ostmark');
INSERT INTO "list" ("id", "value") VALUES (E'ATS', E'Oostenrijkse schilling');
INSERT INTO "list" ("id", "value") VALUES (E'MZM', E'Oude Mozambikaanse metical');
INSERT INTO "list" ("id", "value") VALUES (E'ROL', E'Oude Roemeense leu');
INSERT INTO "list" ("id", "value") VALUES (E'CSD', E'Oude Servische dinar');
INSERT INTO "list" ("id", "value") VALUES (E'KRO', E'Oude Zuid-Koreaanse won (1945–1953)');
INSERT INTO "list" ("id", "value") VALUES (E'PKR', E'Pakistaanse roepie');
INSERT INTO "list" ("id", "value") VALUES (E'PAB', E'Panamese balboa');
INSERT INTO "list" ("id", "value") VALUES (E'PGK', E'Papoea-Nieuw-Guinese kina');
INSERT INTO "list" ("id", "value") VALUES (E'PYG', E'Paraguayaanse guarani');
INSERT INTO "list" ("id", "value") VALUES (E'PEI', E'Peruaanse inti');
INSERT INTO "list" ("id", "value") VALUES (E'PEN', E'Peruaanse sol');
INSERT INTO "list" ("id", "value") VALUES (E'PES', E'Peruaanse sol (1863–1965)');
INSERT INTO "list" ("id", "value") VALUES (E'PLN', E'Poolse zloty');
INSERT INTO "list" ("id", "value") VALUES (E'PLZ', E'Poolse zloty (1950–1995)');
INSERT INTO "list" ("id", "value") VALUES (E'GWE', E'Portugees-Guinese escudo');
INSERT INTO "list" ("id", "value") VALUES (E'PTE', E'Portugese escudo');
INSERT INTO "list" ("id", "value") VALUES (E'QAR', E'Qatarese rial');
INSERT INTO "list" ("id", "value") VALUES (E'XRE', E'RINET-fondsen');
INSERT INTO "list" ("id", "value") VALUES (E'RHD', E'Rhodesische dollar');
INSERT INTO "list" ("id", "value") VALUES (E'RON', E'Roemeense leu');
INSERT INTO "list" ("id", "value") VALUES (E'RUB', E'Russische roebel');
INSERT INTO "list" ("id", "value") VALUES (E'RUR', E'Russische roebel (1991–1998)');
INSERT INTO "list" ("id", "value") VALUES (E'RWF', E'Rwandese frank');
INSERT INTO "list" ("id", "value") VALUES (E'SBD', E'Salomon-dollar');
INSERT INTO "list" ("id", "value") VALUES (E'SVC', E'Salvadoraanse colón');
INSERT INTO "list" ("id", "value") VALUES (E'WST', E'Samoaanse tala');
INSERT INTO "list" ("id", "value") VALUES (E'STD', E'Santomese dobra');
INSERT INTO "list" ("id", "value") VALUES (E'SAR', E'Saoedi-Arabische riyal');
INSERT INTO "list" ("id", "value") VALUES (E'RSD', E'Servische dinar');
INSERT INTO "list" ("id", "value") VALUES (E'SCR', E'Seychelse roepie');
INSERT INTO "list" ("id", "value") VALUES (E'SLL', E'Sierraleoonse leone');
INSERT INTO "list" ("id", "value") VALUES (E'SGD', E'Singaporese dollar');
INSERT INTO "list" ("id", "value") VALUES (E'SHP', E'Sint-Heleens pond');
INSERT INTO "list" ("id", "value") VALUES (E'SIT', E'Sloveense tolar');
INSERT INTO "list" ("id", "value") VALUES (E'SKK', E'Slowaakse koruna');
INSERT INTO "list" ("id", "value") VALUES (E'SDG', E'Soedanees pond');
INSERT INTO "list" ("id", "value") VALUES (E'SDP', E'Soedanees pond (1957–1998)');
INSERT INTO "list" ("id", "value") VALUES (E'SDD', E'Soedanese dinar');
INSERT INTO "list" ("id", "value") VALUES (E'SOS', E'Somalische shilling');
INSERT INTO "list" ("id", "value") VALUES (E'SUR', E'Sovjet-roebel');
INSERT INTO "list" ("id", "value") VALUES (E'ESP', E'Spaanse peseta');
INSERT INTO "list" ("id", "value") VALUES (E'ESA', E'Spaanse peseta (account A)');
INSERT INTO "list" ("id", "value") VALUES (E'ESB', E'Spaanse peseta (convertibele account)');
INSERT INTO "list" ("id", "value") VALUES (E'LKR', E'Sri Lankaanse roepie');
INSERT INTO "list" ("id", "value") VALUES (E'SRD', E'Surinaamse dollar');
INSERT INTO "list" ("id", "value") VALUES (E'SRG', E'Surinaamse gulden');
INSERT INTO "list" ("id", "value") VALUES (E'SZL', E'Swazische lilangeni');
INSERT INTO "list" ("id", "value") VALUES (E'SYP', E'Syrisch pond');
INSERT INTO "list" ("id", "value") VALUES (E'TJS', E'Tadzjiekse somoni');
INSERT INTO "list" ("id", "value") VALUES (E'TJR', E'Tadzjikistaanse roebel');
INSERT INTO "list" ("id", "value") VALUES (E'TZS', E'Tanzaniaanse shilling');
INSERT INTO "list" ("id", "value") VALUES (E'THB', E'Thaise baht');
INSERT INTO "list" ("id", "value") VALUES (E'TPE', E'Timorese escudo');
INSERT INTO "list" ("id", "value") VALUES (E'TOP', E'Tongaanse paʻanga');
INSERT INTO "list" ("id", "value") VALUES (E'TTD', E'Trinidad en Tobago-dollar');
INSERT INTO "list" ("id", "value") VALUES (E'CZK', E'Tsjechische kroon');
INSERT INTO "list" ("id", "value") VALUES (E'CSK', E'Tsjechoslowaakse harde koruna');
INSERT INTO "list" ("id", "value") VALUES (E'TND', E'Tunesische dinar');
INSERT INTO "list" ("id", "value") VALUES (E'TMT', E'Turkmeense manat');
INSERT INTO "list" ("id", "value") VALUES (E'TMM', E'Turkmeense manat (1993–2009)');
INSERT INTO "list" ("id", "value") VALUES (E'TRY', E'Turkse lira');
INSERT INTO "list" ("id", "value") VALUES (E'TRL', E'Turkse lire');
INSERT INTO "list" ("id", "value") VALUES (E'COU', E'Unidad de Valor Real');
INSERT INTO "list" ("id", "value") VALUES (E'UYU', E'Uruguayaanse peso');
INSERT INTO "list" ("id", "value") VALUES (E'UYP', E'Uruguayaanse peso (1975–1993)');
INSERT INTO "list" ("id", "value") VALUES (E'UYI', E'Uruguayaanse peso en geïndexeerde eenheden');
INSERT INTO "list" ("id", "value") VALUES (E'VUV', E'Vanuatuaanse vatu');
INSERT INTO "list" ("id", "value") VALUES (E'VEF', E'Venezolaanse bolivar');
INSERT INTO "list" ("id", "value") VALUES (E'VEB', E'Venezolaanse bolivar (1871–2008)');
INSERT INTO "list" ("id", "value") VALUES (E'AED', E'Verenigde Arabische Emiraten-dirham');
INSERT INTO "list" ("id", "value") VALUES (E'VND', E'Vietnamese dong');
INSERT INTO "list" ("id", "value") VALUES (E'VNN', E'Vietnamese dong (1978–1985)');
INSERT INTO "list" ("id", "value") VALUES (E'CHE', E'WIR euro');
INSERT INTO "list" ("id", "value") VALUES (E'CHW', E'WIR franc');
INSERT INTO "list" ("id", "value") VALUES (E'BYB', E'Wit-Russische nieuwe roebel (1994–1999)');
INSERT INTO "list" ("id", "value") VALUES (E'BYN', E'Wit-Russische roebel');
INSERT INTO "list" ("id", "value") VALUES (E'BYR', E'Wit-Russische roebel (2000–2016)');
INSERT INTO "list" ("id", "value") VALUES (E'ZMW', E'Zambiaanse kwacha');
INSERT INTO "list" ("id", "value") VALUES (E'ZMK', E'Zambiaanse kwacha (1968–2012)');
INSERT INTO "list" ("id", "value") VALUES (E'ZRN', E'Zaïrese nieuwe zaïre');
INSERT INTO "list" ("id", "value") VALUES (E'ZRZ', E'Zaïrese zaïre');
INSERT INTO "list" ("id", "value") VALUES (E'ZWD', E'Zimbabwaanse dollar');
INSERT INTO "list" ("id", "value") VALUES (E'ZWR', E'Zimbabwaanse dollar (2008)');
INSERT INTO "list" ("id", "value") VALUES (E'ZWL', E'Zimbabwaanse dollar (2009)');
INSERT INTO "list" ("id", "value") VALUES (E'ZAR', E'Zuid-Afrikaanse rand');
INSERT INTO "list" ("id", "value") VALUES (E'ZAL', E'Zuid-Afrikaanse rand (financieel)');
INSERT INTO "list" ("id", "value") VALUES (E'KRH', E'Zuid-Koreaanse hwan (1953–1962)');
INSERT INTO "list" ("id", "value") VALUES (E'KRW', E'Zuid-Koreaanse won');
INSERT INTO "list" ("id", "value") VALUES (E'SSP', E'Zuid-Soedanees pond');
INSERT INTO "list" ("id", "value") VALUES (E'SEK', E'Zweedse kroon');
INSERT INTO "list" ("id", "value") VALUES (E'CHF', E'Zwitserse frank');
INSERT INTO "list" ("id", "value") VALUES (E'CNX', E'dollar van de Chinese Volksbank');
|
<filename>DBADashDB/Report/Stored Procedures/DBMaxSize.sql<gh_stars>10-100
CREATE PROC Report.DBMaxSize(
@InstanceIDs VARCHAR(MAX)=NULL,
@ThresholdPct INT = 20
)
AS
DECLARE @Instances TABLE(
InstanceID INT PRIMARY KEY
)
IF @InstanceIDs IS NULL
BEGIN
INSERT INTO @Instances
(
InstanceID
)
SELECT InstanceID
FROM dbo.Instances
WHERE IsActive=1
END
ELSE
BEGIN
INSERT INTO @Instances
(
InstanceID
)
SELECT Item
FROM dbo.SplitStrings(@InstanceIDs,',')
END
SELECT i.Instance,
d.name AS DB,
f.filegroup_name,
SUM(f.size)/128 AS SizeMB,
SUM(f.space_used)/128.0 AS UsedMB,
SUM(f.size-f.space_used)/128.0 AS FreeMB,
1.0-SUM(f.space_used*1.0)/SUM(f.size) AS FreePct,
SUM(f.max_size) /128 AS MaxSizeMB,
(SUM(f.max_size)-SUM(f.size))/128.0 AS AvailableGrowthMB,
1.0-(SUM(f.size)*1.0/NULLIF(SUM(f.max_size),0)) AS AvailableGrowthPct,
(SUM(f.max_size)-SUM(f.space_used))/128.0 AS AvailableMB,
1.0-(SUM(f.space_used)*1.0/NULLIF(SUM(f.max_size),0)) AS AvailablePct,
COUNT(*) Files
FROM dbo.DBFiles f
JOIN dbo.Databases d ON d.DatabaseID = f.DatabaseID
JOIN dbo.Instances i ON i.InstanceID = d.InstanceID
WHERE f.is_read_only=0
AND d.is_read_only=0
AND i.IsActive=1
AND d.IsActive=1
AND f.type=0
GROUP BY i.Instance,
d.name,
f.filegroup_name
HAVING MIN(f.max_size)>0
AND (1.0-(SUM(f.space_used)*1.0/NULLIF(SUM(f.max_size),0))) *100 < @ThresholdPct
ORDER BY AvailableGrowthPct |
-- Before we start, we need to restore the DB for this tutorial.
-- Step1: Download the compressed backup file (https://deve2e.azureedge.net/sqlchoice/static/TutorialDB.bak)
--Save the file on a location where SQL Server can access it. For example: C:\Program Files\Microsoft SQL Server\MSSQL13.MSSQLSERVER\MSSQL\Backup\
-- In a new query window in SSMS, execute the following restore statement, but REMEMBER TO CHANGE THE FILE PATHS
-- to match the directories of your installation!
USE master;
GO
RESTORE DATABASE TutorialDB
FROM DISK = 'C:\Program Files\Microsoft SQL Server\MSSQL13.MSSQLSERVER\MSSQL\Backup\TutorialDB.bak'
WITH
MOVE 'TutorialDB' TO 'C:\Program Files\Microsoft SQL Server\MSSQL13.MSSQLSERVER\MSSQL\DATA\TutorialDB.mdf'
,MOVE 'TutorialDB_log' TO 'C:\Program Files\Microsoft SQL Server\MSSQL13.MSSQLSERVER\MSSQL\DATA\TutorialDB.ldf';
GO |
SET search_path = disclosure, pg_catalog;
--
-- Name: rad_cmte_analyst_search_vw; Type: VIEW; Schema: disclosure; Owner: fec
--
CREATE VIEW rad_cmte_analyst_search_vw AS
SELECT ra.cmte_id,
cv.cmte_nm,
an.anlyst_id,
CASE
WHEN (an.branch_id = (1)::numeric) THEN 'Authorized'::text
WHEN (an.branch_id = (2)::numeric) THEN 'Party/Non Pary'::text
ELSE NULL::text
END AS rad_branch,
an.firstname,
an.lastname,
an.telephone_ext,
an.valid_id AS anlyst_short_id,
t.anlyst_title_desc AS anlyst_title,
an.email AS anlyst_email
FROM rad_pri_user.rad_anlyst an,
rad_pri_user.rad_assgn ra,
cmte_valid_fec_yr cv,
rad_pri_user.rad_lkp_anlyst_title t
WHERE ((an.status_id = (1)::numeric) AND (an.anlyst_id <> (999)::numeric) AND (cv.fec_election_yr = (((date_part('year'::text, now()))::integer + ((date_part('year'::text, now()))::integer % 2)))::numeric) AND (an.anlyst_id = ra.anlyst_id) AND ((ra.cmte_id)::text = (cv.cmte_id)::text) AND (an.anlyst_title_seq = t.anlyst_title_seq));
ALTER TABLE rad_cmte_analyst_search_vw OWNER TO fec;
--
-- Name: ref_ai; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE ref_ai (
ai character varying(1),
ai_order numeric(1,0),
v_sum_sort_order numeric(1,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE ref_ai OWNER TO fec;
--
-- Name: ref_filing_desc; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE ref_filing_desc (
filing_code character varying(10) NOT NULL,
filing_code_desc character varying(90),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE ref_filing_desc OWNER TO fec;
--
-- Name: unverified_cand_cmte; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE unverified_cand_cmte (
cand_cmte_id character varying(9) NOT NULL,
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE unverified_cand_cmte OWNER TO fec;
--
-- Name: v_sum_and_det_sum_report; Type: TABLE; Schema: disclosure; Owner: fec
--
CREATE TABLE v_sum_and_det_sum_report (
cvg_start_dt numeric(8,0),
cmte_pk numeric(19,0),
cvg_end_dt numeric(8,0),
ttl_receipts numeric(14,2),
tranf_from_other_auth_cmte numeric(14,2),
indv_contb numeric(14,2),
oth_cmte_contb numeric(14,2),
oth_loans numeric(14,2),
ttl_disb numeric(14,2),
tranf_to_other_auth_cmte numeric(14,2),
indv_ref numeric(14,2),
oth_cmte_ref numeric(14,2),
oth_loan_repymts numeric(14,2),
coh_bop numeric(14,2),
coh_cop numeric(14,2),
debts_owed_by_cmte numeric(14,2),
cand_loan numeric(14,2),
cand_loan_repymnt numeric(14,2),
indv_unitem_contb numeric(14,2),
pty_cmte_contb numeric(14,2),
cand_cntb numeric(14,2),
ttl_contb numeric(14,2),
ttl_loans numeric(14,2),
offsets_to_op_exp numeric(14,2),
other_receipts numeric(14,2),
pol_pty_cmte_contb numeric(14,2),
ttl_contb_ref numeric(14,2),
ttl_loan_repymts numeric(14,2),
op_exp_per numeric(14,2),
other_disb_per numeric(14,2),
net_contb numeric(14,2),
net_op_exp numeric(14,2),
debts_owed_to_cmte numeric(14,2),
all_loans_received_per numeric(14,2),
fed_cand_contb_ref_per numeric(14,2),
tranf_from_nonfed_acct_per numeric(14,2),
tranf_from_nonfed_levin_per numeric(14,2),
ttl_nonfed_tranf_per numeric(14,2),
ttl_fed_receipts_per numeric(14,2),
shared_fed_op_exp_per numeric(14,2),
shared_nonfed_op_exp_per numeric(14,2),
other_fed_op_exp_per numeric(14,2),
ttl_op_exp_per numeric(14,2),
fed_cand_cmte_contb_per numeric(14,2),
indt_exp_per numeric(14,2),
coord_exp_by_pty_cmte_per numeric(14,2),
loans_made_per numeric(14,2),
shared_fed_actvy_fed_shr_per numeric(14,2),
shared_fed_actvy_nonfed_per numeric(14,2),
non_alloc_fed_elect_actvy_per numeric(14,2),
ttl_fed_elect_actvy_per numeric(14,2),
offsets_to_fndrsg numeric(14,2),
offsets_to_legal_acctg numeric(14,2),
ttl_offsets_to_op_exp numeric(14,2),
fndrsg_disb numeric(14,2),
exempt_legal_acctg_disb numeric(14,2),
cmte_id character varying(9),
rpt_tp character varying(3),
rpt_yr numeric(4,0),
receipt_dt timestamp without time zone,
orig_sub_id numeric(19,0) NOT NULL,
election_st character varying(2),
rpt_pgi character varying(5),
form_tp_cd character varying(8) NOT NULL,
fed_funds_per numeric(14,2),
item_ref_reb_ret_per numeric(14,2),
unitem_ref_reb_ret_per numeric(14,2),
subttl_ref_reb_ret_per numeric(14,2),
item_other_ref_reb_ret_per numeric(14,2),
unitem_other_ref_reb_ret_per numeric(14,2),
subttl_other_ref_reb_ret_per numeric(14,2),
item_other_income_per numeric(14,2),
unitem_other_income_per numeric(14,2),
item_convn_exp_disb_per numeric(14,2),
unitem_convn_exp_disb_per numeric(14,2),
subttl_convn_exp_disb_per numeric(14,2),
tranf_to_st_local_pty_per numeric(14,2),
direct_st_local_cand_supp_per numeric(14,2),
voter_reg_amt_per numeric(14,2),
voter_id_amt_per numeric(14,2),
gotv_amt_per numeric(14,2),
generic_campaign_amt_per numeric(14,2),
tranf_to_fed_alloctn_per numeric(14,2),
item_other_disb_per numeric(14,2),
unitem_other_disb_per numeric(14,2),
ttl_fed_disb_per numeric(14,2),
coh_boy numeric(14,2),
coh_coy numeric(14,2),
exp_subject_limits_per numeric(14,2),
exp_prior_yrs_subject_lim_per numeric(14,2),
ttl_exp_subject_limits numeric(14,2),
ttl_communication_cost numeric(14,2),
oppos_pers_fund_amt numeric(14,2),
hse_pers_funds_amt numeric(14,2),
sen_pers_funds_amt numeric(14,2),
loan_repymts_received_per numeric(14,2),
file_num numeric(7,0),
indv_item_contb numeric(14,2),
last_update_date timestamp without time zone,
prev_sub_id numeric(19,0),
pg_date timestamp without time zone DEFAULT now()
);
ALTER TABLE v_sum_and_det_sum_report OWNER TO fec;
|
alter table SAM_ANSWERFEEDBACK_T drop constraint FK58CEF0D8DEC85889;
alter table SAM_ANSWER_T drop constraint FKDD0580933288DBBD;
alter table SAM_ANSWER_T drop constraint FKDD058093278A7DAD;
alter table SAM_ASSESSACCESSCONTROL_T drop constraint FKC945448A694216CC;
alter table SAM_ASSESSEVALUATION_T drop constraint FK6A6F29F5694216CC;
alter table SAM_ASSESSFEEDBACK_T drop constraint FK557D4CFE694216CC;
alter table SAM_ASSESSMETADATA_T drop constraint FK7E6F9A28694216CC;
alter table SAM_GRADINGSUMMARY_T drop constraint FKBC88AA27D02EF633;
alter table SAM_ITEMFEEDBACK_T drop constraint FK3254E9ED3288DBBD;
alter table SAM_ITEMGRADING_T drop constraint FKB68E675667B430D5;
alter table SAM_ITEMMETADATA_T drop constraint FK5B4737173288DBBD;
alter table SAM_ITEMTEXT_T drop constraint FK271D63153288DBBD;
alter table SAM_ITEM_T drop constraint FK3AAC5EA870CE2BD;
alter table SAM_MEDIA_T drop constraint FKD4CF5A194D7EA7B3;
alter table SAM_PUBLISHEDACCESSCONTROL_T drop constraint FK2EDF39E09482C945;
alter table SAM_PUBLISHEDANSWERFEEDBACK_T drop constraint FK6CB765A624D77573;
alter table SAM_PUBLISHEDANSWER_T drop constraint FKB41EA36131446627;
alter table SAM_PUBLISHEDANSWER_T drop constraint FKB41EA36126460817;
alter table SAM_PUBLISHEDEVALUATION_T drop constraint FK94CB245F9482C945;
alter table SAM_PUBLISHEDFEEDBACK_T drop constraint FK1488D9E89482C945;
alter table SAM_PUBLISHEDITEMFEEDBACK_T drop constraint FKB7D03A3B31446627;
alter table SAM_PUBLISHEDITEMMETADATA_T drop constraint FKE0C2876531446627;
alter table SAM_PUBLISHEDITEMTEXT_T drop constraint FK9C790A6331446627;
alter table SAM_PUBLISHEDITEM_T drop constraint FK53ABDCF6895D4813;
alter table SAM_PUBLISHEDMETADATA_T drop constraint FK3D7B27129482C945;
alter table SAM_PUBLISHEDSECTIONMETADATA_T drop constraint FKDF50FC3B895D4813;
alter table SAM_PUBLISHEDSECTION_T drop constraint FK424F87CC9482C945;
alter table SAM_PUBLISHEDSECUREDIP_T drop constraint FK1EDEA25B9482C945;
alter table SAM_QUESTIONPOOLITEM_T drop constraint FKF0FAAE2A39ED26BB;
alter table SAM_SECTIONMETADATA_T drop constraint FK762AD74970CE2BD;
alter table SAM_SECTION_T drop constraint FK364450DACAC2365B;
alter table SAM_SECTION_T drop constraint FK364450DA694216CC;
alter table SAM_SECUREDIP_T drop constraint FKE8C55FE9694216CC;
drop table SAM_ANSWERFEEDBACK_T if exists;
drop table SAM_ANSWER_T if exists;
drop table SAM_ASSESSACCESSCONTROL_T if exists;
drop table SAM_ASSESSEVALUATION_T if exists;
drop table SAM_ASSESSFEEDBACK_T if exists;
drop table SAM_ASSESSMENTBASE_T if exists;
drop table SAM_ASSESSMENTGRADING_T if exists;
drop table SAM_ASSESSMETADATA_T if exists;
drop table SAM_AUTHZDATA_T if exists;
drop table SAM_FUNCTIONDATA_T if exists;
drop table SAM_GRADINGSUMMARY_T if exists;
drop table SAM_ITEMFEEDBACK_T if exists;
drop table SAM_ITEMGRADING_T if exists;
drop table SAM_ITEMMETADATA_T if exists;
drop table SAM_ITEMTEXT_T if exists;
drop table SAM_ITEM_T if exists;
drop table SAM_MEDIA_T if exists;
drop table SAM_PUBLISHEDACCESSCONTROL_T if exists;
drop table SAM_PUBLISHEDANSWERFEEDBACK_T if exists;
drop table SAM_PUBLISHEDANSWER_T if exists;
drop table SAM_PUBLISHEDASSESSMENT_T if exists;
drop table SAM_PUBLISHEDEVALUATION_T if exists;
drop table SAM_PUBLISHEDFEEDBACK_T if exists;
drop table SAM_PUBLISHEDITEMFEEDBACK_T if exists;
drop table SAM_PUBLISHEDITEMMETADATA_T if exists;
drop table SAM_PUBLISHEDITEMTEXT_T if exists;
drop table SAM_PUBLISHEDITEM_T if exists;
drop table SAM_PUBLISHEDMETADATA_T if exists;
drop table SAM_PUBLISHEDSECTIONMETADATA_T if exists;
drop table SAM_PUBLISHEDSECTION_T if exists;
drop table SAM_PUBLISHEDSECUREDIP_T if exists;
drop table SAM_QUALIFIERDATA_T if exists;
drop table SAM_QUESTIONPOOLACCESS_T if exists;
drop table SAM_QUESTIONPOOLITEM_T if exists;
drop table SAM_QUESTIONPOOL_T if exists;
drop table SAM_SECTIONMETADATA_T if exists;
drop table SAM_SECTION_T if exists;
drop table SAM_SECUREDIP_T if exists;
drop table SAM_TYPE_T if exists;
create table SAM_ANSWERFEEDBACK_T (ANSWERFEEDBACKID bigint generated by default as identity (start with 1), ANSWERID bigint not null, TYPEID varchar(36), TEXT varchar(4000), primary key (ANSWERFEEDBACKID));
create table SAM_ANSWER_T (ANSWERID bigint generated by default as identity (start with 1), ITEMTEXTID bigint not null, ITEMID bigint not null, TEXT varchar(4000), SEQUENCE integer not null, LABEL varchar(20), ISCORRECT varchar(1), GRADE varchar(80), SCORE float, primary key (ANSWERID));
create table SAM_ASSESSACCESSCONTROL_T (ASSESSMENTID bigint not null, SUBMISSIONSALLOWED integer, UNLIMITEDSUBMISSIONS integer, SUBMISSIONSSAVED integer, ASSESSMENTFORMAT integer, BOOKMARKINGITEM integer, TIMELIMIT integer, TIMEDASSESSMENT integer, RETRYALLOWED integer, LATEHANDLING integer, STARTDATE timestamp, DUEDATE timestamp, SCOREDATE timestamp, FEEDBACKDATE timestamp, RETRACTDATE timestamp, AUTOSUBMIT integer, ITEMNAVIGATION integer, ITEMNUMBERING integer, SUBMISSIONMESSAGE varchar(4000), RELEASETO varchar(255), USERNAME varchar(255), PASSWORD varchar(255), FINALPAGEURL varchar(1023), primary key (ASSESSMENTID));
create table SAM_ASSESSEVALUATION_T (ASSESSMENTID bigint not null, EVALUATIONCOMPONENTS varchar(255), SCORINGTYPE integer, NUMERICMODELID varchar(255), FIXEDTOTALSCORE integer, GRADEAVAILABLE integer, ISSTUDENTIDPUBLIC integer, ANONYMOUSGRADING integer, AUTOSCORING integer, TOGRADEBOOK varchar(255), primary key (ASSESSMENTID));
create table SAM_ASSESSFEEDBACK_T (ASSESSMENTID bigint not null, FEEDBACKDELIVERY integer, FEEDBACKAUTHORING integer, EDITCOMPONENTS integer, SHOWQUESTIONTEXT integer, SHOWSTUDENTRESPONSE integer, SHOWCORRECTRESPONSE integer, SHOWSTUDENTSCORE integer, SHOWSTUDENTQUESTIONSCORE integer, SHOWQUESTIONLEVELFEEDBACK integer, SHOWSELECTIONLEVELFEEDBACK integer, SHOWGRADERCOMMENTS integer, SHOWSTATISTICS integer, primary key (ASSESSMENTID));
create table SAM_ASSESSMENTBASE_T (ID bigint generated by default as identity (start with 1), isTemplate varchar(255) not null, PARENTID integer, TITLE varchar(255), DESCRIPTION varchar(4000), COMMENTS varchar(4000), TYPEID varchar(36), INSTRUCTORNOTIFICATION integer, TESTEENOTIFICATION integer, MULTIPARTALLOWED integer, STATUS integer not null, CREATEDBY varchar(36) not null, CREATEDDATE timestamp not null, LASTMODIFIEDBY varchar(36) not null, LASTMODIFIEDDATE timestamp not null, ASSESSMENTTEMPLATEID bigint, primary key (ID));
create table SAM_ASSESSMENTGRADING_T (ASSESSMENTGRADINGID bigint generated by default as identity (start with 1), PUBLISHEDASSESSMENTID integer not null, AGENTID varchar(36) not null, SUBMITTEDDATE timestamp, ISLATE varchar(1) not null, FORGRADE integer not null, TOTALAUTOSCORE float, TOTALOVERRIDESCORE float, FINALSCORE float, COMMENTS varchar(4000), GRADEDBY varchar(36), GRADEDDATE timestamp, STATUS integer not null, ATTEMPTDATE timestamp, TIMEELAPSED integer, primary key (ASSESSMENTGRADINGID));
create table SAM_ASSESSMETADATA_T (ASSESSMENTMETADATAID bigint generated by default as identity (start with 1), ASSESSMENTID bigint not null, LABEL varchar(255) not null, ENTRY varchar(255), primary key (ASSESSMENTMETADATAID));
create table SAM_AUTHZDATA_T (ID bigint generated by default as identity (start with 1), lockId integer not null, AGENTID varchar(36) not null, FUNCTIONID varchar(36) not null, QUALIFIERID varchar(36) not null, EFFECTIVEDATE date, EXPIRATIONDATE date, LASTMODIFIEDBY varchar(36) not null, LASTMODIFIEDDATE date not null, ISEXPLICIT integer, primary key (ID), unique (AGENTID, FUNCTIONID, QUALIFIERID));
create table SAM_FUNCTIONDATA_T (FUNCTIONID bigint generated by default as identity (start with 1), REFERENCENAME varchar(255) not null, DISPLAYNAME varchar(255), DESCRIPTION varchar(4000), FUNCTIONTYPEID varchar(4000), primary key (FUNCTIONID));
create table SAM_GRADINGSUMMARY_T (ASSESSMENTGRADINGSUMMARYID bigint generated by default as identity (start with 1), PUBLISHEDASSESSMENTID bigint not null, AGENTID varchar(36) not null, TOTALSUBMITTED integer, TOTALSUBMITTEDFORGRADE integer, LASTSUBMITTEDDATE timestamp, LASTSUBMITTEDASSESSMENTISLATE integer not null, SUMOF_AUTOSCOREFORGRADE float, AVERAGE_AUTOSCOREFORGRADE float, HIGHEST_AUTOSCOREFORGRADE float, LOWEST_AUTOSCOREFORGRADE float, LAST_AUTOSCOREFORGRADE float, SUMOF_OVERRIDESCOREFORGRADE float, AVERAGE_OVERRIDESCOREFORGRADE float, HIGHEST_OVERRIDESCOREFORGRADE float, LOWEST_OVERRIDESCOREFORGRADE float, LAST_OVERRIDESCOREFORGRADE float, SCORINGTYPE integer, ACCEPTEDASSESSMENTISLATE integer, FINALASSESSMENTSCORE float, FEEDTOGRADEBOOK integer, primary key (ASSESSMENTGRADINGSUMMARYID));
create table SAM_ITEMFEEDBACK_T (ITEMFEEDBACKID bigint generated by default as identity (start with 1), ITEMID bigint not null, TYPEID varchar(36) not null, TEXT varchar(4000), primary key (ITEMFEEDBACKID));
create table SAM_ITEMGRADING_T (ITEMGRADINGID bigint generated by default as identity (start with 1), ASSESSMENTGRADINGID bigint not null, PUBLISHEDITEMID integer not null, PUBLISHEDITEMTEXTID integer not null, AGENTID varchar(36) not null, SUBMITTEDDATE timestamp not null, PUBLISHEDANSWERID integer, RATIONALE varchar(4000), ANSWERTEXT varchar(4000), AUTOSCORE float, OVERRIDESCORE float, COMMENTS varchar(4000), GRADEDBY varchar(36), GRADEDDATE timestamp, REVIEW integer, ATTEMPTSREMAINING integer, LASTDURATION varchar(36), primary key (ITEMGRADINGID));
create table SAM_ITEMMETADATA_T (ITEMMETADATAID bigint generated by default as identity (start with 1), ITEMID bigint not null, LABEL varchar(255) not null, ENTRY varchar(255), primary key (ITEMMETADATAID));
create table SAM_ITEMTEXT_T (ITEMTEXTID bigint generated by default as identity (start with 1), ITEMID bigint not null, SEQUENCE integer not null, TEXT varchar(4000), primary key (ITEMTEXTID));
create table SAM_ITEM_T (ITEMID bigint generated by default as identity (start with 1), SECTIONID bigint, ITEMIDSTRING varchar(36), SEQUENCE integer, DURATION integer, TRIESALLOWED integer, INSTRUCTION varchar(4000), DESCRIPTION varchar(4000), TYPEID varchar(36) not null, GRADE varchar(80), SCORE float, HINT varchar(4000), HASRATIONALE varchar(1), STATUS integer not null, CREATEDBY varchar(36) not null, CREATEDDATE timestamp not null, LASTMODIFIEDBY varchar(36) not null, LASTMODIFIEDDATE timestamp not null, primary key (ITEMID));
create table SAM_MEDIA_T (MEDIAID bigint generated by default as identity (start with 1), ITEMGRADINGID bigint, MEDIA varbinary(1000000000), FILESIZE integer, MIMETYPE varchar(80), DESCRIPTION varchar(4000), LOCATION varchar(255), FILENAME varchar(255), ISLINK integer, ISHTMLINLINE integer, STATUS integer, CREATEDBY varchar(36), CREATEDDATE timestamp, LASTMODIFIEDBY varchar(36), LASTMODIFIEDDATE timestamp, DURATION varchar(36), primary key (MEDIAID));
create table SAM_PUBLISHEDACCESSCONTROL_T (ASSESSMENTID bigint not null, UNLIMITEDSUBMISSIONS integer, SUBMISSIONSALLOWED integer, SUBMISSIONSSAVED integer, ASSESSMENTFORMAT integer, BOOKMARKINGITEM integer, TIMELIMIT integer, TIMEDASSESSMENT integer, RETRYALLOWED integer, LATEHANDLING integer, STARTDATE timestamp, DUEDATE timestamp, SCOREDATE timestamp, FEEDBACKDATE timestamp, RETRACTDATE timestamp, AUTOSUBMIT integer, ITEMNAVIGATION integer, ITEMNUMBERING integer, SUBMISSIONMESSAGE varchar(4000), RELEASETO varchar(255), USERNAME varchar(255), PASSWORD varchar(255), FINALPAGEURL varchar(1023), primary key (ASSESSMENTID));
create table SAM_PUBLISHEDANSWERFEEDBACK_T (ANSWERFEEDBACKID bigint generated by default as identity (start with 1), ANSWERID bigint not null, TYPEID varchar(36), TEXT varchar(4000), primary key (ANSWERFEEDBACKID));
create table SAM_PUBLISHEDANSWER_T (ANSWERID bigint generated by default as identity (start with 1), ITEMTEXTID bigint not null, ITEMID bigint not null, TEXT varchar(4000), SEQUENCE integer not null, LABEL varchar(20), ISCORRECT varchar(1), GRADE varchar(80), SCORE float, primary key (ANSWERID));
create table SAM_PUBLISHEDASSESSMENT_T (ID bigint generated by default as identity (start with 1), TITLE varchar(255), ASSESSMENTID integer, DESCRIPTION varchar(4000), COMMENTS varchar(255), TYPEID varchar(36), INSTRUCTORNOTIFICATION integer, TESTEENOTIFICATION integer, MULTIPARTALLOWED integer, STATUS integer not null, CREATEDBY varchar(36) not null, CREATEDDATE timestamp not null, LASTMODIFIEDBY varchar(36) not null, LASTMODIFIEDDATE timestamp not null, primary key (ID));
create table SAM_PUBLISHEDEVALUATION_T (ASSESSMENTID bigint not null, EVALUATIONCOMPONENTS varchar(255), SCORINGTYPE integer, NUMERICMODELID varchar(255), FIXEDTOTALSCORE integer, GRADEAVAILABLE integer, ISSTUDENTIDPUBLIC integer, ANONYMOUSGRADING integer, AUTOSCORING integer, TOGRADEBOOK integer, primary key (ASSESSMENTID));
create table SAM_PUBLISHEDFEEDBACK_T (ASSESSMENTID bigint not null, FEEDBACKDELIVERY integer, FEEDBACKAUTHORING integer, EDITCOMPONENTS integer, SHOWQUESTIONTEXT integer, SHOWSTUDENTRESPONSE integer, SHOWCORRECTRESPONSE integer, SHOWSTUDENTSCORE integer, SHOWSTUDENTQUESTIONSCORE integer, SHOWQUESTIONLEVELFEEDBACK integer, SHOWSELECTIONLEVELFEEDBACK integer, SHOWGRADERCOMMENTS integer, SHOWSTATISTICS integer, primary key (ASSESSMENTID));
create table SAM_PUBLISHEDITEMFEEDBACK_T (ITEMFEEDBACKID bigint generated by default as identity (start with 1), ITEMID bigint not null, TYPEID varchar(36) not null, TEXT varchar(4000), primary key (ITEMFEEDBACKID));
create table SAM_PUBLISHEDITEMMETADATA_T (ITEMMETADATAID bigint generated by default as identity (start with 1), ITEMID bigint not null, LABEL varchar(255) not null, ENTRY varchar(255), primary key (ITEMMETADATAID));
create table SAM_PUBLISHEDITEMTEXT_T (ITEMTEXTID bigint generated by default as identity (start with 1), ITEMID bigint not null, SEQUENCE integer not null, TEXT varchar(4000), primary key (ITEMTEXTID));
create table SAM_PUBLISHEDITEM_T (ITEMID bigint generated by default as identity (start with 1), SECTIONID bigint not null, ITEMIDSTRING varchar(36), SEQUENCE integer, DURATION integer, TRIESALLOWED integer, INSTRUCTION varchar(4000), DESCRIPTION varchar(4000), TYPEID varchar(36) not null, GRADE varchar(80), SCORE float, HINT varchar(4000), HASRATIONALE varchar(1), STATUS integer not null, CREATEDBY varchar(36) not null, CREATEDDATE timestamp not null, LASTMODIFIEDBY varchar(36) not null, LASTMODIFIEDDATE timestamp not null, primary key (ITEMID));
create table SAM_PUBLISHEDMETADATA_T (ASSESSMENTMETADATAID bigint generated by default as identity (start with 1), ASSESSMENTID bigint not null, LABEL varchar(255) not null, ENTRY varchar(255), primary key (ASSESSMENTMETADATAID));
create table SAM_PUBLISHEDSECTIONMETADATA_T (PUBLISHEDSECTIONMETADATAID bigint generated by default as identity (start with 1), SECTIONID bigint not null, LABEL varchar(255) not null, ENTRY varchar(255), primary key (PUBLISHEDSECTIONMETADATAID));
create table SAM_PUBLISHEDSECTION_T (SECTIONID bigint generated by default as identity (start with 1), ASSESSMENTID bigint not null, DURATION integer, SEQUENCE integer, TITLE varchar(255), DESCRIPTION varchar(4000), TYPEID integer not null, STATUS integer not null, CREATEDBY varchar(36) not null, CREATEDDATE timestamp not null, LASTMODIFIEDBY varchar(36) not null, LASTMODIFIEDDATE timestamp not null, primary key (SECTIONID));
create table SAM_PUBLISHEDSECUREDIP_T (IPADDRESSID bigint generated by default as identity (start with 1), ASSESSMENTID bigint not null, HOSTNAME varchar(255), IPADDRESS varchar(255), primary key (IPADDRESSID));
create table SAM_QUALIFIERDATA_T (QUALIFIERID bigint not null, REFERENCENAME varchar(255) not null, DISPLAYNAME varchar(255), DESCRIPTION varchar(4000), QUALIFIERTYPEID varchar(4000), primary key (QUALIFIERID));
create table SAM_QUESTIONPOOLACCESS_T (QUESTIONPOOLID bigint not null, AGENTID varchar(255) not null, ACCESSTYPEID bigint not null, primary key (QUESTIONPOOLID, AGENTID, ACCESSTYPEID));
create table SAM_QUESTIONPOOLITEM_T (QUESTIONPOOLID bigint not null, ITEMID varchar(255) not null, primary key (QUESTIONPOOLID, ITEMID));
create table SAM_QUESTIONPOOL_T (QUESTIONPOOLID bigint generated by default as identity (start with 1), TITLE varchar(255), DESCRIPTION varchar(255), PARENTPOOLID integer, OWNERID varchar(255), ORGANIZATIONNAME varchar(255), DATECREATED timestamp, LASTMODIFIEDDATE timestamp, LASTMODIFIEDBY varchar(255), DEFAULTACCESSTYPEID integer, OBJECTIVE varchar(255), KEYWORDS varchar(255), RUBRIC varchar(4000), TYPEID integer, INTELLECTUALPROPERTYID integer, primary key (QUESTIONPOOLID));
create table SAM_SECTIONMETADATA_T (SECTIONMETADATAID bigint generated by default as identity (start with 1), SECTIONID bigint not null, LABEL varchar(255) not null, ENTRY varchar(255), primary key (SECTIONMETADATAID));
create table SAM_SECTION_T (SECTIONID bigint generated by default as identity (start with 1), ASSESSMENTID bigint not null, DURATION integer, SEQUENCE integer, TITLE varchar(255), DESCRIPTION varchar(4000), TYPEID integer, STATUS integer not null, CREATEDBY varchar(36) not null, CREATEDDATE timestamp not null, LASTMODIFIEDBY varchar(36) not null, LASTMODIFIEDDATE timestamp not null, primary key (SECTIONID));
create table SAM_SECUREDIP_T (IPADDRESSID bigint generated by default as identity (start with 1), ASSESSMENTID bigint not null, HOSTNAME varchar(255), IPADDRESS varchar(255), primary key (IPADDRESSID));
create table SAM_TYPE_T (TYPEID bigint generated by default as identity (start with 1), AUTHORITY varchar(255), DOMAIN varchar(255), KEYWORD varchar(255), DESCRIPTION varchar(4000), STATUS integer not null, CREATEDBY varchar(36) not null, CREATEDDATE timestamp not null, LASTMODIFIEDBY varchar(36) not null, LASTMODIFIEDDATE timestamp not null, primary key (TYPEID));
alter table SAM_ANSWERFEEDBACK_T add constraint FK58CEF0D8DEC85889 foreign key (ANSWERID) references SAM_ANSWER_T;
alter table SAM_ANSWER_T add constraint FKDD0580933288DBBD foreign key (ITEMID) references SAM_ITEM_T;
alter table SAM_ANSWER_T add constraint FKDD058093278A7DAD foreign key (ITEMTEXTID) references SAM_ITEMTEXT_T;
alter table SAM_ASSESSACCESSCONTROL_T add constraint FKC945448A694216CC foreign key (ASSESSMENTID) references SAM_ASSESSMENTBASE_T;
alter table SAM_ASSESSEVALUATION_T add constraint FK6A6F29F5694216CC foreign key (ASSESSMENTID) references SAM_ASSESSMENTBASE_T;
alter table SAM_ASSESSFEEDBACK_T add constraint FK557D4CFE694216CC foreign key (ASSESSMENTID) references SAM_ASSESSMENTBASE_T;
create index SAM_PUBLISHEDASSESSMENT_I on SAM_ASSESSMENTGRADING_T (PUBLISHEDASSESSMENTID);
alter table SAM_ASSESSMETADATA_T add constraint FK7E6F9A28694216CC foreign key (ASSESSMENTID) references SAM_ASSESSMENTBASE_T;
create index sam_authz_functionId_idx on SAM_AUTHZDATA_T (FUNCTIONID);
create index sam_authz_qualifierId_idx on SAM_AUTHZDATA_T (QUALIFIERID);
create index sam_authz_agentId_idx on SAM_AUTHZDATA_T (AGENTID);
alter table SAM_GRADINGSUMMARY_T add constraint FKBC88AA27D02EF633 foreign key (PUBLISHEDASSESSMENTID) references SAM_PUBLISHEDASSESSMENT_T;
alter table SAM_ITEMFEEDBACK_T add constraint FK3254E9ED3288DBBD foreign key (ITEMID) references SAM_ITEM_T;
create index SAM_ITEMGRADING_PUBANS_I on SAM_ITEMGRADING_T (PUBLISHEDANSWERID);
create index SAM_ITEMGRADING_ITEM_I on SAM_ITEMGRADING_T (PUBLISHEDITEMID);
create index SAM_ITEMGRADING_ITEMTEXT_I on SAM_ITEMGRADING_T (PUBLISHEDITEMTEXTID);
create index SAM_ASSESSMENTGRADING_I on SAM_ITEMGRADING_T (ASSESSMENTGRADINGID);
alter table SAM_ITEMGRADING_T add constraint FKB68E675667B430D5 foreign key (ASSESSMENTGRADINGID) references SAM_ASSESSMENTGRADING_T;
alter table SAM_ITEMMETADATA_T add constraint FK5B4737173288DBBD foreign key (ITEMID) references SAM_ITEM_T;
alter table SAM_ITEMTEXT_T add constraint FK271D63153288DBBD foreign key (ITEMID) references SAM_ITEM_T;
alter table SAM_ITEM_T add constraint FK3AAC5EA870CE2BD foreign key (SECTIONID) references SAM_SECTION_T;
create index SAM_MEDIA_ITEMGRADING_I on SAM_MEDIA_T (ITEMGRADINGID);
alter table SAM_MEDIA_T add constraint FKD4CF5A194D7EA7B3 foreign key (ITEMGRADINGID) references SAM_ITEMGRADING_T;
alter table SAM_PUBLISHEDACCESSCONTROL_T add constraint FK2EDF39E09482C945 foreign key (ASSESSMENTID) references SAM_PUBLISHEDASSESSMENT_T;
create index SAM_PUBANSWERFB_ANSWER_I on SAM_PUBLISHEDANSWERFEEDBACK_T (ANSWERID);
alter table SAM_PUBLISHEDANSWERFEEDBACK_T add constraint FK6CB765A624D77573 foreign key (ANSWERID) references SAM_PUBLISHEDANSWER_T;
create index SAM_PUBANSWER_ITEM_I on SAM_PUBLISHEDANSWER_T (ITEMID);
create index SAM_PUBANSWER_ITEMTEXT_I on SAM_PUBLISHEDANSWER_T (ITEMTEXTID);
alter table SAM_PUBLISHEDANSWER_T add constraint FKB41EA36131446627 foreign key (ITEMID) references SAM_PUBLISHEDITEM_T;
alter table SAM_PUBLISHEDANSWER_T add constraint FKB41EA36126460817 foreign key (ITEMTEXTID) references SAM_PUBLISHEDITEMTEXT_T;
create index SAM_PUBA_ASSESSMENT_I on SAM_PUBLISHEDASSESSMENT_T (ASSESSMENTID);
alter table SAM_PUBLISHEDEVALUATION_T add constraint FK94CB245F9482C945 foreign key (ASSESSMENTID) references SAM_PUBLISHEDASSESSMENT_T;
alter table SAM_PUBLISHEDFEEDBACK_T add constraint FK1488D9E89482C945 foreign key (ASSESSMENTID) references SAM_PUBLISHEDASSESSMENT_T;
create index SAM_PUBITEMFB_ITEM_I on SAM_PUBLISHEDITEMFEEDBACK_T (ITEMID);
alter table SAM_PUBLISHEDITEMFEEDBACK_T add constraint FKB7D03A3B31446627 foreign key (ITEMID) references SAM_PUBLISHEDITEM_T;
create index SAM_PUBITEMMETA_ITEM_I on SAM_PUBLISHEDITEMMETADATA_T (ITEMID);
alter table SAM_PUBLISHEDITEMMETADATA_T add constraint FKE0C2876531446627 foreign key (ITEMID) references SAM_PUBLISHEDITEM_T;
create index SAM_PUBITEMTEXT_ITEM_I on SAM_PUBLISHEDITEMTEXT_T (ITEMID);
alter table SAM_PUBLISHEDITEMTEXT_T add constraint FK9C790A6331446627 foreign key (ITEMID) references SAM_PUBLISHEDITEM_T;
create index SAM_PUBITEM_SECTION_I on SAM_PUBLISHEDITEM_T (SECTIONID);
alter table SAM_PUBLISHEDITEM_T add constraint FK53ABDCF6895D4813 foreign key (SECTIONID) references SAM_PUBLISHEDSECTION_T;
alter table SAM_PUBLISHEDMETADATA_T add constraint FK3D7B27129482C945 foreign key (ASSESSMENTID) references SAM_PUBLISHEDASSESSMENT_T;
create index SAM_PUBSECTIONMETA_SECTION_I on SAM_PUBLISHEDSECTIONMETADATA_T (SECTIONID);
alter table SAM_PUBLISHEDSECTIONMETADATA_T add constraint FKDF50FC3B895D4813 foreign key (SECTIONID) references SAM_PUBLISHEDSECTION_T;
create index SAM_PUBSECTION_ASSESSMENT_I on SAM_PUBLISHEDSECTION_T (ASSESSMENTID);
alter table SAM_PUBLISHEDSECTION_T add constraint FK424F87CC9482C945 foreign key (ASSESSMENTID) references SAM_PUBLISHEDASSESSMENT_T;
create index SAM_PUBIP_ASSESSMENT_I on SAM_PUBLISHEDSECUREDIP_T (ASSESSMENTID);
alter table SAM_PUBLISHEDSECUREDIP_T add constraint FK1EDEA25B9482C945 foreign key (ASSESSMENTID) references SAM_PUBLISHEDASSESSMENT_T;
alter table SAM_QUESTIONPOOLITEM_T add constraint FKF0FAAE2A39ED26BB foreign key (QUESTIONPOOLID) references SAM_QUESTIONPOOL_T;
alter table SAM_SECTIONMETADATA_T add constraint FK762AD74970CE2BD foreign key (SECTIONID) references SAM_SECTION_T;
alter table SAM_SECTION_T add constraint FK364450DACAC2365B foreign key (ASSESSMENTID) references SAM_ASSESSMENTBASE_T;
alter table SAM_SECTION_T add constraint FK364450DA694216CC foreign key (ASSESSMENTID) references SAM_ASSESSMENTBASE_T;
alter table SAM_SECUREDIP_T add constraint FKE8C55FE9694216CC foreign key (ASSESSMENTID) references SAM_ASSESSMENTBASE_T;
|
-- Add two new datatypes (supported by templating already).
--
insert into acs_datatypes
(datatype, max_n_values)
values
('url', null);
insert into acs_datatypes
(datatype, max_n_values)
values
('email', null);
-- This giant package body is here since we are adding
-- two lines to acs_object.delete() to delete direct permissions
-- granted on the object which we are deleting
--
create or replace package body acs_object
as
procedure initialize_attributes (
object_id in acs_objects.object_id%TYPE
)
is
v_object_type acs_objects.object_type%TYPE;
begin
-- XXX This should be fixed to initialize supertypes properly.
-- Initialize dynamic attributes
insert into acs_attribute_values
(object_id, attribute_id, attr_value)
select
initialize_attributes.object_id, a.attribute_id, a.default_value
from acs_attributes a, acs_objects o
where a.object_type = o.object_type
and o.object_id = initialize_attributes.object_id
and a.storage = 'generic'
and a.static_p = 'f';
-- Retrieve type for static attributes
select object_type into v_object_type from acs_objects
where object_id = initialize_attributes.object_id;
-- Initialize static attributes
begin
insert into acs_static_attr_values
(object_type, attribute_id, attr_value)
select
v_object_type, a.attribute_id, a.default_value
from acs_attributes a, acs_objects o
where a.object_type = o.object_type
and o.object_id = initialize_attributes.object_id
and a.storage = 'generic'
and a.static_p = 't'
and not exists (select 1 from acs_static_attr_values
where object_type = a.object_type);
exception when no_data_found then null;
end;
end initialize_attributes;
function new (
object_id in acs_objects.object_id%TYPE default null,
object_type in acs_objects.object_type%TYPE
default 'acs_object',
creation_date in acs_objects.creation_date%TYPE
default sysdate,
creation_user in acs_objects.creation_user%TYPE
default null,
creation_ip in acs_objects.creation_ip%TYPE default null,
context_id in acs_objects.context_id%TYPE default null
)
return acs_objects.object_id%TYPE
is
v_object_id acs_objects.object_id%TYPE;
begin
if object_id is null then
select acs_object_id_seq.nextval
into v_object_id
from dual;
else
v_object_id := object_id;
end if;
insert into acs_objects
(object_id, object_type, context_id,
creation_date, creation_user, creation_ip)
values
(v_object_id, object_type, context_id,
creation_date, creation_user, creation_ip);
acs_object.initialize_attributes(v_object_id);
return v_object_id;
end new;
procedure delete (
object_id in acs_objects.object_id%TYPE
)
is
v_exists_p char;
begin
-- Delete dynamic/generic attributes
delete from acs_attribute_values where object_id = acs_object.delete.object_id;
-- Delete directly assigned permissions
--
-- JCD: We do this as an execute rather than just a direct query since
-- the acs_permissions table is not created when this file is
-- sourced. We need to clean up the creates and once that is done
-- we can turn this into a simple delete statement.
--
execute immediate 'delete from acs_permissions where object_id = :object_id'
using in object_id;
for object_type
in (select table_name, id_column
from acs_object_types
start with object_type = (select object_type
from acs_objects o
where o.object_id = acs_object.delete.object_id)
connect by object_type = prior supertype)
loop
-- Delete from the table if it exists.
select decode(count(*),0,'f','t') into v_exists_p
from user_tables
where table_name = upper(object_type.table_name);
if v_exists_p = 't' then
execute immediate 'delete from ' || object_type.table_name ||
' where ' || object_type.id_column || ' = :object_id'
using in object_id;
end if;
end loop;
end delete;
function name (
object_id in acs_objects.object_id%TYPE
)
return varchar2
is
object_name varchar2(500);
v_object_id integer := object_id;
begin
-- Find the name function for this object, which is stored in the
-- name_method column of acs_object_types. Starting with this
-- object's actual type, traverse the type hierarchy upwards until
-- a non-null name_method value is found.
--
for object_type
in (select name_method
from acs_object_types
start with object_type = (select object_type
from acs_objects o
where o.object_id = name.object_id)
connect by object_type = prior supertype)
loop
if object_type.name_method is not null then
-- Execute the first name_method we find (since we're traversing
-- up the type hierarchy from the object's exact type) using
-- Native Dynamic SQL, to ascertain the name of this object.
--
--execute immediate 'select ' || object_type.name_method || '(:1) from dual'
execute immediate 'begin :1 := ' || object_type.name_method || '(:2); end;'
using out object_name, in object_id;
--into object_name
exit;
end if;
end loop;
return object_name;
end name;
function default_name (
object_id in acs_objects.object_id%TYPE
) return varchar2
is
object_type_pretty_name acs_object_types.pretty_name%TYPE;
begin
select ot.pretty_name
into object_type_pretty_name
from acs_objects o, acs_object_types ot
where o.object_id = default_name.object_id
and o.object_type = ot.object_type;
return object_type_pretty_name || ' ' || object_id;
end default_name;
procedure get_attribute_storage (
object_id_in in acs_objects.object_id%TYPE,
attribute_name_in in acs_attributes.attribute_name%TYPE,
v_column out varchar2,
v_table_name out varchar2,
v_key_sql out varchar2
)
is
v_object_type acs_attributes.object_type%TYPE;
v_static acs_attributes.static_p%TYPE := null;
v_attr_id acs_attributes.attribute_id%TYPE := null;
v_storage acs_attributes.storage%TYPE := null;
v_attr_name acs_attributes.attribute_name%TYPE := null;
v_id_column varchar2(200) := null;
v_sql varchar2(4000) := null;
v_return varchar2(4000) := null;
-- Fetch the most inherited attribute
cursor c_attribute is
select
a.attribute_id, a.static_p, a.storage, a.table_name, a.attribute_name,
a.object_type, a.column_name, t.id_column
from
acs_attributes a,
(select
object_type, id_column
from
acs_object_types
connect by
object_type = prior supertype
start with
object_type = (select object_type from acs_objects
where object_id = object_id_in)
) t
where
a.attribute_name = attribute_name_in
and
a.object_type = t.object_type;
begin
-- Determine the attribute parameters
open c_attribute;
fetch c_attribute into
v_attr_id, v_static, v_storage, v_table_name, v_attr_name,
v_object_type, v_column, v_id_column;
if c_attribute%NOTFOUND then
close c_attribute;
raise_application_error (-20000,
'No such attribute ' || v_object_type || '::' || attribute_name_in ||
' in acs_object.get_attribute_storage.');
end if;
close c_attribute;
-- This should really be done in a trigger on acs_attributes,
-- instead of generating it each time in this function
-- If there is no specific table name for this attribute,
-- figure it out based on the object type
if v_table_name is null then
-- Determine the appropriate table name
if v_storage = 'generic' then
-- Generic attribute: table name/column are hardcoded
v_column := 'attr_value';
if v_static = 'f' then
v_table_name := 'acs_attribute_values';
v_key_sql := '(object_id = ' || object_id_in || ' and ' ||
'attribute_id = ' || v_attr_id || ')';
else
v_table_name := 'acs_static_attr_values';
v_key_sql := '(object_type = ''' || v_object_type || ''' and ' ||
'attribute_id = ' || v_attr_id || ')';
end if;
else
-- Specific attribute: table name/column need to be retrieved
if v_static = 'f' then
select
table_name, id_column
into
v_table_name, v_id_column
from
acs_object_types
where
object_type = v_object_type;
else
raise_application_error(-20000,
'No table name specified for storage specific static attribute ' ||
v_object_type || '::' || attribute_name_in ||
' in acs_object.get_attribute_storage.');
end if;
end if;
else
-- There is a custom table name for this attribute.
-- Get the id column out of the acs_object_tables
-- Raise an error if not found
select id_column into v_id_column from acs_object_type_tables
where object_type = v_object_type
and table_name = v_table_name;
end if;
if v_column is null then
if v_storage = 'generic' then
v_column := 'attr_value';
else
v_column := v_attr_name;
end if;
end if;
if v_key_sql is null then
if v_static = 'f' then
v_key_sql := v_id_column || ' = ' || object_id_in ;
else
v_key_sql := v_id_column || ' = ''' || v_object_type || '''';
end if;
end if;
exception when no_data_found then
if c_attribute%ISOPEN then
close c_attribute;
end if;
raise_application_error(-20000, 'No data found for attribute ' ||
v_object_type || '::' || attribute_name_in ||
' in acs_object.get_attribute_storage');
end get_attribute_storage;
-- Get/set the value of an object attribute, as long as
-- the type can be cast to varchar2
function get_attribute (
object_id_in in acs_objects.object_id%TYPE,
attribute_name_in in acs_attributes.attribute_name%TYPE
) return varchar2
is
v_table_name varchar2(200);
v_column varchar2(200);
v_key_sql varchar2(4000);
v_return varchar2(4000);
begin
get_attribute_storage(object_id_in, attribute_name_in,
v_column, v_table_name, v_key_sql);
begin
execute immediate 'select '
|| v_column || ' from ' || v_table_name || ' where ' || v_key_sql
into
v_return;
exception when no_data_found then
return null;
end;
return v_return;
end get_attribute;
procedure set_attribute (
object_id_in in acs_objects.object_id%TYPE,
attribute_name_in in acs_attributes.attribute_name%TYPE,
value_in in varchar2
)
is
v_table_name varchar2(200);
v_column varchar2(200);
v_key_sql varchar2(4000);
v_return varchar2(4000);
v_dummy integer;
begin
get_attribute_storage(object_id_in, attribute_name_in,
v_column, v_table_name, v_key_sql);
execute immediate 'update '
|| v_table_name || ' set ' || v_column || ' = :value where ' || v_key_sql
using value_in;
end set_attribute;
function check_context_index (
object_id in acs_objects.object_id%TYPE,
ancestor_id in acs_objects.object_id%TYPE,
n_generations in integer
) return char
is
n_rows integer;
n_gens integer;
begin
-- Verify that this row exists in the index.
select decode(count(*),0,0,1) into n_rows
from acs_object_context_index
where object_id = check_context_index.object_id
and ancestor_id = check_context_index.ancestor_id;
if n_rows = 1 then
-- Verify that the count is correct.
select n_generations into n_gens
from acs_object_context_index
where object_id = check_context_index.object_id
and ancestor_id = check_context_index.ancestor_id;
if n_gens != n_generations then
acs_log.error('acs_object.check_representation', 'Ancestor ' ||
ancestor_id || ' of object ' || object_id ||
' reports being generation ' || n_gens ||
' when it is actually generation ' || n_generations ||
'.');
return 'f';
else
return 't';
end if;
else
acs_log.error('acs_object.check_representation', 'Ancestor ' ||
ancestor_id || ' of object ' || object_id ||
' is missing an entry in acs_object_context_index.');
return 'f';
end if;
end;
function check_object_ancestors (
object_id in acs_objects.object_id%TYPE,
ancestor_id in acs_objects.object_id%TYPE,
n_generations in integer
) return char
is
context_id acs_objects.context_id%TYPE;
security_inherit_p acs_objects.security_inherit_p%TYPE;
n_rows integer;
n_gens integer;
result char(1);
begin
-- OBJECT_ID is the object we are verifying
-- ANCESTOR_ID is the current ancestor we are tracking
-- N_GENERATIONS is how far ancestor_id is from object_id
-- Note that this function is only supposed to verify that the
-- index contains each ancestor for OBJECT_ID. It doesn''t
-- guarantee that there aren''t extraneous rows or that
-- OBJECT_ID''s children are contained in the index. That is
-- verified by separate functions.
result := 't';
-- Grab the context and security_inherit_p flag of the current
-- ancestor''s parent.
select context_id, security_inherit_p into context_id, security_inherit_p
from acs_objects
where object_id = check_object_ancestors.ancestor_id;
if ancestor_id = 0 then
if context_id is null then
result := 't';
else
-- This can be a constraint, can''t it?
acs_log.error('acs_object.check_representation',
'Object 0 doesn''t have a null context_id');
result := 'f';
end if;
else
if context_id is null or security_inherit_p = 'f' then
context_id := 0;
end if;
if check_context_index(object_id, ancestor_id, n_generations) = 'f' then
result := 'f';
end if;
if check_object_ancestors(object_id, context_id,
n_generations + 1) = 'f' then
result := 'f';
end if;
end if;
return result;
end;
function check_object_descendants (
object_id in acs_objects.object_id%TYPE,
descendant_id in acs_objects.object_id%TYPE,
n_generations in integer
) return char
is
result char(1);
begin
-- OBJECT_ID is the object we are verifying.
-- DESCENDANT_ID is the current descendant we are tracking.
-- N_GENERATIONS is how far the current DESCENDANT_ID is from
-- OBJECT_ID.
-- This function will verfy that each actually descendant of
-- OBJECT_ID has a row in the index table. It does not check that
-- there aren't extraneous rows or that the ancestors of OBJECT_ID
-- are maintained correctly.
result := 't';
-- First verify that OBJECT_ID and DESCENDANT_ID are actually in
-- the index.
if check_context_index(descendant_id, object_id, n_generations) = 'f' then
result := 'f';
end if;
-- For every child that reports inheriting from OBJECT_ID we need to call
-- ourselves recursively.
for obj in (select *
from acs_objects
where context_id = descendant_id
and security_inherit_p = 't') loop
if check_object_descendants(object_id, obj.object_id,
n_generations + 1) = 'f' then
result := 'f';
end if;
end loop;
return result;
end;
function check_path (
object_id in acs_objects.object_id%TYPE,
ancestor_id in acs_objects.object_id%TYPE
) return char
is
context_id acs_objects.context_id%TYPE;
security_inherit_p acs_objects.security_inherit_p%TYPE;
begin
if object_id = ancestor_id then
return 't';
end if;
select context_id, security_inherit_p into context_id, security_inherit_p
from acs_objects
where object_id = check_path.object_id;
if context_id is null or security_inherit_p = 'f' then
context_id := 0;
end if;
return check_path(context_id, ancestor_id);
end;
function check_representation (
object_id in acs_objects.object_id%TYPE
) return char
is
result char(1);
object_type acs_objects.object_type%TYPE;
n_rows integer;
begin
result := 't';
acs_log.notice('acs_object.check_representation',
'Running acs_object.check_representation on object_id = ' ||
object_id || '.');
-- If this fails then there isn''t even an object associated with
-- this id. I'm going to let that error propagate as an exception.
select object_type into object_type
from acs_objects
where object_id = check_representation.object_id;
acs_log.notice('acs_object.check_representation',
'OBJECT STORAGE INTEGRITY TEST');
-- Let's look through every primary storage table associated with
-- this object type and all of its supertypes and make sure there
-- is a row with OBJECT_ID as theh primary key.
for t in (select t.object_type, t.table_name, t.id_column
from acs_object_type_supertype_map m, acs_object_types t
where m.ancestor_type = t.object_type
and m.object_type = check_representation.object_type
union
select object_type, table_name, id_column
from acs_object_types
where object_type = check_representation.object_type) loop
execute immediate 'select decode(count(*),0,0,1) from ' || t.table_name ||
' where ' || t.id_column || ' = ' || object_id
into n_rows;
if n_rows = 0 then
result := 'f';
acs_log.error('acs_object.check_representation',
'Table ' || t.table_name || ' (primary storage for ' ||
t.object_type || ') doesn''t have a row for object ' ||
object_id || ' of type ' || object_type || '.');
end if;
end loop;
acs_log.notice('acs_object.check_representation',
'OBJECT CONTEXT INTEGRITY TEST');
-- Do a bunch of dirt simple sanity checks.
-- First let's check that all of our ancestors appear in
-- acs_object_context_index with the correct generation listed.
if check_object_ancestors(object_id, object_id, 0) = 'f' then
result := 'f';
end if;
-- Now let's check that all of our descendants appear in
-- acs_object_context_index with the correct generation listed.
if check_object_descendants(object_id, object_id, 0) = 'f' then
result := 'f';
end if;
-- Ok, we know that the index contains every entry that it is
-- supposed to have. Now let's make sure it doesn't contain any
-- extraneous entries.
for row in (select *
from acs_object_context_index
where object_id = check_representation.object_id
or ancestor_id = check_representation.object_id) loop
if check_path(row.object_id, row.ancestor_id) = 'f' then
acs_log.error('acs_object.check_representation',
'acs_object_context_index contains an extraneous row: ' ||
'object_id = ' || row.object_id || ', ancestor_id = ' ||
row.ancestor_id || ', n_generations = ' ||
row.n_generations || '.');
result := 'f';
end if;
end loop;
acs_log.notice('acs_object.check_representation',
'Done running acs_object.check_representation ' ||
'on object_id = ' || object_id || '.');
return result;
end check_representation;
procedure update_last_modified (
object_id in acs_objects.object_id%TYPE,
last_modified in acs_objects.last_modified%TYPE default sysdate
)
is
v_parent_id acs_objects.context_id%TYPE;
begin
update acs_objects
set acs_objects.last_modified = acs_object.update_last_modified.last_modified
where acs_objects.object_id in (select ao.object_id
from acs_objects ao
connect by prior ao.context_id = ao.object_id
start with ao.object_id = acs_object.update_last_modified.object_id)
and acs_objects.context_id is not null
and acs_objects.object_id != 0;
end update_last_modified;
end acs_object;
/
show errors
-- DRB: Change security context to object -4
drop trigger acs_objects_context_id_in_tr;
drop trigger acs_objects_context_id_up_tr;
delete from acs_magic_objects
where name = 'security_context_root';
declare
foo acs_objects.object_id%TYPE;
begin
foo := acs_object.new (
object_id => -4,
object_type => 'acs_object'
);
end;
/
show errors;
insert into acs_magic_objects
(name, object_id)
values
('security_context_root', -4);
update acs_object_context_index
set ancestor_id = -4
where ancestor_id = 0;
update acs_object_context_index
set object_id = -4
where object_id = 0;
update acs_permissions
set object_id = -4
where object_id = 0;
update acs_objects
set context_id = -4
where context_id = 0;
-- Content Repository sets parent_id to security_context_root
-- for content modules
update cr_items
set parent_id = -4
where parent_id = 0;
begin
acs_object.delete(0);
end;
/
show errors;
create or replace trigger acs_objects_context_id_in_tr
after insert on acs_objects
for each row
declare
security_context_root acs_magic_objects.object_id%TYPE;
begin
insert into acs_object_context_index
(object_id, ancestor_id, n_generations)
values
(:new.object_id, :new.object_id, 0);
if :new.context_id is not null and :new.security_inherit_p = 't' then
insert into acs_object_context_index
(object_id, ancestor_id,
n_generations)
select
:new.object_id as object_id, ancestor_id,
n_generations + 1 as n_generations
from acs_object_context_index
where object_id = :new.context_id;
else
select object_id into security_context_root
from acs_magic_objects
where name = 'security_context_root';
if :new.object_id != security_context_root then
insert into acs_object_context_index
(object_id, ancestor_id, n_generations)
values
(:new.object_id, security_context_root, 1);
end if;
end if;
end;
/
show errors
create or replace trigger acs_objects_context_id_up_tr
after update on acs_objects
for each row
declare
security_context_root acs_magic_objects.object_id%TYPE;
begin
if :new.object_id = :old.object_id and
:new.context_id = :old.context_id and
:new.security_inherit_p = :old.security_inherit_p then
return;
end if;
-- Remove my old ancestors from my descendants.
delete from acs_object_context_index
where object_id in (select object_id
from acs_object_contexts
where ancestor_id = :old.object_id)
and ancestor_id in (select ancestor_id
from acs_object_contexts
where object_id = :old.object_id);
-- Kill all my old ancestors.
delete from acs_object_context_index
where object_id = :old.object_id;
insert into acs_object_context_index
(object_id, ancestor_id, n_generations)
values
(:new.object_id, :new.object_id, 0);
if :new.context_id is not null and :new.security_inherit_p = 't' then
-- Now insert my new ancestors for my descendants.
for pair in (select *
from acs_object_context_index
where ancestor_id = :new.object_id) loop
insert into acs_object_context_index
(object_id, ancestor_id, n_generations)
select
pair.object_id, ancestor_id,
n_generations + pair.n_generations + 1 as n_generations
from acs_object_context_index
where object_id = :new.context_id;
end loop;
else
select object_id into security_context_root
from acs_magic_objects
where name = 'security_context_root';
if :new.object_id != 0 then
-- We need to make sure that :NEW.OBJECT_ID and all of its
-- children have security_context_root as an ancestor.
for pair in (select *
from acs_object_context_index
where ancestor_id = :new.object_id)
loop
insert into acs_object_context_index
(object_id, ancestor_id, n_generations)
values
(pair.object_id, security_context_root, pair.n_generations + 1);
end loop;
end if;
end if;
end;
/
show errors
----------------------------------------------------------------------------
-- DRB: We now will turn the magic -1 party into a group that contains
-- all registered users and a new unregistered visitor. This will allow
-- us to do all permission checking on a materialized version of the
-- party_member_map.
-- Make our new "Unregistered Visitor" be object 0, which corresponds
-- with the user_id assigned throughout the toolkit Tcl code
insert into acs_objects
(object_id, object_type)
values
(0, 'person');
insert into parties
(party_id)
values
(0);
insert into persons
(person_id, first_names, last_name)
values
(0, 'Unregistered', 'Visitor');
insert into acs_magic_objects
(name, object_id)
values
('unregistered_visitor', 0);
-- Now transform the old special -1 party into a legitimate group with
-- one user, our Unregistered Visitor
update acs_objects
set object_type = 'group'
where object_id = -1;
insert into groups
(group_id, group_name, join_policy)
values
(-1, 'The Public', 'closed');
declare
foo acs_objects.object_id%TYPE;
begin
-- Add our only user, the Unregistered Visitor
foo := membership_rel.new (
rel_type => 'membership_rel',
object_id_one => acs.magic_object_id('the_public'),
object_id_two => acs.magic_object_id('unregistered_visitor'),
member_state => 'approved'
);
-- Now declare "The Public" to be composed of itself and the "Registered
-- Users" group
foo := composition_rel.new (
rel_type => 'composition_rel',
object_id_one => acs.magic_object_id('the_public'),
object_id_two => acs.magic_object_id('registered_users')
);
end;
/
show errors;
-------------------------------------------------------------------------------
-- DRB: Replace the old party_emmber_map and party_approved_member_map views
-- (they were both the same and very slow) with a table containing the same
-- information. This can be used to greatly speed permissions checking.
drop view party_member_map;
drop view party_approved_member_map;
-- The count column is needed because composition_rels lead to a lot of
-- redundant data in the group element map (i.e. you can belong to the
-- registered users group an infinite number of times, strange concept)
-- (it is "cnt" rather than "count" because Oracle confuses it with the
-- "count()" aggregate in some contexts)
-- Though for permission checking we only really need to map parties to
-- member users, the old view included identity entries for all parties
-- in the system. It doesn't cost all that much to maintain the extra
-- rows so we will, just in case some overly clever programmer out there
-- depends on it.
create table party_approved_member_map (
party_id integer
constraint party_member_party_fk
references parties,
member_id integer
constraint party_member_member_fk
references parties,
cnt integer,
constraint party_approved_member_map_pk
primary key (party_id, member_id)
);
-- Need this to speed referential integrity
create index party_member_member_idx on party_approved_member_map(member_id);
-- Every person is a member of itself
insert into party_approved_member_map
(party_id, member_id, cnt)
select party_id, party_id, 1
from parties;
-- Every party is a member if it is an approved member of
-- some sort of membership_rel
insert into party_approved_member_map
(party_id, member_id, cnt)
select group_id, member_id, count(*)
from group_approved_member_map
group by group_id, member_id;
-- Every party is a member if it is an approved member of
-- some sort of relation segment
insert into party_approved_member_map
(party_id, member_id, cnt)
select segment_id, member_id, count(*)
from rel_seg_approved_member_map
group by segment_id, member_id;
-- Triggers to maintain party_approved_member_map when parties are create or replaced or
-- destroyed.
create or replace trigger parties_in_tr after insert on parties
for each row
begin
insert into party_approved_member_map
(party_id, member_id, cnt)
values
(:new.party_id, :new.party_id, 1);
end parties_in_tr;
/
show errors;
create or replace trigger parties_del_tr before delete on parties
for each row
begin
delete from party_approved_member_map
where party_id = :old.party_id
and member_id = :old.party_id;
end parties_del_tr;
/
show errors;
-- Triggers to maintain party_approved_member_map when relational segments are
-- create or replaced or destroyed. We only remove the (segment_id, member_id) rows as
-- removing the relational segment itself does not remove members from the
-- group with that rel_type. This was intentional on the part of the aD folks
-- who added relational segments to ACS 4.2.
create or replace trigger rel_segments_in_tr after insert on rel_segments
for each row
begin
insert into party_approved_member_map
(party_id, member_id, cnt)
select :new.segment_id, element_id, 1
from group_element_index
where group_id = :new.group_id
and rel_type = :new.rel_type;
end rel_segments_in_tr;
/
show errors;
create or replace trigger rel_segments_del_tr before delete on rel_segments
for each row
begin
delete from party_approved_member_map
where party_id = :old.segment_id
and member_id in (select element_id
from group_element_index
where group_id = :old.group_id
and rel_type = :old.rel_type);
end parties_del_tr;
/
show errors;
-- DRB: Helper functions to maintain the materialized party_approved_member_map. The counting crap
-- has to do with the fact that composition rels create duplicate rows in groups.
create or replace package party_approved_member is
procedure add_one(
p_party_id in parties.party_id%TYPE,
p_member_id in parties.party_id%TYPE
);
procedure add(
p_party_id in parties.party_id%TYPE,
p_member_id in parties.party_id%TYPE,
p_rel_type in acs_rels.rel_type%TYPE
);
procedure remove_one (
p_party_id in parties.party_id%TYPE,
p_member_id in parties.party_id%TYPE
);
procedure remove (
p_party_id in parties.party_id%TYPE,
p_member_id in parties.party_id%TYPE,
p_rel_type in acs_rels.rel_type%TYPE
);
end party_approved_member;
/
show errors;
create or replace package body party_approved_member is
procedure add_one(
p_party_id in parties.party_id%TYPE,
p_member_id in parties.party_id%TYPE
)
is
begin
insert into party_approved_member_map
(party_id, member_id, cnt)
values
(p_party_id, p_member_id, 1);
exception when dup_val_on_index then
update party_approved_member_map
set cnt = cnt + 1
where party_id = p_party_id
and member_id = p_member_id;
end add_one;
procedure add(
p_party_id in parties.party_id%TYPE,
p_member_id in parties.party_id%TYPE,
p_rel_type in acs_rels.rel_type%TYPE
)
is
begin
add_one(p_party_id, p_member_id);
-- if the relation type is mapped to a relational segment map that too
for v_segments in (select segment_id
from rel_segments
where group_id = p_party_id
and rel_type in (select object_type
from acs_object_types
start with object_type = p_rel_type
connect by prior supertype = object_type))
loop
add_one(v_segments.segment_id, p_member_id);
end loop;
end add;
procedure remove_one (
p_party_id in parties.party_id%TYPE,
p_member_id in parties.party_id%TYPE
)
is
begin
update party_approved_member_map
set cnt = cnt - 1
where party_id = p_party_id
and member_id = p_member_id;
delete from party_approved_member_map
where party_id = p_party_id
and member_id = p_member_id
and cnt = 0;
end remove_one;
procedure remove (
p_party_id in parties.party_id%TYPE,
p_member_id in parties.party_id%TYPE,
p_rel_type in acs_rels.rel_type%TYPE
)
is
begin
remove_one(p_party_id, p_member_id);
-- if the relation type is mapped to a relational segment unmap that too
for v_segments in (select segment_id
from rel_segments
where group_id = p_party_id
and rel_type in (select object_type
from acs_object_types
start with object_type = p_rel_type
connect by prior supertype = object_type))
loop
remove_one(v_segments.segment_id, p_member_id);
end loop;
end remove;
end party_approved_member;
/
show errors;
create or replace trigger membership_rels_up_tr
before update on membership_rels
for each row
begin
if :new.member_state = :old.member_state then
return;
end if;
for map in (select group_id, element_id, rel_type
from group_element_index
where rel_id = :new.rel_id)
loop
if :new.member_state = 'approved' then
party_approved_member.add(map.group_id, map.element_id, map.rel_type);
else
party_approved_member.remove(map.group_id, map.element_id, map.rel_type);
end if;
end loop;
end;
/
show errors
create or replace trigger membership_rels_in_tr
after insert on membership_rels
for each row
declare
v_object_id_one acs_rels.object_id_one%TYPE;
v_object_id_two acs_rels.object_id_two%TYPE;
v_rel_type acs_rels.rel_type%TYPE;
v_error varchar2(4000);
begin
-- First check if added this relation violated any relational constraints
v_error := rel_constraint.violation(:new.rel_id);
if v_error is not null then
raise_application_error(-20000,v_error);
end if;
select object_id_one, object_id_two, rel_type
into v_object_id_one, v_object_id_two, v_rel_type
from acs_rels
where rel_id = :new.rel_id;
-- Insert a row for me in the group_member_index.
insert into group_element_index
(group_id, element_id, rel_id, container_id,
rel_type, ancestor_rel_type)
values
(v_object_id_one, v_object_id_two, :new.rel_id, v_object_id_one,
v_rel_type, 'membership_rel');
if :new.member_state = 'approved' then
party_approved_member.add(v_object_id_one, v_object_id_two, v_rel_type);
end if;
-- For all groups of which I am a component, insert a
-- row in the group_member_index.
for map in (select distinct group_id
from group_component_map
where component_id = v_object_id_one) loop
insert into group_element_index
(group_id, element_id, rel_id, container_id,
rel_type, ancestor_rel_type)
values
(map.group_id, v_object_id_two, :new.rel_id, v_object_id_one,
v_rel_type, 'membership_rel');
if :new.member_state = 'approved' then
party_approved_member.add(map.group_id, v_object_id_two, v_rel_type);
end if;
end loop;
end;
/
show errors
create or replace trigger membership_rels_del_tr
before delete on membership_rels
for each row
declare
v_error varchar2(4000);
begin
-- First check if removing this relation would violate any relational constraints
v_error := rel_constraint.violation_if_removed(:old.rel_id);
if v_error is not null then
raise_application_error(-20000,v_error);
end if;
for map in (select group_id, element_id, rel_type
from group_element_index
where rel_id = :old.rel_id)
loop
party_approved_member.remove(map.group_id, map.element_id, map.rel_type);
end loop;
delete from group_element_index
where rel_id = :old.rel_id;
end;
/
show errors;
-- New fast version of acs_object_party_privilege_map
create or replace view acs_object_party_privilege_map as
select c.object_id, pdm.descendant as privilege, pamm.member_id as party_id
from acs_object_context_index c, acs_permissions p, acs_privilege_descendant_map pdm,
party_approved_member_map pamm
where c.ancestor_id = p.object_id
and pdm.privilege = p.privilege
and pamm.party_id = p.grantee_id;
-- Kept to avoid breaking existing code, should eventually go away.
create or replace view all_object_party_privilege_map as
select * from acs_object_party_privilege_map;
create or replace package body acs_permission
as
procedure grant_permission (
object_id acs_permissions.object_id%TYPE,
grantee_id acs_permissions.grantee_id%TYPE,
privilege acs_permissions.privilege%TYPE
)
as
begin
insert into acs_permissions
(object_id, grantee_id, privilege)
values
(object_id, grantee_id, privilege);
exception
when dup_val_on_index then
return;
end grant_permission;
--
procedure revoke_permission (
object_id acs_permissions.object_id%TYPE,
grantee_id acs_permissions.grantee_id%TYPE,
privilege acs_permissions.privilege%TYPE
)
as
begin
delete from acs_permissions
where object_id = revoke_permission.object_id
and grantee_id = revoke_permission.grantee_id
and privilege = revoke_permission.privilege;
end revoke_permission;
function permission_p (
object_id acs_objects.object_id%TYPE,
party_id parties.party_id%TYPE,
privilege acs_privileges.privilege%TYPE
) return char
as
exists_p char(1);
begin
select decode(count(*),0,'f','t') into exists_p
from dual where exists
(select 1
from acs_permissions p, party_approved_member_map m,
acs_object_context_index c, acs_privilege_descendant_map h
where p.object_id = c.ancestor_id
and h.descendant = permission_p.privilege
and c.object_id = permission_p.object_id
and m.member_id = permission_p.party_id
and p.privilege = h.privilege
and p.grantee_id = m.party_id);
return exists_p;
end permission_p;
end acs_permission;
/
show errors
create or replace package body acs_group
is
function new (
group_id in groups.group_id%TYPE default null,
object_type in acs_objects.object_type%TYPE
default 'group',
creation_date in acs_objects.creation_date%TYPE
default sysdate,
creation_user in acs_objects.creation_user%TYPE
default null,
creation_ip in acs_objects.creation_ip%TYPE default null,
email in parties.email%TYPE default null,
url in parties.url%TYPE default null,
group_name in groups.group_name%TYPE,
join_policy in groups.join_policy%TYPE default null,
context_id in acs_objects.context_id%TYPE default null
)
return groups.group_id%TYPE
is
v_group_id groups.group_id%TYPE;
v_group_type_exists_p integer;
v_join_policy groups.join_policy%TYPE;
begin
v_group_id :=
party.new(group_id, object_type, creation_date, creation_user,
creation_ip, email, url, context_id);
v_join_policy := join_policy;
-- if join policy wasn't specified, select the default based on group type
if v_join_policy is null then
select count(*) into v_group_type_exists_p
from group_types
where group_type = object_type;
if v_group_type_exists_p = 1 then
select default_join_policy into v_join_policy
from group_types
where group_type = object_type;
else
v_join_policy := 'open';
end if;
end if;
insert into groups
(group_id, group_name, join_policy)
values
(v_group_id, group_name, v_join_policy);
-- setup the permissible relationship types for this group
insert into group_rels
(group_rel_id, group_id, rel_type)
select acs_object_id_seq.nextval, v_group_id, g.rel_type
from group_type_rels g
where g.group_type = new.object_type;
return v_group_id;
end new;
procedure delete (
group_id in groups.group_id%TYPE
)
is
begin
-- Delete all segments defined for this group
for row in (select segment_id
from rel_segments
where group_id = acs_group.delete.group_id) loop
rel_segment.delete(row.segment_id);
end loop;
-- Delete all the relations of any type to this group
for row in (select r.rel_id, t.package_name
from acs_rels r, acs_object_types t
where r.rel_type = t.object_type
and (r.object_id_one = acs_group.delete.group_id
or r.object_id_two = acs_group.delete.group_id)) loop
execute immediate 'begin ' || row.package_name || '.delete(' || row.rel_id || '); end;';
end loop;
party.delete(group_id);
end delete;
function name (
group_id in groups.group_id%TYPE
)
return varchar2
is
group_name varchar2(200);
begin
select group_name
into group_name
from groups
where group_id = name.group_id;
return group_name;
end name;
function member_p (
party_id in parties.party_id%TYPE,
group_id in groups.group_id%TYPE,
cascade_membership char
)
return char
is
m_result integer;
begin
if cascade_membership = 't' then
select count(*)
into m_result
from group_member_map
where group_id = member_p.group_id and
member_id = member_p.party_id;
if m_result > 0 then
return 't';
end if;
else
select count(*)
into m_result
from acs_rels rels, all_object_party_privilege_map perm
where perm.object_id = rels.rel_id
and perm.privilege = 'read'
and rels.rel_type = 'membership_rel'
and rels.object_id_one = member_p.group_id
and rels.object_id_two = member_p.party_id;
if m_result > 0 then
return 't';
end if;
end if;
return 'f';
end member_p;
function check_representation (
group_id in groups.group_id%TYPE
) return char
is
result char(1);
begin
result := 't';
acs_log.notice('acs_group.check_representation',
'Running check_representation on group ' || group_id);
if acs_object.check_representation(group_id) = 'f' then
result := 'f';
end if;
for c in (select c.rel_id
from acs_rels r, composition_rels c
where r.rel_id = c.rel_id
and r.object_id_one = group_id) loop
if composition_rel.check_representation(c.rel_id) = 'f' then
result := 'f';
end if;
end loop;
for m in (select m.rel_id
from acs_rels r, membership_rels m
where r.rel_id = m.rel_id
and r.object_id_one = group_id) loop
if membership_rel.check_representation(m.rel_id) = 'f' then
result := 'f';
end if;
end loop;
acs_log.notice('acs_group.check_representation',
'Done running check_representation on group ' || group_id);
return result;
end;
end acs_group;
/
show errors
|
<filename>sql/1.3.0-to-1.4.0.sql<gh_stars>0
ALTER TABLE `candidature` ADD `path_idcard_verso` VARCHAR(255) NOT NULL AFTER `path_idcard`;
|
<filename>integration_tests/models/cross_db_utils/test_split_part.sql<gh_stars>0
with data as (
select * from {{ ref('data_split_part') }}
)
select
{{ dbt_utils_justos.split_part('parts', 'split_on', 1) }} as actual,
result_1 as expected
from data
union all
select
{{ dbt_utils_justos.split_part('parts', 'split_on', 2) }} as actual,
result_2 as expected
from data
union all
select
{{ dbt_utils_justos.split_part('parts', 'split_on', 3) }} as actual,
result_3 as expected
from data
|
with stg_event as (
select *
from {{ ref('stg_mixpanel_event') }}
),
pivot_properties as (
select *,
{{ pivot_event_properties_json(var('event_properties_to_pivot', [])) }}
from stg_event
)
select * from pivot_properties |
# --- !Ups
create table "products" (
"id" bigint generated by default as identity(start with 1) not null primary key,
"name" varchar not null,
"price" int not null
);
create table "carts"(
"cartId" varchar not null,
"productName" varchar not null
);
insert into "products" values(2, 'Dove', 21.5);
insert into "products" values(3, 'Bour Bon', 30);
insert into "products" values(4, 'H&S', 90);
insert into "products" values(5, 'Jack & Jones Shirt', 540);
insert into "products" values(6, '<NAME>', 1001.5);
# --- !Downs
drop table "products" if exists;
|
## 查找当前最新一期的数据
#macro($findEnable())
SELECT t.* FROM coins_lo_season t ORDER BY t.id DESC LIMIT 1
#end
## 更新一期净收入数据
#macro($updateEarnCoins(id,earnCoins))
UPDATE coins_lo_season SET earn_coins = :earnCoins WHERE id = :id
#end
## 查询活动里最大的code
#macro($getMaxActiveCode())
select MAX(code) from coins_lo_season
#end
## 根据活动code查询最新的一期
#macro($findNewestByCode(code))
SELECT t.* FROM coins_lo_season t WHERE t.code = :code ORDER BY t.id DESC LIMIT 1
#end
|
<reponame>bcgov/smtp-om-core<filename>db/plsql/V01_101_001__om_utl_PackageSpec.sql<gh_stars>1-10
CREATE OR REPLACE PACKAGE OM.om_utl AS
-- $Header: V1_01_1__om_utl_PACKAGESPEC.sql 2016/11/10 1.0 jjose $
--*****************************************************************************
--*
--* Application: CAS Install Base Utilities.
--* Program: om_utl PL/SQL Package
--*
--* Title: All common functions/procedures for Install Base
--*
--* Purpose: This package contains all utility procedures and functions used
--* by install base.
--*
--* Ver Rel Date Description
--* --------------------------------------------------------------------------
--* 1.0 0 2007-Mar-29 <NAME> - Created the package.
--* 2.0 0 2007-Jun-01 <NAME> - added new function: fn_bps_is_valid().
--* 2.0 r0 June 8 2007 <NAME> - update fn_bps_is_valid with code provided by Julia.
--* 2.0 r1 June 12 2007 <NAME> - added prc_get_default_gl_coding.
--* - update fn_bps_is_valid with code provided by Julia.
--* 3.0 r0 June 15 2007 <NAME> - modify prc_get_default_gl_coding to use different generic table.
--* 4.0 July 19 2007 <NAME> - change name of bill_to parameter in select_customer_info.
--* 4.1 Aug 16 2007 <NAME> - undo previous change of parameter name.
--* 4.2 Aug 17 2007 <NAME> - prc_select_customer_info - undo fix.
--* 4.3 Dec 18 2007 <NAME> - alert 164186 - update fn_get_gl_period_name - truncate given date.
--* 5.0 Aug 25 2010 <NAME> - alert # 191418 created new functions fn_select_extended_attribute and fn_get_asset_param_id
--*
--* 1.0 Nov 10 2016 <NAME> Refactored the package for the Order Management stream of SMTP Project
--*****************************************************************************
--
--*************************
--* Type definitions
--*************************
--
--*************************
--* Function definitions
--*************************
--
FUNCTION fn_select_catalog_element (pn_seof_rk_in IN om_service_offerings.seof_rk%TYPE,
pv_parameter_name_in IN om_service_parameters.parameter_name%TYPE)
RETURN VARCHAR2;
--
--Alert # 191418 created new function fn_select_extended_attribute
/*FUNCTION fn_select_extended_attribute (pn_asset_param_id_in IN om_asset_recovery_params.arpa_rk %TYPE, --om_assets.asset_param_id%TYPE,
pn_attribute_in IN om_arp_values.arpa_rk%TYPE)
RETURN VARCHAR2;*/
--
FUNCTION fn_select_extended_attribute (pn_aset_rk_in IN om_assets.aset_rk%TYPE,
pv_asset_param_code_in IN om_asset_recovery_params.asset_param_code%TYPE)
RETURN VARCHAR2;
-- Alert # 191418 created new function fn_get_asset_param_id
FUNCTION fn_get_arpa_rk ( --fn_get_asset_param_id (
pv_asset_param_code_in IN om_asset_recovery_params.asset_param_code%TYPE
)
RETURN NUMBER;
--
/*FUNCTION fn_select_recovery_method (
pn_asset_param_id_in IN om_asset_recovery_params.arpa_rk %TYPE --om_assets.asset_param_id%TYPE
)
RETURN VARCHAR2;*/
FUNCTION fn_select_recovery_method (
pn_aset_rk_in IN om_assets.aset_rk%TYPE
)
RETURN VARCHAR2;
--
/* FUNCTION fn_select_recovery_started (
pn_asset_param_id_in IN om_asset_recovery_params.arpa_rk %TYPE --om_assets.asset_param_id%TYPE
)
RETURN VARCHAR2;*/
FUNCTION fn_select_recovery_started (
pn_aset_rk_in IN om_assets.aset_rk%TYPE
)
RETURN VARCHAR2;
--
FUNCTION fn_get_gl_period_name (pn_set_of_books_id_in IN om_fin_sets_of_books.set_of_books_id%TYPE,
pd_date_in IN DATE)
RETURN VARCHAR2;
--
/*
FUNCTION fn_get_party_id (
pv_ministry_code_in IN om_generic_table_details.key%TYPE
)
RETURN NUMBER;
--
*/
/*FUNCTION fn_get_party_for_logon_org
RETURN NUMBER;
--
*/
/*FUNCTION fn_get_account_id (
pn_asset_param_id_in IN om_assets.asset_param_id%TYPE
)
RETURN NUMBER;
--
*/
/*
FUNCTION fn_get_account_number (
pn_asset_param_id_in IN om_assets.asset_param_id%TYPE
)
RETURN VARCHAR2;
--
*/
/*
FUNCTION fn_get_account_name (
pn_asset_param_id_in IN om_assets.asset_param_id%TYPE
)
RETURN VARCHAR2;
--
*/
/*
FUNCTION fn_get_cust_class_code (
pn_asset_param_id_in IN om_assets.asset_param_id%TYPE
)
RETURN VARCHAR2;
--
*/
/*FUNCTION fn_get_bill_to_address (pn_cust_account_id_in IN NUMBER,
pn_org_id_in IN NUMBER)
RETURN NUMBER;
--
*/
FUNCTION fn_isnumeric (pv_string_in IN VARCHAR2)
RETURN BOOLEAN;
--
/*
FUNCTION fn_bps_is_valid (pv_tca_party_id IN VARCHAR2, pv_bps_id IN VARCHAR2,
pv_tca_account_name IN VARCHAR2, pv_bps_cost_centre IN VARCHAR2)
RETURN VARCHAR2;
--
*/
--*************************
--* Procedure definitions
--*************************
--
PROCEDURE prc_select_recovery_coding (pn_seof_rk_in IN om_service_offerings.seof_rk%TYPE,
pv_client_out OUT VARCHAR2, pv_resp_out OUT VARCHAR2, pv_srvc_out OUT VARCHAR2,
pv_stob_out OUT VARCHAR2, pv_proj_out OUT VARCHAR2, pv_return_code_out OUT VARCHAR2,
pv_message_out OUT VARCHAR2);
--
PROCEDURE prc_get_gl_period_dates (pv_fpse_rk_in IN om_fin_periods.fpse_rk%TYPE,
pv_period_name_in IN om_fin_periods.period_name%TYPE,
pd_start_date_out OUT NOCOPY DATE, pd_end_date_out OUT NOCOPY DATE,
pn_period_year_out OUT NOCOPY om_fin_periods.period_year%TYPE,
pv_return_code_out OUT NOCOPY VARCHAR2, pv_message_out OUT NOCOPY VARCHAR2);
--
PROCEDURE prc_select_set_of_books (pn_set_of_books_id_in IN om_fin_sets_of_books.set_of_books_id%TYPE,
pv_fpse_rk_out OUT NOCOPY om_fin_sets_of_books.fpse_rk%TYPE,
pv_return_code_out OUT NOCOPY VARCHAR2, pv_message_out OUT NOCOPY VARCHAR2);
--
PROCEDURE prc_select_party (pn_party_number_in IN om_generic_table_details.data2%TYPE,
pn_org_id_out OUT NOCOPY om_generic_table_details.key%TYPE,
pn_party_id_out OUT NOCOPY om_generic_table_details.data1%TYPE,
pn_account_id_out OUT NOCOPY om_generic_table_details.data3%TYPE,
pn_account_number_out OUT NOCOPY om_generic_table_details.data4%TYPE,
pv_return_code_out OUT NOCOPY VARCHAR2, pv_message_out OUT NOCOPY VARCHAR2);
--
/*PROCEDURE prc_select_customer_info (pn_asset_param_id_in IN om_assets.asset_param_id%TYPE,
pv_customer_class_code_out OUT NOCOPY hz_cust_accounts.customer_class_code%TYPE,
pn_account_id_out OUT NOCOPY hz_cust_accounts.cust_account_id%TYPE,
pv_account_number_out OUT NOCOPY hz_cust_accounts.account_number%TYPE,
pv_account_name_out OUT NOCOPY hz_cust_accounts.account_name%TYPE,
pn_party_id_out OUT NOCOPY hz_cust_accounts.party_id%TYPE,
pn_bill_to_address_out OUT NOCOPY csi_ip_accounts.bill_to_address%TYPE,
-- pn_bill_to_site_out OUT NOCOPY hz_cust_acct_sites_all.cust_acct_site_id%TYPE,
pv_return_code_out OUT NOCOPY VARCHAR2, pv_message_out OUT NOCOPY VARCHAR2);
--
*/
/*
PROCEDURE prc_get_bps_recoveries_stob (pn_asset_param_id_in IN om_assets.asset_param_id%TYPE,
pv_stob_out OUT NOCOPY gl_code_combinations.segment4%TYPE,
pv_return_code_out OUT NOCOPY VARCHAR2, pv_message_out OUT NOCOPY VARCHAR2);
--
*/
PROCEDURE prc_select_recovery_type (pv_recovery_type_in IN om_generic_table_details.key%TYPE,
pv_recovery_method_out OUT om_generic_table_details.data1%TYPE,
pv_recovery_frequency_out OUT om_generic_table_details.data2%TYPE,
pv_return_code_out OUT NOCOPY VARCHAR2, pv_message_out OUT NOCOPY VARCHAR2);
--
/*
PROCEDURE prc_get_item_price (pn_seof_rk_in IN om_service_offerings.seof_rk%TYPE,
pv_customer_class_in IN hz_cust_accounts.customer_class_code%TYPE,
pv_recovery_period_in IN om_fin_periods.period_name%TYPE,
pv_fpse_rk_in IN om_fin_periods.fpse_rk%TYPE,
pn_price_out OUT NOCOPY qp_list_lines.operand%TYPE,
pv_return_code_out OUT NOCOPY VARCHAR2, pv_message_out OUT NOCOPY VARCHAR2);
--
*/
/*
PROCEDURE prc_get_sda_ministry (pn_account_id_in IN hz_cust_accounts.cust_account_id%TYPE,
pn_party_id_out OUT NOCOPY hz_parties.party_id%TYPE,
pn_account_id_out OUT NOCOPY hz_cust_accounts.cust_account_id%TYPE,
pv_return_code_out OUT NOCOPY VARCHAR2, pv_message_out OUT NOCOPY VARCHAR2);
--
*/
PROCEDURE prc_get_default_gl_coding (--pn_account_id_in IN hz_cust_accounts.cust_account_id%TYPE,
pv_client_out OUT NOCOPY VARCHAR2, pv_resp_out OUT NOCOPY VARCHAR2,
pv_service_out OUT NOCOPY VARCHAR2, pv_project_out OUT NOCOPY VARCHAR2,
pv_return_code_out OUT NOCOPY VARCHAR2, pv_message_out OUT NOCOPY VARCHAR2);
--
END om_utl;
/
|
<filename>modules/core/db/update/postgres/01/01-320-RuntimePropertiesRework.sql<gh_stars>1-10
-- $Id$
-- Description:
alter table SYS_CATEGORY_ATTR drop column DEFAULT_VALUE^
alter table SYS_CATEGORY_ATTR add column DEFAULT_STRING varchar^
alter table SYS_CATEGORY_ATTR add column DEFAULT_INT integer^
alter table SYS_CATEGORY_ATTR add column DEFAULT_DOUBLE real^
alter table SYS_CATEGORY_ATTR add column DEFAULT_DATE date^
alter table SYS_CATEGORY_ATTR add column DEFAULT_BOOLEAN boolean^
alter table SYS_ATTR_VALUE drop column VALUE^
alter table SYS_ATTR_VALUE add column STRING_VALUE varchar^
alter table SYS_ATTR_VALUE add column INTEGER_VALUE integer^
alter table SYS_ATTR_VALUE add column DOUBLE_VALUE real^
alter table SYS_ATTR_VALUE add column DATE_VALUE date^
alter table SYS_ATTR_VALUE add column BOOLEAN_VALUE boolean^ |
ALTER TABLE public.process_execution_step_file
ADD COLUMN verified boolean;
COMMENT ON COLUMN public.process_execution_step_file.verified
IS 'A flag to indicate if an expected output file is verified';
|
<reponame>torna-group/torna<gh_stars>1-10
-- 适用于MySQL5.6.5+
-- 备注:5.5.3开始支持utf8mb4,5.6.5开始支持CURRENT_TIMESTAMP(datetime)
/*!40101 SET NAMES utf8 */;
/*!40101 SET SQL_MODE=''*/;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
CREATE DATABASE /*!32312 IF NOT EXISTS*/`torna` /*!40100 DEFAULT CHARACTER SET utf8mb4 */;
USE `torna`;
/*Table structure for table `compose_additional_page` */
DROP TABLE IF EXISTS `compose_additional_page`;
CREATE TABLE `compose_additional_page` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`project_id` bigint(20) unsigned NOT NULL COMMENT 'compose_project.id',
`title` varchar(64) NOT NULL COMMENT '文档标题',
`content` text COMMENT '文档内容',
`order_index` int(11) NOT NULL DEFAULT '0' COMMENT '排序值',
`status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1:启用,0:禁用',
`is_deleted` tinyint(4) NOT NULL DEFAULT '0',
`gmt_create` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`gmt_modified` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE,
KEY `idx_projectid` (`project_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='聚合文档附加页';
/*Data for the table `compose_additional_page` */
/*Table structure for table `compose_common_param` */
DROP TABLE IF EXISTS `compose_common_param`;
CREATE TABLE `compose_common_param` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`data_id` varchar(64) NOT NULL DEFAULT '' COMMENT '唯一id,md5(doc_id:parent_id:style:name)',
`name` varchar(64) NOT NULL DEFAULT '' COMMENT '字段名称',
`type` varchar(64) NOT NULL DEFAULT 'String' COMMENT '字段类型',
`required` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否必须,1:是,0:否',
`max_length` varchar(64) NOT NULL DEFAULT '-' COMMENT '最大长度',
`example` varchar(1024) NOT NULL DEFAULT '' COMMENT '示例值',
`description` text NOT NULL COMMENT '描述',
`enum_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'enum_info.id',
`compose_project_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'compose_project.id',
`parent_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`style` tinyint(4) NOT NULL DEFAULT '0' COMMENT '0:path, 1:header, 2:请求参数,3:返回参数,4:错误码',
`order_index` int(11) NOT NULL DEFAULT '0' COMMENT '排序索引',
`is_deleted` tinyint(4) NOT NULL DEFAULT '0',
`gmt_create` datetime DEFAULT CURRENT_TIMESTAMP,
`gmt_modified` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `uk_dataid` (`data_id`) USING BTREE,
KEY `idx_compose_project_id` (`compose_project_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='聚合文档公共参数';
/*Data for the table `compose_common_param` */
/*Table structure for table `compose_doc` */
DROP TABLE IF EXISTS `compose_doc`;
CREATE TABLE `compose_doc` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`doc_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'doc_info.id',
`project_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'compose_project.id',
`is_folder` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否文件夹',
`folder_name` varchar(64) NOT NULL DEFAULT '' COMMENT '文件夹名称',
`parent_id` bigint(20) NOT NULL DEFAULT '0',
`origin` varchar(128) NOT NULL DEFAULT '' COMMENT '文档来源',
`is_deleted` tinyint(4) NOT NULL DEFAULT '0',
`creator` varchar(64) NOT NULL DEFAULT '' COMMENT '创建人',
`order_index` int(10) unsigned NOT NULL DEFAULT '0',
`gmt_create` datetime DEFAULT CURRENT_TIMESTAMP,
`gmt_modified` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE,
KEY `idx_projectid` (`project_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='文档引用';
/*Data for the table `compose_doc` */
/*Table structure for table `compose_project` */
DROP TABLE IF EXISTS `compose_project`;
CREATE TABLE `compose_project` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL DEFAULT '' COMMENT '项目名称',
`description` varchar(128) NOT NULL DEFAULT '' COMMENT '项目描述',
`space_id` bigint(20) NOT NULL DEFAULT '0' COMMENT '所属空间,space.id',
`type` tinyint(4) NOT NULL DEFAULT '1' COMMENT '访问形式,1:公开,2:加密',
`password` varchar(64) NOT NULL DEFAULT '' COMMENT '访问密码',
`creator_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '创建者userid',
`creator_name` varchar(64) NOT NULL DEFAULT '',
`modifier_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`modifier_name` varchar(64) NOT NULL DEFAULT '',
`order_index` int(11) NOT NULL DEFAULT '0' COMMENT '排序索引',
`show_debug` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否显示调试',
`gateway_url` varchar(128) NOT NULL DEFAULT '' COMMENT '网关url',
`status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1:有效,0:无效',
`is_deleted` tinyint(4) NOT NULL DEFAULT '0',
`gmt_create` datetime DEFAULT CURRENT_TIMESTAMP,
`gmt_modified` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE,
KEY `idx_spaceid` (`space_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='组合项目表';
/*Data for the table `compose_project` */
/*Table structure for table `doc_info` */
DROP TABLE IF EXISTS `doc_info`;
CREATE TABLE `doc_info` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`data_id` varchar(64) NOT NULL DEFAULT '' COMMENT '唯一id,接口规则:md5(module_id:parent_id:url:http_method)。分类规则:md5(module_id:parent_id:name)',
`md5` varchar(32) NOT NULL DEFAULT '' COMMENT '文档内容的md5值',
`name` varchar(128) NOT NULL DEFAULT '' COMMENT '文档名称',
`description` text NOT NULL COMMENT '文档描述',
`author` varchar(64) NOT NULL DEFAULT '' COMMENT '维护人',
`type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '0:http,1:dubbo',
`url` varchar(256) NOT NULL DEFAULT '' COMMENT '访问URL',
`http_method` varchar(12) NOT NULL DEFAULT '' COMMENT 'http方法',
`content_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'contentType',
`deprecated` varchar(128) DEFAULT '$false$' COMMENT '废弃信息',
`is_folder` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否是分类,0:不是,1:是',
`parent_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '父节点',
`module_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '模块id,module.id',
`is_use_global_headers` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否使用全局请求参数',
`is_use_global_params` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否使用全局请求参数',
`is_use_global_returns` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否使用全局返回参数',
`is_request_array` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否请求数组',
`is_response_array` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否返回数组',
`request_array_type` varchar(16) NOT NULL DEFAULT 'object' COMMENT '请求数组时元素类型',
`response_array_type` varchar(16) NOT NULL DEFAULT 'object' COMMENT '返回数组时元素类型',
`create_mode` tinyint(4) NOT NULL DEFAULT '0' COMMENT '新增操作方式,0:人工操作,1:开放平台推送',
`modify_mode` tinyint(4) NOT NULL DEFAULT '0' COMMENT '修改操作方式,0:人工操作,1:开放平台推送',
`creator_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '创建人',
`creator_name` varchar(64) NOT NULL DEFAULT '' COMMENT '创建者昵称user_info.nickname',
`modifier_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '修改人',
`modifier_name` varchar(64) NOT NULL DEFAULT '' COMMENT '创建者昵称user_info.realname',
`order_index` int(11) NOT NULL DEFAULT '0' COMMENT '排序索引',
`remark` varchar(128) NOT NULL DEFAULT '' COMMENT '备注',
`is_show` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否显示',
`is_deleted` tinyint(4) NOT NULL DEFAULT '0',
`is_locked` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否锁住',
`gmt_create` datetime DEFAULT CURRENT_TIMESTAMP,
`gmt_modified` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `uk_data_id` (`data_id`) USING BTREE,
KEY `idx_moduleid` (`module_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=94 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='文档信息';
/*Data for the table `doc_info` */
insert into `doc_info`(`id`,`data_id`,`md5`,`name`,`description`,`author`,`type`,`url`,`http_method`,`content_type`,`deprecated`,`is_folder`,`parent_id`,`module_id`,`is_use_global_headers`,`is_use_global_params`,`is_use_global_returns`,`is_request_array`,`is_response_array`,`request_array_type`,`response_array_type`,`create_mode`,`modify_mode`,`creator_id`,`creator_name`,`modifier_id`,`modifier_name`,`order_index`,`remark`,`is_show`,`is_deleted`,`is_locked`,`gmt_create`,`gmt_modified`) values (40,'0762df7ae4a3adbd6db1d3f7e066d0a4','','商城产品','','',0,'','','','$false$',1,0,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:22','2022-02-27 15:09:22'),(41,'edc09831d127452509526348b17e245e','b75627f978dc6648d4919cc5f7b90b12','查询产品','','',0,'/shop/product','GET','application/x-www-form-urlencoded','$false$',0,40,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:22','2022-02-27 15:09:22'),(42,'742a336acb1fd0f18574b4fd71b7e966','1b164a8d01428aceecd1b364fca5ecbc','修改产品','','',0,'/shop/product','PUT','application/json','$false$',0,40,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:22','2022-02-27 15:09:22'),(43,'16efeddc8b66ba84435b4d527c833cd4','14165f091ae8f9955989a7852d18744d','新增产品','','',0,'/shop/product','POST','application/json','$false$',0,40,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:22','2022-02-27 15:09:22'),(44,'593246d119b946366686ab99072d641a','','测试用例202111','','',0,'','','','$false$',1,0,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',-1,'',1,0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(45,'fb1e118d7be63ee40894cae7b185c0c5','988c505b72fe712c204e5b11925300ae','继承第三方类','','',0,'/extendThirdClass','POST','application/json','$false$',0,44,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(46,'b2c6cf679409187bafda42d85f61eae1','9b5e47fc3e2cc355c2ff20401a6907d0','普通字符串','','',0,'/string','GET','','$false$',0,44,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(47,'aa8ed5e969c75a035f904cb1c27d6608','ddec5709bd5f6d258730648465237fc7','参数内容很长','','',0,'/longParam','GET','application/x-www-form-urlencoded','$false$',0,44,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(48,'d32477fda51550e0acb2ee16d684f773','9c6d56d9f39dc062b0fc5711288649d8','示例hutool JSONObject','','',0,'/hutoolJSONObject','GET','application/x-www-form-urlencoded','$false$',0,44,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(49,'020595711e965df1917c9dfc063f307e','','测试用例','','',0,'','','','$false$',1,0,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',-1,'',1,0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(50,'54ef223cf9624b153956fc060cbb17d4','778e39add6225729aa2b07237c78c868','delete method with body','','',0,'/2021111/delete','DELETE','application/x-www-form-urlencoded','$false$',0,49,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(51,'9e2fe0f861e4606412feb02d6b3611b5','688341faca98439f1e4eef59d41c495e','example2021922','','',0,'/example2021922','POST','application/json','$false$',0,49,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(52,'a5aff543d0aba6028a956b6e392c0f55','56c45a940a046cfc10e9ee7fc550e806','泛型3','','',0,'/test/item/{id}','GET','application/x-www-form-urlencoded','$false$',0,49,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(53,'ed8c1799f14160e49e7181778c2a2e56','5311b2a6d9a6ef0cc06f87f12d96ef76','泛型','','',0,'/example72021923','GET','','$false$',0,49,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(54,'ed52f0e76673593ff1e2b80d9bb45d49','c45409553677090e985aeb36e23f562e','泛型2','','',0,'/example6220219232','GET','','$false$',0,49,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(55,'bf21a13fa7964a457286e5852b1a7fe5','14ccd1140bd9a84b9abcdd5e466159c3','问号泛型','','',0,'/test/generic/q','GET','application/x-www-form-urlencoded','$false$',0,49,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(56,'3de1d74e77f918bbd3e30a26dc5fa34f','','订单模块','','',0,'','','','$false$',1,0,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(57,'aca639ea880bd2e8b90cb64fd979195a','9089347bdd4bd483d664aca280c67362','获取某个产品下的订单','<strong>注意:</strong>html演示。。','',0,'/order/get2/{productNo}','GET','application/x-www-form-urlencoded','$false$',0,56,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(58,'376d45d2aa7f0451f59ccbc4ffa17c97','16982252ca137f60d0e4f92067c743fc','嵌套泛型,2层泛型','','',0,'/order/moreGeneric','POST','application/json','$false$',0,56,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(59,'82085820d98bf1ea9af2e7aeb31f9eed','43c945adbc19c3896d95175baf69e686','只1层泛型','','',0,'/order/moreGeneric2','POST','application/json','$false$',0,56,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(60,'f059106b7f7f4952e31648ced3ca8676','85e53af1000c94db3369d3fa5fce2716','没有泛型','','',0,'/order/moreGeneric3','POST','application/json','$false$',0,56,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(61,'d9d558676742ec01828e0d4899a2fcb2','d1b2d0decb4058bc2c51495536a2ff6f','演示query参数,不加@RequestParam','演示query参数,不加@RequestParam','',0,'/order/get','GET','application/x-www-form-urlencoded','$false$',0,56,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(62,'7de95802c704f9e9c21f83085da55879','e391d3651dbc0be505541cb71404cc71','提交订单信息,application/json','提交订单信息,application/json','Tom',0,'/order/create','POST','application/json','$false$',0,56,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(63,'c17fd68995214a79ff9fb7548051a418','b43612e4e0b996fcb9dd7ad34db0fb65','演示path参数+query参数+body参数+header','提交订单信息说明。。','',0,'/order/submit/{productNo}','POST','application/json','$false$',0,56,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(64,'1e8636f22682ebf654592c9e13c583b4','084c8687764d38b0efc8ba97dc48432f','演示query参数,加@RequestParam','演示query参数,加@RequestParam','',0,'/order/get2','GET','application/x-www-form-urlencoded','$false$',0,56,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(65,'470dd942878f5bab1a5ad12aad8d4e5c','669466e302f4030b2531e3b9905ac08a','演示query参数,放在对象里面','','',0,'/order/get4','GET','application/x-www-form-urlencoded','$false$',0,56,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(66,'98fe231300e6e6864c4a973fb7642a68','a42284159e9daa0108b1fc48393d8e4d','提交订单信息,application/x-www-form-urlencoded','提交订单信息,application/x-www-form-urlencoded','',0,'/order/create2','POST','application/x-www-form-urlencoded','$false$',0,56,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(67,'aee3ee906c576fe1c1b4a02713f5db5e','83ea9dd4adec0387aa63dc2523e53ee4','演示path参数','演示path参数','',0,'/order/get/{orderNo}','GET','application/x-www-form-urlencoded','$false$',0,56,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(68,'b8b62abb78b49b80e4df377488699d61','32bdc14ab3b6502e565a4bde680465a2','演示query参数,放在对象里面+外面一个','','',0,'/order/get5','GET','application/x-www-form-urlencoded','$false$',0,56,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(69,'4992d04305f0874f0f37708629e5b4b9','0f93adc67bcc7771bf2cb1929d08cd4c','全部参数form,全部由@ApiImplicitParams实现','全部由@ApiImplicitParams实现','',0,'/order/submit3/{productNo}','POST','application/x-www-form-urlencoded','$false$',0,56,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(70,'451c2f27e852ebe50de4ef67aee8af95','32d200e5e13c2310644deff366fa1983','全部参数upload,全部由@ApiImplicitParams实现','全部由@ApiImplicitParams实现','',0,'/order/submit4/{productNo}','POST','multipart/form-data','$false$',0,56,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(71,'5d12627081670014e321c86b39a69fe1','9e278f9777880b6c6eb605e3c680b446','全部参数json,全部由@ApiImplicitParams实现','全部由@ApiImplicitParams实现','',0,'/order/submit2/{productNo}','POST','application/json','$false$',0,56,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(72,'0019cac17c98c23a1dbb176642993605','9344778e21d782ec69c08ecc34144324','返回树','','',0,'/order/cycle2','GET','','$false$',0,56,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(73,'78b1174d012d2f3aa9e596ca71223b2a','1f7ff36fc81f84fcb26f7ed419e48775','循环属性','','',0,'/order/cycle','GET','','$false$',0,56,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(74,'02be37808d57b221dcfa25a31b759a33','82a08cef5045a07ab886b54da4f2fb1b','参数/返回都是List<OrderDTO>','List方式','',0,'/order/postArr4','POST','application/json','$false$',0,56,4,1,1,1,1,1,'object','object',1,1,99999,'Tom',99999,'Tom',100,'',1,0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(75,'02caa73195d72baa6b5ce43cf9c473da','3bd0fdc03e30c7d3de1721da68b66932','参数/返回都是OrderDTO[]','参数/返回都是OrderDTO[]','',0,'/order/postArr','POST','application/json','$false$',0,56,4,1,1,1,1,1,'object','object',1,1,99999,'Tom',99999,'Tom',101,'',1,0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(76,'6b3cc6a9b2be32fe3e1d3d27bdffa779','09ec797f5469b37733ecfd01a850230a','参数Integer[],返回OrderDTO[]','参数Integer[],返回OrderDTO[]','',0,'/order/postArr2','POST','application/json','$false$',0,56,4,1,1,1,1,1,'integer','object',1,1,99999,'Tom',99999,'Tom',102,'',1,0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(77,'961c71f676583968440858586b70ad84','6895f74bd1b53cfc96a3beffdb729fc4','参数OrderDTO[],返回Integer[]','','',0,'/order/postArr3','POST','application/json','$false$',0,56,4,1,1,1,1,1,'object','integer',1,1,99999,'Tom',99999,'Tom',103,'',1,0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(78,'457778b845342f45f914a92dcbc9bb80','a01416eb95af4c2552f95b39f2656cc9','参数/返回都是List<Integer>','List方式','',0,'/order/postArr5','POST','application/json','$false$',0,56,4,1,1,1,1,1,'integer','integer',1,1,99999,'Tom',99999,'Tom',104,'',1,0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(79,'de4e4c5c71d0dfb1974b09ad8fc90820','3d0d65236667c69de3ab6d90d5c4748d','参数/返回都是List<OrderDTO>2','List方式','',0,'/order/postArr6','POST','application/json','$false$',0,56,4,1,1,1,1,1,'object','object',1,1,99999,'Tom',99999,'Tom',105,'',1,0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(80,'a5a2da7089fdb4f48044199b15d94613','','产品模块','','',0,'','','','$false$',1,0,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',-1,'',1,0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(81,'32090c2b9fc2c24ac3716330880177d3','06695b07d80aaee6eb9d9b5150c52939','返回树','','',0,'/product/getTree','GET','','$false$',0,80,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(82,'f415ed3eb5ecc4ec028a7a9bb68807b8','6f312643ac4faaefa7ed6a808d8db7b2','获取产品','获取产品说明。。','Tom,Jim',0,'/product/get/{productNo}','GET','application/x-www-form-urlencoded','$false$',0,80,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(83,'f71959131c0d5123c030efffb02ba590','318f15e2dfd4adbad5fafc9a325c1c49','导出excel2','','',0,'/exportExcel2','GET','application/x-www-form-urlencoded','$false$',0,80,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(84,'98debf34dd736b1bd1ccd7ae7cbcfb24','bcf59f70c3a7c6d7ae514d64c14893d3','导出zip','','',0,'/exportZip','GET','','$false$',0,80,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(85,'00f3f43b7293208a1157a0c2a54c2c12','1fa082957e200dfd279c70fb761d3d3a','导出','','',0,'/export','GET','','$false$',0,80,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(86,'8c9b1dcee1d2d46363cbc152d89a2fbc','a63c02296b43263aec562fc7195960f1','导出excel','','',0,'/exportExcel','GET','','$false$',0,80,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(87,'4ec90f5e27c3fd03da4d1adf220c0f70','1b23d1d108f679b9af39991a238c0796','获取图片','返回一个图片流,页面展示图片','',0,'/getImage','GET','application/x-www-form-urlencoded','$false$',0,80,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(88,'366a646e90404243ffe12e1502794a7f','499bbfc6fb0d3a5e0376537263aeb46f','导出图片','','',0,'/exportPng','GET','','$false$',0,80,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(89,'cf2d8816bcc110f486812833fd775115','6277b9d30a61ac058f2d77f179962270','上传文件','','',0,'/product/upload','POST','multipart/form-data','$false$',0,80,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',11,'',1,0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(90,'9d698e13de92b03b38dd7fcdd481a235','05c0cc077e006401e4103945dd98bbc6','上传文件2','','',0,'/product/upload2','POST','multipart/form-data','$false$',0,80,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',12,'',1,0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(91,'42dd5856602b0aed4c06c1e5d20c74bf','3caa2949447a922934b6b984dc63e142','上传文件3','','',0,'/product/upload3','POST','multipart/form-data','$false$',0,80,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',13,'',1,0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(92,'8c8cd8072318ca2bc842b5006e2f3a99','','登录模块','','',0,'','','','$false$',1,0,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',2,'',1,0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(93,'03883fbd1846daa152a8e3fbcf06dc38','bd69f2a4bc68985fa922f6be0fa5c135','登录','登录','',0,'/login/login','POST','application/json','$false$',0,92,4,1,1,1,0,0,'object','object',1,1,99999,'Tom',99999,'Tom',0,'',1,0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24');
/*Table structure for table `doc_param` */
DROP TABLE IF EXISTS `doc_param`;
CREATE TABLE `doc_param` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`data_id` varchar(64) NOT NULL DEFAULT '' COMMENT '唯一id,md5(doc_id:parent_id:style:name)',
`name` varchar(64) NOT NULL DEFAULT '' COMMENT '字段名称',
`type` varchar(64) NOT NULL DEFAULT 'String' COMMENT '字段类型',
`required` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否必须,1:是,0:否',
`max_length` varchar(64) NOT NULL DEFAULT '-' COMMENT '最大长度',
`example` varchar(1024) NOT NULL DEFAULT '' COMMENT '示例值',
`description` text NOT NULL COMMENT '描述',
`enum_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'enum_info.id',
`doc_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'doc_info.id',
`parent_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`style` tinyint(4) NOT NULL DEFAULT '0' COMMENT '0:path, 1:header, 2:请求参数,3:返回参数,4:错误码',
`create_mode` tinyint(4) NOT NULL DEFAULT '0' COMMENT '新增操作方式,0:人工操作,1:开放平台推送',
`modify_mode` tinyint(4) NOT NULL DEFAULT '0' COMMENT '修改操作方式,0:人工操作,1:开放平台推送',
`creator_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`creator_name` varchar(64) NOT NULL DEFAULT '',
`modifier_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`modifier_name` varchar(64) NOT NULL DEFAULT '',
`order_index` int(11) NOT NULL DEFAULT '0' COMMENT '排序索引',
`is_deleted` tinyint(4) NOT NULL DEFAULT '0',
`gmt_create` datetime DEFAULT CURRENT_TIMESTAMP,
`gmt_modified` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `uk_dataid` (`data_id`) USING BTREE,
KEY `idx_docid` (`doc_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=697 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='文档参数';
/*Data for the table `doc_param` */
insert into `doc_param`(`id`,`data_id`,`name`,`type`,`required`,`max_length`,`example`,`description`,`enum_id`,`doc_id`,`parent_id`,`style`,`create_mode`,`modify_mode`,`creator_id`,`creator_name`,`modifier_id`,`modifier_name`,`order_index`,`is_deleted`,`gmt_create`,`gmt_modified`) values (271,'fc4cff99091ca5a949494d6e033c17a6','productNo','integer',1,'-','123','产品id',0,41,0,0,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:22','2022-02-27 15:09:22'),(272,'e10383abfeae6c3cbedc3eb705e3637a','productNo','String',0,'-','aaaa','产品id',0,41,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:22','2022-02-27 15:09:22'),(273,'18c23e88a161988e13e62c8c536c2d4e','remark','String',0,'-','小米','备注',0,41,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:22','2022-02-27 15:09:22'),(274,'1daac5bf66901a9f14585683acc0c584','productDetailVO','object',0,'','','产品详情',0,41,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:22','2022-02-27 15:09:22'),(275,'911229a606bdb7ec0f8c951856e638c1','productNo','String',0,'-','aaaa','产品id',0,41,274,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:22','2022-02-27 15:09:22'),(276,'def964156597e8362ee4d43b0bbb8bdb','remark','String',0,'-','小米','备注',0,41,274,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:22','2022-02-27 15:09:22'),(277,'733385eacca3d5e23f76bbc459a3b01f','productNo','String',0,'-','aaaa','产品id',0,42,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:22','2022-02-27 15:09:22'),(278,'da3a5b78940e80e1670fcd8cf7f4f3de','remark','String',0,'-','小米','备注',0,42,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:22','2022-02-27 15:09:22'),(279,'23b61dc8b4ba29ca25f17bdd466dbf42','productDetailVO','object',0,'','','产品详情',0,42,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:22','2022-02-27 15:09:22'),(280,'8d7efeb0efef5dbfa862961c2d8fbb03','productNo','String',0,'-','aaaa','产品id',0,42,279,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:22','2022-02-27 15:09:22'),(281,'ae1bc788266397d446b90b905179748b','remark','String',0,'-','小米','备注',0,42,279,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:22','2022-02-27 15:09:22'),(282,'774e5db72e299bbce4359a3c8c28138a','productNo','String',0,'-','aaaa','产品id',0,42,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:22','2022-02-27 15:09:22'),(283,'5bc223bce61b3397a728545a4fe94c7f','remark','String',0,'-','小米','备注',0,42,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:22','2022-02-27 15:09:22'),(284,'6d81fe2271a37fe5e96045f149c61d71','productDetailVO','object',0,'','','产品详情',0,42,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:22','2022-02-27 15:09:22'),(285,'932265373fe22aa7d5dd62d8f8720d3c','productNo','String',0,'-','aaaa','产品id',0,42,284,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:22','2022-02-27 15:09:22'),(286,'472e4f6193b421e989978a61e0d50c8f','remark','String',0,'-','小米','备注',0,42,284,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:22','2022-02-27 15:09:22'),(287,'2addbdc3cccf43b88ff3255069a17aef','productNo','String',0,'-','aaaa','产品id',0,43,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:22','2022-02-27 15:09:22'),(288,'d3b3ba58ffe5da0cf32fb68e529328c4','remark','String',0,'-','小米','备注',0,43,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:22','2022-02-27 15:09:22'),(289,'c9ace9ddd6660c1df0c86afaa5efe91a','productDetailVO','object',0,'','','产品详情',0,43,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:22','2022-02-27 15:09:22'),(290,'cd9a1b544326eb0de9c9263fd3c141cc','productNo','String',0,'-','aaaa','产品id',0,43,289,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:22','2022-02-27 15:09:22'),(291,'7c7d925ab4ae27bb5ac6fca49ca55e3e','remark','String',0,'-','小米','备注',0,43,289,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:22','2022-02-27 15:09:22'),(292,'3c043a2c364d0ad4a1571c95e28a8d10','productNo','String',0,'-','aaaa','产品id',0,43,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:22','2022-02-27 15:09:22'),(293,'c60f58b835c8cfa14e043ce53b57fe41','remark','String',0,'-','小米','备注',0,43,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:22','2022-02-27 15:09:22'),(294,'6bc5cc7a49f27eb8801afff94819a278','productDetailVO','object',0,'','','产品详情',0,43,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:22','2022-02-27 15:09:22'),(295,'238e6444466a7a38fe8fadd0e6d88ab7','productNo','String',0,'-','aaaa','产品id',0,43,294,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:22','2022-02-27 15:09:22'),(296,'105636eaefef923d824fe4041bc9ef87','remark','String',0,'-','小米','备注',0,43,294,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(297,'9383e1a4dc98e48ae351ae2d6d4ba1b8','remark','String',1,'-','','描述',0,45,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(298,'6a0dac468a11cb2d0a75e83c808ae593','version','String',1,'-','1.0','版本',0,45,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(299,'1a9f7d9a56e8ea19f7cacebc589eaff6','records','List',0,'-','','查询数据列表',0,45,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(300,'0f7efd85f242c9d0a22377fe18d78764','total','long',0,'-','100','总数',0,45,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(301,'9adce0909dda290bdef79adf10ef18df','size','long',0,'-','10','页数',0,45,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(302,'afe10b1415869a300ea63dc9c44273eb','current','long',0,'-','1','当前页',0,45,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(303,'ef1a515c7b7e652d170e53bea7785091','orders','List',0,'','','',0,45,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(304,'b630e3954b07bd1d2d64eb67e97c08f8','column','String',0,'-','','',0,45,303,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(305,'7504b0bdbcbb46f42640424338550b31','asc','boolean',0,'-','','',0,45,303,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(306,'2db3977081627efcc15c4c2c293a9b2e','optimizeCountSql','boolean',0,'-','','',0,45,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(307,'9c59aada9ef0bd3c669d1b024357d153','isSearchCount','boolean',0,'-','','',0,45,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(308,'de3062819af0a3e34fe3cc2f83b73bd8','hitCount','boolean',0,'-','','',0,45,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(309,'17bdf3fd35b0817607183d5842f662f0','countId','String',0,'-','','',0,45,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(310,'091bb08b24797f18f727bda1c4c6c6f5','maxLimit','Long',0,'-','','',0,45,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(311,'11db639fc5ac7fc560d13f689cf9f23e','code','Integer',0,'-','0','状态码,0:成功',0,45,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(312,'2c650f80dc6632d4fe95f1f1ceef8a01','data','object',0,'','','数据',0,45,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(313,'7d5d548f0671d12d0dcdc0ff6f651eef','userId','number',0,'-','123','用户id',0,45,312,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(314,'fc4fd9cd0172598d1003e58a5cdaa537','orderNo','String',0,'-','xxx','订单号',0,45,312,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(315,'aa8bd2792d4c7b2a0bfdd1039fedad5f','payTime','Date',0,'-','2021-05-24 19:59:51','订单id',0,45,312,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(316,'ef565bf07cca615f3b497ffdd6761606','remark','String',0,'-','','',0,45,312,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(317,'d008976f613a5572fbec40964d4d421f','msg','String',0,'-','','消息',0,45,0,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(318,'7f91ef2d2afc26ff2ca3012200c25fd7','content','string',0,'-','','参数内容很长,<br>换行,参数内容很长参数内容很长参数内容很长参数内容很长参数内容很长参数内容很长参数内容很长参数内容很长参数内容很长参数内容很长参数内容很长参数内容很长参数内容很长参数内容很长参数内容很长参数内容很长参数内容很长参数内容很长参数内容很长参数内容很长参数内容很长参数内容很长参数内容很长',0,47,0,5,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(319,'0505e099b617becd88c86cd537f93c03','code','Integer',0,'-','0','状态码,0:成功',0,47,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(320,'4acf4a41d02d193ae6003d532e03de1b','data','object',0,'','','数据',0,47,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(321,'e13ab0e1a2a4b1005827066d1c46870b','userId','number',0,'-','123','用户id',0,47,320,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(322,'476a5b0474903b572ef479951a5cb874','orderNo','String',0,'-','xxx','订单号',0,47,320,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(323,'133e0dce9ac75d61b92a13584cfaaf77','payTime','Date',0,'-','2021-05-24 19:59:51','订单id',0,47,320,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(324,'2d5f7f25ef4070d34427666d5c32161f','remark','String',0,'-','','',0,47,320,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(325,'da92bac3409ded18e733a2bc9f0356ea','msg','String',0,'-','','消息',0,47,0,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(326,'1563abcde0f5b4b8ba2de6bc6f37c46e','type','String',0,'-','','',0,48,0,5,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(327,'51a388f1454725fe2d3b92d4c7d9e13d','title','String',0,'-','','',0,48,0,5,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(328,'76d4db1e4e675e264f863b75c1f6b2c1','param','object',0,'-','','',0,48,0,5,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(329,'5d835a4c9efac3de93b165d862b1e659','code','Integer',0,'-','0','状态码,0:成功',0,48,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(330,'a34da0d8cae00d7bedd8c9f91cb7fd77','data','object',0,'-','','数据',0,48,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(331,'aff90ff7378d21b760b6fe4771581eac','msg','String',0,'-','','消息',0,48,0,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(332,'8a31a56ab980cd52070b1ca3e758a4eb','code','Integer',0,'-','0','状态码,0:成功',0,50,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(333,'b00afe4251ece9a9abf529fc16738544','data','Object',0,'-','','数据',0,50,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(334,'71bf2b7799d8566addf1680a02649591','msg','String',0,'-','','消息',0,50,0,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(335,'1fa2da4b14e7fb252a1bab0b1ec9adbc','taskName','String',1,'-','','必填,任务名称',0,51,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(336,'facde3be2436cb977ba72cc35325342c','streamUrl','String',1,'-','','取流 url',0,51,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(337,'85bdc633c7f48cb88bc8f574df8e3baf','streamUserName','String',0,'-','','流地址用户名',0,51,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(338,'4f995e0f9cfa7880c6444e0a6<PASSWORD>','streamPassword','String',0,'-','','取流密码',0,51,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(339,'49ef37c90edb3ed153897aceec5de5cb','taskType','enum',0,'-','PLAN','PLAN、TEMP',0,51,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(340,'44a92978e67ffbe54bedaa0c8d4fded4','exeTimeList','List',0,'','','taskType为计划任务-plan时的时间布控列表',0,51,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(341,'aa8210a3eb3607a56a541b56ee9a65af','timeRange','List',1,'','','计划日时间段列表',0,51,340,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(342,'3cc572281a2a8b746208efb5858ec8c5','startTime','String',0,'-','17:30:08','必填,布控开始时间,ISO8601_time 格式,只需要时间',0,51,341,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(343,'02d6142dce529b41f6410fa97ff13d7b','endTime','String',0,'-','17:30:08','必填,布控结束时间, ISO8601_time 格式',0,51,341,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(344,'4ad6e249cc51a15193e5dd4abe7d6440','this$0','object',0,'','','',0,51,340,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(345,'7f6817f461e32bfba0bb73ddd0d09629','taskName','String',1,'-','','必填,任务名称',0,51,344,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(346,'b453bdb20538dc1b57bf5558e4f12a23','streamUrl','String',1,'-','','取流 url',0,51,344,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(347,'48d4e489b60385a2f2327171bbbaf3be','streamUserName','String',0,'-','','流地址用户名',0,51,344,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(348,'<PASSWORD>','streamPassword','String',0,'-','','取流密码',0,51,344,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(349,'8d12fe1f4b62b017cd27d27a49c9dc40','taskType','enum',0,'-','PLAN','PLAN、TEMP',0,51,344,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(350,'f355fe89146edc4809045669c75b9299','exeTimeList','List',0,'-','','taskType为计划任务-plan时的时间布控列表',0,51,344,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(351,'8eab62b083c2fb6051122e8875a0d755','dataPullAdd','String',0,'-','','数据分析完成后的保存地址',0,51,344,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(352,'ccd8ab1473575f19f5015a48fde8526f','dataPullAdd','String',0,'-','','数据分析完成后的保存地址',0,51,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(353,'93eb2b324c181df9dc75ce1bce13e6e4','id','string',1,'-','','',0,52,0,0,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(354,'c0f68ddc15537f61229f649a35500aac','code','Integer',0,'-','0','状态码,0:成功',0,52,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(355,'66fdc564527e1d4d3c50829fb70b3747','data','object',0,'','','数据',0,52,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(356,'96353337ab70a5596e68be6cd806ddee','question','object',0,'','','问题',0,52,355,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(357,'cdc554f0f6380904cf717c450d30dce1','id','Long',0,'-','','问题id',0,52,356,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(358,'cf32de5da3fd31336f3111617f585f36','surveyId','Integer',0,'-','','问卷的id',0,52,356,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(359,'09f7e3a09bba291560f5868173e0f302','questionType','String',0,'-','','问题的类型(1是单选,2是多选,3是填空)',0,52,356,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(360,'3798c39454ee3f93d7011a57a05d4add','optionMin','Integer',0,'-','','当问题是多选时答案的数量,最少个数',0,52,356,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(361,'ace9afd79c115ba19e25860b52a91626','optionMax','Integer',0,'-','','当问题是多选时答案的数量,最多个数',0,52,356,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(362,'754ddf8a0df9c4d32260ca88f41148be','questionDesc','String',0,'-','','问题描述',0,52,356,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(363,'42aa98baac35a439d255b0536cfeb78a','sortNum','Integer',0,'-','','问题顺序号',0,52,356,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(364,'1ef5864d9c9683d2c6ddad96ed35f872','options','List',0,'','','问题所有的可选项',0,52,355,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(365,'62665ed969a10a571cc06e14d52f7ade','id','Long',0,'-','','选项的id',0,52,364,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(366,'d0b50233b78c5455d5a0fafbcefdc9c8','questionId','Long',0,'-','','选项对应问题的id',0,52,364,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(367,'d6475b0dda9f96760708f190dc8df14a','optionDesc','String',0,'-','','选项的描述',0,52,364,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(368,'7a01f0e847f7884132effe56b56dd1a6','optionImg','String',0,'-','','选项的图片(只能有1张)',0,52,364,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(369,'955ef40b423c737c8817035478cbac7a','optionInput','String',0,'-','','选项是否要求录入答案,0不可录入,1可以录入,2必须录入',0,52,364,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(370,'6cad2480b1ab430ec425ab78969ad112','sortNum','Integer',0,'-','','选项的顺序号',0,52,364,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(371,'36cb49281234e3c5ae9832606559ae1f','selectedCount','Integer',0,'-','','选择此项目的总人数',0,52,364,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(372,'f720f264e7b526002391986eaf0c2bc2','userSelected','boolean',0,'-','','当前用户是否选择了此答案',0,52,364,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(373,'d2e4d0e8fe69830e4269debabbe8f3c9','optionText','String',0,'-','','当前用户输入的文本答案',0,52,364,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(374,'607e8b399a67097ae372c851ee99bccf','optionText','String',0,'-','','当前用户输入的文本答案/只有填空题才有',0,52,355,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(375,'395e4f07e8938d2863495c3b8e74418f','msg','String',0,'-','','消息',0,52,0,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(376,'f2d987468ab3ad8045489e9fee90b8dc','values','List<List<String>>',0,'-','','坐标值',0,53,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(377,'476b0c03e135d9150cb5347806b3e825','x_aix','List',0,'-','','X名称',0,53,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(378,'5935691ff0097371163639c3fae4be66','y_aix','List',0,'-','','Y名称',0,53,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(379,'5a7be921b6dd351b33c261421c1259c3','id','String',0,'-','','id',0,54,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(380,'60db8b48f029bc4e042ec55bc723b42a','orderVOS','List<List<OrderVO>>',0,'-','','orders',0,54,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(381,'a873449c0f0dd42d15276154d5c05012','id','string',0,'-','','',0,55,0,5,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(382,'a256272e13dcfc818ec24f0f2dfa9fca','code','Integer',0,'-','0','状态码,0:成功',0,55,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(383,'5f725b24c6e20cae3db04593bc19d6f4','data','object',0,'-','','数据',0,55,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(384,'2fd159635e61081dbfd04299046c6eca','msg','String',0,'-','','消息',0,55,0,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(385,'8fe67ba663ec50bd5481c3a239cbb4fc','productNo','integer',1,'-','','',0,57,0,0,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(386,'5fe32abb6555b323cd3104844817a1a1','token','String',1,'-','','',0,57,0,1,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(387,'2a87ff8429a9559b69420f93b0331ee9','qid','string',1,'-','','',0,57,0,5,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(388,'8e3f190b648e81ed4f638cf9cf352c0e','id','Integer',1,'-','1','查询id',0,57,0,5,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(389,'c9633e657bab224e17aa7aededb52a37','orderNo','Integer',0,'-','xxx','订单id',0,57,0,5,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(390,'dd1e45596c46fbcbc4be4db8224a6f37','code','Integer',0,'-','0','状态码,0:成功',0,57,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(391,'15689ef71662bc44c9a4ef595ac5664f','data','array',0,'','','数据',0,57,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(392,'6e89ea7ae46c848a837f64489ea2fbef','userId','number',0,'-','123','用户id',0,57,391,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(393,'f8826064b462c4c4dc96cf116b349eaa','orderNo','String',0,'-','xxx','订单号',0,57,391,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(394,'444d3cd9ed456c737e4eaf6212b3725e','payTime','Date',0,'-','2021-05-24 19:59:51','订单id',0,57,391,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(395,'64bbf35490adf70fa78d2d21cdbedb53','remark','String',0,'-','','',0,57,391,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(396,'5352c6cf1225795e200cff16bd598e34','msg','String',0,'-','','消息',0,57,0,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(397,'1a4a385f1f1ca4974997531b771082f8','pagger','object',0,'','','',0,58,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(398,'8fd01f1981ba3100ce80b56c60bf8cd9','records','List',0,'','','查询数据列表',0,58,397,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(399,'93e608519daa7240868a134389fce1df','productNo','String',0,'-','aaaa','产品id',0,58,398,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(400,'8200494d98bf42ba0303019e7572cde4','remark','String',0,'-','小米','备注',0,58,398,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(401,'89bdaf4b2825bd3a607297fa5177278c','productDetailVO','object',0,'','','产品详情',0,58,398,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(402,'e618389af96b1fb023c7baf3e06ef360','productNo','String',0,'-','aaaa','产品id',0,58,401,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(403,'b3058480b7662aa11ab2c785b2a245ac','remark','String',0,'-','小米','备注',0,58,401,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(404,'4fcd6f06f9b18db62c5d1b88f1192a05','total','long',0,'-','100','总数',0,58,397,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(405,'40a044952383999a1e8c56b7e2723449','size','long',0,'-','10','页数',0,58,397,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(406,'99c0bbe6de63c9c7fa03c082b7c5405b','current','long',0,'-','1','当前页',0,58,397,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(407,'84641fa89614fd63f066375181e0a4f2','optimizeCountSql','boolean',0,'-','','',0,58,397,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(408,'f9ecb5dc5a36de37f350d2db0af776e1','isSearchCount','boolean',0,'-','','',0,58,397,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(409,'860cdf145a8c19e79c683f221d84d799','hitCount','boolean',0,'-','','',0,58,397,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(410,'7fa47eff70f0e1a8a5579f7e679d6dc1','maxLimit','Long',0,'-','','',0,58,397,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(411,'c5d90dfdcaf13aa7c1f5bfaad1533476','condition','object',0,'','','',0,58,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(412,'86ede6e1d963c22e6e6b77e1636a7002','id','Integer',1,'-','1','查询id',0,58,411,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(413,'4a48b9b3265afbe550157b59c6e4db1c','orderNo','Integer',0,'-','xxx','订单id',0,58,411,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(414,'61ba97daa0e4ef23f00f4e050edc5a0e','code','Integer',0,'-','0','状态码,0:成功',0,58,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(415,'9c5ec06f8a5309e8bfb81ab253e42e41','data','object',0,'','','数据',0,58,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(416,'268ec8abb4ba7d59649e4808e14c6700','records','List',0,'','','查询数据列表',0,58,415,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(417,'9cec1e6a149c3c653e90e113cc7ad426','userId','number',0,'-','123','用户id',0,58,416,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(418,'ec1244d36a9399e0c21adcd20b239546','orderNo','String',0,'-','xxx','订单号',0,58,416,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(419,'4263c12f1af5b48aa2bde97b7097c81c','payTime','Date',0,'-','2021-05-24 19:59:51','订单id',0,58,416,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(420,'2d35319e25409ba8bb14bf3f7b5e32bb','remark','String',0,'-','','',0,58,416,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(421,'9cf52e011c3bad2e9b0d3d21f02703ff','total','long',0,'-','100','总数',0,58,415,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(422,'4161b546ae6bf5aa732e0a91aab12313','size','long',0,'-','10','页数',0,58,415,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(423,'3a2b99c0e5c5cd5069fb05a4a3e90de1','current','long',0,'-','1','当前页',0,58,415,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(424,'6deb6113dbf812f84b9c3f30b534b5ba','optimizeCountSql','boolean',0,'-','','',0,58,415,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(425,'df1fe52ec57e800e20f3217756405211','isSearchCount','boolean',0,'-','','',0,58,415,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(426,'d4670a89fffecd79d172fd27e38065dd','hitCount','boolean',0,'-','','',0,58,415,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(427,'761f5b3f6ba79902373765697edbe146','maxLimit','Long',0,'-','','',0,58,415,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(428,'bf094560a3e64ada07d35097d2b1520a','msg','String',0,'-','','消息',0,58,0,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(429,'f3de15ada6c3e84826b8a9d49ebfe05a','records','List',0,'','','查询数据列表',0,59,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(430,'e5da56dae02fac7183db77c3b604db4e','productNo','String',0,'-','aaaa','产品id',0,59,429,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(431,'16afd7faed6074acaacac9cce155411a','remark','String',0,'-','小米','备注',0,59,429,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(432,'33434ecac5053c9ddcbf2a7303fcdbcd','productDetailVO','object',0,'','','产品详情',0,59,429,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(433,'faffc8e6907b9eec4b7e7d9962525aa7','productNo','String',0,'-','aaaa','产品id',0,59,432,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(434,'19fbb721ab52d8a7b057bb772f6d4dd1','remark','String',0,'-','小米','备注',0,59,432,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(435,'1d77bc761000c10bf3488f6800ef21ef','total','long',0,'-','100','总数',0,59,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(436,'a5f5de12c6b8ff07df708a7e92a5aa7e','size','long',0,'-','10','页数',0,59,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(437,'36540e825a4269d246ee8197b1eabd86','current','long',0,'-','1','当前页',0,59,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(438,'71883dbc32f8d642fd60028954bd0b5a','optimizeCountSql','boolean',0,'-','','',0,59,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(439,'8cd0921213e448db26e1066598ed3365','isSearchCount','boolean',0,'-','','',0,59,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(440,'81e11569887ed1ba5b6b451f6e4329ef','hitCount','boolean',0,'-','','',0,59,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(441,'ca0842737ffcff536ad646bbd7cc2881','maxLimit','Long',0,'-','','',0,59,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(442,'d9ebda1baa33de76fd2b00d563f7ea59','code','Integer',0,'-','0','状态码,0:成功',0,59,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(443,'a4c260403d7f3d3872c298594653f823','data','object',0,'','','数据',0,59,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(444,'f14808c806f3ef3b2820b9801d8230d1','userId','number',0,'-','123','用户id',0,59,443,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(445,'46cfff96c06b95023ef0f70a80fd80d0','orderNo','String',0,'-','xxx','订单号',0,59,443,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(446,'caf010ea4803ccacbc95990fcb687dad','payTime','Date',0,'-','2021-05-24 19:59:51','订单id',0,59,443,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(447,'21c55f53f1a2ee768197892d15744e6c','remark','String',0,'-','','',0,59,443,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(448,'0e3263c38350a61450605a2322be9560','msg','String',0,'-','','消息',0,59,0,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(449,'a8d11c6a605589faec5968c9eb805cfa','productNo','String',0,'-','aaaa','产品id',0,60,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(450,'7ecc7388f7f17e76444fb1455cabd205','remark','String',0,'-','小米','备注',0,60,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(451,'d903b5669cd5970805b1c2cdde1fd367','productDetailVO','object',0,'','','产品详情',0,60,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(452,'cc33ca406a90a531dd83c27f4552dc64','productNo','String',0,'-','aaaa','产品id',0,60,451,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(453,'b27a2b099a0e05d5d295fa7bc62d26cf','remark','String',0,'-','小米','备注',0,60,451,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(454,'6f685f2495e2d442affdd16d01b30685','code','Integer',0,'-','0','状态码,0:成功',0,60,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(455,'07244d3ebc8a2f54d8b013804f6e8615','data','Object',0,'-','','数据',0,60,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(456,'b7b2ebe4b999af024cd49e987a8f879d','msg','String',0,'-','','消息',0,60,0,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(457,'55c3fb7416ccfa56f952661291e35b3c','orderNo','string',1,'-','xxx','订单id',0,61,0,5,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(458,'4df4814359aa843cc54d64185189a1d7','code','Integer',0,'-','0','状态码,0:成功',0,61,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(459,'3254213e545c1dbb1bdb16fdf3c40385','data','object',0,'','','数据',0,61,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(460,'0633389bd915b647c9c04fc269289ce9','userId','number',0,'-','123','用户id',0,61,459,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(461,'bcdb4fff7324c6f28ddcdff85bbe82ec','orderNo','String',0,'-','xxx','订单号',0,61,459,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(462,'ac341a8d5a14b7270c7d53cfd032e08c','payTime','Date',0,'-','2021-05-24 19:59:51','订单id',0,61,459,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(463,'41aad8f4f48f8de48daf623217fc45f7','remark','String',0,'-','','',0,61,459,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(464,'6ae6d5d1d8e3eece5dc370121d925f0e','msg','String',0,'-','','消息',0,61,0,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(465,'75b73addd3f2864293c1571eb8c7b8fb','orderNo','String',0,'-','aaaa','订单id',0,62,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(466,'ed299d9177839091b36393b781c41bbc','remark','String',0,'-','订单','备注',0,62,0,2,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(467,'f6f71464fdf6de818d4285888ca6bb12','code','Integer',0,'-','0','状态码,0:成功',0,62,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(468,'3ec21f516fb1b623e9de6c223b342d83','data','object',0,'','','数据',0,62,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(469,'c85959e707342c4ee294aa324b912e81','orderNo','String',0,'-','aaaa','订单id',0,62,468,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(470,'beab5164e53d11813453896f1966eb89','remark','String',0,'-','订单','备注',0,62,468,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(471,'f42bf9fcf8f4ee588585731b4fbe3782','msg','String',0,'-','','消息',0,62,0,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(472,'288ba08607af915a52819338930acecb','100001','String',0,'-','','id错误',0,62,0,4,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(473,'7d580dc64be377746f223f28fc929cef','100002','String',0,'-','','错误描述2',0,62,0,4,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(474,'d519f7c58c045651433de4e912041169','100003','String',0,'-','','错误描述3',0,62,0,4,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(475,'3cad0ab48af1979ff352d8ed53109c3b','productNo','integer',1,'-','11','产品id',0,63,0,0,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(476,'f01ff9460532d0cfe9610025118e9143','token','String',1,'-','asdfe','token',0,63,0,1,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(477,'ceabe766b0c9fc67b19c79707d72d874','qid','string',1,'-','xx','查询id',0,63,0,5,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(478,'f4201e9746cd51dae2a6fa289e89fa3e','id','Integer',0,'-','123','id',0,63,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(479,'bbc20959c89560d7621bd2409073c317','orderNo','String',0,'-','aaaa','订单id',0,63,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(480,'976d4aa3c60367f0fc09563e30def828','code','Integer',0,'-','0','状态码,0:成功',0,63,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(481,'7da68668e7ad6f4ec03fd669c33265e0','data','object',0,'','','数据',0,63,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(482,'17b0104dbadca9ca97834e0d51e9443d','orderNo','String',0,'-','aaaa','订单id',0,63,481,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(483,'f88be63c0b18440da55c51bf771d6cbd','remark','String',0,'-','订单','备注',0,63,481,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(484,'de5098f20b175539e1caaed112db56d5','orderDetail','object',0,'','','订单详情',0,63,481,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(485,'b78454d4905fc873b46f74778038dba6','userId','number',0,'-','123','用户id',0,63,484,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(486,'93587d1417fa570a9a9430ad8e839f97','orderNo','String',0,'-','xxx','订单号',0,63,484,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(487,'7dd521617b28bd4333171c243debcb5c','payTime','Date',0,'-','2021-05-24 19:59:51','订单id',0,63,484,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(488,'c2471ed9d53dc68e9087a20d36ea7c89','remark','String',0,'-','','',0,63,484,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(489,'a564877cc394b8cd7ca567878c3a9094','products','List',0,'','','产品详情',0,63,481,3,1,1,99999,'Tom',99999,'Tom',3,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(490,'0ef71d742f6e94d93cd645f13296c9e7','productNo','String',0,'-','aaaa','产品id',0,63,489,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(491,'48815f076790c183657e75ef05d4117b','remark','String',0,'-','小米','备注',0,63,489,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(492,'c992dda98dcf2b5ff28a7021632ad95b','productDetailVO','object',0,'','','产品详情',0,63,489,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(493,'b60d8e5b12b8b65206b92ca59f472511','productNo','String',0,'-','aaaa','产品id',0,63,492,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(494,'b9d304343aeb0e38638ad756d233d8b2','remark','String',0,'-','小米','备注',0,63,492,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(495,'f4cffca43fba3ae36090292ef95f027f','products2','List',0,'','','产品详情2',0,63,481,3,1,1,99999,'Tom',99999,'Tom',4,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(496,'0056f081b1f7975111e075489ad48c90','productNo','String',0,'-','aaaa','产品id',0,63,495,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(497,'c4dda06fdf732eb99dd683ea5a57cace','remark','String',0,'-','小米','备注',0,63,495,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(498,'177948386f569e43346b9061adac91ac','productDetailVO','object',0,'-','','产品详情',0,63,495,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(499,'fe09539d8e520db60f4700ff697f8f0f','products3','List',0,'','','产品详情3',0,63,481,3,1,1,99999,'Tom',99999,'Tom',5,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(500,'0fa7977198b9feafabe42361615fa229','productNo','String',0,'-','aaaa','产品id',0,63,499,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(501,'5b0f799187ef076a437af65fa70668fc','remark','String',0,'-','小米','备注',0,63,499,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(502,'796155f110a4ddb3f32a93b7774dce1e','productDetailVO','object',0,'-','','产品详情',0,63,499,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(503,'e4dde7283fb3c8d9137c37515d90a274','productArr','ProductVO[]',0,'','','产品详情arr',0,63,481,3,1,1,99999,'Tom',99999,'Tom',6,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(504,'3cfa4a544238c2dc23368fa8eb8b486b','productNo','String',0,'-','aaaa','产品id',0,63,503,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(505,'69575a23cf30ccd0db04665a41e26d47','remark','String',0,'-','小米','备注',0,63,503,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(506,'ed3b8b8f4c03236c384999543bf2cce7','productDetailVO','object',0,'-','','产品详情',0,63,503,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(507,'59e17875e45e196e3417bc4cc99bfba4','msg','String',0,'-','','消息',0,63,0,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(508,'37c46bcd88d0f6c35e6a4658249a4029','orderNo','string',1,'-','xxx','订单id',0,64,0,5,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(509,'17ad5222b0b522f43fbaca1c3e8a1adf','code','Integer',0,'-','0','状态码,0:成功',0,64,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(510,'033671a4c22013d7a628b5aa378f56e5','data','object',0,'','','数据',0,64,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(511,'9334cba0c59130cc2d4d85a577a95873','userId','number',0,'-','123','用户id',0,64,510,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(512,'6b2ee6ee96e6eb7b18fe2e841e1e2e35','orderNo','String',0,'-','xxx','订单号',0,64,510,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(513,'0bb05cb05aaf86282c5690ea8f97c34f','payTime','Date',0,'-','2021-05-24 19:59:51','订单id',0,64,510,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(514,'470db38117a7fdf132984a048327ede2','remark','String',0,'-','','',0,64,510,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(515,'870da3309bedc54fb9cfb09776f6b9a3','msg','String',0,'-','','消息',0,64,0,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(516,'4a95b3462d5638b8ca470925c970815e','id','Integer',1,'-','1','查询id',0,65,0,5,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(517,'9a05476db6a9994603375360e0dd1e66','orderNo','Integer',0,'-','xxx','订单id',0,65,0,5,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(518,'1a23f5d24a1bd39d828054b40069e06e','code','Integer',0,'-','0','状态码,0:成功',0,65,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(519,'c05bd6b39f3db0ac5949d81ee7df282f','data','object',0,'','','数据',0,65,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(520,'de9711a34cf449fdddaccd0a428adf57','userId','number',0,'-','123','用户id',0,65,519,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(521,'0cc7d8cefd1ea9ccb6c2fae9afe37762','orderNo','String',0,'-','xxx','订单号',0,65,519,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(522,'55f9568d14bd084b544bc31255c939ba','payTime','Date',0,'-','2021-05-24 19:59:51','订单id',0,65,519,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(523,'e6f4a3ced8aed7af6ed501c987e660e0','remark','String',0,'-','','',0,65,519,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(524,'548ccb811dc80e238a21ad2d030e0f4e','msg','String',0,'-','','消息',0,65,0,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(525,'342d73b8c2df44584fa86f6f1cb89432','orderNo','String',0,'-','aaaa','订单id',0,66,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(526,'210ec971c61126b18dc36ab82172b27f','remark','String',0,'-','订单','备注',0,66,0,2,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(527,'d593314b8b3c4b21ee768cf90b99fb58','code','Integer',0,'-','0','状态码,0:成功',0,66,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(528,'5fcbf6084bbeaff956ab864aafb1bef3','data','object',0,'','','数据',0,66,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(529,'da0a0c198e92110f6e62afc88bcb7e7b','orderNo','String',0,'-','aaaa','订单id',0,66,528,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(530,'0d98810691f267cd550427e036b493b3','remark','String',0,'-','订单','备注',0,66,528,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(531,'1cd70eeaa781f16d84c52892b1ec4f2a','msg','String',0,'-','','消息',0,66,0,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(532,'7ae047690a840884642b813e0cd1b05e','orderNo','string',1,'-','xxx','订单id',0,67,0,0,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(533,'4df7fb01e005f6ad10b9495fab6480f0','code','Integer',0,'-','0','状态码,0:成功',0,67,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(534,'8be19b06d35b4922df2215d182a27eb4','data','object',0,'','','数据',0,67,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(535,'6e8122d8dd72d6f0caef1f0058273ab3','userId','number',0,'-','123','用户id',0,67,534,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(536,'31940e0eabe9a2df2d50609e4bde274d','orderNo','String',0,'-','xxx','订单号',0,67,534,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(537,'6d108520819df5ab5eafd1d083bd2372','payTime','Date',0,'-','2021-05-24 19:59:51','订单id',0,67,534,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(538,'609d7ac9c782dfef6c60405253c22570','remark','String',0,'-','','',0,67,534,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(539,'1ab3bde4827c4569dd6da39517dafe96','msg','String',0,'-','','消息',0,67,0,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(540,'1e9a4871c5cb64070b29fa184cf4291c','id','Integer',1,'-','1','查询id',0,68,0,5,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(541,'4775a1027ec9007467dfc9d4df931149','orderNo','Integer',0,'-','xxx','订单id',0,68,0,5,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(542,'edd6a3dc6f7c5a22dae399d2d42b650b','pid','string',0,'-','111','产品id,外面的',0,68,0,5,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(543,'34a6da7fbd078e455642498955144e0f','code','Integer',0,'-','0','状态码,0:成功',0,68,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(544,'2180b02ec88ef76ca2972a8597878990','data','object',0,'','','数据',0,68,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(545,'2191c459d35a2731fcd5dbfffa6c2534','userId','number',0,'-','123','用户id',0,68,544,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(546,'cee2610e08f8ccfb96e2687f6b98c05f','orderNo','String',0,'-','xxx','订单号',0,68,544,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(547,'9df405a73364988dfdc6aefc60a479d4','payTime','Date',0,'-','2021-05-24 19:59:51','订单id',0,68,544,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(548,'b39b17fcadabd46f18591d312758950d','remark','String',0,'-','','',0,68,544,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(549,'25b5a818d28763601593a2657b8c9286','msg','String',0,'-','','消息',0,68,0,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(550,'f1fb0c11a87afc1476d644a62dc8a95d','productNo','integer',1,'-','11','产品id',0,69,0,0,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(551,'4bf0fe62fce6dec53abdbe1aec44648e','token','String',1,'-','asdfe','token',0,69,0,1,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(552,'8355346d115b830ad39919ffa4786bbe','qid','string',1,'-','xx','查询id',0,69,0,5,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(553,'0c51908286b882d68d413f58b3ea4c25','id','Integer',0,'-','123','id',0,69,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(554,'39fbf1f04ea5e3ab72413224befbad34','orderNo','String',0,'-','aaaa','订单id',0,69,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(557,'c22d439dcb6858489fee71a81def6d67','code','Integer',0,'-','0','状态码,0:成功',0,69,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(558,'11a3fbe1040dd5713cf3db20fe24320c','data','Object',0,'-','','数据',0,69,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(559,'23671b5e7eaacf6e20efbc70dd47b295','msg','String',0,'-','','消息',0,69,0,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(560,'54dc55cdd3ccd2a947abbd7838b0e9a3','productNo','integer',1,'-','11','产品id',0,70,0,0,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(561,'8fed34bae052d0dbdd66d0c3540fbe1e','token','String',1,'-','asdfe','token',0,70,0,1,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(562,'0d656f9e3d76ff133524969bce910adc','qid','string',1,'-','xx','查询id',0,70,0,5,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(563,'d4175253f43895d7a376a81232af1c2d','file','file',1,'-','','文件',0,70,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(564,'1354c255bb4977853ea4798c8b5d95f5','code','Integer',0,'-','0','状态码,0:成功',0,70,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(565,'1dc3e6ac78882c41bcec764f34630d6b','data','Object',0,'-','','数据',0,70,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(566,'128bbe51fa8b443eeec04eab6bf2ddca','msg','String',0,'-','','消息',0,70,0,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(567,'37f2a8ef0c290eb05e8eae86f5733022','productNo','integer',1,'-','11','产品id',0,71,0,0,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(568,'316e8e7147429b2d49870a0ac57d2668','token','String',1,'-','asdfe','token',0,71,0,1,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(569,'a5f31711ab5daa21fb5d390a7d0c7efc','qid','string',1,'-','xx','查询id',0,71,0,5,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(570,'d280905cc1bac8b51e48146e0c09be0c','id','Integer',0,'-','123','id',0,71,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(571,'e98c5bd85fcf14a5572c10806316def1','orderNo','String',0,'-','aaaa','订单id',0,71,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(574,'7e4dcfed3321604ddb154ebd25ca2f5b','code','Integer',0,'-','0','状态码,0:成功',0,71,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(575,'e1896246b9065ba9fb52beb8a87e4443','data','object',0,'','','数据',0,71,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(576,'6fa4ac45592367612d74fa4ff0832c2f','orderNo','String',0,'-','aaaa','订单id',0,71,575,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(577,'1b65e337d0f89798e0dfcd596a6ad330','remark','String',0,'-','订单','备注',0,71,575,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(578,'1cf72e7793fad4cfc212ae5e4ffed06e','orderDetail','object',0,'','','订单详情',0,71,575,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(579,'465cf4115ac5f352df332e7bc03cbdb9','userId','number',0,'-','123','用户id',0,71,578,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(580,'774831685377127e2afd000031650738','orderNo','String',0,'-','xxx','订单号',0,71,578,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(581,'01f661ffc66227005fa84f4036cba34c','payTime','Date',0,'-','2021-05-24 19:59:51','订单id',0,71,578,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(582,'6e5dc340d5e6c94afc60bbe94e31a57a','remark','String',0,'-','','',0,71,578,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(583,'61c7046344ce9643727c3e8da11c4708','products','List',0,'','','产品详情',0,71,575,3,1,1,99999,'Tom',99999,'Tom',3,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(584,'62e57e0c0bd010fc319c53f843cf1e68','productNo','String',0,'-','aaaa','产品id',0,71,583,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(585,'7e93830da8903d003acb617c2011e9b7','remark','String',0,'-','小米','备注',0,71,583,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(586,'4a33e9b48efb834a9197fab6f93877cf','productDetailVO','object',0,'','','产品详情',0,71,583,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(587,'49df17749f7b17a0ce16177924cea846','productNo','String',0,'-','aaaa','产品id',0,71,586,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(588,'466d5f73d7640bb1f4f149444c93841e','remark','String',0,'-','小米','备注',0,71,586,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(589,'1e13e115431ef58d0198bcc41d0bb78f','products2','List',0,'','','产品详情2',0,71,575,3,1,1,99999,'Tom',99999,'Tom',4,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(590,'209d07af1d6dd388c322207776b848c1','productNo','String',0,'-','aaaa','产品id',0,71,589,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(591,'29ace4a898dff883249e19e43f4a1244','remark','String',0,'-','小米','备注',0,71,589,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(592,'0289b1669635b5d42d60dca767afd253','productDetailVO','object',0,'-','','产品详情',0,71,589,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(593,'fe1c4856a4711aef88a2013689208e05','products3','List',0,'','','产品详情3',0,71,575,3,1,1,99999,'Tom',99999,'Tom',5,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(594,'c9b9ee1cc7a5dd0a34163f85760c215a','productNo','String',0,'-','aaaa','产品id',0,71,593,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(595,'f8b9d02ee7197805b52c33ca3c0bf28c','remark','String',0,'-','小米','备注',0,71,593,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(596,'159d6a90515908f6a7ce912f242d0f72','productDetailVO','object',0,'-','','产品详情',0,71,593,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(597,'7f0e15ad55dfe5f69b3f8a3c03b899ce','productArr','ProductVO[]',0,'','','产品详情arr',0,71,575,3,1,1,99999,'Tom',99999,'Tom',6,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(598,'0cb15cd261a1e16e271fcd81da07a120','productNo','String',0,'-','aaaa','产品id',0,71,597,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(599,'18035ae37f1c0a994ac39383b404c90e','remark','String',0,'-','小米','备注',0,71,597,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(600,'7a84a63a69d5db2b27829a434a536856','productDetailVO','object',0,'-','','产品详情',0,71,597,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(601,'246baa01907332561b2fe960d3c34ba7','msg','String',0,'-','','消息',0,71,0,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(602,'104dca71e9cd944a5349192ece3e312a','code','Integer',0,'-','0','状态码,0:成功',0,72,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(603,'21f5838e13e24ce308ee9ce0a7fa7d2b','data','object',0,'','','数据',0,72,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(604,'b9309598175b91c540f76f82ea48c2db','id','Integer',0,'-','','',0,72,603,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(605,'48c0a9f4fbb1f180deb1669a7e438c4c','name','String',0,'-','','名称',0,72,603,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(606,'c5a90c65e650196bc3d38c2914c23b1b','parentId','Integer',0,'-','','父id',0,72,603,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(607,'7040cfaadd77f540db99037bf97b527a','children','List',0,'','','子节点',0,72,603,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(608,'6205a80a8dce923e76ca8d59d373d19e','id','Integer',0,'-','','',0,72,607,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(609,'8b5676813e3c30421ec5b8721530dda1','name','String',0,'-','','名称',0,72,607,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(610,'522e32b0ee9d491b1c03a398a7f98607','parentId','Integer',0,'-','','父id',0,72,607,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(611,'96b952f24c14cb097aca48cdaed7024c','children','List',0,'-','','子节点',0,72,607,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(612,'c52d939fd9f99660574743c949e4c2f3','msg','String',0,'-','','消息',0,72,0,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(613,'6aa4103aaff2c561d190e0c8ba7047bc','orderNo','String',0,'-','bbbb','订单id',0,73,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(614,'ed799dc71959d33564ff2e4d54647808','cycleProduct','object',0,'','','产品详情',0,73,0,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(615,'00755785429e574c7facd1b88adf046f','productNo','String',0,'-','aaaa','产品id',0,73,614,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(616,'c4d40198d54f3f9112ba4c28004602c7','cycleOrder','object',0,'','','订单详情',0,73,614,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(617,'5ccd8788262ee971ad119feb49435320','orderNo','String',0,'-','bbbb','订单id',0,73,616,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(618,'8ae1e7731304fa84b6f5422848ca50e0','cycleProduct','object',0,'-','','产品详情',0,73,616,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(619,'80ca989a36fe1947887c5d2b4a6a037d','cycleProductB','object',0,'','','产品详情B',0,73,616,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(620,'fd6a0e7d47a02ac070906b80b5c9ee64','productNo','String',0,'-','aaaa','产品id',0,73,619,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(621,'375fc96f198a3aadaab1cf7be48648e0','cycleOrder','object',0,'-','','订单详情',0,73,619,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(622,'dbb7f0c02f7c733680d8a9030709ad8a','cycleProductB','object',0,'','','产品详情B',0,73,0,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(623,'49f25e4042d60ab92cbb5170667ec4b4','productNo','String',0,'-','aaaa','产品id',0,73,622,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(624,'097d6eb410f29b9cfcdbad55cd7a9b5e','cycleOrder','object',0,'','','订单详情',0,73,622,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(625,'11cf4602d407c8b840b55ce4d57d7570','orderNo','String',0,'-','bbbb','订单id',0,73,624,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(626,'2265aa5e79c043d700a7b2811aa6de75','cycleProduct','object',0,'','','产品详情',0,73,624,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(627,'267df12faf3c76053f058ac501fccb7a','productNo','String',0,'-','aaaa','产品id',0,73,626,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(628,'5407e5d06e1c3564d47a36e7652c793d','cycleOrder','object',0,'-','','订单详情',0,73,626,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(629,'c02ce9b0279711149c4e73e744b7b94a','cycleProductB','object',0,'-','','产品详情B',0,73,624,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(630,'4b1fe836103c50c949a7682f5fa9c69e','orderNo','String',0,'-','aaaa','订单id',0,74,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(631,'fd1b1c2514b4660d55bbebc2b246dd6d','remark','String',0,'-','订单','备注',0,74,0,2,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(632,'a32db487b1723ef4b6d9774e7299101a','orderNo','String',0,'-','aaaa','订单id',0,74,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(633,'b7647ed1200915ebdbb2113bb336f281','remark','String',0,'-','订单','备注',0,74,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(634,'49f331dacf23f4e33a33b72b20e792be','orderNo','String',0,'-','aaaa','订单id',0,75,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(635,'80db6b80de1dddf3b44755aad57ddd1c','remark','String',0,'-','订单','备注',0,75,0,2,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(636,'4acc4bdd1a5e6e197ab7bf4d94015cb2','orderNo','String',0,'-','aaaa','订单id',0,75,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(637,'9c46558df8cb920f8d2d296cab4b63e1','remark','String',0,'-','订单','备注',0,75,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(638,'c9ef4f3d768de98b7d9d2a0a40959dc5','','integer',0,'-','1,2,3','订单id',0,76,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(639,'88f204bff5ea216de46f2c434232db7d','orderNo','String',0,'-','aaaa','订单id',0,76,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(640,'5d3265d4d49a22a4d1c294448066fef4','remark','String',0,'-','订单','备注',0,76,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(641,'bb163b1c0d9e1b78a58f8c18527bab18','orderNo','String',0,'-','aaaa','订单id',0,77,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(642,'dfb55d77329e08d900fbf4ea4943aa4d','remark','String',0,'-','订单','备注',0,77,0,2,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(643,'80a49b87d0ca09f135fa37ee5f0da18f','','integer',0,'-','1,2,3','订单id',0,77,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(644,'8d1ce6b0ac1d6b570a69161a205d5aa3','','integer',0,'-','1,2,3','订单id',0,78,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(645,'96ccd4755b5624a0e4bda68d6dbe1403','','integer',0,'-','4,5,6','返回订单id',0,78,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(646,'8e94984adc20cda2a781aa09429e2690','id','string',1,'-','xxx','id',0,79,0,5,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(647,'d465a13f7ad24bc64b9ac8b5d65467d7','orderNo','String',0,'-','aaaa','订单id',0,79,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(648,'f00933a9801f259bf00935d71ab0fa71','remark','String',0,'-','订单','备注',0,79,0,2,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(649,'04fd8db276069171155fb00a1edbc072','orderNo','String',0,'-','aaaa','订单id',0,79,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(650,'378c9b572b239db7360bec34f4ca88e9','remark','String',0,'-','订单','备注',0,79,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(651,'17a33b76c03267330d189dba29a5ff22','code','Integer',0,'-','0','状态码,0:成功',0,81,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(652,'3f16107cfc3ba23738c2ab9c599ab8a1','data','object',0,'','','数据',0,81,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(653,'fa82230c6371549369f01ad5fc1100e9','id','Integer',0,'-','','',0,81,652,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(654,'5506349ba3fa12e68d8f2e1a085cf6c5','name','String',0,'-','','名称',0,81,652,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(655,'7284b6100f2d6e05579d3b98af09bb7f','parentId','Integer',0,'-','','父id',0,81,652,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(656,'5940e3632ba01baf4e591910bb0103da','children','List',0,'','','子节点',0,81,652,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(657,'0f9a1553d382da0ae09e2d389bdfced7','id','Integer',0,'-','','',0,81,656,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(658,'164af4773aa93ab8b04cff716175b15a','name','String',0,'-','','名称',0,81,656,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(659,'e1d0e2edc428cb437db76ce32ab9b045','parentId','Integer',0,'-','','父id',0,81,656,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(660,'4df47e830e9552e927b0c1ca1d7b15a2','children','List',0,'-','','子节点',0,81,656,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(661,'db8cf23e44c6ea95483644d0803ba872','msg','String',0,'-','','消息',0,81,0,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(662,'7d9cbb5110bb583ec0a1f5addec1d379','productNo','integer',1,'-','123','产品id',0,82,0,0,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(663,'542ac6c4c833e79aebe857f2071a8e03','productNo','String',0,'-','aaaa','产品id',0,82,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(664,'75634022f52753a4ef3aca0b0bcf3c9b','remark','String',0,'-','小米','备注',0,82,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(665,'589d2af083f9b498d30816a51ae1c1e0','productDetailVO','object',0,'','','产品详情',0,82,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(666,'5b22d001724e814fe57c5955fbde58fe','productNo','String',0,'-','aaaa','产品id',0,82,665,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(667,'c558d82fd166fdb56e8bb6bafc72a02c','remark','String',0,'-','小米','备注',0,82,665,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(668,'2f1ba82dd979f45e2c383e22806dbb76','100001','String',0,'-','','id错误',0,82,0,4,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(669,'4bb3d4e75f58136f9375c03ba461c415','100002','String',0,'-','','错误描述2',0,82,0,4,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(670,'ca29c19d3db5e3b4412790997a144139','100003','String',0,'-','','错误描述3',0,82,0,4,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(671,'e8802fa3b3b58fabe19ab00697aa5626','type','string',1,'-','png','文件类型,png/jpeg',0,87,0,5,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(672,'bad7a881c73114a5175efec9ef400a33','file','file',1,'-','','产品模板文件',0,89,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(673,'bff3784c181139dc20a99ac814a99697','productNo','string',1,'-','111','产品id',0,89,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(674,'bf3192d191fd2768171d20ca709f09bc','code','Integer',0,'-','0','状态码,0:成功',0,89,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(675,'7c40a853270acbf6239477faaf23744d','data','Object',0,'-','','数据',0,89,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(676,'daf2e533ce23c4bac8429fe4c1d36ee1','msg','String',0,'-','','消息',0,89,0,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(677,'16c9ed5346b9c587f7ba97fcc4a783a3','file','MultipartFile',0,'-','','产品模板文件',0,90,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(678,'91bc05e8317d4ae8c22b305c2d0bf47e','files','MultipartFile[]',0,'-','','产品模板文件Array',0,90,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(679,'6db614ea5e3bfd3541ce45af6d74fcbb','fileList','List',0,'-','','产品模板文件List',0,90,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(680,'449c640e5c145bc5b28630bb23311f33','productNo','String',1,'-','111','产品id',0,90,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(681,'d90e9f88c27f62e7145a17580a25b27d','code','Integer',0,'-','0','状态码,0:成功',0,90,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(682,'6c2406d812d2d4fa433127b9beb6221d','data','Object',0,'-','','数据',0,90,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(683,'ac7b865f2fd98ee152b99b0a005b51f0','msg','String',0,'-','','消息',0,90,0,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(684,'0e2c396c09b4a1dc4d31df1ab00da60f','files','file[]',1,'-','','产品模板文件',0,91,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(685,'b71dfcd55d824deeeafc511ac3962fd2','productNo','string',1,'-','111','产品id',0,91,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(686,'e67eede9884e536f5297ba59f4a47780','code','Integer',0,'-','0','状态码,0:成功',0,91,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(687,'bf184588e7943e46e971c4b97337bc1a','data','Object',0,'-','','数据',0,91,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(688,'833862fb777c64ac881f70f37a5b0b56','msg','String',0,'-','','消息',0,91,0,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(689,'5b76345fda517f07c18a2c01fabdf2ab','username','String',1,'-','jim','用户名',0,93,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(690,'<PASSWORD>','password','String',1,'-','<PASSWORD>','密码',0,93,0,2,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(691,'<PASSWORD>','code','Integer',0,'-','0','状态码,0:成功',0,93,0,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(692,'19cfb8a2e10d23e22a518b6b7ee7cad3','data','object',0,'','','数据',0,93,0,3,1,1,99999,'Tom',99999,'Tom',1,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(693,'03376025094d959f3dc3c8e7de64c3cb','userId','Integer',1,'-','11','用户id',0,93,692,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(694,'<PASSWORD>','username','String',1,'-','jim','用户名',0,93,692,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(695,'8bf3549e0a98b0d69c7fb3063f95e6ec','token','String',1,'-','xx','token',0,93,692,3,1,1,99999,'Tom',99999,'Tom',0,0,'2022-02-27 15:09:24','2022-02-27 15:09:24'),(696,'fc598e914f59f9f387ce8477daf2bf71','msg','String',0,'-','','消息',0,93,0,3,1,1,99999,'Tom',99999,'Tom',2,0,'2022-02-27 15:09:24','2022-02-27 15:09:24');
/*Table structure for table `enum_info` */
DROP TABLE IF EXISTS `enum_info`;
CREATE TABLE `enum_info` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`data_id` varchar(64) NOT NULL DEFAULT '' COMMENT '唯一id,md5(module_id:name)',
`name` varchar(128) NOT NULL DEFAULT '' COMMENT '枚举名称',
`description` varchar(128) NOT NULL DEFAULT '' COMMENT '枚举说明',
`module_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'module.id',
`is_deleted` tinyint(4) NOT NULL DEFAULT '0',
`gmt_create` datetime DEFAULT CURRENT_TIMESTAMP,
`gmt_modified` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE,
KEY `idx_moduleid` (`module_id`) USING BTREE,
KEY `idx_dataid` (`data_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='枚举信息';
/*Data for the table `enum_info` */
insert into `enum_info`(`id`,`data_id`,`name`,`description`,`module_id`,`is_deleted`,`gmt_create`,`gmt_modified`) values (2,'e743329c70009ed5cfa591856a1c0739','错误码','这里是全局错误码',4,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(3,'1a72fa2c1cdd8bfac8fb7ea5b1d94fca','订单状态枚举','',4,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(4,'bca608b86a8e7d6e8371f62640111d91','用户状态','',4,0,'2022-02-27 15:09:23','2022-02-27 15:09:23');
/*Table structure for table `enum_item` */
DROP TABLE IF EXISTS `enum_item`;
CREATE TABLE `enum_item` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`enum_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'enum_info.id',
`name` varchar(128) NOT NULL DEFAULT '' COMMENT '名称,字面值',
`type` varchar(64) NOT NULL DEFAULT '' COMMENT '类型',
`value` varchar(64) NOT NULL DEFAULT '' COMMENT '枚举值',
`description` varchar(128) NOT NULL DEFAULT '' COMMENT '枚举描述',
`order_index` int(11) NOT NULL DEFAULT '0' COMMENT '排序索引',
`is_deleted` tinyint(4) NOT NULL DEFAULT '0',
`gmt_create` datetime DEFAULT CURRENT_TIMESTAMP,
`gmt_modified` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE,
KEY `idx_enumid` (`enum_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='枚举详情';
/*Data for the table `enum_item` */
insert into `enum_item`(`id`,`enum_id`,`name`,`type`,`value`,`description`,`order_index`,`is_deleted`,`gmt_create`,`gmt_modified`) values (1,2,'W_10001','string','W_10001','参数错误',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(2,2,'W_10002','string','W_10002','缺少token',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(3,2,'10000','number','10000','缺少参数',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(4,3,'WAIT_PAY','number','0','未支付',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(5,3,'HAS_PAY','number','1','已支付',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(6,3,'CANCEL','number','2','取消支付',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(7,4,'ENABLE','number','1','启用',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23'),(8,4,'DISABLE','number','0','禁用',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23');
/*Table structure for table `mock_config` */
DROP TABLE IF EXISTS `mock_config`;
CREATE TABLE `mock_config` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL DEFAULT '' COMMENT '名称',
`data_id` varchar(64) NOT NULL DEFAULT '' COMMENT 'md5(path+query+body)',
`path` varchar(128) NOT NULL DEFAULT '',
`ip` varchar(64) NOT NULL DEFAULT '' COMMENT '过滤ip',
`request_data` text NOT NULL COMMENT '请求参数',
`request_data_type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '参数类型,0:KV形式,1:json形式',
`http_status` int(11) NOT NULL DEFAULT '200' COMMENT 'http状态',
`delay_mills` int(11) NOT NULL DEFAULT '0' COMMENT '延迟时间,单位毫秒',
`result_type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '返回类型,0:自定义内容,1:脚本内容',
`response_headers` text NOT NULL COMMENT '响应header,数组结构',
`response_body` text NOT NULL COMMENT '响应结果',
`mock_script` text COMMENT 'mock脚本',
`mock_result` text COMMENT 'mock结果',
`doc_id` bigint(20) NOT NULL DEFAULT '0' COMMENT '文档id',
`remark` varchar(128) NOT NULL DEFAULT '' COMMENT '备注',
`creator_id` bigint(20) NOT NULL DEFAULT '0' COMMENT '创建人id',
`creator_name` varchar(64) NOT NULL DEFAULT '' COMMENT '创建人姓名',
`modifier_id` bigint(20) NOT NULL DEFAULT '0' COMMENT '修改人id',
`modifier_name` varchar(64) DEFAULT NULL COMMENT '修改人',
`is_deleted` tinyint(4) NOT NULL DEFAULT '0',
`gmt_create` datetime DEFAULT CURRENT_TIMESTAMP,
`gmt_modified` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE,
KEY `idx_docid` (`doc_id`) USING BTREE,
KEY `idx_dataid` (`data_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='mock配置';
/*Data for the table `mock_config` */
/*Table structure for table `module` */
DROP TABLE IF EXISTS `module`;
CREATE TABLE `module` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL DEFAULT '' COMMENT '模块名称',
`project_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'project.id',
`type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '模块类型,0:自定义添加,1:swagger导入,2:postman导入',
`import_url` varchar(128) NOT NULL DEFAULT '' COMMENT '导入url',
`basic_auth_username` varchar(128) NOT NULL DEFAULT '' COMMENT 'basic认证用户名',
`basic_auth_password` varchar(128) NOT NULL DEFAULT '' COMMENT 'basic认证密码',
`token` varchar(128) NOT NULL DEFAULT '' COMMENT '开放接口调用token',
`create_mode` tinyint(4) NOT NULL DEFAULT '0' COMMENT '新增操作方式,0:人工操作,1:开放平台推送',
`modify_mode` tinyint(4) NOT NULL DEFAULT '0' COMMENT '修改操作方式,0:人工操作,1:开放平台推送',
`creator_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`modifier_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`order_index` int(11) NOT NULL DEFAULT '0' COMMENT '排序索引',
`is_deleted` tinyint(4) NOT NULL DEFAULT '0',
`gmt_create` datetime DEFAULT CURRENT_TIMESTAMP,
`gmt_modified` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `uk_token` (`token`) USING BTREE,
KEY `idx_projectid` (`project_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='项目模块';
/*Data for the table `module` */
insert into `module`(`id`,`name`,`project_id`,`type`,`import_url`,`basic_auth_username`,`basic_auth_password`,`token`,`create_mode`,`modify_mode`,`creator_id`,`modifier_id`,`order_index`,`is_deleted`,`gmt_create`,`gmt_modified`) values (4,'测试模块',4,0,'','','','78488946f9494242bb079f3acba907a6',0,0,15,15,0,0,'2022-02-27 15:08:45','2022-02-27 15:08:45');
/*Table structure for table `module_config` */
DROP TABLE IF EXISTS `module_config`;
CREATE TABLE `module_config` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`module_id` bigint(11) unsigned NOT NULL DEFAULT '0',
`type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '配置类型,1:全局header',
`config_key` varchar(128) NOT NULL DEFAULT '' COMMENT '配置key',
`config_value` varchar(128) NOT NULL DEFAULT '' COMMENT '配置值',
`extend_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`description` varchar(256) NOT NULL DEFAULT '' COMMENT '描述',
`is_deleted` tinyint(4) NOT NULL DEFAULT '0',
`gmt_create` datetime DEFAULT CURRENT_TIMESTAMP,
`gmt_modified` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE,
KEY `idx_moduleid_type` (`module_id`,`type`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='系统配置';
/*Data for the table `module_config` */
/*Table structure for table `module_environment` */
DROP TABLE IF EXISTS `module_environment`;
CREATE TABLE `module_environment` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`module_id` bigint(20) NOT NULL COMMENT 'module.id',
`name` varchar(64) NOT NULL DEFAULT '' COMMENT '环境名称',
`url` varchar(255) NOT NULL DEFAULT '' COMMENT '调试路径',
`is_public` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否公开',
`is_deleted` tinyint(4) NOT NULL DEFAULT '0',
`gmt_create` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`gmt_modified` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE,
KEY `uk_moduleid_name` (`module_id`,`name`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='模块调试环境';
/*Data for the table `module_environment` */
insert into `module_environment`(`id`,`module_id`,`name`,`url`,`is_public`,`is_deleted`,`gmt_create`,`gmt_modified`) values (2,4,'local','http://127.0.0.1:8088',0,0,'2022-02-27 15:09:23','2022-02-27 15:09:23');
/*Table structure for table `module_environment_param` */
DROP TABLE IF EXISTS `module_environment_param`;
CREATE TABLE `module_environment_param` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`data_id` varchar(64) NOT NULL DEFAULT '' COMMENT '唯一id,md5(doc_id:parent_id:style:name)',
`name` varchar(64) NOT NULL DEFAULT '' COMMENT '字段名称',
`type` varchar(64) NOT NULL DEFAULT 'String' COMMENT '字段类型',
`required` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否必须,1:是,0:否',
`max_length` varchar(64) NOT NULL DEFAULT '-' COMMENT '最大长度',
`example` varchar(1024) NOT NULL DEFAULT '' COMMENT '示例值',
`description` text NOT NULL COMMENT '描述',
`enum_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'enum_info.id',
`environment_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'module_environment.id',
`parent_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`style` tinyint(4) NOT NULL DEFAULT '0' COMMENT '0:path, 1:header, 2:请求参数,3:返回参数,4:错误码',
`create_mode` tinyint(4) NOT NULL DEFAULT '0' COMMENT '新增操作方式,0:人工操作,1:开放平台推送',
`modify_mode` tinyint(4) NOT NULL DEFAULT '0' COMMENT '修改操作方式,0:人工操作,1:开放平台推送',
`creator_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`creator_name` varchar(64) NOT NULL DEFAULT '',
`modifier_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`modifier_name` varchar(64) NOT NULL DEFAULT '',
`order_index` int(11) NOT NULL DEFAULT '0' COMMENT '排序索引',
`is_deleted` tinyint(4) NOT NULL DEFAULT '0',
`gmt_create` datetime DEFAULT CURRENT_TIMESTAMP,
`gmt_modified` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `uk_dataid` (`data_id`) USING BTREE,
KEY `idx_environmentid` (`environment_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='模块公共参数';
/*Data for the table `module_environment_param` */
/*Table structure for table `open_user` */
DROP TABLE IF EXISTS `open_user`;
CREATE TABLE `open_user` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`app_key` varchar(100) NOT NULL COMMENT 'appKey',
`secret` varchar(200) DEFAULT NULL COMMENT 'secret',
`status` tinyint(4) unsigned NOT NULL DEFAULT '1' COMMENT '1启用,0禁用',
`applicant` varchar(64) NOT NULL DEFAULT '',
`space_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'space.id',
`is_deleted` tinyint(4) NOT NULL DEFAULT '0',
`gmt_create` datetime DEFAULT CURRENT_TIMESTAMP,
`gmt_modified` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `uk_app_key` (`app_key`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='开放用户';
/*Data for the table `open_user` */
/*Table structure for table `project` */
DROP TABLE IF EXISTS `project`;
CREATE TABLE `project` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL DEFAULT '' COMMENT '项目名称',
`description` varchar(128) NOT NULL DEFAULT '' COMMENT '项目描述',
`space_id` bigint(20) NOT NULL DEFAULT '0' COMMENT '所属空间,space.id',
`is_private` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否私有项目,1:是,0:否',
`creator_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '创建者userid',
`creator_name` varchar(64) NOT NULL DEFAULT '',
`modifier_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`modifier_name` varchar(64) NOT NULL DEFAULT '',
`order_index` int(11) NOT NULL DEFAULT '0' COMMENT '排序索引',
`is_deleted` tinyint(4) NOT NULL DEFAULT '0',
`gmt_create` datetime DEFAULT CURRENT_TIMESTAMP,
`gmt_modified` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE,
KEY `uk_name` (`creator_id`,`name`) USING BTREE,
KEY `idx_spaceid` (`space_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='项目表';
/*Data for the table `project` */
insert into `project`(`id`,`name`,`description`,`space_id`,`is_private`,`creator_id`,`creator_name`,`modifier_id`,`modifier_name`,`order_index`,`is_deleted`,`gmt_create`,`gmt_modified`) values (4,'商城项目','商城项目示例',19,0,15,'超级管理员',15,'超级管理员',0,0,'2022-02-27 15:08:32','2022-02-27 15:08:32');
/*Table structure for table `project_user` */
DROP TABLE IF EXISTS `project_user`;
CREATE TABLE `project_user` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`project_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'project.id',
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'user_info.id',
`role_code` varchar(64) NOT NULL DEFAULT '0' COMMENT '角色,guest:访客,dev:开发者,admin:项目管理员',
`is_deleted` tinyint(4) NOT NULL DEFAULT '0',
`gmt_create` datetime DEFAULT CURRENT_TIMESTAMP,
`gmt_modified` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `uk_projectid_userid` (`project_id`,`user_id`) USING BTREE,
KEY `idx_userid` (`user_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='项目用户关系表';
/*Data for the table `project_user` */
insert into `project_user`(`id`,`project_id`,`user_id`,`role_code`,`is_deleted`,`gmt_create`,`gmt_modified`) values (10,4,15,'admin',0,'2022-02-27 15:08:32','2022-02-27 15:08:32');
/*Table structure for table `prop` */
DROP TABLE IF EXISTS `prop`;
CREATE TABLE `prop` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`ref_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '关联id',
`type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '类型,0:doc_info属性',
`name` varchar(64) NOT NULL DEFAULT '',
`val` text NOT NULL,
`gmt_create` datetime DEFAULT CURRENT_TIMESTAMP,
`gmt_modified` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `uk_docid_name` (`ref_id`,`type`,`name`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='属性表';
/*Data for the table `prop` */
/*Table structure for table `share_config` */
DROP TABLE IF EXISTS `share_config`;
CREATE TABLE `share_config` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '分享形式,1:公开,2:加密',
`password` varchar(128) NOT NULL DEFAULT '' COMMENT '密码',
`status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '状态,1:有效,0:无效',
`module_id` bigint(20) NOT NULL DEFAULT '0' COMMENT 'module.id',
`is_all` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否为全部文档',
`is_deleted` tinyint(4) NOT NULL DEFAULT '0',
`remark` varchar(128) NOT NULL DEFAULT '' COMMENT '备注',
`creator_name` varchar(64) NOT NULL DEFAULT '' COMMENT '创建人',
`is_show_debug` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否显示调试',
`is_all_selected_debug` tinyint(4) NOT NULL DEFAULT '1' COMMENT '调试环境是否全选, 1-全选, 0-不选',
`gmt_create` datetime DEFAULT CURRENT_TIMESTAMP,
`gmt_modified` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE,
KEY `idx_moduleid` (`module_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='分享配置表';
/*Data for the table `share_config` */
/*Table structure for table `share_content` */
DROP TABLE IF EXISTS `share_content`;
CREATE TABLE `share_content` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`share_config_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'share_config.id',
`doc_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '文档id',
`parent_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '父id',
`is_share_folder` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否分享整个分类',
`is_deleted` tinyint(4) NOT NULL DEFAULT '0',
`gmt_create` datetime DEFAULT CURRENT_TIMESTAMP,
`gmt_modified` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE,
KEY `idx_shareconfigid_docid` (`share_config_id`,`doc_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='分享详情';
DROP TABLE IF EXISTS `share_environment`;
create table `share_environment`
(
`id` bigint(20) unsigned auto_increment
primary key,
`share_config_id` bigint(20) unsigned default 0 null comment '分享配置id',
`module_environment_id` bigint(20) unsigned default 0 null comment '模块环境id',
KEY `share_environment_share_config_id_index` (`share_config_id`) USING BTREE
) ENGINE = InnoDB
DEFAULT CHARSET = utf8mb4
ROW_FORMAT = DYNAMIC COMMENT = '分享环境关联表';
/*Data for the table `share_content` */
/*Table structure for table `space` */
DROP TABLE IF EXISTS `space`;
CREATE TABLE `space` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL DEFAULT '' COMMENT '空间名称',
`creator_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '创建者userid',
`creator_name` varchar(64) NOT NULL DEFAULT '',
`modifier_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '创建者userid',
`modifier_name` varchar(64) NOT NULL DEFAULT '',
`is_compose` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否组合空间',
`is_deleted` tinyint(4) NOT NULL DEFAULT '0',
`gmt_create` datetime DEFAULT CURRENT_TIMESTAMP,
`gmt_modified` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='分组表';
/*Data for the table `space` */
insert into `space`(`id`,`name`,`creator_id`,`creator_name`,`modifier_id`,`modifier_name`,`is_compose`,`is_deleted`,`gmt_create`,`gmt_modified`) values (19,'研发中心',15,'超级管理员',15,'超级管理员',0,0,'2022-02-27 15:08:03','2022-02-27 15:08:03');
/*Table structure for table `space_user` */
DROP TABLE IF EXISTS `space_user`;
CREATE TABLE `space_user` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'user_info.id',
`space_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'space.id',
`role_code` varchar(64) NOT NULL DEFAULT '' COMMENT '角色,guest:访客,dev:开发者,admin:空间管理员',
`is_deleted` tinyint(4) NOT NULL DEFAULT '0',
`gmt_create` datetime DEFAULT CURRENT_TIMESTAMP,
`gmt_modified` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `uk_groupid_userid` (`space_id`,`user_id`) USING BTREE,
KEY `idx_userid` (`user_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='分组用户关系表';
/*Data for the table `space_user` */
insert into `space_user`(`id`,`user_id`,`space_id`,`role_code`,`is_deleted`,`gmt_create`,`gmt_modified`) values (25,15,19,'admin',0,'2022-02-27 15:08:02','2022-02-27 15:08:02');
/*Table structure for table `system_config` */
DROP TABLE IF EXISTS `system_config`;
CREATE TABLE `system_config` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`config_key` varchar(64) NOT NULL DEFAULT '',
`config_value` varchar(256) NOT NULL DEFAULT '',
`remark` varchar(128) NOT NULL DEFAULT '',
`is_deleted` tinyint(4) NOT NULL DEFAULT '0',
`gmt_create` datetime DEFAULT CURRENT_TIMESTAMP,
`gmt_modified` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `uk_configkey` (`config_key`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='系统配置表';
/*Data for the table `system_config` */
insert into `system_config`(`id`,`config_key`,`config_value`,`remark`,`is_deleted`,`gmt_create`,`gmt_modified`) values (2,'torna.version','1132','当前内部版本号。不要删除这条记录!!',0,'2022-02-27 14:56:51','2022-02-27 14:56:51');
/*Table structure for table `user_dingtalk_info` */
DROP TABLE IF EXISTS `user_dingtalk_info`;
CREATE TABLE `user_dingtalk_info` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`nick` varchar(64) NOT NULL DEFAULT '' COMMENT '用户在钉钉上面的昵称',
`name` varchar(64) NOT NULL DEFAULT '' COMMENT '员工名称。',
`email` varchar(128) NOT NULL DEFAULT '' COMMENT '员工邮箱。',
`userid` varchar(128) NOT NULL DEFAULT '' COMMENT '员工的userid。',
`unionid` varchar(128) NOT NULL DEFAULT '' COMMENT '用户在当前开放应用所属企业的唯一标识。',
`openid` varchar(128) NOT NULL DEFAULT '' COMMENT '用户在当前开放应用内的唯一标识。',
`user_info_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'user_info.id',
`gmt_create` datetime DEFAULT CURRENT_TIMESTAMP,
`gmt_modified` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `uk_unionid` (`unionid`) USING BTREE,
KEY `idx_openid` (`openid`) USING BTREE,
KEY `idx_userid` (`user_info_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='钉钉开放平台用户';
/*Data for the table `user_dingtalk_info` */
/*Table structure for table `user_info` */
DROP TABLE IF EXISTS `user_info`;
CREATE TABLE `user_info` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`username` varchar(128) NOT NULL DEFAULT '' COMMENT '登录账号/邮箱',
`password` varchar(128) NOT NULL DEFAULT '' COMMENT '登录密码',
`nickname` varchar(64) NOT NULL DEFAULT '' COMMENT '昵称',
`is_super_admin` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否是超级管理员',
`source` varchar(64) NOT NULL DEFAULT 'register',
`email` varchar(128) NOT NULL DEFAULT '',
`status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '0:禁用,1:启用,2:重设密码',
`is_deleted` tinyint(4) NOT NULL DEFAULT '0',
`gmt_create` datetime DEFAULT CURRENT_TIMESTAMP,
`gmt_modified` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `uk_username` (`username`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户表';
/*Data for the table `user_info` */
insert into `user_info`(`id`,`username`,`password`,`nickname`,`is_super_admin`,`source`,`email`,`status`,`is_deleted`,`gmt_create`,`gmt_modified`) values (15,'admin','f<PASSWORD>','超级管理员',1,'register','',1,0,'2022-02-27 14:56:51','2022-02-27 14:56:51');
/*Table structure for table `user_message` */
DROP TABLE IF EXISTS `user_message`;
CREATE TABLE `user_message` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'user_info.id',
`message` varchar(256) NOT NULL DEFAULT '',
`is_read` tinyint(4) NOT NULL DEFAULT '0',
`type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '同user_subscribe.type',
`source_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '同user_subscribe.source_id',
`gmt_create` datetime DEFAULT CURRENT_TIMESTAMP,
`gmt_modified` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE,
KEY `idx_userid` (`user_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='站内消息';
/*Data for the table `user_message` */
/*Table structure for table `user_subscribe` */
DROP TABLE IF EXISTS `user_subscribe`;
CREATE TABLE `user_subscribe` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'user_info.id',
`type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '类型,1:订阅接口,2:订阅项目',
`source_id` bigint(20) NOT NULL DEFAULT '0' COMMENT '关联id,当type=1对应doc_info.id;type=2对应project.id',
`is_deleted` tinyint(4) NOT NULL DEFAULT '0',
`gmt_create` datetime DEFAULT CURRENT_TIMESTAMP,
`gmt_modified` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `uk_userid_type_sourceid` (`user_id`,`type`,`source_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户订阅表';
/*Data for the table `user_subscribe` */
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
DO $$
BEGIN
IF NOT EXISTS (
SELECT 1 FROM information_schema.columns
WHERE table_schema=current_schema
AND table_name = 'security_key'
AND column_name='invocation_counter'
) THEN
ALTER TABLE ONLY security_key ADD COLUMN invocation_counter INTEGER;
END IF;
END;
$$
|
ATTACH VIEW columns
(
`table_catalog` String,
`table_schema` String,
`table_name` String,
`column_name` String,
`ordinal_position` UInt64,
`column_default` String,
`is_nullable` UInt8,
`data_type` String,
`character_maximum_length` Nullable(UInt64),
`character_octet_length` Nullable(UInt64),
`numeric_precision` Nullable(UInt64),
`numeric_precision_radix` Nullable(UInt64),
`numeric_scale` Nullable(UInt64),
`datetime_precision` Nullable(UInt64),
`character_set_catalog` Nullable(String),
`character_set_schema` Nullable(String),
`character_set_name` Nullable(String),
`collation_catalog` Nullable(String),
`collation_schema` Nullable(String),
`collation_name` Nullable(String),
`domain_catalog` Nullable(String),
`domain_schema` Nullable(String),
`domain_name` Nullable(String),
`TABLE_CATALOG` String ALIAS table_catalog,
`TABLE_SCHEMA` String ALIAS table_schema,
`TABLE_NAME` String ALIAS table_name,
`COLUMN_NAME` String ALIAS column_name,
`ORDINAL_POSITION` UInt64 ALIAS ordinal_position,
`COLUMN_DEFAULT` String ALIAS column_default,
`IS_NULLABLE` UInt8 ALIAS is_nullable,
`DATA_TYPE` String ALIAS data_type,
`CHARACTER_MAXIMUM_LENGTH` Nullable(UInt64) ALIAS character_maximum_length,
`CHARACTER_OCTET_LENGTH` Nullable(UInt64) ALIAS character_octet_length,
`NUMERIC_PRECISION` Nullable(UInt64) ALIAS numeric_precision,
`NUMERIC_PRECISION_RADIX` Nullable(UInt64) ALIAS numeric_precision_radix,
`NUMERIC_SCALE` Nullable(UInt64) ALIAS numeric_scale,
`DATETIME_PRECISION` Nullable(UInt64) ALIAS datetime_precision,
`CHARACTER_SET_CATALOG` Nullable(String) ALIAS character_set_catalog,
`CHARACTER_SET_SCHEMA` Nullable(String) ALIAS character_set_schema,
`CHARACTER_SET_NAME` Nullable(String) ALIAS character_set_name,
`COLLATION_CATALOG` Nullable(String) ALIAS collation_catalog,
`COLLATION_SCHEMA` Nullable(String) ALIAS collation_schema,
`COLLATION_NAME` Nullable(String) ALIAS collation_name,
`DOMAIN_CATALOG` Nullable(String) ALIAS domain_catalog,
`DOMAIN_SCHEMA` Nullable(String) ALIAS domain_schema,
`DOMAIN_NAME` Nullable(String) ALIAS domain_name
) AS
SELECT
database AS table_catalog,
database AS table_schema,
table AS table_name,
name AS column_name,
position AS ordinal_position,
default_expression AS column_default,
type LIKE 'Nullable(%)' AS is_nullable,
type AS data_type,
character_octet_length AS character_maximum_length,
character_octet_length,
numeric_precision,
numeric_precision_radix,
numeric_scale,
datetime_precision,
NULL AS character_set_catalog,
NULL AS character_set_schema,
NULL AS character_set_name,
NULL AS collation_catalog,
NULL AS collation_schema,
NULL AS collation_name,
NULL AS domain_catalog,
NULL AS domain_schema,
NULL AS domain_name
FROM system.columns
|
--- This file has been generated by scripts/build_db.py. DO NOT EDIT !
INSERT INTO "extent" VALUES('EPSG','1024','Afghanistan','Afghanistan.',29.4,38.48,60.5,74.92,0);
INSERT INTO "extent" VALUES('EPSG','1025','Albania','Albania - onshore and offshore.',39.63,42.67,18.46,21.06,0);
INSERT INTO "extent" VALUES('EPSG','1026','Algeria','Algeria - onshore and offshore.',18.97,38.8,-8.67,11.99,0);
INSERT INTO "extent" VALUES('EPSG','1027','American Samoa','American Samoa - onshore and offshore.',-17.56,-10.02,-173.75,-165.2,0);
INSERT INTO "extent" VALUES('EPSG','1028','Andorra','Andorra.',42.43,42.66,1.42,1.79,0);
INSERT INTO "extent" VALUES('EPSG','1029','Angola','Angola - onshore and offshore.',-18.02,-4.38,8.2,24.09,0);
INSERT INTO "extent" VALUES('EPSG','1030','Anguilla','Anguilla - onshore and offshore.',17.94,21.93,-63.9,-60.68,0);
INSERT INTO "extent" VALUES('EPSG','1031','Antarctica','Antarctica.',-90.0,-60.0,-180.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','1032','Antigua and Barbuda','Antigua and Barbuda - Antigua, Barbuda and Redonda.',16.61,20.88,-62.76,-58.37,0);
INSERT INTO "extent" VALUES('EPSG','1033','Argentina','Argentina - onshore and offshore.',-58.41,-21.78,-73.59,-52.63,0);
INSERT INTO "extent" VALUES('EPSG','1034','Armenia','Armenia.',38.84,41.3,43.45,46.63,0);
INSERT INTO "extent" VALUES('EPSG','1035','Aruba','Aruba - onshore and offshore.',12.14,15.42,-70.42,-69.31,0);
INSERT INTO "extent" VALUES('EPSG','1036','Australia - onshore and EEZ','Australia - onshore and offshore to 200 nautical mile EEZ boundary. Includes Lord Howe Island, Ashmore and Cartier Islands.',-47.2,-8.88,109.23,163.2,0);
INSERT INTO "extent" VALUES('EPSG','1037','Austria','Austria.',46.4,49.02,9.53,17.17,0);
INSERT INTO "extent" VALUES('EPSG','1038','Azerbaijan','Azerbaijan - onshore and offshore.',37.89,42.59,44.77,51.73,0);
INSERT INTO "extent" VALUES('EPSG','1039','Bahamas','Bahamas - onshore and offshore.',20.36,30.36,-81.22,-70.63,0);
INSERT INTO "extent" VALUES('EPSG','1040','Bahrain','Bahrain - onshore and offshore.',25.53,27.17,50.26,51.13,0);
INSERT INTO "extent" VALUES('EPSG','1041','Bangladesh','Bangladesh - onshore and offshore.',18.56,26.64,88.01,92.67,0);
INSERT INTO "extent" VALUES('EPSG','1042','Barbados','Barbados - onshore and offshore.',10.68,16.0,-60.39,-55.99,0);
INSERT INTO "extent" VALUES('EPSG','1043','Belarus','Belarus.',51.25,56.17,23.16,32.75,0);
INSERT INTO "extent" VALUES('EPSG','1044','Belgium','Belgium - onshore and offshore.',49.5,51.88,2.23,6.4,0);
INSERT INTO "extent" VALUES('EPSG','1045','Belize','Belize - onshore and offshore.',15.88,18.49,-89.22,-86.11,0);
INSERT INTO "extent" VALUES('EPSG','1046','Benin','Benin - onshore and offshore.',2.99,12.4,0.77,3.86,0);
INSERT INTO "extent" VALUES('EPSG','1047','Bermuda','Bermuda - onshore and offshore.',28.91,35.73,-68.83,-60.7,0);
INSERT INTO "extent" VALUES('EPSG','1048','Bhutan','Bhutan.',26.7,28.33,88.74,92.13,0);
INSERT INTO "extent" VALUES('EPSG','1049','Bolivia','Bolivia.',-22.91,-9.67,-69.66,-57.52,0);
INSERT INTO "extent" VALUES('EPSG','1050','Bosnia and Herzegovina','Bosnia and Herzegovina.',42.56,45.27,15.74,19.62,0);
INSERT INTO "extent" VALUES('EPSG','1051','Botswana','Botswana.',-26.88,-17.78,19.99,29.38,0);
INSERT INTO "extent" VALUES('EPSG','1052','Bouvet Island','Bouvet Island - onshore and offshore.',-57.8,-51.06,-2.38,9.21,0);
INSERT INTO "extent" VALUES('EPSG','1053','Brazil','Brazil - onshore and offshore. Includes Rocas, Fernando de Noronha archipelago, Trindade, Ihlas Martim Vaz and Sao Pedro e Sao Paulo.',-35.71,7.04,-74.01,-25.28,0);
INSERT INTO "extent" VALUES('EPSG','1054','British Indian Ocean Territory','British Indian Ocean Territory - onshore and offshore - Chagos Archipelago.',-10.8,-2.28,67.88,75.86,0);
INSERT INTO "extent" VALUES('EPSG','1055','Brunei','Brunei Darussalam - onshore and offshore.',4.01,6.31,112.37,115.37,0);
INSERT INTO "extent" VALUES('EPSG','1056','Bulgaria','Bulgaria - onshore and offshore.',41.24,44.23,22.36,31.35,0);
INSERT INTO "extent" VALUES('EPSG','1057','Burkina Faso','Burkina Faso.',9.39,15.09,-5.53,2.4,0);
INSERT INTO "extent" VALUES('EPSG','1058','Burundi','Burundi.',-4.45,-2.3,28.98,30.86,0);
INSERT INTO "extent" VALUES('EPSG','1059','Cambodia','Cambodia - onshore and offshore.',8.78,14.73,101.33,107.64,0);
INSERT INTO "extent" VALUES('EPSG','1060','Cameroon','Cameroon - onshore and offshore.',1.65,13.09,8.32,16.21,0);
INSERT INTO "extent" VALUES('EPSG','1061','Canada','Canada - onshore and offshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan; Yukon.',38.21,86.46,-141.01,-40.73,0);
INSERT INTO "extent" VALUES('EPSG','1062','Cape Verde','Cape Verde - onshore and offshore. Includes Boa Vista, Brava, Fogo, Maio, Sal, Santo Antao, Sao Nicolau, Sao Tiago, Sao Vicente.',11.47,20.54,-28.85,-19.53,0);
INSERT INTO "extent" VALUES('EPSG','1063','Cayman Islands','Cayman Islands - onshore and offshore. Includes Grand Cayman, Little Cayman and Cayman Brac.',17.58,20.68,-83.6,-78.72,0);
INSERT INTO "extent" VALUES('EPSG','1064','Central African Republic','Central African Republic.',2.22,11.01,14.41,27.46,0);
INSERT INTO "extent" VALUES('EPSG','1065','Chad','Chad.',7.45,23.46,13.46,24.01,0);
INSERT INTO "extent" VALUES('EPSG','1066','Chile','Chile - onshore and offshore. Includes Easter Island, Juan Fernandez Islands, San Felix, and Sala y Gomez.',-59.87,-17.5,-113.21,-65.72,0);
INSERT INTO "extent" VALUES('EPSG','1067','China','China - onshore and offshore.',16.7,53.56,73.62,134.77,0);
INSERT INTO "extent" VALUES('EPSG','1068','Christmas Island','Christmas Island - onshore and offshore.',-13.92,-8.87,102.14,109.03,0);
INSERT INTO "extent" VALUES('EPSG','1069','Cocos (Keeling) Islands - onshore','Cocos (Keeling) Islands - onshore.',-12.27,-11.76,96.76,96.99,0);
INSERT INTO "extent" VALUES('EPSG','1070','Colombia','Colombia - onshore and offshore. Includes San Andres y Providencia, Malpelo Islands, Roncador Bank, Serrana Bank and Serranilla Bank.',-4.23,15.51,-84.77,-66.87,0);
INSERT INTO "extent" VALUES('EPSG','1071','Comoros','Comoros - onshore and offshore. Includes Anjouan, Grande Comore, Moheli and other islands.',-14.43,-8.01,41.93,45.79,0);
INSERT INTO "extent" VALUES('EPSG','1072','Congo','Congo - onshore and offshore.',-6.91,3.72,8.84,18.65,0);
INSERT INTO "extent" VALUES('EPSG','1073','Cook Islands','Cook Islands - onshore and offshore.',-25.28,-5.85,-168.53,-154.8,0);
INSERT INTO "extent" VALUES('EPSG','1074','<NAME>','Cost<NAME>ica - onshore and offshore.',2.15,11.77,-90.45,-81.43,0);
INSERT INTO "extent" VALUES('EPSG','1075','Cote d''Ivoire (Ivory Coast)','Côte d''Ivoire (Ivory Coast) - onshore and offshore.',1.02,10.74,-8.61,-2.48,0);
INSERT INTO "extent" VALUES('EPSG','1076','Croatia','Croatia - onshore and offshore.',41.62,46.54,13.0,19.43,0);
INSERT INTO "extent" VALUES('EPSG','1077','Cuba','Cuba - onshore and offshore.',18.83,25.51,-87.01,-73.57,0);
INSERT INTO "extent" VALUES('EPSG','1078','Cyprus','Cyprus - onshore and offshore.',32.88,36.21,29.95,35.2,0);
INSERT INTO "extent" VALUES('EPSG','1079','Czechia','Czechia.',48.58,51.06,12.09,18.86,0);
INSERT INTO "extent" VALUES('EPSG','1080','Denmark','Denmark - onshore and offshore.',54.36,58.27,3.24,16.51,0);
INSERT INTO "extent" VALUES('EPSG','1081','Djibouti','Djibouti - onshore and offshore.',10.94,12.72,41.75,44.15,0);
INSERT INTO "extent" VALUES('EPSG','1082','Dominica','Dominica - onshore and offshore.',14.48,16.62,-62.82,-57.52,0);
INSERT INTO "extent" VALUES('EPSG','1083','Dominican Republic','Dominican Republic - onshore and offshore.',14.96,22.42,-73.46,-66.82,0);
INSERT INTO "extent" VALUES('EPSG','1084','East Timor','Timor-Leste (East Timor) - onshore and offshore. Includes enclave of Oe-Cussi (Okusi).',-10.47,-7.97,123.92,127.97,0);
INSERT INTO "extent" VALUES('EPSG','1085','Ecuador','Ecuador - onshore and offshore. Includes Galapagos Islands (Archipelago de Colon).',-5.01,5.0,-95.35,-75.21,0);
INSERT INTO "extent" VALUES('EPSG','1086','Egypt','Egypt - onshore and offshore.',21.89,33.82,24.7,37.91,0);
INSERT INTO "extent" VALUES('EPSG','1087','El Salvador','El Salvador - onshore and offshore.',9.97,14.44,-91.43,-87.65,0);
INSERT INTO "extent" VALUES('EPSG','1088','Equatorial Guinea','Equatorial Guinea - onshore and offshore. Includes Rio Muni, Bioko, Annobon, Corisco, Elobey Chico, and Ebony Grande.',-4.8,4.13,2.26,11.36,0);
INSERT INTO "extent" VALUES('EPSG','1089','Eritrea','Eritrea - onshore and offshore.',12.36,18.1,36.44,43.31,0);
INSERT INTO "extent" VALUES('EPSG','1090','Estonia','Estonia - onshore and offshore.',57.52,60.0,20.37,28.2,0);
INSERT INTO "extent" VALUES('EPSG','1091','Ethiopia','Ethiopia.',3.4,14.89,32.99,47.99,0);
INSERT INTO "extent" VALUES('EPSG','1092','Falkland Islands','Falkland Islands (Malvinas) - onshore and offshore.',-56.25,-47.68,-65.01,-52.31,0);
INSERT INTO "extent" VALUES('EPSG','1093','Faroe Islands','Faroe Islands - onshore and offshore.',59.94,65.7,-13.91,-0.48,0);
INSERT INTO "extent" VALUES('EPSG','1094','Fiji - onshore','Fiji - onshore. Includes Viti Levu, Vanua Levu, Taveuni, the Yasawa Group, the Kadavu Group, the Lau Islands and Rotuma Islands.',-20.81,-12.42,176.81,-178.15,0);
INSERT INTO "extent" VALUES('EPSG','1095','Finland','Finland - onshore and offshore.',58.84,70.09,19.08,31.59,0);
INSERT INTO "extent" VALUES('EPSG','1096','France','France - onshore and offshore, mainland and Corsica.',41.15,51.56,-9.86,10.38,0);
INSERT INTO "extent" VALUES('EPSG','1097','French Guiana','French Guiana - onshore and offshore.',2.11,8.88,-54.61,-49.45,0);
INSERT INTO "extent" VALUES('EPSG','1098','French Polynesia','French Polynesia - onshore and offshore. Includes Society archipelago, Tuamotu archipelago, Marquesas Islands, Gambier Islands and Austral Islands.',-31.24,-4.52,-158.13,-131.97,0);
INSERT INTO "extent" VALUES('EPSG','1099','French Southern Territories','French Southern Territories - onshore and offshore. Includes Amsterdam and St Paul, Bassas da India, Crozet, Europa, Glorieuses, Juan de Nova, Kerguelen and Tromelin.',-53.24,-10.65,37.55,81.83,0);
INSERT INTO "extent" VALUES('EPSG','1100','Gabon','Gabon - onshore and offshore.',-6.37,2.32,7.03,14.52,0);
INSERT INTO "extent" VALUES('EPSG','1101','Gambia','Gambia - onshore and offshore.',13.05,13.83,-20.19,-13.79,0);
INSERT INTO "extent" VALUES('EPSG','1102','Georgia','Georgia - onshore and offshore.',41.04,43.59,38.97,46.72,0);
INSERT INTO "extent" VALUES('EPSG','1103','Germany','Germany - onshore and offshore.',47.27,55.92,3.34,15.04,0);
INSERT INTO "extent" VALUES('EPSG','1104','Ghana','Ghana - onshore and offshore.',1.4,11.16,-3.79,2.1,0);
INSERT INTO "extent" VALUES('EPSG','1105','Gibraltar','Gibraltar - onshore and offshore.',36.0,36.16,-5.42,-4.89,0);
INSERT INTO "extent" VALUES('EPSG','1106','Greece','Greece - onshore and offshore. Includes Aegean Islands, Ionian Islands, Dodecanese Islands, Crete, and Mount Athos.',33.26,41.75,18.26,30.23,0);
INSERT INTO "extent" VALUES('EPSG','1107','Greenland','Greenland - onshore and offshore.',56.38,87.03,-75.0,7.99,0);
INSERT INTO "extent" VALUES('EPSG','1108','Grenada','Grenada and southern Grenadine Islands - onshore and offshore.',11.36,13.4,-63.28,-60.82,0);
INSERT INTO "extent" VALUES('EPSG','1109','Guadeloupe','Guadeloupe - onshore and offshore. Includes Grande Terre, Basse Terre, <NAME>, Les Saintes, Iles de la Petite Terre, La Desirade; St Barthélemy, and northern St Martin.',15.06,18.54,-63.66,-57.54,0);
INSERT INTO "extent" VALUES('EPSG','1110','Guam','Guam - onshore and offshore.',10.95,15.91,141.19,148.18,0);
INSERT INTO "extent" VALUES('EPSG','1111','Guatemala','Guatemala - onshore and offshore.',10.6,17.83,-94.57,-88.16,0);
INSERT INTO "extent" VALUES('EPSG','1112','Guinea','Guinea - onshore and offshore.',7.19,12.68,-18.26,-7.65,0);
INSERT INTO "extent" VALUES('EPSG','1113','Guinea-Bissau','Guinea-Bissau - onshore and offshore.',8.64,12.69,-19.8,-13.64,0);
INSERT INTO "extent" VALUES('EPSG','1114','Guyana','Guyana - onshore and offshore.',1.18,10.7,-61.39,-55.77,0);
INSERT INTO "extent" VALUES('EPSG','1115','Haiti','Haiti - onshore and offshore.',14.73,20.72,-75.73,-71.62,0);
INSERT INTO "extent" VALUES('EPSG','1116','Heard Island and McDonald Islands','Heard Island and McDonald Islands - onshore and offshore.',-59.02,-49.5,62.92,83.57,0);
INSERT INTO "extent" VALUES('EPSG','1117','Honduras','Honduras - onshore and offshore. Includes Swan Islands.',12.98,19.59,-89.36,-79.87,0);
INSERT INTO "extent" VALUES('EPSG','1118','China - Hong Kong','China - Hong Kong - onshore and offshore.',22.13,22.58,113.76,114.51,0);
INSERT INTO "extent" VALUES('EPSG','1119','Hungary','Hungary.',45.74,48.58,16.11,22.9,0);
INSERT INTO "extent" VALUES('EPSG','1120','Iceland','Iceland - onshore and offshore.',59.96,69.59,-30.87,-5.55,0);
INSERT INTO "extent" VALUES('EPSG','1121','India','India - onshore and offshore. Includes Amandivis, Laccadives, Minicoy, Andaman Islands, Nicobar Islands, and Sikkim.',3.87,35.51,65.6,97.42,0);
INSERT INTO "extent" VALUES('EPSG','1122','Indonesia','Indonesia - onshore and offshore.',-13.95,7.79,92.01,141.46,0);
INSERT INTO "extent" VALUES('EPSG','1123','Iran','Iran - onshore and offshore.',23.34,39.78,44.03,63.34,0);
INSERT INTO "extent" VALUES('EPSG','1124','Iraq','Iraq - onshore and offshore.',29.06,37.39,38.79,48.75,0);
INSERT INTO "extent" VALUES('EPSG','1125','Ireland','Ireland - onshore and offshore.',48.18,56.57,-16.1,-5.24,0);
INSERT INTO "extent" VALUES('EPSG','1126','Israel','Israel - onshore and offshore.',29.45,33.53,32.99,35.69,0);
INSERT INTO "extent" VALUES('EPSG','1127','Italy','Italy - onshore and offshore.',34.76,47.1,5.93,18.99,0);
INSERT INTO "extent" VALUES('EPSG','1128','Jamaica','Jamaica - onshore and offshore. Includes Morant Cays and Pedro Cays.',14.08,19.36,-80.6,-74.51,0);
INSERT INTO "extent" VALUES('EPSG','1129','Japan','Japan - onshore and offshore.',17.09,46.05,122.38,157.65,0);
INSERT INTO "extent" VALUES('EPSG','1130','Jordan','Jordan.',29.18,33.38,34.88,39.31,0);
INSERT INTO "extent" VALUES('EPSG','1131','Kazakhstan','Kazakhstan - onshore including Caspian Sea.',40.59,55.45,46.49,87.35,0);
INSERT INTO "extent" VALUES('EPSG','1132','Kenya','Kenya - onshore and offshore.',-4.9,4.63,33.9,44.28,0);
INSERT INTO "extent" VALUES('EPSG','1133','Kiribati','Kiribati - onshore and offshore. Includes Fanning Island, Washington Island and Christmas in the Line Islands, Ocean Islands, Phoenix Islands.',-13.84,7.92,167.81,-146.82,0);
INSERT INTO "extent" VALUES('EPSG','1134','Korea, Democratic People''s Republic of (North Korea)','Democratic People''s Republic of Korea (North Korea) - onshore and offshore.',37.1,43.01,123.54,132.82,0);
INSERT INTO "extent" VALUES('EPSG','1135','Korea, Republic of (South Korea)','Republic of Korea (South Korea) - onshore and offshore.',28.6,40.27,122.71,134.28,0);
INSERT INTO "extent" VALUES('EPSG','1136','Kuwait','Kuwait - onshore and offshore.',28.53,30.09,46.54,49.53,0);
INSERT INTO "extent" VALUES('EPSG','1137','Kyrgyzstan','Kyrgyzstan.',39.19,43.22,69.24,80.29,0);
INSERT INTO "extent" VALUES('EPSG','1138','Laos','Laos.',13.92,22.5,100.09,107.64,0);
INSERT INTO "extent" VALUES('EPSG','1139','Latvia','Latvia - onshore and offshore.',55.67,58.09,19.06,28.24,0);
INSERT INTO "extent" VALUES('EPSG','1140','Lebanon','Lebanon - onshore and offshore.',33.06,34.84,33.75,36.63,0);
INSERT INTO "extent" VALUES('EPSG','1141','Lesotho','Lesotho.',-30.66,-28.57,27.01,29.46,0);
INSERT INTO "extent" VALUES('EPSG','1142','Liberia','Liberia - onshore and offshore.',1.02,8.52,-13.59,-7.36,0);
INSERT INTO "extent" VALUES('EPSG','1143','Libya','Libya - onshore and offshore.',19.5,35.23,9.31,26.21,0);
INSERT INTO "extent" VALUES('EPSG','1144','Liechtenstein','Liechtenstein.',47.05,47.28,9.47,9.64,0);
INSERT INTO "extent" VALUES('EPSG','1145','Lithuania','Lithuania - onshore and offshore.',53.89,56.45,19.02,26.82,0);
INSERT INTO "extent" VALUES('EPSG','1146','Luxembourg','Luxembourg.',49.44,50.19,5.73,6.53,0);
INSERT INTO "extent" VALUES('EPSG','1147','China - Macao','China - Macao - onshore and offshore.',22.06,22.23,113.52,113.68,0);
INSERT INTO "extent" VALUES('EPSG','1148','North Macedonia','North Macedonia.',40.85,42.36,20.45,23.04,0);
INSERT INTO "extent" VALUES('EPSG','1149','Madagascar - onshore and nearshore','Madagascar - onshore and nearshore.',-26.59,-11.69,42.53,51.03,0);
INSERT INTO "extent" VALUES('EPSG','1150','Malawi','Malawi.',-17.14,-9.37,32.68,35.93,0);
INSERT INTO "extent" VALUES('EPSG','1151','Malaysia','Malaysia - onshore and offshore. Includes peninsular Malayasia, Sabah and Sarawak.',0.85,7.81,98.02,119.61,0);
INSERT INTO "extent" VALUES('EPSG','1152','Maldives','Maldives - onshore and offshore.',-3.47,8.1,69.29,77.08,0);
INSERT INTO "extent" VALUES('EPSG','1153','Mali','Mali.',10.14,25.01,-12.25,4.26,0);
INSERT INTO "extent" VALUES('EPSG','1154','Malta','Malta - onshore and offshore.',34.49,36.56,13.41,18.06,0);
INSERT INTO "extent" VALUES('EPSG','1155','Marshall Islands','Marshall Islands - onshore and offshore.',1.77,17.88,157.47,175.52,0);
INSERT INTO "extent" VALUES('EPSG','1156','Martinique','Martinique - onshore and offshore.',14.08,16.36,-62.82,-57.52,0);
INSERT INTO "extent" VALUES('EPSG','1157','Mauritania','Mauritania - onshore and offshore.',14.72,27.3,-20.04,-4.8,0);
INSERT INTO "extent" VALUES('EPSG','1158','Mauritius','Mauritius - onshore and offshore. Includes Rodrigues, Agalega Islands, and Cargados Carajos.',-23.81,-8.43,53.8,67.05,0);
INSERT INTO "extent" VALUES('EPSG','1159','Mayotte','Mayotte - onshore and offshore.',-14.49,-11.33,43.68,46.7,0);
INSERT INTO "extent" VALUES('EPSG','1160','Mexico','Mexico - onshore and offshore.',12.1,32.72,-122.19,-84.64,0);
INSERT INTO "extent" VALUES('EPSG','1161','Micronesia','Federated States of Micronesia - onshore and offshore. Includes Caroline Islands, Yap, Truk, Ponape, Kosrae.',-1.19,13.43,135.27,165.68,0);
INSERT INTO "extent" VALUES('EPSG','1162','Moldova','Moldova.',45.44,48.47,26.63,30.13,0);
INSERT INTO "extent" VALUES('EPSG','1163','Monaco','Monaco - onshore and offshore.',42.94,43.77,7.39,7.76,0);
INSERT INTO "extent" VALUES('EPSG','1164','Mongolia','Mongolia.',41.58,52.15,87.76,119.94,0);
INSERT INTO "extent" VALUES('EPSG','1165','Montserrat','Montserrat - onshore and offshore.',15.84,17.04,-63.05,-61.82,0);
INSERT INTO "extent" VALUES('EPSG','1166','Morocco','Morocco - onshore and offshore.',27.66,36.0,-13.86,-1.01,0);
INSERT INTO "extent" VALUES('EPSG','1167','Mozambique','Mozambique - onshore and offshore.',-27.71,-10.09,30.21,43.03,0);
INSERT INTO "extent" VALUES('EPSG','1168','Myanmar (Burma)','Myanmar (Burma) - onshore and offshore.',9.48,28.55,89.61,101.17,0);
INSERT INTO "extent" VALUES('EPSG','1169','Namibia','Namibia - onshore and offshore.',-30.64,-16.95,8.24,25.27,0);
INSERT INTO "extent" VALUES('EPSG','1170','Nauru','Nauru - onshore and offshore.',-3.91,2.69,163.58,168.6,0);
INSERT INTO "extent" VALUES('EPSG','1171','Nepal','Nepal.',26.34,30.43,80.06,88.21,0);
INSERT INTO "extent" VALUES('EPSG','1172','Netherlands','Netherlands - onshore and offshore.',50.75,55.77,2.53,7.22,0);
INSERT INTO "extent" VALUES('EPSG','1173','Netherlands Antilles','Netherlands Antilles - onshore and offshore. Includes Bonaire, Curacao, Saba, St Eustatius, and southern St Martin',11.67,18.07,-69.59,-62.82,1);
INSERT INTO "extent" VALUES('EPSG','1174','New Caledonia','New Caledonia - onshore and offshore. Isle de Pins, Loyalty Islands, Huon Islands, Belep archipelago, Chesterfield Islands, and Walpole.',-26.45,-14.83,156.25,174.28,0);
INSERT INTO "extent" VALUES('EPSG','1175','New Zealand','New Zealand - onshore and offshore. Includes Antipodes Islands, Auckland Islands, Bounty Islands, Chatham Islands, Cambell Island, Kermadec Islands, Raoul Island and Snares Islands.',-55.95,-25.88,160.6,-171.2,0);
INSERT INTO "extent" VALUES('EPSG','1176','Nicaragua','Nicaragua - onshore and offshore.',9.75,16.26,-89.43,-79.76,0);
INSERT INTO "extent" VALUES('EPSG','1177','Niger','Niger.',11.69,23.53,0.16,16.0,0);
INSERT INTO "extent" VALUES('EPSG','1178','Nigeria','Nigeria - onshore and offshore.',1.92,13.9,2.66,14.65,0);
INSERT INTO "extent" VALUES('EPSG','1179','Niue','Niue - onshore and offshore.',-22.49,-16.58,-172.01,-166.31,0);
INSERT INTO "extent" VALUES('EPSG','1180','Norfolk Island','Norfolk Island - onshore and offshore.',-32.48,-25.61,163.36,173.35,0);
INSERT INTO "extent" VALUES('EPSG','1181','Northern Mariana Islands','Northern Mariana Islands - onshore and offshore.',12.38,23.9,141.33,149.55,0);
INSERT INTO "extent" VALUES('EPSG','1182','Norway','Norway including Svalbard - onshore and offshore.',56.08,84.73,-3.35,38.0,0);
INSERT INTO "extent" VALUES('EPSG','1183','Oman','Oman - onshore and offshore.',14.33,26.74,51.99,63.38,0);
INSERT INTO "extent" VALUES('EPSG','1184','Pakistan','Pakistan - onshore and offshore.',21.05,37.07,60.86,77.83,0);
INSERT INTO "extent" VALUES('EPSG','1185','Palau','Palau - onshore and offshore.',1.64,11.45,129.48,136.98,0);
INSERT INTO "extent" VALUES('EPSG','1186','Panama','Panama - onshore and offshore.',5.0,12.51,-84.32,-77.04,0);
INSERT INTO "extent" VALUES('EPSG','1187','Papua New Guinea','Papua New Guinea - onshore and offshore. Includes Bismark archipelago, Louisade archipelago, Admiralty Islands, d''Entrecasteaux Islands, northern Solomon Islands, Trobriand Islands, New Britain, New Ireland, Woodlark, and associated islands.',-14.75,2.58,139.2,162.81,0);
INSERT INTO "extent" VALUES('EPSG','1188','Paraguay','Paraguay.',-27.59,-19.29,-62.65,-54.24,0);
INSERT INTO "extent" VALUES('EPSG','1189','Peru','Peru - onshore and offshore.',-21.05,-0.03,-84.68,-68.67,0);
INSERT INTO "extent" VALUES('EPSG','1190','Philippines','Philippines - onshore and offshore.',3.0,22.18,116.04,129.95,0);
INSERT INTO "extent" VALUES('EPSG','1191','Pitcairn','Pitcairn - Pitcairn Island, Henderson Island, Ducie Island and Oeno Atoll.',-28.41,-20.58,-133.43,-121.11,0);
INSERT INTO "extent" VALUES('EPSG','1192','Poland','Poland - onshore and offshore.',49.0,55.93,14.14,24.15,0);
INSERT INTO "extent" VALUES('EPSG','1193','Portugal','Portugal - mainland, Azores and Madeira, onshore and offshore.',29.24,43.07,-35.58,-6.19,0);
INSERT INTO "extent" VALUES('EPSG','1194','Puerto Rico','Puerto Rico - onshore and offshore.',14.92,21.86,-68.49,-65.04,0);
INSERT INTO "extent" VALUES('EPSG','1195','Qatar','Qatar - onshore and offshore.',24.55,27.05,50.55,53.04,0);
INSERT INTO "extent" VALUES('EPSG','1196','Reunion','Reunion - onshore and offshore - Reunion island, Ile Europa, Bassas da India, Juan de Nova, Iles Glorieuses, and Ile Tromelin.',-25.92,-10.6,37.58,58.27,1);
INSERT INTO "extent" VALUES('EPSG','1197','Romania','Romania - onshore and offshore.',43.44,48.27,20.26,31.41,0);
INSERT INTO "extent" VALUES('EPSG','1198','Russia','Russian Federation - onshore and offshore.',39.87,85.2,18.92,-168.97,0);
INSERT INTO "extent" VALUES('EPSG','1199','Rwanda','Rwanda.',-2.83,-1.05,28.85,30.9,0);
INSERT INTO "extent" VALUES('EPSG','1200','St Kitts and Nevis','St Kitts and Nevis - onshore and offshore.',16.34,17.67,-63.63,-62.2,0);
INSERT INTO "extent" VALUES('EPSG','1201','St Lucia','St Lucia - onshore and offshore.',13.23,14.28,-62.5,-59.99,0);
INSERT INTO "extent" VALUES('EPSG','1202','St Vincent and the Grenadines','St Vincent and the northern Grenadine Islands - onshore and offshore.',12.03,14.09,-63.38,-60.28,0);
INSERT INTO "extent" VALUES('EPSG','1203','Samoa','Samoa - onshore and offshore.',-15.84,-10.94,-174.54,-170.51,0);
INSERT INTO "extent" VALUES('EPSG','1204','San Marino','San Marino.',43.89,43.99,12.4,12.52,0);
INSERT INTO "extent" VALUES('EPSG','1205','Sao Tome and Principe','Sao Tome and Principe - onshore and offshore.',-1.49,2.72,3.2,8.56,0);
INSERT INTO "extent" VALUES('EPSG','1206','Saudi Arabia','Saudi Arabia - onshore and offshore.',16.29,32.16,34.44,55.67,0);
INSERT INTO "extent" VALUES('EPSG','1207','Senegal','Senegal - onshore and offshore.',10.64,16.7,-20.22,-11.36,0);
INSERT INTO "extent" VALUES('EPSG','1208','Seychelles','Seychelles - onshore and offshore - Alphonse, Bijoutier, St Francois Islands, St Pierre islet, Cosmoledo Islands, Amirantes, Aldabra, Farquhar, and Desroches.',-12.72,-0.37,43.19,59.66,0);
INSERT INTO "extent" VALUES('EPSG','1209','Sierra Leone','Sierra Leone - onshore and offshore.',4.22,10.0,-16.57,-10.26,0);
INSERT INTO "extent" VALUES('EPSG','1210','Singapore','Singapore - onshore and offshore.',1.13,1.47,103.59,104.07,0);
INSERT INTO "extent" VALUES('EPSG','1211','Slovakia','Slovakia.',47.73,49.61,16.84,22.56,0);
INSERT INTO "extent" VALUES('EPSG','1212','Slovenia','Slovenia - onshore and offshore.',45.42,46.88,13.38,16.61,0);
INSERT INTO "extent" VALUES('EPSG','1213','Solomon Islands - onshore main islands','Solomon Islands - onshore southern Solomon Islands, primarily Guadalcanal, Malaita, San Cristobel, Santa Isobel, Choiseul, Makira-Ulawa.',-10.9,-6.55,155.62,162.44,0);
INSERT INTO "extent" VALUES('EPSG','1214','Somalia','Somalia - onshore and offshore.',-3.61,13.5,40.98,54.43,0);
INSERT INTO "extent" VALUES('EPSG','1215','South Africa','South Africa - onshore and offshore, including Marion Island, and Prince Edward Island.',-50.32,-22.13,13.33,42.85,0);
INSERT INTO "extent" VALUES('EPSG','1216','South Georgia and the South Sandwich Islands','South Georgia and the South Sandwich Islands - onshore and offshore.',-62.79,-50.15,-48.06,-19.84,0);
INSERT INTO "extent" VALUES('EPSG','1217','Spain','Spain - mainland, Balearic Islands, Canary Islands, Ceuta and Melila - onshore and offshore.',24.6,46.26,-21.93,6.3,0);
INSERT INTO "extent" VALUES('EPSG','1218','Sri Lanka','Sri Lanka - onshore and offshore.',2.58,11.45,77.02,85.24,0);
INSERT INTO "extent" VALUES('EPSG','1219','St Helena, Ascension and Tristan da Cunha','St Helena, Ascension and Tristan da Cunha archipelago (Gough, Inaccessible, Nightingale and Stoltenhoff Islands) - onshore and offshore.',-43.71,-4.55,-17.79,-2.16,0);
INSERT INTO "extent" VALUES('EPSG','1220','St Pierre and Miquelon','St Pierre and Miquelon - onshore and offshore.',43.41,47.37,-57.1,-55.9,0);
INSERT INTO "extent" VALUES('EPSG','1221','Sudan','Sudan - onshore and offshore.',8.64,22.24,21.82,39.76,0);
INSERT INTO "extent" VALUES('EPSG','1222','Suriname','Suriname - onshore and offshore.',1.83,9.35,-58.08,-52.66,0);
INSERT INTO "extent" VALUES('EPSG','1223','Svalbard and <NAME>','Svalbard and <NAME> - onshore and offshore. Includes Bear Island.',66.24,85.05,-16.22,35.02,1);
INSERT INTO "extent" VALUES('EPSG','1224','Eswatini','Eswatini (Swaziland).',-27.32,-25.72,30.79,32.14,0);
INSERT INTO "extent" VALUES('EPSG','1225','Sweden','Sweden - onshore and offshore.',54.96,69.07,10.03,24.17,0);
INSERT INTO "extent" VALUES('EPSG','1226','Switzerland','Switzerland.',45.82,47.81,5.96,10.49,0);
INSERT INTO "extent" VALUES('EPSG','1227','Syria','Syria - onshore and offshore.',32.31,37.3,34.96,42.38,0);
INSERT INTO "extent" VALUES('EPSG','1228','Taiwan','Taiwan, Republic of China - onshore and offshore - Taiwan Island, Penghu (Pescadores) Islands.',17.36,26.96,114.32,123.61,0);
INSERT INTO "extent" VALUES('EPSG','1229','Tajikistan','Tajikistan.',36.67,41.05,67.36,75.19,0);
INSERT INTO "extent" VALUES('EPSG','1230','Tanzania','Tanzania - onshore and offshore.',-11.75,-0.99,29.34,43.29,0);
INSERT INTO "extent" VALUES('EPSG','1231','Thailand','Thailand - onshore and offshore.',5.63,20.46,95.52,105.64,0);
INSERT INTO "extent" VALUES('EPSG','1232','Togo','Togo - onshore and offshore.',2.91,11.14,-0.15,2.42,0);
INSERT INTO "extent" VALUES('EPSG','1233','Tokelau','Tokelau - onshore and offshore.',-11.04,-6.46,-175.86,-167.98,0);
INSERT INTO "extent" VALUES('EPSG','1234','Tonga','Tonga - onshore and offshore.',-25.68,-14.14,-179.08,-171.28,0);
INSERT INTO "extent" VALUES('EPSG','1235','Trinidad and Tobago','Trinidad and Tobago - onshore and offshore.',9.83,12.34,-62.09,-57.28,0);
INSERT INTO "extent" VALUES('EPSG','1236','Tunisia','Tunisia - onshore and offshore.',30.23,38.41,7.49,13.67,0);
INSERT INTO "extent" VALUES('EPSG','1237','Turkey','Turkey - onshore and offshore.',34.42,43.45,25.62,44.83,0);
INSERT INTO "extent" VALUES('EPSG','1238','Turkmenistan','Turkmenistan - onshore and offshore.',35.14,42.8,51.3,66.68,0);
INSERT INTO "extent" VALUES('EPSG','1239','Turks and Caicos Islands','Turks and Caicos Islands - onshore and offshore.',20.54,25.07,-72.82,-67.66,0);
INSERT INTO "extent" VALUES('EPSG','1240','Tuvalu','Tuvalu - onshore and offshore. Funafuti, Nanumanga, Nui, Nanomea, Nurakita, Niutao, Nukufetau, Nukulaelae, and Vaitupu.',-13.24,-4.0,172.73,-176.71,0);
INSERT INTO "extent" VALUES('EPSG','1241','Uganda','Uganda.',-1.48,4.23,29.57,35.01,0);
INSERT INTO "extent" VALUES('EPSG','1242','Ukraine','Ukraine - onshore and offshore.',43.18,52.38,22.15,40.18,0);
INSERT INTO "extent" VALUES('EPSG','1243','UAE','United Arab Emirates (UAE) - onshore and offshore. Abu Dhabi, Dubai, Sharjah, Umm al Qaywayn, Al Fujairah, Ras al Khaymah.',22.63,26.27,51.5,57.13,0);
INSERT INTO "extent" VALUES('EPSG','1244','UK','United Kingdom (UK) - onshore and offshore - England, Scotland including Orkney and Shetland Islands, Wales, Northern Ireland (Ulster).',47.42,63.89,-14.89,3.4,0);
INSERT INTO "extent" VALUES('EPSG','1245','USA','United States (USA) - onshore and offshore.',15.56,74.71,167.65,-65.69,0);
INSERT INTO "extent" VALUES('EPSG','1246','United States Minor Outlying Islands','United States Minor Outlying Islands - onshore and offshore - Baker Island, Howland Islands, Jarvis Island, Johnston Atoll, Kingman Reef, Midway Islands, Palmyra Islands, and Wake Island.',-3.74,31.8,163.07,-157.41,0);
INSERT INTO "extent" VALUES('EPSG','1247','Uruguay','Uruguay - onshore and offshore.',-37.77,-30.09,-58.49,-50.01,0);
INSERT INTO "extent" VALUES('EPSG','1248','Uzbekistan','Uzbekistan.',37.18,45.58,55.99,73.17,0);
INSERT INTO "extent" VALUES('EPSG','1249','Vanuatu','Vanuatu - onshore and offshore.',-21.65,-12.27,163.16,173.59,0);
INSERT INTO "extent" VALUES('EPSG','1250','Holy See (Vatican City State)','Holy See (Vatican City State).',41.9,41.91,12.44,12.46,0);
INSERT INTO "extent" VALUES('EPSG','1251','Venezuela','Venezuela - onshore and offshore.',0.64,16.75,-73.38,-58.95,0);
INSERT INTO "extent" VALUES('EPSG','1252','Vietnam','Vietnam - onshore and offshore.',5.67,23.4,102.14,112.55,0);
INSERT INTO "extent" VALUES('EPSG','1253','Virgin Islands, British','British Virgin Islands - onshore and offshore - Anegada, Jost Van Dyke, Tortola, and Virgin Gorda.',17.96,22.09,-65.85,-63.29,0);
INSERT INTO "extent" VALUES('EPSG','1254','Virgin Islands, US','US Virgin Islands - onshore and offshore - St Croix, St John, and St Thomas.',16.22,21.83,-66.05,-63.88,0);
INSERT INTO "extent" VALUES('EPSG','1255','Wallis and Futuna','Wallis and Futuna - onshore and offshore - Uvea, Futuna, and Alofi.',-15.94,-9.84,179.49,-174.27,0);
INSERT INTO "extent" VALUES('EPSG','1256','Western Sahara','Western Sahara - onshore and offshore.',18.98,27.67,-20.68,-8.66,0);
INSERT INTO "extent" VALUES('EPSG','1257','Yemen','Yemen - onshore and offshore.',8.95,19.0,41.08,57.96,0);
INSERT INTO "extent" VALUES('EPSG','1258','Yugoslavia - Serbia and Montenegro','Yugoslavia - Union of Serbia and Montenegro - onshore and offshore.',41.82,46.23,18.44,23.05,1);
INSERT INTO "extent" VALUES('EPSG','1259','Congo DR (Zaire)','The Democratic Republic of the Congo (Zaire) - onshore and offshore.',-13.46,5.39,11.79,31.31,0);
INSERT INTO "extent" VALUES('EPSG','1260','Zambia','Zambia.',-18.08,-8.19,21.99,33.71,0);
INSERT INTO "extent" VALUES('EPSG','1261','Zimbabwe','Zimbabwe.',-22.42,-15.61,25.23,33.08,0);
INSERT INTO "extent" VALUES('EPSG','1262','World','World.',-90.0,90.0,-180.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','1263','Not specified','Not specified.',-90.0,90.0,-180.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','1264','UK - Great Britain onshore and nearshore; Isle of Man','United Kingdom (UK) - Great Britain - England and Wales onshore, Scotland onshore and Western Isles nearshore including Sea of the Hebrides and The Minch; Isle of Man onshore.',49.797,60.935,-8.818,1.92,0);
INSERT INTO "extent" VALUES('EPSG','1265','Argentina - Comodoro Rivadavia','Argentina - Comodoro Rivadavia area.',-46.7,-45.19,-69.5,-67.1,0);
INSERT INTO "extent" VALUES('EPSG','1266','Venezuela - Puerto La Cruz','Venezuela - Puerto La Cruz area.',10.0,10.31,-64.7,-64.5,0);
INSERT INTO "extent" VALUES('EPSG','1267','Venezuela - Barinas','Venezuela - Barinas area.',7.31,9.07,-71.49,-67.58,0);
INSERT INTO "extent" VALUES('EPSG','1268','Venezuela - Falcon state','Venezuela - Falcon state.',10.3,12.25,-71.3,-68.19,0);
INSERT INTO "extent" VALUES('EPSG','1269','Venezuela - Pedregal area of Falcon state','Venezuela - Pedregal area of Falcon state.',10.8,11.26,-70.4,-69.69,0);
INSERT INTO "extent" VALUES('EPSG','1270','Venezuela - Maracaibo south','Venezuela - south Maracaibo area.',8.72,10.01,-72.4,-70.78,0);
INSERT INTO "extent" VALUES('EPSG','1271','Africa - Eritrea, Ethiopia, South Sudan and Sudan','Eritrea; Ethiopia; South Sudan; Sudan.',3.4,22.24,21.82,47.99,0);
INSERT INTO "extent" VALUES('EPSG','1272','Asia - Middle East - Bahrain, Kuwait and Saudi Arabia','Bahrain, Kuwait and Saudi Arabia - onshore.',16.37,32.16,34.51,55.67,0);
INSERT INTO "extent" VALUES('EPSG','1273','Antigua - onshore','Antigua island - onshore.',16.94,17.22,-61.95,-61.61,0);
INSERT INTO "extent" VALUES('EPSG','1274','Brazil - Aratu','Brazil - offshore south and east of a line intersecting the coast at 2°55''S; onshore Tucano basin.',-35.71,4.26,-53.38,-26.0,0);
INSERT INTO "extent" VALUES('EPSG','1275','Netherlands - onshore','Netherlands - onshore, including Waddenzee, Dutch Wadden Islands and 12-mile offshore coastal zone.',50.75,53.7,3.2,7.22,0);
INSERT INTO "extent" VALUES('EPSG','1276','Africa - Botswana, Malawi, Zambia, Zimbabwe','Botswana; Malawi; Zambia; Zimbabwe.',-26.88,-8.19,19.99,35.93,0);
INSERT INTO "extent" VALUES('EPSG','1277','Africa - Burundi, Kenya, Rwanda, Tanzania and Uganda','Burundi, Kenya, Rwanda, Tanzania and Uganda.',-11.75,4.63,28.85,41.91,0);
INSERT INTO "extent" VALUES('EPSG','1278','Antarctica - Australian sector','Antarctica between 45°E and 136°E and between 142°E and 160°E - Australian sector.',-90.0,-60.0,45.0,160.0,0);
INSERT INTO "extent" VALUES('EPSG','1279','Australasia - Australia and PNG - AGD66','Australia - onshore and offshore. Papua New Guinea - onshore.',-47.2,-1.3,109.23,163.2,0);
INSERT INTO "extent" VALUES('EPSG','1280','Australia - Western Australia','Australia - Western Australia.',-35.19,-13.67,112.85,129.01,0);
INSERT INTO "extent" VALUES('EPSG','1281','Australia - mainland','Australia - Australian Capital Territory; New South Wales; Northern Territory; Queensland; South Australia; Western Australia; Victoria.',-39.2,-10.65,112.85,153.69,0);
INSERT INTO "extent" VALUES('EPSG','1282','Australia - Tasmania','Australia - Tasmania including islands - onshore.',-43.7,-39.52,143.77,148.55,0);
INSERT INTO "extent" VALUES('EPSG','1283','Canada - Maritime Provinces','Canada - New Brunswick; Nova Scotia; Prince Edward Island.',43.41,48.07,-69.05,-59.73,0);
INSERT INTO "extent" VALUES('EPSG','1284','Europe - FSU, Czechoslovakia - onshore','Armenia; Azerbaijan; Belarus; Czechia; Estonia - onshore; Georgia - onshore; Kazakhstan; Kyrgyzstan; Latvia - onshore; Lithuania - onshore; Moldova; Russian Federation - onshore; Slovakia; Tajikistan; Turkmenistan; Ukraine - onshore; Uzbekistan.',35.14,77.79,12.09,-169.57,0);
INSERT INTO "extent" VALUES('EPSG','1285','Indonesia - Bali, Java and western Sumatra onshore','Indonesia - onshore - Bali, Java and western Sumatra.',-8.91,5.97,95.16,115.77,0);
INSERT INTO "extent" VALUES('EPSG','1286','Europe - Liechtenstein and Switzerland','Liechtenstein; Switzerland.',45.82,47.81,5.96,10.49,0);
INSERT INTO "extent" VALUES('EPSG','1287','Indonesia - Banga & Belitung Islands','Indonesia - Banga and Belitung Islands.',-3.3,-1.44,105.07,108.35,0);
INSERT INTO "extent" VALUES('EPSG','1288','Angola - Angola proper','Angola - Angola proper - onshore and offshore.',-18.02,-5.82,8.2,24.09,0);
INSERT INTO "extent" VALUES('EPSG','1289','Canada - CGVD28','Canada - onshore - Alberta; British Columbia; Manitoba south of 57°N; New Brunswick; Northwest Territories south west of a line between 60°N, 110°W and the coast at 132°W; Nova Scotia; Ontario south of 52°N; Prince Edward Island; Quebec - mainland west of 66°W and south of 55°N; Saskatchewan south of 55°N; Yukon.',41.67,69.8,-141.01,-59.73,0);
INSERT INTO "extent" VALUES('EPSG','1290','Africa - Botswana, Eswatini, Lesotho and South Africa','Botswana; Eswatini (Swaziland); Lesotho; South Africa - mainland.',-34.88,-17.78,16.45,32.95,0);
INSERT INTO "extent" VALUES('EPSG','1291','Asia - FSU - Caspian Sea','Azerbaijan - offshore; Kazakhstan - offshore; Russian Federation - Caspian Sea; Turkmenistan - offshore.',37.35,46.97,46.95,53.93,0);
INSERT INTO "extent" VALUES('EPSG','1292','Argentina - Neuquen province','Argentina - Neuquen province.',-41.1,-36.14,-71.96,-68.01,0);
INSERT INTO "extent" VALUES('EPSG','1293','Brazil - Corrego Alegre 1970-1972','Brazil - onshore - west of 54°W and south of 18°S; also south of 15°S between 54°W and 42°W; also east of 42°W.',-33.78,-2.68,-58.16,-34.74,0);
INSERT INTO "extent" VALUES('EPSG','1294','Portugal - mainland - onshore','Portugal - mainland - onshore.',36.95,42.16,-9.56,-6.19,0);
INSERT INTO "extent" VALUES('EPSG','1295','Germany - DHDN','Germany - onshore - Baden-Wurtemberg, Bayern, Hessen, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Schleswig-Holstein. Also former DDR states of Sachsen and Thuringen by transformation.',47.27,55.06,5.87,15.03,1);
INSERT INTO "extent" VALUES('EPSG','1296','Europe - ED50 by country','Europe - west: Andorra; Cyprus; Denmark - onshore and offshore; Faroe Islands - onshore; France - offshore; Germany - offshore North Sea; Gibraltar; Greece - offshore; Israel - offshore; Italy including San Marino and Vatican City State; Ireland offshore; Malta; Netherlands - offshore; North Sea; Norway including Svalbard - onshore and offshore; Portugal - mainland - offshore; Spain - onshore; Turkey - onshore and offshore; United Kingdom UKCS offshore east of 6°W including Channel Islands (Guernsey and Jersey). Egypt - Western Desert; Iraq - onshore; Jordan.',25.71,84.73,-16.1,48.61,0);
INSERT INTO "extent" VALUES('EPSG','1297','Europe - west','Europe - west.',34.88,84.73,-10.56,38.0,0);
INSERT INTO "extent" VALUES('EPSG','1298','Europe - ETRF by country','Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary; Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Moldova; Monaco; Montenegro; Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal; Romania; San Marino; Serbia; Slovakia; Slovenia; Spain; Sweden; Switzerland; United Kingdom (UK) including Channel Islands and Isle of Man; Vatican City State.',32.88,84.73,-16.1,40.18,0);
INSERT INTO "extent" VALUES('EPSG','1299','Europe - EVRF2000','Europe - onshore - Andorra; Austria; Belgium; Bosnia and Herzegovina; Croatia; Czechia; Denmark; Estonia; Finland; France - mainland; Germany; Gibraltar; Hungary; Italy - mainland and Sicily; Latvia; Liechtenstein; Lithuania; Luxembourg; Netherlands; Norway; Poland; Portugal - mainland; Romania; San Marino; Slovakia; Slovenia; Spain - mainland; Sweden; Switzerland; United Kingdom (UK) - Great Britain mainland; Vatican City State.',35.95,71.21,-9.56,31.59,0);
INSERT INTO "extent" VALUES('EPSG','1300','Iran - FD58','Iran - Arwaz area and onshore Gulf coast west of 54°E, Lavan Island, offshore Balal field and South Pars blocks 2 and 3.',26.21,33.22,47.13,53.61,0);
INSERT INTO "extent" VALUES('EPSG','1301','Portugal - Azores C - onshore','Portugal - central Azores onshore - Faial, Graciosa, Pico, Sao Jorge, Terceira.',38.32,39.14,-28.9,-26.97,0);
INSERT INTO "extent" VALUES('EPSG','1302','Asia - Cambodia and Vietnam - mainland','Cambodia - mainland onshore; Vietnam - mainland onshore.',8.33,23.4,102.14,109.53,0);
INSERT INTO "extent" VALUES('EPSG','1303','South America - Tierra del Fuego','Chile - Tierra del Fuego, onshore; Argentina - Tierra del Fuego, onshore and offshore Atlantic west of 66°W.',-55.96,-51.65,-74.83,-63.73,0);
INSERT INTO "extent" VALUES('EPSG','1304','Asia - Myanmar and Thailand onshore','Myanmar (Burma) - onshore; Thailand - onshore.',5.63,28.55,92.2,105.64,0);
INSERT INTO "extent" VALUES('EPSG','1305','Europe - Ireland (Republic and Ulster) - onshore','Ireland - onshore. United Kingdom (UK) - Northern Ireland (Ulster) - onshore.',51.39,55.43,-10.56,-5.34,0);
INSERT INTO "extent" VALUES('EPSG','1306','Europe - Czechoslovakia','Czechia; Slovakia.',47.73,51.06,12.09,22.56,0);
INSERT INTO "extent" VALUES('EPSG','1307','Asia - Bangladesh; India; Myanmar; Pakistan - onshore','Bangladesh - onshore; India - mainland onshore; Myanmar (Burma) - onshore; Pakistan - onshore.',8.02,37.07,60.86,101.17,0);
INSERT INTO "extent" VALUES('EPSG','1308','Asia - Bangladesh; India; Myanmar; Pakistan - onshore','Bangladesh - onshore; India - mainland onshore; Myanmar - onshore and Moattama area offshore; Pakistan - onshore.',8.02,37.07,60.86,101.17,0);
INSERT INTO "extent" VALUES('EPSG','1309','Asia - Malaysia (west) and Singapore','Malaysia - West Malaysia; Singapore.',1.13,6.72,99.59,104.6,0);
INSERT INTO "extent" VALUES('EPSG','1310','Kuwait - Kuwait City','Kuwait - Kuwait City.',29.17,29.45,47.78,48.16,0);
INSERT INTO "extent" VALUES('EPSG','1311','Venezuela - Cabimas','Venezuela - Cabimas area.',10.14,10.61,-71.55,-71.29,0);
INSERT INTO "extent" VALUES('EPSG','1312','Venezuela - Lake Maracaibo','Venezuela - Lake Maracaibo area, onshore and offshore in lake.',8.72,11.04,-72.4,-70.78,0);
INSERT INTO "extent" VALUES('EPSG','1313','Venezuela - north of 7°45''N','Venezuela - onshore north of approximately 7°45''N.',7.75,12.25,-73.38,-59.8,0);
INSERT INTO "extent" VALUES('EPSG','1314','Portugal - Madeira archipelago onshore','Portugal - Madeira, Porto Santo and Desertas islands - onshore.',32.35,33.15,-17.31,-16.23,0);
INSERT INTO "extent" VALUES('EPSG','1315','Mozambique - west - Tete province','Mozambique - west - Tete province.',-17.76,-14.01,30.21,35.37,0);
INSERT INTO "extent" VALUES('EPSG','1316','Indonesia - Sulawesi SW','Indonesia - south west Sulawesi.',-6.54,-1.88,118.71,120.78,0);
INSERT INTO "extent" VALUES('EPSG','1317','Angola - Cabinda offshore','Angola - Cabinda offshore.',-6.04,-5.05,10.53,12.18,0);
INSERT INTO "extent" VALUES('EPSG','1318','Angola - Cabinda','Angola - Cabinda.',-6.04,-4.38,10.53,13.1,0);
INSERT INTO "extent" VALUES('EPSG','1319','Venezuela - Maracaibo area','Venezuela - Maracaibo area, onshore and offshore in lake.',10.0,11.0,-72.25,-71.5,0);
INSERT INTO "extent" VALUES('EPSG','1320','Venezuela - Maturin','Venezuela - Maturin area.',9.1,10.13,-64.3,-63.0,0);
INSERT INTO "extent" VALUES('EPSG','1321','Europe - Austria and former Yugoslavia onshore','Austria. Bosnia and Herzegovina. Croatia - onshore. Kosovo. Montenegro - onshore. North Macedonia. Serbia. Slovenia - onshore.',40.85,49.02,9.53,23.04,0);
INSERT INTO "extent" VALUES('EPSG','1322','Trinidad and Tobago - Tobago - onshore','Trinidad and Tobago - Tobago - onshore.',11.08,11.41,-60.9,-60.44,0);
INSERT INTO "extent" VALUES('EPSG','1323','USA - CONUS - onshore','United States (USA) - CONUS onshore - Alabama; Arizona; Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming.',24.41,49.38,-124.79,-66.91,0);
INSERT INTO "extent" VALUES('EPSG','1324','USA (all states)','United States (USA) - onshore and offshore - Alabama; Alaska; Arizona; Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Hawaii; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming.',15.56,74.71,167.65,-65.69,0);
INSERT INTO "extent" VALUES('EPSG','1325','North America - Canada and USA (CONUS, Alaska mainland)','North America - onshore and offshore: Canada - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan; Yukon. United States (USA) - Alabama; Alaska (mainland); Arizona; Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming.',23.81,86.46,-172.54,-47.74,0);
INSERT INTO "extent" VALUES('EPSG','1326','France - mainland onshore','France - mainland onshore.',42.33,51.14,-4.87,8.23,0);
INSERT INTO "extent" VALUES('EPSG','1327','France - Corsica onshore','France - Corsica onshore.',41.31,43.07,8.5,9.63,0);
INSERT INTO "extent" VALUES('EPSG','1328','Indonesia - Kalimantan - Mahakam delta','Indonesia - east Kalimantan - Mahakam delta coastal and offshore shelf areas.',-1.24,0.0,116.72,117.99,0);
INSERT INTO "extent" VALUES('EPSG','1329','Mozambique - south','Mozambique - south.',-26.87,-19.84,31.29,35.65,0);
INSERT INTO "extent" VALUES('EPSG','1330','USA - Alaska','United States (USA) - Alaska.',51.3,71.4,172.42,-129.99,0);
INSERT INTO "extent" VALUES('EPSG','1331','USA - Alaska - St. George Island','United States (USA) - Alaska - Pribilof Islands - St George Island.',56.49,56.67,-169.88,-169.38,0);
INSERT INTO "extent" VALUES('EPSG','1332','USA - Alaska - St. Lawrence Island','United States (USA) - Alaska - St Lawrence Island.',62.89,63.84,-171.97,-168.59,0);
INSERT INTO "extent" VALUES('EPSG','1333','USA - Alaska - St. Paul Island','United States (USA) - Alaska - Pribilof Islands - St Paul Island.',57.06,57.28,-170.51,-170.04,0);
INSERT INTO "extent" VALUES('EPSG','1334','USA - Hawaii - onshore','United States (USA) - Hawaii - main islands onshore.',18.87,22.29,-160.3,-154.74,0);
INSERT INTO "extent" VALUES('EPSG','1335','Caribbean - Puerto Rico and Virgin Islands - onshore','Puerto Rico, US Virgin Islands and British Virgin Islands - onshore.',17.62,18.78,-67.97,-64.25,0);
INSERT INTO "extent" VALUES('EPSG','1336','Canada - CSRS98','Canada - Alberta; New Brunswick; Saskatchewan; Prince Edward Island; and Quebec.',44.61,62.56,-120.0,-57.1,1);
INSERT INTO "extent" VALUES('EPSG','1337','USA - HARN','American Samoa - onshore - Tutuila, Aunu''u, Ofu, Olesega, Ta''u and Rose islands. Guam - onshore. Northern Mariana Islands - onshore. Puerto Rico - onshore. United States (USA) - onshore Alabama, Alaska, Arizona, Arkansas, California, Colorado, Connecticut, Delaware, Florida, Georgia, Hawaii, Idaho, Illinois, Indiana, Iowa, Kansas, Kentucky, Louisiana, Maine, Maryland, Massachusetts, Michigan, Minnesota, Mississippi, Missouri, Montana, Nebraska, Nevada, New Hampshire, New Jersey, New Mexico, New York, North Carolina, North Dakota, Ohio, Oklahoma, Oregon, Pennsylvania, Rhode Island, South Carolina, South Dakota, Tennessee, Texas, Utah, Vermont, Virginia, Washington, West Virginia, Wisconsin and Wyoming; offshore Gulf of Mexico continental shelf (GoM OCS). US Virgin Islands - onshore.',-14.59,71.4,144.58,-64.51,0);
INSERT INTO "extent" VALUES('EPSG','1338','Iran - Taheri refinery','Iran - Taheri refinery site.',27.39,27.61,52.5,52.71,0);
INSERT INTO "extent" VALUES('EPSG','1339','Trinidad and Tobago - Trinidad','Trinidad and Tobago - Trinidad - onshore and offshore.',9.83,11.51,-62.09,-60.0,0);
INSERT INTO "extent" VALUES('EPSG','1340','Yemen - South Yemen - mainland','Yemen - South Yemen onshore mainland.',12.54,19.0,43.37,53.14,0);
INSERT INTO "extent" VALUES('EPSG','1341','South America by country','South America - Argentina, Brazil, Bolivia, Chile, Colombia, Ecuador, French Guiana, Guyana, Paraguay, Peru, Suriname, Uruguay, Venezuela.',-56.15,13.0,-82.0,-34.0,1);
INSERT INTO "extent" VALUES('EPSG','1342','Sierra Leone - Freetown Peninsula','Sierra Leone - Freetown Peninsula.',8.32,8.55,-13.34,-13.13,0);
INSERT INTO "extent" VALUES('EPSG','1343','Germany - East Germany all states','Germany - states of former East Germany - Berlin, Brandenburg; Mecklenburg-Vorpommern; Sachsen; Sachsen-Anhalt; Thuringen.',50.2,54.74,9.92,15.04,0);
INSERT INTO "extent" VALUES('EPSG','1344','Portugal - Azores W - onshore','Portugal - western Azores onshore - Flores, Corvo.',39.3,39.77,-31.34,-31.02,0);
INSERT INTO "extent" VALUES('EPSG','1345','Portugal - Azores E - onshore','Portugal - eastern Azores onshore - Sao Miguel, Santa Maria, Formigas.',36.87,37.96,-25.92,-24.62,0);
INSERT INTO "extent" VALUES('EPSG','1346','Qatar - onshore','Qatar - onshore.',24.55,26.2,50.69,51.68,0);
INSERT INTO "extent" VALUES('EPSG','1347','Belgium - onshore','Belgium - onshore.',49.5,51.51,2.5,6.4,0);
INSERT INTO "extent" VALUES('EPSG','1348','South America - PSAD56 by country','Aruba - onshore; Bolivia; Bonaire - onshore; Brazil - offshore - Amazon Cone shelf; Chile - onshore north of 43°30''S; Curacao - onshore; Ecuador - mainland onshore; Guyana - onshore; Peru - onshore; Venezuela - onshore.',-43.5,12.68,-81.41,-47.99,0);
INSERT INTO "extent" VALUES('EPSG','1349','North America - NAD27','North and central America: Antigua and Barbuda - onshore. Bahamas - onshore plus offshore over internal continental shelf only. Belize - onshore. British Virgin Islands - onshore. Canada onshore - Alberta, British Columbia, Manitoba, New Brunswick, Newfoundland and Labrador, Northwest Territories, Nova Scotia, Nunavut, Ontario, Prince Edward Island, Quebec, Saskatchewan and Yukon - plus offshore east coast. Cuba - onshore and offshore. El Salvador - onshore. Guatemala - onshore. Honduras - onshore. Panama - onshore. Puerto Rico - onshore. Mexico - onshore plus offshore east coast. Nicaragua - onshore. United States (USA) onshore and offshore - Alabama, Alaska, Arizona, Arkansas, California, Colorado, Connecticut, Delaware, Florida, Georgia, Idaho, Illinois, Indiana, Iowa, Kansas, Kentucky, Louisiana, Maine, Maryland, Massachusetts, Michigan, Minnesota, Mississippi, Missouri, Montana, Nebraska, Nevada, New Hampshire, New Jersey, New Mexico, New York, North Carolina, North Dakota, Ohio, Oklahoma, Oregon, Pennsylvania, Rhode Island, South Carolina, South Dakota, Tennessee, Texas, Utah, Vermont, Virginia, Washington, West Virginia, Wisconsin and Wyoming - plus offshore . US Virgin Islands - onshore.',7.15,83.17,167.65,-47.74,0);
INSERT INTO "extent" VALUES('EPSG','1350','North America - NAD83','North America - onshore and offshore: Canada - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan; Yukon. Puerto Rico. United States (USA) - Alabama; Alaska; Arizona; Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Hawaii; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming. US Virgin Islands. British Virgin Islands.',14.92,86.46,167.65,-47.74,0);
INSERT INTO "extent" VALUES('EPSG','1351','Asia - Middle East - Qatar offshore and UAE','Arabian Gulf; Qatar - offshore; United Arab Emirates (UAE) - Abu Dhabi; Dubai; Sharjah; Ajman; Fujairah; Ras Al Kaimah; Umm Al Qaiwain - onshore and offshore.',22.63,27.05,50.55,57.13,0);
INSERT INTO "extent" VALUES('EPSG','1352','Norway - onshore','Norway - onshore.',57.93,71.21,4.68,31.22,0);
INSERT INTO "extent" VALUES('EPSG','1353','France - onshore','France - onshore.',NULL,NULL,NULL,NULL,1);
INSERT INTO "extent" VALUES('EPSG','1354','Europe - British Isles - UK and Ireland onshore','Ireland - onshore. United Kingdom (UK) - onshore - England; Scotland; Wales; Northern Ireland. Isle of Man.',49.81,60.9,-10.56,1.84,0);
INSERT INTO "extent" VALUES('EPSG','1355','Indonesia - Sumatra','Indonesia - Sumatra.',-5.99,5.97,95.16,106.13,0);
INSERT INTO "extent" VALUES('EPSG','1356','Asia - Middle East - Israel, Jordan and Palestine onshore','Israel - onshore; Jordan; Palestine Territory - onshore.',29.18,33.38,34.17,39.31,0);
INSERT INTO "extent" VALUES('EPSG','1357','Europe - eastern and FSU','Albania; Bulgaria; Czech Republic; Germany (former DDR); Hungary; Poland; Romania; Slovakia. Armenia; Azerbaijan; Belarus; Estonia; Georgia; Kazakhstan; Kyrgyzstan; Latvia; Lithuania; Moldova; Russian Federation; Tajikistan; Turkmenistan; Ukraine; Uzbekistan.',35.1,78.0,9.87,-169.73,1);
INSERT INTO "extent" VALUES('EPSG','1358','South America - SAD69 by country','Brazil - onshore and offshore. In rest of South America - onshore north of approximately 45°S and Tierra del Fuego.',-55.96,12.52,-91.72,-25.28,0);
INSERT INTO "extent" VALUES('EPSG','1359','Indonesia - Kalimantan SE','Indonesia - Kalimantan - onshore southeast coastal area including Mahakam delta coastal and offshore shelf areas.',-4.24,0.0,114.55,117.99,0);
INSERT INTO "extent" VALUES('EPSG','1360','Indonesia - Kalimantan E','Indonesia - Kalimantan - onshore east coastal area including Mahakam delta coastal and offshore shelf areas.',-4.24,4.29,114.55,119.06,0);
INSERT INTO "extent" VALUES('EPSG','1361','Sudan - south','Sudan - south.',NULL,NULL,NULL,NULL,1);
INSERT INTO "extent" VALUES('EPSG','1362','Asia - Brunei and East Malaysia','Brunei - onshore and offshore; Malaysia - East Malaysia (Sabah; Sarawak) - onshore and offshore.',0.85,7.67,109.31,119.61,0);
INSERT INTO "extent" VALUES('EPSG','1363','UAE - Abu Dhabi and Dubai - onshore','United Arab Emirates (UAE) - Abu Dhabi onshore and Dubai onshore.',22.63,25.34,51.56,56.03,0);
INSERT INTO "extent" VALUES('EPSG','1364','Asia - Japan and Korea','Japan - onshore; North Korea - onshore; South Korea - onshore.',20.37,45.54,122.83,154.05,0);
INSERT INTO "extent" VALUES('EPSG','1365','Algeria - north of 32°N','Algeria - onshore north of 32°N.',31.99,37.14,-2.95,9.09,0);
INSERT INTO "extent" VALUES('EPSG','1366','Africa - Algeria, Morocco and Tunisia','Algeria; Morocco; Tunisia.',18.98,37.34,-13.17,11.99,1);
INSERT INTO "extent" VALUES('EPSG','1367','Canada - Ontario','Canada - Ontario.',41.67,56.9,-95.16,-74.35,0);
INSERT INTO "extent" VALUES('EPSG','1368','Canada - Quebec','Canada - Quebec.',44.99,62.62,-79.85,-57.1,0);
INSERT INTO "extent" VALUES('EPSG','1369','France - Alsace','France - Alsace.',47.42,49.07,6.84,8.23,0);
INSERT INTO "extent" VALUES('EPSG','1370','Venezuela - Deltana','Venezuela - Deltana area.',7.89,10.46,-62.8,-59.8,0);
INSERT INTO "extent" VALUES('EPSG','1371','Venezuela - Guarico state','Venezuela - Guarico state.',7.54,10.03,-68.0,-64.76,0);
INSERT INTO "extent" VALUES('EPSG','1372','USA - Alabama','United States (USA) - Alabama.',30.14,35.02,-88.48,-84.89,0);
INSERT INTO "extent" VALUES('EPSG','1373','USA - Arizona','United States (USA) - Arizona.',31.33,37.01,-114.81,-109.04,0);
INSERT INTO "extent" VALUES('EPSG','1374','USA - Arkansas','United States (USA) - Arkansas.',33.01,36.5,-94.62,-89.64,0);
INSERT INTO "extent" VALUES('EPSG','1375','USA - California','United States (USA) - California.',32.53,42.01,-124.45,-114.12,0);
INSERT INTO "extent" VALUES('EPSG','1376','USA - Colorado','United States (USA) - Colorado.',36.98,41.01,-109.06,-102.04,0);
INSERT INTO "extent" VALUES('EPSG','1377','USA - Connecticut','United States (USA) - Connecticut - counties of Fairfield; Hartford; Litchfield; Middlesex; New Haven; New London; Tolland; Windham.',40.98,42.05,-73.73,-71.78,0);
INSERT INTO "extent" VALUES('EPSG','1378','USA - Delaware','United States (USA) - Delaware - counties of Kent; New Castle; Sussex.',38.44,39.85,-75.8,-74.97,0);
INSERT INTO "extent" VALUES('EPSG','1379','USA - Florida','United States (USA) - Florida.',24.41,31.01,-87.63,-79.97,0);
INSERT INTO "extent" VALUES('EPSG','1380','USA - Georgia','United States (USA) - Georgia.',30.36,35.01,-85.61,-80.77,0);
INSERT INTO "extent" VALUES('EPSG','1381','USA - Idaho','United States (USA) - Idaho.',41.99,49.01,-117.24,-111.04,0);
INSERT INTO "extent" VALUES('EPSG','1382','USA - Illinois','United States (USA) - Illinois.',36.98,42.51,-91.52,-87.02,0);
INSERT INTO "extent" VALUES('EPSG','1383','USA - Indiana','United States (USA) - Indiana.',37.77,41.77,-88.06,-84.78,0);
INSERT INTO "extent" VALUES('EPSG','1384','USA - Iowa','United States (USA) - Iowa.',40.37,43.51,-96.65,-90.14,0);
INSERT INTO "extent" VALUES('EPSG','1385','USA - Kansas','United States (USA) - Kansas.',36.99,40.01,-102.06,-94.58,0);
INSERT INTO "extent" VALUES('EPSG','1386','USA - Kentucky','United States (USA) - Kentucky.',36.49,39.15,-89.57,-81.95,0);
INSERT INTO "extent" VALUES('EPSG','1387','USA - Louisiana','United States (USA) - Louisiana.',28.85,33.03,-94.05,-88.75,0);
INSERT INTO "extent" VALUES('EPSG','1388','USA - Maine','United States (USA) - Maine.',43.04,47.47,-71.09,-66.91,0);
INSERT INTO "extent" VALUES('EPSG','1389','USA - Maryland','United States (USA) - Maryland - counties of Allegany; <NAME>; Baltimore; Calvert; Caroline; Carroll; Cecil; Charles; Dorchester; Frederick; Garrett; Harford; Howard; Kent; Montgomery; Prince Georges; Queen Annes; Somerset; St Marys; Talbot; Washington; Wicomico; Worcester.',37.97,39.73,-79.49,-74.97,0);
INSERT INTO "extent" VALUES('EPSG','1390','USA - Massachusetts','United States (USA) - Massachusetts.',41.19,42.89,-73.5,-69.86,0);
INSERT INTO "extent" VALUES('EPSG','1391','USA - Michigan','United States (USA) - Michigan.',41.69,48.32,-90.42,-82.13,0);
INSERT INTO "extent" VALUES('EPSG','1392','USA - Minnesota','United States (USA) - Minnesota.',43.49,49.38,-97.22,-89.49,0);
INSERT INTO "extent" VALUES('EPSG','1393','USA - Mississippi','United States (USA) - Mississippi.',30.01,35.01,-91.65,-88.09,0);
INSERT INTO "extent" VALUES('EPSG','1394','USA - Missouri','United States (USA) - Missouri.',35.98,40.61,-95.77,-89.1,0);
INSERT INTO "extent" VALUES('EPSG','1395','USA - Montana','United States (USA) - Montana - counties of Beaverhead; Big Horn; Blaine; Broadwater; Carbon; Carter; Cascade; Chouteau; Custer; Daniels; Dawson; Deer Lodge; Fallon; Fergus; Flathead; Gallatin; Garfield; Glacier; Golden Valley; Granite; Hill; Jefferson; Judith Basin; Lake; Lewis and Clark; Liberty; Lincoln; Madison; McCone; Meagher; Mineral; Missoula; Musselshell; Park; Petroleum; Phillips; Pondera; Powder River; Powell; Prairie; Ravalli; Richland; Roosevelt; Rosebud; Sanders; Sheridan; Silver Bow; Stillwater; Sweet Grass; Teton; Toole; Treasure; Valley; Wheatland; Wibaux; Yellowstone.',44.35,49.01,-116.07,-104.04,0);
INSERT INTO "extent" VALUES('EPSG','1396','USA - Nebraska','United States (USA) - Nebraska - counties of Adams; Antelope; Arthur; Banner; Blaine; Boone; Box Butte; Boyd; Brown; Buffalo; Burt; Butler; Cass; Cedar; Chase; Cherry; Cheyenne; Clay; Colfax; Cuming; Custer; Dakota; Dawes; Dawson; Deuel; Dixon; Dodge; Douglas; Dundy; Fillmore; Franklin; Frontier; Furnas; Gage; Garden; Garfield; Gosper; Grant; Greeley; Hall; Hamilton; Harlan; Hayes; Hitchcock; Holt; Hooker; Howard; Jefferson; Johnson; Kearney; Keith; Keya Paha; Kimball; Knox; Lancaster; Lincoln; Logan; Loup; Madison; McPherson; Merrick; Morrill; Nance; Nemaha; Nuckolls; Otoe; Pawnee; Perkins; Phelps; Pierce; Platte; Polk; Red Willow; Richardson; Rock; Saline; Sarpy; Saunders; Scotts Bluff; Seward; Sheridan; Sherman; Sioux; Stanton; Thayer; Thomas; Thurston; Valley; Washington; Wayne; Webster; Wheeler; York.',39.99,43.01,-104.06,-95.3,0);
INSERT INTO "extent" VALUES('EPSG','1397','USA - Nevada','United States (USA) - Nevada.',34.99,42.0,-120.0,-114.03,0);
INSERT INTO "extent" VALUES('EPSG','1398','USA - New Hampshire','United States (USA) - New Hampshire - counties of Belknap; Carroll; Cheshire; Coos; Grafton; Hillsborough; Merrimack; Rockingham; Strafford; Sullivan.',42.69,45.31,-72.56,-70.63,0);
INSERT INTO "extent" VALUES('EPSG','1399','USA - New Jersey','United States (USA) - New Jersey - counties of Atlantic; Bergen; Burlington; Camden; Cape May; Cumberland; Essex; Gloucester; Hudson; Hunterdon; Mercer; Middlesex; Monmouth; Morris; Ocean; Passaic; Salem; Somerset; Sussex; Union; Warren.',38.87,41.36,-75.6,-73.88,0);
INSERT INTO "extent" VALUES('EPSG','1400','USA - New Mexico','United States (USA) - New Mexico.',31.33,37.0,-109.06,-102.99,0);
INSERT INTO "extent" VALUES('EPSG','1401','USA - New York','United States (USA) - New York.',40.47,45.02,-79.77,-71.8,0);
INSERT INTO "extent" VALUES('EPSG','1402','USA - North Carolina','United States (USA) - North Carolina - counties of Alamance; Alexander; Alleghany; Anson; Ashe; Avery; Beaufort; Bertie; Bladen; Brunswick; Buncombe; Burke; Cabarrus; Caldwell; Camden; Carteret; Caswell; Catawba; Chatham; Cherokee; Chowan; Clay; Cleveland; Columbus; Craven; Cumberland; Currituck; Dare; Davidson; Davie; Duplin; Durham; Edgecombe; Forsyth; Franklin; Gaston; Gates; Graham; Granville; Greene; Guilford; Halifax; Harnett; Haywood; Henderson; Hertford; Hoke; Hyde; Iredell; Jackson; Johnston; Jones; Lee; Lenoir; Lincoln; Macon; Madison; Martin; McDowell; Mecklenburg; Mitchell; Montgomery; Moore; Nash; New Hanover; Northampton; Onslow; Orange; Pamlico; Pasquotank; Pender; Perquimans; Person; Pitt; Polk; Randolph; Richmond; Robeson; Rockingham; Rowan; Rutherford; Sampson; Scotland; Stanly; Stokes; Surry; Swain; Transylvania; Tyrrell; Union; Vance; Wake; Warren; Washington; Watauga; Wayne; Wilkes; Wilson; Yadkin; Yancey.',33.83,36.59,-84.33,-75.38,0);
INSERT INTO "extent" VALUES('EPSG','1403','USA - North Dakota','United States (USA) - North Dakota.',45.93,49.01,-104.07,-96.55,0);
INSERT INTO "extent" VALUES('EPSG','1404','USA - Ohio','United States (USA) - Ohio.',38.4,42.33,-84.83,-80.51,0);
INSERT INTO "extent" VALUES('EPSG','1405','USA - Oklahoma','United States (USA) - Oklahoma.',33.62,37.01,-103.0,-94.42,0);
INSERT INTO "extent" VALUES('EPSG','1406','USA - Oregon','United States (USA) - Oregon.',41.98,46.26,-124.6,-116.47,0);
INSERT INTO "extent" VALUES('EPSG','1407','USA - Pennsylvania','United States (USA) - Pennsylvania.',39.71,42.53,-80.53,-74.7,0);
INSERT INTO "extent" VALUES('EPSG','1408','USA - Rhode Island','United States (USA) - Rhode Island - counties of Bristol; Kent; Newport; Providence; Washington.',41.13,42.02,-71.85,-71.08,0);
INSERT INTO "extent" VALUES('EPSG','1409','USA - South Carolina','United States (USA) - South Carolina - counties of Abbeville; Aiken; Allendale; Anderson; Bamberg; Barnwell; Beaufort; Berkeley; Calhoun; Charleston; Cherokee; Chester; Chesterfield; Clarendon; Colleton; Darlington; Dillon; Dorchester; Edgefield; Fairfield; Florence; Georgetown; Greenville; Greenwood; Hampton; Horry; Jasper; Kershaw; Lancaster; Laurens; Lee; Lexington; Marion; Marlboro; McCormick; Newberry; Oconee; Orangeburg; Pickens; Richland; Saluda; Spartanburg; Sumter; Union; Williamsburg; York.',32.05,35.21,-83.36,-78.52,0);
INSERT INTO "extent" VALUES('EPSG','1410','USA - South Dakota','United States (USA) - South Dakota.',42.48,45.95,-104.07,-96.43,0);
INSERT INTO "extent" VALUES('EPSG','1411','USA - Tennessee','United States (USA) - Tennessee - counties of Anderson; Bedford; Benton; Bledsoe; Blount; Bradley; Campbell; Cannon; Carroll; Carter; Cheatham; Chester; Claiborne; Clay; Cocke; Coffee; Crockett; Cumberland; Davidson; De Kalb; Decatur; Dickson; Dyer; Fayette; Fentress; Franklin; Gibson; Giles; Grainger; Greene; Grundy; Hamblen; Hamilton; Hancock; Hardeman; Hardin; Hawkins; Haywood; Henderson; Henry; Hickman; Houston; Humphreys; Jackson; Jefferson; Johnson; Knox; Lake; Lauderdale; Lawrence; Lewis; Lincoln; Loudon; Macon; Madison; Marion; Marshall; Maury; McMinn; McNairy; Meigs; Monroe; Montgomery; Moore; Morgan; Obion; Overton; Perry; Pickett; Polk; Putnam; Rhea; Roane; Robertson; Rutherford; Scott; Sequatchie; Sevier; Shelby; Smith; Stewart; Sullivan; Sumner; Tipton; Trousdale; Unicoi; Union; Van Buren; Warren; Washington; Wayne; Weakley; White; Williamson; Wilson.',34.98,36.68,-90.31,-81.65,0);
INSERT INTO "extent" VALUES('EPSG','1412','USA - Texas','United States (USA) - Texas.',25.83,36.5,-106.66,-93.5,0);
INSERT INTO "extent" VALUES('EPSG','1413','USA - Utah','United States (USA) - Utah.',36.99,42.01,-114.05,-109.04,0);
INSERT INTO "extent" VALUES('EPSG','1414','USA - Vermont','United States (USA) - Vermont - counties of Addison; Bennington; Caledonia; Chittenden; Essex; Franklin; Grand Isle; Lamoille; Orange; Orleans; Rutland; Washington; Windham; Windsor.',42.72,45.03,-73.44,-71.5,0);
INSERT INTO "extent" VALUES('EPSG','1415','USA - Virginia','United States (USA) - Virginia.',36.54,39.46,-83.68,-75.31,0);
INSERT INTO "extent" VALUES('EPSG','1416','USA - Washington','United States (USA) - Washington.',45.54,49.05,-124.79,-116.91,0);
INSERT INTO "extent" VALUES('EPSG','1417','USA - West Virginia','United States (USA) - West Virginia.',37.2,40.64,-82.65,-77.72,0);
INSERT INTO "extent" VALUES('EPSG','1418','USA - Wisconsin','United States (USA) - Wisconsin.',42.48,47.31,-92.89,-86.25,0);
INSERT INTO "extent" VALUES('EPSG','1419','USA - Wyoming','United States (USA) - Wyoming.',40.99,45.01,-111.06,-104.05,0);
INSERT INTO "extent" VALUES('EPSG','1420','Canada - Quebec - east of 57°W','Canada - Quebec - east of 57°W.',46.6,53.76,-57.0,-54.0,1);
INSERT INTO "extent" VALUES('EPSG','1421','Canada - Quebec - 60°W to 57°W','Canada - Quebec - between 60°W and 57°W.',50.1,52.0,-60.0,-57.1,1);
INSERT INTO "extent" VALUES('EPSG','1422','Canada - Quebec - 63°W to 60°W','Canada - Quebec - between 63°W and 60°W.',47.16,52.01,-63.0,-60.0,0);
INSERT INTO "extent" VALUES('EPSG','1423','Canada - Quebec - 66°W to 63°W','Canada - Quebec - between 66°W and 63°W.',47.95,60.42,-66.0,-63.0,0);
INSERT INTO "extent" VALUES('EPSG','1424','Canada - Quebec - 69°W to 66°W','Canada - Quebec - between 69°W and 66°W.',47.31,59.0,-69.0,-66.0,0);
INSERT INTO "extent" VALUES('EPSG','1425','Canada - Quebec - 72°W to 69°W','Canada - Quebec - between 72°W and 69°W.',45.01,61.8,-72.0,-69.0,0);
INSERT INTO "extent" VALUES('EPSG','1426','Canada - Quebec - 75°W to 72°W','Canada - Quebec - between 75°W and 72°W.',44.99,62.53,-75.0,-72.0,0);
INSERT INTO "extent" VALUES('EPSG','1427','Canada - Quebec - 78°W to 75°W','Canada - Quebec - between 78°W and 75°W.',45.37,62.62,-78.0,-75.0,0);
INSERT INTO "extent" VALUES('EPSG','1428','Canada - Quebec - west of 78°W','Canada - Quebec - west of 78°W.',46.23,62.45,-79.85,-78.0,0);
INSERT INTO "extent" VALUES('EPSG','1429','Canada - Ontario - east of 75°W','Canada - Ontario - east of 75°W.',44.98,45.65,-75.0,-74.35,0);
INSERT INTO "extent" VALUES('EPSG','1430','Canada - Ontario - 78°W to 75°W','Canada - Ontario - between 78°W and 75°W.',43.63,46.25,-78.0,-75.0,0);
INSERT INTO "extent" VALUES('EPSG','1431','Canada - Ontario - MTM zone 10','Canada - Ontario - between 81°W and 78°W: south of 46°N in area to west of 80°15''W, south of 47°N in area between 80°15''W and 79°30''W, entire province between 79°30''W and 78°W.',42.26,47.33,-81.0,-77.99,0);
INSERT INTO "extent" VALUES('EPSG','1432','Canada - Ontario - MTM zone 11','Canada - Ontario - south of 46°N and west of 81°W.',41.67,46.0,-83.6,-81.0,0);
INSERT INTO "extent" VALUES('EPSG','1433','Canada - Ontario - MTM zone 12','Canada - Ontario - between 82°30''W and 79°30''W: north of 46°N in area between 82°30''W and 80°15''W, north of 47°N in area between 80°15''W and 79°30''W.',46.0,55.21,-82.5,-79.5,0);
INSERT INTO "extent" VALUES('EPSG','1434','Canada - Ontario - MTM zone 13','Canada - Ontario - between 85°30''W and 82°30''W and north of 46°N.',46.0,55.59,-85.5,-82.5,0);
INSERT INTO "extent" VALUES('EPSG','1435','Canada - Ontario - 88.5°W to 85.5°W','Canada - Ontario - between 88°30''W and 85°30''W.',47.17,56.7,-88.5,-85.5,0);
INSERT INTO "extent" VALUES('EPSG','1436','Canada - Ontario - 91.5°W to 88.5°W','Canada - Ontario - between 91°30''W and 88°30''W.',47.97,56.9,-91.5,-88.5,0);
INSERT INTO "extent" VALUES('EPSG','1437','Canada - Ontario - 94.5°W to 91.5°W','Canada - Ontario - between 94°30''W and 91°30''W.',48.06,55.2,-94.5,-91.5,0);
INSERT INTO "extent" VALUES('EPSG','1438','Canada - Ontario - west of 94.5°W','Canada - Ontario - west of 94°30''W.',48.69,53.24,-95.16,-94.5,0);
INSERT INTO "extent" VALUES('EPSG','1439','Canada - Ontario - west of 90°W','Canada - Ontario - west of 90°W.',48.03,56.2,-95.16,-90.0,0);
INSERT INTO "extent" VALUES('EPSG','1440','Canada - Ontario - 90°W to 84°W','Canada - Ontario - between 90°W and 84°W.',46.11,56.9,-90.0,-84.0,0);
INSERT INTO "extent" VALUES('EPSG','1441','Canada - Ontario - 84°W to 78°W','Canada - Ontario - between 84°W and 78°W.',41.67,55.37,-84.0,-78.0,0);
INSERT INTO "extent" VALUES('EPSG','1442','Canada - Ontario - east of 78°W','Canada - Ontario - east of 78°W.',43.63,46.25,-78.0,-74.35,0);
INSERT INTO "extent" VALUES('EPSG','1443','Canada - Quebec - 78°W to 72°W','Canada - Quebec - between 78°W and 72°W.',44.99,62.62,-78.0,-72.0,0);
INSERT INTO "extent" VALUES('EPSG','1444','Canada - Quebec - 72°W to 66°W','Canada - Quebec - between 72°W and 66°W.',45.01,61.8,-72.0,-66.0,0);
INSERT INTO "extent" VALUES('EPSG','1445','Canada - Quebec - 66°W to 60°W','Canada - Quebec - between 66°W and 60°W.',47.16,60.42,-66.0,-60.0,0);
INSERT INTO "extent" VALUES('EPSG','1446','Canada - Quebec - east of 60°W','Canada - Quebec - east of 60°W.',50.2,52.01,-60.0,-57.1,0);
INSERT INTO "extent" VALUES('EPSG','1447','Canada - New Brunswick','Canada - New Brunswick.',44.56,48.07,-69.05,-63.7,0);
INSERT INTO "extent" VALUES('EPSG','1448','Canada - 72°W to 66°W, south of 62°N','Canada south of 60°N and between 72°W and 66°W - New Brunswick (NB), Labrador, Nova Scotia (NS), Quebec.',44.6,61.5,-72.0,-66.0,1);
INSERT INTO "extent" VALUES('EPSG','1449','Canada - 66°W to 60°W, south of 60°N','Canada south of 60°N and between 66°W and 60°W - New Brunswick (NB), Labrador, Nova Scotia (NS), Prince Edward Island (PEI), Quebec.',43.2,60.0,-66.0,-60.0,1);
INSERT INTO "extent" VALUES('EPSG','1450','Cote d''Ivoire (Ivory Coast) - east of 6°W','Côte d''Ivoire (Ivory Coast) east of 6°W.',4.92,10.46,-6.0,-2.48,0);
INSERT INTO "extent" VALUES('EPSG','1451','Cote d''Ivoire (Ivory Coast) - west of 6°W','Côte d''Ivoire (Ivory Coast) west of 6°W.',4.29,10.74,-8.61,-6.0,0);
INSERT INTO "extent" VALUES('EPSG','1452','Vietnam - west of 108°E onshore','Vietnam - onshore west of 108°E.',8.33,23.4,102.14,108.0,0);
INSERT INTO "extent" VALUES('EPSG','1453','Vietnam - east of 108°E onshore','Vietnam - onshore east of 108°E.',10.43,21.56,108.0,109.53,0);
INSERT INTO "extent" VALUES('EPSG','1454','Namibia - Walvis Bay','Namibia - Walvis Bay.',-23.15,-22.68,14.35,14.6,0);
INSERT INTO "extent" VALUES('EPSG','1455','South Africa - west of 18°E','South Africa - onshore west of 18°E.',-33.1,-28.03,16.45,18.0,0);
INSERT INTO "extent" VALUES('EPSG','1456','South Africa - 18°E to 20°E','South Africa - onshore between 18°E and 20°E.',-34.88,-28.38,17.99,20.0,0);
INSERT INTO "extent" VALUES('EPSG','1457','South Africa - 20°E to 22°E','South Africa - onshore between 20°E and 22°E.',-34.88,-24.76,19.99,22.01,0);
INSERT INTO "extent" VALUES('EPSG','1458','South Africa - 22°E to 24°E','South Africa - onshore between 22°E and 24°E.',-34.26,-25.26,22.0,24.01,0);
INSERT INTO "extent" VALUES('EPSG','1459','South Africa - 24°E to 26°E','South Africa - onshore between 24°E and 26°E.',-34.26,-24.71,24.0,26.01,0);
INSERT INTO "extent" VALUES('EPSG','1460','South Africa - 26°E to 28°E','Lesotho - west of 28°E. South Africa - onshore between 26°E and 28°E.',-33.83,-22.92,26.0,28.0,0);
INSERT INTO "extent" VALUES('EPSG','1461','South Africa - 28°E to 30°E','Lesotho - east of 28°E. South Africa - onshore between 28°E and 30°E.',-33.03,-22.13,27.99,30.0,0);
INSERT INTO "extent" VALUES('EPSG','1462','South Africa - 30°E to 32°E','South Africa - onshore between 30°E and 32°E. Eswatini (Swaziland).',-31.38,-22.22,29.99,32.02,0);
INSERT INTO "extent" VALUES('EPSG','1463','South Africa - east of 32°E','South Africa - east of 32°E.',-28.94,-26.8,31.95,32.95,0);
INSERT INTO "extent" VALUES('EPSG','1464','Iran - west of 48°E','Iran - west of 48°E.',30.99,39.78,44.03,48.0,0);
INSERT INTO "extent" VALUES('EPSG','1465','Iran - 48°E to 54°E','Iran - onshore and offshore between 48°E and 54°E.',25.47,39.71,48.0,54.0,0);
INSERT INTO "extent" VALUES('EPSG','1466','Iran - 54°E to 60°E','Iran - onshore between 54°E and 60°E, Gulf offshore between of 54°E and Strait of Hormuz.',25.32,38.29,54.0,60.0,0);
INSERT INTO "extent" VALUES('EPSG','1467','Iran - east of 60°E onshore','Iran - onshore east of 60°E.',25.02,37.06,60.0,63.34,0);
INSERT INTO "extent" VALUES('EPSG','1468','Guinea - west of 12°W','Guinea - onshore west of 12°W.',9.01,12.68,-15.13,-12.0,0);
INSERT INTO "extent" VALUES('EPSG','1469','Guinea - east of 12°W','Guinea - east of 12°W.',7.19,12.51,-12.0,-7.65,0);
INSERT INTO "extent" VALUES('EPSG','1470','Libya - west of 10°E','Libya - west of 10°E.',25.37,30.49,9.31,10.01,0);
INSERT INTO "extent" VALUES('EPSG','1471','Libya - 10°E to 12°E onshore','Libya - onshore between 10°E and 12°E.',23.51,33.23,10.0,12.0,0);
INSERT INTO "extent" VALUES('EPSG','1472','Libya - 12°E to 14°E onshore','Libya - onshore between 12°E and 14°E.',22.8,33.06,12.0,14.0,0);
INSERT INTO "extent" VALUES('EPSG','1473','Libya - 14°E to 16°E onshore','Libya - onshore between 14°E and 16°E.',22.61,32.79,14.0,16.0,0);
INSERT INTO "extent" VALUES('EPSG','1474','Libya - 16°E to 18°E onshore','Libya - onshore between 16°E and 18°E.',22.51,31.34,16.0,18.01,0);
INSERT INTO "extent" VALUES('EPSG','1475','Libya - 18°E to 20°E onshore','Libya - onshore between 18°E and 20°E.',21.54,32.17,18.0,20.0,0);
INSERT INTO "extent" VALUES('EPSG','1476','Libya - 20°E to 22°E onshore','Libya - onshore between 20°E and 22°E.',20.54,33.0,20.0,22.0,0);
INSERT INTO "extent" VALUES('EPSG','1477','Libya - 22°E to 24°E onshore','Libya - onshore between 22°E and 24°E.',19.5,32.97,22.0,24.0,0);
INSERT INTO "extent" VALUES('EPSG','1478','Libya - east of 24°E onshore','Libya - onshore east of 24°E.',19.99,32.15,24.0,25.21,0);
INSERT INTO "extent" VALUES('EPSG','1479','Libya - west of 12°E onshore','Libya - onshore west of 12°E.',23.51,33.23,9.31,12.0,0);
INSERT INTO "extent" VALUES('EPSG','1480','Libya - 12°E to 18°E onshore','Libya - onshore between 12°E and 18°E.',22.51,33.06,12.0,18.01,0);
INSERT INTO "extent" VALUES('EPSG','1481','Libya - 18°E to 24°E onshore','Libya - onshore between 18°E and 24°E.',19.5,33.0,17.99,24.0,0);
INSERT INTO "extent" VALUES('EPSG','1482','Libya - west of 15°E onshore','Libya - onshore west of 15°E.',22.61,33.23,9.31,15.0,0);
INSERT INTO "extent" VALUES('EPSG','1483','Argentina - Mendoza and Neuquen 70.5°W to 67.5°W','Argentina - Mendoza and Neuquen provinces between 70°30''W and 67°30''W - Neuquen and Cuyo basins.',-43.41,-31.91,-70.51,-67.49,0);
INSERT INTO "extent" VALUES('EPSG','1484','Argentina - 42.5°S to 50.3°S and 70.5°W to 67.5°W','Argentina - Chibut province between 70°30''W and 67°30''W and south of approximately 42°30''S and Santa Cruz province between 70°30''W and 67°30''W and north of approximately 50°20''S.',-50.34,-42.49,-70.5,-67.49,0);
INSERT INTO "extent" VALUES('EPSG','1485','Argentina - Tierra del Fuego onshore west of 67.5°W','Argentina - Tierra del Fuego onshore west of 67°30''W.',-54.9,-52.59,-68.64,-67.5,0);
INSERT INTO "extent" VALUES('EPSG','1486','Argentina - Tierra del Fuego offshore','Argentina - Tierra del Fuego offshore Atlantic.',-54.93,-51.36,-68.62,-61.49,0);
INSERT INTO "extent" VALUES('EPSG','1487','Cuba - onshore north of 21°30''N','Cuba - onshore north of 21°30''N but also including all of Isla de la Juventud.',21.38,23.25,-85.01,-76.91,0);
INSERT INTO "extent" VALUES('EPSG','1488','Cuba - onshore south of 21°30''N','Cuba - onshore south of 21°30''N and east of 80°W .',19.77,21.5,-78.69,-74.07,0);
INSERT INTO "extent" VALUES('EPSG','1489','Tunisia - offshore','Tunisia - offshore.',33.22,38.41,7.81,13.67,0);
INSERT INTO "extent" VALUES('EPSG','1490','Yemen - 42°E to 48°E','Yemen - between 42°E and 48°E, onshore and offshore.',11.57,17.95,42.0,48.01,0);
INSERT INTO "extent" VALUES('EPSG','1491','Yemen - 48°E to 54°E','Yemen - between 48°E and 54°E, onshore and offshore.',9.45,19.0,48.0,54.01,0);
INSERT INTO "extent" VALUES('EPSG','1492','Yemen - South Yemen - mainland west of 48°E','Yemen - South Yemen onshore mainland west of 48°E.',12.54,17.95,43.37,48.01,0);
INSERT INTO "extent" VALUES('EPSG','1493','Yemen - South Yemen - mainland east of 48°E','Yemen - South Yemen onshore mainland east of 48°E.',13.94,19.0,48.0,53.14,0);
INSERT INTO "extent" VALUES('EPSG','1494','Vietnam - onshore Vung Tau area','Vietnam - onshore Vung Tau area.',9.03,11.04,105.49,107.58,0);
INSERT INTO "extent" VALUES('EPSG','1495','Vietnam - offshore Cuu Long basin','Vietnam - offshore - Cuu Long basin and northwestern part of Nam Con Son basin.',7.99,11.15,106.54,110.0,0);
INSERT INTO "extent" VALUES('EPSG','1496','Korea, Republic of (South Korea) - east of 128°E onshore','Republic of Korea (South Korea) - onshore east of 128°E.',34.49,38.64,128.0,129.65,0);
INSERT INTO "extent" VALUES('EPSG','1497','Korea, Republic of (South Korea) - 126°E to 128°E onshore','Republic of Korea (South Korea) - onshore between 126°E and 128°E.',33.14,38.33,126.0,128.0,0);
INSERT INTO "extent" VALUES('EPSG','1498','Korea, Republic of (South Korea) - 124°E to 126°E onshore','Republic of Korea (South Korea) - onshore between 124°E and 126°E.',33.99,38.04,124.53,126.0,0);
INSERT INTO "extent" VALUES('EPSG','1499','Venezuela - Maracaibo - blocks I II and III','Venezuela - Maracaibo area offshore blocks I, II and III.',10.0,10.51,-71.5,-71.17,0);
INSERT INTO "extent" VALUES('EPSG','1500','New Zealand - North Island','New Zealand - North Island.',-41.67,-34.1,171.99,178.63,0);
INSERT INTO "extent" VALUES('EPSG','1501','New Zealand - South Island','New Zealand - South Island.',-46.86,-40.44,166.37,174.46,0);
INSERT INTO "extent" VALUES('EPSG','1502','New Zealand - offshore 162°E to168°E','New Zealand - offshore between 162°E and 168°E.',-55.89,-39.68,162.0,168.0,0);
INSERT INTO "extent" VALUES('EPSG','1503','New Zealand - offshore 168°E to 174°E','New Zealand - offshore between 168°E and 174°E.',-55.95,-30.78,168.0,174.0,0);
INSERT INTO "extent" VALUES('EPSG','1504','New Zealand - offshore 174°E to 180°E','New Zealand - offshore between 174°E and 180°E.',-54.32,-26.42,174.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','1505','Ghana - offshore','Ghana - offshore.',1.4,6.06,-3.79,2.1,0);
INSERT INTO "extent" VALUES('EPSG','1506','Canada - 108°W to 102°W, south of 60°N','Canada south of 60°N and between 108°E and 102°W - Saskatchewan.',49.0,60.0,-108.0,-102.0,1);
INSERT INTO "extent" VALUES('EPSG','1507','Canada - 114°W to 108°W, south of 60°N','Canada south of 60°N and between 114°E and 108°W - Alberta, Saskatchewan.',49.0,60.0,-114.0,-108.0,1);
INSERT INTO "extent" VALUES('EPSG','1508','Canada - 120°W to 114°W, south of 60°N','Canada south of 60°N and between 120°E and 114°W - Alberta, British Columbia (BC).',49.0,60.0,-120.0,-114.0,1);
INSERT INTO "extent" VALUES('EPSG','1509','Sierra Leone - west of 12°W','Sierra Leone - onshore west of 12°W.',7.15,9.94,-13.35,-12.0,0);
INSERT INTO "extent" VALUES('EPSG','1510','Sierra Leone - east of 12°W','Sierra Leone - onshore east of 12°W.',6.88,10.0,-12.0,-10.26,0);
INSERT INTO "extent" VALUES('EPSG','1511','USA - CONUS and Alaska; PRVI','Puerto Rico - onshore and offshore. United States (USA) onshore and offshore - Alabama; Alaska; Arizona; Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming. US Virgin Islands - onshore and offshore.',14.92,74.71,167.65,-63.88,0);
INSERT INTO "extent" VALUES('EPSG','1512','Germany - East Germany - west of 10.5°E','Germany - states of former East Germany - west of 10°30''E - Thuringen.',50.35,51.56,9.92,10.5,0);
INSERT INTO "extent" VALUES('EPSG','1513','Europe - 10.5°E to 13.5°E onshore by country','Czechia - west of 13°30''E. Germany - states of former East Germany onshore - between 10°30''E and 13°30''E - Brandenburg; Mecklenburg-Vorpommern; Sachsen; Sachsen-Anhalt; Thuringen.',48.97,54.74,10.5,13.5,0);
INSERT INTO "extent" VALUES('EPSG','1514','Europe - 13.5°E to 16.5°E onshore and S-42(83) by country','Czechia - between 13°30''E and 16°30''E. Germany - states of former East Germany onshore east of 13°30''E - Brandenburg; Mecklenburg-Vorpommern; Sachsen. Hungary - west of 16°30''E.',46.54,54.72,13.5,16.5,0);
INSERT INTO "extent" VALUES('EPSG','1515','Poland - zone I','Poland - southeast - south of 52°20''N and east of 18°E.',49.0,52.34,18.0,24.15,0);
INSERT INTO "extent" VALUES('EPSG','1516','Poland - zone II','Poland - northeast - onshore north of 51°20''N and east of 19°E.',51.33,54.51,19.0,23.95,0);
INSERT INTO "extent" VALUES('EPSG','1517','Poland - zone III','Poland - northwest - onshore north of 52°10''N and west of 20°E.',52.16,54.89,14.14,20.0,0);
INSERT INTO "extent" VALUES('EPSG','1518','Poland - zone IV','Poland - southwest - south of 53°20''N and west of 19°05''E.',49.39,53.34,14.14,19.09,0);
INSERT INTO "extent" VALUES('EPSG','1519','Poland - zone V','Poland - south central - between 49°20''N and 51°20''N, 18°20''E and 19°40''E.',49.39,51.34,18.33,19.67,0);
INSERT INTO "extent" VALUES('EPSG','1520','Poland - west of 16.5°E','Poland - onshore and offshore west of 16°30''E.',50.26,55.35,14.14,16.5,0);
INSERT INTO "extent" VALUES('EPSG','1521','Poland - 16.5°E to 19.5°E','Poland - onshore and offshore between 16°30''E and 19°30''E.',49.39,55.93,16.5,19.5,0);
INSERT INTO "extent" VALUES('EPSG','1522','Poland - 19.5°E to 22.5°E','Poland - onshore and offshore between 19°30''E and 22°30''E.',49.09,54.55,19.5,22.5,0);
INSERT INTO "extent" VALUES('EPSG','1523','Poland - east of 22.5°E','Poland - east of 22°30''E.',49.0,54.41,22.5,24.15,0);
INSERT INTO "extent" VALUES('EPSG','1524','Turkey - west of 28.5°E onshore','Turkey west of 28°30''E, onshore.',36.5,42.11,25.62,28.5,0);
INSERT INTO "extent" VALUES('EPSG','1525','Turkey - 28.5°E to 31.5°E onshore','Turkey between 28°30''E and 31°30''E, onshore.',36.06,41.46,28.5,31.5,0);
INSERT INTO "extent" VALUES('EPSG','1526','Turkey - 31.5°E to 34.5°E onshore','Turkey between 31°30''E and 34°30''E, onshore.',35.97,42.07,31.5,34.5,0);
INSERT INTO "extent" VALUES('EPSG','1527','Turkey - 34.5°E to 37.5°E onshore','Turkey between 34°30''E and 37°30''E, onshore.',35.81,42.15,34.5,37.5,0);
INSERT INTO "extent" VALUES('EPSG','1528','Turkey - 37.5°E to 40.5°E onshore','Turkey between 37°30''E and 40°30''E, onshore.',36.66,41.19,37.5,40.5,0);
INSERT INTO "extent" VALUES('EPSG','1529','Turkey - 40.5°E to 43.5°E onshore','Turkey between 40°30''E and 43°30''E, onshore.',37.02,41.6,40.5,43.5,0);
INSERT INTO "extent" VALUES('EPSG','1530','Turkey - east of 43.5°E','Turkey east of 43°30''E.',36.97,41.02,43.5,44.83,0);
INSERT INTO "extent" VALUES('EPSG','1531','Canada - Maritime Provinces - west of 66°W','Canada - New Brunswick and Nova Scotia - west of 66°W.',43.64,48.07,-69.0,-66.0,0);
INSERT INTO "extent" VALUES('EPSG','1532','Canada - Maritime Provinces - east of 66°W','Canada - New Brunswick and Nova Scotia east of 66°W; Prince Edward Island.',43.41,47.98,-66.0,-59.73,0);
INSERT INTO "extent" VALUES('EPSG','1533','Canada - Prince Edward Island','Canada - Prince Edward Island.',45.9,47.09,-64.49,-61.9,0);
INSERT INTO "extent" VALUES('EPSG','1534','Canada - Nova Scotia - east of 63°W','Canada - Nova Scotia - east of 63°W.',44.64,47.08,-63.0,-59.73,0);
INSERT INTO "extent" VALUES('EPSG','1535','Canada - Nova Scotia - west of 63°W','Canada - Nova Scotia - west of 63°W.',43.41,46.02,-66.28,-63.0,0);
INSERT INTO "extent" VALUES('EPSG','1536','Finland - 19.5°E to 22.5°E onshore','Finland - onshore between 19°30''E and 22°30''E.',59.76,69.33,19.5,22.5,0);
INSERT INTO "extent" VALUES('EPSG','1537','Finland - 22.5°E to 25.5°E onshore','Finland - onshore between 22°30''E and 25°30''E.',59.75,68.9,22.5,25.5,0);
INSERT INTO "extent" VALUES('EPSG','1538','Finland - 25.5°E to 28.5°E onshore','Finland - onshore between 25°30''E and 28°30''E.',59.75,70.09,25.5,28.5,0);
INSERT INTO "extent" VALUES('EPSG','1539','Finland - 28.5°E to 31.5°E','Finland - between 28°30''E and 31°30''E.',60.94,69.81,28.5,31.5,0);
INSERT INTO "extent" VALUES('EPSG','1540','Mozambique - onshore west of 36°E','Mozambique - onshore west of 36°E.',-26.87,-11.41,30.21,36.0,0);
INSERT INTO "extent" VALUES('EPSG','1541','Mozambique - onshore east of 36°E','Mozambique - onshore east of 36°E.',-18.98,-10.42,35.99,40.9,0);
INSERT INTO "extent" VALUES('EPSG','1542','Asia - Cambodia and Vietnam - west of 108°E','Cambodia; Vietnam west of 108°E.',8.33,23.4,102.14,108.0,0);
INSERT INTO "extent" VALUES('EPSG','1543','Austria - Styria','Austria - Styria.',46.64,47.84,13.58,16.17,0);
INSERT INTO "extent" VALUES('EPSG','1544','Oman - onshore west of 54°E','Oman - onshore west of 54°E.',16.59,19.67,51.99,54.0,0);
INSERT INTO "extent" VALUES('EPSG','1545','Oman - onshore east of 54°E','Oman - onshore east of 54°E. Includes Musandam and the Kuria Muria (Al Hallaniyah) islands.',16.89,26.58,54.0,59.91,0);
INSERT INTO "extent" VALUES('EPSG','1546','USA - Hawaii - island of Hawaii - onshore','United States (USA) - Hawaii - island of Hawaii - onshore.',18.87,20.33,-156.1,-154.74,0);
INSERT INTO "extent" VALUES('EPSG','1547','USA - Hawaii - Maui; Kahoolawe; Lanai; Molokai - onshore','United States (USA) - Hawaii - Maui; Kahoolawe; Lanai; Molokai - onshore.',20.45,21.26,-157.36,-155.93,0);
INSERT INTO "extent" VALUES('EPSG','1548','USA - Hawaii - Oahu - onshore','United States (USA) - Hawaii - Oahu - onshore.',21.2,21.75,-158.33,-157.61,0);
INSERT INTO "extent" VALUES('EPSG','1549','USA - Hawaii - Kauai - onshore','United States (USA) - Hawaii - Kauai - onshore.',21.81,22.29,-159.85,-159.23,0);
INSERT INTO "extent" VALUES('EPSG','1550','USA - Hawaii - Niihau - onshore','United States (USA) - Hawaii - Niihau - onshore.',21.73,22.07,-160.3,-159.99,0);
INSERT INTO "extent" VALUES('EPSG','1551','Grenada and southern Grenadines - onshore','Grenada and southern Grenadine Islands - onshore.',11.94,12.57,-61.84,-61.35,0);
INSERT INTO "extent" VALUES('EPSG','1552','Africa - Eritrea, Ethiopia and Sudan - 36°E to 42°E','Eritrea. Ethiopia - between 36°E and 42°E. Sudan - east of 36°E.',3.4,22.01,36.0,42.0,0);
INSERT INTO "extent" VALUES('EPSG','1553','Ethiopia - east of 42°E','Ethiopia - east of 42°E.',4.11,12.85,42.0,47.99,0);
INSERT INTO "extent" VALUES('EPSG','1554','Somalia - 42°E to 48°E, N hemisphere onshore','Somalia - onshore north of equator and between 42°E and 48°E.',0.0,11.52,42.0,48.0,0);
INSERT INTO "extent" VALUES('EPSG','1555','Somalia - onshore east of 48°E','Somalia - onshore east of 48°E.',4.44,12.03,48.0,51.47,0);
INSERT INTO "extent" VALUES('EPSG','1556','Australia - 102°E to 108°E','Australia - between 102°E and 108°E.',-56.0,-10.0,102.0,108.0,1);
INSERT INTO "extent" VALUES('EPSG','1557','Australia - 108°E to 114°E (EEZ)','Australia - onshore and offshore to 200 nautical mile EEZ boundary between 108°E and 114°E.',-37.84,-17.19,109.23,114.0,0);
INSERT INTO "extent" VALUES('EPSG','1558','Australia - 114°E to 120°E (EEZ)','Australia - onshore and offshore to 200 nautical mile EEZ boundary between 114°E and 120°E.',-38.53,-12.61,114.0,120.0,0);
INSERT INTO "extent" VALUES('EPSG','1559','Australia - 120°E to 126°E','Australia - onshore and offshore between 120°E and 126°E.',-38.07,-10.46,120.0,126.01,0);
INSERT INTO "extent" VALUES('EPSG','1560','Australia - 126°E to 132°E','Australia - onshore and offshore between 126°E and 132°E.',-37.38,-9.1,125.99,132.0,0);
INSERT INTO "extent" VALUES('EPSG','1561','Australia - 132°E to 138°E','Australia - onshore and offshore between 132°E and 138°E.',-40.71,-8.88,132.0,138.01,0);
INSERT INTO "extent" VALUES('EPSG','1562','Australia - 138°E to 144°E','Australia - onshore and offshore between 138°E and 144°E.',-48.19,-9.08,138.0,144.01,0);
INSERT INTO "extent" VALUES('EPSG','1563','Australia - 144°E to 150°E','Australia - onshore and offshore between 144°E and 150°E.',-50.89,-9.23,144.0,150.01,0);
INSERT INTO "extent" VALUES('EPSG','1564','Australia - 150°E to 156°E','Australia - onshore and offshore between 150°E and 156°E.',-58.96,-13.87,150.0,156.0,0);
INSERT INTO "extent" VALUES('EPSG','1565','Australia - 156°E to 162°E','Australia including Lord Howe Island - onshore and offshore between 156°E and 162°E.',-35.13,-14.08,156.0,162.01,0);
INSERT INTO "extent" VALUES('EPSG','1566','Australia - EEZ east of 162°E','Australia - offshore east of 162°E to 200 nautical mile EEZ boundary.',-34.22,-27.25,162.0,163.2,0);
INSERT INTO "extent" VALUES('EPSG','1567','Australasia - Australia and PNG - 138°E to 144°E','Australia - onshore and offshore between 138°E and 144°E. Papua New Guinea - onshore west of 144°E.',-46.63,-2.53,138.0,144.01,0);
INSERT INTO "extent" VALUES('EPSG','1568','Australasia - Australia and PNG - 144°E to 150°E','Australia - onshore and offshore between 144°E and 150°E. Papua New Guinea (PNG) - onshore between 144°E and 150°E.',-47.2,-1.3,144.0,150.01,0);
INSERT INTO "extent" VALUES('EPSG','1569','Saudi Arabia - onshore 36°E to 42°E','Saudi Arabia - onshore between 36°E and 42°E.',16.59,32.16,36.0,42.0,0);
INSERT INTO "extent" VALUES('EPSG','1570','Asia - Middle East - Kuwait and Saudi - 48°E to 54°E','Kuwait - onshore east of 48°E. Saudi Arabia - onshore between 48°E and 54°E.',17.94,30.04,47.99,54.01,0);
INSERT INTO "extent" VALUES('EPSG','1571','Asia - Middle East - Kuwait and Saudi - 42°E to 48°E','Kuwait - west of 48°E. Saudi Arabia - between of 42°E and 48°E.',16.37,31.15,42.0,48.01,0);
INSERT INTO "extent" VALUES('EPSG','1572','Brazil - 54°W to 48°W and Aratu','Brazil - offshore between 54°W and 48°W, including Pelotas basin.',-35.71,-25.01,-53.38,-47.99,0);
INSERT INTO "extent" VALUES('EPSG','1573','Brazil - 48°W to 42°W and Aratu','Brazil - offshore areas south of intersection of parallel of 2°55''S with coast and between 48°W and 42°W including Santos basin.',-33.5,0.0,-48.01,-41.99,0);
INSERT INTO "extent" VALUES('EPSG','1574','Brazil - 42°W to 36°W and Aratu','Brazil - between 42°W and 36°W, southern hemisphere offshore including Campos and Espirito Santo basins; onshore Tucano basin area.',-26.35,0.01,-42.01,-36.0,0);
INSERT INTO "extent" VALUES('EPSG','1575','Africa - Botswana and Zambia - west of 24°E','Botswana and Zambia - west of 24°E.',-26.88,-10.86,19.99,24.0,0);
INSERT INTO "extent" VALUES('EPSG','1576','Africa - Botswana, Zambia and Zimbabwe - 24°E to 30°E','Botswana - east of 24°E; Zambia - between 24°E and 30°E; Zimbabwe - west of 30°E .',-25.84,-8.31,24.0,30.0,0);
INSERT INTO "extent" VALUES('EPSG','1577','Africa - Malawi, Zambia and Zimbabwe - east of 30°E','Malawi. Zambia and Zimbabwe - east of 30°E.',-22.42,-8.19,30.0,35.93,0);
INSERT INTO "extent" VALUES('EPSG','1578','Uganda - north of equator and west of 30°E','Uganda - north of equator and west of 30°E.',0.0,0.86,29.71,30.0,0);
INSERT INTO "extent" VALUES('EPSG','1579','Africa - Tanzania and Uganda - south of equator and west of 30°E','Tanzania - west of 30°E; Uganda - south of equator and west of 30°E.',-6.81,0.0,29.34,30.0,0);
INSERT INTO "extent" VALUES('EPSG','1580','Africa - Kenya and Uganda - north of equator and 30°E to 36°E','Kenya - north of equator and west of 36°E; Uganda - north of equator and east of 30°E.',0.0,4.63,29.99,36.0,0);
INSERT INTO "extent" VALUES('EPSG','1581','Africa - Kenya, Tanzania and Uganda - south of equator and 30°E to 36°E','Kenya - south of equator and west of 36°E; Tanzania - 30°E to 36°E; Uganda - south of equator and east of 30°E.',-11.61,0.01,29.99,36.0,0);
INSERT INTO "extent" VALUES('EPSG','1582','Kenya - north of equator and east of 36°E','Kenya - north of equator and east of 36°E.',0.0,4.49,36.0,41.91,0);
INSERT INTO "extent" VALUES('EPSG','1583','Africa - Kenya and Tanzania - south of equator and east of 36°E','Kenya - south of equator and east of 36°E; Tanzania - east of 36°E.',-11.75,0.0,36.0,41.6,0);
INSERT INTO "extent" VALUES('EPSG','1584','Indonesia - Java and Java Sea - west of 108°E','Indonesia - onshore Java and offshore southern Java Sea west of 108°E.',-7.79,-4.07,105.06,108.0,0);
INSERT INTO "extent" VALUES('EPSG','1585','Indonesia - Java and Java Sea - east of 114°E','Indonesia - onshore Java and Bali, offshore southern Java Sea, Madura Strait and western Bali Sea - east of 114°E.',-8.91,-5.33,114.0,117.01,0);
INSERT INTO "extent" VALUES('EPSG','1586','Indonesia - Java and Java Sea - 108°E to 114°E','Indonesia - onshore Java and Madura and offshore southern Java Sea and Madura Strait - between 108°E and 114°E.',-8.67,-4.27,108.0,114.0,0);
INSERT INTO "extent" VALUES('EPSG','1587','China - west of 78°E','China - west of 78°E.',35.42,41.07,73.62,78.01,0);
INSERT INTO "extent" VALUES('EPSG','1588','China - 78°E to 84°E','China - between 78°E and 84°E.',29.16,47.23,77.98,84.0,0);
INSERT INTO "extent" VALUES('EPSG','1589','China - 84°E to 90°E','China - between 84°E and 90°E.',27.32,49.18,84.0,90.0,0);
INSERT INTO "extent" VALUES('EPSG','1590','China - 90°E to 96°E','China - between 90°E and 96°E.',27.71,47.9,90.0,96.01,0);
INSERT INTO "extent" VALUES('EPSG','1591','China - 96°E to 102°E','China - between 96°E and 102°E.',21.13,43.18,96.0,102.01,0);
INSERT INTO "extent" VALUES('EPSG','1592','China - 102°E to 108°E onshore','China - onshore between 102°E and 108°E.',21.53,42.47,102.0,108.0,0);
INSERT INTO "extent" VALUES('EPSG','1593','China - 108°E to 114°E onshore','China - onshore between 108°E and 114°E.',18.11,45.11,108.0,114.0,0);
INSERT INTO "extent" VALUES('EPSG','1594','China - 114°E to 120°E onshore','China - onshore between 114°E and 120°E.',22.14,51.52,114.0,120.0,0);
INSERT INTO "extent" VALUES('EPSG','1595','China - 120°E to 126°E onshore','China - onshore between 120°E and 126°E.',26.34,53.56,120.0,126.0,0);
INSERT INTO "extent" VALUES('EPSG','1596','China - 126°E to 132°E onshore','China - onshore between 126°E and 132°E.',40.89,52.79,126.0,132.0,0);
INSERT INTO "extent" VALUES('EPSG','1597','China - east of 132°E','China - east of 132°E.',45.02,48.4,132.0,134.77,0);
INSERT INTO "extent" VALUES('EPSG','1598','Colombia - west of 75°35''W','Colombia - mainland onshore west of 1°30''W of Bogota (75°34''51.30"W of Greenwich).',0.03,10.21,-79.1,-75.58,0);
INSERT INTO "extent" VALUES('EPSG','1599','Colombia - 75°35''W to 72°35''W','Colombia - onshore between 1°30''W and 1°30''E of Bogota (75°35''W and 72°35''W of Greenwich).',-2.51,11.82,-75.59,-72.58,0);
INSERT INTO "extent" VALUES('EPSG','1600','Colombia - 72°35''W to 69°35''W','Colombia - onshore between 1°30''E and 4°30''E of Bogota (72°35''W and 69°34''W of Greenwich).',-4.23,12.52,-72.59,-69.58,0);
INSERT INTO "extent" VALUES('EPSG','1601','Colombia - east of 69°35''W','Colombia - east of 4°30''E of Bogota (69°34''51.3"W of Greenwich).',-2.25,6.31,-69.59,-66.87,0);
INSERT INTO "extent" VALUES('EPSG','1602','Colombia - offshore west of 78°W','Colombia - offshore west of 78°W of Greenwich.',NULL,NULL,NULL,NULL,1);
INSERT INTO "extent" VALUES('EPSG','1603','Colombia - offshore Caribbean west of 72°W','Colombia - offshore Caribbean west of 72°W of Greenwich.',7.9,13.68,-77.37,-72.0,0);
INSERT INTO "extent" VALUES('EPSG','1604','Angola - Angola proper - offshore','Angola - Angola proper - offshore.',-17.26,-6.01,8.2,13.86,0);
INSERT INTO "extent" VALUES('EPSG','1605','Angola - offshore block 15','Angola - offshore block 15.',-6.59,-6.03,10.83,11.67,0);
INSERT INTO "extent" VALUES('EPSG','1606','Angola - Angola proper - offshore - west of 12°E','Angola - Angola proper - offshore - west of 12°E.',-17.26,-6.03,8.2,12.0,0);
INSERT INTO "extent" VALUES('EPSG','1607','Angola - Angola proper - 12°E to 18°E','Angola - Angola proper between 12°E and 18°E.',-17.44,-5.82,12.0,18.0,0);
INSERT INTO "extent" VALUES('EPSG','1608','Argentina - west of 70.5°W','Argentina - west of 70°30''W.',-52.0,-36.16,-73.59,-70.5,0);
INSERT INTO "extent" VALUES('EPSG','1609','Argentina - 70.5°W to 67.5°W onshore','Argentina - between 70°30''W and 67°30''W, onshore.',-54.9,-24.08,-70.5,-67.49,0);
INSERT INTO "extent" VALUES('EPSG','1610','Argentina - 67.5°W to 64.5°W onshore','Argentina - between 67°30''W and 64°30''W, onshore.',-55.11,-21.78,-67.5,-64.49,0);
INSERT INTO "extent" VALUES('EPSG','1611','Argentina - 64.5°W to 61.5°W onshore','Argentina - between 64°30''W and 61°30''W, onshore.',-54.91,-21.99,-64.5,-61.5,0);
INSERT INTO "extent" VALUES('EPSG','1612','Argentina - 61.5°W to 58.5°W onshore','Argentina - between 61°30''W and 58°30''W onshore.',-39.06,-23.37,-61.51,-58.5,0);
INSERT INTO "extent" VALUES('EPSG','1613','Argentina - 58.5°W to 55.5°W onshore','Argentina - between 58°30''W and 55°30''W, onshore.',-38.59,-24.84,-58.5,-55.49,0);
INSERT INTO "extent" VALUES('EPSG','1614','Argentina - east of 55.5°W onshore','Argentina - east of 55°30''W, onshore.',-28.11,-25.49,-55.5,-53.65,0);
INSERT INTO "extent" VALUES('EPSG','1615','Botswana - west of 24°E','Botswana - west of 24°E.',-26.88,-17.99,19.99,24.0,0);
INSERT INTO "extent" VALUES('EPSG','1616','Botswana - 21°E to 27°E','Botswana - between 21°E and 27°E.',-26.88,-17.78,21.0,27.0,1);
INSERT INTO "extent" VALUES('EPSG','1617','Botswana - east of 24°E','Botswana - east of 24°E.',-25.84,-17.78,24.0,29.38,0);
INSERT INTO "extent" VALUES('EPSG','1618','Tunisia - onshore','Tunisia - onshore.',30.23,37.4,7.49,11.59,0);
INSERT INTO "extent" VALUES('EPSG','1619','Tunisia - north of 34°39''N','Tunisia - onshore north of 38.5 grads North (34°39''N).',34.65,37.4,8.18,11.37,0);
INSERT INTO "extent" VALUES('EPSG','1620','Tunisia - south of 34°39''N','Tunisia - onshore south of 38.5 grads North (34°39''N) .',30.23,34.66,7.49,11.59,0);
INSERT INTO "extent" VALUES('EPSG','1621','Brazil - Corrego Alegre - west of 42°W','Brazil - NE coastal area between 45°W and 42°W.',-3.9,-1.5,-45.0,-42.0,1);
INSERT INTO "extent" VALUES('EPSG','1622','Brazil - Corrego Alegre - east of 42°W','Brazil - NE coastal area between 42°W and 40°W.',-4.0,-2.7,-42.0,-40.0,1);
INSERT INTO "extent" VALUES('EPSG','1623','Asia - Middle East - Lebanon and Syria onshore','Lebanon - onshore. Syrian Arab Republic - onshore.',32.31,37.3,35.04,42.38,0);
INSERT INTO "extent" VALUES('EPSG','1624','Germany - West Germany - west of 7.5°E','Germany - former West Germany onshore west of 7°30''E - states of Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland.',49.11,53.81,5.86,7.5,0);
INSERT INTO "extent" VALUES('EPSG','1625','Germany - West-Germany - 7.5°E to 10.5°E','Germany - former West Germany onshore between 7°30''E and 10°30''E - states of Baden-Wurtemberg, Bayern, Bremen, Hamberg, Hessen, Niedersachsen, Nordrhein-Westfalen, Rhineland-Pfalz, Schleswig-Holstein.',47.27,55.09,7.5,10.51,0);
INSERT INTO "extent" VALUES('EPSG','1626','Germany - West Germany - 10.5°E to 13.5°E','Germany - former West Germany onshore between 10°30''E and 13°30''E - states of Bayern, Berlin, Niedersachsen, Schleswig-Holstein.',47.39,54.59,10.5,13.51,0);
INSERT INTO "extent" VALUES('EPSG','1627','Germany - West Germany - east of 13.5°E','Germany - former West Germany onshore east of 13°30''E - state of Bayern.',48.51,48.98,13.5,13.84,0);
INSERT INTO "extent" VALUES('EPSG','1628','Germany - west of 4.5°E','Germany - onshore - west of 4°30''E.',NULL,NULL,NULL,NULL,1);
INSERT INTO "extent" VALUES('EPSG','1629','UK - offshore - North Sea','United Kingdom (UK) - offshore - North Sea.',51.03,62.03,-5.05,3.4,0);
INSERT INTO "extent" VALUES('EPSG','1630','Netherlands - offshore','Netherlands - offshore North Sea.',51.45,55.77,2.53,6.41,0);
INSERT INTO "extent" VALUES('EPSG','1631','Europe - 18°W to 12°W and ED50 by country','Europe - between 18°W and 12°W - Ireland offshore.',48.43,56.57,-16.1,-12.0,0);
INSERT INTO "extent" VALUES('EPSG','1632','Europe - 12°W to 6°W and ED50 by country','Europe - between 12°W and 6°W - Faroe Islands - onshore; Spain - mainland onshore; Ireland offshore.',36.13,62.41,-12.0,-6.0,0);
INSERT INTO "extent" VALUES('EPSG','1633','Europe - 6°W to 0°W and ED50 by country','Europe - between 6°W and 0°W - Channel Islands (Jersey, Guernsey); France offshore; Gibraltar; Ireland offshore; Norway including Svalbard - offshore; Spain - onshore; United Kingdom - UKCS offshore.',35.26,80.49,-6.0,0.01,0);
INSERT INTO "extent" VALUES('EPSG','1634','Europe - 0°E to 6°E and ED50 by country','Europe - between 0°E and 6°E - Andorra; Denmark (North Sea); Germany offshore; Netherlands offshore; Norway including Svalbard - onshore and offshore; Spain - onshore (mainland and Balearic Islands); United Kingdom (UKCS) offshore.',38.56,82.45,0.0,6.01,0);
INSERT INTO "extent" VALUES('EPSG','1635','Europe - 6°E to 12°E and ED50 by country','Europe - between 6°E and 12°E - Denmark - onshore and offshore; France - offshore; Germany offshore; Italy - onshore and offshore; Netherlands offshore; Norway including Svalbard - onshore and offshore.',36.53,84.33,5.99,12.0,0);
INSERT INTO "extent" VALUES('EPSG','1636','Europe - 12°E to 18°E and ED50 by country','Europe - between 12°E and 18°E onshore and offshore - Denmark (including Bornholm); Italy including San Marino and Vatican City State; Malta; Norway including Svalbard.',34.49,84.42,12.0,18.0,0);
INSERT INTO "extent" VALUES('EPSG','1637','Europe - 18°E to 24°E and ED50 by country','Europe - between 18°E and 24°E - Greece - offshore; Italy - onshore and offshore; Norway including Svalbard - onshore and offshore.',33.59,84.54,18.0,24.01,0);
INSERT INTO "extent" VALUES('EPSG','1638','Europe - 24°E to 30°E and ED50 by country','Europe - between 24°E and 30°E - Greece - offshore; Norway including Svalbard - onshore and offshore; Turkey - onshore and offshore. Egypt - Western Desert.',25.71,84.73,24.0,30.01,0);
INSERT INTO "extent" VALUES('EPSG','1639','Europe - 30°E to 36°E and ED50 by country','Europe - between 30°E and 36°E - Israel - offshore; Jordan; Norway including Svalbard - onshore and offshore; Turkey - onshore and offshore.',29.19,84.7,30.0,36.0,0);
INSERT INTO "extent" VALUES('EPSG','1640','Europe - 36°E to 42°E and ED50 by country','Europe - between 36°E and 42°E - Jordan; Norway including Svalbard - offshore; Turkey onshore and offshore.',29.18,79.07,36.0,42.0,0);
INSERT INTO "extent" VALUES('EPSG','1641','Europe - 42°E to 48°E and ED50 by country','Europe - between 42°E and 48°E - Turkey.',36.97,41.6,42.0,44.83,0);
INSERT INTO "extent" VALUES('EPSG','1642','Egypt - east of 33°E onshore','Egypt - east of 33°E - onshore plus offshore Gulf of Suez.',21.97,31.36,33.0,36.95,0);
INSERT INTO "extent" VALUES('EPSG','1643','Egypt - 29°E to 33°E','Egypt - onshore between 29°E and 33°E, offshore Mediterranean east of 29°E and offshore Gulf of Suez.',21.99,33.82,29.0,34.27,0);
INSERT INTO "extent" VALUES('EPSG','1644','Egypt - west of 29°E; north of 28°11''N','Egypt - onshore west of 29°E and north of approximately 28°11''N.',28.18,31.68,24.7,29.0,0);
INSERT INTO "extent" VALUES('EPSG','1645','Egypt - west of 29°E; south of 28°11''N','Egypt - west of 29°E; south of approximately 28°11''N.',21.99,28.19,24.99,29.01,0);
INSERT INTO "extent" VALUES('EPSG','1646','Europe - Estonia; Latvia; Lithuania','Estonia, Latvia and Lithuania - onshore and offshore.',53.89,60.0,19.02,28.24,0);
INSERT INTO "extent" VALUES('EPSG','1647','Indonesia - west of 96°E, N hemisphere','Indonesia - north of equator and west of 96°E - onshore and offshore.',0.0,7.79,92.01,96.0,0);
INSERT INTO "extent" VALUES('EPSG','1648','Indonesia - west of 96°E, S hemisphere','Indonesia - south of equator and west of 96°E.',NULL,NULL,NULL,NULL,1);
INSERT INTO "extent" VALUES('EPSG','1649','Indonesia - 96°E to 102°E, N hemisphere','Indonesia - north of equator and between 96°E and 102°E - onshore and offshore.',0.0,7.49,96.0,102.0,0);
INSERT INTO "extent" VALUES('EPSG','1650','Indonesia - 96°E to 102°E, S hemisphere','Indonesia - south of equator and between 96°E and 102°E - onshore and offshore.',-8.86,0.0,96.0,102.0,0);
INSERT INTO "extent" VALUES('EPSG','1651','Indonesia - 102°E to 108°E, N hemisphere','Indonesia - north of equator and between 102°E and 108°E - onshore and offshore.',0.0,6.94,102.0,108.0,0);
INSERT INTO "extent" VALUES('EPSG','1652','Indonesia - 102°E to 108°E, S hemisphere','Indonesia - south of equator and between 102°E and 108°E - onshore and offshore.',-10.73,0.0,102.0,108.01,0);
INSERT INTO "extent" VALUES('EPSG','1653','Indonesia - 108°E to 114°E, N hemisphere','Indonesia - north of equator and between 108°E and 114°E - onshore and offshore.',0.0,7.37,108.0,114.0,0);
INSERT INTO "extent" VALUES('EPSG','1654','Indonesia - 108°E to 114°E, S hemisphere','Indonesia - south of equator and between 108°E and 114°E - onshore and offshore.',-12.07,0.0,108.0,114.0,0);
INSERT INTO "extent" VALUES('EPSG','1655','Indonesia - 114°E to 120°E, N hemisphere','Indonesia - north of equator and between 114°E and 120°E - onshore and offshore.',0.0,4.37,114.0,120.0,0);
INSERT INTO "extent" VALUES('EPSG','1656','Indonesia - 114°E to 120°E, S hemisphere','Indonesia - south of equator and between 114°E and 120°E - onshore and offshore.',-13.06,0.0,114.0,120.01,0);
INSERT INTO "extent" VALUES('EPSG','1657','Indonesia - 120°E to 126°E, N hemisphere','Indonesia - north of equator and between 120°E and 126°E - onshore and offshore.',0.0,5.48,120.0,126.0,0);
INSERT INTO "extent" VALUES('EPSG','1658','Indonesia - 120°E to 126°E, S hemisphere','Indonesia - south of equator and between 120°E and 126°E - onshore and offshore.',-13.95,0.01,120.0,126.01,0);
INSERT INTO "extent" VALUES('EPSG','1659','Indonesia - 126°E to 132°E, N hemisphere','Indonesia - north of equator and between 126°E and 132°E - onshore and offshore.',0.0,6.68,126.0,132.0,0);
INSERT INTO "extent" VALUES('EPSG','1660','Indonesia - 126°E to 132°E, S hemisphere','Indonesia - south of equator and between 126°E and 132°E - onshore and offshore.',-9.45,0.0,126.0,132.0,0);
INSERT INTO "extent" VALUES('EPSG','1661','Indonesia - 132°E to 138°E, N hemisphere','Indonesia - north of equator and east of 132°E.',NULL,NULL,NULL,NULL,1);
INSERT INTO "extent" VALUES('EPSG','1662','Indonesia - 132°E to 138°E, S hemisphere','Indonesia - south of equator and between 132°E and 138°E - onshore and offshore.',-10.06,0.0,132.0,138.01,0);
INSERT INTO "extent" VALUES('EPSG','1663','Indonesia - east of 138°E, S hemisphere','Indonesia - south of equator and east of 138°E - onshore and offshore.',-10.84,0.0,138.0,141.46,0);
INSERT INTO "extent" VALUES('EPSG','1664','Myanmar (Burma) - onshore west of 96°E','Myanmar (Burma) - onshore west of 96°E.',15.66,27.14,92.2,96.01,0);
INSERT INTO "extent" VALUES('EPSG','1665','Asia - Myanmar and Thailand - 96°E to 102°E','Myanmar (Burma) - onshore east of 96°E; Thailand - onshore west of 102°E.',5.63,28.55,95.99,102.01,0);
INSERT INTO "extent" VALUES('EPSG','1666','Thailand - east of 102°E','Thailand - onshore and offshore east of 102°E.',6.02,18.44,102.0,105.64,0);
INSERT INTO "extent" VALUES('EPSG','1667','Thailand - onshore and GoT 96°E to102°E','Thailand - onshore west of 102°E plus offshore Gulf of Thailand west of 102°E.',5.63,20.46,97.34,102.01,0);
INSERT INTO "extent" VALUES('EPSG','1668','Pakistan - north of 35°35''N','Pakistan - north of 35°35''N.',35.58,37.07,71.18,77.01,0);
INSERT INTO "extent" VALUES('EPSG','1669','Asia - India; Pakistan - 28°N to 35°35''N','India - north of 28°N; Pakistan - between 28°N and 35°35''N.',28.0,35.59,60.86,81.64,0);
INSERT INTO "extent" VALUES('EPSG','1670','Asia - India; Pakistan - onshore 21°N to 28°N and west of 82°E','India - onshore between 21°N and 28°N and west of 82°E; Pakistan - onshore south of 28°N.',21.0,28.01,61.59,82.01,0);
INSERT INTO "extent" VALUES('EPSG','1671','Asia - Bangladesh; India; Myanmar; Pakistan - zone Ilb','Bangladesh - onshore north of 21°N; India - onshore north of 21°N and east of 82°E; Myanmar (Burma) - north of 21°N.',21.0,29.47,82.0,101.17,0);
INSERT INTO "extent" VALUES('EPSG','1672','India - onshore 15°N to 21°N','India - onshore between 15°N and 21°N.',15.0,21.01,70.14,87.15,0);
INSERT INTO "extent" VALUES('EPSG','1673','India - mainland south of 15°N','India - mainland onshore south of 15°N.',8.02,15.01,73.94,80.4,0);
INSERT INTO "extent" VALUES('EPSG','1674','Bangladesh - onshore west of 90°E','Bangladesh - onshore west of 90°E.',21.59,26.64,88.01,90.0,0);
INSERT INTO "extent" VALUES('EPSG','1675','Bangladesh - onshore east of 90°E','Bangladesh - onshore east of 90°E.',20.52,25.29,90.0,92.67,0);
INSERT INTO "extent" VALUES('EPSG','1676','India - north of 28°N','India - north of 28°N.',28.0,35.51,70.35,81.64,0);
INSERT INTO "extent" VALUES('EPSG','1677','India - onshore 21°N to 28°N and west of 82°E','India - onshore between 21°N and 28°N and west of 82°E.',21.0,28.01,68.13,82.01,0);
INSERT INTO "extent" VALUES('EPSG','1678','India - onshore north of 21°N and east of 82°E','India - onshore north of 21°N and east of 82°E.',21.0,29.47,82.0,97.42,0);
INSERT INTO "extent" VALUES('EPSG','1679','India - onshore west of 72°E','India - onshore west of 72°E.',20.64,28.22,68.13,72.01,0);
INSERT INTO "extent" VALUES('EPSG','1680','India - mainland 72°E to 78°E','India - mainland onshore between 72°E and 78°E.',8.02,35.51,72.0,78.01,0);
INSERT INTO "extent" VALUES('EPSG','1681','India - onshore 78°E to 84°E','India - onshore between 78°E and 84°E.',8.29,35.5,78.0,84.01,0);
INSERT INTO "extent" VALUES('EPSG','1682','India - onshore 84°E to 90°E','India - onshore between 84°E and 90°E.',18.18,28.14,84.0,90.01,0);
INSERT INTO "extent" VALUES('EPSG','1683','India - mainland 90°E to 96°E','India - mainland onshore between 90°E and 96°E.',21.94,29.42,90.0,96.01,0);
INSERT INTO "extent" VALUES('EPSG','1684','India - east of 96°E','India - east of 96°E.',27.1,29.47,96.0,97.42,0);
INSERT INTO "extent" VALUES('EPSG','1685','Pakistan - 28°N to 35°35''N','Pakistan - between 28°N and 35°35''N.',28.0,35.59,60.86,77.83,0);
INSERT INTO "extent" VALUES('EPSG','1686','Pakistan - onshore south of 28°N','Pakistan - onshore south of 28°N.',23.64,28.01,61.59,71.91,0);
INSERT INTO "extent" VALUES('EPSG','1687','Pakistan - onshore west of 66°E','Pakistan - onshore west of 66°E.',24.98,29.87,60.86,66.01,0);
INSERT INTO "extent" VALUES('EPSG','1688','Pakistan - onshore 66°E to 72°E','Pakistan - onshore between 66°E and 72°E.',23.64,36.56,66.0,72.01,0);
INSERT INTO "extent" VALUES('EPSG','1689','Pakistan - east of 72°E','Pakistan - east of 72°E.',28.21,37.07,72.0,77.83,0);
INSERT INTO "extent" VALUES('EPSG','1690','Malaysia - West Malaysia - onshore','Malaysia - West Malaysia onshore.',1.21,6.72,99.59,104.6,0);
INSERT INTO "extent" VALUES('EPSG','1691','Malaysia - West Malaysia - onshore west of 102°E','Malaysia - West Malaysia onshore west of 102°E.',2.29,6.72,99.59,102.01,0);
INSERT INTO "extent" VALUES('EPSG','1692','Malaysia - West Malaysia - east of 102°E','Malaysia - onshore West Malaysia east of 102°E and offshore east coast.',1.21,7.81,102.0,105.82,0);
INSERT INTO "extent" VALUES('EPSG','1693','Venezuela - west of 72°W','Venezuela - west of 72°W.',7.02,11.62,-73.38,-71.99,0);
INSERT INTO "extent" VALUES('EPSG','1694','Venezuela - 72°W and 66°W onshore','Venezuela - between 72°W and 66°W, onshore.',0.73,12.25,-72.0,-66.0,0);
INSERT INTO "extent" VALUES('EPSG','1695','Venezuela - east of 66°W onshore','Venezuela - onshore east of 66°W.',0.64,11.23,-66.0,-59.8,0);
INSERT INTO "extent" VALUES('EPSG','1696','Gabon - north of equator and west of 12°E onshore','Gabon - onshore north of equator and west of 12°E.',0.0,2.32,9.25,12.0,0);
INSERT INTO "extent" VALUES('EPSG','1697','Gabon - west of 12°E','Gabon - west of 12°E - onshore and offshore.',-6.37,2.32,7.03,12.01,0);
INSERT INTO "extent" VALUES('EPSG','1698','Philippines - zone I','Philippines - west of 118°E onshore and offshore.',6.21,18.64,116.04,118.0,0);
INSERT INTO "extent" VALUES('EPSG','1699','Philippines - zone II','Philippines - approximately between 118°E and 120°E - Palawan; Calamian Islands - onshore and offshore.',3.02,20.42,118.0,120.07,0);
INSERT INTO "extent" VALUES('EPSG','1700','Philippines - zone III','Philippines - approximately between 120°E and 122°E, onshore and offshore. Luzon (west of 122°E); Mindoro.',3.0,21.62,119.7,122.21,0);
INSERT INTO "extent" VALUES('EPSG','1701','Philippines - zone IV','Philippines - approximately between 122°E and 124°E onshore and offshore - southeast Luzon (east of 122°E); Tablas; Masbate; Panay; Cebu; Negros; west Mindanao (west of 122°E).',3.44,22.18,121.74,124.29,0);
INSERT INTO "extent" VALUES('EPSG','1702','Philippines - zone V','Philippines - approximately between 124°E and 126°E, onshore and offshore - east Mindanao (east of 124°E); Bohol; Samar.',4.76,21.97,123.73,126.65,0);
INSERT INTO "extent" VALUES('EPSG','1703','Morocco - north of 31.5°N','Morocco onshore north of 35 grads North (31°30''N).',31.49,35.97,-9.85,-1.01,0);
INSERT INTO "extent" VALUES('EPSG','1704','Morocco - 27.9°N to 31.5°N','Morocco between 31 grads and 35 grads North (27°54''N and 31°30''N).',27.9,31.5,-13.0,-3.5,1);
INSERT INTO "extent" VALUES('EPSG','1705','Morocco - south of 27.9°N','Morocco south of 31 grads North (27°54''N).',21.06,27.9,-17.0,-8.67,1);
INSERT INTO "extent" VALUES('EPSG','1706','Austria - west of 11°50''E','Austria west of 11°50''E of Greenwich (29°30''E of Ferro).',46.77,47.61,9.53,11.84,0);
INSERT INTO "extent" VALUES('EPSG','1707','Austria - 11°50''E to 14°50''E','Austria between 11°50''E and 14°50''E of Greenwich (29°30''E and 32°30''E of Ferro).',46.4,48.79,11.83,14.84,0);
INSERT INTO "extent" VALUES('EPSG','1708','Austria - east of 14°50''E','Austria east of 14°50''E of Greenwich (32°30''E of Ferro).',46.56,49.02,14.83,17.17,0);
INSERT INTO "extent" VALUES('EPSG','1709','Europe - former Yugoslavia onshore west of 16.5°E','Bosnia and Herzegovina - west of 16°30''E; Croatia - onshore west of 16°30''E; Slovenia - onshore.',42.95,46.88,13.38,16.5,0);
INSERT INTO "extent" VALUES('EPSG','1710','Europe - former Yugoslavia onshore 16.5°E to 19.5°E','Bosnia and Herzegovina - between 16°30''E and 19°30''E; Croatia - onshore east of 16°30''E; Montenegro - onshore west of 19°30''E; Serbia - west of 19°30''E.',41.79,46.55,16.5,19.51,0);
INSERT INTO "extent" VALUES('EPSG','1711','Europe - former Yugoslavia onshore 19.5°E to 22.5°E','Bosnia and Herzegovina - east of 19°30''E; Kosovo; Montenegro - east of 19°30''E; North Macedonia - west of 22°30''E; Serbia - between 19°30''E and 22°30''E.',40.85,46.19,19.5,22.51,0);
INSERT INTO "extent" VALUES('EPSG','1712','Europe - former Yugoslavia onshore east of 22.5°E','North Macedonia - east of 22°30''E; Serbia - east of 22°30''E.',41.11,44.7,22.5,23.04,0);
INSERT INTO "extent" VALUES('EPSG','1713','Nigeria - east of 10.5°E','Nigeria east of 10°30''E.',6.43,13.72,10.49,14.65,0);
INSERT INTO "extent" VALUES('EPSG','1714','Nigeria - 6.5°E to 10.5°E','Nigeria between 6°30''E and 10°30''E, onshore and offshore shelf.',3.57,13.53,6.5,10.51,0);
INSERT INTO "extent" VALUES('EPSG','1715','Nigeria - west of 6.5°E','Nigeria - onshore west of 6°30''E, onshore and offshore shelf.',3.57,13.9,2.69,6.5,0);
INSERT INTO "extent" VALUES('EPSG','1716','Nigeria - offshore deep water - west of 6°E','Nigeria - offshore beyond continental shelf west of 6°E.',1.92,6.14,2.66,6.0,0);
INSERT INTO "extent" VALUES('EPSG','1717','Nigeria - offshore deep water','Nigeria - offshore beyond continental shelf.',1.92,6.14,2.66,7.82,0);
INSERT INTO "extent" VALUES('EPSG','1718','Italy - west of 12°E','Italy - onshore and offshore - west of 12°E.',36.53,47.04,5.94,12.0,0);
INSERT INTO "extent" VALUES('EPSG','1719','Italy - east of 12°E','Italy - onshore and offshore - east of 12°E including San Marino and Vatican City State.',34.76,47.1,12.0,18.99,0);
INSERT INTO "extent" VALUES('EPSG','1720','USA - Michigan - SPCS - E','United States (USA) - Michigan - counties of Alcona; Alpena; Arenac; Bay; Cheboygan; Chippewa; Clinton; Crawford; Genesee; Gladwin; Gratiot; Hillsdale; Huron; Ingham; Iosco; Jackson; Lapeer; Lenawee; Livingston; Macomb; Midland; Monroe; Montmorency; Oakland; Ogemaw; Oscoda; Otsego; Presque Isle; Roscommon; Saginaw; Sanilac; Shiawassee; St Clair; Tuscola; Washtenaw; Wayne.',41.69,46.04,-84.87,-82.13,0);
INSERT INTO "extent" VALUES('EPSG','1721','USA - Michigan - SPCS - old central','United States (USA) - Michigan - counties of Alger; Allegan; Antrim; Barry; Benzie; Berrien; Branch; Calhoun; Cass; Charlevoix; Clare; Delta; Eaton; Emmet; Grand Traverse; Ionia; Isabella; Kalamazoo; Kalkaska; Kent; Lake; Leelanau; Luce; Mackinac; Manistee; Mason; Mecosta; Missaukee; Montcalm; Muskegon; Newaygo; Oceana; Osceola; Ottawa; St Joseph; Schoolcraft; Van Buren; Wexford.',41.75,46.11,-87.61,-84.6,0);
INSERT INTO "extent" VALUES('EPSG','1722','USA - Michigan - SPCS - W','United States (USA) - Michigan - counties of Alger; Baraga; Chippewa; Delta; Dickinson; Gogebic; Houghton; Iron; Keweenaw; Luce; Mackinac; Marquette; Menominee; Ontonagon; Schoolcraft.',NULL,NULL,NULL,NULL,1);
INSERT INTO "extent" VALUES('EPSG','1723','USA - Michigan - SPCS - N','United States (USA) - Michigan north of approximately 45°45''N - counties of Alger; Baraga; Chippewa; Delta; Dickinson; Gogebic; Houghton; Iron; Keweenaw; Luce; Mackinac; Marquette; Menominee; Ontonagon; Schoolcraft.',45.08,48.32,-90.42,-83.44,0);
INSERT INTO "extent" VALUES('EPSG','1724','USA - Michigan - SPCS - C','United States (USA) - Michigan - counties of Alcona; Alpena; Antrim; Arenac; Benzie; Charlevoix; Cheboygan; Clare; Crawford; Emmet; Gladwin; Grand Traverse; Iosco; Kalkaska; Lake; Leelanau; Manistee; Mason; Missaukee; Montmorency; Ogemaw; Osceola; Oscoda; Otsego; Presque Isle; Roscommon; Wexford.',43.8,45.92,-87.06,-82.27,0);
INSERT INTO "extent" VALUES('EPSG','1725','USA - Michigan - SPCS - S','United States (USA) - Michigan - counties of Allegan; Barry; Bay; Berrien; Branch; Calhoun; Cass; Clinton; Eaton; Genesee; Gratiot; Hillsdale; Huron; Ingham; Ionia; Isabella; Jackson; Kalamazoo; Kent; Lapeer; Lenawee; Livingston; Macomb; Mecosta; Midland; Monroe; Montcalm; Muskegon; Newaygo; Oakland; Oceana; Ottawa; Saginaw; Sanilac; Shiawassee; St Clair; St Joseph; Tuscola; Van Buren; Washtenaw; Wayne.',41.69,44.22,-87.2,-82.13,0);
INSERT INTO "extent" VALUES('EPSG','1726','Mozambique - offshore','Mozambique - offshore.',-27.71,-10.09,32.64,43.03,0);
INSERT INTO "extent" VALUES('EPSG','1727','Suriname - offshore','Suriname - offshore.',5.34,9.35,-57.25,-52.66,0);
INSERT INTO "extent" VALUES('EPSG','1728','Algeria - north of 34°39''N','Algeria - onshore north of 38.5 grads North (34°39''N).',34.64,37.14,-2.22,8.64,0);
INSERT INTO "extent" VALUES('EPSG','1729','Algeria - 31°30''N to 34°39''N','Algeria - 35 grads to 38.5 grads North (31°30''N to 34°39''N).',31.49,34.66,-3.85,9.22,0);
INSERT INTO "extent" VALUES('EPSG','1730','North America - NAVD88','North America: Canada - Alberta; British Columbia (BC); Manitoba; New Brunswick (NB); Newfoundland and Labrador; Northwest Territories (NWT); Nova Scotia (NS); Nunavut; Ontario; Prince Edward Island (PEI); Quebec; Saskatchewan; Yukon. United States (USA) - Alabama; Alaska; Arizona; Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming.',25.0,58.0,-168.0,-52.0,1);
INSERT INTO "extent" VALUES('EPSG','1731','France - mainland north of 48.15°N','France mainland onshore north of 53.5 grads North (48°09''N).',48.14,51.14,-4.87,8.23,0);
INSERT INTO "extent" VALUES('EPSG','1732','France - mainland 45.45°N to 48.15°N','France mainland onshore between 50.5 grads and 53.5 grads North (45°27''N to 48°09''N).',45.44,48.15,-4.8,7.63,0);
INSERT INTO "extent" VALUES('EPSG','1733','France - mainland south of 45.45°N','France - mainland onshore south of 50.5 grads North (45°27''N).',42.33,45.46,-1.79,7.71,0);
INSERT INTO "extent" VALUES('EPSG','1734','France - mainland 45.45°N to 48.15°N. Also all mainland.','France mainland onshore between 50.5 grads and 53.5 grads North (45°27''N to 48°09''N). Also used over all onshore mainland France.',42.33,51.14,-4.87,8.23,0);
INSERT INTO "extent" VALUES('EPSG','1735','Algeria - west of 6°W','Algeria - west of 6°W (of Greenwich).',25.73,29.85,-8.67,-6.0,0);
INSERT INTO "extent" VALUES('EPSG','1736','Algeria - 6°W to 0°W onshore','Algeria - onshore between 6°W and 0°W (of Greenwich).',21.82,35.96,-6.0,0.0,0);
INSERT INTO "extent" VALUES('EPSG','1737','Algeria - 0°E to 6°E onshore','Algeria - onshore between 0°E and 6°E (of Greenwich).',18.97,36.97,0.0,6.01,0);
INSERT INTO "extent" VALUES('EPSG','1738','Algeria - east of 6°E onshore','Algeria - onshore east of 6°E (of Greenwich).',19.6,37.14,6.0,11.99,0);
INSERT INTO "extent" VALUES('EPSG','1739','Kuwait - west of 48°E onshore','Kuwait - onshore west of 48°E.',28.53,30.09,46.54,48.0,0);
INSERT INTO "extent" VALUES('EPSG','1740','Kuwait - east of 48°E onshore','Kuwait - onshore east of 48°E.',28.54,30.04,48.0,48.48,0);
INSERT INTO "extent" VALUES('EPSG','1741','Norway - zone I','Norway - west of 3°30''W of Oslo (7°13''22.5"E of Greenwich).',57.93,63.06,4.68,7.23,0);
INSERT INTO "extent" VALUES('EPSG','1742','Norway - zone II','Norway - between 3°30''W and 1°10'' W of Oslo (7°13''22.5"E and 9°33''22.5"E of Greenwich).',57.95,63.87,7.22,9.56,0);
INSERT INTO "extent" VALUES('EPSG','1743','Norway - zone III','Norway - between 1°10''W and 1°15''E of Oslo (9°33''22.5"E and 11°58''22.5"E of Greenwich).',58.84,65.76,9.55,11.98,0);
INSERT INTO "extent" VALUES('EPSG','1744','Norway - zone IV','Norway - between 1°15''E and 4°20''E of Oslo (11°58''22.5"E and 15°03''22.5"E of Greenwich).',59.88,69.06,11.97,15.06,0);
INSERT INTO "extent" VALUES('EPSG','1745','Norway - zone V','Norway - between 4°20''E and 8°10''E of Oslo (15°03''22.5"E and 18°53''22.5"E of Greenwich).',66.15,70.19,15.05,18.89,0);
INSERT INTO "extent" VALUES('EPSG','1746','Norway - zone VI','Norway - between 8°10''E and 12°10''E of Oslo (18°53''22.5"E and 22°53''22.5"E of Greenwich).',68.33,70.81,18.88,22.89,0);
INSERT INTO "extent" VALUES('EPSG','1747','Norway - zone VII','Norway - between 12°10''E and 16°15''E of Oslo (22°53''22.5"E and 26°58''22.5"E of Greenwich).',68.58,71.21,22.88,26.98,0);
INSERT INTO "extent" VALUES('EPSG','1748','Norway - zone VIII','Norway - east of 16°15''E of Oslo (26°58''22.5"E of Greenwich).',69.02,71.17,26.97,31.22,0);
INSERT INTO "extent" VALUES('EPSG','1749','Asia - Middle East - Qatar offshore and UAE west of 54°E','Qatar - offshore. United Arab Emirates (UAE) - Abu Dhabi - onshore and offshore west of 54°E.',22.76,27.05,50.55,54.01,0);
INSERT INTO "extent" VALUES('EPSG','1750','UAE - east of 54°E','United Arab Emirates (UAE) onshore and offshore east of 54°E - Abu Dhabi; Dubai; Sharjah; Ajman; Fujairah; Ras Al Kaimah; Umm Al Qaiwain.',22.63,26.27,54.0,57.13,0);
INSERT INTO "extent" VALUES('EPSG','1751','Peru - east of 73°W','Peru - east of 73°W, onshore.',-18.39,-2.14,-73.0,-68.67,0);
INSERT INTO "extent" VALUES('EPSG','1752','Peru - 79°W to 73°W','Peru - between 79°W and 73°W, onshore.',-16.57,-0.03,-79.0,-73.0,0);
INSERT INTO "extent" VALUES('EPSG','1753','Peru - west of 79°W','Peru - west of 79°W.',-8.32,-3.38,-81.41,-79.0,0);
INSERT INTO "extent" VALUES('EPSG','1754','Brazil - Amazon cone shelf','Brazil - offshore shelf - Amazon cone.',-1.05,5.6,-51.64,-48.0,0);
INSERT INTO "extent" VALUES('EPSG','1755','South America - 84°W to 78°W, S hemisphere and PSAD56 by country','South America (Ecuador and Peru) between 84°W and 78°W, southern hemisphere, onshore.',-10.53,0.0,-81.41,-78.0,0);
INSERT INTO "extent" VALUES('EPSG','1756','South America - 78°W to 72°W, N hemisphere and PSAD56 by country','South America (Ecuador; Venezuela) between 78°W and 72°W, northern hemisphere, onshore.',0.0,11.62,-78.0,-71.99,0);
INSERT INTO "extent" VALUES('EPSG','1757','South America - 78°W to 72°W, S hemisphere and PSAD56 by country','South America (Chile - north of 45°S; Ecuador; Peru) between 78°W and 72°W, southern hemisphere, onshore.',-43.5,0.0,-78.0,-71.99,0);
INSERT INTO "extent" VALUES('EPSG','1758','South America - 72°W to 66°W, N hemisphere and PSAD56 by country','South America (Aruba; Bonaire; Curacao; Venezuela) between 72°W and 66°W, northern hemisphere, onshore.',0.73,12.68,-72.0,-66.0,0);
INSERT INTO "extent" VALUES('EPSG','1759','South America - 72°W to 66°W, S hemisphere and PSAD56 by country','South America (Bolivia; Chile - north of 45°S; Peru) between 72°W and 66°W, southern hemisphere, onshore.',-43.5,-2.14,-72.0,-66.0,0);
INSERT INTO "extent" VALUES('EPSG','1760','South America - 66°W to 60°W, N hemisphere and PSAD56 by country','South America (Guyana; Venezuela) onshore between 66°W and 60°W, northern hemisphere.',0.64,11.23,-66.0,-59.99,0);
INSERT INTO "extent" VALUES('EPSG','1761','Bolivia - 66°W to 60°W','Bolivia between 66°W and 60°W.',-22.87,-9.67,-66.0,-60.0,0);
INSERT INTO "extent" VALUES('EPSG','1762','South America - 60°W to 54°W, N hemisphere and PSAD56 by country','South America (Guyana) onshore between 60°W and 54°W, northern hemisphere.',1.18,8.58,-60.0,-56.47,0);
INSERT INTO "extent" VALUES('EPSG','1763','Russia - west of 24°E onshore','Russian Federation - onshore west of 24°E - Kaliningrad.',54.32,55.32,19.57,22.87,0);
INSERT INTO "extent" VALUES('EPSG','1764','Russia - 24°E to 30°E onshore','Russian Federation - onshore between 24°E and 30°E.',55.69,69.47,26.61,30.0,0);
INSERT INTO "extent" VALUES('EPSG','1765','Russia - 30°E to 36°E onshore','Russian Federation - onshore between 30°E and 36°E.',50.34,70.02,30.0,36.0,0);
INSERT INTO "extent" VALUES('EPSG','1766','Russia - 36°E to 42°E onshore','Russian Federation - onshore between 36°E and 42°E.',43.18,69.23,36.0,42.01,0);
INSERT INTO "extent" VALUES('EPSG','1767','Russia - 42°E to 48°E onshore','Russian Federation - onshore between 42°E and 48°E.',41.19,80.91,42.0,48.0,0);
INSERT INTO "extent" VALUES('EPSG','1768','Russia - 48°E to 54°E onshore','Russian Federation - onshore between 48°E and 54°E.',41.39,81.4,48.0,54.0,0);
INSERT INTO "extent" VALUES('EPSG','1769','Russia - 54°E to 60°E onshore','Russian Federation - onshore between 54°E and 60°E.',50.47,81.91,54.0,60.0,0);
INSERT INTO "extent" VALUES('EPSG','1770','Russia - 60°E to 66°E onshore','Russian Federation - onshore between 60°E and 66°E.',50.66,81.77,60.0,66.0,0);
INSERT INTO "extent" VALUES('EPSG','1771','Russia - 66°E to 72°E onshore','Russian Federation - onshore between 66°E and 72°E .',54.1,77.07,66.0,72.0,0);
INSERT INTO "extent" VALUES('EPSG','1772','Russia - 72°E to 78°E onshore','Russian Federation - onshore between 72°E and 78°E.',53.17,79.71,72.0,78.0,0);
INSERT INTO "extent" VALUES('EPSG','1773','Russia - 78°E to 84°E onshore','Russian Federation - onshore between 78°E and 84°E.',50.69,81.03,78.0,84.0,0);
INSERT INTO "extent" VALUES('EPSG','1774','Russia - 84°E to 90°E onshore','Russian Federation - onshore between 84°E and 90°E.',49.07,81.27,84.0,90.0,0);
INSERT INTO "extent" VALUES('EPSG','1775','Russia - 90°E to 96°E onshore','Russian Federation - onshore between 90°E and 96°E.',49.89,81.35,90.0,96.0,0);
INSERT INTO "extent" VALUES('EPSG','1776','Russia - 96°E to 102°E onshore','Russian Federation - onshore between 96°E and 102°E.',49.73,81.32,96.0,102.0,0);
INSERT INTO "extent" VALUES('EPSG','1777','Russia - 102°E to 108°E onshore','Russian Federation - onshore between 102°E and 108°E.',49.64,79.48,102.0,108.0,0);
INSERT INTO "extent" VALUES('EPSG','1778','Russia - 108°E to 114°E onshore','Russian Federation - onshore between 108°E and 114°E.',49.14,76.81,108.0,114.0,0);
INSERT INTO "extent" VALUES('EPSG','1779','Russia - 114°E to 120°E onshore','Russian Federation - onshore between 114°E and 120°E.',49.51,75.96,114.0,120.0,0);
INSERT INTO "extent" VALUES('EPSG','1780','Russia - 120°E to 126°E onshore','Russian Federation - onshore between 120°E and 126°E.',51.51,74.0,120.0,126.0,0);
INSERT INTO "extent" VALUES('EPSG','1781','Russia - 126°E to 132°E onshore','Russian Federation - onshore between 126°E and 132°E.',42.25,73.61,126.0,132.0,0);
INSERT INTO "extent" VALUES('EPSG','1782','Russia - 132°E to 138°E onshore','Russian Federation - onshore between 132°E and 138°E.',42.63,76.15,132.0,138.0,0);
INSERT INTO "extent" VALUES('EPSG','1783','Russia - 138°E to 144°E onshore','Russian Federation - onshore between 138°E and 144°E.',45.84,76.27,138.0,144.0,0);
INSERT INTO "extent" VALUES('EPSG','1784','Russia - 144°E to 150°E onshore','Russian Federation - onshore between 144°E and 150°E.',43.6,76.82,144.0,150.0,0);
INSERT INTO "extent" VALUES('EPSG','1785','Russia - 150°E to 156°E onshore','Russian Federation - onshore between 150°E and 156°E.',45.77,76.26,150.0,156.0,0);
INSERT INTO "extent" VALUES('EPSG','1786','Russia - 156°E to 162°E onshore','Russian Federation - onshore between 156°E and 162°E.',50.27,77.2,156.0,162.0,0);
INSERT INTO "extent" VALUES('EPSG','1787','Russia - 162°E to 168°E onshore','Russian Federation - onshore between 162°E and 168°E.',54.47,70.03,162.0,168.0,0);
INSERT INTO "extent" VALUES('EPSG','1788','Russia - 168°E to 174°E onshore','Russian Federation - onshore between 168°E and 174°E.',54.45,70.19,168.0,174.0,0);
INSERT INTO "extent" VALUES('EPSG','1789','Russia - 174°E to 180°E onshore','Russian Federation - onshore between 174°E and 180°E .',61.65,71.59,174.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','1790','Russia - 180° to 174°W onshore','Russian Federation - onshore between 180°E and 174°W.',64.35,71.65,-180.0,-174.0,0);
INSERT INTO "extent" VALUES('EPSG','1791','Russia - east of 174°W onshore','Russian Federation - onshore east of 174°W.',64.2,67.18,-174.0,-168.97,0);
INSERT INTO "extent" VALUES('EPSG','1792','Europe - 12°E to 18°E onshore and S-42(58) by country','Germany (former DDR) - onshore east of 12°E. Poland - onshore west of 18°E. Czechia, Hungary and Slovakia - west of 18°E.',45.78,54.89,12.0,18.0,0);
INSERT INTO "extent" VALUES('EPSG','1793','Europe - FSU onshore 18°E to 24°E and S-42 by country','Belarus, Estonia, Latvia, Lithuania and Ukraine - onshore west of 24°E. Russian Federation - Kaliningrad onshore.',47.95,59.44,19.57,24.0,0);
INSERT INTO "extent" VALUES('EPSG','1794','Europe - FSU onshore 24°E to 30°E and S-42 by country','Estonia; Latvia and Lithuania - onshore east of 24°E; Belarus, Moldova, Russian Federation and Ukraine - onshore 24°E to 30°E.',45.18,69.47,24.0,30.01,0);
INSERT INTO "extent" VALUES('EPSG','1795','Europe - FSU onshore 30°E to 36°E','Belarus and Moldova - east of 30°E; Russian Federation and Ukraine - onshore 30°E to 36°E.',44.32,70.02,30.0,36.0,0);
INSERT INTO "extent" VALUES('EPSG','1796','Europe - FSU onshore 36°E to 42°E','Georgia - onshore west of 36°E; Russian Federation - onshore 36°E to 42°E; Ukraine - onshore east of 36°E.',41.43,69.23,36.0,42.0,0);
INSERT INTO "extent" VALUES('EPSG','1797','Europe - FSU onshore 42°E to 48°E','Armenia - west of 48°E; Azerbaijan - west of 48°E; Georgia - east of 42°E; Kazakhstan - west of 48°E; Russian Federation - onshore 42°E to 48°E.',38.84,80.91,42.0,48.01,0);
INSERT INTO "extent" VALUES('EPSG','1798','Asia - FSU onshore 48°E to 54°E','Azerbaijan - east of 48°E; Kazakhstan - 48°E to 54°E; Russian Federation - 48°E to 54°E; Turkmenistan - west of 54°E. Includes Caspian Sea (considered a lake rather than offshore).',37.34,81.4,48.0,54.0,0);
INSERT INTO "extent" VALUES('EPSG','1799','Asia - FSU onshore 54°E to 60°E','Kazakhstan; Russian Federation - onshore; Turkmenistan - 54°E to 60°E; Uzbekistan - west of 60°E.',37.05,81.91,54.0,60.0,0);
INSERT INTO "extent" VALUES('EPSG','1800','Asia - FSU onshore 60°E to 66°E','Kazakhstan; Russian Federation - onshore; Uzbekistan - 60°E to 66°E; Turkmenistan - east of 60°E.',35.14,81.77,60.0,66.0,0);
INSERT INTO "extent" VALUES('EPSG','1801','Asia - FSU onshore 66°E to 72°E','Kazakhstan, Russian Federation onshore and Uzbekistan - 66°E to 72°E; Kyrgyzstan and Tajikistan - west of 72°E.',36.67,77.07,66.0,72.0,0);
INSERT INTO "extent" VALUES('EPSG','1802','Asia - FSU onshore 72°E to 78°E','Kazakhstan; Kyrgyzstan; Russian Federation onshore - 72°E to 78°E; Tajikistan and Uzbekistan - east of 72°E.',36.79,79.71,72.0,78.0,0);
INSERT INTO "extent" VALUES('EPSG','1803','Asia - FSU onshore 78°E to 84°E','Kazakhstan and Russian Federation onshore - 78°E to 84°E; Kyrgyzstan - east of 78°E.',41.04,81.03,78.0,84.01,0);
INSERT INTO "extent" VALUES('EPSG','1804','Asia - FSU onshore 84°E to 90°E','Kazakhstan - east of 84°E; Russian Federation - onshore 84°E to 90°E.',46.82,81.27,84.0,90.0,0);
INSERT INTO "extent" VALUES('EPSG','1805','Europe - 6°E to 12°E and Pulkovo by country','Czech Republic and Germany (former DDR) - west of 12°E.',50.21,54.18,9.93,12.0,1);
INSERT INTO "extent" VALUES('EPSG','1806','South America - UTM 17S and SAD69 by country','South America - between 84°W and 78°W; southern hemisphere.',NULL,NULL,NULL,NULL,1);
INSERT INTO "extent" VALUES('EPSG','1807','South America - UTM 18N and SAD69 by country','South America - between 78°W and 72°W; northern hemisphere.',NULL,NULL,NULL,NULL,1);
INSERT INTO "extent" VALUES('EPSG','1808','South America - UTM 18S and SAD69 by country','South America - between 78°W and 72°W; southern hemisphere.',NULL,NULL,NULL,NULL,1);
INSERT INTO "extent" VALUES('EPSG','1809','South America - UTM 19N and SAD69 by country','South America - between 72°W and 66°W; northern hemisphere.',NULL,NULL,NULL,NULL,1);
INSERT INTO "extent" VALUES('EPSG','1810','South America - UTM 19S and SAD69 by country','South America - between 72°W and 66°W; southern hemisphere.',NULL,NULL,NULL,NULL,1);
INSERT INTO "extent" VALUES('EPSG','1811','South America - UTM 20N and SAD69 by country','South America - between 66°W and 60°W; northern hemisphere.',NULL,NULL,NULL,NULL,1);
INSERT INTO "extent" VALUES('EPSG','1812','South America - UTM 20S and SAD69 by country','South America - between 66°W and 60°W; southern hemisphere.',NULL,NULL,NULL,NULL,1);
INSERT INTO "extent" VALUES('EPSG','1813','South America - UTM 21N and SAD69','South America - between 60°W and 54°W; northern hemisphere.',NULL,NULL,NULL,NULL,1);
INSERT INTO "extent" VALUES('EPSG','1814','South America - 60°W to 54°W, S hemisphere and SAD69 by country','Brazil - between 60°W and 54°W, northern and southern hemispheres. In rest of South America between 60°W and 54°W southern hemisphere, onshore.',-38.91,4.51,-60.0,-53.99,0);
INSERT INTO "extent" VALUES('EPSG','1815','South America - 54°W to 48°W, N hemisphere and SAD69 by country','Brazil - offshore deep water - Amazon cone. In remainder of South America, between 54°W and 48°W, northern hemisphere onshore but excluding most of the area southeast of a line between approximately 2°N, 54°W and 4°N, 52°W.',1.68,5.81,-54.0,-46.65,0);
INSERT INTO "extent" VALUES('EPSG','1816','South America - 54°W to 48°W, S hemisphere and SAD69 by country','Brazil - onshore and offshore northern and southern hemispheres between 54°W and 48°W. In remainder of South America - between 54°W and 48°W, southern hemisphere, onshore.',-35.71,7.04,-54.0,-47.99,0);
INSERT INTO "extent" VALUES('EPSG','1817','Brazil - 48°W to 42°W','Brazil - between 48°W and 42°W.',-26.3,0.0,-48.0,-42.0,1);
INSERT INTO "extent" VALUES('EPSG','1818','Brazil - 42°W to 36°W onshore','Brazil - between 42°W and 36°W, onshore.',-22.96,-2.68,-42.0,-36.0,0);
INSERT INTO "extent" VALUES('EPSG','1819','Brazil - 36°W to 30°W','Brazil - between 36°W and 30°W.',-10.05,-5.15,-36.0,-30.0,1);
INSERT INTO "extent" VALUES('EPSG','1820','Falkland Islands - onshore west of 60°W','Falkland Islands (Malvinas) - onshore west of 60°W.',-52.33,-50.96,-61.55,-59.99,0);
INSERT INTO "extent" VALUES('EPSG','1821','Falkland Islands - onshore east of 60°W','Falkland Islands (Malvinas) - onshore east of 60°W.',-52.51,-51.13,-60.0,-57.6,0);
INSERT INTO "extent" VALUES('EPSG','1822','Namibia - offshore','Namibia - offshore.',-30.64,-17.24,8.24,16.46,0);
INSERT INTO "extent" VALUES('EPSG','1823','South America - 84°W to 78°W, N hemisphere and SIRGAS95 by country','South America between 84°W and 78°W, northern hemisphere, onshore and offshore.',0.9,15.51,-84.0,-78.0,0);
INSERT INTO "extent" VALUES('EPSG','1824','South America - 84°W to 78°W, S hemisphere','South America between 84°W and 78°W, southern hemisphere, onshore and offshore.',-56.45,0.0,-84.0,-78.0,0);
INSERT INTO "extent" VALUES('EPSG','1825','South America - 78°W to 72°W, N hemisphere','South America between 78°W and 72°W, northern hemisphere, onshore and offshore.',0.0,15.04,-78.0,-72.0,0);
INSERT INTO "extent" VALUES('EPSG','1826','South America - 78°W to 72°W, S hemisphere and SIRGAS 1995 by country','South America between 78°W and 72°W, southern hemisphere, onshore and offshore.',-59.36,0.0,-78.0,-71.99,0);
INSERT INTO "extent" VALUES('EPSG','1827','South America - 72°W to 66°W, N hemisphere','South America between 72°W and 66°W, northern hemisphere, onshore and offshore.',0.0,15.64,-72.0,-66.0,0);
INSERT INTO "extent" VALUES('EPSG','1828','South America - 72°W to 66°W, S hemisphere','South America between 72°W and 66°W, southern hemisphere, onshore and offshore.',-59.87,0.0,-72.0,-66.0,0);
INSERT INTO "extent" VALUES('EPSG','1829','South America - 66°W to 60°W, N hemisphere','South America between 66°W and 60°W, northern hemisphere, onshore and offshore.',0.0,16.75,-66.0,-60.0,0);
INSERT INTO "extent" VALUES('EPSG','1830','South America - 66°W to 60°W, S hemisphere','South America between 66°W and 60°W, southern hemisphere, onshore and offshore.',-58.39,0.0,-66.0,-60.0,0);
INSERT INTO "extent" VALUES('EPSG','1831','South America - 60°W to 54°W, N hemisphere','South America between 60°W and 54°W, northern hemisphere, onshore and offshore.',0.0,10.7,-60.0,-54.0,0);
INSERT INTO "extent" VALUES('EPSG','1832','South America - 60°W to 54°W, S hemisphere','South America onshore and offshore, southern hemisphere between 60°W and 54°W.',-44.82,0.0,-60.0,-54.0,0);
INSERT INTO "extent" VALUES('EPSG','1833','South America - 54°W to 48°W, N hemisphere','South America between 54°W and 48°W, northern hemisphere, onshore and offshore.',0.0,9.24,-54.0,-48.0,0);
INSERT INTO "extent" VALUES('EPSG','1834','South America - 54°W to 48°W, S hemisphere','South America between 54°W and 48°W, southern hemisphere, onshore and offshore.',-39.95,0.0,-54.0,-48.0,0);
INSERT INTO "extent" VALUES('EPSG','1835','South America - 48°W to 42°W','South America - between 48°W and 42°W, southern hemisphere, onshore and offshore.',-33.5,0.0,-48.0,-42.0,0);
INSERT INTO "extent" VALUES('EPSG','1836','South America - 42°W to 36°W','South America - between 42°W and 36°W, southern hemisphere, onshore and offshore.',-26.35,0.0,-42.0,-36.0,0);
INSERT INTO "extent" VALUES('EPSG','1837','South America - 36°W to 30°W','South America - between 36°W and 30°W, southern hemisphere, onshore and offshore.',-20.11,0.0,-36.0,-30.0,0);
INSERT INTO "extent" VALUES('EPSG','1838','Namibia - west of 12°E','Namibia - onshore west of 12°E.',-18.53,-17.15,11.66,12.0,0);
INSERT INTO "extent" VALUES('EPSG','1839','Namibia - 12°E to 14°E','Namibia - onshore between 12°E and 14°E.',-21.9,-16.95,12.0,14.01,0);
INSERT INTO "extent" VALUES('EPSG','1840','Namibia - 14°E to 16°E','Namibia - onshore between 14°E and 16°E.',-28.3,-17.38,14.0,16.0,0);
INSERT INTO "extent" VALUES('EPSG','1841','Namibia - 16°E to 18°E','Namibia - onshore between 16°E and 18°E.',-28.83,-17.38,15.99,18.01,0);
INSERT INTO "extent" VALUES('EPSG','1842','Namibia - 18°E to 20°E','Namibia - between 18°E and 20°E.',-28.97,-17.38,18.0,20.0,0);
INSERT INTO "extent" VALUES('EPSG','1843','Namibia - 20°E to 22°E','Namibia - between 20°E and 22°E.',-22.01,-17.85,19.99,22.0,0);
INSERT INTO "extent" VALUES('EPSG','1844','Namibia - 22°E to 24°E','Namibia - between 22°E and 24°E.',-18.49,-17.52,21.99,24.0,0);
INSERT INTO "extent" VALUES('EPSG','1845','Namibia - east of 24°E','Namibia - east of 24°E.',-18.18,-17.47,24.0,25.27,0);
INSERT INTO "extent" VALUES('EPSG','1846','Sudan - south - west of 30°E','Sudan south - west of 30°E.',NULL,NULL,NULL,NULL,1);
INSERT INTO "extent" VALUES('EPSG','1847','Sudan - south - east of 30°E','Sudan south - east of 30°E.',NULL,NULL,NULL,NULL,1);
INSERT INTO "extent" VALUES('EPSG','1848','Madagascar - nearshore - west of 48°E','Madagascar - nearshore west of 48°E.',-26.59,-13.0,42.53,48.0,0);
INSERT INTO "extent" VALUES('EPSG','1849','Madagascar - nearshore - east of 48°E','Madagascar - nearshore east of 48°E.',-24.21,-11.69,48.0,51.03,0);
INSERT INTO "extent" VALUES('EPSG','1850','UAE - Abu Dhabi - onshore west of 54°E','United Arab Emirates (UAE) - Abu Dhabi onshore west of 54°E.',22.76,24.32,51.56,54.01,0);
INSERT INTO "extent" VALUES('EPSG','1851','Malaysia - East Malaysia onshore','Malaysia - onshore East Malaysia (Sabah; Sarawak).',0.85,7.41,109.54,119.33,0);
INSERT INTO "extent" VALUES('EPSG','1852','Asia - Brunei and East Malaysia - 108°E to 114°E','Brunei - offshore west of 114°E; Malaysia - East Malaysia (Sarawak) onshore and offshore west of 114°E).',0.85,7.37,109.31,114.0,0);
INSERT INTO "extent" VALUES('EPSG','1853','Asia - Brunei and East Malaysia - 114°E to 120°E','Brunei - onshore and offshore east of 114°E; Malaysia - East Malaysia (Sabah, Sarawak) onshore and offshore east of 114°E).',1.43,7.67,114.0,119.61,0);
INSERT INTO "extent" VALUES('EPSG','1854','Japan - zone I','Japan - onshore - Kyushu west of approximately 130°E - Nagasaki-ken; islands of Kagoshima-ken between 27°N and 32°N and between 128°18''E and 130°E (between 128°18''E and 30°13''E for Amami islands).',26.96,34.74,128.17,130.46,0);
INSERT INTO "extent" VALUES('EPSG','1855','Japan - zone II','Japan - onshore - Kyushu east of approximately 130°E - Fukuoka-ken; Saga-ken; Kumamoto-ken; Oita-ken; Miyazaki-ken; Kagoshima-ken (except for area within Japan Plane Rectangular Coordinate System zone I).',30.18,33.99,129.76,132.05,0);
INSERT INTO "extent" VALUES('EPSG','1856','Japan - zone III','Japan - onshore - Honshu west of approximately 133°15''E - Yamaguchi-ken; Shimane-ken; Hiroshima-ken.',33.72,36.38,130.81,133.49,0);
INSERT INTO "extent" VALUES('EPSG','1857','Japan - zone IV','Japan - onshore - Shikoku - Kagawa-ken; Ehime-ken; Tokushima-ken; Kochi-ken.',32.69,34.45,131.95,134.81,0);
INSERT INTO "extent" VALUES('EPSG','1858','Japan - zone V','Japan - onshore - Honshu between approximately 133°15''E and 135°10''E - Hyogo-ken; Tottori-ken; Okayama-ken.',34.13,35.71,133.13,135.47,0);
INSERT INTO "extent" VALUES('EPSG','1859','Japan - zone VI','Japan - onshore - Honshu between approximately 135°10''E and 136°45''E - Kyoto-fu; Osaka-fu; Fukui-ken; Shiga-ken; Mie-ken; Nara-ken; Wakayama-ken.',33.4,36.33,134.86,136.99,0);
INSERT INTO "extent" VALUES('EPSG','1860','Japan - zone VII','Japan - onshore - Honshu between approximately 136°15''E and 137°45''E - Ishikawa-ken; Toyama-ken; Gifu-ken; Aichi-ken.',34.51,37.58,136.22,137.84,0);
INSERT INTO "extent" VALUES('EPSG','1861','Japan - zone VIII','Japan - onshore - Honshu between approximately 137°45''E and 139°E - Niigata-ken; Nagano-ken; Yamanashi-ken; Shizuoka-ken.',34.54,38.58,137.32,139.91,0);
INSERT INTO "extent" VALUES('EPSG','1862','Japan - zone IX','Japan - onshore - Honshu - Tokyo-to. (Excludes offshore island areas of Tokyo-to covered by Japan Plane Rectangular Coordinate System zones XIV, XVIII and XIX).',29.31,37.98,138.4,141.11,0);
INSERT INTO "extent" VALUES('EPSG','1863','Japan - zone X','Japan - onshore - Honshu north of 38°N approximately - Aomori-ken; Akita-ken; Yamagata-ken; Iwate-ken; Miyagi-ken.',37.73,41.58,139.49,142.14,0);
INSERT INTO "extent" VALUES('EPSG','1864','Japan - zone XI','Japan - onshore - Hokkaido west of approximately 141°E - Otaru city; Hakodate city; Date city; Usu-gun and Abuta-gun of Iburi-shicho; Hiyama-shicho; Shiribeshi-shicho; Oshima-shicho.',41.34,43.42,139.34,141.46,0);
INSERT INTO "extent" VALUES('EPSG','1865','Japan - zone XII','Japan - onshore - Hokkaido between approximately 141°E and 143°E - Sapporo city; Asahikawa city; Wakkanai city; Rumoi city; Bibai city; Yubari city; Iwamizawa city; Tomakomai city; Muroran city; Shibetsu city; Nayoro city; Ashibetsu city; Akabira city; Mikasa city; Takikawa city; Sunagawa city; Ebetsu city; Chitose city; Utashinai city; Fukagawa city; Monbetsu city; Furano city; Noboribetsu city; Eniwa city; Ishikari-shicho; Monbetsu-gun of Abashiri-shicho; Kamikawa-shicho; Soya-shicho; Hidaka-shicho; Iburi-shicho (except Usu-gun and Abuta-gun); Sorachi-shicho; Rumoi-shicho.',42.15,45.54,140.89,143.61,0);
INSERT INTO "extent" VALUES('EPSG','1866','Japan - zone XIII','Japan - onshore - Hokkaido east of approximately 143°E - Kitami city; Obihiro city; Kushiro city; Abashiri city; Nemuro city; Nemuro-shicho; Kushiro-shicho; Abashiri-shicho (except Monbetsu-gun); Tokachi-shicho.',41.87,44.4,142.61,145.87,0);
INSERT INTO "extent" VALUES('EPSG','1867','Japan - zone XIV','Japan - onshore - Tokyo-to south of 28°N and between 140°30''E and 143°E.',24.67,27.8,141.2,142.33,0);
INSERT INTO "extent" VALUES('EPSG','1868','Japan - zone XV','Japan - onshore - Okinawa-ken between 126°E and 130°E.',26.02,26.91,126.63,128.4,0);
INSERT INTO "extent" VALUES('EPSG','1869','Japan - zone XVI','Japan - onshore - Okinawa-ken west of 126°E.',23.98,24.94,122.83,125.51,0);
INSERT INTO "extent" VALUES('EPSG','1870','Japan - zone XVII','Japan - onshore Okinawa-ken east of 130°E.',24.4,26.01,131.12,131.38,0);
INSERT INTO "extent" VALUES('EPSG','1871','Japan - zone XVIII','Japan - onshore - Tokyo-to south of 28°N and west of 140°30''E.',20.37,20.48,136.02,136.16,0);
INSERT INTO "extent" VALUES('EPSG','1872','Japan - Minamitori-shima (Marcus Island) - onshore','Japan - onshore - Tokyo-to south of 28°N and east of 143°E - Minamitori-shima (Marcus Island).',24.22,24.35,153.91,154.05,0);
INSERT INTO "extent" VALUES('EPSG','1873','World - N hemisphere - 180°W to 174°W','Between 180°W and 174°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-180.0,-174.0,0);
INSERT INTO "extent" VALUES('EPSG','1874','World - S hemisphere - 180°W to 174°W','Between 180°W to 174°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-180.0,-174.0,0);
INSERT INTO "extent" VALUES('EPSG','1875','World - N hemisphere - 174°W to 168°W','Between 174°W and 168°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-174.0,-168.0,0);
INSERT INTO "extent" VALUES('EPSG','1876','World - S hemisphere - 174°W to 168°W','Between 174°W and 168°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-174.0,-168.0,0);
INSERT INTO "extent" VALUES('EPSG','1877','World - N hemisphere - 168°W to 162°W','Between 168°W and 162°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-168.0,-162.0,0);
INSERT INTO "extent" VALUES('EPSG','1878','World - S hemisphere - 168°W to 162°W','Between 168°W and 162°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-168.0,-162.0,0);
INSERT INTO "extent" VALUES('EPSG','1879','World - N hemisphere - 162°W to 156°W','Between 162°W and 156°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-162.0,-156.0,0);
INSERT INTO "extent" VALUES('EPSG','1880','World - S hemisphere - 162°W to 156°W','Between 162°W and 156°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-162.0,-156.0,0);
INSERT INTO "extent" VALUES('EPSG','1881','World - N hemisphere - 156°W to 150°W','Between 156°W and 150°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-156.0,-150.0,0);
INSERT INTO "extent" VALUES('EPSG','1882','World - S hemisphere - 156°W to 150°W','Between 156°W and 150°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-156.0,-150.0,0);
INSERT INTO "extent" VALUES('EPSG','1883','World - N hemisphere - 150°W to 144°W','Between 150°W and 144°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-150.0,-144.0,0);
INSERT INTO "extent" VALUES('EPSG','1884','World - S hemisphere - 150°W to 144°W','Between 150°W and 144°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-150.0,-144.0,0);
INSERT INTO "extent" VALUES('EPSG','1885','World - N hemisphere - 144°W to 138°W','Between 144°W and 138°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-144.0,-138.0,0);
INSERT INTO "extent" VALUES('EPSG','1886','World - S hemisphere - 144°W to 138°W','Between 144°W and 138°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-144.0,-138.0,0);
INSERT INTO "extent" VALUES('EPSG','1887','World - N hemisphere - 138°W to 132°W','Between 138°W and 132°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-138.0,-132.0,0);
INSERT INTO "extent" VALUES('EPSG','1888','World - S hemisphere - 138°W to 132°W','Between 138°W and 132°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-138.0,-132.0,0);
INSERT INTO "extent" VALUES('EPSG','1889','World - N hemisphere - 132°W to 126°W','Between 132°W and 126°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-132.0,-126.0,0);
INSERT INTO "extent" VALUES('EPSG','1890','World - S hemisphere - 132°W to 126°W','Between 132°W and 126°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-132.0,-126.0,0);
INSERT INTO "extent" VALUES('EPSG','1891','World - N hemisphere - 126°W to 120°W','Between 126°W and 120°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-126.0,-120.0,0);
INSERT INTO "extent" VALUES('EPSG','1892','World - S hemisphere - 126°W to 120°W','Between 126°W and 120°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-126.0,-120.0,0);
INSERT INTO "extent" VALUES('EPSG','1893','World - N hemisphere - 120°W to 114°W','Between 120°W and 114°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-120.0,-114.0,0);
INSERT INTO "extent" VALUES('EPSG','1894','World - S hemisphere - 120°W to 114°W','Between 120°W and 114°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-120.0,-114.0,0);
INSERT INTO "extent" VALUES('EPSG','1895','World - N hemisphere - 114°W to 108°W','Between 114°W and 108°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-114.0,-108.0,0);
INSERT INTO "extent" VALUES('EPSG','1896','World - S hemisphere - 114°W to 108°W','Between 114°W and 108°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-114.0,-108.0,0);
INSERT INTO "extent" VALUES('EPSG','1897','World - N hemisphere - 108°W to 102°W','Between 108°W and 102°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-108.0,-102.0,0);
INSERT INTO "extent" VALUES('EPSG','1898','World - S hemisphere - 108°W to 102°W','Between 108°W and 102°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-108.0,-102.0,0);
INSERT INTO "extent" VALUES('EPSG','1899','World - N hemisphere - 102°W to 96°W','Between 102°W and 96°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-102.0,-96.0,0);
INSERT INTO "extent" VALUES('EPSG','1900','World - S hemisphere - 102°W to 96°W','Between 102°W and 96°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-102.0,-96.0,0);
INSERT INTO "extent" VALUES('EPSG','1901','World - N hemisphere - 96°W to 90°W','Between 96°W and 90°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-96.0,-90.0,0);
INSERT INTO "extent" VALUES('EPSG','1902','World - S hemisphere - 96°W to 90°W','Between 96°W and 90°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-96.0,-90.0,0);
INSERT INTO "extent" VALUES('EPSG','1903','World - N hemisphere - 90°W to 84°W','Between 90°W and 84°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-90.0,-84.0,0);
INSERT INTO "extent" VALUES('EPSG','1904','World - S hemisphere - 90°W to 84°W','Between 90°W and 84°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-90.0,-84.0,0);
INSERT INTO "extent" VALUES('EPSG','1905','World - N hemisphere - 84°W to 78°W','Between 84°W and 78°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-84.0,-78.0,0);
INSERT INTO "extent" VALUES('EPSG','1906','World - S hemisphere - 84°W to 78°W','Between 84°W and 78°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-84.0,-78.0,0);
INSERT INTO "extent" VALUES('EPSG','1907','World - N hemisphere - 78°W to 72°W','Between 78°W and 72°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-78.0,-72.0,0);
INSERT INTO "extent" VALUES('EPSG','1908','World - S hemisphere - 78°W to 72°W','Between 78°W and 72°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-78.0,-72.0,0);
INSERT INTO "extent" VALUES('EPSG','1909','World - N hemisphere - 72°W to 66°W','Between 72°W and 66°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-72.0,-66.0,0);
INSERT INTO "extent" VALUES('EPSG','1910','World - S hemisphere - 72°W to 66°W','Between 72°W and 66°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-72.0,-66.0,0);
INSERT INTO "extent" VALUES('EPSG','1911','World - N hemisphere - 66°W to 60°W','Between 66°W and 60°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-66.0,-60.0,0);
INSERT INTO "extent" VALUES('EPSG','1912','World - S hemisphere - 66°W to 60°W','Between 66°W and 60°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-66.0,-60.0,0);
INSERT INTO "extent" VALUES('EPSG','1913','World - N hemisphere - 60°W to 54°W','Between 60°W and 54°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-60.0,-54.0,0);
INSERT INTO "extent" VALUES('EPSG','1914','World - S hemisphere - 60°W to 54°W','Between 60°W and 54°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-60.0,-54.0,0);
INSERT INTO "extent" VALUES('EPSG','1915','World - N hemisphere - 54°W to 48°W','Between 54°W and 48°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-54.0,-48.0,0);
INSERT INTO "extent" VALUES('EPSG','1916','World - S hemisphere - 54°W to 48°W','Between 54°W and 48°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-54.0,-48.0,0);
INSERT INTO "extent" VALUES('EPSG','1917','World - N hemisphere - 48°W to 42°W','Between 48°W and 42°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-48.0,-42.0,0);
INSERT INTO "extent" VALUES('EPSG','1918','World - S hemisphere - 48°W to 42°W','Between 48°W and 42°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-48.0,-42.0,0);
INSERT INTO "extent" VALUES('EPSG','1919','World - N hemisphere - 42°W to 36°W','Between 42°W and 36°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-42.0,-36.0,0);
INSERT INTO "extent" VALUES('EPSG','1920','World - S hemisphere - 42°W to 36°W','Between 42°W and 36°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-42.0,-36.0,0);
INSERT INTO "extent" VALUES('EPSG','1921','World - N hemisphere - 36°W to 30°W','Between 36°W and 30°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-36.0,-30.0,0);
INSERT INTO "extent" VALUES('EPSG','1922','World - S hemisphere - 36°W to 30°W','Between 36°W and 30°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-36.0,-30.0,0);
INSERT INTO "extent" VALUES('EPSG','1923','World - N hemisphere - 30°W to 24°W','Between 30°W and 24°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-30.0,-24.0,0);
INSERT INTO "extent" VALUES('EPSG','1924','World - S hemisphere - 30°W to 24°W','Between 30°W and 24°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-30.0,-24.0,0);
INSERT INTO "extent" VALUES('EPSG','1925','World - N hemisphere - 24°W to 18°W','Between 24°W and 18°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-24.0,-18.0,0);
INSERT INTO "extent" VALUES('EPSG','1926','World - S hemisphere - 24°W to 18°W','Between 24°W and 18°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-24.0,-18.0,0);
INSERT INTO "extent" VALUES('EPSG','1927','World - N hemisphere - 18°W to 12°W','Between 18°W and 12°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-18.0,-12.0,0);
INSERT INTO "extent" VALUES('EPSG','1928','World - S hemisphere - 18°W to 12°W','Between 18°W and 12°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-18.0,-12.0,0);
INSERT INTO "extent" VALUES('EPSG','1929','World - N hemisphere - 12°W to 6°W','Between 12°W and 6°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-12.0,-6.0,0);
INSERT INTO "extent" VALUES('EPSG','1930','World - S hemisphere - 12°W to 6°W','Between 12°W and 6°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-12.0,-6.0,0);
INSERT INTO "extent" VALUES('EPSG','1931','World - N hemisphere - 6°W to 0°W','Between 6°W and 0°W, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-6.0,0.0,0);
INSERT INTO "extent" VALUES('EPSG','1932','World - S hemisphere - 6°W to 0°W','Between 6°W and 0°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-6.0,0.0,0);
INSERT INTO "extent" VALUES('EPSG','1933','World - N hemisphere - 0°E to 6°E','Between 0°E and 6°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,0.0,6.0,0);
INSERT INTO "extent" VALUES('EPSG','1934','World - S hemisphere - 0°E to 6°E','Between 0°E and 6°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,0.0,6.0,0);
INSERT INTO "extent" VALUES('EPSG','1935','World - N hemisphere - 6°E to 12°E','Between 6°E and 12°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,6.0,12.0,0);
INSERT INTO "extent" VALUES('EPSG','1936','World - S hemisphere - 6°E to 12°E','Between 6°E and 12°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,6.0,12.0,0);
INSERT INTO "extent" VALUES('EPSG','1937','World - N hemisphere - 12°E to 18°E','Between 12°E and 18°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,12.0,18.0,0);
INSERT INTO "extent" VALUES('EPSG','1938','World - S hemisphere - 12°E to 18°E','Between 12°E and 18°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,12.0,18.0,0);
INSERT INTO "extent" VALUES('EPSG','1939','World - N hemisphere - 18°E to 24°E','Between 18°E and 24°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,18.0,24.0,0);
INSERT INTO "extent" VALUES('EPSG','1940','World - S hemisphere - 18°E to 24°E','Between 18°E and 24°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,18.0,24.0,0);
INSERT INTO "extent" VALUES('EPSG','1941','World - N hemisphere - 24°E to 30°E','Between 24°E and 30°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,24.0,30.0,0);
INSERT INTO "extent" VALUES('EPSG','1942','World - S hemisphere - 24°E to 30°E','Between 24°E and 30°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,24.0,30.0,0);
INSERT INTO "extent" VALUES('EPSG','1943','World - N hemisphere - 30°E to 36°E','Between 30°E and 36°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,30.0,36.0,0);
INSERT INTO "extent" VALUES('EPSG','1944','World - S hemisphere - 30°E to 36°E','Between 30°E and 36°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,30.0,36.0,0);
INSERT INTO "extent" VALUES('EPSG','1945','World - N hemisphere - 36°E to 42°E','Between 36°E and 42°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,36.0,42.0,0);
INSERT INTO "extent" VALUES('EPSG','1946','World - S hemisphere - 36°E to 42°E','Between 36°E and 42°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,36.0,42.0,0);
INSERT INTO "extent" VALUES('EPSG','1947','World - N hemisphere - 42°E to 48°E','Between 42°E and 48°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,42.0,48.0,0);
INSERT INTO "extent" VALUES('EPSG','1948','World - S hemisphere - 42°E to 48°E','Between 42°E and 48°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,42.0,48.0,0);
INSERT INTO "extent" VALUES('EPSG','1949','World - N hemisphere - 48°E to 54°E','Between 48°E and 54°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,48.0,54.0,0);
INSERT INTO "extent" VALUES('EPSG','1950','World - S hemisphere - 48°E to 54°E','Between 48°E and 54°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,48.0,54.0,0);
INSERT INTO "extent" VALUES('EPSG','1951','World - N hemisphere - 54°E to 60°E','Between 54°E and 60°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,54.0,60.0,0);
INSERT INTO "extent" VALUES('EPSG','1952','World - S hemisphere - 54°E to 60°E','Between 54°E and 60°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,54.0,60.0,0);
INSERT INTO "extent" VALUES('EPSG','1953','World - N hemisphere - 60°E to 66°E','Between 60°E and 66°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,60.0,66.0,0);
INSERT INTO "extent" VALUES('EPSG','1954','World - S hemisphere - 60°E to 66°E','Between 60°E and 66°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,60.0,66.0,0);
INSERT INTO "extent" VALUES('EPSG','1955','World - N hemisphere - 66°E to 72°E','Between 66°E and 72°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,66.0,72.0,0);
INSERT INTO "extent" VALUES('EPSG','1956','World - S hemisphere - 66°E to 72°E','Between 66°E and 72°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,66.0,72.0,0);
INSERT INTO "extent" VALUES('EPSG','1957','World - N hemisphere - 72°E to 78°E','Between 72°E and 78°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,72.0,78.0,0);
INSERT INTO "extent" VALUES('EPSG','1958','World - S hemisphere - 72°E to 78°E','Between 72°E and 78°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,72.0,78.0,0);
INSERT INTO "extent" VALUES('EPSG','1959','World - N hemisphere - 78°E to 84°E','Between 78°E and 84°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,78.0,84.0,0);
INSERT INTO "extent" VALUES('EPSG','1960','World - S hemisphere - 78°E to 84°E','Between 78°E and 84°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,78.0,84.0,0);
INSERT INTO "extent" VALUES('EPSG','1961','World - N hemisphere - 84°E to 90°E','Between 84°E and 90°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,84.0,90.0,0);
INSERT INTO "extent" VALUES('EPSG','1962','World - S hemisphere - 84°E to 90°E','Between 84°E and 90°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,84.0,90.0,0);
INSERT INTO "extent" VALUES('EPSG','1963','World - N hemisphere - 90°E to 96°E','Between 90°E and 96°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,90.0,96.0,0);
INSERT INTO "extent" VALUES('EPSG','1964','World - S hemisphere - 90°E to 96°E','Between 90°E and 96°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,90.0,96.0,0);
INSERT INTO "extent" VALUES('EPSG','1965','World - N hemisphere - 96°E to 102°E','Between 96°E and 102°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,96.0,102.0,0);
INSERT INTO "extent" VALUES('EPSG','1966','World - S hemisphere - 96°E to 102°E','Between 96°E and 102°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,96.0,102.0,0);
INSERT INTO "extent" VALUES('EPSG','1967','World - N hemisphere - 102°E to 108°E','Between 102°E and 108°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,102.0,108.0,0);
INSERT INTO "extent" VALUES('EPSG','1968','World - S hemisphere - 102°E to 108°E','Between 102°E and 108°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,102.0,108.0,0);
INSERT INTO "extent" VALUES('EPSG','1969','World - N hemisphere - 108°E to 114°E','Between 108°E and 114°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,108.0,114.0,0);
INSERT INTO "extent" VALUES('EPSG','1970','World - S hemisphere - 108°E to 114°E','Between 108°E and 114°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,108.0,114.0,0);
INSERT INTO "extent" VALUES('EPSG','1971','World - N hemisphere - 114°E to 120°E','Between 114°E and 120°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,114.0,120.0,0);
INSERT INTO "extent" VALUES('EPSG','1972','World - S hemisphere - 114°E to 120°E','Between 114°E and 120°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,114.0,120.0,0);
INSERT INTO "extent" VALUES('EPSG','1973','World - N hemisphere - 120°E to 126°E','Between 120°E and 126°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,120.0,126.0,0);
INSERT INTO "extent" VALUES('EPSG','1974','World - S hemisphere - 120°E to 126°E','Between 120°E and 126°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,120.0,126.0,0);
INSERT INTO "extent" VALUES('EPSG','1975','World - N hemisphere - 126°E to 132°E','Between 126°E and 132°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,126.0,132.0,0);
INSERT INTO "extent" VALUES('EPSG','1976','World - S hemisphere - 126°E to 132°E','Between 126°E and 132°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,126.0,132.0,0);
INSERT INTO "extent" VALUES('EPSG','1977','World - N hemisphere - 132°E to 138°E','Between 132°E and 138°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,132.0,138.0,0);
INSERT INTO "extent" VALUES('EPSG','1978','World - S hemisphere - 132°E to 138°E','Between 132°E and 138°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,132.0,138.0,0);
INSERT INTO "extent" VALUES('EPSG','1979','World - N hemisphere - 138°E to 144°E','Between 138°E and 144°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,138.0,144.0,0);
INSERT INTO "extent" VALUES('EPSG','1980','World - S hemisphere - 138°E to 144°E','Between 138°E and 144°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,138.0,144.0,0);
INSERT INTO "extent" VALUES('EPSG','1981','World - N hemisphere - 144°E to 150°E','Between 144°E and 150°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,144.0,150.0,0);
INSERT INTO "extent" VALUES('EPSG','1982','World - S hemisphere - 144°E to 150°E','Between 144°E and 150°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,144.0,150.0,0);
INSERT INTO "extent" VALUES('EPSG','1983','World - N hemisphere - 150°E to 156°E','Between 150°E and 156°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,150.0,156.0,0);
INSERT INTO "extent" VALUES('EPSG','1984','World - S hemisphere - 150°E to 156°E','Between 150°E and 156°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,150.0,156.0,0);
INSERT INTO "extent" VALUES('EPSG','1985','World - N hemisphere - 156°E to 162°E','Between 156°E and 162°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,156.0,162.0,0);
INSERT INTO "extent" VALUES('EPSG','1986','World - S hemisphere - 156°E to 162°E','Between 156°E and 162°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,156.0,162.0,0);
INSERT INTO "extent" VALUES('EPSG','1987','World - N hemisphere - 162°E to 168°E','Between 162°E and 168°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,162.0,168.0,0);
INSERT INTO "extent" VALUES('EPSG','1988','World - S hemisphere - 162°E to 168°E','Between 162°E and 168°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,162.0,168.0,0);
INSERT INTO "extent" VALUES('EPSG','1989','World - N hemisphere - 168°E to 174°E','Between 168°E and 174°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,168.0,174.0,0);
INSERT INTO "extent" VALUES('EPSG','1990','World - S hemisphere - 168°E to 174°E','Between 168°E and 174°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,168.0,174.0,0);
INSERT INTO "extent" VALUES('EPSG','1991','World - N hemisphere - 174°E to 180°E','Between 174°E and 180°E, northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,174.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','1992','World - S hemisphere - 174°E to 180°E','Between 174°E and 180°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,174.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','1993','World - N hemisphere - 102°E to 108°E - by country and WGS 72BE','Between 102°E and 108°E, northern hemisphere between equator and 84°N, onshore and offshore. Vietnam - offshore.',0.0,84.0,102.0,108.0,0);
INSERT INTO "extent" VALUES('EPSG','1994','World - N hemisphere - 108°E to 114°E - by country and WGS 72BE','Between 108°E and 114°E, northern hemisphere between equator and 84°N, onshore and offshore. Vietnam - offshore.',0.0,84.0,108.0,114.0,0);
INSERT INTO "extent" VALUES('EPSG','1995','World - S hemisphere - 108°E to 114°E - by country and WGS 72BE','Between 108°E and 114°E, southern hemisphere between 80°S and equator, onshore and offshore. Indonesia - offshore.',-80.0,0.0,108.0,114.0,0);
INSERT INTO "extent" VALUES('EPSG','1996','World - N hemisphere - north of 60°N','Northern hemisphere - north of 60°N onshore and offshore, including Arctic.',60.0,90.0,-180.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','1997','World - S hemisphere - south of 60°S','Southern hemisphere - south of 60°S onshore and offshore - Antarctica.',-90.0,-60.0,-180.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','1998','World - N hemisphere - 0°N to 84°N','Northern hemisphere between equator and 84°N, onshore and offshore.',0.0,84.0,-180.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','1999','World - S hemisphere - 0°N to 80°S','Southern hemisphere between equator and 80°S, onshore and offshore.',-80.0,0.0,-180.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','2000','World - N hemisphere - 180°W to 174°W - by country','Between 180°W and 174°W, northern hemisphere between equator and 84°N, onshore and offshore. Russian Federation; United States (USA) - Alaska (AK).',0.0,84.0,-180.0,-174.0,0);
INSERT INTO "extent" VALUES('EPSG','2001','World - S hemisphere - 180°W to 174°W - by country','Between 180°W and 174°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-180.0,-174.0,0);
INSERT INTO "extent" VALUES('EPSG','2002','World - N hemisphere - 174°W to 168°W - by country','Between 174°W and 168°W, northern hemisphere between equator and 84°N, onshore and offshore. Russian Federation; United States (USA) - Alaska (AK).',0.0,84.0,-174.0,-168.0,0);
INSERT INTO "extent" VALUES('EPSG','2003','World - S hemisphere - 174°W to 168°W - by country','Between 174°W and 168°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-174.0,-168.0,0);
INSERT INTO "extent" VALUES('EPSG','2004','World - N hemisphere - 168°W to 162°W - by country','Between 168°W and 162°W, northern hemisphere between equator and 84°N, onshore and offshore. United States (USA) - Alaska (AK).',0.0,84.0,-168.0,-162.0,0);
INSERT INTO "extent" VALUES('EPSG','2005','World - S hemisphere - 168°W to 162°W - by country','Between 168°W and 162°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-168.0,-162.0,0);
INSERT INTO "extent" VALUES('EPSG','2006','World - N hemisphere - 162°W to 156°W - by country','Between 162°W and 156°W, northern hemisphere between equator and 84°N, onshore and offshore. United States (USA) - Alaska (AK).',0.0,84.0,-162.0,-156.0,0);
INSERT INTO "extent" VALUES('EPSG','2007','World - S hemisphere - 162°W to 156°W - by country','Between 162°W and 156°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-162.0,-156.0,0);
INSERT INTO "extent" VALUES('EPSG','2008','World - N hemisphere - 156°W to 150°W - by country','Between 156°W and 150°W, northern hemisphere between equator and 84°N, onshore and offshore. United States (USA) - Alaska (AK).',0.0,84.0,-156.0,-150.0,0);
INSERT INTO "extent" VALUES('EPSG','2009','World - S hemisphere - 156°W to 150°W - by country','Between 156°W and 150°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-156.0,-150.0,0);
INSERT INTO "extent" VALUES('EPSG','2010','World - N hemisphere - 150°W to 144°W - by country','Between 150°W and 144°W, northern hemisphere between equator and 84°N, onshore and offshore. United States (USA) - Alaska (AK).',0.0,84.0,-150.0,-144.0,0);
INSERT INTO "extent" VALUES('EPSG','2011','World - S hemisphere - 150°W to 144°W - by country','Between 150°W and 144°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-150.0,-144.0,0);
INSERT INTO "extent" VALUES('EPSG','2012','World - N hemisphere - 144°W to 138°W - by country','Between 144°W and 138°W, northern hemisphere between equator and 84°N, onshore and offshore. Canada - British Columbia (BC); Yukon. United States (USA) - Alaska (AK).',0.0,84.0,-144.0,-138.0,0);
INSERT INTO "extent" VALUES('EPSG','2013','World - S hemisphere - 144°W to 138°W - by country','Between 144°W and 138°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-144.0,-138.0,0);
INSERT INTO "extent" VALUES('EPSG','2014','World - N hemisphere - 138°W to 132°W - by country','Between 138°W and 132°W, northern hemisphere between equator and 84°N, onshore and offshore. Canada - British Columbia (BC); Northwest Territiories (NWT); Yukon. United States (USA) - Alaska (AK).',0.0,84.0,-138.0,-132.0,0);
INSERT INTO "extent" VALUES('EPSG','2015','World - S hemisphere - 138°W to 132°W - by country','Between 138°W and 132°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-138.0,-132.0,0);
INSERT INTO "extent" VALUES('EPSG','2016','World - N hemisphere - 132°W to 126°W - by country','Between 132°W and 126°W, northern hemisphere between equator and 84°N, onshore and offshore. Canada - British Columbia (BC); NorthW Territories (NWT); Yukon. United States (USA) - Alaska (AK).',0.0,84.0,-132.0,-126.0,0);
INSERT INTO "extent" VALUES('EPSG','2017','World - S hemisphere - 132°W to 126°W - by country','Between 132°W and 126°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-132.0,-126.0,0);
INSERT INTO "extent" VALUES('EPSG','2018','World - N hemisphere - 126°W to 120°W - by country','Between 126°W and 120°W, northern hemisphere between equator and 84°N, onshore and offshore. Canada - British Columbia (BC); Northwest Territories (NWT); Nunavut; Yukon. United States (USA) - Alaska (AK).',0.0,84.0,-126.0,-120.0,0);
INSERT INTO "extent" VALUES('EPSG','2019','World - S hemisphere - 126°W to 120°W - by country','Between 126°W and 120°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-126.0,-120.0,0);
INSERT INTO "extent" VALUES('EPSG','2020','World - N hemisphere - 120°W to 114°W - by country','Between 120°W and 114°W, northern hemisphere between equator and 84°N, onshore and offshore. Canada - Alberta; British Columbia (BC); Northwest Territories (NWT); Nunavut. Mexico. United States (USA).',0.0,84.0,-120.0,-114.0,0);
INSERT INTO "extent" VALUES('EPSG','2021','World - S hemisphere - 120°W to 114°W - by country','Between 120°W and 114°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-120.0,-114.0,0);
INSERT INTO "extent" VALUES('EPSG','2022','World - N hemisphere - 114°W to 108°W - by country','Between 114°W and 108°W, northern hemisphere between equator and 84°N, onshore and offshore. Canada - Alberta; Northwest Territories (NWT); Nunavut; Saskatchewan. Mexico. United States (USA).',0.0,84.0,-114.0,-108.0,0);
INSERT INTO "extent" VALUES('EPSG','2023','World - S hemisphere - 114°W to 108°W - by country','Between 114°W and 108°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-114.0,-108.0,0);
INSERT INTO "extent" VALUES('EPSG','2024','World - N hemisphere - 108°W to 102°W - by country','Between 108°W and 102°W, northern hemisphere between equator and 84°N, onshore and offshore. Canada - Northwest Territories (NWT); Nunavut; Saskatchewan. Mexico. United States (USA).',0.0,84.0,-108.0,-102.0,0);
INSERT INTO "extent" VALUES('EPSG','2025','World - S hemisphere - 108°W to 102°W - by country','Between 108°W and 102°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-108.0,-102.0,0);
INSERT INTO "extent" VALUES('EPSG','2026','World - N hemisphere - 102°W to 96°W - by country','Between 102°W and 96°W, northern hemisphere between equator and 84°N, onshore and offshore. Canada - Manitoba; Nunavut; Saskatchewan. Mexico. United States (USA).',0.0,84.0,-102.0,-96.0,0);
INSERT INTO "extent" VALUES('EPSG','2027','World - S hemisphere - 102°W to 96°W - by country','Between 102°W and 96°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-102.0,-96.0,0);
INSERT INTO "extent" VALUES('EPSG','2028','World - N hemisphere - 96°W to 90°W - by country','Between 96°W and 90°W, northern hemisphere between equator and 84°N, onshore and offshore. Canada - Manitoba; Nunavut; Ontario. Ecuador -Galapagos. Guatemala. Mexico. United States (USA).',0.0,84.0,-96.0,-90.0,0);
INSERT INTO "extent" VALUES('EPSG','2029','World - S hemisphere - 96°W to 90°W - by country','Between 96°W and 90°W, southern hemisphere between 80°S and equator, onshore and offshore. Ecuador - Galapagos.',-80.0,0.0,-96.0,-90.0,0);
INSERT INTO "extent" VALUES('EPSG','2030','World - N hemisphere - 90°W to 84°W - by country','Between 90°W and 84°W, northern hemisphere between equator and 84°N, onshore and offshore. Belize. Canada - Manitoba; Nunavut; Ontario. Costa Rica. Cuba. Ecuador - Galapagos. El Salvador. Guatemala. Honduras. Mexico. Nicaragua. United States (USA).',0.0,84.0,-90.0,-84.0,0);
INSERT INTO "extent" VALUES('EPSG','2031','World - S hemisphere - 90°W to 84°W - by country','Between 90°W and 84°W, southern hemisphere between 80°S and equator, onshore and offshore. Ecuador - Galapagos.',-80.0,0.0,-90.0,-84.0,0);
INSERT INTO "extent" VALUES('EPSG','2032','World - N hemisphere - 84°W to 78°W - by country','Between 84°W and 78°W, northern hemisphere between equator and 84°N, onshore and offshore. Bahamas. Ecuador - north of equator. Canada - Nunavut; Ontario; Quebec. Cayman Islands. Colombia. Costa Rica. Cuba. Jamaica. Nicaragua. Panama. United States (USA).',0.0,84.0,-84.0,-78.0,0);
INSERT INTO "extent" VALUES('EPSG','2033','World - S hemisphere - 84°W to 78°W - by country','Between 84°W and 78°W, southern hemisphere between 80°S and equator, onshore and offshore. Ecuador. Peru.',-80.0,0.0,-84.0,-78.0,0);
INSERT INTO "extent" VALUES('EPSG','2034','World - N hemisphere - 78°W to 72°W - by country','Between 78°W and 72°W, northern hemisphere between equator and 84°N, onshore and offshore. Bahamas. Canada - Nunavut; Ontario; Quebec. Colombia. Cuba. Ecuador. Greenland. Haiti. Jamica. Panama. Turks and Caicos Islands. United States (USA). Venezuela.',0.0,84.0,-78.0,-72.0,0);
INSERT INTO "extent" VALUES('EPSG','2035','World - S hemisphere - 78°W to 72°W - by country','Between 78°W and 72°W, southern hemisphere between 80°S and equator, onshore and offshore. Argentina. Brazil. Chile. Colombia. Ecuador. Peru.',-80.0,0.0,-78.0,-72.0,0);
INSERT INTO "extent" VALUES('EPSG','2036','World - N hemisphere - 72°W to 66°W - by country','Between 72°W and 66°W, northern hemisphere between equator and 84°N, onshore and offshore. Aruba. Bahamas. Brazil. Canada - New Brunswick (NB); Labrador; Nunavut; Nova Scotia (NS); Quebec. Colombia. Dominican Republic. Greenland. Netherlands Antilles. Puerto Rico. Turks and Caicos Islands. United States. Venezuela.',0.0,84.0,-72.0,-66.0,0);
INSERT INTO "extent" VALUES('EPSG','2037','World - S hemisphere - 72°W to 66°W - by country','Between 72°W and 66°W, southern hemisphere between 80°S and equator, onshore and offshore. Argentina. Bolivia. Brazil. Chile. Colombia. Peru.',-80.0,0.0,-72.0,-66.0,0);
INSERT INTO "extent" VALUES('EPSG','2038','World - N hemisphere - 66°W to 60°W - by country','Between 66°W and 60°W, northern hemisphere between equator and 84°N, onshore and offshore. Anguilla. Antigua and Barbuda. Bermuda. Brazil. British Virgin Islands. Canada - New Brunswick; Labrador; Nova Scotia; Nunavut; Prince Edward Island; Quebec. Dominica. Greenland. Grenada. Guadeloupe. Guyana. Martinique. Montserrat. Puerto Rico. St Kitts and Nevis. St Lucia. St Vncent and the Grenadines. Trinidad and Tobago. Venezuela. US Virgin Islands.',0.0,84.0,-66.0,-60.0,0);
INSERT INTO "extent" VALUES('EPSG','2039','World - S hemisphere - 66°W to 60°W - by country','Between 66°W and 60°W, southern hemisphere between 80°S and equator, onshore and offshore. Argentina. Bolivia. Brazil. Falkland Islands (Malvinas). Paraguay.',-80.0,0.0,-66.0,-60.0,0);
INSERT INTO "extent" VALUES('EPSG','2040','World - N hemisphere - 60°W to 54°W - by country','Between 60°W and 54°W, northern hemisphere between equator and 84°N, onshore and offshore. Barbados. Brazil. Canada - Newfoundland and Labrador, Quebec. French Guiana. Greenland. Guyana. St Pierre and Miquelon. Suriname.',0.0,84.0,-60.0,-54.0,0);
INSERT INTO "extent" VALUES('EPSG','2041','World - S hemisphere - 60°W to 54°W - by country','Between 60°W and 54°W, southern hemisphere between 80°S and equator, onshore and offshore. Argentina. Bolivia. Brazil. Falkland Islands (Malvinas). Paraguay. Uruguay.',-80.0,0.0,-60.0,-54.0,0);
INSERT INTO "extent" VALUES('EPSG','2042','World - N hemisphere - 54°W to 48°W - by country','Between 54°W and 48°W, northern hemisphere between equator and 84°N, onshore and offshore. Brazil. Canada - Newfoundland. French Guiana. Greenland.',0.0,84.0,-54.0,-48.0,0);
INSERT INTO "extent" VALUES('EPSG','2043','World - S hemisphere - 54°W to 48°W - by country','Between 54°W and 48°W, southern hemisphere between 80°S and equator, onshore and offshore. Brazil. Uruguay.',-80.0,0.0,-54.0,-48.0,0);
INSERT INTO "extent" VALUES('EPSG','2044','World - N hemisphere - 48°W to 42°W - by country','Between 48°W and 42°W, northern hemisphere between equator and 84°N, onshore and offshore. Greenland.',0.0,84.0,-48.0,-42.0,0);
INSERT INTO "extent" VALUES('EPSG','2045','World - S hemisphere - 48°W to 42°W - by country','Between 48°W and 42°W, southern hemisphere between 80°S and equator, onshore and offshore. Brazil.',-80.0,0.0,-48.0,-42.0,0);
INSERT INTO "extent" VALUES('EPSG','2046','World - N hemisphere - 42°W to 36°W - by country','Between 42°W and 36°W, northern hemisphere between equator and 84°N, onshore and offshore. Greenland.',0.0,84.0,-42.0,-36.0,0);
INSERT INTO "extent" VALUES('EPSG','2047','World - S hemisphere - 42°W to 36°W - by country','Between 42°W and 36°W, southern hemisphere between 80°S and equator, onshore and offshore. Brazil. South Georgia and the South Sandwich Islands.',-80.0,0.0,-42.0,-36.0,0);
INSERT INTO "extent" VALUES('EPSG','2048','World - N hemisphere - 36°W to 30°W - by country','Between 36°W and 30°W, northern hemisphere between equator and 84°N, onshore and offshore. Greenland.',0.0,84.0,-36.0,-30.0,0);
INSERT INTO "extent" VALUES('EPSG','2049','World - S hemisphere - 36°W to 30°W - by country','Between 36°W and 30°W, southern hemisphere between 80°S and equator, onshore and offshore. Brazil.',-80.0,0.0,-36.0,-30.0,0);
INSERT INTO "extent" VALUES('EPSG','2050','World - N hemisphere - 30°W to 24°W - by country','Between 30°W and 24°W, northern hemisphere between equator and 84°N, onshore and offshore. Greenland. Iceland.',0.0,84.0,-30.0,-24.0,0);
INSERT INTO "extent" VALUES('EPSG','2051','World - S hemisphere - 30°W to 24°W - by country','Between 30°W and 24°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-30.0,-24.0,0);
INSERT INTO "extent" VALUES('EPSG','2052','World - N hemisphere - 24°W to 18°W - by country','Between 24°W and 18°W, northern hemisphere between equator and 84°N, onshore and offshore. Greenland. Iceland.',0.0,84.0,-24.0,-18.0,0);
INSERT INTO "extent" VALUES('EPSG','2053','World - S hemisphere - 24°W to 18°W - by country','Between 24°W and 18°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-24.0,-18.0,0);
INSERT INTO "extent" VALUES('EPSG','2054','World - N hemisphere - 18°W to 12°W - by country','Between 18°W and 12°W, northern hemisphere between equator and 84°N, onshore and offshore. Gambia. Greenland. Guinea. Guinea-Bissau. Iceland. Ireland - offshore Porcupine Basin. Mauritania. Morocco. Senegal. Sierra Leone. Western Sahara.',0.0,84.0,-18.0,-12.0,0);
INSERT INTO "extent" VALUES('EPSG','2055','World - S hemisphere - 18°W to 12°W - by country','Between 18°W and 12°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-18.0,-12.0,0);
INSERT INTO "extent" VALUES('EPSG','2056','World - N hemisphere - 12°W to 6°W - by country','Between 12°W and 6°W, northern hemisphere between equator and 84°N, onshore and offshore. Algeria. Côte D''Ivoire (Ivory Coast). Faroe Islands. Guinea. Ireland. Jan Mayen. Mali. Mauritania. Morocco. Portugal. Sierra Leone. Spain. United Kingdom (UK). Western Sahara.',0.0,84.0,-12.0,-6.0,0);
INSERT INTO "extent" VALUES('EPSG','2057','World - S hemisphere - 12°W to 6°W - by country','Between 12°W and 6°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-12.0,-6.0,0);
INSERT INTO "extent" VALUES('EPSG','2058','World - N hemisphere - 6°W to 0°W - by country','Between 6°W and 0°W, northern hemisphere between equator and 84°N, onshore and offshore. Algeria. Burkina Faso. Côte'' Ivoire (Ivory Coast). Faroe Islands - offshore. France. Ghana. Gibraltar. Ireland - offshore Irish Sea. Mali. Mauritania. Morocco. Spain. United Kingdom (UK).',0.0,84.0,-6.0,0.0,0);
INSERT INTO "extent" VALUES('EPSG','2059','World - S hemisphere - 6°W to 0°W - by country','Between 6°W and 0°W, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,-6.0,0.0,0);
INSERT INTO "extent" VALUES('EPSG','2060','World - N hemisphere - 0°E to 6°E - by country','Between 0°E and 6°E, northern hemisphere between equator and 84°N, onshore and offshore. Algeria. Andorra. Belgium. Benin. Burkina Faso. Denmark - North Sea. France. Germany - North Sea. Ghana. Luxembourg. Mali. Netherlands. Niger. Nigeria. Norway. Spain. Togo. United Kingdom (UK) - North Sea.',0.0,84.0,0.0,6.0,0);
INSERT INTO "extent" VALUES('EPSG','2061','World - S hemisphere - 0°E to 6°E - by country','Between 0°E and 6°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,0.0,6.0,0);
INSERT INTO "extent" VALUES('EPSG','2062','World - N hemisphere - 6°E to 12°E - by country','Between 6°E and 12°E, northern hemisphere between equator and 84°N, onshore and offshore. Algeria. Austria. Cameroon. Denmark. Equatorial Guinea. France. Gabon. Germany. Italy. Libya. Liechtenstein. Monaco. Netherlands. Niger. Nigeria. Norway. Sao Tome and Principe. Svalbard. Sweden. Switzerland. Tunisia. Vatican City State.',0.0,84.0,6.0,12.0,0);
INSERT INTO "extent" VALUES('EPSG','2063','World - S hemisphere - 6°E to 12°E - by country','Between 6°E and 12°E, southern hemisphere between 80°S and equator, onshore and offshore. Angola. Congo. Gabon. Namibia.',-80.0,0.0,6.0,12.0,0);
INSERT INTO "extent" VALUES('EPSG','2064','World - N hemisphere - 12°E to 18°E - by country','Between 12°E and 18°E, northern hemisphere between equator and 84°N, onshore and offshore. Austria. Bosnia and Herzegovina. Cameroon. Central African Republic. Chad. Congo. Croatia. Czechia. Democratic Republic of the Congo (Zaire). Gabon. Germany. Hungary. Italy. Libya. Malta. Niger. Nigeria. Norway. Poland. San Marino. Slovakia. Slovenia. Svalbard. Sweden. Vatican City State.',0.0,84.0,12.0,18.0,0);
INSERT INTO "extent" VALUES('EPSG','2065','World - S hemisphere - 12°E to 18°E - by country','Between 12°E and 18°E, southern hemisphere between 80°S and equator, onshore and offshore. Angola. Congo. Democratic Republic of the Congo (Zaire). Gabon. Namibia. South Africa.',-80.0,0.0,12.0,18.0,0);
INSERT INTO "extent" VALUES('EPSG','2066','World - N hemisphere - 18°E to 24°E - by country','Between 18°E and 24°E, northern hemisphere between equator and 84°N, onshore and offshore. Albania. Belarus. Bosnia and Herzegovina. Bulgaria. Central African Republic. Chad. Croatia. Democratic Republic of the Congo (Zaire). Estonia. Finland. Greece. Hungary. Italy. Kosovo. Latvia. Libya. Lithuania. Montenegro. North Macedonia. Norway, including Svalbard and Bjornoys. Poland. Romania. Russian Federation. Serbia. Slovakia. Sudan. Sweden. Ukraine.',0.0,84.0,18.0,24.0,0);
INSERT INTO "extent" VALUES('EPSG','2067','World - S hemisphere - 18°E to 24°E - by country','Between 18°E and 24°E, southern hemisphere between 80°S and equator, onshore and offshore. Angola. Botswana. Democratic Republic of the Congo (Zaire). Namibia. South Africa. Zambia.',-80.0,0.0,18.0,24.0,0);
INSERT INTO "extent" VALUES('EPSG','2068','World - N hemisphere - 24°E to 30°E - by country','Between 24°E and 30°E, northern hemisphere between equator and 84°N, onshore and offshore. Belarus. Bulgaria. Central African Republic. Democratic Republic of the Congo (Zaire). Egypt. Estonia. Finland. Greece. Latvia. Lesotho. Libya. Lithuania. Moldova. Norway. Poland. Romania. Russian Federation. Sudan. Svalbard. Turkey. Uganda. Ukraine.',0.0,84.0,24.0,30.0,0);
INSERT INTO "extent" VALUES('EPSG','2069','World - S hemisphere - 24°E to 30°E - by country','Between 24°E and 30°E, southern hemisphere between 80°S and equator, onshore and offshore. Botswana. Burundi. Democratic Republic of the Congo (Zaire). Rwanda. South Africa. Tanzania. Uganda. Zambia. Zimbabwe.',-80.0,0.0,24.0,30.0,0);
INSERT INTO "extent" VALUES('EPSG','2070','World - N hemisphere - 30°E to 36°E - by country','Between 30°E and 36°E, northern hemisphere between equator and 84°N, onshore and offshore. Belarus. Cyprus. Egypt. Ethiopia. Finland. Israel. Jordan. Kenya. Lebanon. Moldova. Norway. Russian Federation. Saudi Arabia. Sudan. Syria. Turkey. Uganda. Ukraine.',0.0,84.0,30.0,36.0,0);
INSERT INTO "extent" VALUES('EPSG','2071','World - S hemisphere - 30°E to 36°E - by country','Between 30°E and 36°E, southern hemisphere between 80°S and equator, onshore and offshore. Burundi. Eswatini (Swaziland). Kenya. Malawi. Mozambique. Rwanda. South Africa. Tanzania. Uganda. Zambia. Zimbabwe.',-80.0,0.0,30.0,36.0,0);
INSERT INTO "extent" VALUES('EPSG','2072','World - N hemisphere - 36°E to 42°E - by country','Between 36°E and 42°E, northern hemisphere between equator and 84°N, onshore and offshore. Djibouti. Egypt. Eritrea. Ethiopia. Georgia. Iraq. Jordan. Kenya. Lebanon. Russian Federation. Saudi Arabia. Somalia. Sudan. Syria. Turkey. Ukraine.',0.0,84.0,36.0,42.0,0);
INSERT INTO "extent" VALUES('EPSG','2073','World - S hemisphere - 36°E to 42°E - by country','Between 36°E and 42°E, southern hemisphere between 80°S and equator, onshore and offshore. Kenya. Mozambique. Tanzania.',-80.0,0.0,36.0,42.0,0);
INSERT INTO "extent" VALUES('EPSG','2074','World - N hemisphere - 42°E to 48°E - by country','Between 42°E and 48°E, northern hemisphere between equator and 84°N, onshore and offshore. Armenia. Azerbaijan. Djibouti. Eritrea. Ethiopia. Georgia. Islamic Republic of Iran. Iraq. kazakhstan. Kuwait. Russian Federation. Saudi Arabia. Somalia. Turkey. Yemen.',0.0,84.0,42.0,48.0,0);
INSERT INTO "extent" VALUES('EPSG','2075','World - S hemisphere - 42°E to 48°E - by country','Between 42°E and 48°E, southern hemisphere between 80°S and equator, onshore and offshore. Madagascar.',-80.0,0.0,42.0,48.0,0);
INSERT INTO "extent" VALUES('EPSG','2076','World - N hemisphere - 48°E to 54°E - by country','Between 48°E and 54°E, northern hemisphere between equator and 84°N, onshore and offshore. Azerbaijan. Bahrain. Islamic Republic of Iran. Iraq. Kazakhstan. Kuwait. Oman. Qatar. Russian Federation. Saudi Arabia. Somalia. Turkmenistan. United Arab Emirates. Yemen.',0.0,84.0,48.0,54.0,0);
INSERT INTO "extent" VALUES('EPSG','2077','World - S hemisphere - 48°E to 54°E - by country','Between 48°E and 54°E, southern hemisphere between 80°S and equator, onshore and offshore. Madagascar.',-80.0,0.0,48.0,54.0,0);
INSERT INTO "extent" VALUES('EPSG','2078','World - N hemisphere - 54°E to 60°E - by country','Between 54°E and 60°E, northern hemisphere between equator and 84°N, onshore and offshore. Islamic Republic of Iran. kazakhstan. Oman. Russian Federation. Saudi Arabia. Turkmenistan. United Arab Emirates. Uzbekistan.',0.0,84.0,54.0,60.0,0);
INSERT INTO "extent" VALUES('EPSG','2079','World - S hemisphere - 54°E to 60°E - by country','Between 54°E and 60°E, southern hemisphere between 80°S and equator, onshore and offshore. Seychelles.',-80.0,0.0,54.0,60.0,0);
INSERT INTO "extent" VALUES('EPSG','2080','World - N hemisphere - 60°E to 66°E - by country','Between 60°E and 66°E, northern hemisphere between equator and 84°N, onshore and offshore. Afghanistan. Islamic Republic of Iran. kazakhstan. Pakistan. Russian Federation. Turkmenistan. Uzbekistan.',0.0,84.0,60.0,66.0,0);
INSERT INTO "extent" VALUES('EPSG','2081','World - S hemisphere - 60°E to 66°E - by country','Between 60°E and 66°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,60.0,66.0,0);
INSERT INTO "extent" VALUES('EPSG','2082','World - N hemisphere - 66°E to 72°E - by country','Between 66°E and 72°E, northern hemisphere between equator and 84°N, onshore and offshore. Afghanistan. India. Kazakhstan. Kyrgyzstan. Pakistan. Russian Federation. Tajikistan. Uzbekistan.',0.0,84.0,66.0,72.0,0);
INSERT INTO "extent" VALUES('EPSG','2083','World - S hemisphere - 66°E to 72°E - by country','Between 66°E and 72°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,66.0,72.0,0);
INSERT INTO "extent" VALUES('EPSG','2084','World - N hemisphere - 72°E to 78°E - by country','Between 72°E and 78°E, northern hemisphere between equator and 84°N, onshore and offshore. China. India. Kazakhstan. Kyrgyzstan. Maldives. Pakistan. Russian Federation. Tajikistan.',0.0,84.0,72.0,78.0,0);
INSERT INTO "extent" VALUES('EPSG','2085','World - S hemisphere - 72°E to 78°E - by country','Between 72°E and 78°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,72.0,78.0,0);
INSERT INTO "extent" VALUES('EPSG','2086','World - N hemisphere - 78°E to 84°E - by country','Between 78°E and 84°E, northern hemisphere between equator and 84°N, onshore and offshore. China. India. Kazakhstan. Kyrgyzstan. Nepal. Russian Federation. Sri Lanka.',0.0,84.0,78.0,84.0,0);
INSERT INTO "extent" VALUES('EPSG','2087','World - S hemisphere - 78°E to 84°E - by country','Between 78°E and 84°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,78.0,84.0,0);
INSERT INTO "extent" VALUES('EPSG','2088','World - N hemisphere - 84°E to 90°E - by country','Between 84°E and 90°E, northern hemisphere between equator and 84°N, onshore and offshore. Bangladesh. Bhutan. China. India. Kazakhstan. Mongolia. Nepal. Russian Federation.',0.0,84.0,84.0,90.0,0);
INSERT INTO "extent" VALUES('EPSG','2089','World - S hemisphere - 84°E to 90°E - by country','Between 84°E and 90°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,84.0,90.0,0);
INSERT INTO "extent" VALUES('EPSG','2090','World - N hemisphere - 90°E to 96°E - by country','Between 90°E and 96°E, northern hemisphere between equator and 84°N, onshore and offshore. Bangladesh. Bhutan. China. Indonesia. Mongolia. Myanmar (Burma). Russian Federation.',0.0,84.0,90.0,96.0,0);
INSERT INTO "extent" VALUES('EPSG','2091','World - S hemisphere - 90°E to 96°E - by country','Between 90°E and 96°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,90.0,96.0,0);
INSERT INTO "extent" VALUES('EPSG','2092','World - N hemisphere - 96°E to 102°E - by country','Between 96°E and 102°E, northern hemisphere between equator and 84°N, onshore and offshore. China. Indonesia. Laos. Malaysia - West Malaysia. Mongolia. Myanmar (Burma). Russian Federation. Thailand.',0.0,84.0,96.0,102.0,0);
INSERT INTO "extent" VALUES('EPSG','2093','World - S hemisphere - 96°E to 102°E - by country','Between 96°E and 102°E, southern hemisphere between 80°S and equator, onshore and offshore. Indonesia.',-80.0,0.0,96.0,102.0,0);
INSERT INTO "extent" VALUES('EPSG','2094','World - N hemisphere - 102°E to 108°E - by country','Between 102°E and 108°E, northern hemisphere between equator and 84°N, onshore and offshore. Cambodia. China. Indonesia. Laos. Malaysia - West Malaysia. Mongolia. Russian Federation. Singapore. Thailand. Vietnam.',0.0,84.0,102.0,108.0,0);
INSERT INTO "extent" VALUES('EPSG','2095','World - S hemisphere - 102°E to 108°E - by country','Between 102°E and 108°E, southern hemisphere between 80°S and equator, onshore and offshore. Indonesia.',-80.0,0.0,102.0,108.0,0);
INSERT INTO "extent" VALUES('EPSG','2096','World - N hemisphere - 108°E to 114°E - by country','Between 108°E and 114°E, northern hemisphere between equator and 84°N, onshore and offshore. China. Hong Kong. Indonesia. Macao. Malaysia - East Malaysia - Sarawak. Mongolia. Russian Federation. Vietnam.',0.0,84.0,108.0,114.0,0);
INSERT INTO "extent" VALUES('EPSG','2097','World - S hemisphere - 108°E to 114°E - by country','Between 108°E and 114°E, southern hemisphere between 80°S and equator, onshore and offshore. Australia. Indonesia.',-80.0,0.0,108.0,114.0,0);
INSERT INTO "extent" VALUES('EPSG','2098','World - N hemisphere - 114°E to 120°E - by country','Between 114°E and 120°E, northern hemisphere between equator and 84°N, onshore and offshore. Brunei. China. Hong Kong. Indonesia. Malaysia - East Malaysia - Sarawak. Mongolia. Philippines. Russian Federation. Taiwan.',0.0,84.0,114.0,120.0,0);
INSERT INTO "extent" VALUES('EPSG','2099','World - S hemisphere - 114°E to 120°E - by country','Between 114°E and 120°E, southern hemisphere between 80°S and equator, onshore and offshore. Australia. Indonesia.',-80.0,0.0,114.0,120.0,0);
INSERT INTO "extent" VALUES('EPSG','2100','World - N hemisphere - 120°E to 126°E - by country','Between 120°E and 126°E, northern hemisphere between equator and 84°N, onshore and offshore. China. Indonesia. Japan. North Korea. Philippines. Russian Federation. South Korea. Taiwan.',0.0,84.0,120.0,126.0,0);
INSERT INTO "extent" VALUES('EPSG','2101','World - S hemisphere - 120°E to 126°E - by country','Between 120°E and 126°E, southern hemisphere between 80°S and equator, onshore and offshore. Australia. East Timor. Indonesia.',-80.0,0.0,120.0,126.0,0);
INSERT INTO "extent" VALUES('EPSG','2102','World - N hemisphere - 126°E to 132°E - by country','Between 126°E and 132°E, northern hemisphere between equator and 84°N, onshore and offshore. China. Indonesia. Japan. North Korea. Russian Federation. South Korea.',0.0,84.0,126.0,132.0,0);
INSERT INTO "extent" VALUES('EPSG','2103','World - S hemisphere - 126°E to 132°E - by country','Between 126°E and 132°E, southern hemisphere between 80°S and equator, onshore and offshore. Australia. East Timor. Indonesia.',-80.0,0.0,126.0,132.0,0);
INSERT INTO "extent" VALUES('EPSG','2104','World - N hemisphere - 132°E to 138°E - by country','Between 132°E and 138°E, northern hemisphere between equator and 84°N, onshore and offshore. China. Japan. Russian Federation.',0.0,84.0,132.0,138.0,0);
INSERT INTO "extent" VALUES('EPSG','2105','World - S hemisphere - 132°E to 138°E - by country','Between 132°E and 138°E, southern hemisphere between 80°S and equator, onshore and offshore. Australia. Indonesia.',-80.0,0.0,132.0,138.0,0);
INSERT INTO "extent" VALUES('EPSG','2106','World - N hemisphere - 138°E to 144°E - by country','Between 138°E and 144°E, northern hemisphere between equator and 84°N, onshore and offshore. Japan. Russian Federation.',0.0,84.0,138.0,144.0,0);
INSERT INTO "extent" VALUES('EPSG','2107','World - S hemisphere - 138°E to 144°E - by country','Between 138°E and 144°E, southern hemisphere between 80°S and equator, onshore and offshore. Australia. Indonesia. Papua New Guinea.',-80.0,0.0,138.0,144.0,0);
INSERT INTO "extent" VALUES('EPSG','2108','World - N hemisphere - 144°E to 150°E - by country','Between 144°E and 150°E, northern hemisphere between equator and 84°N, onshore and offshore. Japan. Russian Federation.',0.0,84.0,144.0,150.0,0);
INSERT INTO "extent" VALUES('EPSG','2109','World - S hemisphere - 144°E to 150°E - by country','Between 144°E and 150°E, southern hemisphere between 80°S and equator, onshore and offshore. Australia. Papua New Guinea.',-80.0,0.0,144.0,150.0,0);
INSERT INTO "extent" VALUES('EPSG','2110','World - N hemisphere - 150°E to 156°E - by country','Between 150°E and 156°E, northern hemisphere between equator and 84°N, onshore and offshore. Russian Federation.',0.0,84.0,150.0,156.0,0);
INSERT INTO "extent" VALUES('EPSG','2111','World - S hemisphere - 150°E to 156°E - by country','Between 150°E and 156°E, southern hemisphere between 80°S and equator, onshore and offshore. Australia. Papua New Guinea.',-80.0,0.0,150.0,156.0,0);
INSERT INTO "extent" VALUES('EPSG','2112','World - N hemisphere - 156°E to 162°E - by country','Between 156°E and 162°E, northern hemisphere between equator and 84°N, onshore and offshore. Russian Federation.',0.0,84.0,156.0,162.0,0);
INSERT INTO "extent" VALUES('EPSG','2113','World - S hemisphere - 156°E to 162°E - by country','Between 156°E and 162°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,156.0,162.0,0);
INSERT INTO "extent" VALUES('EPSG','2114','World - N hemisphere - 162°E to 168°E - by country','Between 162°E and 168°E, northern hemisphere between equator and 84°N, onshore and offshore. Russian Federation.',0.0,84.0,162.0,168.0,0);
INSERT INTO "extent" VALUES('EPSG','2115','World - S hemisphere - 162°E to 168°E - by country','Between 162°E and 168°E, southern hemisphere between 80°S and equator, onshore and offshore.',-80.0,0.0,162.0,168.0,0);
INSERT INTO "extent" VALUES('EPSG','2116','World - N hemisphere - 168°E to 174°E - by country','Between 168°E and 174°E, northern hemisphere between equator and 84°N, onshore and offshore. Russian Federation; United States (USA) - Alaska.',0.0,84.0,168.0,174.0,0);
INSERT INTO "extent" VALUES('EPSG','2117','World - S hemisphere - 168°E to 174°E - by country','Between 168°E and 174°E, southern hemisphere between 80°S and equator, onshore and offshore. New Zealand.',-80.0,0.0,168.0,174.0,0);
INSERT INTO "extent" VALUES('EPSG','2118','World - N hemisphere - 174°E to 180°E - by country','Between 174°E and 180°E, northern hemisphere between equator and 84°N, onshore and offshore. Russian Federation; United States (USA) - Alaska (AK).',0.0,84.0,174.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','2119','World - S hemisphere - 174°E to 180°E - by country','Between 174°E and 180°E, southern hemisphere between 80°S and equator, onshore and offshore. New Zealand.',-80.0,0.0,174.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','2120','Guatemala - north of 15°51''30"N','Guatemala - north of 15°51''30"N.',15.85,17.83,-91.86,-88.34,0);
INSERT INTO "extent" VALUES('EPSG','2121','Guatemala - south of 15°51''30"N','Guatemala - south of 15°51''30"N.',13.69,15.86,-92.29,-88.19,0);
INSERT INTO "extent" VALUES('EPSG','2122','Europe - 18°W to 12°W and ETRS89 by country','Europe between 18°W and 12°W: Faroe Islands - offshore; Ireland - offshore; <NAME> - offshore; Portugal - offshore mainland; Spain - offshore mainland; United Kingdom (UKCS) - offshore.',34.93,72.44,-16.1,-11.99,0);
INSERT INTO "extent" VALUES('EPSG','2123','Europe - 12°W to 6°W and ETRS89 by country','Europe between 12°W and 6°W: Faroe Islands - onshore and offshore; Ireland - offshore; <NAME> - onshore and offshore; Portugal - onshore and offshore; Spain - onshore and offshore; United Kingdom - UKCS offshore.',34.91,74.13,-12.0,-6.0,0);
INSERT INTO "extent" VALUES('EPSG','2124','Europe - 6°W to 0°W and ETRS89 by country','Europe between 6°W and 0°W: Faroe Islands offshore; Ireland - offshore; <NAME> - offshore; Norway including Svalbard - offshore; Spain - onshore and offshore.',35.26,80.49,-6.0,0.01,0);
INSERT INTO "extent" VALUES('EPSG','2125','Europe - 0°E to 6°E and ETRS89 by country','Europe between 0°E and 6°E: Andorra; Belgium - onshore and offshore; Denmark - offshore; Germany - offshore; <NAME> - offshore; Norway including Svalbard - onshore and offshore; Spain - onshore and offshore.',37.0,82.45,0.0,6.01,0);
INSERT INTO "extent" VALUES('EPSG','2126','Europe - 6°E to 12°E and ETRS89 by country','Europe between 6°E and 12°E: Austria; Belgium; Denmark - onshore and offshore; Germany - onshore and offshore; Norway including - onshore and offshore; Spain - offshore.',38.76,84.33,6.0,12.0,0);
INSERT INTO "extent" VALUES('EPSG','2127','Europe - 12°E to 18°E and ETRS89 by country','Europe between 12°E and 18°E: Austria; Denmark - offshore and offshore; Germany - onshore and offshore; Norway including Svalbard - onshore and offshore.',46.4,84.42,12.0,18.0,0);
INSERT INTO "extent" VALUES('EPSG','2128','Europe - 18°E to 24°E and ETRS89 by country','Europe between 18°E and 24°E: Finland - onshore and offshore; Norway including Svalbard - onshore and offshore.',58.84,84.54,18.0,24.01,0);
INSERT INTO "extent" VALUES('EPSG','2129','Europe - 24°E to 30°E and ETRS89 by country','Europe between 24°E and 30°E: Finland - onshore and offshore; Norway including Svalbard - onshore and offshore.',59.64,84.73,24.0,30.01,0);
INSERT INTO "extent" VALUES('EPSG','2130','Europe - 30°E to 36°E and ETRS89 by country','Europe between 30°E and 36°E: Finland - onshore and offshore; Norway including Svalbard - onshore and offshore.',61.73,84.7,30.0,36.0,0);
INSERT INTO "extent" VALUES('EPSG','2131','Europe - 36°E to 42°E and ETRS89 by country','Europe between 36°E and 42°E: Norway including Svalbard - offshore.',72.99,79.07,36.0,38.0,0);
INSERT INTO "extent" VALUES('EPSG','2132','Europe - 42°E to 48°E and ETRS89 by country','Europe - between 42°E and 48°E.',37.0,41.65,42.0,48.0,1);
INSERT INTO "extent" VALUES('EPSG','2133','USA - 168°W to 162°W - AK, OCS','United States (USA) - between 168°W and 162°W - Alaska and offshore continental shelf (OCS).',49.52,74.29,-168.0,-161.99,0);
INSERT INTO "extent" VALUES('EPSG','2134','USA - 162°W to 156°W - AK, OCS','United States (USA) - between 162°W and 156°W - Alaska and offshore continental shelf (OCS).',50.98,74.71,-162.0,-155.99,0);
INSERT INTO "extent" VALUES('EPSG','2135','USA - 156°W to 150°W - AK, OCS','United States (USA) - between 156°W and 150°W - Alaska and offshore continental shelf (OCS).',52.15,74.71,-156.0,-149.99,0);
INSERT INTO "extent" VALUES('EPSG','2136','USA - 150°W to 144°W - AK, OCS','United States (USA) - between 150°W and 144°W - Alaska and offshore continental shelf (OCS).',54.05,74.13,-150.0,-143.99,0);
INSERT INTO "extent" VALUES('EPSG','2137','North America - 144°W to 138°W and NAD27 by country','North America - between 144°W and 138°W. Canada - British Columbia; Yukon. United States (USA) - Alaska. Onshore for western Canada & but onshore and offshore for Alaska.',53.47,73.59,-144.0,-138.0,0);
INSERT INTO "extent" VALUES('EPSG','2138','North America - 138°W to 132°W and NAD27 by country - onshore','North America - between 138°W and 132°W - onshore. Canada - British Columbia; Northwest Territiories; Yukon. United States (USA) - Alaska. Onshore for Canadian British Columbia & Arctic and for US Pacific coast including Alaska panhandle.',52.58,73.04,-138.0,-132.0,0);
INSERT INTO "extent" VALUES('EPSG','2139','North America - 132°W to 126°W and NAD27 by country - onshore','North America - between 132°W and 126°W - onshore. Canada - British Columbia; Northwest Territories; Yukon. United States (USA) - Alaska. Onshore for Canadian British Colombia & Arctic coasts and for the US Pacific coast including Alaska panhandle.',49.18,72.03,-132.0,-126.0,0);
INSERT INTO "extent" VALUES('EPSG','2140','North America - 126°W to 120°W and NAD27 by country - onshore','North America - between 126°W and 120°W - onshore. Canada - British Columbia; Northwest Territories; Nunavut; Yukon. United States (USA) - California; Oregon; Washington.',34.4,77.13,-126.0,-120.0,0);
INSERT INTO "extent" VALUES('EPSG','2141','North America - 120°W to 114°W and NAD27 by country - onshore','North America - between 120°W and 114°W - onshore. Canada - Alberta; British Columbia; Northwest Territories; Nunavut. Mexico. United States (USA) - California; Idaho; Nevada; Oregon; Washington.',26.93,78.13,-120.0,-114.0,0);
INSERT INTO "extent" VALUES('EPSG','2142','North America - 114°W to 108°W and NAD27 by country','North America - between 114°W and 108°W. Canada - Alberta; Northwest Territories; Nunavut; Saskatchewan. Mexico. United States (USA) - Arizona; Colorado; Idaho; Montana; New Mexico; Utah; Wyoming. Onshore for Mexican Pacific and Canadian Arctic coasts.',18.66,78.81,-114.0,-108.0,0);
INSERT INTO "extent" VALUES('EPSG','2143','North America - 108°W to 102°W and NAD27 by country','North America - between 108°W and 102°W. Canada - Northwest Territories; Nunavut; Saskatchewan. Mexico. United States (USA) - Colorado; Montana; Nebraska; New Mexico; North Dakota; Oklahoma; South Dakota; Texas; Wyoming. Onshore for Mexican Pacific and Canadian Arctic coasts.',17.86,79.42,-108.0,-102.0,0);
INSERT INTO "extent" VALUES('EPSG','2144','North America - 102°W to 96°W and NAD27 by country','North America - between 102°W and 96°W. Canada - Manitoba; Nunavut; Saskatchewan. Mexico. United States (USA) - Iowa; Kansas; Minnesota; Nebraska; North Dakota; Oklahoma; South Dakota; Texas. Onshore for Mexican Pacific coast and Canadian Arctic but onshore and offshore for US & Mexico Gulf of Mexico and Caribbean coasts.',15.59,80.74,-102.0,-96.0,0);
INSERT INTO "extent" VALUES('EPSG','2145','North America - 96°W to 90°W and NAD27 by country','North America - between 96°W and 90°W. Canada - Manitoba; Nunavut; Ontario. Guatemala. Mexico. United States (USA) - Arkansas; Illinois; Iowa; Kansas; Louisiana; Michigan; Minnesota; Mississippi; Missouri; Nebraska; Oklahoma; Tennessee; Texas; Wisconsin. Onshore for Canadian Arctic and Central America, onshore and offshore for Gulf of Mexico (both US and Mexican sectors).',13.63,81.96,-96.0,-90.0,0);
INSERT INTO "extent" VALUES('EPSG','2146','North America - 90°W to 84°W and NAD27 by country','North America - between 90°W and 84°W. Belize. Canada - Manitoba; Nunavut; Ontario. Costa Rica. Cuba. El Salvador. Guatemala. Honduras. Mexico. Nicaragua. United States (USA) - Alabama; Arkansas; Florida; Georgia; Indiana; Illinois; Kentucky; Louisiana; Michigan; Minnesota; Mississippi; Missouri; North Carolina; Ohio; Tennessee; Wisconsin. Onshore for Canadian Arctic and Central America, onshore and offshore for Cuba and Gulf of Mexico (both US and Mexican sectors).',9.27,82.54,-90.01,-84.0,0);
INSERT INTO "extent" VALUES('EPSG','2147','North America - 84°W to 78°W and NAD27 by country','North America - between 84°W and 78°W. Bahamas. Canada - Nunavut; Ontario; Quebec. Costa Rica. Cuba. Honduras. Nicaragua. United States (USA) - Florida; Georgia; Kentucky; Maryland; Michigan; New York; North Carolina; Ohio; Pennsylvania; South Carolina; Tennessee; Virginia; West Virginia. Onshore for Canadian Arctic. onshore and offshore for US east coast and Cuba, with usage in Bahamas onshore plus offshore over internal continental shelf only.',7.98,83.03,-84.0,-78.0,0);
INSERT INTO "extent" VALUES('EPSG','2148','North America - 78°W to 72°W and NAD27 by country','North America - between 78°W and 72°W. Bahamas. Canada - Nunavut; Ontario; Quebec. Cuba. United States (USA) - Connecticut; Delaware; Maryland; Massachusetts; New Hampshire; New Jersey; New York; North Carolina; Pennsylvania; Virginia; Vermont. Onshore for Canadian arctic. onshore and offshore for US east coast and Cuba, with usage in Bahamas onshore plus offshore over internal continental shelf only.',18.83,83.16,-78.0,-72.0,0);
INSERT INTO "extent" VALUES('EPSG','2149','North America - 72°W to 66°W and NAD27 by country','North America - between 72°W and 66°W. Canada - New Brunswick; Labrador; Nunavut; Nova Scotia; Quebec. United States (USA) - Connecticut; Maine; Massachusetts; New Hampshire; New York (Long Island); Rhode Island; Vermont. Onshore and offshore for US and Canadian east coasts.',33.61,83.17,-72.0,-66.0,0);
INSERT INTO "extent" VALUES('EPSG','2150','North America - 66°W to 60°W and NAD27 by country','North America - between 66°W and 60°W - onshore and offshore. Canada - New Brunswick; Labrador; Nova Scotia; Nunavut; Prince Edward Island; Quebec. United States (USA) offshore Atlantic.',38.21,82.97,-66.0,-60.0,0);
INSERT INTO "extent" VALUES('EPSG','2151','Canada - 60°W to 54°W','Canada between 60°W and 54°W - Newfoundland and Labrador; Nunavut; Quebec.',38.56,84.0,-60.0,-54.0,0);
INSERT INTO "extent" VALUES('EPSG','2152','Canada - 54°W to 48°W','Canada between 54°W and 48°W onshore and offshore - Newfoundland and Labrador.',39.5,57.65,-54.0,-48.0,0);
INSERT INTO "extent" VALUES('EPSG','2153','Canada - 48°W to 42°W','Canada offshore Atlantic - 48°W to 42°W.',39.85,54.47,-48.0,-42.0,0);
INSERT INTO "extent" VALUES('EPSG','2154','USA - Alabama - SPCS - E','United States (USA) - Alabama east of approximately 86°37''W - counties Barbour; Bullock; Calhoun; Chambers; Cherokee; Clay; Cleburne; Coffee; Coosa; Covington; Crenshaw; Dale; De Kalb; Elmore; Etowah; Geneva; Henry; Houston; Jackson; Lee; Macon; Madison; Marshall; Montgomery; Pike; Randolph; Russell; StClair; Talladega; Tallapoosa.',30.99,35.0,-86.79,-84.89,0);
INSERT INTO "extent" VALUES('EPSG','2155','USA - Alabama - SPCS - W','United States (USA) - Alabama west of approximately 86°37''W - counties Autauga; Baldwin; Bibb; Blount; Butler; Chilton; Choctaw; Clarke; Colbert; Conecuh; Cullman; Dallas; Escambia; Fayette; Franklin; Greene; Hale; Jefferson; Lamar; Lauderdale; Lawrence; Limestone; Lowndes; Marengo; Marion; Mobile; Monroe; Morgan; Perry; Pickens; Shelby; Sumter; Tuscaloosa; Walker; Washington; Wilcox; Winston.',30.14,35.02,-88.48,-86.3,0);
INSERT INTO "extent" VALUES('EPSG','2156','USA - Alaska - Panhandle','United States (USA) - Alaska - east of 141°W; i.e. Panhandle.',54.61,60.35,-141.0,-129.99,0);
INSERT INTO "extent" VALUES('EPSG','2157','USA - Alaska - Aleutian Islands','United States (USA) - Alaska - Aleutian Islands onshore.',51.3,54.34,172.42,-164.84,0);
INSERT INTO "extent" VALUES('EPSG','2158','USA - Alaska - 144°W to 141°W','United States (USA) - Alaska - between 144°W and 141°W, onshore.',59.72,70.16,-144.01,-140.98,0);
INSERT INTO "extent" VALUES('EPSG','2159','USA - Alaska - 148°W to 144°W','United States (USA) - Alaska - between 148°W and 144°W.',59.72,70.38,-148.0,-144.0,0);
INSERT INTO "extent" VALUES('EPSG','2160','USA - Alaska - 152°W to 148°W','United States (USA) - Alaska - between 152°W and 148°W, onshore.',59.11,70.63,-152.01,-147.99,0);
INSERT INTO "extent" VALUES('EPSG','2161','USA - Alaska - 156°W to 152°W','United States (USA) - Alaska - between 156°W and 152°W.',55.72,71.28,-156.0,-151.86,0);
INSERT INTO "extent" VALUES('EPSG','2162','USA - Alaska - 160°W to 156°W','United States (USA) - Alaska - between 160°W and 156°W, onshore.',54.89,71.4,-160.0,-155.99,0);
INSERT INTO "extent" VALUES('EPSG','2163','USA - Alaska - 164°W to 160°W','United States (USA) - Alaska - between 164°W and 160°W, onshore.',54.32,70.74,-164.01,-160.0,0);
INSERT INTO "extent" VALUES('EPSG','2164','USA - Alaska - north of 54.5°N; 168°W to 164°W','United States (USA) - Alaska onshore north of 54°30''N and between 168°W and 164°W.',54.34,69.05,-168.26,-164.0,0);
INSERT INTO "extent" VALUES('EPSG','2165','USA - Alaska - north of 54.5°N; west of 168°W','United States (USA) - Alaska onshore north of 54°30''N and west of 168°W.',56.49,65.82,-173.16,-168.0,0);
INSERT INTO "extent" VALUES('EPSG','2166','USA - Arizona - SPCS - C','United States (USA) - Arizona - counties Coconino; Maricopa; Pima; Pinal; Santa Cruz; Yavapai.',31.33,37.01,-113.35,-110.44,0);
INSERT INTO "extent" VALUES('EPSG','2167','USA - Arizona - SPCS - E','United States (USA) - Arizona - counties Apache; Cochise; Gila; Graham; Greenlee; Navajo.',31.33,37.01,-111.71,-109.04,0);
INSERT INTO "extent" VALUES('EPSG','2168','USA - Arizona - SPCS - W','United States (USA) - Arizona - counties of La Paz; Mohave; Yuma.',32.05,37.0,-114.81,-112.52,0);
INSERT INTO "extent" VALUES('EPSG','2169','USA - Arkansas - SPCS - N','United States (USA) - Arkansas - counties of Baxter; Benton; Boone; Carroll; Clay; Cleburne; Conway; Craighead; Crawford; Crittenden; Cross; Faulkner; Franklin; Fulton; Greene; Independence; Izard; Jackson; Johnson; Lawrence; Logan; Madison; Marion; Mississippi; Newton; Perry; Poinsett; Pope; Randolph; Scott; Searcy; Sebastian; Sharp; St Francis; Stone; Van Buren; Washington; White; Woodruff; Yell.',34.67,36.5,-94.62,-89.64,0);
INSERT INTO "extent" VALUES('EPSG','2170','USA - Arkansas - SPCS - S','United States (USA) - Arkansas - counties Arkansas; Ashley; Bradley; Calhoun; Chicot; Clark; Cleveland; Columbia; Dallas; Desha; Drew; Garland; Grant; Hempstead; Hot Spring; Howard; Jefferson; Lafayette; Lee; Lincoln; Little River; Lonoke; Miller; Monroe; Montgomery; Nevada; Ouachita; Phillips; Pike; Polk; Prairie; Pulaski; Saline; Sevier; Union.',33.01,35.1,-94.48,-90.4,0);
INSERT INTO "extent" VALUES('EPSG','2171','USA - GoM OCS - west of 96°W','United States (USA) - Gulf of Mexico outer continental shelf (GoM OCS) west of approximately 96°W - protraction areas Corpus Christi; Port Isabel.',25.97,28.43,-97.22,-95.87,0);
INSERT INTO "extent" VALUES('EPSG','2172','USA - GoM OCS - 96°W to 90°W','United States (USA) - Gulf of Mexico outer continental shelf (GoM OCS) between approximately 96°W and 90°W - protraction areas East Breaks; Alaminos Canyon; Garden Banks; Keathley Canyon; Sigsbee Escarpment; Ewing Bank; Green Canyon; Walker Ridge; Amery Terrace.',25.61,29.73,-96.0,-89.86,0);
INSERT INTO "extent" VALUES('EPSG','2173','USA - GoM OCS - 90°W to 84°W','United States (USA) - Gulf of Mexico outer continental shelf (GoM OCS) between approximately 90°W and 84°W - protraction areas Mobile; Viosca Knoll; Mississippi Canyon; Atwater Valley; Lund; Lund South; Pensacola; Destin Dome; De Soto Canyon; Lloyd Ridge; Henderson; Florida Plain; Campeche Escarpment; Apalachicola; Florida Middle Ground; The Elbow; Vernon Basin; Howell Hook; Rankin.',23.95,30.25,-90.01,-83.91,0);
INSERT INTO "extent" VALUES('EPSG','2174','USA - GoM OCS - east of 84°W','United States (USA) - Gulf of Mexico outer continental shelf (GoM OCS) east of approximately 84°W - protraction areas Gainesville; Tarpon Springs; St Petersburg; Charlotte Harbor; Pulley Ridge; Dry Tortugas; Tortugas Valley; Miami; Key West.',23.82,29.94,-84.09,-81.17,0);
INSERT INTO "extent" VALUES('EPSG','2175','USA - California - SPCS - 1','United States (USA) - California - counties Del Norte; Humboldt; Lassen; Modoc; Plumas; Shasta; Siskiyou; Tehama; Trinity.',39.59,42.01,-124.45,-119.99,0);
INSERT INTO "extent" VALUES('EPSG','2176','USA - California - SPCS - 2','United States (USA) - California - counties of Alpine; Amador; Butte; Colusa; El Dorado; Glenn; Lake; Mendocino; Napa; Nevada; Placer; Sacramento; Sierra; Solano; Sonoma; Sutter; Yolo; Yuba.',38.02,40.16,-124.06,-119.54,0);
INSERT INTO "extent" VALUES('EPSG','2177','USA - California - SPCS - 3','United States (USA) - California - counties Alameda; Calaveras; Contra Costa; Madera; Marin; Mariposa; Merced; Mono; San Francisco; San Joaquin; San Mateo; Santa Clara; Santa Cruz; Stanislaus; Tuolumne.',36.73,38.71,-123.02,-117.83,0);
INSERT INTO "extent" VALUES('EPSG','2178','USA - California - SPCS - 4','United States (USA) - California - counties Fresno; Inyo; Kings; Monterey; San Benito; Tulare.',35.78,37.58,-122.01,-115.62,0);
INSERT INTO "extent" VALUES('EPSG','2179','USA - California - SPCS27 - 5','United States (USA) - California - counties of Kern; San Bernardino; San Luis Obispo; Santa Barbara; Ventura.',32.76,35.81,-121.43,-114.12,0);
INSERT INTO "extent" VALUES('EPSG','2180','USA - California - SPCS - 6','United States (USA) - California - counties Imperial; Orange; Riverside; San Diego.',32.53,34.08,-118.15,-114.42,0);
INSERT INTO "extent" VALUES('EPSG','2181','USA - California - SPCS27 - 7','United States (USA) - California - Los Angeles county.',33.66,34.83,-118.96,-117.63,0);
INSERT INTO "extent" VALUES('EPSG','2182','USA - California - SPCS83 - 5','United States (USA) - California - counties Kern; Los Angeles; San Bernardino; San Luis Obispo; Santa Barbara; Ventura.',32.76,35.81,-121.42,-114.12,0);
INSERT INTO "extent" VALUES('EPSG','2183','USA - Colorado - SPCS - C','United States (USA) - Colorado - counties Arapahoe; Chaffee; Cheyenne; Clear Creek; Delta; Denver; Douglas; Eagle; El Paso; Elbert; Fremont; Garfield; Gunnison; Jefferson; Kit Carson; Lake; Lincoln; Mesa; Park; Pitkin; Summit; Teller.',38.14,40.09,-109.06,-102.04,0);
INSERT INTO "extent" VALUES('EPSG','2184','USA - Colorado - SPCS - N','United States (USA) - Colorado - counties Adams; Boulder; Gilpin; Grand; Jackson; Larimer; Logan; Moffat; Morgan; Phillips; Rio Blanco; Routt; Sedgwick; Washington; Weld; Yuma.',39.56,41.01,-109.06,-102.04,0);
INSERT INTO "extent" VALUES('EPSG','2185','USA - Colorado - SPCS - S','United States (USA) - Colorado - counties Alamosa; Archuleta; Baca; Bent; Conejos; Costilla; Crowley; Custer; Dolores; Hinsdale; Huerfano; Kiowa; La Plata; Las Animas; Mineral; Montezuma; Montrose; Otero; Ouray; Prowers; Pueblo; Rio Grande; Saguache; San Juan; San Miguel.',36.98,38.68,-109.06,-102.04,0);
INSERT INTO "extent" VALUES('EPSG','2186','USA - Florida - SPCS - E','United States (USA) - Florida - counties of Brevard; Broward; Clay; Collier; Dade; Duval; Flagler; Glades; Hendry; Highlands; Indian River; Lake; Martin; Monroe; Nassau; Okeechobee; Orange; Osceola; Palm Beach; Putnam; Seminole; St Johns; St Lucie; Volusia.',24.41,30.83,-82.33,-79.97,0);
INSERT INTO "extent" VALUES('EPSG','2187','USA - Florida - SPCS - N','United States (USA) - Florida - counties of Alachua; Baker; Bay; Bradford; Calhoun; Columbia; Dixie; Escambia; Franklin; Gadsden; Gilchrist; Gulf; Hamilton; Holmes; Jackson; Jefferson; Lafayette; Leon; Liberty; Madison; Okaloosa; Santa Rosa; Suwannee; Taylor; Union; Wakulla; Walton; Washington.',29.21,31.01,-87.63,-82.04,0);
INSERT INTO "extent" VALUES('EPSG','2188','USA - Florida - SPCS - W','United States (USA) - Florida - counties of Charlotte; Citrus; De Soto; Hardee; Hernando; Hillsborough; Lee; Levy; Manatee; Marion; Pasco; Pinellas; Polk; Sarasota; Sumter.',26.27,29.6,-83.34,-81.13,0);
INSERT INTO "extent" VALUES('EPSG','2189','USA - Georgia - SPCS - E','United States (USA) - Georgia - counties of Appling; Atkinson; Bacon; Baldwin; Brantley; Bryan; Bulloch; Burke; Camden; Candler; Charlton; Chatham; Clinch; Coffee; Columbia; Dodge; Echols; Effingham; Elbert; Emanuel; Evans; Franklin; Glascock; Glynn; Greene; Hancock; Hart; Jeff Davis; Jefferson; Jenkins; Johnson; Lanier; Laurens; Liberty; Lincoln; Long; Madison; McDuffie; McIntosh; Montgomery; Oglethorpe; Pierce; Richmond; Screven; Stephens; Taliaferro; Tattnall; Telfair; Toombs; Treutlen; Ware; Warren; Washington; Wayne; Wheeler; Wilkes; Wilkinson.',30.36,34.68,-83.47,-80.77,0);
INSERT INTO "extent" VALUES('EPSG','2190','USA - Georgia - SPCS - W','United States (USA) - Georgia - counties of Baker; Banks; Barrow; Bartow; <NAME>; Berrien; Bibb; Bleckley; Brooks; Butts; Calhoun; Carroll; Catoosa; Chattahoochee; Chattooga; Cherokee; Clarke; Clay; Clayton; Cobb; Colquitt; Cook; Coweta; Crawford; Crisp; Dade; Dawson; De Kalb; Decatur; Dooly; Dougherty; Douglas; Early; Fannin; Fayette; Floyd; Forsyth; Fulton; Gilmer; Gordon; Grady; Gwinnett; Habersham; Hall; Haralson; Harris; Heard; Henry; Houston; Irwin; Jackson; Jasper; Jones; Lamar; Lee; Lowndes; Lumpkin; Macon; Marion; Meriwether; Miller; Mitchell; Monroe; Morgan; Murray; Muscogee; Newton; Oconee; Paulding; Peach; Pickens; Pike; Polk; Pulaski; Putnam; Quitman; Rabun; Randolph; Rockdale; Schley; Seminole; Spalding; Stewart; Sumter; Talbot; Taylor; Terrell; Thomas; Tift; Towns; Troup; Turner; Twiggs; Union; Upson; Walker; Walton; Webster; White; Whitfield; Wilcox; Worth.',30.62,35.01,-85.61,-82.99,0);
INSERT INTO "extent" VALUES('EPSG','2191','USA - Idaho - SPCS - C','United States (USA) - Idaho - counties of Blaine; Butte; Camas; Cassia; Custer; Gooding; Jerome; Lemhi; Lincoln; Minidoka; Twin Falls.',41.99,45.7,-115.3,-112.68,0);
INSERT INTO "extent" VALUES('EPSG','2192','USA - Idaho - SPCS - E','United States (USA) - Idaho - counties of Bannock; Bear Lake; Bingham; Bonneville; Caribou; Clark; Franklin; Fremont; Jefferson; Madison; Oneida; Power; Teton.',41.99,44.75,-113.24,-111.04,0);
INSERT INTO "extent" VALUES('EPSG','2193','USA - Idaho - SPCS - W','United States (USA) - Idaho - counties of Ada; Adams; Benewah; Boise; Bonner; Boundary; Canyon; Clearwater; Elmore; Gem; Idaho; Kootenai; Latah; Lewis; Nez Perce; Owyhee; Payette; Shoshone; Valley; Washington.',41.99,49.01,-117.24,-114.32,0);
INSERT INTO "extent" VALUES('EPSG','2194','USA - Illinois - SPCS - E','United States (USA) - Illinois - counties of Boone; Champaign; Clark; Clay; Coles; Cook; Crawford; Cumberland; De Kalb; De Witt; Douglas; Du Page; Edgar; Edwards; Effingham; Fayette; Ford; Franklin; Gallatin; Grundy; Hamilton; Hardin; Iroquois; Jasper; Jefferson; Johnson; Kane; Kankakee; Kendall; La Salle; Lake; Lawrence; Livingston; Macon; Marion; Massac; McHenry; McLean; Moultrie; Piatt; Pope; Richland; Saline; Shelby; Vermilion; Wabash; Wayne; White; Will; Williamson.',37.06,42.5,-89.28,-87.02,0);
INSERT INTO "extent" VALUES('EPSG','2195','USA - Illinois - SPCS - W','United States (USA) - Illinois - counties of Adams; Alexander; Bond; Brown; Bureau; Calhoun; Carroll; Cass; Christian; Clinton; Fulton; Greene; Hancock; Henderson; Henry; Jackson; Jersey; Jo Daviess; Knox; Lee; Logan; Macoupin; Madison; Marshall; Mason; McDonough; Menard; Mercer; Monroe; Montgomery; Morgan; Ogle; Peoria; Perry; Pike; Pulaski; Putnam; Randolph; Rock Island; Sangamon; Schuyler; Scott; St Clair; Stark; Stephenson; Tazewell; Union; Warren; Washington; Whiteside; Winnebago; Woodford.',36.98,42.51,-91.52,-88.93,0);
INSERT INTO "extent" VALUES('EPSG','2196','USA - Indiana - SPCS - E','United States (USA) - Indiana - counties of Adams; Allen; Bartholomew; Blackford; Brown; Cass; Clark; De Kalb; Dearborn; Decatur; Delaware; Elkhart; Fayette; Floyd; Franklin; Fulton; Grant; Hamilton; Hancock; Harrison; Henry; Howard; Huntington; Jackson; Jay; Jefferson; Jennings; Johnson; Kosciusko; Lagrange; Madison; Marion; Marshall; Miami; Noble; Ohio; Randolph; Ripley; Rush; Scott; Shelby; St Joseph; Steuben; Switzerland; Tipton; Union; Wabash; Washington; Wayne; Wells; Whitley.',37.95,41.77,-86.59,-84.78,0);
INSERT INTO "extent" VALUES('EPSG','2197','USA - Indiana - SPCS - W','United States (USA) - Indiana - counties of Benton; Boone; Carroll; Clay; Clinton; Crawford; Daviess; Dubois; Fountain; Gibson; Greene; Hendricks; Jasper; Knox; La Porte; Lake; Lawrence; Martin; Monroe; Montgomery; Morgan; Newton; Orange; Owen; Parke; Perry; Pike; Porter; Posey; Pulaski; Putnam; Spencer; Starke; Sullivan; Tippecanoe; Vanderburgh; Vermillion; Vigo; Warren; Warrick; White.',37.77,41.77,-88.06,-86.24,0);
INSERT INTO "extent" VALUES('EPSG','2198','USA - Iowa - SPCS - N','United States (USA) - Iowa - counties of Allamakee; Benton; Black Hawk; Boone; Bremer; Buchanan; Buena Vista; Butler; Calhoun; Carroll; Cerro Gordo; Cherokee; Chickasaw; Clay; Clayton; Crawford; Delaware; Dickinson; Dubuque; Emmet; Fayette; Floyd; Franklin; Greene; Grundy; Hamilton; Hancock; Hardin; Howard; Humboldt; Ida; Jackson; Jones; Kossuth; Linn; Lyon; Marshall; Mitchell; Monona; O''Brien; Osceola; Palo Alto; Plymouth; Pocahontas; Sac; Sioux; Story; Tama; Webster; Winnebago; Winneshiek; Woodbury; Worth; Wright.',41.85,43.51,-96.65,-90.15,0);
INSERT INTO "extent" VALUES('EPSG','2199','USA - Iowa - SPCS - S','United States (USA) - Iowa - counties of Adair; Adams; Appanoose; Audubon; Cass; Cedar; Clarke; Clinton; Dallas; Davis; Decatur; Des Moines; Fremont; Guthrie; Harrison; Henry; Iowa; Jasper; Jefferson; Johnson; Keokuk; Lee; Louisa; Lucas; Madison; Mahaska; Marion; Mills; Monroe; Montgomery; Muscatine; Page; Polk; Pottawattamie; Poweshiek; Ringgold; Scott; Shelby; Taylor; Union; Van Buren; Wapello; Warren; Washington; Wayne.',40.37,42.04,-96.14,-90.14,0);
INSERT INTO "extent" VALUES('EPSG','2200','USA - Kansas - SPCS - N','United States (USA) - Kansas - counties of Atchison; Brown; Cheyenne; Clay; Cloud; Decatur; Dickinson; Doniphan; Douglas; Ellis; Ellsworth; Geary; Gove; Graham; Jackson; Jefferson; Jewell; Johnson; Leavenworth; Lincoln; Logan; Marshall; Mitchell; Morris; Nemaha; Norton; Osborne; Ottawa; Phillips; Pottawatomie; Rawlins; Republic; Riley; Rooks; Russell; Saline; Shawnee; Sheridan; Sherman; Smith; Thomas; Trego; Wabaunsee; Wallace; Washington; Wyandotte.',38.52,40.01,-102.06,-94.58,0);
INSERT INTO "extent" VALUES('EPSG','2201','USA - Kansas - SPCS - S','United States (USA) - Kansas - counties of Allen; Anderson; Barber; Barton; Bourbon; Butler; Chase; Chautauqua; Cherokee; Clark; Coffey; Comanche; Cowley; Crawford; Edwards; Elk; Finney; Ford; Franklin; Grant; Gray; Greeley; Greenwood; Hamilton; Harper; Harvey; Haskell; Hodgeman; Kearny; Kingman; Kiowa; Labette; Lane; Linn; Lyon; Marion; McPherson; Meade; Miami; Montgomery; Morton; Neosho; Ness; Osage; Pawnee; Pratt; Reno; Rice; Rush; Scott; Sedgwick; Seward; Stafford; Stanton; Stevens; Sumner; Wichita; Wilson; Woodson.',36.99,38.88,-102.05,-94.6,0);
INSERT INTO "extent" VALUES('EPSG','2202','USA - Kentucky - SPCS - N','United States (USA) - Kentucky - counties of Anderson; Bath; Boone; Bourbon; Boyd; Bracken; Bullitt; Campbell; Carroll; Carter; Clark; Elliott; Fayette; Fleming; Franklin; Gallatin; Grant; Greenup; Harrison; Henry; Jefferson; Jessamine; Kenton; Lawrence; Lewis; Mason; Menifee; Montgomery; Morgan; Nicholas; Oldham; Owen; Pendleton; Robertson; Rowan; Scott; Shelby; Spencer; Trimble; Woodford.',37.71,39.15,-85.96,-82.47,0);
INSERT INTO "extent" VALUES('EPSG','2203','USA - Kentucky - SPCS - S','United States (USA) - Kentucky - counties of Adair; Allen; Ballard; Barren; Bell; Boyle; Breathitt; Breckinridge; Butler; Caldwell; Calloway; Carlisle; Casey; Christian; Clay; Clinton; Crittenden; Cumberland; Daviess; Edmonson; Estill; Floyd; Fulton; Garrard; Graves; Grayson; Green; Hancock; Hardin; Harlan; Hart; Henderson; Hickman; Hopkins; Jackson; Johnson; Knott; Knox; Larue; Laurel; Lee; Leslie; Letcher; Lincoln; Livingston; Logan; Lyon; Madison; Magoffin; Marion; Marshall; Martin; McCracken; McCreary; McLean; Meade; Mercer; Metcalfe; Monroe; Muhlenberg; Nelson; Ohio; Owsley; Perry; Pike; Powell; Pulaski; Rockcastle; Russell; Simpson; Taylor; Todd; Trigg; Union; Warren; Washington; Wayne; Webster; Whitley; Wolfe.',36.49,38.17,-89.57,-81.95,0);
INSERT INTO "extent" VALUES('EPSG','2204','USA - Louisiana - SPCS - N','United States (USA) - Louisiana - counties of Avoyelles; Bienville; Bossier; Caddo; Caldwell; Catahoula; Claiborne; Concordia; De Soto; East Carroll; Franklin; Grant; Jackson; La Salle; Lincoln; Madison; Morehouse; Natchitoches; Ouachita; Rapides; Red River; Richland; Sabine; Tensas; Union; Vernon; Webster; West Carroll; Winn.',30.85,33.03,-94.05,-90.86,0);
INSERT INTO "extent" VALUES('EPSG','2205','USA - Louisiana - SPCS27 - S','United States (USA) - Louisiana - counties of Acadia; Allen; Ascension; Assumption; Beauregard; Calcasieu; Cameron; East Baton Rouge; East Feliciana; Evangeline; Iberia; Iberville; Jefferson; <NAME>; Lafayette; LaFourche; Livingston; Orleans; Plaquemines; Pointe Coupee; St Bernard; St Charles; St Helena; St James; St John the Baptist; St Landry; St Martin; St Mary; St Tammany; Tangipahoa; Terrebonne; Vermilion; Washington; West Baton Rouge; West Feliciana. Also Gulf of Mexico outer continental shelf (GoM OCS) protraction areas Sabine Pass (LA); West Cameron; East Cameron; Vermilion; South Marsh Island; Eugene Island; Ship Shoal; South Pelto; Bay Marchand; South Timbalier; Grand Isle; West Delta; South Pass; Main Pass; Breton Sound; Chandeleur.',27.82,31.07,-93.94,-87.76,0);
INSERT INTO "extent" VALUES('EPSG','2206','USA - Maine - SPCS - E','United States (USA) - Maine - counties of Aroostook; Hancock; Knox; Penobscot; Piscataquis; Waldo; Washington.',43.88,47.47,-70.03,-66.91,0);
INSERT INTO "extent" VALUES('EPSG','2207','USA - Maine - SPCS - W','United States (USA) - Maine - counties of Androscoggin; Cumberland; Franklin; Kennebec; Lincoln; Oxford; Sagadahoc; Somerset; York.',43.04,46.58,-71.09,-69.26,0);
INSERT INTO "extent" VALUES('EPSG','2208','USA - Massachusetts - SPCS - islands','United States (USA) - Massachusetts offshore - counties of Dukes; Nantucket.',41.19,41.51,-70.91,-69.89,0);
INSERT INTO "extent" VALUES('EPSG','2209','USA - Massachusetts - SPCS - mainland','United States (USA) - Massachusetts onshore - counties of Barnstable; Berkshire; Bristol; Essex; Franklin; Hampden; Hampshire; Middlesex; Norfolk; Plymouth; Suffolk; Worcester.',41.46,42.89,-73.5,-69.86,0);
INSERT INTO "extent" VALUES('EPSG','2210','USA - Montana - SPCS27 - C','United States (USA) - Montana - counties of Cascade; Dawson; Fergus; Garfield; Judith Basin; Lake; Lewis and Clark; McCone; Meagher; Mineral; Missoula; Petroleum; Powell; Prairie; Richland; Sanders; Wibaux.',46.17,48.26,-116.06,-104.04,0);
INSERT INTO "extent" VALUES('EPSG','2211','USA - Montana - SPCS27 - N','United States (USA) - Montana north of approximately 47°50''N - counties of Blaine; Chouteau; Daniels; Flathead; Glacier; Hill; Liberty; Lincoln; Phillips; Pondera; Roosevelt; Sheridan; Teton; Toole; Valley.',47.41,49.01,-116.07,-104.04,0);
INSERT INTO "extent" VALUES('EPSG','2212','USA - Montana - SPCS27 - S','United States (USA) - Montana - counties of Beaverhead; Big Horn; Broadwater; Carbon; Carter; Custer; Deer Lodge; Fallon; Gallatin; Golden Valley; Granite; Jefferson; Madison; Musselshell; Park; Powder River; Ravalli; Rosebud; Silver Bow; Stillwater; Sweet Grass; Treasure; Wheatland; Yellowstone.',44.35,46.87,-114.57,-104.04,0);
INSERT INTO "extent" VALUES('EPSG','2213','USA - Minnesota - SPCS - C','United States (USA) - Minnesota - counties of Aitkin; Becker; Benton; Carlton; Cass; Chisago; Clay; Crow Wing; Douglas; Grant; Hubbard; Isanti; Kanabec; Mille Lacs; Morrison; Otter Tail; Pine; Pope; Stearns; Stevens; Todd; Traverse; Wadena; Wilkin.',45.28,47.48,-96.86,-92.29,0);
INSERT INTO "extent" VALUES('EPSG','2214','USA - Minnesota - SPCS - N','United States (USA) - Minnesota - counties of Beltrami; Clearwater; Cook; Itasca; Kittson; Koochiching; Lake; Lake of the Woods; Mahnomen; Marshall; Norman; Pennington; Polk; Red Lake; Roseau; St Louis.',46.64,49.38,-97.22,-89.49,0);
INSERT INTO "extent" VALUES('EPSG','2215','USA - Minnesota - SPCS - S','United States (USA) - Minnesota - counties of Anoka; Big Stone; Blue Earth; Brown; Carver; Chippewa; Cottonwood; Dakota; Dodge; Faribault; Fillmore; Freeborn; Goodhue; Hennepin; Houston; Jackson; Kandiyohi; Lac Qui Parle; Le Sueur; Lincoln; Lyon; Martin; McLeod; Meeker; Mower; Murray; Nicollet; Nobles; Olmsted; Pipestone; Ramsey; Redwood; Renville; Rice; Rock; Scott; Sherburne; Sibley; Steele; Swift; Wabasha; Waseca; Washington; Watonwan; Winona; Wright; Yellow Medicine.',43.49,45.59,-96.85,-91.21,0);
INSERT INTO "extent" VALUES('EPSG','2216','USA - Mississippi - SPCS - E','United States (USA) - Mississippi - counties of Alcorn; Attala; Benton; Calhoun; Chickasaw; Choctaw; Clarke; Clay; Covington; Forrest; George; Greene; Hancock; Harrison; Itawamba; Jackson; Jasper; Jones; Kemper; Lafayette; Lamar; Lauderdale; Leake; Lee; Lowndes; Marshall; Monroe; Neshoba; Newton; Noxubee; Oktibbeha; Pearl River; Perry; Pontotoc; Prentiss; Scott; Smith; Stone; Tippah; Tishomingo; Union; Wayne; Webster; Winston.',30.01,35.01,-89.97,-88.09,0);
INSERT INTO "extent" VALUES('EPSG','2217','USA - Mississippi - SPCS - W','United States (USA) - Mississippi - counties of Adams; Amite; Bolivar; Carroll; Claiborne; Coahoma; Copiah; De Soto; Franklin; Grenada; Hinds; Holmes; Humphreys; Issaquena; Jefferson; Jefferson Davis; Lawrence; Leflore; Lincoln; Madison; Marion; Montgomery; Panola; Pike; Quitman; Rankin; Sharkey; Simpson; Sunflower; Tallahatchie; Tate; Tunica; Walthall; Warren; Washington; Wilkinson; Yalobusha; Yazoo.',31.0,35.01,-91.65,-89.37,0);
INSERT INTO "extent" VALUES('EPSG','2218','USA - Missouri - SPCS - C','United States (USA) - Missouri - counties of Adair; Audrain; Benton; Boone; Callaway; Camden; Carroll; Chariton; Christian; Cole; Cooper; Dallas; Douglas; Greene; Grundy; Hickory; Howard; Howell; Knox; Laclede; Linn; Livingston; Macon; Maries; Mercer; Miller; Moniteau; Monroe; Morgan; Osage; Ozark; Pettis; Phelps; Polk; Pulaski; Putnam; Randolph; Saline; Schuyler; Scotland; Shelby; Stone; Sullivan; Taney; Texas; Webster; Wright.',36.48,40.61,-93.79,-91.41,0);
INSERT INTO "extent" VALUES('EPSG','2219','USA - Missouri - SPCS - E','United States (USA) - Missouri - counties of Bollinger; Butler; Cape Girardeau; Carter; Clark; Crawford; Dent; Dunklin; Franklin; Gasconade; Iron; Jefferson; Lewis; Lincoln; Madison; Marion; Mississippi; Montgomery; New Madrid; Oregon; Pemiscot; Perry; Pike; Ralls; Reynolds; Ripley; Scott; Shannon; St Charles; St Francois; St Louis; Ste. Genevieve; Stoddard; Warren; Washington; Wayne.',35.98,40.61,-91.97,-89.1,0);
INSERT INTO "extent" VALUES('EPSG','2220','USA - Missouri - SPCS - W','United States (USA) - Missouri - counties of Andrew; Atchison; Barry; Barton; Bates; Buchanan; Caldwell; Cass; Cedar; Clay; Clinton; Dade; Daviess; <NAME>; Gentry; Harrison; Henry; Holt; Jackson; Jasper; Johnson; Lafayette; Lawrence; McDonald; Newton; Nodaway; Platte; Ray; St Clair; Vernon; Worth.',36.48,40.59,-95.77,-93.48,0);
INSERT INTO "extent" VALUES('EPSG','2221','USA - Nebraska - SPCS27 - N','United States (USA) - Nebraska - counties of Antelope; Blaine; Box Butte; Boyd; Brown; Burt; Cedar; Cherry; Cuming; Dakota; Dawes; Dixon; Garfield; Grant; Holt; Hooker; Keya Paha; Knox; Loup; Madison; Pierce; Rock; Sheridan; Sioux; Stanton; Thomas; Thurston; Wayne; Wheeler.',41.68,43.01,-104.06,-96.07,0);
INSERT INTO "extent" VALUES('EPSG','2222','USA - Nebraska - SPCS27 - S','United States (USA) - Nebraska - counties of Adams; Arthur; Banner; Boone; Buffalo; Butler; Cass; Chase; Cheyenne; Clay; Colfax; Custer; Dawson; Deuel; Dodge; Douglas; Dundy; Fillmore; Franklin; Frontier; Furnas; Gage; Garden; Gosper; Greeley; Hall; Hamilton; Harlan; Hayes; Hitchcock; Howard; Jefferson; Johnson; Kearney; Keith; Kimball; Lancaster; Lincoln; Logan; McPherson; Merrick; Morrill; Nance; Nemaha; Nuckolls; Otoe; Pawnee; Perkins; Phelps; Platte; Polk; Red Willow; Richardson; Saline; Sarpy; Saunders; Scotts Bluff; Seward; Sherman; Thayer; Valley; Washington; Webster; York.',39.99,42.01,-104.06,-95.3,0);
INSERT INTO "extent" VALUES('EPSG','2223','USA - Nevada - SPCS - C','United States (USA) - Nevada - counties of Lander; Nye.',36.0,41.0,-118.19,-114.99,0);
INSERT INTO "extent" VALUES('EPSG','2224','USA - Nevada - SPCS - E','United States (USA) - Nevada - counties of Clark; Elko; Eureka; Lincoln; White Pine.',34.99,42.0,-117.01,-114.03,0);
INSERT INTO "extent" VALUES('EPSG','2225','USA - Nevada - SPCS - W','United States (USA) - Nevada - counties of Churchill; Douglas; Esmeralda; Humboldt; Lyon; Mineral; Pershing; Storey; Washoe.',36.95,42.0,-120.0,-116.99,0);
INSERT INTO "extent" VALUES('EPSG','2226','Canada - Newfoundland - east of 54.5°W','Canada - Newfoundland - onshore east of 54°30''W.',46.56,49.89,-54.5,-52.54,0);
INSERT INTO "extent" VALUES('EPSG','2227','Canada - Newfoundland and Labrador - 57.5°W to 54.5°W','Canada - Newfoundland and Labrador between 57°30''W and 54°30''W.',46.81,54.71,-57.5,-54.5,0);
INSERT INTO "extent" VALUES('EPSG','2228','USA - New Mexico - SPCS - E','United States (USA) - New Mexico - counties of Chaves; Colfax; Curry; De Baca; Eddy; Guadalupe; Harding; Lea; Mora; Quay; Roosevelt; San Miguel; Union.',32.0,37.0,-105.72,-102.99,0);
INSERT INTO "extent" VALUES('EPSG','2229','USA - New Mexico - SPCS27 - C','United States (USA) - New Mexico - counties of Bernalillo; Dona Ana; Lincoln; Los Alamos; Otero; Rio Arriba; Sandoval; Santa Fe; Socorro; Taos; Torrance.',31.78,37.0,-107.73,-104.83,0);
INSERT INTO "extent" VALUES('EPSG','2230','USA - New Mexico - SPCS27 - W','United States (USA) - New Mexico - counties of Catron; Cibola; Grant; Hidalgo; Luna; McKinley; San Juan; Sierra; Valencia.',31.33,37.0,-109.06,-106.32,0);
INSERT INTO "extent" VALUES('EPSG','2231','USA - New Mexico - SPCS83 - C','United States (USA) - New Mexico - counties of Bernalillo; Dona Ana; Lincoln; Los Alamos; Otero; Rio Arriba; Sandoval; Santa Fe; Socorro; Taos; Torrance; Valencia.',31.78,37.0,-107.73,-104.84,0);
INSERT INTO "extent" VALUES('EPSG','2232','USA - New Mexico - SPCS83 - W','United States (USA) - New Mexico - counties of Catron; Cibola; Grant; Hidalgo; Luna; McKinley; San Juan; Sierra.',31.33,37.0,-109.06,-106.32,0);
INSERT INTO "extent" VALUES('EPSG','2233','USA - New York - SPCS - C','United States (USA) - New York - counties of Broome; Cayuga; Chemung; Chenango; Cortland; Jefferson; Lewis; Madison; Oneida; Onondaga; Ontario; Oswego; Schuyler; Seneca; Steuben; Tioga; Tompkins; Wayne; Yates.',41.99,44.41,-77.75,-75.04,0);
INSERT INTO "extent" VALUES('EPSG','2234','USA - New York - SPCS - E','United States (USA) - New York mainland - counties of Albany; Clinton; Columbia; Delaware; Dutchess; Essex; Franklin; Fulton; Greene; Hamilton; Herkimer; Montgomery; Orange; Otsego; Putnam; Rensselaer; Rockland; Saratoga; Schenectady; Schoharie; St Lawrence; Sullivan; Ulster; Warren; Washington; Westchester.',40.88,45.02,-75.87,-73.23,0);
INSERT INTO "extent" VALUES('EPSG','2235','USA - New York - SPCS - Long Island','United States (USA) - New York - counties of Bronx; Kings; Nassau; New York; Queens; Richmond; Suffolk.',40.47,41.3,-74.26,-71.8,0);
INSERT INTO "extent" VALUES('EPSG','2236','USA - New York - SPCS - W','United States (USA) - New York - counties of Allegany; Cattaraugus; Chautauqua; Erie; Genesee; Livingston; Monroe; Niagara; Orleans; Wyoming.',41.99,43.64,-79.77,-77.36,0);
INSERT INTO "extent" VALUES('EPSG','2237','USA - North Dakota - SPCS - N','United States (USA) - North Dakota - counties of Benson; Bottineau; Burke; Cavalier; Divide; Eddy; Foster; Grand Forks; Griggs; McHenry; McKenzie; McLean; Mountrial; Nelson; Pembina; Pierce; Ramsey; Renville; Rolette; Sheridan; Steele; Towner; Traill; Walsh; Ward; Wells; Williams.',47.15,49.01,-104.07,-96.83,0);
INSERT INTO "extent" VALUES('EPSG','2238','USA - North Dakota - SPCS - S','United States (USA) - North Dakota - counties of Adams; Barnes; Billings; Bowman; Burleigh; Cass; Dickey; Dunn; Emmons; Golden Valley; Grant; Hettinger; Kidder; La Moure; Logan; McIntosh; Mercer; Morton; Oliver; Ransom; Richland; Sargent; Sioux; Slope; Stark; Stutsman.',45.93,47.83,-104.05,-96.55,0);
INSERT INTO "extent" VALUES('EPSG','2239','USA - Ohio - SPCS - N','United States (USA) - Ohio - counties of Allen;Ashland; Ashtabula; Auglaize; Carroll; Columbiana; Coshocton; Crawford; Cuyahoga; Defiance; Delaware; Erie; Fulton; Geauga; Hancock; Hardin; Harrison; Henry; Holmes; Huron; Jefferson; Knox; Lake; Logan; Lorain; Lucas; Mahoning; Marion; Medina; Mercer; Morrow; Ottawa; Paulding; Portage; Putnam; Richland; Sandusky; Seneca; Shelby; Stark; Summit; Trumbull; Tuscarawas; Union; Van Wert; Wayne; Williams; Wood; Wyandot.',40.1,42.33,-84.81,-80.51,0);
INSERT INTO "extent" VALUES('EPSG','2240','USA - Ohio - SPCS - S','United States (USA) - Ohio - counties of Adams; Athens; Belmont; Brown; Butler; Champaign; Clark; Clermont; Clinton; Darke; Fairfield; Fayette; Franklin; Gallia; Greene; Guernsey; Hamilton; Highland; Hocking; Jackson; Lawrence; Licking; Madison; Meigs; Miami; Monroe; Montgomery; Morgan; Muskingum; Noble; Perry; Pickaway; Pike; Preble; Ross; Scioto; Vinton; Warren; Washington.',38.4,40.36,-84.83,-80.7,0);
INSERT INTO "extent" VALUES('EPSG','2241','USA - Oklahoma - SPCS - N','United States (USA) - Oklahoma - counties of Adair; Alfalfa; Beaver; Blaine; Canadian; Cherokee; Cimarron; Craig; Creek; Custer; Delaware; Dewey; Ellis; Garfield; Grant; Harper; Kay; Kingfisher; Lincoln; Logan; Major; Mayes; Muskogee; Noble; Nowata; Okfuskee; Oklahoma; Okmulgee; Osage; Ottawa; Pawnee; Payne; Roger Mills; Rogers; Sequoyah; Texas; Tulsa; Wagoner; Washington; Woods; Woodward.',35.27,37.01,-103.0,-94.42,0);
INSERT INTO "extent" VALUES('EPSG','2242','USA - Oklahoma - SPCS - S','United States (USA) - Oklahoma - counties of Atoka; Beckham; Bryan; Caddo; Carter; Choctaw; Cleveland; Coal; Comanche; Cotton; Garvin; Grady; Greer; Harmon; Haskell; Hughes; Jackson; Jefferson; Johnston; Kiowa; Latimer; Le Flore; Love; Marshall; McClain; McCurtain; McIntosh; Murray; Pittsburg; Pontotoc; Pottawatomie; Pushmataha; Seminole; Stephens; Tillman; Washita.',33.62,35.57,-100.0,-94.42,0);
INSERT INTO "extent" VALUES('EPSG','2243','USA - Oregon - SPCS - N','United States (USA) - Oregon - counties of Baker; Benton; Clackamas; Clatsop; Columbia; Gilliam; Grant; Hood River; Jefferson; Lincoln; Linn; Marion; Morrow; Multnomah; Polk; Sherman; Tillamook; Umatilla; Union; Wallowa; Wasco; Washington; Wheeler; Yamhill.',43.95,46.26,-124.17,-116.47,0);
INSERT INTO "extent" VALUES('EPSG','2244','USA - Oregon - SPCS - S','United States (USA) - Oregon - counties of Coos; Crook; Curry; Deschutes; Douglas; Harney; Jackson; Josephine; Klamath; Lake; Lane; Malheur.',41.98,44.56,-124.6,-116.9,0);
INSERT INTO "extent" VALUES('EPSG','2245','USA - Pennsylvania - SPCS - N','United States (USA) - Pennsylvania - counties of Bradford; Cameron; Carbon; Centre; Clarion; Clearfield; Clinton; Columbia; Crawford; Elk; Erie; Forest; Jefferson; Lackawanna; Luzerne; Lycoming; McKean; Mercer; Monroe; Montour; Northumberland; Pike; Potter; Sullivan; Susquehanna; Tioga; Union; Venango; Warren; Wayne; Wyoming.',40.6,42.53,-80.53,-74.7,0);
INSERT INTO "extent" VALUES('EPSG','2246','USA - Pennsylvania - SPCS - S','United States (USA) - Pennsylvania - counties of Adams; Allegheny; Armstrong; Beaver; Bedford; Berks; Blair; Bucks; Butler; Cambria; Chester; Cumberland; Dauphin; Delaware; Fayette; Franklin; Fulton; Greene; Huntingdon; Indiana; Juniata; Lancaster; Lawrence; Lebanon; Lehigh; Mifflin; Montgomery; Northampton; Perry; Philadelphia; Schuylkill; Snyder; Somerset; Washington; Westmoreland; York.',39.71,41.18,-80.53,-74.72,0);
INSERT INTO "extent" VALUES('EPSG','2247','USA - South Carolina - SPCS27 - N','United States (USA) - South Carolina - counties of Abbeville; Anderson; Calhoun; Cherokee; Chester; Chesterfield; Darlington; Dillon; Edgefield; Fairfield; Florence; Greenville; Greenwood; Horry; Kershaw; Lancaster; Laurens; Lee; Lexington; Marion; Marlboro; McCormick; Newberry; Oconee; Pickens; Richland; Saluda; Spartanburg; Sumter; Union; York.',33.46,35.21,-83.36,-78.52,0);
INSERT INTO "extent" VALUES('EPSG','2248','USA - South Carolina - SPCS27 - S','United States (USA) - South Carolina - counties of Aiken; Allendale; Bamberg; Barnwell; Beaufort; Berkeley; Charleston; Clarendon; Colleton; Dorchester; Georgetown; Hampton; Jasper; Orangeburg; Williamsburg.',32.05,33.95,-82.03,-78.95,0);
INSERT INTO "extent" VALUES('EPSG','2249','USA - South Dakota - SPCS - N','United States (USA) - South Dakota - counties of Beadle; Brookings; Brown; Butte; Campbell; Clark; Codington; Corson; Day; Deuel; Dewey; Edmunds; Faulk; Grant; Hamlin; Hand; Harding; Hyde; Kingsbury; Lawrence; Marshall; McPherson; Meade; Perkins; Potter; Roberts; Spink; Sully; Walworth; Ziebach.',44.14,45.95,-104.07,-96.45,0);
INSERT INTO "extent" VALUES('EPSG','2250','USA - South Dakota - SPCS - S','United States (USA) - South Dakota - counties of Aurora; Bennett; Bon Homme; Brule; Buffalo; Charles Mix; Clay; Custer; Davison; Douglas; Fall River; Gregory; Haakon; Hanson; Hughes; Hutchinson; Jackson; Jerauld; Jones; Lake; Lincoln; Lyman; McCook; Mellette; Miner; Minnehaha; Moody; Pennington; Sanborn; Shannon; Stanley; Todd; Tripp; Turner; Union; Yankton.',42.48,44.79,-104.06,-96.43,0);
INSERT INTO "extent" VALUES('EPSG','2251','Caribbean - Puerto Rico and US Virgin Islands','Puerto Rico and US Virgin Islands - onshore and offshore.',14.92,21.86,-68.49,-63.88,0);
INSERT INTO "extent" VALUES('EPSG','2252','USA - Texas - SPCS - C','United States (USA) - Texas - counties of Anderson; Angelina; Bastrop; Bell; Blanco; Bosque; Brazos; Brown; Burleson; Burnet; Cherokee; Coke; Coleman; Comanche; Concho; Coryell; Crane; Crockett; Culberson; Ector; El Paso; Falls; Freestone; Gillespie; Glasscock; Grimes; Hamilton; Hardin; Houston; Hudspeth; Irion; Jasper; Jeff Davis; Kimble; Lampasas; Lee; Leon; Liberty; Limestone; Llano; Loving; Madison; Mason; McCulloch; McLennan; Menard; Midland; Milam; Mills; Montgomery; Nacogdoches; Newton; Orange; Pecos; Polk; Reagan; Reeves; Robertson; Runnels; Sabine; San Augustine; San Jacinto; San Saba; Schleicher; Shelby; Sterling; Sutton; Tom Green; Travis; Trinity; Tyler; Upton; Walker; Ward; Washington; Williamson; Winkler.',29.78,32.27,-106.66,-93.5,0);
INSERT INTO "extent" VALUES('EPSG','2253','USA - Texas - SPCS - N','United States (USA) - Texas - counties of: Armstrong; Briscoe; Carson; Castro; Childress; Collingsworth; Dallam; Deaf Smith; Donley; Gray; Hall; Hansford; Hartley; Hemphill; Hutchinson; Lipscomb; Moore; Ochiltree; Oldham; Parmer; Potter; Randall; Roberts; Sherman; Swisher; Wheeler.',34.3,36.5,-103.03,-99.99,0);
INSERT INTO "extent" VALUES('EPSG','2254','USA - Texas - SPCS - NC','United States (USA) - Texas - counties of: Andrews; Archer; Bailey; Baylor; Borden; Bowie; Callahan; Camp; Cass; Clay; Cochran; Collin; Cooke; Cottle; Crosby; Dallas; Dawson; Delta; Denton; Dickens; Eastland; Ellis; Erath; Fannin; Fisher; Floyd; Foard; Franklin; Gaines; Garza; Grayson; Gregg; Hale; Hardeman; Harrison; Haskell; Henderson; Hill; Hockley; Hood; Hopkins; Howard; Hunt; Jack; Johnson; Jones; Kaufman; Kent; King; Knox; Lamar; Lamb; Lubbock; Lynn; Marion; Martin; Mitchell; Montague; Morris; Motley; Navarro; Nolan; Palo Pinto; Panola; Parker; Rains; Red River; Rockwall; Rusk; Scurry; Shackelford; Smith; Somervell; Stephens; Stonewall; Tarrant; Taylor; Terry; Throckmorton; Titus; Upshur; Van Zandt; Wichita; Wilbarger; Wise; Wood; Yoakum; Young.',31.72,34.58,-103.07,-94.0,0);
INSERT INTO "extent" VALUES('EPSG','2255','USA - Texas - SPCS27 - S','United States (USA) - Texas - counties of Brooks; Cameron; Duval; Hidalgo; <NAME>; <NAME>; Kenedy; Kleberg; Nueces; San Patricio; Starr; Webb; Willacy; Zapata. Gulf of Mexico outer continental shelf (GoM OCS) protraction areas: South Padre Island; North Padre Island; Mustang Island.',25.83,28.21,-100.2,-95.37,0);
INSERT INTO "extent" VALUES('EPSG','2256','USA - Texas - SPCS27 - SC','United States (USA) - Texas - counties of Aransas; Atascosa; Austin; Bandera; Bee; Bexar; Brazoria; Brewster; Caldwell; Calhoun; Chambers; Colorado; Comal; De Witt; Dimmit; Edwards; Fayette; <NAME>; Frio; Galveston; Goliad; Gonzales; Guadalupe; Harris; Hays; Jackson; Jefferson; Karnes; Kendall; Kerr; Kinney; La Salle; Lavaca; Live Oak; Matagorda; Maverick; McMullen; Medina; Presidio; Real; Refugio; Terrell; Uvalde; Val Verde; Victoria; Waller; Wharton; Wilson; Zavala. Gulf of Mexico outer continental shelf (GoM OCS) protraction areas: Matagorda Island; Brazos; Galveston; High Island, Sabine Pass (TX).',27.78,30.67,-105.0,-93.41,0);
INSERT INTO "extent" VALUES('EPSG','2257','USA - Utah - SPCS - C','United States (USA) - Utah - counties of Carbon; Duchesne; Emery; Grand; Juab; Millard; Salt Lake; Sanpete; Sevier; Tooele; Uintah; Utah; Wasatch.',38.49,41.08,-114.05,-109.04,0);
INSERT INTO "extent" VALUES('EPSG','2258','USA - Utah - SPCS - N','United States (USA) - Utah - counties of Box Elder; Cache; Daggett; Davis; Morgan; Rich; Summit; Weber.',40.55,42.01,-114.04,-109.04,0);
INSERT INTO "extent" VALUES('EPSG','2259','USA - Utah - SPCS - S','United States (USA) - Utah - counties of Beaver; Garfield; Iron; Kane; Piute; San Juan; Washington; Wayne.',36.99,38.58,-114.05,-109.04,0);
INSERT INTO "extent" VALUES('EPSG','2260','USA - Virginia - SPCS - N','United States (USA) - Virginia - counties of Arlington; Augusta; Bath; Caroline; Clarke; Culpeper; Fairfax; Fauquier; Frederick; Greene; Highland; King George; Loudoun; Madison; Orange; Page; Prince William; Rappahannock; Rockingham; Shenandoah; Spotsylvania; Stafford; Warren; Westmoreland.',37.77,39.46,-80.06,-76.51,0);
INSERT INTO "extent" VALUES('EPSG','2261','USA - Virginia - SPCS - S','United States (USA) - Virginia - counties of Accomack; Albemarle; Alleghany; Amelia; Amherst; Appomattox; Bedford; Bland; Botetourt; Bristol; Brunswick; Buchanan; Buckingham; Campbell; Carroll; Charles City; Charlotte; Chesapeake; Chesterfield; Colonial Heights; Craig; Cumberland; Dickenson; Dinwiddie; Essex; Floyd; Fluvanna; Franklin; Giles; Gloucester; Goochland; Grayson; Greensville; Halifax; Hampton; Hanover; Henrico; Henry; Isle of Wight; James City; King and Queen; King William; Lancaster; Lee; Louisa; Lunenburg; Lynchburg; Mathews; Mecklenburg; Middlesex; Montgomery; Nelson; New Kent; Newport News; Norfolk; Northampton; Northumberland; Norton; Nottoway; Patrick; Petersburg; Pittsylvania; Portsmouth; Powhatan; Prince Edward; Prince George; Pulaski; Richmond; Roanoke; Rockbridge; Russell; Scott; Smyth; Southampton; Suffolk; Surry; Sussex; Tazewell; Washington; Wise; Wythe; York.',36.54,38.28,-83.68,-75.31,0);
INSERT INTO "extent" VALUES('EPSG','2262','USA - Washington - SPCS27 - N','United States (USA) - Washington - counties of Chelan; Clallam; Douglas; Ferry; Island; Jefferson; King; Kitsap; Lincoln; Okanogan; Pend Oreille; San Juan; Skagit; Snohomish; Spokane; Stevens; Whatcom.',47.08,49.05,-124.79,-117.02,0);
INSERT INTO "extent" VALUES('EPSG','2263','USA - Washington - SPCS27 - S','United States (USA) - Washington - counties of Adams; Asotin; Benton; Clark; Columbia; Cowlitz; Franklin; Garfield; Grant; Grays Harbor; Kittitas; Klickitat; Lewis; Mason; Pacific; Pierce; Skamania; Thurston; Wahkiakum; Walla Walla; Whitman; Yakima.',45.54,47.96,-124.4,-116.91,0);
INSERT INTO "extent" VALUES('EPSG','2264','USA - West Virginia - SPCS - N','United States (USA) - West Virginia - counties of Barbour; Berkeley; Brooke; Doddridge; Grant; Hampshire; Hancock; Hardy; Harrison; Jefferson; Marion; Marshall; Mineral; Monongalia; Morgan; Ohio; Pleasants; Preston; Ritchie; Taylor; Tucker; Tyler; Wetzel; Wirt; Wood.',38.76,40.64,-81.76,-77.72,0);
INSERT INTO "extent" VALUES('EPSG','2265','USA - West Virginia - SPCS - S','United States (USA) - West Virginia - counties of Boone; Braxton; Cabell; Calhoun; Clay; Fayette; Gilmer; Greenbrier; Jackson; Kanawha; Lewis; Lincoln; Logan; Mason; McDowell; Mercer; Mingo; Monroe; Nicholas; Pendleton; Pocahontas; Putnam; Raleigh; Randolph; Roane; Summers; Upshur; Wayne; Webster; Wyoming.',37.2,39.17,-82.65,-79.05,0);
INSERT INTO "extent" VALUES('EPSG','2266','USA - Wisconsin - SPCS - C','United States (USA) - Wisconsin - counties of Barron; Brown; Buffalo; Chippewa; Clark; Door; Dunn; Eau Claire; Jackson; Kewaunee; Langlade; Lincoln; Marathon; Marinette; Menominee; Oconto; Outagamie; Pepin; Pierce; Polk; Portage; Rusk; Shawano; St Croix; Taylor; Trempealeau; Waupaca; Wood.',43.98,45.8,-92.89,-86.25,0);
INSERT INTO "extent" VALUES('EPSG','2267','USA - Wisconsin - SPCS - N','United States (USA) - Wisconsin - counties of Ashland; Bayfield; Burnett; Douglas; Florence; Forest; Iron; Oneida; Price; Sawyer; Vilas; Washburn.',45.37,47.31,-92.89,-88.05,0);
INSERT INTO "extent" VALUES('EPSG','2268','USA - Wisconsin - SPCS - S','United States (USA) - Wisconsin - counties of Adams; Calumet; Columbia; Crawford; Dane; Dodge; Fond Du Lac; Grant; Green; Green Lake; Iowa; Jefferson; Juneau; Kenosha; La Crosse; Lafayette; Manitowoc; Marquette; Milwaukee; Monroe; Ozaukee; Racine; Richland; Rock; Sauk; Sheboygan; Vernon; Walworth; Washington; Waukesha; Waushara; Winnebago.',42.48,44.33,-91.43,-86.95,0);
INSERT INTO "extent" VALUES('EPSG','2269','USA - Wyoming - SPCS - E','United States (USA) - Wyoming - counties of Albany; Campbell; Converse; Crook; Goshen; Laramie; Niobrara; Platte; Weston.',40.99,45.01,-106.33,-104.05,0);
INSERT INTO "extent" VALUES('EPSG','2270','USA - Wyoming - SPCS - EC','United States (USA) - Wyoming - counties of Big Horn; Carbon; Johnson; Natrona; Sheridan; Washakie.',40.99,45.01,-108.63,-106.0,0);
INSERT INTO "extent" VALUES('EPSG','2271','USA - Wyoming - SPCS - W','United States (USA) - Wyoming - counties of Lincoln; Sublette; Teton; Uinta.',40.99,44.67,-111.06,-109.04,0);
INSERT INTO "extent" VALUES('EPSG','2272','USA - Wyoming - SPCS - WC','United States (USA) - Wyoming - counties of Fremont; Hot Springs; Park; Sweetwater.',40.99,45.01,-111.06,-107.5,0);
INSERT INTO "extent" VALUES('EPSG','2273','USA - Washington - SPCS83 - N','United States (USA) - Washington - counties of Chelan; Clallam; Douglas; Ferry; Grant north of approximately 47°30''N; Island; Jefferson; King; Kitsap; Lincoln; Okanogan; Pend Oreille; San Juan; Skagit; Snohomish; Spokane; Stevens; Whatcom.',47.08,49.05,-124.79,-117.02,0);
INSERT INTO "extent" VALUES('EPSG','2274','USA - Washington - SPCS83 - S','United States (USA) - Washington - counties of Adams; Asotin; Benton; Clark; Columbia; Cowlitz; Franklin; Garfield; Grant south of approximately 47°30''N; Grays Harbor; Kittitas; Klickitat; Lewis; Mason; Pacific; Pierce; Skamania; Thurston; Wahkiakum; Walla Walla; Whitman; Yakima.',45.54,47.61,-124.4,-116.91,0);
INSERT INTO "extent" VALUES('EPSG','2275','Canada - Newfoundland and Labrador - 60°W to 57.5°W','Canada - Newfoundland west of 57°30''W.',47.5,50.54,-59.48,-57.5,0);
INSERT INTO "extent" VALUES('EPSG','2276','Canada - Quebec and Labrador - 63°W to 60°W','Canada - Quebec and Labrador between 63°W and 60°W.',47.16,58.92,-63.0,-60.0,0);
INSERT INTO "extent" VALUES('EPSG','2277','Canada - Quebec and Labrador - 66°W to 63°W','Canada - Quebec and Labrador between 66°W and 63°W.',47.95,60.52,-66.0,-63.0,0);
INSERT INTO "extent" VALUES('EPSG','2278','Canada - Quebec and Labrador - 69°W to 66°W','Canada - Quebec and Labrador between 69°W and 66°W.',47.31,59.0,-69.0,-66.0,0);
INSERT INTO "extent" VALUES('EPSG','2279','Canada - Quebec and Ontario - 75°W to 72°W','Canada - Quebec between 75°W and 72°W.; Canada - Ontario - east of 75°W.',44.98,62.53,-75.0,-72.0,0);
INSERT INTO "extent" VALUES('EPSG','2280','Canada - Quebec and Ontario - 78°W to 75°W','Canada - Quebec and Ontario - between 78°W and 75°W.',43.63,62.65,-78.0,-75.0,0);
INSERT INTO "extent" VALUES('EPSG','2281','Canada - Quebec and Ontario - MTM zone 10','Canada - Quebec west of 78°W; Canada - Ontario - between 79°30''W and 78°W in area to north of 47°N; between 80°15''W and 78°W in area between 46°N and 47°N; between 81°W and 78°W in area south of 46°N.',42.26,62.45,-81.0,-78.0,0);
INSERT INTO "extent" VALUES('EPSG','2282','Cote d''Ivoire (Ivory Coast) - Abidjan area','Côte d''Ivoire (Ivory Coast) - Abidjan area.',5.15,5.54,-4.22,-3.85,0);
INSERT INTO "extent" VALUES('EPSG','2283','Australia - Australian Capital Territory','Australia - Australian Capital Territory.',-35.93,-35.12,148.76,149.4,0);
INSERT INTO "extent" VALUES('EPSG','2284','Australia - Northern Territory','Australia - Northern Territory.',-26.01,-10.86,128.99,138.0,0);
INSERT INTO "extent" VALUES('EPSG','2285','Australia - Victoria','Australia - Victoria.',-39.2,-33.98,140.96,150.04,0);
INSERT INTO "extent" VALUES('EPSG','2286','Australia - New South Wales and Victoria','Australia - New South Wales and Victoria.',-39.2,-28.15,140.96,153.69,0);
INSERT INTO "extent" VALUES('EPSG','2287','Australia - SE Australia (ACT NSW Vic)','Australia - Australian Capital Territory, New South Wales, Victoria.',-39.2,-28.15,140.96,153.69,0);
INSERT INTO "extent" VALUES('EPSG','2288','American Samoa - Tutuila island','American Samoa - Tutuila island.',-14.43,-14.2,-170.88,-170.51,0);
INSERT INTO "extent" VALUES('EPSG','2289','American Samoa - Ofu, Olesega and Ta''u islands','American Samoa - Ofu, Olesega and Ta''u islands.',-14.31,-14.11,-169.73,-169.38,0);
INSERT INTO "extent" VALUES('EPSG','2290','Canada - Quebec, Newfoundland and Labrador - MTM zone 3','Canada - Newfoundland and Labrador between 60°W and 57°30''W; Canada - Quebec east of 60°W.',47.5,55.38,-60.0,-57.1,0);
INSERT INTO "extent" VALUES('EPSG','2291','Australasia - Australia and PNG - 150°E to 156°E','Australia - onshore and offshore between 150°E and 156°E. Papua New Guinea onshore east of 150°E.',-46.44,-2.32,150.0,156.0,0);
INSERT INTO "extent" VALUES('EPSG','2292','Asia - Bangladesh; Myanmar - onshore 15°N to 21°N','Bangladesh - onshore south of 21°N; Myanmar (Burma) - onshore between 15°N and 21°N.',15.0,21.01,92.1,100.65,0);
INSERT INTO "extent" VALUES('EPSG','2293','Myanmar (Burma) - onshore south of 15°N','Myanmar (Burma) - onshore south of 15°N.',9.78,15.0,97.74,99.66,0);
INSERT INTO "extent" VALUES('EPSG','2294','Asia - Middle East - Iraq zone','Iran - onshore south of 36°N. Iraq - onshore. Kuwait - onshore.',25.02,37.39,38.79,63.34,0);
INSERT INTO "extent" VALUES('EPSG','2295','Caribbean - Windward and Leeward Islands','Windward Islands - Dominica; Grenada; St Lucia; St Vincent; Leeward Islands - Anguilla; Antigua (excluding Barbuda); Montserrat; St Kitts and Nevis; Barbados.',11.94,18.33,-63.22,-59.37,0);
INSERT INTO "extent" VALUES('EPSG','2296','Cote d''Ivoire (Ivory Coast) - offshore','Côte d''Ivoire (Ivory Coast) - offshore.',1.02,5.19,-7.55,-3.11,0);
INSERT INTO "extent" VALUES('EPSG','2297','USA - California - north of 36.5°N','United States (USA) - California north of 36.5°N.',36.5,42.01,-124.44,-116.54,0);
INSERT INTO "extent" VALUES('EPSG','2298','USA - California - south of 36.5°N','United States (USA) - California south of 36.5°N',32.53,36.5,-121.98,-114.12,0);
INSERT INTO "extent" VALUES('EPSG','2299','World - N hemisphere - 3-degree CM 003°E','Between 1°30''E and 4°30''E, northern hemisphere.',0.0,84.0,1.5,4.5,0);
INSERT INTO "extent" VALUES('EPSG','2300','World - N hemisphere - 3-degree CM 006°E','Between 4°30''E and 7°30''E, northern hemisphere.',0.0,84.0,4.5,7.5,0);
INSERT INTO "extent" VALUES('EPSG','2301','World - N hemisphere - 3-degree CM 009°E','Between 7°30''E and 10°30''E, northern hemisphere.',0.0,84.0,7.5,10.5,0);
INSERT INTO "extent" VALUES('EPSG','2302','World - N hemisphere - 3-degree CM 012°E','Between 10°30''E and 13°30''E, northern hemisphere.',0.0,84.0,10.5,13.5,0);
INSERT INTO "extent" VALUES('EPSG','2303','World - N hemisphere - 3-degree CM 015°E','Between 13°30''E and 16°30''E, northern hemisphere.',0.0,84.0,13.5,16.5,0);
INSERT INTO "extent" VALUES('EPSG','2304','World - N hemisphere - 3-degree CM 018°E','Between 16°30''E and 19°30''E, northern hemisphere.',0.0,84.0,16.5,19.5,0);
INSERT INTO "extent" VALUES('EPSG','2305','World - N hemisphere - 3-degree CM 021°E','Between 19°30''E and 22°30''E, northern hemisphere.',0.0,84.0,19.5,22.5,0);
INSERT INTO "extent" VALUES('EPSG','2306','World - N hemisphere - 3-degree CM 024°E','Between 22°30''E and 25°30''E, northern hemisphere.',0.0,84.0,22.5,25.5,0);
INSERT INTO "extent" VALUES('EPSG','2307','Brazil - Campos; Espirito Santo and Santos basins','Brazil - offshore - Campos; Espirito Santo and Santos basins.',-28.41,-17.59,-48.8,-35.18,0);
INSERT INTO "extent" VALUES('EPSG','2308','Brazil - Tucano basin north','Brazil - Tucano basin north.',-9.8,-8.39,-39.04,-37.09,0);
INSERT INTO "extent" VALUES('EPSG','2309','Brazil - Tucano basin central','Brazil - Tucano basin central.',-10.61,-9.79,-39.14,-37.99,0);
INSERT INTO "extent" VALUES('EPSG','2310','Brazil - Tucano basin south','Brazil - Tucano basin south.',-12.27,-10.6,-39.07,-37.98,0);
INSERT INTO "extent" VALUES('EPSG','2311','Africa - Kenya and Tanzania','Kenya; Tanzania.',-11.75,4.63,29.34,41.91,0);
INSERT INTO "extent" VALUES('EPSG','2312','Africa - Botswana, Eswatini, Lesotho, Malawi, Zambia, Zimbabwe','Botswana; Eswatini (Swaziland); Lesotho; Malawi; Zambia; Zimbabwe.',-30.66,-8.19,19.99,35.93,0);
INSERT INTO "extent" VALUES('EPSG','2313','Canada - Nova Scotia','Canada - Nova Scotia onshore.',43.41,47.08,-66.28,-59.73,0);
INSERT INTO "extent" VALUES('EPSG','2314','Asia - FSU - Caspian states','Azerbaijan; Kazakhstan; Russian Federation; Turkmenistan - Caspian Sea.',35.15,81.85,26.0,90.0,1);
INSERT INTO "extent" VALUES('EPSG','2315','Colombia - Cusiana','Colombia - Casanare province BP Cusiana/Cupiagua field areas. Also used by Total in Rivera and Gatanas blocks.',4.75,5.68,-73.0,-72.25,0);
INSERT INTO "extent" VALUES('EPSG','2316','Angola - offshore block 5','Angola - offshore block 5.',-8.59,-7.75,12.58,13.4,0);
INSERT INTO "extent" VALUES('EPSG','2317','Angola - offshore block 2','Angola - offshore block 2.',-7.01,-6.01,12.08,12.84,0);
INSERT INTO "extent" VALUES('EPSG','2318','Angola - offshore block 3','Angola - offshore block 3.',-7.34,-6.66,11.74,12.5,0);
INSERT INTO "extent" VALUES('EPSG','2319','Angola - offshore block 7','Angola - offshore block 7.',-10.09,-9.41,12.66,13.39,0);
INSERT INTO "extent" VALUES('EPSG','2320','Angola - offshore blocks 7 8 24 + WGC spec','Angola - offshore blocks 7 and 8. Also used rounded to integer metre in offshore block 24 and for GSI/HGS/Western Geophysical speculative seismic data throughout offshore Angola.',-17.26,-6.01,8.2,13.86,0);
INSERT INTO "extent" VALUES('EPSG','2321','Angola - offshore blocks 1 and 16','Angola - offshore blocks 1 and 16.',-7.26,-6.03,11.08,12.09,0);
INSERT INTO "extent" VALUES('EPSG','2322','Angola - offshore blocks 3 7 15 and 17','Angola - offshore blocks 3, 7,15 and 17.',-10.09,-6.03,10.83,13.39,0);
INSERT INTO "extent" VALUES('EPSG','2323','Angola - offshore blocks 1 16 and 18','Angola - offshore blocks 1, 16 and 18.',-8.34,-6.03,11.08,12.75,0);
INSERT INTO "extent" VALUES('EPSG','2324','Angola - offshore blocks 2 3 17-18 and 31-33','Angola - offshore blocks 2, 3, 17, 18, 31, 32 and 33.',-8.59,-6.01,10.41,12.84,0);
INSERT INTO "extent" VALUES('EPSG','2325','Argentina - Neuquen province Auca Mahuida area','Argentina - Neuquen province - Auca Mahuida area.',-38.75,-37.5,-69.5,-68.25,0);
INSERT INTO "extent" VALUES('EPSG','2326','Germany - West Germany all states','Germany - states of former West Germany onshore - Baden-Wurtemberg, Bayern, Bremen, Hamburg, Hessen, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Schleswig-Holstein.',47.27,55.09,5.87,13.84,0);
INSERT INTO "extent" VALUES('EPSG','2327','Syria - Al Whaleed area','Syria - Al Whaleed area',35.33,35.9,39.15,40.41,0);
INSERT INTO "extent" VALUES('EPSG','2328','Syria - Shaddadeh area','Syria - Shaddadeh area (36°N, 41°E)',35.79,36.5,40.5,41.39,0);
INSERT INTO "extent" VALUES('EPSG','2329','Syria - Deir area','Syria - Deir area (35°22''N, 40°06''E)',34.49,35.9,39.3,40.81,0);
INSERT INTO "extent" VALUES('EPSG','2330','Europe - North Sea','Denmark - North Sea; Germany - North Sea; Netherlands - offshore; Norway - North Sea south of 62°N; United Kingdom (UKCS) - North Sea south of 62°N.',51.03,62.01,-5.05,11.14,0);
INSERT INTO "extent" VALUES('EPSG','2331','Norway - offshore north of 65°N','Norway - offshore north of 65°N.',65.0,72.0,-0.5,32.02,1);
INSERT INTO "extent" VALUES('EPSG','2332','Norway - offshore north of 65°N; Svalbard','Norway - offshore north of 65°N. Also Svalbard.',65.0,84.73,-3.35,38.0,0);
INSERT INTO "extent" VALUES('EPSG','2333','Norway - offshore 62°N to 65°N and west of 5°E','Norway - offshore between 62°N and 65°N and west of 5°E.',62.0,65.0,-0.49,5.0,0);
INSERT INTO "extent" VALUES('EPSG','2334','Norway - North Sea - offshore south of 62°N','Norway - offshore south of 62°N - North Sea.',56.08,62.0,1.37,11.14,0);
INSERT INTO "extent" VALUES('EPSG','2335','Spain - Balearic Islands','Spain - Balearic Islands.',38.59,40.15,1.12,4.39,0);
INSERT INTO "extent" VALUES('EPSG','2336','Spain - mainland except northwest','Spain - onshore mainland except northwest (north of 41°30''N and west of 4°30''W).',35.26,43.56,-7.54,3.39,0);
INSERT INTO "extent" VALUES('EPSG','2337','Spain - mainland northwest','Spain - onshore mainland north of 41°30''N and west of 4°30'' W.',41.5,43.82,-9.37,-4.5,0);
INSERT INTO "extent" VALUES('EPSG','2338','Europe - Portugal and Spain','Portugal; Spain - mainland.',35.26,43.82,-9.56,3.39,0);
INSERT INTO "extent" VALUES('EPSG','2339','Italy - Sardinia onshore','Italy - Sardinia onshore.',38.82,41.31,8.08,9.89,0);
INSERT INTO "extent" VALUES('EPSG','2340','Italy - Sicily onshore','Italy - Sicily onshore.',36.59,38.35,12.36,15.71,0);
INSERT INTO "extent" VALUES('EPSG','2341','Egypt - Gulf of Suez','Egypt - Gulf of Suez.',27.19,30.01,32.34,34.27,0);
INSERT INTO "extent" VALUES('EPSG','2342','Europe - common offshore','Denmark - offshore North Sea; Ireland - offshore; Netherlands - offshore; United Kingdom - UKCS offshore.',47.42,63.89,-16.1,10.86,0);
INSERT INTO "extent" VALUES('EPSG','2343','Europe - British Isles and Channel Islands onshore','Channel islands - onshore. Ireland - onshore. Isle of Man - onshore. United Kingdom (UK) - onshore - England; Scotland; Wales; Northern Ireland.',49.11,60.9,-10.56,1.84,0);
INSERT INTO "extent" VALUES('EPSG','2344','Europe - Finland and Norway - onshore','Finland and Norway - onshore.',57.93,71.21,4.68,31.59,0);
INSERT INTO "extent" VALUES('EPSG','2345','Asia - Middle East - Iraq; Israel; Jordan; Lebanon; Kuwait; Saudi Arabia; Syria','Iraq, Israel, Jordan, Lebanon, Kuwait, Saudi Arabia and Syria - onshore.',16.37,37.39,34.17,55.67,0);
INSERT INTO "extent" VALUES('EPSG','2346','World - WGS72 BE to WGS 84 - by country','World. Vietnam - offshore.',-90.0,90.0,-180.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','2347','Algeria - north of 31.5°N','Algeria - onshore north of 35 grads North (31°30''N).',31.5,37.14,-3.85,9.22,0);
INSERT INTO "extent" VALUES('EPSG','2348','Brunei - offshore','Brunei Darussalam - offshore.',4.58,6.37,112.5,115.24,1);
INSERT INTO "extent" VALUES('EPSG','2349','Brunei - onshore','Brunei Darussalam - onshore.',4.01,5.11,114.09,115.37,0);
INSERT INTO "extent" VALUES('EPSG','2350','Mozambique - A','Mozambique - Maputo province and southern part of Gaza province; i.e. south of approximately 24°S.',-26.87,-23.91,31.91,34.5,0);
INSERT INTO "extent" VALUES('EPSG','2351','Mozambique - B','Mozambique - provinces of Gaza; Inhambane and southern parts of Sofala and Manhica; i.e. between approximately 24°S and 20°S.',-24.91,-19.74,31.29,35.65,0);
INSERT INTO "extent" VALUES('EPSG','2352','Mozambique - C','Mozambique - provinces of Sofala north of Beira corridor; Manhica; Tete and Zambezia; i.e. between approximately 20°S and 16°S.',-19.91,-14.01,30.21,39.18,0);
INSERT INTO "extent" VALUES('EPSG','2353','Mozambique - D','Mozambique - provinces of Nampula; Niassa; Cabo Delgado; i.e. north of approximately 16°S.',-16.94,-10.42,34.36,40.9,0);
INSERT INTO "extent" VALUES('EPSG','2354','Indonesia - Kalimantan','Indonesia - Kalimantan.',-4.24,4.37,108.79,119.06,0);
INSERT INTO "extent" VALUES('EPSG','2355','Falkland Islands - East Falkland Island','Falkland Islands (Malvinas) - East Falkland Island.',-52.51,-51.16,-59.98,-57.61,0);
INSERT INTO "extent" VALUES('EPSG','2356','Ecuador - Galapagos onshore','Ecuador - Baltra; Galapagos - onshore.',-1.41,0.18,-91.72,-89.19,0);
INSERT INTO "extent" VALUES('EPSG','2357','Argentina - Tierra del Fuego onshore','Argentina - Tierra del Fuego onshore.',-55.11,-52.59,-68.64,-63.73,0);
INSERT INTO "extent" VALUES('EPSG','2358','Thailand - Bongkot field','Thailand - Bongkot field.',6.74,8.16,102.16,103.05,0);
INSERT INTO "extent" VALUES('EPSG','2359','Vietnam - 14°N to 18°N onshore','Vietnam - onshore between 14°N and 18°N.',14.0,18.01,105.61,109.36,0);
INSERT INTO "extent" VALUES('EPSG','2360','Vietnam - Con Son Island','Vietnam - Con Son Island.',8.57,8.83,106.48,106.8,0);
INSERT INTO "extent" VALUES('EPSG','2361','Myanmar (Burma) - Moattama area','Myanmar (Burma) - Moattama area.',9.48,17.87,93.94,99.66,0);
INSERT INTO "extent" VALUES('EPSG','2362','Iran - Kangan district','Iran - Kangan district.',27.3,28.2,51.8,53.01,0);
INSERT INTO "extent" VALUES('EPSG','2363','Venezuela - east','Venezuela - east - Delta Amacuro; Anzoategui; Bolivar; Monagas; Sucre states.',3.56,10.8,-67.49,-59.8,0);
INSERT INTO "extent" VALUES('EPSG','2364','Philippines - onshore excluding Mindanao','Philippines - onshore excluding Mindanao.',7.75,19.45,116.89,125.88,0);
INSERT INTO "extent" VALUES('EPSG','2365','Philippines - Mindanao onshore','Philippines - Mindanao onshore.',4.99,10.52,119.76,126.65,0);
INSERT INTO "extent" VALUES('EPSG','2366','Spain - mainland onshore','Spain - mainland onshore.',35.95,43.82,-9.37,3.39,0);
INSERT INTO "extent" VALUES('EPSG','2367','Spain - mainland northeast','Spain - onshore mainland north of the parallel of approximately 41°58''N from approximately 6°35''W to the meridian of 4°W of Greenwich and then a line from 41°58''N, 4°W through 40°N, 0°E of Greenwich.',39.96,43.82,-9.37,3.39,0);
INSERT INTO "extent" VALUES('EPSG','2368','Spain - mainland southwest','Spain - onshore mainland south of the parallel of approximately 41°58''N from approximately 6°35''W to the meridian of 4°W of Greenwich and then a line from 41°58''N, 4°W through 40°N, 0°E of Greenwich.',35.95,41.98,-7.54,0.28,0);
INSERT INTO "extent" VALUES('EPSG','2369','Seychelles - Mahe Island','Seychelles - Mahe Island.',-4.86,-4.5,55.3,55.59,0);
INSERT INTO "extent" VALUES('EPSG','2370','Europe - former Yugoslavia onshore','Bosnia and Herzegovina; Croatia - onshore; Kosovo; Montenegro - onshore; North Macedonia; Serbia; Slovenia - onshore.',40.85,46.88,13.38,23.04,0);
INSERT INTO "extent" VALUES('EPSG','2371','Nigeria - south','Nigeria - onshore south.',4.22,6.95,4.35,9.45,0);
INSERT INTO "extent" VALUES('EPSG','2372','Italy - mainland','Italy - mainland including San Marino and Vatican City State.',37.86,47.1,6.62,18.58,0);
INSERT INTO "extent" VALUES('EPSG','2373','USA - Alaska including EEZ','United States (USA) - Alaska including EEZ.',47.88,74.71,167.65,-129.99,0);
INSERT INTO "extent" VALUES('EPSG','2374','USA - CONUS including EEZ','United States (USA) - CONUS including EEZ -onshore and offshore - Alabama; Arizona; Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming. US Gulf of Mexico (GoM) OCS.',23.81,49.38,-129.17,-65.69,0);
INSERT INTO "extent" VALUES('EPSG','2375','Canada - Saskatchewan','Canada - Saskatchewan.',49.0,60.01,-110.0,-101.34,0);
INSERT INTO "extent" VALUES('EPSG','2376','Canada - Alberta','Canada - Alberta.',48.99,60.0,-120.0,-109.98,0);
INSERT INTO "extent" VALUES('EPSG','2377','USA - Delaware and Maryland','United States (USA) - Delaware and Maryland.',37.97,39.85,-79.49,-74.97,0);
INSERT INTO "extent" VALUES('EPSG','2378','USA - New England - south (CT, MA, NH, RI, VT)','United States (USA) - Connecticut; Massachusetts; New Hampshire; Rhode Island; Vermont.',40.98,45.31,-73.73,-69.86,0);
INSERT INTO "extent" VALUES('EPSG','2379','USA - Texas east of 100°W','United States (USA) - Texas east of 100°W.',25.83,34.58,-100.0,-93.5,0);
INSERT INTO "extent" VALUES('EPSG','2380','USA - Texas west of 100°W','United States (USA) - Texas west of 100°W.',28.04,36.5,-106.66,-100.0,0);
INSERT INTO "extent" VALUES('EPSG','2381','USA - Oregon and Washington','United States (USA) - Oregon and Washington.',41.98,49.05,-124.79,-116.47,0);
INSERT INTO "extent" VALUES('EPSG','2382','USA - Idaho and Montana - east of 113°W','United States (USA) - Idaho and Montana - east of 113°W.',41.99,49.01,-113.0,-104.04,0);
INSERT INTO "extent" VALUES('EPSG','2383','USA - Idaho and Montana - west of 113°W','United States (USA) - Idaho and Montana - west of 113°W.',41.99,49.01,-117.24,-113.0,0);
INSERT INTO "extent" VALUES('EPSG','2384','Canada - Alberta and British Columbia','Canada - Alberta; British Columbia.',48.25,60.01,-139.04,-109.98,0);
INSERT INTO "extent" VALUES('EPSG','2385','Panama - Canal Zone','Panama - Canal Zone.',8.82,9.45,-80.07,-79.46,0);
INSERT INTO "extent" VALUES('EPSG','2386','Greenland - Hayes Peninsula','Greenland - Hayes Peninsula.',75.86,79.2,-73.29,-60.98,0);
INSERT INTO "extent" VALUES('EPSG','2387','USA - Alaska - Aleutian Islands east of 180°E','United States (USA) - Alaska - Aleutian Islands onshore east of 180°E.',51.54,54.34,-178.3,-164.84,0);
INSERT INTO "extent" VALUES('EPSG','2388','USA - Alaska - Aleutian Islands west of 180°W','United States (USA) - Alaska - Aleutian Islands onshore west of 180°W.',51.3,53.07,172.42,179.86,0);
INSERT INTO "extent" VALUES('EPSG','2389','USA - CONUS east of Mississippi River - onshore','United States (USA) - CONUS east of Mississippi River - onshore - including entire states of Louisiana; Missouri; Minnesota as well as Alabama; Connecticut; Delaware; Florida; Georgia; Illinois; Indiana; Kentucky; Maine; Maryland; Massachusetts; Michigan; Mississippi; New Hampshire; New Jersey; New York; North Carolina; Ohio; Pennsylvania; Rhode Island; South Carolina; Tennessee; Vermont; Virginia; West Virginia; Wisconsin.',24.41,49.38,-97.22,-66.91,0);
INSERT INTO "extent" VALUES('EPSG','2390','USA - CONUS west of Mississippi River - onshore','United States (USA) - CONUS west of Mississippi River - onshore - excludes those states covered under Area 2389 - Includes Arizona; Arkansas; California; Colorado; Idaho; Iowa; Kansas; Montana; Nebraska; Nevada; New Mexico; North Dakota; Oklahoma; Oregon; South Dakota; Texas; Utah; Washington; Wyoming.',25.83,49.05,-124.79,-89.64,0);
INSERT INTO "extent" VALUES('EPSG','2391','Oman - Masirah Island','Oman - Masirah Island.',20.12,20.74,58.58,59.01,0);
INSERT INTO "extent" VALUES('EPSG','2392','UAE - Abu al Bu Khoosh','United Arab Emirates (UAE) - Abu Dhabi offshore - Abu al Bu Khoosh.',25.33,25.54,53.03,53.4,0);
INSERT INTO "extent" VALUES('EPSG','2393','Algeria - Hassi Messaoud','Algeria - Hassi Messaoud.',31.48,32.09,5.59,6.5,0);
INSERT INTO "extent" VALUES('EPSG','2394','UK - Great Britain and UKCS','United Kingdom (UKCS) - Great Britain (GB) - England; Scotland; Wales; UKCS including North Sea.',49.15,63.83,-6.0,3.4,1);
INSERT INTO "extent" VALUES('EPSG','2395','UK - England','United Kingdom (UK) - England onshore.',49.81,55.85,-6.5,1.84,0);
INSERT INTO "extent" VALUES('EPSG','2396','UK - England and Wales, Isle of Man','United Kingdom (UK) - England and Wales; Isle of Man - onshore.',49.81,55.85,-6.5,1.84,0);
INSERT INTO "extent" VALUES('EPSG','2397','UK - Scotland','United Kingdom (UK) - Scotland (including Orkney and Shetland Islands), onshore and nearshore.',54.57,60.9,-8.74,-0.65,0);
INSERT INTO "extent" VALUES('EPSG','2398','UK - Wales','United Kingdom (UK) - Wales onshore.',51.28,53.48,-5.34,-2.65,0);
INSERT INTO "extent" VALUES('EPSG','2399','South America - Bolivia; Chile; Ecuador; Guyana; Peru; Venezuela','Bolivia; Chile - onshore north of 43°30''S; Ecuador - mainland onshore; Guyana - onshore; Peru - onshore; Venezuela - onshore.',-43.5,12.25,-81.41,-56.47,0);
INSERT INTO "extent" VALUES('EPSG','2400','Bolivia - Madidi','Bolivia - Madidi.',-14.43,-13.56,-68.96,-67.79,0);
INSERT INTO "extent" VALUES('EPSG','2401','Bolivia - Block 20','Bolivia - Block 20.',-21.71,-21.09,-63.44,-62.95,0);
INSERT INTO "extent" VALUES('EPSG','2402','Chile - onshore north of 21°30''S','Chile - onshore north of 21°30''S.',-21.51,-17.5,-70.49,-68.18,0);
INSERT INTO "extent" VALUES('EPSG','2403','Chile - onshore 39°S to 43°30''S','Chile - onshore between 39°S and 43°30''S.',-43.5,-38.99,-74.48,-71.38,0);
INSERT INTO "extent" VALUES('EPSG','2404','Oman - block 4','Oman - block 4.',19.58,21.17,56.5,59.02,0);
INSERT INTO "extent" VALUES('EPSG','2405','Kazakhstan - Caspian Sea','Kazakhstan - Caspian Sea.',41.15,46.97,48.9,53.15,0);
INSERT INTO "extent" VALUES('EPSG','2406','Qatar - offshore','Qatar - offshore.',24.64,27.05,50.55,53.04,0);
INSERT INTO "extent" VALUES('EPSG','2407','Greenland - south of 72°N','Greenland - south of 72°N.',59.75,72.0,-55.0,-40.0,1);
INSERT INTO "extent" VALUES('EPSG','2408','Japan - Okinawa','Japan - onshore Okinawa.',23.98,26.91,122.83,131.38,0);
INSERT INTO "extent" VALUES('EPSG','2409','Asia - Japan and South Korea','Japan - onshore; South Korea - onshore.',20.37,45.54,122.83,145.87,0);
INSERT INTO "extent" VALUES('EPSG','2410','Canada - NWT; Nunavut; Saskatchewan','Canada - Northwest Territories; Nunavut; Saskatchewan.',49.0,83.17,-136.46,-60.72,0);
INSERT INTO "extent" VALUES('EPSG','2411','Asia - India mainland and Nepal','India - mainland onshore; Nepal.',8.02,35.51,68.13,97.42,0);
INSERT INTO "extent" VALUES('EPSG','2412','USA - Alaska mainland','United States (USA) - Alaska mainland.',54.34,71.4,-168.26,-129.99,0);
INSERT INTO "extent" VALUES('EPSG','2413','Bahamas - main islands onshore','Bahamas - onshore southwest of a line from 27°30''N, 77°30''W through 23°15''N, 74°30''W to 22°30''N, 72°30''W.',20.86,27.29,-79.04,-72.68,0);
INSERT INTO "extent" VALUES('EPSG','2414','Bahamas (San Salvador Island) - onshore','Bahamas (San Salvador Island) - onshore.',23.9,24.19,-74.6,-74.37,0);
INSERT INTO "extent" VALUES('EPSG','2415','Canada - Manitoba and Ontario','Canada - Manitoba; Ontario.',41.67,60.01,-102.0,-74.35,0);
INSERT INTO "extent" VALUES('EPSG','2416','Canada - eastern provinces','Canada - onshore - New Brunswick; Newfoundland and Labrador; Nova Scotia; Prince Edward Island; Quebec.',43.41,62.62,-79.85,-52.54,0);
INSERT INTO "extent" VALUES('EPSG','2417','Canada - Yukon','Canada - Yukon.',59.99,69.7,-141.01,-123.91,0);
INSERT INTO "extent" VALUES('EPSG','2418','Caribbean - central (DMA tfm)','Antigua; Barbados; Barbuda; Cuba; Dominican Republic; Grand Cayman; Jamaica; Turks and Caicos Islands. Note: does not include other islands within this geographic area.',13.0,23.25,-85.01,-59.37,0);
INSERT INTO "extent" VALUES('EPSG','2419','Central America - Belize to Costa Rica','Onshore Belize, Costa Rica, El Salvador, Guatemala, Honduras and Nicaragua.',7.98,18.49,-92.29,-82.53,0);
INSERT INTO "extent" VALUES('EPSG','2420','Europe - west (DMA ED50 mean)','Austria; Belgium; Denmark; Finland; Faroe islands; France; Germany (west); Gibraltar; Greece; Italy; Luxembourg; Netherlands; Norway; Portugal; Spain; Sweden; Switzerland.',34.88,71.21,-9.56,31.59,0);
INSERT INTO "extent" VALUES('EPSG','2421','Europe - west central (by country)','Austria; Denmark; France; Germany (west); Netherlands; Switzerland.',42.33,57.8,-4.87,17.17,0);
INSERT INTO "extent" VALUES('EPSG','2422','Slovenia - Gorenjska - central','Slovenia - central Gorenjska (Upper Carniola) with part of the Kamnik or Savinja Alps.',46.14,46.45,14.01,14.61,0);
INSERT INTO "extent" VALUES('EPSG','2423','Europe - FSU onshore','Armenia; Azerbaijan; Belarus; Estonia - onshore; Georgia - onshore; Kazakhstan; Kyrgyzstan; Latvia - onshore; Lithuania - onshore; Moldova; Russian Federation - onshore; Tajikistan; Turkmenistan; Ukraine - onshore; Uzbekistan.',35.14,81.91,19.57,-168.97,0);
INSERT INTO "extent" VALUES('EPSG','2424','USA - HARN','American Samoa; Puerto Rico and the Virgin Islands; United States (USA) - Alabama; Alaska; Arizona; Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Hawaii; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming.',NULL,NULL,NULL,NULL,1);
INSERT INTO "extent" VALUES('EPSG','2425','Japan - 45°20''N to 46°N; 141°E to 142°E','Japan - onshore mainland 45°20''N to 46°N; 141°E to 142°E.',45.33,45.54,141.56,142.0,0);
INSERT INTO "extent" VALUES('EPSG','2426','Japan - 45°20''N to 46°N; 142°E to 143°E','Japan - onshore 45°20''N to 46°N; 142°E to 143°E.',45.33,45.54,142.0,142.27,0);
INSERT INTO "extent" VALUES('EPSG','2427','Japan - 44°40''N to 45°20''N; 141°E to 142°E','Japan - onshore mainland 44°40''N to 45°20''N; 141°E to 142°E.',44.66,45.34,141.5,142.0,0);
INSERT INTO "extent" VALUES('EPSG','2428','Japan - 44°40''N to 45°20''N; 142°E to 143°E','Japan - onshore 44°40''N to 45°20''N; 142°E to 143°E.',44.66,45.34,142.0,142.97,0);
INSERT INTO "extent" VALUES('EPSG','2429','Japan - 44°N to 44°40''N; 141°E to 142°E','Japan - onshore mainland 44°N to 44°40''N; 141°E to 142°E.',43.99,44.67,141.58,142.0,0);
INSERT INTO "extent" VALUES('EPSG','2430','Japan - 44°N to 44°40''N; 142°E to 143°E','Japan - 44°N to 44°40''N; 142°E to 143°E.',43.99,44.67,142.0,143.0,0);
INSERT INTO "extent" VALUES('EPSG','2431','Japan - 44°N to 44°40''N; 143°E to 144°E','Japan - onshore 44°N to 44°40''N; 143°E to 144°E.',43.99,44.65,143.0,144.0,0);
INSERT INTO "extent" VALUES('EPSG','2432','Japan - 44°N to 44°40''N; 144°E to 145°E','Japan - onshore 44°N to 44°40''N; 144°E to 145°E.',43.99,44.19,144.0,145.0,0);
INSERT INTO "extent" VALUES('EPSG','2433','Japan - 43°20''N to 44°N; 141°E to 142°E','Japan - onshore 43°20''N to 44°N; 141°E to 142°E.',43.33,44.0,141.26,142.0,0);
INSERT INTO "extent" VALUES('EPSG','2434','Japan - 43°20''N to 44°N; 142°E to 143°E','Japan - 43°20''N to 44°N; 142°E to 143°E.',43.33,44.0,142.0,143.0,0);
INSERT INTO "extent" VALUES('EPSG','2435','Japan - 43°20''N to 44°N; 143°E to 144°E','Japan - 43°20''N to 44°N; 143°E to 144°E.',43.33,44.0,143.0,144.0,0);
INSERT INTO "extent" VALUES('EPSG','2436','Japan - 43°20''N to 44°N; 144°E to 145°E','Japan - 43°20''N to 44°N; 144°E to 145°E.',43.33,44.0,144.0,145.0,0);
INSERT INTO "extent" VALUES('EPSG','2437','Japan - north of 43°20''N; 145°E to 146°E','Japan - onshore north of 43°20''N and west of 145°E.',43.33,44.4,145.0,145.87,0);
INSERT INTO "extent" VALUES('EPSG','2438','Japan - 42°40''N to 43°25''N; 140°E to 141°E','Japan - onshore 42°40''N to 43°25''N; 140°E to 141°E.',42.66,43.42,140.0,141.0,0);
INSERT INTO "extent" VALUES('EPSG','2439','Japan - 42°40''N to 43°20''N; 141°E to 142°E','Japan - 42°40''N to 43°20''N; 141°E to 142°E.',42.66,43.34,141.0,142.0,0);
INSERT INTO "extent" VALUES('EPSG','2440','Japan - 42°40''N to 43°20''N; 142°E to 143°E','Japan - 42°40''N to 43°20''N; 142°E to 143°E.',42.66,43.34,142.0,143.0,0);
INSERT INTO "extent" VALUES('EPSG','2441','Japan - 42°40''N to 43°20''N; 143°E to 144°E','Japan - 42°40''N to 43°20''N; 143°E to 144°E.',42.66,43.34,143.0,144.0,0);
INSERT INTO "extent" VALUES('EPSG','2442','Japan - 42°40''N to 43°20''N; 144°E to 145°E','Japan - onshore 42°40''N to 43°20''N; 144°E to 145°E.',42.84,43.34,144.0,145.0,0);
INSERT INTO "extent" VALUES('EPSG','2443','Japan - 42°40''N to 43°20''N; 145°E to 146°E','Japan - onshore 42°40''N to 43°20''N; 145°E to 146°E.',42.93,43.34,145.0,145.87,0);
INSERT INTO "extent" VALUES('EPSG','2444','Japan - north of 42°N; west of 140°E','Japan - onshore mainland north of 42°N and west of 140°E.',42.05,42.73,139.7,140.0,0);
INSERT INTO "extent" VALUES('EPSG','2445','Japan - 42°N to 42°40''N; 140°E to 141°E','Japan - 42°N to 42°40''N; 140°E to 141°E.',41.99,42.67,140.0,141.0,0);
INSERT INTO "extent" VALUES('EPSG','2446','Japan - 42°N to 42°40''N; 141°E to 142°E','Japan - onshore 42°N to 42°40''N; 141°E to 142°E.',42.24,42.67,141.0,142.0,0);
INSERT INTO "extent" VALUES('EPSG','2447','Japan - 42°N to 42°40''N; 142°E to 143°E','Japan - onshore 42°N to 42°40''N; 142°E to 143°E.',42.02,42.67,142.0,143.0,0);
INSERT INTO "extent" VALUES('EPSG','2448','Japan - south of 42°40''N; 143°E to 144°E','Japan - onshore south of 42°40''N; east of 143°E.',41.87,42.67,143.0,143.76,0);
INSERT INTO "extent" VALUES('EPSG','2449','Japan - 41°20''N to 42°N; west of 141°E','Japan - onshore mainland 41°20''N to 42°N; west of 141°E.',41.33,42.0,139.91,141.0,0);
INSERT INTO "extent" VALUES('EPSG','2450','Japan - 41°20''N to 42°N; 141°E to 142°E','Japan - onshore 41°20''N to 42°N; 141°E to 142°E.',41.33,41.96,141.0,141.53,0);
INSERT INTO "extent" VALUES('EPSG','2451','Japan - 40°40''N to 41°20''N; 140°E to 141°E','Japan - 40°40''N to 41°20''N; 140°E to 141°E.',40.66,41.34,140.0,141.0,0);
INSERT INTO "extent" VALUES('EPSG','2452','Japan - 40°40''N to 41°20''N; 141°E to 142°E','Japan - onshore 40°40''N to 41°20''N; 141°E to 142°E.',40.66,41.34,141.0,141.53,0);
INSERT INTO "extent" VALUES('EPSG','2453','Japan - 40°N to 40°48''N; 139°E to 140°E','Japan - onshore 40°N to 40°48''N; 139°E to 140°E.',39.99,40.8,139.63,140.0,0);
INSERT INTO "extent" VALUES('EPSG','2454','Japan - 40°N to 40°40''N; 140°E to 141°E','Japan - 40°N to 40°40''N; 140°E to 141°E.',39.99,40.67,140.0,141.0,0);
INSERT INTO "extent" VALUES('EPSG','2455','Japan - 40°N to 40°40''N; 141°E to 142°E','Japan - 40°N to 40°40''N; 141°E to 142°E.',39.99,40.67,141.0,142.0,0);
INSERT INTO "extent" VALUES('EPSG','2456','Japan - 39°20''N to 40°N; 139°E to 140°E','Japan - onshore 39°20''N to 40°N; 139°E to 140°E.',39.33,40.0,139.63,140.0,0);
INSERT INTO "extent" VALUES('EPSG','2457','Japan - 39°20''N to 40°N; 140°E to 141°E','Japan - 39°20''N to 40°N; 140°E to 141°E.',39.33,40.0,140.0,141.0,0);
INSERT INTO "extent" VALUES('EPSG','2458','Japan - 39°20''N to 40°N; east of 141°E','Japan - onshore 39°20''N to 40°N; east of 141°E.',39.33,40.0,141.0,142.14,0);
INSERT INTO "extent" VALUES('EPSG','2459','Japan - 38°40''N to 39°20''N; 139°E to 140°E','Japan - onshore 38°40''N to 39°20''N; 139°E to 140°E.',38.66,39.34,139.55,140.0,0);
INSERT INTO "extent" VALUES('EPSG','2460','Japan - 38°40''N to 39°20''N; 140°E to 141°E','Japan - 38°40''N to 39°20''N; 140°E to 141°E.',38.66,39.34,140.0,141.0,0);
INSERT INTO "extent" VALUES('EPSG','2461','Japan - 38°40''N to 39°20''N; 141°E to 142°E','Japan - onshore 38°40''N to 39°20''N; 141°E to 142°E.',38.66,39.34,141.0,141.99,0);
INSERT INTO "extent" VALUES('EPSG','2462','Japan - 38°N to 38°40''N; 139°E to 140°E','Japan - onshore 38°N to 38°40''N; 139°E to 140°E.',37.99,38.67,139.11,140.0,0);
INSERT INTO "extent" VALUES('EPSG','2463','Japan - 38°N to 38°40''N; 140°E to 141°E','Japan - 38°N to 38°40''N; 140°E to 141°E.',37.99,38.67,140.0,141.0,0);
INSERT INTO "extent" VALUES('EPSG','2464','Japan - 38°N to 38°40''N; 141°E to 142°E','Japan - onshore 38°N to 38°40''N; 141°E to 142°E.',38.08,38.67,141.0,141.62,0);
INSERT INTO "extent" VALUES('EPSG','2465','Japan - 37°20''N to 38°N; 136°E to 137°E','Japan - onshore 37°20''N to 38°N; 136°E to 137°E.',37.33,37.47,136.67,137.0,0);
INSERT INTO "extent" VALUES('EPSG','2466','Japan - 37°20''N to 38°N; 137°E to 138°E','Japan - onshore 37°20''N to 38°N; 137°E to 138°E.',37.33,37.58,137.0,137.43,0);
INSERT INTO "extent" VALUES('EPSG','2467','Japan - 37°20''N to 38°N; 138°E to 139°E','Japan - onshore mainland 37°20''N to 38°N; 138°E to 139°E.',37.33,37.97,138.39,139.0,0);
INSERT INTO "extent" VALUES('EPSG','2468','Japan - 37°20''N to 38°N; 139°E to 140°E','Japan - 37°20''N to 38°N; 139°E to 140°E.',37.33,38.0,139.0,140.0,0);
INSERT INTO "extent" VALUES('EPSG','2469','Japan - 37°20''N to 38°N; 140°E to 141°E','Japan - 37°20''N to 38°N; 140°E to 141°E.',37.33,38.0,140.0,141.0,0);
INSERT INTO "extent" VALUES('EPSG','2470','Japan - 37°20''N to 38°N; 141°E to 142°E','Japan - onshore 37°20''N to 38°N; 141°E to 142°E.',37.33,37.87,141.0,141.11,0);
INSERT INTO "extent" VALUES('EPSG','2471','Japan - 36°40''N to 37°20''N; 136°E to 137°E','Japan - onshore 36°40''N to 37°20''N; 136°E to 137°E.',36.66,37.34,136.58,137.0,0);
INSERT INTO "extent" VALUES('EPSG','2472','Japan - 36°40''N to 37°20''N; 137°E to 138°E','Japan - 36°40''N to 37°20''N; 137°E to 138°E.',36.66,37.34,137.0,138.0,0);
INSERT INTO "extent" VALUES('EPSG','2473','Japan - 36°40''N to 37°20''N; 138°E to 139°E','Japan - 36°40''N to 37°20''N; 138°E to 139°E.',36.66,37.34,138.0,139.0,0);
INSERT INTO "extent" VALUES('EPSG','2474','Japan - 36°40''N to 37°20''N; 139°E to 140°E','Japan - 36°40''N to 37°20''N; 139°E to 140°E.',36.66,37.34,139.0,140.0,0);
INSERT INTO "extent" VALUES('EPSG','2475','Japan - 36°40''N to 37°20''N; east of 140°E','Japan - onshore between 36°40''N and 37°20''N; east of 140°E.',36.66,37.34,140.0,141.1,0);
INSERT INTO "extent" VALUES('EPSG','2476','Japan - 36°N to 36°40''N; west of137°E','Japan - onshore between 36°N and 36°40''N; west of 137°E.',35.99,36.67,135.9,137.0,0);
INSERT INTO "extent" VALUES('EPSG','2477','Japan - 36°N to 36°40''N; 137°E to 138°E','Japan - 36°N to 36°40''N; 137°E to 138°E.',35.99,36.67,137.0,138.0,0);
INSERT INTO "extent" VALUES('EPSG','2478','Japan - 36°N to 36°40''N; 138°E to 139°E','Japan - 36°N to 36°40''N; 138°E to 139°E.',35.99,36.67,138.0,139.0,0);
INSERT INTO "extent" VALUES('EPSG','2479','Japan - 36°N to 36°40''N; 139°E to 140°E','Japan - 36°N to 36°40''N; 139°E to 140°E.',35.99,36.67,139.0,140.0,0);
INSERT INTO "extent" VALUES('EPSG','2480','Japan - 36°N to 36°40''N; 140°E to 141°E','Japan - onshore 36°N to 36°40''N; 140°E to 141°E.',35.99,36.67,140.0,140.77,0);
INSERT INTO "extent" VALUES('EPSG','2481','Japan - 35°20''N to 36°N; 132°E to 133°E','Japan - onshore mainland 35°20''N to 36°N; 132°E to 133°E.',35.33,35.58,132.56,133.0,0);
INSERT INTO "extent" VALUES('EPSG','2482','Japan - 35°20''N to 36°N; 133°E to 134°E','Japan - onshore mainland 35°20''N to 36°N; 133°E to 134°E.',35.33,35.64,133.0,134.0,0);
INSERT INTO "extent" VALUES('EPSG','2483','Japan - 35°20''N to 36°N; 134°E to 135°E','Japan - onshore 35°20''N to 36°N; 134°E to 135°E.',35.33,35.73,134.0,135.0,0);
INSERT INTO "extent" VALUES('EPSG','2484','Japan - 35°20''N to 36°N; 135°E to 136°E','Japan - 35°20''N to 36°N; 135°E to 136°E.',35.33,36.0,135.0,136.0,0);
INSERT INTO "extent" VALUES('EPSG','2485','Japan - 35°20''N to 36°N; 136°E to 137°E','Japan - 35°20''N to 36°N; 136°E to 137°E.',35.33,36.0,136.0,137.0,0);
INSERT INTO "extent" VALUES('EPSG','2486','Japan - 35°20''N to 36°N; 137°E to 138°E','Japan - 35°20''N to 36°N; 137°E to 138°E.',35.33,36.0,137.0,138.0,0);
INSERT INTO "extent" VALUES('EPSG','2487','Japan - 35°20''N to 36°N; 138°E to 139°E','Japan - 35°20''N to 36°N; 138°E to 139°E.',35.33,36.0,138.0,139.0,0);
INSERT INTO "extent" VALUES('EPSG','2488','Japan - 35°20''N to 36°N; 139°E to 140°E','Japan - 35°20''N to 36°N; 139°E to 140°E.',35.33,36.0,139.0,140.0,0);
INSERT INTO "extent" VALUES('EPSG','2489','Japan - 35°20''N to 36°N; 140°E to 141°E','Japan - onshore 35°20''N to 36°N; 140°E to 141°E.',35.33,36.0,140.0,140.9,0);
INSERT INTO "extent" VALUES('EPSG','2490','Japan - 34°40''N to 35°20''N; 132°E to 133°E','Japan - 34°40''N to 35°20''N; 132°E to 133°E.',34.66,35.34,132.0,133.0,0);
INSERT INTO "extent" VALUES('EPSG','2491','Japan - 34°40''N to 35°20''N; 133°E to 134°E','Japan - 34°40''N to 35°20''N; 133°E to 134°E.',34.66,35.34,133.0,134.0,0);
INSERT INTO "extent" VALUES('EPSG','2492','Japan - 34°40''N to 35°20''N; 134°E to 135°E','Japan - 34°40''N to 35°20''N; 134°E to 135°E.',34.66,35.34,134.0,135.0,0);
INSERT INTO "extent" VALUES('EPSG','2493','Japan - 34°40N'' to 35°20''N; 135°E to 136°E','Japan - 34°40N'' to 35°20''N; 135°E to 136°E.',34.66,35.34,135.0,136.0,0);
INSERT INTO "extent" VALUES('EPSG','2494','Japan - 34°40''N to 35°20''N; 136°E to 137°E','Japan - 34°40''N to 35°20''N; 136°E to 137°E.',34.66,35.34,136.0,137.0,0);
INSERT INTO "extent" VALUES('EPSG','2495','Japan - 34°40''N to 35°20''N; 137°E to 138°E','Japan - 34°40''N to 35°20''N; 137°E to 138°E.',34.66,35.34,137.0,138.0,0);
INSERT INTO "extent" VALUES('EPSG','2496','Japan - 34°40''N to 35°20''N; 138°E to 139°E','Japan - 34°40''N to 35°20''N; 138°E to 139°E.',34.66,35.34,138.0,139.0,0);
INSERT INTO "extent" VALUES('EPSG','2497','Japan - 34°40''N to 35°20''N; 139°E to 140°E','Japan - onshore mainland 34°40''N to 35°20''N; 139°E to 140°E.',34.66,35.34,139.0,140.0,0);
INSERT INTO "extent" VALUES('EPSG','2498','Japan - 34°40''N to 35°20''N; 140°E to 141°E','Japan - onshore 34°40''N to 35°20''N; 140°E to 141°E.',34.87,35.34,140.0,140.48,0);
INSERT INTO "extent" VALUES('EPSG','2499','Japan - 34°N to 34°40''N; 130°E to 131°E','Japan - onshore 34°N to 34°40''N; 130°E to 131°E.',33.99,34.48,130.81,131.0,0);
INSERT INTO "extent" VALUES('EPSG','2500','Japan - north of 34°N; 131°E to 132°E','Japan - onshore north of 34°N; between 131°E and 132°E.',33.99,34.9,131.0,132.0,0);
INSERT INTO "extent" VALUES('EPSG','2501','Japan - 34°N to 34°40''N; 132°E to 133°E','Japan - 34°N to 34°40''N; 132°E to 133°E.',33.99,34.67,132.0,133.0,0);
INSERT INTO "extent" VALUES('EPSG','2502','Japan - 34°N to 34°40''N; 133°E to 134°E','Japan - 34°N to 34°40''N; 133°E to 134°E.',33.99,34.67,133.0,134.0,0);
INSERT INTO "extent" VALUES('EPSG','2503','Japan - 34°N to 34°40''N; 134°E to 135°E','Japan - 34°N to 34°40''N; 134°E to 135°E.',33.99,34.67,134.0,135.0,0);
INSERT INTO "extent" VALUES('EPSG','2504','Japan - 34°N to 34°40''N; 135°E to 136°E','Japan - 34°N to 34°40''N; 135°E to 136°E.',33.99,34.67,135.0,136.0,0);
INSERT INTO "extent" VALUES('EPSG','2505','Japan - 34°N to 34°40''N; 136°E to 137°E','Japan - 34°N to 34°40''N; 136°E to 137°E.',33.99,34.67,136.0,137.0,0);
INSERT INTO "extent" VALUES('EPSG','2506','Japan - 34°N to 34°40''N; 137°E to 138°E','Japan - onshore 34°N to 34°40''N; 137°E to 138°E.',34.51,34.67,137.0,138.0,0);
INSERT INTO "extent" VALUES('EPSG','2507','Japan - 34°N to 34°40''N; 138°E to 139°E','Japan - onshore 34°N to 34°40''N; 138°E to 139°E.',34.54,34.67,138.0,139.0,0);
INSERT INTO "extent" VALUES('EPSG','2508','Japan - 33°20''N to 34°N; 129°E to 130°E','Japan - onshore mainland 33°20''N to 34°N; 129°E to 130°E.',33.33,33.59,129.38,130.0,0);
INSERT INTO "extent" VALUES('EPSG','2509','Japan - 33°20''N to 34°N; 130°E to 131°E','Japan - onshore mainland 33°20''N to 34°N; 130°E to 131°E.',33.33,34.0,130.0,131.0,0);
INSERT INTO "extent" VALUES('EPSG','2510','Japan - 33°20''N to 34°N; 131°E to 132°E','Japan - 33°20''N to 34°N; 131°E to 132°E.',33.33,34.0,131.0,132.0,0);
INSERT INTO "extent" VALUES('EPSG','2511','Japan - 33°20''N to 34°N; 132°E to 133°E','Japan - 33°20''N to 34°N; 132°E to 133°E.',33.33,34.0,132.0,133.0,0);
INSERT INTO "extent" VALUES('EPSG','2512','Japan - 33°20''N to 34°N; 133°E to 134°E','Japan - 33°20''N to 34°N; 133°E to 134°E.',33.33,34.0,133.0,134.0,0);
INSERT INTO "extent" VALUES('EPSG','2513','Japan - 33°20''N to 34°N; 134°E to 135°E','Japan - onshore 33°20''N to 34°N; 134°E to 135°E.',33.33,34.0,134.0,134.81,0);
INSERT INTO "extent" VALUES('EPSG','2514','Japan - 33°20''N to 34°N; 135°E to 136°E','Japan - onshore 33°20''N to 34°N; 135°E to 136°E.',33.4,34.0,135.0,136.0,0);
INSERT INTO "extent" VALUES('EPSG','2515','Japan - 33°20''N to 34°N; 136°E to 137°E','Japan - onshore 33°20''N to 34°N; 136°E to 137°E.',33.54,34.0,136.0,136.34,0);
INSERT INTO "extent" VALUES('EPSG','2516','Japan - 32°40''N to 33°20''N; 129°E to 130°E','Japan - onshore mainland 32°40''N to 33°20''N; 129°E to 130°E.',32.51,33.34,129.3,130.0,0);
INSERT INTO "extent" VALUES('EPSG','2517','Japan - 32°40''N to 33°20''N; 130°E to 131°E','Japan - 32°40''N to 33°20''N; 130°E to 131°E.',32.66,33.34,130.0,131.0,0);
INSERT INTO "extent" VALUES('EPSG','2518','Japan - 32°40''N to 33°20''N; 131°E to 132°E','Japan - 32°40''N to 33°20''N; 131°E to 132°E.',32.66,33.34,131.0,132.0,0);
INSERT INTO "extent" VALUES('EPSG','2519','Japan - 32°40''N to 33°20''N; 132°E to 133°E','Japan - onshore mainland 32°40''N to 33°20''N; 132°E to 133°E.',32.69,33.34,132.0,133.0,0);
INSERT INTO "extent" VALUES('EPSG','2520','Japan - 32°40''N to 33°20''N; 133°E to 134°E','Japan - onshore 32°40''N to 33°20''N; 133°E to 134°E.',32.7,33.34,133.0,134.0,0);
INSERT INTO "extent" VALUES('EPSG','2521','Japan - 32°40''N to 33°20''N; 134°E to 135°E','Japan - onshore 32°40''N to 33°20''N; 134°E to 135°E.',33.19,33.34,134.0,134.27,0);
INSERT INTO "extent" VALUES('EPSG','2522','Japan - 32°N to 32°40''N; 129°54''E to 131°E','Japan - onshore 32°N to 32°40''N; 129°54''E to 131°E.',31.99,32.67,129.89,131.0,0);
INSERT INTO "extent" VALUES('EPSG','2523','Japan - 32°N to 32°40''N; 131°E to 132°E','Japan - onshore 32°N to 32°40''N; 131°E to 132°E.',31.99,32.67,131.0,131.91,0);
INSERT INTO "extent" VALUES('EPSG','2524','Japan - 31°20''N to 32°N; 130°E to 131°E','Japan - onshore mainland 31°20''N to 32°N; 130°E to 131°E.',31.33,32.0,130.1,131.0,0);
INSERT INTO "extent" VALUES('EPSG','2525','Japan - 31°20''N to 32°N; 131°E to 132°E','Japan - onshore 31°20''N to 32°N; 131°E to 132°E.',31.33,32.0,131.0,131.55,0);
INSERT INTO "extent" VALUES('EPSG','2526','Japan - onshore mainland south of 31°20''N','Japan - onshore mainland south of 31°20''N.',30.94,31.34,130.14,131.19,0);
INSERT INTO "extent" VALUES('EPSG','2527','USA - Texas - SPCS83 - SC','United States (USA) - Texas - counties of Aransas; Atascosa; Austin; Bandera; Bee; Bexar; Brazoria; Brewster; Caldwell; Calhoun; Chambers; Colorado; Comal; De Witt; Dimmit; Edwards; Fayette; <NAME>; Frio; Galveston; Goliad; Gonzales; Guadalupe; Harris; Hays; Jackson; Jefferson; Karnes; Kendall; Kerr; Kinney; La Salle; Lavaca; Live Oak; Matagorda; Maverick; McMullen; Medina; Presidio; Real; Refugio; Terrell; Uvalde; <NAME>; Victoria; Waller; Wharton; Wilson; Zavala.',27.78,30.67,-105.0,-93.76,0);
INSERT INTO "extent" VALUES('EPSG','2528','USA - Texas - SPCS83 - S','United States (USA) - Texas - counties of Brooks; Cameron; Duval; Hidalgo; <NAME>; <NAME>; Kenedy; Kleberg; Nueces; San Patricio; Starr; Webb; Willacy; Zapata.',25.83,28.21,-100.2,-96.85,0);
INSERT INTO "extent" VALUES('EPSG','2529','USA - Louisiana - SPCS83 - S','United States (USA) - Louisiana - counties of Acadia; Allen; Ascension; Assumption; Beauregard; Calcasieu; Cameron; East Baton Rouge; East Feliciana; Evangeline; Iberia; Iberville; Jefferson; <NAME>; Lafayette; LaFourche; Livingston; Orleans; Plaquemines; Pointe Coupee; St Bernard; St Charles; St Helena; St James; St John the Baptist; St Landry; St Martin; St Mary; St Tammany; Tangipahoa; Terrebonne; Vermilion; Washington; West Baton Rouge; West Feliciana.',28.85,31.07,-93.94,-88.75,0);
INSERT INTO "extent" VALUES('EPSG','2530','UK - Northern Ireland - onshore','United Kingdom (UK) - Northern Ireland (Ulster) - onshore.',53.96,55.36,-8.18,-5.34,0);
INSERT INTO "extent" VALUES('EPSG','2531','Denmark - onshore Jutland and Funen','Denmark - Jutland and Funen - onshore.',54.67,57.8,8.0,11.29,0);
INSERT INTO "extent" VALUES('EPSG','2532','Denmark - onshore Zealand and Lolland','Denmark - Zealand and Lolland (onshore).',54.51,56.79,10.79,12.69,0);
INSERT INTO "extent" VALUES('EPSG','2533','Denmark - onshore Bornholm','Denmark - Bornholm onshore.',54.94,55.38,14.59,15.25,0);
INSERT INTO "extent" VALUES('EPSG','2534','World - N hemisphere - 3-degree CM 027°E','Between 25°30''E and 28°30''E, northern hemisphere.',0.0,84.0,25.5,28.5,0);
INSERT INTO "extent" VALUES('EPSG','2535','World - N hemisphere - 3-degree CM 030°E','Between 28°30''E and 31°30''E, northern hemisphere.',0.0,84.0,28.5,31.5,0);
INSERT INTO "extent" VALUES('EPSG','2536','World - N hemisphere - 3-degree CM 033°E','Between 31°30''E and 34°30''E, northern hemisphere.',0.0,84.0,31.5,34.5,0);
INSERT INTO "extent" VALUES('EPSG','2537','World - N hemisphere - 3-degree CM 036°E','Between 34°30''E and 37°30''E, northern hemisphere.',0.0,84.0,34.5,37.5,0);
INSERT INTO "extent" VALUES('EPSG','2538','World - N hemisphere - 3-degree CM 039°E','Between 37°30''E and 40°30''E, northern hemisphere.',0.0,84.0,37.5,40.5,0);
INSERT INTO "extent" VALUES('EPSG','2539','World - N hemisphere - 3-degree CM 042°E','Between 40°30''E and 43°30''E, northern hemisphere.',0.0,84.0,40.5,43.5,0);
INSERT INTO "extent" VALUES('EPSG','2540','World - N hemisphere - 3-degree CM 045°E','Between 43°30''E and 46°30''E, northern hemisphere.',0.0,84.0,43.5,46.5,0);
INSERT INTO "extent" VALUES('EPSG','2541','Germany - West Germany N','Germany - states of former West Germany - onshore north of 52°20''N.',52.33,55.09,6.58,11.59,0);
INSERT INTO "extent" VALUES('EPSG','2542','Germany - West Germany C','Germany - states of former West Germany - between 50°20''N and 52°20''N.',50.33,52.34,5.86,12.03,0);
INSERT INTO "extent" VALUES('EPSG','2543','Germany - West Germany S','Germany - states of former West Germany - south of 50°20''N.',47.27,50.34,6.11,13.84,0);
INSERT INTO "extent" VALUES('EPSG','2544','Germany - Thuringen','Germany - Thuringen.',50.2,51.64,9.92,12.56,0);
INSERT INTO "extent" VALUES('EPSG','2545','Germany - Saxony','Germany - Sachsen.',50.2,51.66,11.89,15.04,0);
INSERT INTO "extent" VALUES('EPSG','2546','Romania - offshore','Romania - offshore.',43.44,45.2,28.64,31.41,0);
INSERT INTO "extent" VALUES('EPSG','2547','Serbia and Montenegro - Montenegro','Serbia and Montenegro - Montenegro.',41.82,43.53,18.44,20.37,1);
INSERT INTO "extent" VALUES('EPSG','2548','Africa - AOF west of 10°W','French West Africa onshore west of 10°W - Guinea, Mali, Mauritania, Senegal.',8.29,26.01,-17.59,-10.0,0);
INSERT INTO "extent" VALUES('EPSG','2549','Africa - AOF 10°W to 3.5°W','French West Africa between 10°W and 3°30''W - Burkina Faso, Côte d''Ivoire (Ivory Coast), Guinea, Mali, Mauritania.',4.29,27.3,-10.0,-3.49,0);
INSERT INTO "extent" VALUES('EPSG','2550','Africa - AOF 3.5°W to 4°E','French West Africa onshore between 3°30''W and 4°E - Benin, Burkina Faso, Côte d''Ivoire (Ivory Coast), Mali, Niger, Togo.',5.03,24.18,-3.5,4.0,0);
INSERT INTO "extent" VALUES('EPSG','2551','Africa - AOF 4°E to 9°E','French West Africa between 4°E and 9°E - Mali, Niger.',12.82,21.79,4.0,9.0,0);
INSERT INTO "extent" VALUES('EPSG','2552','Africa - AEF 9°E to 14°E','French Equatorial Africa onshore west of 14°E - Cameroon, Chad, Congo, Gabon, Niger - between 9°E and 14°E.',-5.06,23.53,8.45,14.0,0);
INSERT INTO "extent" VALUES('EPSG','2553','Africa - AEF 14°E to 21°E','French Equatorial Africa between 14°E and 21°E - Cameroon, Central African Republic, Chad, Congo, Gabon, Niger.',-4.91,23.46,14.0,21.0,0);
INSERT INTO "extent" VALUES('EPSG','2554','Africa - AEF east of 21°E','French Equatorial Africa east of 21°E - Central African Republic, Chad.',4.12,21.06,21.0,27.46,0);
INSERT INTO "extent" VALUES('EPSG','2555','Cameroon - coastal area','Cameroon - coastal area.',2.16,4.99,8.45,10.4,0);
INSERT INTO "extent" VALUES('EPSG','2556','Greenland - north of 81°N','Greenland - onshore north of 81°N.',81.0,83.67,-65.06,-11.81,0);
INSERT INTO "extent" VALUES('EPSG','2557','Greenland - east - 78°N to 81°N','Greenland - east of 44°W and between 78°N and 81°N, onshore.',78.0,81.0,-44.0,-14.33,0);
INSERT INTO "extent" VALUES('EPSG','2558','Greenland - east - 75°N to 78°N','Greenland - east of 44°W and between 75°N and 78°N, onshore.',75.0,78.0,-44.0,-17.12,0);
INSERT INTO "extent" VALUES('EPSG','2559','Greenland - east - 72°N to 75°N','Greenland - east of 38°W and between 72°N and 75°N, onshore.',72.0,75.0,-38.0,-17.21,0);
INSERT INTO "extent" VALUES('EPSG','2560','Greenland - east - 69°N to 72°N','Greenland - east of 38°W and between 69°N and 72°N, onshore.',69.0,72.0,-38.0,-21.32,0);
INSERT INTO "extent" VALUES('EPSG','2561','Greenland - east - 66°N to 69°N','Greenland - east of 42°W and between 66°N and 69°N, onshore.',66.0,69.0,-42.0,-25.14,0);
INSERT INTO "extent" VALUES('EPSG','2562','Greenland - east - 63°N to 66°N','Greenland - east of 46°W and between 63°N and 66°N, onshore.',63.0,66.0,-46.0,-36.0,0);
INSERT INTO "extent" VALUES('EPSG','2563','Greenland - west - 78°N to 81°N','Greenland - west of 44°W and between 78°N and 81°N, onshore.',78.0,81.0,-73.29,-44.0,0);
INSERT INTO "extent" VALUES('EPSG','2564','Greenland - west - 75°N to 78°N','Greenland - west of 44°W and between 75°N and 78°N, onshore.',75.0,78.0,-72.79,-44.0,0);
INSERT INTO "extent" VALUES('EPSG','2565','Greenland - west - 72°N to 75°N','Greenland - west of 38°W and between 72°N and 75°N, onshore.',72.0,75.0,-58.21,-38.0,0);
INSERT INTO "extent" VALUES('EPSG','2566','Greenland - west - 69°N to 72°N','Greenland - west of 38°W and between 69°N and 72°N, onshore.',69.0,72.0,-56.06,-38.0,0);
INSERT INTO "extent" VALUES('EPSG','2567','Greenland - west - 66°N to 69°N','Greenland - west of 42°W and between 66°N and 69°N, onshore.',66.0,69.0,-54.09,-42.0,0);
INSERT INTO "extent" VALUES('EPSG','2568','Greenland - west - 63°N to 66°N','Greenland - west of 46°W and between 63°N and 66°N, onshore.',63.0,66.0,-53.7,-46.0,0);
INSERT INTO "extent" VALUES('EPSG','2569','Greenland - south of 63°N','Greenland - onshore south of 63°N.',59.74,63.0,-50.72,-41.33,0);
INSERT INTO "extent" VALUES('EPSG','2570','Greenland - Scoresbysund area','Greenland - Scoresbysund area onshore.',68.66,74.58,-29.69,-19.89,0);
INSERT INTO "extent" VALUES('EPSG','2571','Greenland - Ammassalik area','Greenland - Ammassalik area onshore.',65.52,65.91,-38.86,-36.81,0);
INSERT INTO "extent" VALUES('EPSG','2572','Greenland - southwest coast east of 48°W','Greenland - southwest coast east of 48°W.',59.74,62.05,-48.0,-42.52,0);
INSERT INTO "extent" VALUES('EPSG','2573','Greenland - southwest coast 54°W to 48°W','Greenland - southwest coast between 54°W and 48°W.',60.63,73.05,-54.0,-48.0,0);
INSERT INTO "extent" VALUES('EPSG','2574','Congo - coastal area and offshore','Congo - coastal area and offshore.',-6.91,-3.55,8.84,12.34,0);
INSERT INTO "extent" VALUES('EPSG','2575','Australia - onshore','Australia - Australian Capital Territory; New South Wales; Northern Territory; Queensland; South Australia; Tasmania; Western Australia; Victoria.',-43.7,-9.86,112.85,153.69,0);
INSERT INTO "extent" VALUES('EPSG','2576','Australia - AGD84','Australia - Queensland, South Australia, Western Australia, federal areas offshore west of 129°E.',-38.53,-9.37,109.23,153.61,0);
INSERT INTO "extent" VALUES('EPSG','2577','Indonesia - Java Sea - offshore northwest Java','Indonesia - southern Java Sea offshore northwest Java.',-6.89,-4.07,105.77,110.01,0);
INSERT INTO "extent" VALUES('EPSG','2578','Slovenia - upper Soca Valley','Slovenia - upper Soca Valley and Julian Alps.',46.16,46.49,13.38,13.87,0);
INSERT INTO "extent" VALUES('EPSG','2579','Slovenia - Gorica','Slovenia - Gorica region including the Trnovo Forest, Nanos and Idrija Mountains.',45.77,46.18,13.47,14.11,0);
INSERT INTO "extent" VALUES('EPSG','2580','Slovenia - upper Savinja','Slovenia - upper Savinja region with part of Koroska (Slovene Carinthia).',46.21,46.56,14.55,15.0,0);
INSERT INTO "extent" VALUES('EPSG','2581','Slovenia - Suha Krajina','Slovenia - Suha Krajina with the Ribnica and Zuzemberk area.',45.66,45.89,14.57,15.08,0);
INSERT INTO "extent" VALUES('EPSG','2582','Slovenia - Karst','Slovenia - The Karst with part of the Gorica area.',45.64,45.9,13.57,14.12,0);
INSERT INTO "extent" VALUES('EPSG','2583','Slovenia - Littoral onshore','Slovenia - the Slovene Littoral with parts of the Karst and the Brkini Hills - onshore.',45.44,45.73,13.5,14.24,0);
INSERT INTO "extent" VALUES('EPSG','2584','Slovenia - Bela Krajina','Slovenia - Bela Krajina including the broad region of Crnomelj and Metlika.',45.42,45.74,15.06,15.36,0);
INSERT INTO "extent" VALUES('EPSG','2585','Slovenia - Pohorje','Slovenia - Pohorje with the Paski Kozjak and Konjiska Gora (Mountain).',46.28,46.58,15.15,15.54,0);
INSERT INTO "extent" VALUES('EPSG','2586','Slovenia - lower Posavje','Slovenia - lower Posavje (the Sava Basin) with part of the Kozjansko region.',45.81,46.17,15.2,15.73,0);
INSERT INTO "extent" VALUES('EPSG','2587','Slovenia - Maribor and Ptuj','Slovenia - Maribor and Ptuj with parts of the Kozjak range and the Slovenske Gorice (the Slovene Humpback).',46.33,46.74,15.44,16.0,0);
INSERT INTO "extent" VALUES('EPSG','2588','Indonesia - Bali Sea west','Indonesia - offshore Madura Strait and western Bali Sea.',-8.46,-6.8,112.8,117.01,0);
INSERT INTO "extent" VALUES('EPSG','2589','Indonesia - West Papua - Tangguh','Indonesia - West Papua (formerly Irian Jaya) - Tangguh.',-2.94,-1.97,131.89,133.82,0);
INSERT INTO "extent" VALUES('EPSG','2590','Cameroon - Garoua area','Cameroon - Garoua area.',8.92,9.87,12.9,14.19,0);
INSERT INTO "extent" VALUES('EPSG','2591','Cameroon - N''Djamena area','Cameroon - N''Djamena area.',11.7,12.77,14.17,15.09,0);
INSERT INTO "extent" VALUES('EPSG','2592','Azerbaijan - offshore and Sangachal','Azerbaijan - Caspian offshore and onshore Sangachal terminal.',37.89,42.59,48.66,51.73,0);
INSERT INTO "extent" VALUES('EPSG','2593','Asia - FSU - Azerbaijan and Georgia','Azerbaijan (including Caspian) and Georgia onshore.',37.89,43.59,39.99,51.73,0);
INSERT INTO "extent" VALUES('EPSG','2594','Azerbaijan - coastal area Baku to Astara','Azerbaijan - coastal area Baku to Astara.',38.31,40.33,48.93,50.4,0);
INSERT INTO "extent" VALUES('EPSG','2595','Egypt - Western Desert','Egypt - Western Desert.',25.71,31.68,24.7,30.0,0);
INSERT INTO "extent" VALUES('EPSG','2596','Argentina - Tierra del Fuego offshore west of 66°W','Argentina - Tierra del Fuego offshore Atlantic west of 66°W.',-54.61,-51.65,-68.62,-66.0,0);
INSERT INTO "extent" VALUES('EPSG','2597','Argentina - Tierra del Fuego offshore east of 66°W','Argentina - Tierra del Fuego offshore Atlantic east of 66°W.',-54.93,-51.36,-66.0,-61.49,0);
INSERT INTO "extent" VALUES('EPSG','2598','Algeria - District 3','Algeria - District 3 (In Salah).',25.0,32.0,1.0,3.3,0);
INSERT INTO "extent" VALUES('EPSG','2599','Algeria - In Amenas','Algeria - In Amenas block.',27.5,28.3,8.83,9.92,0);
INSERT INTO "extent" VALUES('EPSG','2600','Algeria - Hassi Bir Reikaz','Algeria - Hassi Bir Reikaz.',31.75,32.42,7.16,8.0,0);
INSERT INTO "extent" VALUES('EPSG','2601','Norway - offshore north of 62°N; Svalbard','Norway - offshore north of 62°N. Also Svalbard - onshore and offshore.',62.0,84.73,-3.35,38.0,0);
INSERT INTO "extent" VALUES('EPSG','2602','Palestine Territory','Palestine Territory.',31.21,32.55,34.17,35.58,0);
INSERT INTO "extent" VALUES('EPSG','2603','Asia - Middle East - Israel and Palestine Territory onshore','Israel - onshore; Palestine Territory - onshore.',29.45,33.28,34.17,35.69,0);
INSERT INTO "extent" VALUES('EPSG','2604','World - N hemisphere - 3-degree CM 048°E','Between 46°30''E and 49°30''E, northern hemisphere.',0.0,84.0,46.5,49.5,0);
INSERT INTO "extent" VALUES('EPSG','2605','World - N hemisphere - 3-degree CM 051°E','Between 49°30''E and 52°30''E, northern hemisphere.',0.0,84.0,49.5,52.5,0);
INSERT INTO "extent" VALUES('EPSG','2606','World - N hemisphere - 3-degree CM 054°E','Between 52°30''E and 55°30''E, northern hemisphere.',0.0,84.0,52.5,55.5,0);
INSERT INTO "extent" VALUES('EPSG','2607','World - N hemisphere - 3-degree CM 057°E','Between 55°30''E and 58°30''E, northern hemisphere.',0.0,84.0,55.5,58.5,0);
INSERT INTO "extent" VALUES('EPSG','2608','World - N hemisphere - 3-degree CM 060°E','Between 58°30''E and 61°30''E, northern hemisphere.',0.0,84.0,58.5,61.5,0);
INSERT INTO "extent" VALUES('EPSG','2609','World - N hemisphere - 3-degree CM 063°E','Between 61°30''E and 64°30''E, northern hemisphere.',0.0,84.0,61.5,64.5,0);
INSERT INTO "extent" VALUES('EPSG','2610','World - N hemisphere - 3-degree CM 066°E','Between 64°30''E and 67°30''E, northern hemisphere.',0.0,84.0,64.5,67.5,0);
INSERT INTO "extent" VALUES('EPSG','2611','World - N hemisphere - 3-degree CM 069°E','Between 67°30''E and 70°30''E, northern hemisphere.',0.0,84.0,67.5,70.5,0);
INSERT INTO "extent" VALUES('EPSG','2612','World - N hemisphere - 3-degree CM 072°E','Between 70°30''E and 73°30''E, northern hemisphere.',0.0,84.0,70.5,73.5,0);
INSERT INTO "extent" VALUES('EPSG','2613','World - N hemisphere - 3-degree CM 075°E','Between 73°30''E and 76°30''E, northern hemisphere.',0.0,84.0,73.5,76.5,0);
INSERT INTO "extent" VALUES('EPSG','2614','World - N hemisphere - 3-degree CM 078°E','Between 76°30''E and 79°30''E, northern hemisphere.',0.0,84.0,76.5,79.5,0);
INSERT INTO "extent" VALUES('EPSG','2615','World - N hemisphere - 3-degree CM 081°E','Between 79°30''E and 82°30''E, northern hemisphere.',0.0,84.0,79.5,82.5,0);
INSERT INTO "extent" VALUES('EPSG','2616','World - N hemisphere - 3-degree CM 084°E','Between 82°30''E and 85°30''E, northern hemisphere.',0.0,84.0,82.5,85.5,0);
INSERT INTO "extent" VALUES('EPSG','2617','World - N hemisphere - 3-degree CM 087°E','Between 85°30''E and 88°30''E, northern hemisphere.',0.0,84.0,85.5,88.5,0);
INSERT INTO "extent" VALUES('EPSG','2618','World - N hemisphere - 3-degree CM 090°E','Between 88°30''E and 91°30''E, northern hemisphere.',0.0,84.0,88.5,91.5,0);
INSERT INTO "extent" VALUES('EPSG','2619','World - N hemisphere - 3-degree CM 093°E','Between 91°30''E and 94°30''E, northern hemisphere.',0.0,84.0,91.5,94.5,0);
INSERT INTO "extent" VALUES('EPSG','2620','World - N hemisphere - 3-degree CM 096°E','Between 94°30''E and 97°30''E, northern hemisphere.',0.0,84.0,94.5,97.5,0);
INSERT INTO "extent" VALUES('EPSG','2621','World - N hemisphere - 3-degree CM 099°E','Between 97°30''E and 100°30''E, northern hemisphere.',0.0,84.0,97.5,100.5,0);
INSERT INTO "extent" VALUES('EPSG','2622','World - N hemisphere - 3-degree CM 102°E','Between 100°30''E and 103°30''E, northern hemisphere.',0.0,84.0,100.5,103.5,0);
INSERT INTO "extent" VALUES('EPSG','2623','World - N hemisphere - 3-degree CM 105°E','Between 103°30''E and 106°30''E, northern hemisphere.',0.0,84.0,103.5,106.5,0);
INSERT INTO "extent" VALUES('EPSG','2624','World - N hemisphere - 3-degree CM 108°E','Between 106°30''E and 109°30''E, northern hemisphere.',0.0,84.0,106.5,109.5,0);
INSERT INTO "extent" VALUES('EPSG','2625','World - N hemisphere - 3-degree CM 111°E','Between 109°30''Eand 112°30''E, northern hemisphere.',0.0,84.0,109.5,112.5,0);
INSERT INTO "extent" VALUES('EPSG','2626','World - N hemisphere - 3-degree CM 114°E','Between 112°30''E and 115°30''E, northern hemisphere.',0.0,84.0,112.5,115.5,0);
INSERT INTO "extent" VALUES('EPSG','2627','World - N hemisphere - 3-degree CM 117°E','Between 115°30''E and 118°30''E, northern hemisphere.',0.0,84.0,115.5,118.5,0);
INSERT INTO "extent" VALUES('EPSG','2628','World - N hemisphere - 3-degree CM 120°E','Between 118°30''E and 121°30''E, northern hemisphere.',0.0,84.0,118.5,121.5,0);
INSERT INTO "extent" VALUES('EPSG','2629','World - N hemisphere - 3-degree CM 123°E','Between 121°30''E and 124°30''E, northern hemisphere.',0.0,84.0,121.5,124.5,0);
INSERT INTO "extent" VALUES('EPSG','2630','World - N hemisphere - 3-degree CM 126°E','Between 124°30''E and 127°30''E, northern hemisphere.',0.0,84.0,124.5,127.5,0);
INSERT INTO "extent" VALUES('EPSG','2631','World - N hemisphere - 3-degree CM 129°E','Between 127°30''E and 130°30''E, northern hemisphere.',0.0,84.0,127.5,130.5,0);
INSERT INTO "extent" VALUES('EPSG','2632','World - N hemisphere - 3-degree CM 132°E','Between 130°30''E and 133°30''E, northern hemisphere.',0.0,84.0,130.5,133.5,0);
INSERT INTO "extent" VALUES('EPSG','2633','World - N hemisphere - 3-degree CM 135°E','Between 133°30''E and 136°30''E, northern hemisphere.',0.0,84.0,133.5,136.5,0);
INSERT INTO "extent" VALUES('EPSG','2634','World - N hemisphere - 3-degree CM 138°E','Between 136°30''E and 139°30''E, northern hemisphere.',0.0,84.0,136.5,139.5,0);
INSERT INTO "extent" VALUES('EPSG','2635','World - N hemisphere - 3-degree CM 141°E','Between 139°30''E and 142°30''E, northern hemisphere.',0.0,84.0,139.5,142.5,0);
INSERT INTO "extent" VALUES('EPSG','2636','World - N hemisphere - 3-degree CM 144°E','Between 142°30''E and 145°30''E, northern hemisphere.',0.0,84.0,142.5,145.5,0);
INSERT INTO "extent" VALUES('EPSG','2637','World - N hemisphere - 3-degree CM 147°E','Between 145°30''E and 148°30''E, northern hemisphere.',0.0,84.0,145.5,148.5,0);
INSERT INTO "extent" VALUES('EPSG','2638','World - N hemisphere - 3-degree CM 150°E','Between 148°30''E and 151°30''E, northern hemisphere.',0.0,84.0,148.5,151.5,0);
INSERT INTO "extent" VALUES('EPSG','2639','World - N hemisphere - 3-degree CM 153°E','Between 151°30''E and 154°30''E, northern hemisphere.',0.0,84.0,151.5,154.5,0);
INSERT INTO "extent" VALUES('EPSG','2640','World - N hemisphere - 3-degree CM 156°E','Between 154°30''E and 157°30''E, northern hemisphere.',0.0,84.0,154.5,157.5,0);
INSERT INTO "extent" VALUES('EPSG','2641','World - N hemisphere - 3-degree CM 159°E','Between 157°30''E and 160°30''E, northern hemisphere.',0.0,84.0,157.5,160.5,0);
INSERT INTO "extent" VALUES('EPSG','2642','World - N hemisphere - 3-degree CM 162°E','Between 160°30''E and 163°30''E, northern hemisphere.',0.0,84.0,160.5,163.5,0);
INSERT INTO "extent" VALUES('EPSG','2643','World - N hemisphere - 3-degree CM 165°E','Between 163°30''E and 166°30''E, northern hemisphere.',0.0,84.0,163.5,166.5,0);
INSERT INTO "extent" VALUES('EPSG','2644','World - N hemisphere - 3-degree CM 168°E','Between 166°30''E and 169°30''E, northern hemisphere.',0.0,84.0,166.5,169.5,0);
INSERT INTO "extent" VALUES('EPSG','2645','World - N hemisphere - 3-degree CM 171°E','Between 169°30''E and 172°30''E, northern hemisphere.',0.0,84.0,169.5,172.5,0);
INSERT INTO "extent" VALUES('EPSG','2646','World - N hemisphere - 3-degree CM 174°E','Between 172°30''E and 175°30''E, northern hemisphere.',0.0,84.0,172.5,175.5,0);
INSERT INTO "extent" VALUES('EPSG','2647','World - N hemisphere - 3-degree CM 177°E','Between 175°30''E and 178°30''E, northern hemisphere.',0.0,84.0,175.5,178.5,0);
INSERT INTO "extent" VALUES('EPSG','2648','World - N hemisphere - 3-degree CM 180°E','Between 178°30''E and 178°30''W, northern hemisphere.',0.0,84.0,178.5,-178.5,0);
INSERT INTO "extent" VALUES('EPSG','2649','World - N hemisphere - 3-degree CM 177°W','Between 178°30''W and 175°30''W, northern hemisphere.',0.0,84.0,-178.5,-175.5,0);
INSERT INTO "extent" VALUES('EPSG','2650','World - N hemisphere - 3-degree CM 174°W','Between 175°30''W and 172°30''W, northern hemisphere.',0.0,84.0,-175.5,-172.5,0);
INSERT INTO "extent" VALUES('EPSG','2651','World - N hemisphere - 3-degree CM 171°W','Between 172°30''W and 169°30''W, northern hemisphere.',0.0,84.0,-172.5,-169.5,0);
INSERT INTO "extent" VALUES('EPSG','2652','World - N hemisphere - 3-degree CM 168°W','Between 169°30''W and 166°30''W, northern hemisphere.',0.0,84.0,-169.5,-166.5,0);
INSERT INTO "extent" VALUES('EPSG','2653','Europe - FSU - 19.5°E to 22.5°E onshore','Estonia, Latvia, Lithuania, Russian Federation (Kaliningrad) and Ukraine - onshore between 19°30''E and 22°30''E.',48.24,59.1,19.57,22.5,0);
INSERT INTO "extent" VALUES('EPSG','2654','Europe - FSU - 22.5°E to 25.5°E onshore','Belarus, Estonia, Latvia, Lithuania, Russian Federation (Kaliningrad) and Ukraine - onshore between 22°30''E and 25°30''E.',47.71,59.75,22.5,25.5,0);
INSERT INTO "extent" VALUES('EPSG','2655','Europe - FSU - 25.5°E to 28.5°E onshore','Belarus, Estonia, Latvia, Lithuania, Moldova, Russian Federation and Ukraine - onshore between 25°30''E and 28°30''E.',45.26,68.93,25.49,28.51,0);
INSERT INTO "extent" VALUES('EPSG','2656','Europe - FSU - 28.5°E to 31.5°E onshore','Belarus, Moldova, Russian Federation and Ukraine - onshore between 28°30''E and 31°30''E.',45.18,69.85,28.5,31.5,0);
INSERT INTO "extent" VALUES('EPSG','2657','Europe - FSU - 31.5°E to 34.5°E onshore','Belarus, Russian Federation and Ukraine - onshore between 31°30''E and 34°30''E.',44.32,70.02,31.5,34.5,0);
INSERT INTO "extent" VALUES('EPSG','2658','Europe - FSU - 34.5°E to 37.5°E onshore','Russian Federation and Ukraine - onshore between 34°30''E and 37°30''E.',44.61,69.39,34.5,37.5,0);
INSERT INTO "extent" VALUES('EPSG','2659','Europe - FSU - 37.5°E to 40.5°E onshore','Georgia, Russian Federation and Ukraine - onshore between 37°30''E and 40°30''E.',43.07,68.8,37.5,40.5,0);
INSERT INTO "extent" VALUES('EPSG','2660','Europe - FSU - 40.5°E to 43.5°E onshore','Georgia, Russian Federation - onshore between 40°30''E and 43°30''E.',41.01,68.74,40.5,43.51,0);
INSERT INTO "extent" VALUES('EPSG','2661','Europe - FSU - 43.5°E to 46.5°E onshore','Armenia, Azerbaijan, Georgia and Russian Federation onshore - between 43°30''E and 46°30''E.',38.84,80.8,43.5,46.5,0);
INSERT INTO "extent" VALUES('EPSG','2662','Europe - FSU - 46.5°E to 49.5°E onshore','Azerbaijan, Georgia, Kazakhstan and Russian Federation onshore - between 46°30''E and 49°30''E.',38.31,80.91,46.5,49.5,0);
INSERT INTO "extent" VALUES('EPSG','2663','Asia - FSU - 49.5°E to 52.5°E onshore','Azerbaijan, Kazakhstan and Russian Federation onshore - between 49°30''E and 52°30''E.',37.66,81.22,49.5,52.5,0);
INSERT INTO "extent" VALUES('EPSG','2664','Asia - FSU - 52.5°E to 55.5°E onshore','Kazakhstan, Russian Federation onshore and Turkmenistan - between 52°30''E and 55°30''E.',37.33,81.41,52.5,55.5,0);
INSERT INTO "extent" VALUES('EPSG','2665','Asia - FSU - 55.5°E to 58.5°E onshore','Kazakhstan, Russian Federation onshore, Turkmenistan and Uzbekistan - between 55°30''E and 58°30''E.',37.64,81.89,55.5,58.5,0);
INSERT INTO "extent" VALUES('EPSG','2666','Asia - FSU - 58.5°E to 61.5°E onshore','Kazakhstan, Russian Federation onshore, Turkmenistan and Uzbekistan - between 58°30''E and 61°30''E.',35.51,81.91,58.5,61.5,0);
INSERT INTO "extent" VALUES('EPSG','2667','Asia - FSU - 61.5°E to 64.5°E onshore','Kazakhstan, Russian Federation onshore, Turkmenistan and Uzbekistan - between 61°30''E and 64°30''E.',35.14,81.77,61.5,64.5,0);
INSERT INTO "extent" VALUES('EPSG','2668','Asia - FSU - 64.5°E to 67.5°E onshore','Kazakhstan, Russian Federation onshore, Tajikistan, Turkmenistan and Uzbekistan - between 64°30''E and 67°30''E.',36.27,81.25,64.5,67.5,0);
INSERT INTO "extent" VALUES('EPSG','2669','Asia - FSU - 67.5°E to 70.5°E onshore','Kazakhstan, Kyrgyzstan, Russian Federation onshore, Tajikistan and Uzbekistan - between 67°30''E and 70°30''E.',36.93,77.07,67.5,70.5,0);
INSERT INTO "extent" VALUES('EPSG','2670','Asia - FSU - 70.5°E to 73.5°E onshore','Kazakhstan, Kyrgyzstan, Russian Federation onshore, Tajikistan and Uzbekistan - between 70°30''E and 73°30''E.',36.67,73.57,70.5,73.5,0);
INSERT INTO "extent" VALUES('EPSG','2671','Asia - FSU - 73.5°E to 76.5°E onshore','Kazakhstan, Kyrgyzstan, Russian Federation onshore and Tajikistan - between 73°30''E and 76°30''E.',37.22,79.71,73.5,76.5,0);
INSERT INTO "extent" VALUES('EPSG','2672','Asia - FSU - 76.5°E to 79.5°E onshore','Kazakhstan, Kyrgyzstan and Russian Federation onshore - between 76°30''E and 79°30''E.',40.44,81.03,76.5,79.5,0);
INSERT INTO "extent" VALUES('EPSG','2673','Asia - FSU - 79.5°E to 82.5°E onshore','Kazakhstan, Kyrgyzstan and Russian Federation onshore - between 79°30''E and 82°30''E.',41.82,81.03,79.5,82.5,0);
INSERT INTO "extent" VALUES('EPSG','2674','Asia - FSU - 82.5°E to 85.5°E onshore','Kazakhstan and Russian Federation onshore - between 82°30''E and 85°30''E.',45.11,77.56,82.5,85.5,0);
INSERT INTO "extent" VALUES('EPSG','2675','Asia - FSU - 85.5°E to 88.5°E onshore','Kazakhstan and Russian Federation onshore - between 85°30''E and 88°30''E.',47.05,77.16,85.5,88.5,0);
INSERT INTO "extent" VALUES('EPSG','2676','Russia - 88.5°E to 91.5°E onshore','Russian Federation - onshore between 88°30''E and 91°30''E.',49.44,81.28,88.5,91.5,0);
INSERT INTO "extent" VALUES('EPSG','2677','Russia - 91.5°E to 94.5°E onshore','Russian Federation - onshore between 91°30''E and 94°30''E.',50.16,81.26,91.5,94.5,0);
INSERT INTO "extent" VALUES('EPSG','2678','Russia - 94.5°E to 97.5°E onshore','Russian Federation - onshore between 94°30''E and 97°30''E.',49.73,81.35,94.5,97.5,0);
INSERT INTO "extent" VALUES('EPSG','2679','Russia - 97.5°E to 100.5°E onshore','Russian Federation - onshore between 97°30''E and 100°30''E.',49.79,80.9,97.5,100.5,0);
INSERT INTO "extent" VALUES('EPSG','2680','Russia - 100.5°E to 103.5°E onshore','Russian Federation - onshore between 100°30''E and 103°30''E.',50.17,79.71,100.5,103.5,0);
INSERT INTO "extent" VALUES('EPSG','2681','Russia - 103.5°E to 106.5°E onshore','Russian Federation - onshore between 103°30''E and 106°30''E.',50.13,79.21,103.5,106.5,0);
INSERT INTO "extent" VALUES('EPSG','2682','Russia - 106.5°E to 109.5°E onshore','Russian Federation - onshore between 106°30''E and 109°30''E.',49.25,78.4,106.5,109.5,0);
INSERT INTO "extent" VALUES('EPSG','2683','Russia - 109.5°E to 112.5°E onshore','Russian Federation - onshore between 109°30''E and 112°30''E.',49.14,76.81,109.5,112.5,0);
INSERT INTO "extent" VALUES('EPSG','2684','Russia - 112.5°E to 115.5°E onshore','Russian Federation - onshore between 112°30''E and 115°30''E.',49.49,76.7,112.5,115.5,0);
INSERT INTO "extent" VALUES('EPSG','2685','Russia - 115.5°E to 118.5°E onshore','Russian Federation - onshore between 115°30''E and 118°30''E.',49.51,74.43,115.5,118.5,0);
INSERT INTO "extent" VALUES('EPSG','2686','Russia - 118.5°E to 121.5°E onshore','Russian Federation - onshore between 118°30''E and 121°30''E.',49.87,73.63,118.5,121.5,0);
INSERT INTO "extent" VALUES('EPSG','2687','Russia - 121.5°E to 124.5°E onshore','Russian Federation - onshore between 121°30''E and 124°30''E.',53.18,74.0,121.5,124.5,0);
INSERT INTO "extent" VALUES('EPSG','2688','Russia - 124.5°E to 127.5°E onshore','Russian Federation - onshore between 124°30''E and 127°30''E.',49.88,74.0,124.5,127.5,0);
INSERT INTO "extent" VALUES('EPSG','2689','Russia - 127.5°E to 130.5°E onshore','Russian Federation - onshore between 127°30''E and 130°30''E.',42.67,73.59,127.5,130.5,0);
INSERT INTO "extent" VALUES('EPSG','2690','Russia - 130.5°E to 133.5°E onshore','Russian Federation - onshore between 130°30''E and 133°30''E.',42.25,71.99,130.5,133.5,0);
INSERT INTO "extent" VALUES('EPSG','2691','Russia - 133.5°E to 136.5°E onshore','Russian Federation - onshore between 133°30''E and 136°30''E.',42.74,75.9,133.5,136.5,0);
INSERT INTO "extent" VALUES('EPSG','2692','Russia - 136.5°E to 139.5°E onshore','Russian Federation - onshore between 136°30''E and 139°30''E.',44.76,76.27,136.5,139.5,0);
INSERT INTO "extent" VALUES('EPSG','2693','Russia - 139.5°E to 142.5°E onshore','Russian Federation - onshore between 139°30''E and 142°30''E.',45.84,76.23,139.5,142.5,0);
INSERT INTO "extent" VALUES('EPSG','2694','Russia - 142.5°E to 145.5°E onshore','Russian Federation - onshore between 142°30''E and 145°30''E.',43.61,75.98,142.5,145.5,0);
INSERT INTO "extent" VALUES('EPSG','2695','Russia - 145.5°E to 148.5°E onshore','Russian Federation - onshore between 145°30''E and 148°30''E.',43.6,76.76,145.5,148.5,0);
INSERT INTO "extent" VALUES('EPSG','2696','Russia - 148.5°E to 151.5°E onshore','Russian Federation - onshore between 148°30''E and 151°30''E.',45.21,76.82,148.5,151.5,0);
INSERT INTO "extent" VALUES('EPSG','2697','Russia - 151.5°E to 154.5°E onshore','Russian Federation - onshore between 151°30''E and 154°30''E.',46.72,76.26,151.5,154.5,0);
INSERT INTO "extent" VALUES('EPSG','2698','Russia - 154.5°E to 157.5°E onshore','Russian Federation - onshore between 154°30''E and 157°30''E.',49.02,77.2,154.5,157.5,0);
INSERT INTO "extent" VALUES('EPSG','2699','Russia - 157.5°E to 160.5°E onshore','Russian Federation - onshore between 157°30''E and 160°30''E.',51.36,71.12,157.5,160.5,0);
INSERT INTO "extent" VALUES('EPSG','2700','Russia - 160.5°E to 163.5°E onshore','Russian Federation - onshore between 160°30''E and 163°30''E.',54.34,70.98,160.5,163.5,0);
INSERT INTO "extent" VALUES('EPSG','2701','Russia - 163.5°E to 166.5°E onshore','Russian Federation - onshore between 163°30''E and 166°30''E.',54.69,69.82,163.5,166.5,0);
INSERT INTO "extent" VALUES('EPSG','2702','Russia - 166.5°E to 169.5°E onshore','Russian Federation - onshore between 166°30''E and 169°30''E.',54.45,70.07,166.5,169.5,0);
INSERT INTO "extent" VALUES('EPSG','2703','Russia - 169.5°E to 172.5°E onshore','Russian Federation - onshore between 169°30''E and 172°30''E.',59.86,70.19,169.5,172.5,0);
INSERT INTO "extent" VALUES('EPSG','2704','Russia - 172.5°E to 175.5°E onshore','Russian Federation - onshore between 172°30''E and 175°30''E.',60.99,70.02,172.5,175.5,0);
INSERT INTO "extent" VALUES('EPSG','2705','Russia - 175.5°E to 178.5°E onshore','Russian Federation - onshore between 175°30''E and 178°30''E.',62.09,71.1,175.5,178.5,0);
INSERT INTO "extent" VALUES('EPSG','2706','Russia - 178.5°E to 178.5°W onshore','Russian Federation - onshore between 178°30''E and 178°30''W.',62.24,71.65,178.5,-178.5,0);
INSERT INTO "extent" VALUES('EPSG','2707','Russia - 178.5°W to 175.5°W onshore','Russian Federation - onshore between 178°30''W and 175°30''W.',64.74,71.61,-178.5,-175.5,0);
INSERT INTO "extent" VALUES('EPSG','2708','Russia - 175.5°W to 172.5°W onshore','Russian Federation - onshore between 175°30''W and 172°30''W.',64.2,67.78,-175.5,-172.5,0);
INSERT INTO "extent" VALUES('EPSG','2709','Russia - 172.5°W to 169.5°W onshore','Russian Federation - onshore between 172°30''W and 169°30''W.',64.35,67.06,-172.5,-169.57,0);
INSERT INTO "extent" VALUES('EPSG','2710','Russia - east of 169.5°W onshore','Russian Federation - onshore between 169°30''W and 166°30''W.',65.7,65.86,-169.22,-168.97,0);
INSERT INTO "extent" VALUES('EPSG','2711','China - west of 76.5°E','China - west of 76°30''E.',35.81,40.65,73.62,76.5,0);
INSERT INTO "extent" VALUES('EPSG','2712','China - 76.5°E to 79.5°E','China - between 76°30''E and 79°30''E.',31.03,41.83,76.5,79.5,0);
INSERT INTO "extent" VALUES('EPSG','2713','China - 79.5°E to 82.5°E','China - between 79°30''E and 82°30''E.',29.95,45.88,79.5,82.51,0);
INSERT INTO "extent" VALUES('EPSG','2714','China - 82.5°E to 85.5°E','China - between 82°30''E and 85°30''E.',28.26,47.23,82.5,85.5,0);
INSERT INTO "extent" VALUES('EPSG','2715','China - 85.5°E to 88.5°E','China - between 85°30''E and 88°30''E.',27.8,49.18,85.5,88.5,0);
INSERT INTO "extent" VALUES('EPSG','2716','China - 88.5°E to 91.5°E','China - between 88°30''E and 91°30''E.',27.32,48.42,88.49,91.51,0);
INSERT INTO "extent" VALUES('EPSG','2717','China - 91.5°E to 94.5°E','China - between 91°30''E and 94°30''E.',27.71,45.13,91.5,94.5,0);
INSERT INTO "extent" VALUES('EPSG','2718','China - 94.5°E to 97.5°E','China - between 94°30''E and 97°30''E.',28.23,44.5,94.5,97.51,0);
INSERT INTO "extent" VALUES('EPSG','2719','China - 97.5°E to 100.5°E','China - between 97°30''E and 100°30''E.',21.43,42.76,97.5,100.5,0);
INSERT INTO "extent" VALUES('EPSG','2720','China - 100.5°E to 103.5°E','China - between 100°30''E and 103°30''E.',21.13,42.69,100.5,103.5,0);
INSERT INTO "extent" VALUES('EPSG','2721','China - 103.5°E to 106.5°E','China - between 103°30''E and 106°30''E.',22.5,42.21,103.5,106.51,0);
INSERT INTO "extent" VALUES('EPSG','2722','China - 106.5°E to 109.5°E onshore','China - onshore between 106°30''E and 109°30''E.',18.19,42.47,106.5,109.51,0);
INSERT INTO "extent" VALUES('EPSG','2723','China - 109.5°E to 112.5°E onshore','China - onshore between 109°30''E and 112°30''E.',18.11,45.11,109.5,112.5,0);
INSERT INTO "extent" VALUES('EPSG','2724','China - 112.5°E to 115.5°E onshore','China - onshore between 112°30''E and 115°30''E.',21.52,45.45,112.5,115.5,0);
INSERT INTO "extent" VALUES('EPSG','2725','China - 115.5°E to 118.5°E onshore','China - onshore between 115°30''E and 118°30''E.',22.6,49.88,115.5,118.5,0);
INSERT INTO "extent" VALUES('EPSG','2726','China - 118.5°E to 121.5°E onshore','China - onshore between 118°30''E and 121°30''E.',24.43,53.33,118.5,121.5,0);
INSERT INTO "extent" VALUES('EPSG','2727','China - 121.5°E to 124.5°E onshore','China - onshore between 121°30''E and 124°30''E.',28.22,53.56,121.5,124.5,0);
INSERT INTO "extent" VALUES('EPSG','2728','China - 124.5°E to 127.5°E onshore','China - onshore between 124°30''E and 127°30''E.',40.19,53.2,124.5,127.5,0);
INSERT INTO "extent" VALUES('EPSG','2729','China - 127.5°E to 130.5°E','China - between 127°30''E and 130°30''E.',41.37,50.25,127.5,130.5,0);
INSERT INTO "extent" VALUES('EPSG','2730','China - 130.5°E to 133.5°E','China - between 130°30''E and 133°30''E.',42.42,48.88,130.5,133.5,0);
INSERT INTO "extent" VALUES('EPSG','2731','China - east of 133.5°E','China - east of 133°30''E.',45.85,48.4,133.5,134.77,0);
INSERT INTO "extent" VALUES('EPSG','2732','World - 6-degree CM 081°W','Between 84°W and 78°W.',-80.0,84.0,-84.0,-78.0,0);
INSERT INTO "extent" VALUES('EPSG','2733','World - 6-degree CM 075°W','Between 78°W and 72°W.',-80.0,84.0,-78.0,-72.0,0);
INSERT INTO "extent" VALUES('EPSG','2734','World - 6-degree CM 069°W','Between 72°W and 66°W.',-80.0,84.0,-72.0,-66.0,0);
INSERT INTO "extent" VALUES('EPSG','2735','World - 6-degree CM 063°W','Between 66°W and 60°W.',-80.0,84.0,-66.0,-60.0,0);
INSERT INTO "extent" VALUES('EPSG','2736','World - 6-degree CM 057°W','Between 60°W and 54°W.',-80.0,84.0,-60.0,-54.0,0);
INSERT INTO "extent" VALUES('EPSG','2737','World - 6-degree CM 051°W','Between 54°W and 48°W.',-80.0,84.0,-54.0,-48.0,0);
INSERT INTO "extent" VALUES('EPSG','2738','World - 6-degree CM 045°W','Between 48°W and 42°W.',-80.0,84.0,-48.0,-42.0,0);
INSERT INTO "extent" VALUES('EPSG','2739','World - 6-degree CM 039°W','Between 42°W and 36°W.',-80.0,84.0,-42.0,-36.0,0);
INSERT INTO "extent" VALUES('EPSG','2740','World - 6-degree CM 033°W','Between 36°W and 30°W.',-80.0,84.0,-36.0,-30.0,0);
INSERT INTO "extent" VALUES('EPSG','2741','World - 6-degree CM 009°E','Between 6°E and 12°E.',-80.0,84.0,6.0,12.0,0);
INSERT INTO "extent" VALUES('EPSG','2742','World - 6-degree CM 015°E','Between 12°E and 18°E.',-80.0,84.0,12.0,18.0,0);
INSERT INTO "extent" VALUES('EPSG','2743','World - 6-degree CM 021°E','Between 18°E and 24°E.',-80.0,84.0,18.0,24.0,0);
INSERT INTO "extent" VALUES('EPSG','2744','World - 6-degree CM 027°E','Between 24°E and 30°E.',-80.0,84.0,24.0,30.0,0);
INSERT INTO "extent" VALUES('EPSG','2745','World - 6-degree CM 033°E','Between 30°E and 36°E.',-80.0,84.0,30.0,36.0,0);
INSERT INTO "extent" VALUES('EPSG','2746','World - 6-degree CM 039°E','Between 36°E and 42°E.',-80.0,84.0,36.0,42.0,0);
INSERT INTO "extent" VALUES('EPSG','2747','Russia - 19.5°E to 22.5°E onshore','Russian Federation - Kaliningrad - onshore between 19°30''E and 22°30''E.',54.32,55.32,19.57,22.5,0);
INSERT INTO "extent" VALUES('EPSG','2748','Russia - 22.5°E to 25.5°E onshore','Russian Federation - onshore between 22°30''E and 25°30''E - Kaliningrad.',54.34,55.07,22.5,22.87,0);
INSERT INTO "extent" VALUES('EPSG','2749','Russia - 25.5°E to 28.5°E onshore','Russian Federation - onshore between 25°30''E and 28°30''E.',56.05,68.93,26.61,28.51,0);
INSERT INTO "extent" VALUES('EPSG','2750','Russia - 28.5°E to 31.5°E onshore','Russian Federation - onshore between 28°30''E and 31°30''E.',52.85,69.85,28.5,31.5,0);
INSERT INTO "extent" VALUES('EPSG','2751','Russia - 31.5°E to 34.5°E onshore','Russian Federation - onshore between 31°30''E and 34°30''E.',51.24,70.02,31.5,34.5,0);
INSERT INTO "extent" VALUES('EPSG','2752','Russia - 34.5°E to 37.5°E onshore','Russian Federation - onshore between 34°30''E and 37°30''E.',44.61,69.39,34.5,37.51,0);
INSERT INTO "extent" VALUES('EPSG','2753','Russia - 37.5°E to 40.5°E onshore','Russian Federation - onshore between 37°30''E and 40°30''E.',43.33,68.8,37.5,40.5,0);
INSERT INTO "extent" VALUES('EPSG','2754','Russia - 40.5°E to 43.5°E onshore','Russian Federation - onshore between 40°30''E and 43°30''E.',42.87,68.74,40.5,43.5,0);
INSERT INTO "extent" VALUES('EPSG','2755','Russia - 43.5°E to 46.5°E onshore','Russian Federation - onshore between 43°30''E and 46°30''E.',41.89,80.8,43.5,46.5,0);
INSERT INTO "extent" VALUES('EPSG','2756','Russia - 46.5°E to 49.5°E onshore','Russian Federation - onshore between 46°30''E and 49°30''E.',41.19,80.91,46.5,49.5,0);
INSERT INTO "extent" VALUES('EPSG','2757','Russia - 49.5°E to 52.5°E onshore','Russian Federation - onshore between 49°30''E and 52°30''E.',42.36,81.22,49.5,52.5,0);
INSERT INTO "extent" VALUES('EPSG','2758','Russia - 52.5°E to 55.5°E onshore','Russian Federation - onshore between 52°30''E and 55°30''E.',50.52,81.41,52.5,55.5,0);
INSERT INTO "extent" VALUES('EPSG','2759','Russia - 55.5°E to 58.5°E onshore','Russian Federation - onshore between 55°30''E and 58°30''E.',50.53,81.89,55.5,58.5,0);
INSERT INTO "extent" VALUES('EPSG','2760','Russia - 58.5°E to 61.5°E onshore','Russian Federation - onshore between 58°30''E and 61°30''E.',50.47,81.91,58.5,61.5,0);
INSERT INTO "extent" VALUES('EPSG','2761','Russia - 61.5°E to 64.5°E onshore','Russian Federation - onshore between 61°30''E and 64°30''E.',51.03,81.77,61.5,64.5,0);
INSERT INTO "extent" VALUES('EPSG','2762','Russia - 64.5°E to 67.5°E onshore','Russian Federation - onshore between 64°30''E and 67°30''E.',54.31,81.25,64.5,67.5,0);
INSERT INTO "extent" VALUES('EPSG','2763','Russia - 67.5°E to 70.5°E onshore','Russian Federation - onshore between 67°30''E and 70°30''E.',54.85,77.07,67.5,70.5,0);
INSERT INTO "extent" VALUES('EPSG','2764','Russia - 70.5°E to 73.5°E onshore','Russian Federation - onshore between 70°30''E and 73°30''E.',53.43,73.57,70.5,73.5,0);
INSERT INTO "extent" VALUES('EPSG','2765','Russia - 73.5°E to 76.5°E onshore','Russian Federation - onshore between 73°30''E and 76°30''E.',53.47,79.71,73.5,76.5,0);
INSERT INTO "extent" VALUES('EPSG','2766','Russia - 76.5°E to 79.5°E onshore','Russian Federation - onshore between 76°30''E and 79°30''E.',51.49,81.03,76.5,79.5,0);
INSERT INTO "extent" VALUES('EPSG','2767','Russia - 79.5°E to 82.5°E onshore','Russian Federation - onshore between 79°30''E and 82°30''E.',50.7,81.03,79.5,82.5,0);
INSERT INTO "extent" VALUES('EPSG','2768','Russia - 82.5°E to 85.5°E onshore','Russian Federation - onshore between 82°30''E and 85°30''E.',49.58,77.56,82.5,85.5,0);
INSERT INTO "extent" VALUES('EPSG','2769','Russia - 85.5°E to 88.5°E onshore','Russian Federation - onshore between 85°30''E and 88°30''E.',49.07,77.16,85.5,88.5,0);
INSERT INTO "extent" VALUES('EPSG','2770','Indonesia - northeast Kalimantan','Indonesia - northeast Kalimantan.',-0.07,4.29,116.96,119.06,0);
INSERT INTO "extent" VALUES('EPSG','2771','Niger - southeast','Niger - southeast',12.8,16.7,7.81,14.9,0);
INSERT INTO "extent" VALUES('EPSG','2772','Asia - FSU - CS63 zone A1','Armenia and Georgia onshore west of 43°02''E.',41.37,43.59,39.99,43.04,0);
INSERT INTO "extent" VALUES('EPSG','2773','Asia - FSU - CS63 zone A2','Armenia and Georgia between 43°02''E and 46°02''E; Azerbaijan west of 46°02''E.',38.87,43.05,43.03,46.04,0);
INSERT INTO "extent" VALUES('EPSG','2774','Asia - FSU - CS63 zone A3','Armenia and Georgia east of 46°02''E; Azerbaijan between 46°02'' and 49°02''E.',38.38,42.1,46.03,49.04,0);
INSERT INTO "extent" VALUES('EPSG','2775','Asia - FSU - CS63 zone A4','Azerbaijan east of 49°02''E.',37.89,42.59,49.03,51.73,0);
INSERT INTO "extent" VALUES('EPSG','2776','Asia - FSU - CS63 zone K2','Kazakhstan between 49°16''E and 52°16''E.',41.15,51.77,49.26,52.27,0);
INSERT INTO "extent" VALUES('EPSG','2777','Asia - FSU - CS63 zone K3','Kazakhstan between 52°16''E and 55°16''E.',41.46,51.79,52.26,55.27,0);
INSERT INTO "extent" VALUES('EPSG','2778','Asia - FSU - CS63 zone K4','Kazakhstan between 55°16''E and 58°16''E.',41.26,51.14,55.26,58.27,0);
INSERT INTO "extent" VALUES('EPSG','2779','Portugal - Selvagens onshore','Portugal - Selvagens islands (Madeira province) - onshore.',29.98,30.21,-16.11,-15.79,0);
INSERT INTO "extent" VALUES('EPSG','2780','Malaysia - East Malaysia - offshore SCS','Malaysia - East Malaysia (Sabah; Sarawak) - offshore South China Sea.',1.56,7.67,109.31,117.31,0);
INSERT INTO "extent" VALUES('EPSG','2781','Iran - Kharg Island','Iran - Kharg Island.',29.16,29.39,50.22,50.42,0);
INSERT INTO "extent" VALUES('EPSG','2782','Iran - Lavan Island and Balal field','Iran - Lavan Island and Balal field.',26.21,26.87,52.49,53.43,0);
INSERT INTO "extent" VALUES('EPSG','2783','Iran - South Pars blocks 2 and 3','Iran - South Pars field phases 2 and 3.',26.58,26.71,52.07,52.28,0);
INSERT INTO "extent" VALUES('EPSG','2784','Canada - south of 60°N','Canada south of 60°N - Alberta, British Columbia (BC), Manitoba, New Brunswick (NB), Newfoundland and Labrador, Nova Scotia (NS), Ontario, Prince Edward Island (PEI), Quebec and Saskatchewan.',41.68,60.0,-139.05,-52.62,1);
INSERT INTO "extent" VALUES('EPSG','2785','Libya - Murzuq and En Naga','Libya - Murzuq and En Naga fields.',27.32,27.67,18.37,18.72,0);
INSERT INTO "extent" VALUES('EPSG','2786','Libya - Mabruk','Libya - Mabruk field.',29.61,30.07,17.13,17.51,0);
INSERT INTO "extent" VALUES('EPSG','2787','Morocco - south of 31.5°N','Morocco onshore south of 35 grads North (31°30''N).',27.66,31.51,-13.24,-3.59,0);
INSERT INTO "extent" VALUES('EPSG','2788','Western Sahara - north of 24.3°N','Western Sahara - onshore north of 27grads North (24°18''N).',24.29,27.67,-15.42,-8.66,0);
INSERT INTO "extent" VALUES('EPSG','2789','Western Sahara - south of 24.3°N','Western Sahara - onshore south of 27grads North (24°18''N).',20.71,24.31,-17.16,-12.0,0);
INSERT INTO "extent" VALUES('EPSG','2790','Africa - 12th parallel N','Senegal - central, Mali - southwest, Burkina Faso - central, Niger - southwest, Nigeria - north, Chad - central. All in proximity to the parallel of latitude of 12°N.',10.26,15.7,-17.19,30.42,0);
INSERT INTO "extent" VALUES('EPSG','2791','Africa - Burkina Faso and SW Niger','Burkina Faso - central; Niger - southwest, in proximity to the parallel of latitude of 12°N.',11.83,14.23,-4.64,4.0,0);
INSERT INTO "extent" VALUES('EPSG','2792','UK - Great Britain mainland onshore','United Kingdom (UK) - Great Britain onshore - England and Wales - mainland; Scotland - mainland and Inner Hebrides.',49.93,58.71,-7.06,1.8,0);
INSERT INTO "extent" VALUES('EPSG','2793','UK - Orkney Islands onshore','United Kingdom (UK) - Great Britain - Scotland - Orkney Islands onshore.',58.72,59.41,-3.48,-2.34,0);
INSERT INTO "extent" VALUES('EPSG','2794','UK - Fair Isle onshore','United Kingdom (UK) - Great Britain - Scotland - Fair Isle onshore.',59.45,59.6,-1.76,-1.5,0);
INSERT INTO "extent" VALUES('EPSG','2795','UK - Shetland Islands onshore','United Kingdom (UK) - Great Britain - Scotland - Shetland Islands onshore.',59.83,60.87,-1.78,-0.67,0);
INSERT INTO "extent" VALUES('EPSG','2796','UK - Foula onshore','United Kingdom (UK) - Great Britain - Scotland - Foula onshore.',60.06,60.2,-2.21,-1.95,0);
INSERT INTO "extent" VALUES('EPSG','2797','UK - Sule Skerry onshore','United Kingdom (UK) - Great Britain - Scotland - Sule Skerry onshore.',59.05,59.13,-4.5,-4.3,0);
INSERT INTO "extent" VALUES('EPSG','2798','UK - North Rona onshore','United Kingdom (UK) - Great Britain - Scotland - North Rona onshore.',59.07,59.19,-5.92,-5.73,0);
INSERT INTO "extent" VALUES('EPSG','2799','UK - Outer Hebrides onshore','United Kingdom (UK) - Great Britain - Scotland - Outer Hebrides onshore.',56.76,58.54,-7.72,-6.1,0);
INSERT INTO "extent" VALUES('EPSG','2800','UK - St. Kilda onshore','United Kingdom (UK) - Great Britain - Scotland - St Kilda onshore.',57.74,57.93,-8.74,-8.41,0);
INSERT INTO "extent" VALUES('EPSG','2801','UK - Flannan Isles onshore','United Kingdom (UK) - Great Britain - Scotland - Flannan Isles onshore.',58.21,58.35,-7.75,-7.46,0);
INSERT INTO "extent" VALUES('EPSG','2802','UK - Scilly Isles onshore','United Kingdom (UK) - Great Britain - England - Isles of Scilly onshore.',49.86,49.99,-6.41,-6.23,0);
INSERT INTO "extent" VALUES('EPSG','2803','Isle of Man - onshore','Isle of Man - onshore.',54.02,54.44,-4.87,-4.27,0);
INSERT INTO "extent" VALUES('EPSG','2804','Europe - Austria and FR Yugoslavia','Austria; Boznia and Herzegovina; Croatia; Czech Republic; FYR Macedonia; Montenegro; Serbia; Slovakia; Slovenia.',40.86,51.05,9.53,23.03,1);
INSERT INTO "extent" VALUES('EPSG','2805','Chile - Tierra del Fuego','Chile - Tierra del Fuego onshore.',-55.96,-51.99,-74.83,-66.33,0);
INSERT INTO "extent" VALUES('EPSG','2806','Iran - northern Gulf coast','Iran - northern Gulf coast area.',29.0,31.67,47.75,50.83,1);
INSERT INTO "extent" VALUES('EPSG','2807','Comoros - Njazidja (Grande Comore)','Comoros - Njazidja (Grande Comore).',-11.99,-11.31,43.16,43.55,0);
INSERT INTO "extent" VALUES('EPSG','2808','Comoros - Nzwani','Comoros - Nzwani.',-12.43,-12.02,44.16,44.59,0);
INSERT INTO "extent" VALUES('EPSG','2809','Comoros - Mwali','Comoros - Mwali.',-12.44,-12.19,43.57,43.92,0);
INSERT INTO "extent" VALUES('EPSG','2810','French Polynesia - Marquesas Islands - Nuku Hiva','French Polynesia - Marquesas Islands - Nuku Hiva.',-9.01,-8.72,-140.31,-139.96,0);
INSERT INTO "extent" VALUES('EPSG','2811','French Polynesia - Society Islands - Moorea and Tahiti','French Polynesia - Society Islands - Moorea and Tahiti.',-17.93,-17.41,-150.0,-149.11,0);
INSERT INTO "extent" VALUES('EPSG','2812','French Polynesia - Society Islands - Bora Bora, Huahine, Raiatea, Tahaa','French Polynesia - Society Islands - Bora Bora, Huahine, Raiatea and Tahaa.',-16.96,-16.17,-151.91,-150.89,0);
INSERT INTO "extent" VALUES('EPSG','2813','New Caledonia - Ouvea','New Caledonia - Loyalty Islands - Ouvea.',-20.77,-20.34,166.44,166.71,0);
INSERT INTO "extent" VALUES('EPSG','2814','New Caledonia - Lifou','New Caledonia - Loyalty Islands - Lifou.',-21.24,-20.62,166.98,167.52,0);
INSERT INTO "extent" VALUES('EPSG','2815','Wallis and Futuna - Wallis','Wallis and Futuna - Wallis.',-13.41,-13.16,-176.25,-176.07,0);
INSERT INTO "extent" VALUES('EPSG','2816','French Southern Territories - Kerguelen onshore','French Southern Territories - Kerguelen onshore.',-49.78,-48.6,68.69,70.62,0);
INSERT INTO "extent" VALUES('EPSG','2817','Antarctica - Adelie Land - Petrels island','Antarctica - Adelie Land - Petrels island.',-66.78,-66.1,139.44,141.5,0);
INSERT INTO "extent" VALUES('EPSG','2818','Antarctica - Adelie Land coastal area','Antarctica - Adelie Land - coastal area between 136°E and 142°E.',-67.13,-65.61,136.0,142.0,0);
INSERT INTO "extent" VALUES('EPSG','2819','New Caledonia - Mare','New Caledonia - Loyalty Islands - Mare.',-21.71,-21.32,167.75,168.19,0);
INSERT INTO "extent" VALUES('EPSG','2820','New Caledonia - Ile des Pins','New Caledonia - Ile des Pins.',-22.73,-22.49,167.36,167.61,0);
INSERT INTO "extent" VALUES('EPSG','2821','New Caledonia - Belep','New Caledonia - Belep.',-19.85,-19.5,163.54,163.75,0);
INSERT INTO "extent" VALUES('EPSG','2822','New Caledonia - Grande Terre','New Caledonia - Grande Terre.',-22.45,-20.03,163.92,167.09,0);
INSERT INTO "extent" VALUES('EPSG','2823','New Caledonia - Grande Terre - Noumea','New Caledonia - Grande Terre - Noumea district.',-22.37,-22.19,166.35,166.54,0);
INSERT INTO "extent" VALUES('EPSG','2824','Caribbean - French Antilles','French Antilles onshore and offshore - Guadeloupe (including Grande Terre, Basse Terre, <NAME>, Les Saintes, Iles de la Petite Terre, La Desirade, St Barthélemy, and northern St Martin) and Martinique.',14.08,18.54,-63.66,-57.52,0);
INSERT INTO "extent" VALUES('EPSG','2825','Africa - Ethiopia and Sudan - 30°E to 36°E','Ethiopia - west of 36°E. South Sudan - east of 30°E. Sudan - between 30°E and 36°E.',3.49,22.24,29.99,36.0,0);
INSERT INTO "extent" VALUES('EPSG','2826','Africa - South Sudan and Sudan - west of 24°E','South Sudan and Sudan - west of 24°E.',8.7,15.76,21.82,24.01,0);
INSERT INTO "extent" VALUES('EPSG','2827','Africa - South Sudan and Sudan - 24°E to 30°E','South Sudan and Sudan - between 24°E and 30°E.',4.21,22.01,23.99,30.01,0);
INSERT INTO "extent" VALUES('EPSG','2828','Guadeloupe - St Martin and St Barthelemy - onshore','Guadeloupe - onshore - St Martin and St Barthélemy islands.',17.82,18.17,-63.21,-62.73,0);
INSERT INTO "extent" VALUES('EPSG','2829','Guadeloupe - Grande-Terre and surrounding islands - onshore','Guadeloupe - onshore - Basse-Terre, Grande-Terre, La Desirade, Marie-Galante, Les Saintes.',15.8,16.55,-61.85,-60.97,0);
INSERT INTO "extent" VALUES('EPSG','2830','World (by country)','World: Afghanistan, Albania, Algeria, American Samoa, Andorra, Angola, Anguilla, Antarctica, Antigua and Barbuda, Argentina, Armenia, Aruba, Australia, Austria, Azerbaijan, Bahamas, Bahrain, Bangladesh, Barbados, Belgium, Belgium, Belize, Benin, Bermuda, Bhutan, Bolivia, Bonaire, Saint Eustasius and Saba, Bosnia and Herzegovina, Botswana, Bouvet Island, Brazil, British Indian Ocean Territory, British Virgin Islands, Brunei Darussalam, Bulgaria, Burkina Faso, Burundi, Cambodia, Cameroon, Canada, Cape Verde, Cayman Islands, Central African Republic, Chad, Chile, China, Christmas Island, Cocos (Keeling) Islands, Comoros, Congo, Cook Islands, Costa Rica, Côte d''Ivoire (Ivory Coast), Croatia, Cuba, Curacao, Cyprus, Czechia, Denmark, Djibouti, Dominica, Dominican Republic, East Timor, Ecuador, Egypt, El Salvador, Equatorial Guinea, Eritrea, Estonia, Eswatini (Swaziland), Ethiopia, Falkland Islands (Malvinas), Faroe Islands, Fiji, Finland, France, French Guiana, French Polynesia, French Southern Territories, Gabon, Gambia, Georgia, Germany, Ghana, Gibraltar, Greece, Greenland, Grenada, Guadeloupe, Guam, Guatemala, Guinea, Guinea-Bissau, Guyana, Haiti, Heard Island and McDonald Islands, Holy See (Vatican City State), Honduras, China - Hong Kong, Hungary, Iceland, India, Indonesia, Islamic Republic of Iran, Iraq, Ireland, Israel, Italy, Jamaica, Japan, Jordan, Kazakhstan, Kenya, Kiribati, Democratic People''s Republic of Korea (North Korea), Republic of Korea (South Korea), Kosovo, Kuwait, Kyrgyzstan, Lao People''s Democratic Republic (Laos), Latvia, Lebanon, Lesotho, Liberia, Libyan Arab Jamahiriya, Liechtenstein, Lithuania, Luxembourg, China - Macao, Madagascar, Malawi, Malaysia, Maldives, Mali, Malta, Marshall Islands, Martinique, Mauritania, Mauritius, Mayotte, Mexico, Federated States of Micronesia, Monaco, Mongolia, Montenegro, Montserrat, Morocco, Mozambique, Myanmar (Burma), Namibia, Nauru, Nepal, Netherlands, New Caledonia, New Zealand, Nicaragua, Niger, Nigeria, Niue, Norfolk Island, North Macedonia, Northern Mariana Islands, Norway, Oman, Pakistan, Palau, Panama, Papua New Guinea (PNG), Paraguay, Peru, Philippines, Pitcairn, Poland, Portugal, Puerto Rico, Qatar, Reunion, Romania, Russian Federation, Rwanda, Saint Kitts and Nevis, Saint Helena, Ascension and Tristan da Cunha, Saint Lucia, Saint Pierre and Miquelon, Saint Vincent and the Grenadines, Samoa, San Marino, Sao Tome and Principe, Saudi Arabia, Senegal, Serbia, Seychelles, Sierra Leone, Singapore, Slovakia (Slovak Republic), Slovenia, Sint Maarten, Solomon Islands, Somalia, South Africa, South Georgia and the South Sandwich Islands, South Sudan, Spain, Sri Lanka, Sudan, Suriname, Svalbard and Jan Mayen, Sweden, Switzerland, Syrian Arab Republic, Taiwan, Tajikistan, United Republic of Tanzania, Thailand, The Democratic Republic of the Congo (Zaire), Togo, Tokelau, Tonga, Trinidad and Tobago, Tunisia, Turkey, Turkmenistan, Turks and Caicos Islands, Tuvalu, Uganda, Ukraine, United Arab Emirates (UAE), United Kingdom (UK), United States (USA), United States Minor Outlying Islands, Uruguay, Uzbekistan, Vanuatu, Venezuela, Vietnam, US Virgin Islands, Wallis and Futuna, Western Sahara, Yemen, Zambia, Zimbabwe.',-90.0,90.0,-180.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','2831','Canada - Atlantic offshore','Canada - offshore Newfoundland and Labrador, New Brunswick and Nova Scotia - west of 44°W and north of 40°N.',40.0,64.21,-67.75,-44.0,0);
INSERT INTO "extent" VALUES('EPSG','2832','Canada - British Columbia','Canada - British Columbia.',48.25,60.01,-139.04,-114.08,0);
INSERT INTO "extent" VALUES('EPSG','2833','Sweden - 12 00','Sweden - communes west of approximately 12°45''E and south of approximately 60°N. See information source for map.',56.74,60.13,10.93,13.11,0);
INSERT INTO "extent" VALUES('EPSG','2834','Sweden - 13 30','Sweden - communes between approximately 12°45''E and 14°15''E and south of approximately 62°10''N. See information source for map.',55.28,62.28,12.12,14.79,0);
INSERT INTO "extent" VALUES('EPSG','2835','Sweden - 15 00','Sweden - communes between approximately 14°15''E and 15°45''E and south of approximately 61°30''N. See information source for map.',55.95,61.62,13.54,16.15,0);
INSERT INTO "extent" VALUES('EPSG','2836','Sweden - 16 30','Sweden - communes between approximately 15°45''E and 17°15''E and south of approximately 62°20''N. See information source for map.',56.15,62.26,15.41,17.63,0);
INSERT INTO "extent" VALUES('EPSG','2837','Sweden - 18 00','Sweden - communes east of approximately 17°15''E between approximately 60°40''N and 58°50''N. See information source for map.',58.66,60.7,17.08,19.61,0);
INSERT INTO "extent" VALUES('EPSG','2838','Sweden - 14 15','Sweden - communes west of approximately 15°E and between approximately 61°35''N and 64°25''N. See information source for map.',61.55,64.39,11.93,15.55,0);
INSERT INTO "extent" VALUES('EPSG','2839','Sweden - 15 45','Sweden - communes between approximately 15°E and 16°30''E and between approximately 60°30''N and 65°N. See information source for map.',60.44,65.13,13.66,17.01,0);
INSERT INTO "extent" VALUES('EPSG','2840','Sweden - 17 15','Sweden - communes between approximately 14°20''E and 18°50''E and between approximately 67°10''N and 62°05''N. See information source for map.',62.12,67.19,14.31,19.04,0);
INSERT INTO "extent" VALUES('EPSG','2841','Sweden - 18 45','Sweden - mainland communes between approximately 18°E and 19°30''E and between approximately 62°50''N and 66°N. Also Gotland. See information source for map.',56.86,66.17,17.18,20.22,0);
INSERT INTO "extent" VALUES('EPSG','2842','Sweden - 20 15','Sweden - communes in Vaasterbotten east of approximately 19°30''E and (i) north of 63°30''N and (ii) south of approximately 65°05''N. Also Norbotten west of approximately 23°20''E. See information source for map.',63.45,69.07,16.08,23.28,0);
INSERT INTO "extent" VALUES('EPSG','2843','Sweden - 21 45','Sweden - communes in Norbotten east of approximately 19°30''E and south of approximately 65°50''N. See information source for map.',65.01,66.43,19.63,22.91,0);
INSERT INTO "extent" VALUES('EPSG','2844','Sweden - 23 15','Sweden - communes east of approximately 21°50''E. See information source for map.',65.49,68.14,21.85,24.17,0);
INSERT INTO "extent" VALUES('EPSG','2845','Sweden - 7.5 gon W','Sweden - communes west of approximately 12°26''E. See information source for map.',57.29,59.73,10.93,12.91,0);
INSERT INTO "extent" VALUES('EPSG','2846','Sweden - 5 gon W','Sweden - communes between approximately 12°26''E and 14°40''E. See information source for map.',55.28,64.39,11.81,15.44,0);
INSERT INTO "extent" VALUES('EPSG','2847','Sweden - 2.5 gon W','Sweden - communes between approximately 14°40''E and 16°55''E. See information source for map.',55.95,67.18,13.66,17.73,0);
INSERT INTO "extent" VALUES('EPSG','2848','Sweden - 0 gon','Sweden - communes between approximately 16°55''E and 19°10''E; Gotland. See information source for map.',56.86,68.54,16.08,20.22,0);
INSERT INTO "extent" VALUES('EPSG','2849','Sweden - 2.5 gon E','Sweden - communes between approximately 19°10''E and 21°25''E. See information source for map.',63.37,69.07,18.4,22.2,0);
INSERT INTO "extent" VALUES('EPSG','2850','Sweden - 5 gon E','Sweden - east of approximately 21°26''E. See information source for map.',65.24,68.58,21.34,24.17,0);
INSERT INTO "extent" VALUES('EPSG','2851','Iceland - onshore west of 24°W','Iceland - onshore west of 24°W.',64.71,65.86,-24.66,-24.0,0);
INSERT INTO "extent" VALUES('EPSG','2852','Iceland - onshore 24°W to 18°W','Iceland - onshore between 24°W and 18°W.',63.34,66.52,-24.0,-18.0,0);
INSERT INTO "extent" VALUES('EPSG','2853','Iceland - onshore east of 18°W','Iceland - onshore east of 18°W.',63.45,66.59,-18.0,-13.38,0);
INSERT INTO "extent" VALUES('EPSG','2854','Europe - 36°W to 30°W','Europe - between 36°W and 30°W.',39.3,39.85,-36.0,-30.0,1);
INSERT INTO "extent" VALUES('EPSG','2855','Europe - 30°W to 24°W','Europe - between 30°W and 24°W.',25.1,65.8,-30.0,-24.0,1);
INSERT INTO "extent" VALUES('EPSG','2856','Europe - 24°W to 18°W','Europe - between 24°W and 18°W.',27.6,66.5,-24.0,-18.0,1);
INSERT INTO "extent" VALUES('EPSG','2857','Europe - 18°W to 12°W','Europe - between 18°W and 12°W.',27.6,66.55,-18.0,-12.0,1);
INSERT INTO "extent" VALUES('EPSG','2858','Europe - 12°W to 6°W','Europe - between 12°W and 6°W.',36.0,62.33,-12.0,-6.0,1);
INSERT INTO "extent" VALUES('EPSG','2859','Europe - 6°W to 0°W','Europe - between 6°W and 0°W.',34.75,62.33,-6.0,0.0,1);
INSERT INTO "extent" VALUES('EPSG','2860','Germany - west of 6°E','Germany - onshore and offshore west of 6°E.',50.97,55.92,3.34,6.0,0);
INSERT INTO "extent" VALUES('EPSG','2861','Germany - 6°E to 12°E','Germany - onshore and offshore between 6°E and 12°E, including Mecklenburg-Vorpommern west of 12°E and Schleswig-Holstein.',47.27,55.47,6.0,12.0,0);
INSERT INTO "extent" VALUES('EPSG','2862','Germany - east of 12°E','Germany - onshore and offshore east of 12°E, including Brandenburg (all state, including that part west of 12°E) and Mecklenburg-Vorpommern east of 12°E.',47.46,55.03,11.57,15.04,0);
INSERT INTO "extent" VALUES('EPSG','2863','Europe - 18°E to 24°E','Europe - between 18°E and 24°E.',34.8,75.0,18.0,24.0,1);
INSERT INTO "extent" VALUES('EPSG','2864','Europe - 24°E to 30°E','Europe - between 24°E and 30°E.',34.8,75.0,24.0,30.0,1);
INSERT INTO "extent" VALUES('EPSG','2865','Europe - 30°E to 36°E','Europe - between 30°E and 36°E.',34.5,75.0,30.0,36.0,1);
INSERT INTO "extent" VALUES('EPSG','2866','Europe - 36°E to 42°E','Europe - between 36°E and 42°E.',35.75,75.0,36.0,42.0,1);
INSERT INTO "extent" VALUES('EPSG','2867','Europe - 42°E to 48°E','Europe - between 42°E and 48°E.',36.95,75.0,42.0,48.0,1);
INSERT INTO "extent" VALUES('EPSG','2868','Europe - 48°E to 54°E','Europe - between 48°E and 54°E.',36.0,75.0,48.0,54.0,1);
INSERT INTO "extent" VALUES('EPSG','2869','Jan Mayen - onshore','Jan Mayen - onshore.',70.75,71.24,-9.17,-7.87,0);
INSERT INTO "extent" VALUES('EPSG','2870','Portugal - Madeira and Porto Santo islands onshore','Portugal - Madeira and Porto Santo islands onshore.',32.58,33.15,-17.31,-16.23,0);
INSERT INTO "extent" VALUES('EPSG','2871','Portugal - Azores E - S Miguel onshore','Portugal - eastern Azores - Sao Miguel island onshore.',37.65,37.96,-25.92,-25.08,0);
INSERT INTO "extent" VALUES('EPSG','2872','Portugal - Azores C - Terceira onshore','Portugal - central Azores - Terceira island onshore.',38.57,38.86,-27.44,-26.97,0);
INSERT INTO "extent" VALUES('EPSG','2873','Portugal - Azores C - Faial onshore','Portugal - central Azores - Faial island onshore.',38.46,38.7,-28.9,-28.54,0);
INSERT INTO "extent" VALUES('EPSG','2874','Portugal - Azores C - Pico onshore','Portugal - central Azores - Pico island onshore.',38.32,38.61,-28.61,-27.98,0);
INSERT INTO "extent" VALUES('EPSG','2875','Portugal - Azores C - S Jorge onshore','Portugal - central Azores - Sao Jorge island onshore.',38.48,38.8,-28.37,-27.71,0);
INSERT INTO "extent" VALUES('EPSG','2876','Asia - Middle East - Iraq-Kuwait boundary','Iraq - Kuwait boundary.',29.06,30.32,46.36,48.61,0);
INSERT INTO "extent" VALUES('EPSG','2877','Slovenia - Slovenska Bistrica','Slovenia - Slovenska Bistrica with the Dravinja River Basin, area of Boc and parts of the Haloze and the Kozjansko region.',46.14,46.46,15.31,16.0,0);
INSERT INTO "extent" VALUES('EPSG','2878','Slovenia - Slovenske Gorice','Slovenia - Slovenske Gorice (the Slovene Humpback) with the broad region of Ormoz.',46.29,46.76,15.9,16.3,0);
INSERT INTO "extent" VALUES('EPSG','2879','Germany - offshore North Sea','Germany - offshore North Sea.',53.6,55.92,3.34,8.88,0);
INSERT INTO "extent" VALUES('EPSG','2880','Antarctica - Australian sector north of 80°S','Antarctica - north of 80°S and between 45°E and 136°E and between 142°E and 160°E - Australian sector north of 80°S.',-80.0,-60.0,45.0,160.0,0);
INSERT INTO "extent" VALUES('EPSG','2881','Europe - LCC & LAEA','Europe - European Union (EU) countries and candidates. Europe - onshore and offshore: Albania; Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia; Cyprus; Czechia; Denmark; Estonia; Faroe Islands; Finland; France; Germany; Gibraltar; Greece; Hungary; Iceland; Ireland; Italy; Kosovo; Latvia; Liechtenstein; Lithuania; Luxembourg; Malta; Monaco; Montenegro; Netherlands; North Macedonia; Norway including Svalbard and Jan Mayen; Poland; Portugal including Madeira and Azores; Romania; San Marino; Serbia; Slovakia; Slovenia; Spain including Canary Islands; Sweden; Switzerland; Turkey; United Kingdom (UK) including Channel Islands and Isle of Man; Vatican City State.',24.6,84.73,-35.58,44.83,0);
INSERT INTO "extent" VALUES('EPSG','2882','Italy - Adriatic - North Ancona','Italy - offshore - Adriatic Sea - North Ancona.',43.62,45.73,12.22,13.96,0);
INSERT INTO "extent" VALUES('EPSG','2883','Italy - Adriatic - South Ancona / North Gargano','Italy - offshore - Adriatic Sea - South Ancona and North Gargano.',41.95,44.04,13.61,16.14,0);
INSERT INTO "extent" VALUES('EPSG','2884','Italy - Adriatic - South Gargano','Italy - offshore - Adriatic Sea - South Gargano.',40.72,42.28,15.95,18.63,0);
INSERT INTO "extent" VALUES('EPSG','2885','Italy - Otranto channel','Italy - offshore - Otranto channel.',39.77,41.03,17.95,18.99,0);
INSERT INTO "extent" VALUES('EPSG','2886','Italy - north Ionian Sea','Italy - offshore - north Ionian Sea.',37.67,40.47,16.55,18.93,0);
INSERT INTO "extent" VALUES('EPSG','2887','Italy - Sicily Strait east of 13°E','Italy - offshore - Strait of Sicily - east of 13°E (of Greenwich).',35.22,37.48,13.0,15.16,0);
INSERT INTO "extent" VALUES('EPSG','2888','Italy - Sicily Strait west of 13°E','Italy - offshore - Strait of Sicily - west of 13°E (of Greenwich).',35.28,38.45,10.68,13.01,0);
INSERT INTO "extent" VALUES('EPSG','2889','New Zealand - Chatham Islands group','New Zealand - Chatham Islands group - onshore.',-44.64,-43.3,-177.25,-175.54,0);
INSERT INTO "extent" VALUES('EPSG','2890','Guadeloupe - St Martin - onshore','Guadeloupe - onshore - St Martin island.',18.01,18.17,-63.21,-62.96,0);
INSERT INTO "extent" VALUES('EPSG','2891','Guadeloupe - St Barthelemy - onshore','Guadeloupe - onshore - St Barthelemy island.',17.82,17.98,-62.92,-62.73,0);
INSERT INTO "extent" VALUES('EPSG','2892','Guadeloupe - Grande-Terre and Basse-Terre - onshore','Guadeloupe - onshore - Basse-Terre and Grande-Terre.',15.88,16.55,-61.85,-61.15,0);
INSERT INTO "extent" VALUES('EPSG','2893','Guadeloupe - La Desirade - onshore','Guadeloupe - onshore - La Desirade.',16.26,16.38,-61.13,-60.97,0);
INSERT INTO "extent" VALUES('EPSG','2894','Guadeloupe - Marie-Galante - onshore','Guadeloupe - onshore - Marie-Galante.',15.8,16.05,-61.39,-61.13,0);
INSERT INTO "extent" VALUES('EPSG','2895','Guadeloupe - Les Saintes - onshore','Guadeloupe - onshore - Les Saintes.',15.8,15.94,-61.68,-61.52,0);
INSERT INTO "extent" VALUES('EPSG','2896','Asia - Middle East - Israel, Palestine Territory, Turkey - offshore','Israel and Palestine Territory - offshore Mediterranean Sea; Turkey - offshore Black Sea.',31.35,43.45,28.03,41.47,0);
INSERT INTO "extent" VALUES('EPSG','2897','Asia - Middle East - Israel and Palestine Territory offshore','Israel and Palestine Territory - offshore Mediterranean Sea.',31.33,33.1,33.5,35.1,1);
INSERT INTO "extent" VALUES('EPSG','2898','Germany - Berlin','Germany - Berlin.',52.33,52.65,13.09,13.76,0);
INSERT INTO "extent" VALUES('EPSG','2899','Australia - 126°E to 132°E, 8°S to 12°S (SC52) onshore','Australia - onshore mainland between 8°S and 12°S and 126°E and 132°E.',-12.0,-11.07,131.02,132.0,0);
INSERT INTO "extent" VALUES('EPSG','2900','Australia - 132°E to 138°E, 8°S to 12°S (SC53) onshore','Australia - onshore mainland between 8°S and 12°S and 132°E and 138°E.',-12.0,-10.92,132.0,136.83,0);
INSERT INTO "extent" VALUES('EPSG','2901','Australia - 138°E to 144°E, 8°S to 12°S (SC54) onshore','Australia - onshore mainland between 8°S and 12°S and 138°E and 144°E.',-12.0,-10.65,141.77,143.31,0);
INSERT INTO "extent" VALUES('EPSG','2902','Australia - 120°E to 126°E, 12°S to 16°S (SD51) onshore','Australia - onshore mainland between 12°S and 16°S and 120°E and 126°E.',-16.0,-13.87,124.17,126.0,0);
INSERT INTO "extent" VALUES('EPSG','2903','Australia - 126°E to 132°E, 12°S to 16°S (SD52) onshore','Australia - onshore mainland between 12°S and 16°S and 126°E and 132°E.',-16.0,-12.0,126.0,132.0,0);
INSERT INTO "extent" VALUES('EPSG','2904','Australia - 132°E to 138°E, 12°S to 16°S (SD53) onshore','Australia - onshore mainland between 12°S and 16°S and 132°E and 138°E.',-16.0,-12.0,132.0,137.28,0);
INSERT INTO "extent" VALUES('EPSG','2905','Australia - 138°E to 144°E, 12°S to 16°S (SD54) onshore','Australia - onshore mainland between 12°S and 16°S and 138°E and 144°E.',-16.0,-12.0,141.34,144.01,0);
INSERT INTO "extent" VALUES('EPSG','2906','Australia - 144°E to 150°E, 12°S to 16°S (SD55) onshore','Australia - onshore mainland between 12°S and 16°S and 144°E and 150°E.',-16.0,-14.01,144.0,145.49,0);
INSERT INTO "extent" VALUES('EPSG','2907','Australia - 114°E to 120°E, 16°S to 20°S (SE50) onshore','Australia - onshore mainland between 16°S and 20°S and 114°E and 120°E.',-20.0,-19.88,118.94,120.0,0);
INSERT INTO "extent" VALUES('EPSG','2908','Australia - 120°E to 126°E, 16°S to 20°S (SE51) onshore','Australia - onshore mainland between 16°S and 20°S and 120°E and 126°E.',-20.0,-16.0,120.0,126.0,0);
INSERT INTO "extent" VALUES('EPSG','2909','Australia - 126°E to 132°E, 16°S to 20°S (SE52)','Australia - between 16°S and 20°S and 126°E and 132°E.',-20.0,-16.0,126.0,132.0,0);
INSERT INTO "extent" VALUES('EPSG','2910','Australia - 132°E to 138°E, 16°S to 20°S (SE53) onshore','Australia - onshore between 16°S and 20°S and 132°E and 138°E.',-20.0,-16.0,132.0,138.0,0);
INSERT INTO "extent" VALUES('EPSG','2911','Australia - 138°E to 144°E, 16°S to 20°S (SE54) onshore','Australia - onshore mainland between 16°S and 20°S and 138°E and 144°E.',-20.0,-16.0,138.0,144.0,0);
INSERT INTO "extent" VALUES('EPSG','2912','Australia - 144°E to 150°E, 16°S to 20°S (SE55) onshore','Australia - onshore mainland between 16°S and 20°S and 144°E and 150°E.',-20.0,-16.0,144.0,148.97,0);
INSERT INTO "extent" VALUES('EPSG','2913','Australia - 108°E to 114°E, 20°S to 24°S (SF49) onshore','Australia - onshore mainland between 20°S and 24°S and 108°E and 114°E.',-24.0,-21.8,113.39,114.0,0);
INSERT INTO "extent" VALUES('EPSG','2914','Australia - 114°E to 120°E, 20°S to 24°S (SF50) onshore','Australia - onshore mainland between 20°S and 24°S and 114°E and 120°E.',-24.0,-20.0,114.0,120.0,0);
INSERT INTO "extent" VALUES('EPSG','2915','Australia - 120°E to 126°E, 20°S to 24°S (SF51)','Australia - between 20°S and 24°S and 120°E and 126°E.',-24.0,-20.0,120.0,126.0,0);
INSERT INTO "extent" VALUES('EPSG','2916','Australia - 126°E to 132°E, 20°S to 24°S (SF52)','Australia - between 20°S and 24°S and 126°E and 132°E.',-24.0,-20.0,126.0,132.0,0);
INSERT INTO "extent" VALUES('EPSG','2917','Australia - 132°E to 138°E, 20°S to 24°S (SF53)','Australia - between 20°S and 24°S and 132°E and 138°E.',-24.0,-20.0,132.0,138.0,0);
INSERT INTO "extent" VALUES('EPSG','2918','Australia - 138°E to 144°E, 20°S to 24°S (SF54)','Australia - between 20°S and 24°S and 138°E and 144°E.',-24.0,-20.0,138.0,144.0,0);
INSERT INTO "extent" VALUES('EPSG','2919','Australia - 144°E to 150°E, 20°S to 24°S (SF55) onshore','Australia - onshore mainland between 20°S and 24°S and 144°E and 150°E.',-24.0,-20.0,144.0,150.0,0);
INSERT INTO "extent" VALUES('EPSG','2920','Australia - 150°E to 156°E, 20°S to 24°S (SF56) onshore','Australia - onshore mainland between 20°S and 24°S and 150°E and 156°E.',-24.0,-22.0,150.0,151.82,0);
INSERT INTO "extent" VALUES('EPSG','2921','Australia - 108°E to 114°E, 24°S to 28°S (SG49) onshore','Australia - onshore mainland between 24°S and 28°S and 108°E and 114°E.',-27.44,-24.0,112.85,114.0,0);
INSERT INTO "extent" VALUES('EPSG','2922','Australia - 114°E to 120°E, 24°S to 28°S (SG50) onshore','Australia - onshore mainland between 24°S and 28°S and 114°E and 120°E.',-28.0,-24.0,114.0,120.0,0);
INSERT INTO "extent" VALUES('EPSG','2923','Australia - 120°E to 126°E, 24°S to 28°S (SG51)','Australia - between 24°S and 28°S and 120°E and 126°E.',-28.0,-24.0,120.0,126.0,0);
INSERT INTO "extent" VALUES('EPSG','2924','Australia - 126°E to 132°E, 24°S to 28°S (SG52)','Australia - between 24°S and 28°S and 126°E and 132°E.',-28.0,-24.0,126.0,132.0,0);
INSERT INTO "extent" VALUES('EPSG','2925','Australia - 132°E to 138°E, 24°S to 28°S (SG53)','Australia - between 24°S and 28°S and 132°E and 138°E.',-28.0,-24.0,132.0,138.0,0);
INSERT INTO "extent" VALUES('EPSG','2926','Australia - 138°E to 144°E, 24°S to 28°S (SG54)','Australia - between 24°S and 28°S and 138°E and 144°E.',-28.0,-24.0,138.0,144.0,0);
INSERT INTO "extent" VALUES('EPSG','2927','Australia - 144°E to 150°E, 24°S to 28°S (SG55)','Australia - between 24°S and 28°S and 144°E and 150°E.',-28.0,-24.0,144.0,150.0,0);
INSERT INTO "extent" VALUES('EPSG','2928','Australia - 150°E to 156°E, 24°S to 28°S (SG56) onshore','Australia - onshore mainland between 24°S and 28°S and 150°E and 156°E.',-28.0,-24.0,150.0,153.6,0);
INSERT INTO "extent" VALUES('EPSG','2929','Australia - 108°E to 114°E, 28°S to 32°S (SH49)','Australia - between 28°S and 32°S and 108°E and 114°E.',-32.0,-28.0,108.0,114.0,1);
INSERT INTO "extent" VALUES('EPSG','2930','Australia - 114°E to 120°E, 28°S to 32°S (SH50) onshore','Australia - onshore mainland between 28°S and 32°S and 114°E and 120°E.',-32.0,-28.0,114.07,120.0,0);
INSERT INTO "extent" VALUES('EPSG','2931','Australia - 120°E to 126°E, 28°S to 32°S (SH51)','Australia - between 28°S and 32°S and 120°E and 126°E.',-32.0,-28.0,120.0,126.0,0);
INSERT INTO "extent" VALUES('EPSG','2932','Australia - 126°E to 132°E, south of 28°S (SH52) onshore','Australia - onshore mainland south of 28°S and between 126°E and 132°E.',-32.37,-28.0,126.0,132.0,0);
INSERT INTO "extent" VALUES('EPSG','2933','Australia - 132°E to 138°E, 28°S to 32°S (SH53) onshore','Australia - onshore between 28°S and 32°S and 132°E and 138°E.',-32.0,-28.0,132.0,138.0,0);
INSERT INTO "extent" VALUES('EPSG','2934','Australia - 138°E to 144°E, 28°S to 32°S (SH54)','Australia - between 28°S and 32°S and 138°E and 144°E.',-32.0,-28.0,138.0,144.0,0);
INSERT INTO "extent" VALUES('EPSG','2935','Australia - 144°E to 150°E, 28°S to 32°S (SH55)','Australia - between 28°S and 32°S and 144°E and 150°E.',-32.0,-28.0,144.0,150.0,0);
INSERT INTO "extent" VALUES('EPSG','2936','Australia - 150°E to 156°E, 28°S to 32°S (SH56) onshore','Australia - onshore mainland between 28°S and 32°S and 150°E and 156°E.',-32.0,-28.0,150.0,153.69,0);
INSERT INTO "extent" VALUES('EPSG','2937','Australia - 114°E to 120°E, 32°S to 36°S (SI50) onshore','Australia - onshore mainland between 32°S and 36°S and 114°E and 120°E.',-35.19,-32.0,114.89,120.0,0);
INSERT INTO "extent" VALUES('EPSG','2938','Australia - 120°E to 126°E, 32°S to 36°S (SI51) onshore','Australia - onshore mainland between 32°S and 36°S and 120°E and 126°E.',-34.16,-32.0,120.0,126.0,0);
INSERT INTO "extent" VALUES('EPSG','2939','Australia - 132°E to 138°E, 32°S to 36°S (SI53) onshore','Australia - onshore mainland and Kangaroo Island between 32°S and 36°S and 132°E and 138°E.',-36.0,-32.0,132.08,138.0,0);
INSERT INTO "extent" VALUES('EPSG','2940','Australia - 138°E to 144°E, 32°S to 36°S (SI54) onshore','Australia - onshore between 32°S and 36°S and 138°E and 144°E.',-36.0,-32.0,138.0,144.0,0);
INSERT INTO "extent" VALUES('EPSG','2941','Australia - 144°E to 150°E, 32°S to 36°S (SI55)','Australia - between 32°S and 36°S and 144°E and 150°E.',-36.0,-32.0,144.0,150.0,0);
INSERT INTO "extent" VALUES('EPSG','2942','Australia - 150°E to 156°E, 32°S to 36°S (SI56) onshore','Australia - onshore mainland between 32°S and 36°S and 150°E and 156°E.',-36.0,-32.0,150.0,152.66,0);
INSERT INTO "extent" VALUES('EPSG','2943','Australia - 132°E to 138°E, 36°S to 40°S (SJ53) onshore','Australia - onshore Kangaroo Island between 36°S and 40°S and 132°E and 138°E.',-36.14,-36.0,136.57,137.68,0);
INSERT INTO "extent" VALUES('EPSG','2944','Australia - 138°E to 144°E, 36°S to 40°S (SJ54) onshore','Australia - onshore mainland between 36°S and 40°S and 138°E and 144°E.',-38.91,-36.0,139.38,144.0,0);
INSERT INTO "extent" VALUES('EPSG','2945','Australia - 144°E to 150°E, 36°S to 40°S (SJ55) onshore','Australia - onshore mainland between 36°S and 40°S and 144°E and 150°E.',-39.2,-36.0,144.0,150.0,0);
INSERT INTO "extent" VALUES('EPSG','2946','Australia - 150°E to 156°E, 36°S to 40°S (SJ56) onshore','Australia - onshore mainland between 36°S and 40°S and 150°E and 156°E.',-37.57,-36.0,150.0,150.22,0);
INSERT INTO "extent" VALUES('EPSG','2947','Australia - Tasmania mainland onshore','Australia - Tasmania mainland - onshore.',-43.7,-40.24,144.55,148.44,0);
INSERT INTO "extent" VALUES('EPSG','2948','USA - CONUS east of 89°W - onshore','United States (USA) - CONUS east of 89°W - onshore - Alabama; Connecticut; Delaware; Florida; Georgia; llinois; Indiana; Kentucky; Maine; Maryland; Massachusetts; Michigan; Mississippi; New Hampshire; New Jersey; New York; North Carolina; Ohio; Pennsylvania; Rhode Island; South Carolina; Tennessee; Vermont; Virginia; West Virginia; Wisconsin.',24.41,48.32,-89.0,-66.91,0);
INSERT INTO "extent" VALUES('EPSG','2949','USA - CONUS 89°W-107°W - onshore','United States (USA) - CONUS between 89°W and 107°W - onshore - Arkansas; Colorado; Illinois; Iowa; Kansas; Louisiana; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; New Mexico; North Dakota; Oklahoma; South Dakota; Tennessee; Texas; Wisconsin; Wyoming.',25.83,49.38,-107.0,-89.0,0);
INSERT INTO "extent" VALUES('EPSG','2950','USA - CONUS west of 107°W - onshore','United States (USA) - CONUS west of 107°W - onshore - Arizona; California; Colorado; Idaho; Montana; Nevada; New Mexico; Oregon; Utah; Washington; Wyoming.',31.33,49.05,-124.79,-107.0,0);
INSERT INTO "extent" VALUES('EPSG','2951','Japan - 120°E to 126°E onshore','Japan - onshore west of 126°E.',23.98,24.94,123.62,125.51,0);
INSERT INTO "extent" VALUES('EPSG','2952','Japan - 126°E to 132°E onshore','Japan - onshore between 126°E and 132°E.',24.4,34.9,126.63,132.0,0);
INSERT INTO "extent" VALUES('EPSG','2953','Japan - 132°E to 138°E onshore','Japan - onshore between 132°E and 138°E.',20.37,37.58,132.0,138.0,0);
INSERT INTO "extent" VALUES('EPSG','2954','Japan - 138°E to 144°E onshore','Japan - onshore between 138°E and 144°E.',24.67,45.54,138.0,144.0,0);
INSERT INTO "extent" VALUES('EPSG','2955','Japan - 144°E to 150°E onshore','Japan - onshore east of 144°E.',42.84,44.4,144.0,145.87,0);
INSERT INTO "extent" VALUES('EPSG','2956','Kuwait - north of 29.25°N','Kuwait - onshore north of a line between Al Jahra'' and the Kuwait/Iraq/Saudi Arabia border tripoint.',29.1,30.09,46.54,48.42,0);
INSERT INTO "extent" VALUES('EPSG','2957','Kuwait - south of 29.25°N','Kuwait - onshore south of a line between Al Jahra'' and the Kuwait/Iraq/Saudi Arabia border tripoint.',28.53,29.45,46.54,48.48,0);
INSERT INTO "extent" VALUES('EPSG','2958','USA - Maine - CS2000 - W','United States (USA) - Maine west of approximately 69°40''W. The area is bounded by the following: Beginning at the point determined by the intersection of the Maine State line and the County Line between Aroostook and Somerset Counties, thence following the Somerset County line Easterly to the Northwest corner of the Somerset and Piscataquis county line, thence Southerly along this county line to the northeast corner of the Athens town line, thence westerly along the town line between Brighton Plantation and Athens to the westerly corner of Athens, and continuing southerly to the southwest corner of the town of Athens where it meets the Cornville town line, thence westerly along the Cornville - Solon town line to the intersection of the Cornville - Madison town line, thence southerly and westerly following the Madison town line to the intersection of the Norridgewock - Skowhegan town line, thence southerly along the Skowhegan town line to the Fairfield town line, thence easterly along the Fairfield town line to the Clinton town line (being determined by the Kennebec River), thence southerly along the Kennebec River to the Augusta city line, thence easterly along the city line to the Windsor town line, thence southerly along the Augusta - Windsor town line to the northwest corner of the Lincoln County line, thence southerly along the westerly Lincoln county line to the boundary of the State of Maine as determined by Maritime law, thence following the State boundary on the westerly side of the state to the point of beginning.',43.07,46.58,-71.09,-69.61,0);
INSERT INTO "extent" VALUES('EPSG','2959','USA - Maine - CS2000 - C','United States (USA) - Maine between approximately 69°40''W and 68°25''W. The area is bounded by the following: Beginning at the point determined by the intersection of the Maine State line and the County Line between Aroostook and Somerset Counties, thence northeasterly along the state line to the intersection of the Fort Kent - Frenchville town line, thence southerly along this town line to the intersection with the New Canada Plantation - T17 R5 WELS town line, thence continuing southerly along town lines to the northeast corner of Penobscot County, thence continuing southerly along the Penobscot County line to the intersection of the Woodville - Mattawamkeag town line (being determined by the Penobscot River), thence along the Penobscot River to the Enfield - Lincoln town line, thence southeasterly along the Enfield - Lincoln town line and the Enfield - Lowell town line to the Passadumkeag - Edinburg town line, thence south-southeasterly along town lines to the intersection of the Hancock County line, thence southerly along the county line to the intersection of the Otis - Mariaville town line, thence southerly along the Otis - Mariaville town line to the Ellsworth city line, thence southerly along the Ellsworth city line to the intersection of the Surry - Trenton town line, thence southerly along the easterly town lines of Surry, Blue Hill, Brooklin, Deer Isle, and Stonington to the Knox County line, thence following the Knox County line to the boundary of the State of Maine as determined by Maritime law, thence following the State boundary westerly to the intersection of the Sagadahoc - Lincoln county line, thence northerly along the easterly boundary of the Maine 2000 West Zone, as defined, to the point of beginning.',43.75,47.47,-70.03,-68.33,0);
INSERT INTO "extent" VALUES('EPSG','2960','USA - Maine - CS2000 - E','United States (USA) - Maine east of approximately 68°25''W. The area is bounded by the following: Beginning at the point determined by the intersection of the Maine State line and the Fort Kent - Frenchville town line, thence continuing easterly and then southerly along the state line to the boundary of the State of Maine as determined by Maritime law, thence following the State boundary westerly to the intersection of the Knox and Hancock County line, thence northerly along the easterly boundary of the Maine 2000 Central Zone, as defined, to the point of beginning.',44.18,47.37,-68.58,-66.91,0);
INSERT INTO "extent" VALUES('EPSG','2961','Ireland - Corrib and Errigal','Ireland - offshore - Corrib and Errigal fields.',53.75,55.76,-12.5,-9.49,0);
INSERT INTO "extent" VALUES('EPSG','2962','Brazil - Santos','Brazil - offshore - Santos basin.',-28.41,-22.66,-48.8,-40.2,0);
INSERT INTO "extent" VALUES('EPSG','2963','Brazil - Campos','Brazil - offshore - Campos basin.',-25.91,-20.45,-42.04,-37.11,0);
INSERT INTO "extent" VALUES('EPSG','2964','Brazil - Espirito Santo and Mucuri','Brazil - offshore - Espirito Santo and Mucuri basins.',-22.04,-17.59,-40.37,-35.18,0);
INSERT INTO "extent" VALUES('EPSG','2965','Brazil - Pelotas','Brazil - offshore - Pelotas basin.',-35.71,-28.11,-53.38,-44.71,0);
INSERT INTO "extent" VALUES('EPSG','2966','Brazil - offshore 18°S to 34°S','Brazil - offshore between 18°S and 34°S.',-34.0,-18.0,-53.38,-35.19,0);
INSERT INTO "extent" VALUES('EPSG','2967','Mauritania - north coast','Mauritania - coastal area north of Cape Timiris.',19.37,21.34,-17.08,-15.88,0);
INSERT INTO "extent" VALUES('EPSG','2968','Mauritania - central coast','Mauritania - coastal area south of Cape Timiris.',16.81,19.41,-16.57,-15.59,0);
INSERT INTO "extent" VALUES('EPSG','2969','Mauritania - east of 6°W','Mauritania - east of 6°W.',15.49,25.74,-6.0,-4.8,0);
INSERT INTO "extent" VALUES('EPSG','2970','Mauritania - 12°W to 6°W','Mauritania - between 12°W and 6°W.',14.75,27.3,-12.0,-6.0,0);
INSERT INTO "extent" VALUES('EPSG','2971','Mauritania - west of 12°W onshore','Mauritania - onshore west of 12°W.',14.72,23.46,-17.08,-12.0,0);
INSERT INTO "extent" VALUES('EPSG','2972','Mauritania - Nouakchutt','Mauritania - Nouakchutt.',17.89,18.25,-16.11,-15.83,0);
INSERT INTO "extent" VALUES('EPSG','2973','USA - CONUS south of 41°N, west of 112°W - onshore','United States (USA) - CONUS onshore south of 41°N and west of 112°W - Arizona west of 112°W; California and Nevada south of 41°N; Utah south of 41°N and west of 112°W.',31.64,41.0,-124.45,-112.0,0);
INSERT INTO "extent" VALUES('EPSG','2974','USA - CONUS south of 41°N, 112°W to 95°W - onshore','United States (USA) - CONUS onshore south of 41°N and between 112°W and 95°W - Colorado and New Mexico; Arizona east of 112°W; Utah south of 41°N and east of 112°W; Nebraska south of 41°N; Iowa south of 41°N and west of 95°W; Kansas, Missouri, Oklahoma and Texas west of 95°W.',25.83,41.01,-112.0,-94.99,0);
INSERT INTO "extent" VALUES('EPSG','2975','USA - CONUS south of 41°N, 95°W to 78°W - onshore','United States (USA) - CONUS onshore south of 41°N and between 95°W and 78°W - Alabama, Arkansas, Florida, Georgia, Kentucky, Louisiana, Mississippi, South Carolina and Tennessee; Kansas, Missouri, Oklahoma and Texas east of 95°W; Iowa south of 41°N and east of 95°W; Illinois, Indiana and Ohio south of 41°N; Pennsylvania south of 41°N and west of 78°W; Maryland, North Carolina, Virginia and West Virginia west of 78°W.',24.41,41.01,-95.0,-77.99,0);
INSERT INTO "extent" VALUES('EPSG','2976','USA - CONUS south of 41°N, east of 78°W - onshore','United States (USA) - CONUS onshore - south of 41°N and east of 78°W - Delaware; Maryland, North Carolina, Virginia and West Virginia east of 78°W; Pennsylvania south of 41°N and east of 78°W; New Jersey and New York south of 41°N.',33.84,41.01,-78.0,-71.9,0);
INSERT INTO "extent" VALUES('EPSG','2977','USA - CONUS north of 41°N, west of 112°W - onshore','United States (USA) - CONUS onshore north of 41°N and west of 112°W - Oregon and Washington; California and Nevada north of 41°N; Utah north of 41°N and west of 112°W; Idaho and Montana west of 112°W.',41.0,49.05,-124.79,-112.0,0);
INSERT INTO "extent" VALUES('EPSG','2978','USA - CONUS north of 41°N, 112°W to 95°W','United States (USA) - CONUS north of 41°N and between 112°W and 95°W - North Dakota, South Dakota and Wyoming; Idaho and Montana east of 112°W; Utah north of 41°N and east of 112°W; Nebraska north of 41°N; Iowa north of 41°N and west of 95°W; Minnesota west of 95°W.',41.0,49.38,-112.0,-95.0,0);
INSERT INTO "extent" VALUES('EPSG','2979','USA - CONUS north of 41°N, 95°W to 78°W','United States (USA) - CONUS north of 41°N and between 95°W and 78°W - Michigan and Wisconsin; Minnesota east of 95°W; Iowa north of 41°N and east of 95°W; Illinois, Indiana and Ohio north of 41°N; Pennsylvania north of 41°N and west of 78°W; New York west of 78°W.',41.0,49.37,-95.0,-77.99,0);
INSERT INTO "extent" VALUES('EPSG','2980','USA - CONUS north of 41°N, east of 78°W - onshore','United States (USA) - CONUS onshore north of 41°N and east of 78°W - Connecticut, Maine, Massachusetts, New Hampshire, Rhode Island and Vermont; New Jersey north of 41°N; New York and Pennsylvania north of 41°N and east of 78°W.',41.0,47.47,-78.0,-66.91,0);
INSERT INTO "extent" VALUES('EPSG','2981','Nigeria - offshore','Nigeria - offshore.',1.92,6.38,2.66,8.49,0);
INSERT INTO "extent" VALUES('EPSG','2982','Pakistan - Karachi','Pakistan - Karachi licence area.',24.69,25.76,66.83,68.0,0);
INSERT INTO "extent" VALUES('EPSG','2983','Pakistan - East Sind','Pakistan - East Sind.',24.16,28.61,68.27,71.14,0);
INSERT INTO "extent" VALUES('EPSG','2984','Pakistan - Badin and Mehran','Pakistan - Badin and Mehran blocks.',24.0,25.64,67.74,69.87,0);
INSERT INTO "extent" VALUES('EPSG','2985','Pakistan - offshore Indus','Pakistan - offshore Indus fan.',21.05,25.39,64.0,68.24,0);
INSERT INTO "extent" VALUES('EPSG','2986','Australia - SA','Australia - South Australia.',-38.13,-25.99,128.99,141.01,0);
INSERT INTO "extent" VALUES('EPSG','2987','Libya - Amal','Libya - Amal field.',29.1,29.8,20.8,21.4,0);
INSERT INTO "extent" VALUES('EPSG','2988','Channel Islands - Jersey, Les Ecrehos and Les Minquiers','Channel Islands - Jersey, Les Ecrehos and Les Minquiers - onshore and offshore.',48.77,49.44,-2.72,-1.81,0);
INSERT INTO "extent" VALUES('EPSG','2989','Channel Islands - Guernsey, Alderney, Sark','Channel Islands - Guernsey, Alderney, Sark, Herm, Brecqhou, Jethou, Lihou - onshore and offshore.',49.11,50.16,-3.73,-2.02,0);
INSERT INTO "extent" VALUES('EPSG','2990','Australia - Brisbane','Australia - Brisbane area. Local authorities in south-east Queensland: Gold Coast, Logan, Beaudesert, Redcliffe, Redlands, Pine Rivers, Caboolture, Caloundra, Maroochy, Noosa, Maryborough; local authorities in north-east New South Wales: Tweed, Byron, Lismore, Ballina and Richmond Valley.',-29.88,-24.64,151.19,153.69,0);
INSERT INTO "extent" VALUES('EPSG','2991','Antarctica - 60°S to 64°S, 72°W to 60°W (SP19-20)','Antarctica - 60°S to 64°S and 72°W to 60°W.',-64.0,-60.0,-72.0,-60.0,0);
INSERT INTO "extent" VALUES('EPSG','2992','Antarctica - 60°S to 64°S, 60°W to 48°W (SP21-22)','Antarctica - 60°S to 64°S and 60°W to 48°W.',-64.0,-60.0,-60.0,-48.0,0);
INSERT INTO "extent" VALUES('EPSG','2993','Antarctica - 60°S to 64°S, 48°W to 36°W (SP23-24)','Antarctica - 60°S to 64°S and 48°W to 36°W.',-64.0,-60.0,-48.0,-36.0,0);
INSERT INTO "extent" VALUES('EPSG','2994','Antarctica - 64°S to 68°S, 180°W to 168°W (SQ01-02)','Antarctica - 64°S to 68°S and 180°W to 168°W.',-68.0,-64.0,-180.0,-168.0,0);
INSERT INTO "extent" VALUES('EPSG','2995','Antarctica - 64°S to 68°S, 72°W to 60°W (SQ19-20)','Antarctica - 64°S to 68°S and 72°W to 60°W.',-68.0,-64.0,-72.0,-60.0,0);
INSERT INTO "extent" VALUES('EPSG','2996','Antarctica - 64°S to 68°S, 60°W to 48°W (SQ21-22)','Antarctica - 64°S to 68°S and 60°W to 48°W.',-68.0,-64.0,-60.0,-48.0,0);
INSERT INTO "extent" VALUES('EPSG','2997','Antarctica - 64°S to 68°S, 36°E to 48°E (SQ37-38)','Antarctica - 64°S to 68°S and 36°E to 48°E.',-68.0,-64.0,36.0,48.0,0);
INSERT INTO "extent" VALUES('EPSG','2998','Antarctica - 64°S to 68°S, 48°E to 60°E (SQ39-40)','Antarctica - 64°S to 68°S and 48°E to 60°E.',-68.0,-64.0,48.0,60.0,0);
INSERT INTO "extent" VALUES('EPSG','2999','Antarctica - 64°S to 68°S, 60°E to 72°E (SQ41-42)','Antarctica - 64°S to 68°S and 60°E to 72°E.',-68.0,-64.0,60.0,72.0,0);
INSERT INTO "extent" VALUES('EPSG','3000','Antarctica - 64°S to 68°S, 72°E to 84°E (SQ43-44)','Antarctica - 64°S to 68°S and 72°E to 84°E.',-68.0,-64.0,72.0,84.0,0);
INSERT INTO "extent" VALUES('EPSG','3001','Antarctica - 64°S to 68°S, 84°E to 96°E (SQ45-46)','Antarctica - 64°S to 68°S and 84°E to 96°E.',-68.0,-64.0,84.0,96.0,0);
INSERT INTO "extent" VALUES('EPSG','3002','Antarctica - 64°S to 68°S, 96°E to 108°E (SQ47-48)','Antarctica - 64°S to 68°S and 96°E to 108°E.',-68.0,-64.0,96.0,108.0,0);
INSERT INTO "extent" VALUES('EPSG','3003','Antarctica - 64°S to 68°S, 108°E to 120°E (SQ49-50)','Antarctica - 64°S to 68°S and 108°E to 120°E.',-68.0,-64.0,108.0,120.0,0);
INSERT INTO "extent" VALUES('EPSG','3004','Antarctica - 64°S to 68°S, 120°E to 132°E (SQ51-52)','Antarctica - 64°S to 68°S and 120°E to 132°E.',-68.0,-64.0,120.0,132.0,0);
INSERT INTO "extent" VALUES('EPSG','3005','Antarctica - 64°S to 68°S, 132°E to 144°E (SQ53-54)','Antarctica - 64°S to 68°S and 132°E to 144°E.',-68.0,-64.0,132.0,144.0,0);
INSERT INTO "extent" VALUES('EPSG','3006','Antarctica - 64°S to 68°S, 144°E to 156°E (SQ55-56)','Antarctica - 64°S to 68°S and 144°E to 156°E.',-68.0,-64.0,144.0,156.0,0);
INSERT INTO "extent" VALUES('EPSG','3007','Antarctica - 64°S to 68°S, 156°E to 168°E (SQ57-58)','Antarctica - 64°S to 68°S and 156°E to 168°E.',-68.0,-64.0,156.0,168.0,0);
INSERT INTO "extent" VALUES('EPSG','3008','Antarctica - 68°S to 72°S, 108°W to 96°W (SR13-14)','Antarctica - 68°S to 72°S and 108°W to 96°W.',-72.0,-68.0,-108.0,-96.0,0);
INSERT INTO "extent" VALUES('EPSG','3009','Antarctica - 68°S to 72°S, 96°W to 84°W (SR15-16)','Antarctica - 68°S to 72°S and 96°W to 84°W.',-72.0,-68.0,-96.0,-84.0,0);
INSERT INTO "extent" VALUES('EPSG','3010','Antarctica - 68°S to 72°S, 84°W to 72°W (SR17-18)','Antarctica - 68°S to 72°S and 84°W to 72°W.',-72.0,-68.0,-84.0,-72.0,0);
INSERT INTO "extent" VALUES('EPSG','3011','Antarctica - 68°S to 72°S, 72°W to 60°W (SR19-20)','Antarctica - 68°S to 72°S and 72°W to 60°W.',-72.0,-68.0,-72.0,-60.0,0);
INSERT INTO "extent" VALUES('EPSG','3012','Antarctica - 68°S to 72°S, 24°W to 12°W (SR27-28)','Antarctica - 68°S to 72°S and 24°W to 12°W.',-72.0,-68.0,-24.0,-12.0,0);
INSERT INTO "extent" VALUES('EPSG','3013','Antarctica - 68°S to 72°S, 12°W to 0°W (SR29-30)','Antarctica - 68°S to 72°S and 12°W to 0°W.',-72.0,-68.0,-12.0,0.0,0);
INSERT INTO "extent" VALUES('EPSG','3014','Antarctica - 68°S to 72°S, 0°E to 12°E (SR31-32)','Antarctica - 68°S to 72°S and 0°E to 12°E.',-72.0,-68.0,0.0,12.0,0);
INSERT INTO "extent" VALUES('EPSG','3015','Antarctica - 68°S to 72°S, 12°E to 24°E (SR33-34)','Antarctica - 68°S to 72°S and 12°E to 24°E.',-72.0,-68.0,12.0,24.0,0);
INSERT INTO "extent" VALUES('EPSG','3016','Antarctica - 68°S to 72°S, 24°E to 36°E (SR35-36)','Antarctica - 68°S to 72°S and 24°E to 36°E.',-72.0,-68.0,24.0,36.0,0);
INSERT INTO "extent" VALUES('EPSG','3017','Antarctica - 68°S to 72°S, 36°E to 48°E (SR37-38)','Antarctica - 68°S to 72°S and 36°E to 48°E.',-72.0,-68.0,36.0,48.0,0);
INSERT INTO "extent" VALUES('EPSG','3018','Antarctica - 68°S to 72°S, 48°E to 60°E (SR39-40)','Antarctica - 68°S to 72°S and 48°E to 60°E.',-72.0,-68.0,48.0,60.0,0);
INSERT INTO "extent" VALUES('EPSG','3019','Antarctica - 68°S to 72°S, 60°E to 72°E (SR41-42)','Antarctica - 68°S to 72°S and 60°E to 72°E.',-72.0,-68.0,60.0,72.0,0);
INSERT INTO "extent" VALUES('EPSG','3020','Antarctica - 68°S to 72°S, 72°E to 84°E (SR43-44)','Antarctica - 68°S to 72°S and 72°E to 84°E.',-72.0,-68.0,72.0,84.0,0);
INSERT INTO "extent" VALUES('EPSG','3021','Antarctica - 68°S to 72°S, 84°E to 96°E (SR45-46)','Antarctica - 68°S to 72°S and 84°E to 96°E.',-72.0,-68.0,84.0,96.0,0);
INSERT INTO "extent" VALUES('EPSG','3022','Antarctica - 68°S to 72°S, 96°E to 108°E (SR47-48)','Antarctica - 68°S to 72°S and 96°E to 108°E.',-72.0,-68.0,96.0,108.0,0);
INSERT INTO "extent" VALUES('EPSG','3023','Antarctica - 68°S to 72°S, 108°E to 120°E (SR49-50)','Antarctica - 68°S to 72°S and 108°E to 120°E.',-72.0,-68.0,108.0,120.0,0);
INSERT INTO "extent" VALUES('EPSG','3024','Antarctica - 68°S to 72°S, 120°E to 132°E (SR51-52)','Antarctica - 68°S to 72°S and 120°E to 132°E.',-72.0,-68.0,120.0,132.0,0);
INSERT INTO "extent" VALUES('EPSG','3025','Antarctica - 68°S to 72°S, 132°E to 144°E (SR53-54)','Antarctica - 68°S to 72°S and 132°E to 144°E.',-72.0,-68.0,132.0,144.0,0);
INSERT INTO "extent" VALUES('EPSG','3026','Antarctica - 68°S to 72°S, 144°E to 156°E (SR55-56)','Antarctica - 68°S to 72°S and 144°E to 156°E.',-72.0,-68.0,144.0,156.0,0);
INSERT INTO "extent" VALUES('EPSG','3027','Antarctica - 68°S to 72°S, 156°E to 168°E (SR57-58)','Antarctica - 68°S to 72°S and 156°E to 168°E.',-72.0,-68.0,156.0,168.0,0);
INSERT INTO "extent" VALUES('EPSG','3028','Antarctica - 68°S to 72°S, 168°E to 180°E (SR59-60)','Antarctica - 68°S to 72°S and 168°E to 180°E.',-72.0,-68.0,168.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','3029','Antarctica - 72°S to 76°S, 162°W to 144°W (SS04-06)','Antarctica - 72°S to 76°S and 162°W to 144°W.',-76.0,-72.0,-162.0,-144.0,0);
INSERT INTO "extent" VALUES('EPSG','3030','Antarctica - 72°S to 76°S, 144°W to 126°W (SS07-09)','Antarctica - 72°S to 76°S and 144°W to 126°W.',-76.0,-72.0,-144.0,-126.0,0);
INSERT INTO "extent" VALUES('EPSG','3031','Antarctica - 72°S to 76°S, 126°W to 108°W (SS10-12)','Antarctica - 72°S to 76°S and 126°W to 108°W.',-76.0,-72.0,-126.0,-108.0,0);
INSERT INTO "extent" VALUES('EPSG','3032','Antarctica - 72°S to 76°S, 108°W to 90°W (SS13-15)','Antarctica - 72°S to 76°S and 108°W to 90°W.',-76.0,-72.0,-108.0,-90.0,0);
INSERT INTO "extent" VALUES('EPSG','3033','Antarctica - 72°S to 76°S, 90°W to 72°W (SS16-18)','Antarctica - 72°S to 76°S and 90°W to 72°W.',-76.0,-72.0,-90.0,-72.0,0);
INSERT INTO "extent" VALUES('EPSG','3034','Antarctica - 72°S to 76°S, 72°W to 54°W (SS19-21)','Antarctica - 72°S to 76°S and 72°W to 54°W.',-76.0,-72.0,-72.0,-54.0,0);
INSERT INTO "extent" VALUES('EPSG','3035','Antarctica - 72°S to 76°S, 36°W to 18°W (SS25-27)','Antarctica - 72°S to 76°S and 36°W to 18°W.',-76.0,-72.0,-36.0,-18.0,0);
INSERT INTO "extent" VALUES('EPSG','3036','Antarctica - 72°S to 76°S, 18°W to 0°W (SS28-30)','Antarctica - 72°S to 76°S and 18°W to 0°W.',-76.0,-72.0,-18.0,0.0,0);
INSERT INTO "extent" VALUES('EPSG','3037','Antarctica - 72°S to 76°S, 0°E to 18°E (SS31-33)','Antarctica - 72°S to 76°S and 0°E to 18°E.',-76.0,-72.0,0.0,18.0,0);
INSERT INTO "extent" VALUES('EPSG','3038','Antarctica - 72°S to 76°S, 18°E to 36°E (SS34-36)','Antarctica - 72°S to 76°S and 18°E to 36°E.',-76.0,-72.0,18.0,36.0,0);
INSERT INTO "extent" VALUES('EPSG','3039','Antarctica - 72°S to 76°S, 36°E to 54°E (SS37-39)','Antarctica - 72°S to 76°S and 36°E to 54°E.',-76.0,-72.0,36.0,54.0,0);
INSERT INTO "extent" VALUES('EPSG','3040','Antarctica - 72°S to 76°S, 54°E to 72°E (SS40-42)','Antarctica - 72°S to 76°S and 54°E to 72°E.',-76.0,-72.0,54.0,72.0,0);
INSERT INTO "extent" VALUES('EPSG','3041','Antarctica - 72°S to 76°S, 72°E to 90°E (SS43-45)','Antarctica - 72°S to 76°S and 72°E to 90°E.',-76.0,-72.0,72.0,90.0,0);
INSERT INTO "extent" VALUES('EPSG','3042','Antarctica - 72°S to 76°S, 90°E to 108°E (SS46-48)','Antarctica - 72°S to 76°S and 90°E to 108°E.',-76.0,-72.0,90.0,108.0,0);
INSERT INTO "extent" VALUES('EPSG','3043','Antarctica - 72°S to 76°S, 108°E to 126°E (SS49-51)','Antarctica - 72°S to 76°S and 108°E to 126°E.',-76.0,-72.0,108.0,126.0,0);
INSERT INTO "extent" VALUES('EPSG','3044','Antarctica - 72°S to 76°S, 126°E to 144°E (SS52-54)','Antarctica - 72°S to 76°S and 126°E to 144°E.',-76.0,-72.0,126.0,144.0,0);
INSERT INTO "extent" VALUES('EPSG','3045','Antarctica - 72°S to 76°S, 144°E to 162°E (SS55-57)','Antarctica - 72°S to 76°S and 144°E to 162°E.',-76.0,-72.0,144.0,162.0,0);
INSERT INTO "extent" VALUES('EPSG','3046','Antarctica - 72°S to 76°S, 162°E to 180°E (SS58-60)','Antarctica - 72°S to 76°S and 162°E to 180°E.',-76.0,-72.0,162.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','3047','Antarctica - 76°S to 80°S, 180°W to 156°W (ST01-04)','Antarctica - 76°S to 80°S and 180°W to 156°W.',-80.0,-76.0,-180.0,-156.0,0);
INSERT INTO "extent" VALUES('EPSG','3048','Antarctica - 76°S to 80°S, 156°W to 132°W (ST05-08)','Antarctica - 76°S to 80°S and 156°W to 132°W.',-80.0,-76.0,-156.0,-132.0,0);
INSERT INTO "extent" VALUES('EPSG','3049','Antarctica - 76°S to 80°S, 132°W to 108°W (ST09-12)','Antarctica - 76°S to 80°S and 132°W to 108°W.',-80.0,-76.0,-132.0,-108.0,0);
INSERT INTO "extent" VALUES('EPSG','3050','Antarctica - 76°S to 80°S, 108°W to 84°W (ST13-16)','Antarctica - 76°S to 80°S and 108°W to 84°W.',-80.0,-76.0,-108.0,-84.0,0);
INSERT INTO "extent" VALUES('EPSG','3051','Antarctica - 76°S to 80°S, 84°W to 60°W (ST17-20)','Antarctica - 76°S to 80°S and 84°W to 60°W.',-80.0,-76.0,-84.0,-60.0,0);
INSERT INTO "extent" VALUES('EPSG','3052','Antarctica - 76°S to 80°S, 60°W to 36°W (ST21-24)','Antarctica - 76°S to 80°S and 60°W to 36°W.',-80.0,-76.0,-60.0,-36.0,0);
INSERT INTO "extent" VALUES('EPSG','3053','Antarctica - 76°S to 80°S, 36°W to 12°W (ST25-28)','Antarctica - 76°S to 80°S and 36°W to 12°W.',-80.0,-76.0,-36.0,-12.0,0);
INSERT INTO "extent" VALUES('EPSG','3054','Antarctica - 76°S to 80°S, 12°W to 12°E (ST29-32)','Antarctica - 76°S to 80°S and 12°W to 12°E.',-80.0,-76.0,-12.0,12.0,0);
INSERT INTO "extent" VALUES('EPSG','3055','Antarctica - 76°S to 80°S, 12°E to 36°E (ST33-36)','Antarctica - 76°S to 80°S and 12°E to 36°E.',-80.0,-76.0,12.0,36.0,0);
INSERT INTO "extent" VALUES('EPSG','3056','Antarctica - 76°S to 80°S, 36°E to 60°E (ST37-40)','Antarctica - 76°S to 80°S and 36°E to 60°E.',-80.0,-76.0,36.0,60.0,0);
INSERT INTO "extent" VALUES('EPSG','3057','Antarctica - 76°S to 80°S, 60°E to 84°E (ST41-44)','Antarctica - 76°S to 80°S and 60°E to 84°E.',-80.0,-76.0,60.0,84.0,0);
INSERT INTO "extent" VALUES('EPSG','3058','Antarctica - 76°S to 80°S, 84°E to 108°E (ST45-48)','Antarctica - 76°S to 80°S and 84°E to 108°E.',-80.0,-76.0,84.0,108.0,0);
INSERT INTO "extent" VALUES('EPSG','3059','Antarctica - 76°S to 80°S, 108°E to 132°E (ST49-52)','Antarctica - 76°S to 80°S and 108°E to 132°E.',-80.0,-76.0,108.0,132.0,0);
INSERT INTO "extent" VALUES('EPSG','3060','Antarctica - 76°S to 80°S, 132°E to 156°E (ST53-56)','Antarctica - 76°S to 80°S and 132°E to 156°E.',-80.0,-76.0,132.0,156.0,0);
INSERT INTO "extent" VALUES('EPSG','3061','Antarctica - 76°S to 80°S, 156°E to 180°E (ST57-60)','Antarctica - 76°S to 80°S and 156°E to 180°E.',-80.0,-76.0,156.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','3062','Antarctica - 80°S to 84°S, 180°W to 150°W (SU01-05)','Antarctica - 80°S to 84°S and 180°W to 150°W.',-84.0,-80.0,-180.0,-150.0,0);
INSERT INTO "extent" VALUES('EPSG','3063','Antarctica - 80°S to 84°S, 150°W to 120°W (SU06-10)','Antarctica - 80°S to 84°S and 150°W to 120°W.',-84.0,-80.0,-150.0,-120.0,0);
INSERT INTO "extent" VALUES('EPSG','3064','Antarctica - 80°S to 84°S, 120°W to 90°W (SU11-15)','Antarctica - 80°S to 84°S and 120°W to 90°W.',-84.0,-80.0,-120.0,-90.0,0);
INSERT INTO "extent" VALUES('EPSG','3065','Antarctica - 80°S to 84°S, 90°W to 60°W (SU16-20)','Antarctica - 80°S to 84°S and 90°W to 60°W.',-84.0,-80.0,-90.0,-60.0,0);
INSERT INTO "extent" VALUES('EPSG','3066','Antarctica - 80°S to 84°S, 60°W to 30°W (SU21-25)','Antarctica - 80°S to 84°S and 60°W to 30°W.',-84.0,-80.0,-60.0,-30.0,0);
INSERT INTO "extent" VALUES('EPSG','3067','Antarctica - 80°S to 84°S, 30°W to 0°W (SU26-30)','Antarctica - 80°S to 84°S and 30°W to 0°W.',-84.0,-80.0,-30.0,0.0,0);
INSERT INTO "extent" VALUES('EPSG','3068','Antarctica - 80°S to 84°S, 0°E to 30°E (SU31-35)','Antarctica - 80°S to 84°S and 0°E to 30°E.',-84.0,-80.0,0.0,30.0,0);
INSERT INTO "extent" VALUES('EPSG','3069','Antarctica - 80°S to 84°S, 30°E to 60°E (SU36-40)','Antarctica - 80°S to 84°S and 30°E to 60°E.',-84.0,-80.0,30.0,60.0,0);
INSERT INTO "extent" VALUES('EPSG','3070','Antarctica - 80°S to 84°S, 60°E to 90°E (SU41-45)','Antarctica - 80°S to 84°S and 60°E to 90°E.',-84.0,-80.0,60.0,90.0,0);
INSERT INTO "extent" VALUES('EPSG','3071','Antarctica - 80°S to 84°S, 90°E to 120°E (SU46-50)','Antarctica - 80°S to 84°S and 90°E to 120°E.',-84.0,-80.0,90.0,120.0,0);
INSERT INTO "extent" VALUES('EPSG','3072','Antarctica - 80°S to 84°S, 120°E to 150°E (SU51-55)','Antarctica - 80°S to 84°S and 120°E to 150°E.',-84.0,-80.0,120.0,150.0,0);
INSERT INTO "extent" VALUES('EPSG','3073','Antarctica - 80°S to 84°S, 150°E to 180° (SU56-60)','Antarctica - 80°S to 84°S and 150°E to 180°E.',-84.0,-80.0,150.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','3074','Antarctica - 84°S to 88°S, 180°W to 120°W (SV01-10)','Antarctica - 84°S to 88°S and 180°W to 120°W.',-88.0,-84.0,-180.0,-120.0,0);
INSERT INTO "extent" VALUES('EPSG','3075','Antarctica - 84°S to 88°S, 120°W to 60°W (SV11-20)','Antarctica - 84°S to 88°S and 120°W to 60°W.',-88.0,-84.0,-120.0,-60.0,0);
INSERT INTO "extent" VALUES('EPSG','3076','Antarctica - 84°S to 88°S, 60°W to 0°W (SV21-30)','Antarctica - 84°S to 88°S and 60°W to 0°W.',-88.0,-84.0,-60.0,0.0,0);
INSERT INTO "extent" VALUES('EPSG','3077','Antarctica - 84°S to 88°S, 0°E to 60°E (SV31-40)','Antarctica - 84°S to 88°S and 0°E to 60°E.',-88.0,-84.0,0.0,60.0,0);
INSERT INTO "extent" VALUES('EPSG','3078','Antarctica - 84°S to 88°S, 60°E to 120°E (SV41-50)','Antarctica - 84°S to 88°S and 60°E to 120°E.',-88.0,-84.0,60.0,120.0,0);
INSERT INTO "extent" VALUES('EPSG','3079','Antarctica - 84°S to 88°S, 120°E to 180°E (SV51-60)','Antarctica - 84°S to 88°S and 120°E to 180°E.',-88.0,-84.0,120.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','3080','Antarctica - 88°S to 90°S, 180°W to 180°E (SW01-60)','Antarctica - 88°S to 90°S and 180°W to 180°E.',-90.0,-88.0,-180.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','3081','Antarctica - Transantarctic mountains north of 80°S','Antarctica - Transantarctic mountains north of 80°S.',-80.0,-68.6,149.83,174.01,0);
INSERT INTO "extent" VALUES('EPSG','3082','Colombia region 1','Colombia - region I (north east). Onshore north of 9°48''N and east of 73°W.',9.8,12.52,-73.0,-71.06,0);
INSERT INTO "extent" VALUES('EPSG','3083','Colombia region 2','Colombia - region II (north west). Onshore north of 9°24''N and west of 73°W.',9.39,11.59,-76.08,-73.0,0);
INSERT INTO "extent" VALUES('EPSG','3084','Colombia region 3','Colombia - region III - onshore between 8°N and 9°24''N and west of 74°24''W.',8.0,9.4,-77.48,-74.39,0);
INSERT INTO "extent" VALUES('EPSG','3085','Colombia region 4','Colombia - region IV - between 5°N and 9°24''N and between 74°24''W and 72°W.',5.0,9.4,-74.4,-71.99,0);
INSERT INTO "extent" VALUES('EPSG','3086','Colombia region 5','Colombia - region V - onshore between 5°N and 8°N and west of 74°24''W.',5.0,8.01,-77.92,-74.39,0);
INSERT INTO "extent" VALUES('EPSG','3087','Colombia region 6','Colombia - region VI - onshore between 3°N and 5°N and west of 74°24''W.',3.0,5.01,-77.68,-74.39,0);
INSERT INTO "extent" VALUES('EPSG','3088','Colombia region 7','Colombia - region VII (south west). Onshore south of 3°N and west of 74°W.',-1.13,3.01,-79.1,-74.0,0);
INSERT INTO "extent" VALUES('EPSG','3089','Colombia region 8','Colombia - region VIII (south east). South and east of a line from the intersection of the meridian of 74°W with the southern border, northwards to 3°N, 74°W, westwards to 3°''N, 74°24''W, northwards to 5°N, 74°24''W, eastwards to 5°N, 72°W, and then northwards to the intersection of the meridian of 72°W with the international border.',-4.23,7.1,-74.4,-66.87,0);
INSERT INTO "extent" VALUES('EPSG','3090','Colombia - 78°35''W to 75°35''W','Colombia - onshore between 78°35''W and 75°35''W of Greenwich (4°30'' W and 1°30'' W of Bogota).',0.03,10.21,-78.59,-75.58,0);
INSERT INTO "extent" VALUES('EPSG','3091','Colombia - west of 78°35''W','Colombia - mainland onshore west of 78°35''W of Greenwich (4°30'' W of Bogota).',1.23,2.48,-79.1,-78.58,0);
INSERT INTO "extent" VALUES('EPSG','3092','Finland - west of 19.5°E onshore','Finland - onshore west of 19°30''E.',60.08,60.34,19.24,19.5,0);
INSERT INTO "extent" VALUES('EPSG','3093','Finland - 19.5°E to 20.5°E onshore','Finland - onshore between 19°30''E and 20°30''E.',59.92,60.48,19.5,20.5,0);
INSERT INTO "extent" VALUES('EPSG','3094','Finland - 20.5°E to 21.5°E onshore','Finland - onshore between 20°30''E and 21°30''E.',59.84,69.33,20.5,21.5,0);
INSERT INTO "extent" VALUES('EPSG','3095','Finland - 21.5°E to 22.5°E onshore','Finland - onshore between 21°30''E and 22°30''E.',59.76,69.31,21.5,22.5,0);
INSERT INTO "extent" VALUES('EPSG','3096','Finland - 22.5°E to 23.5°E onshore','Finland - onshore between 22°30''E and 23°30''E.',59.75,68.74,22.5,23.5,0);
INSERT INTO "extent" VALUES('EPSG','3097','Finland - 23.5°E to 24.5°E onshore','Finland - onshore between 23°30''E and 24°30''E.',59.86,68.84,23.5,24.5,0);
INSERT INTO "extent" VALUES('EPSG','3098','Finland - 24.5°E to 25.5°E onshore','Finland - onshore between 24°30''E and 25°30''E.',59.94,68.9,24.5,25.5,0);
INSERT INTO "extent" VALUES('EPSG','3099','Finland - 25.5°E to 26.5°E onshore','Finland - onshore between 25°30''E and 26°30''E.',60.18,69.94,25.5,26.5,0);
INSERT INTO "extent" VALUES('EPSG','3100','Finland - 26.5°E to 27.5°E onshore','Finland - onshore between 26°30''E and 27°30''E.',60.36,70.05,26.5,27.5,0);
INSERT INTO "extent" VALUES('EPSG','3101','Finland - 27.5°E to 28.5°E onshore','Finland - onshore between 27°30''E and 28°30''E.',60.42,70.09,27.5,28.5,0);
INSERT INTO "extent" VALUES('EPSG','3102','Finland - 28.5°E to 29.5°E','Finland - between 28°30''E and 29°30''E.',60.94,69.81,28.5,29.5,0);
INSERT INTO "extent" VALUES('EPSG','3103','Finland - 29.5°E to 30.5°E','Finland - between 29°30''E and 30°30''E.',61.43,67.98,29.5,30.5,0);
INSERT INTO "extent" VALUES('EPSG','3104','Finland - east of 30.5°E','Finland - east of 30°30''E.',62.08,64.27,30.5,31.59,0);
INSERT INTO "extent" VALUES('EPSG','3105','French Guiana - coastal area','French Guiana - coastal area.',3.43,5.81,-54.45,-51.61,0);
INSERT INTO "extent" VALUES('EPSG','3106','Saudi Arabia - east of 54°E','Saudi Arabia - east of 54°E.',19.66,22.77,54.0,55.67,0);
INSERT INTO "extent" VALUES('EPSG','3107','Saudi Arabia - onshore west of 36°E','Saudi Arabia - onshore west of 36°E.',26.82,29.38,34.51,36.0,0);
INSERT INTO "extent" VALUES('EPSG','3108','Micronesia - Yap Islands','Federated States of Micronesia - Yap Islands.',9.39,9.69,137.99,138.27,0);
INSERT INTO "extent" VALUES('EPSG','3109','American Samoa - 2 main island groups','American Samoa - Tutuila, Aunu''u, Ofu, Olesega and Ta''u islands.',-14.43,-14.11,-170.88,-169.38,0);
INSERT INTO "extent" VALUES('EPSG','3110','American Samoa - 2 main island groups and Rose Island','American Samoa - Tutuila, Aunu''u, Ofu, Olesega, Ta''u and Rose islands.',-14.59,-14.11,-170.88,-168.09,0);
INSERT INTO "extent" VALUES('EPSG','3111','Europe - ED79 tfm','Austria; Finland; Netherlands; Norway; Spain; Sweden, Switzerland.',36.0,71.05,-8.95,31.6,1);
INSERT INTO "extent" VALUES('EPSG','3112','South America - 84°W to 78°W, N hemisphere and PSAD56 by country','South America (Ecuador) between 84°W and 78°W, northern hemisphere, onshore.',0.0,1.45,-80.18,-78.0,0);
INSERT INTO "extent" VALUES('EPSG','3113','Nigeria - OML 58','Nigeria - block OML 58.',5.05,5.36,6.53,6.84,0);
INSERT INTO "extent" VALUES('EPSG','3114','North America - 96°W to 90°W and NAD83 by country','North America - between 96°W and 90°W - onshore and offshore. Canada - Manitoba; Nunavut; Ontario. United States (USA) - Arkansas; Illinois; Iowa; Kansas; Louisiana; Michigan; Minnesota; Mississippi; Missouri; Nebraska; Oklahoma; Tennessee; Texas; Wisconsin.',25.61,84.0,-96.0,-90.0,0);
INSERT INTO "extent" VALUES('EPSG','3115','North America - 90°W to 84°W and NAD83 by country','North America - between 90°W and 84°W - onshore and offshore. Canada - Manitoba; Nunavut; Ontario. United States (USA) - Alabama; Arkansas; Florida; Georgia; Indiana; Illinois; Kentucky; Louisiana; Michigan; Minnesota; Mississippi; Missouri; North Carolina; Ohio; Tennessee; Wisconsin.',23.97,84.0,-90.0,-84.0,0);
INSERT INTO "extent" VALUES('EPSG','3116','North America - 84°W to 78°W and NAD83 by country','North America - between 84°W and 78°W - onshore and offshore. Canada - Nunavut; Ontario; Quebec. United States (USA) - Florida; Georgia; Kentucky; Maryland; Michigan; New York; North Carolina; Ohio; Pennsylvania; South Carolina; Tennessee; Virginia; West Virginia.',23.81,84.0,-84.0,-78.0,0);
INSERT INTO "extent" VALUES('EPSG','3117','North America - 78°W to 72°W and NAD83 by country','North America - between 78°W and 72°W - onshore and offshore. Canada - Nunavut; Ontario; Quebec. United States (USA) - Connecticut; Delaware; Maryland; Massachusetts; New Hampshire; New Jersey; New York; North Carolina; Pennsylvania; Virginia; Vermont.',28.28,84.0,-78.0,-72.0,0);
INSERT INTO "extent" VALUES('EPSG','3118','Grenada - main island - onshore','Grenada - main island - onshore.',11.94,12.29,-61.84,-61.54,0);
INSERT INTO "extent" VALUES('EPSG','3119','Greenland - onshore','Greenland - onshore.',59.74,83.67,-73.29,-11.81,0);
INSERT INTO "extent" VALUES('EPSG','3120','French Polynesia - west of 150°W','French Polynesia - west of 150°W onshore and offshore.',-26.7,-12.5,-158.13,-150.0,0);
INSERT INTO "extent" VALUES('EPSG','3121','French Polynesia - 150°W to 144°W','French Polynesia - between 150°W and 144°W onshore and offshore.',-31.2,-7.29,-150.0,-144.0,0);
INSERT INTO "extent" VALUES('EPSG','3122','French Polynesia - 144°W to 138°W','French Polynesia - between 144°W and 138°W onshore and offshore.',-31.24,-4.52,-144.0,-138.0,0);
INSERT INTO "extent" VALUES('EPSG','3123','French Polynesia - east of 138°W','French Polynesia - east of 138°W.',-26.58,-5.52,-138.0,-131.97,0);
INSERT INTO "extent" VALUES('EPSG','3124','French Polynesia - Society Islands - Tahiti','French Polynesia - Society Islands - Tahiti.',-17.93,-17.44,-149.7,-149.09,0);
INSERT INTO "extent" VALUES('EPSG','3125','French Polynesia - Society Islands - Moorea','French Polynesia - Society Islands - Moorea.',-17.63,-17.41,-150.0,-149.73,0);
INSERT INTO "extent" VALUES('EPSG','3126','French Polynesia - Society Islands - Maupiti','French Polynesia - Society Islands - Maupiti.',-16.57,-16.34,-152.39,-152.14,0);
INSERT INTO "extent" VALUES('EPSG','3127','French Polynesia - Marquesas Islands - Ua Huka','French Polynesia - Marquesas Islands - Ua Huka.',-9.0,-8.81,-139.66,-139.44,0);
INSERT INTO "extent" VALUES('EPSG','3128','French Polynesia - Marquesas Islands - Ua Pou','French Polynesia - Marquesas Islands - Ua Pou.',-9.57,-9.27,-140.21,-139.95,0);
INSERT INTO "extent" VALUES('EPSG','3129','French Polynesia - Marquesas Islands - Nuku Hiva, Ua Huka and Ua Pou','French Polynesia - Marquesas Islands - Nuku Hiva, Ua Huka and Ua Pou.',-9.57,-8.72,-140.31,-139.44,0);
INSERT INTO "extent" VALUES('EPSG','3130','French Polynesia - Marquesas Islands - Hiva Oa and Tahuata','French Polynesia - Marquesas Islands - Hiva Oa and Tahuata.',-10.08,-9.64,-139.23,-138.75,0);
INSERT INTO "extent" VALUES('EPSG','3131','French Polynesia - Marquesas Islands - Hiva Oa','French Polynesia - Marquesas Islands - Hiva Oa.',-9.89,-9.64,-139.23,-138.75,0);
INSERT INTO "extent" VALUES('EPSG','3132','French Polynesia - Marquesas Islands - Tahuata','French Polynesia - Marquesas Islands - Tahuata.',-10.08,-9.86,-139.19,-138.98,0);
INSERT INTO "extent" VALUES('EPSG','3133','French Polynesia - Marquesas Islands - Fatu Hiva','French Polynesia - Marquesas Islands - Fatu Hiva.',-10.6,-10.36,-138.75,-138.54,0);
INSERT INTO "extent" VALUES('EPSG','3134','French Polynesia - Society Islands - main islands','French Polynesia - Society Islands - Bora Bora, Huahine, Maupiti, Moorea, Raiatea, Tahaa and Tahiti.',-17.93,-16.17,-152.39,-149.09,0);
INSERT INTO "extent" VALUES('EPSG','3135','French Polynesia - Society Islands - Huahine','French Polynesia - Society Islands - Huahine.',-16.87,-16.63,-151.11,-150.89,0);
INSERT INTO "extent" VALUES('EPSG','3136','French Polynesia - Society Islands - Raiatea','French Polynesia - Society Islands - Raiatea.',-16.96,-16.68,-151.55,-151.3,0);
INSERT INTO "extent" VALUES('EPSG','3137','French Polynesia - Society Islands - Bora Bora','French Polynesia - Society Islands - Bora Bora.',-16.62,-16.39,-151.86,-151.61,0);
INSERT INTO "extent" VALUES('EPSG','3138','French Polynesia - Society Islands - Tahaa','French Polynesia - Society Islands - Tahaa.',-16.72,-16.5,-151.63,-151.36,0);
INSERT INTO "extent" VALUES('EPSG','3139','Australia - New South Wales','Australia - New South Wales.',-37.53,-28.15,140.99,153.69,0);
INSERT INTO "extent" VALUES('EPSG','3140','Iran - South Pars block 11','Iran - South Pars field phase 11.',26.46,26.64,52.22,52.41,0);
INSERT INTO "extent" VALUES('EPSG','3141','Iran - Tombak LNG plant','Iran - Tombak LNG plant.',27.63,27.81,52.09,52.26,0);
INSERT INTO "extent" VALUES('EPSG','3142','Libya - Sirte NC192','Libya - Sirte Basin licence NC192.',27.5,28.07,21.25,21.59,0);
INSERT INTO "extent" VALUES('EPSG','3143','Trinidad and Tobago - Trinidad - onshore','Trinidad and Tobago - Trinidad - onshore.',9.99,10.9,-61.98,-60.85,0);
INSERT INTO "extent" VALUES('EPSG','3144','French Guiana - east of 54°W','French Guiana - east of 54°W, onshore and offshore.',2.17,8.88,-54.0,-49.45,0);
INSERT INTO "extent" VALUES('EPSG','3145','French Guiana - west of 54°W','French Guiana - west of 54°W.',2.11,5.69,-54.61,-54.0,0);
INSERT INTO "extent" VALUES('EPSG','3146','French Guiana - onshore','French Guiana - onshore.',2.11,5.81,-54.61,-51.61,0);
INSERT INTO "extent" VALUES('EPSG','3147','Congo DR (Zaire) - Katanga','The Democratic Republic of the Congo (Zaire) - Katanga.',-13.46,-4.99,21.74,30.78,0);
INSERT INTO "extent" VALUES('EPSG','3148','Congo DR (Zaire) - Kasai - SE','The Democratic Republic of the Congo (Zaire) - Kasai - south of 5°S and east of 21°30''E.',-7.31,-5.01,21.5,26.26,0);
INSERT INTO "extent" VALUES('EPSG','3149','Congo DR (Zaire) - 6th parallel south','The Democratic Republic of the Congo (Zaire) - adjacent to 6th parallel south traverse.',-7.36,-3.29,12.17,29.64,0);
INSERT INTO "extent" VALUES('EPSG','3150','Congo DR (Zaire) - 11°E to 13°E onshore','The Democratic Republic of the Congo (Zaire) - onshore west of 13°E.',-6.04,-4.67,12.17,13.01,0);
INSERT INTO "extent" VALUES('EPSG','3151','Congo DR (Zaire) - 13°E to 15°E','The Democratic Republic of the Congo (Zaire) - between 13°E to 15°E.',-5.91,-4.28,13.0,15.01,0);
INSERT INTO "extent" VALUES('EPSG','3152','Congo DR (Zaire) - 15°E to 17°E','The Democratic Republic of the Congo (Zaire) - between 15°E to 17°E.',-7.31,-1.13,14.99,17.01,0);
INSERT INTO "extent" VALUES('EPSG','3153','Congo DR (Zaire) - 17°E to 19°E','The Democratic Republic of the Congo (Zaire) - between 17°E to 19°E.',-8.11,4.77,17.0,19.01,0);
INSERT INTO "extent" VALUES('EPSG','3154','Congo DR (Zaire) - 19°E to 21°E','The Democratic Republic of the Congo (Zaire) - between 19°E to 21°E.',-8.0,5.16,18.99,21.01,0);
INSERT INTO "extent" VALUES('EPSG','3155','Congo DR (Zaire) - 21°E to 23°E','The Democratic Republic of the Congo (Zaire) - between 21°E to 23°E.',-11.24,4.84,20.99,23.01,0);
INSERT INTO "extent" VALUES('EPSG','3156','Congo DR (Zaire) - 23°E to 25°E','The Democratic Republic of the Congo (Zaire) - between 23°E to 25°E.',-11.47,5.12,22.99,25.01,0);
INSERT INTO "extent" VALUES('EPSG','3157','Congo DR (Zaire) - 25°E to 27°E','The Democratic Republic of the Congo (Zaire) - between 25°E to 27°E.',-11.99,5.39,24.99,27.0,0);
INSERT INTO "extent" VALUES('EPSG','3158','Congo DR (Zaire) - 27°E to 29°E','The Democratic Republic of the Congo (Zaire) - between 27°E to 29°E.',-13.39,5.21,26.99,29.01,0);
INSERT INTO "extent" VALUES('EPSG','3159','Congo DR (Zaire) - east of 29°E','The Democratic Republic of the Congo (Zaire) - east of 29°E.',-13.46,4.69,29.0,31.31,0);
INSERT INTO "extent" VALUES('EPSG','3160','Congo DR (Zaire) - 6th parallel south 15°E to 17°E','The Democratic Republic of the Congo (Zaire) - adjacent to 6th parallel south traverse between 15°E and 17°E.',-5.87,-3.29,15.0,17.0,0);
INSERT INTO "extent" VALUES('EPSG','3161','Congo DR (Zaire) - 6th parallel south 17°E to 19°E','The Democratic Republic of the Congo (Zaire) - adjacent to 6th parallel traverse between 17°E and 19°E.',-5.38,-3.4,17.0,19.0,0);
INSERT INTO "extent" VALUES('EPSG','3162','Congo DR (Zaire) - 6th parallel south 19°E to 21°E','The Democratic Republic of the Congo (Zaire) - adjacent to 6th parallel south traverse between 19°E and 21°E.',-7.29,-4.01,19.0,21.0,0);
INSERT INTO "extent" VALUES('EPSG','3163','Congo DR (Zaire) - 6th parallel south 21°E to 23°E','The Democratic Republic of the Congo (Zaire) - adjacent to 6th parallel south traverse between 21°E and 23°E.',-7.31,-5.31,21.0,23.0,0);
INSERT INTO "extent" VALUES('EPSG','3164','Congo DR (Zaire) - 6th parallel south 23°E to 25°E','The Democratic Republic of the Congo (Zaire) - adjacent to 6th parallel south traverse between 23°E and 25°E.',-6.99,-5.01,23.0,25.0,0);
INSERT INTO "extent" VALUES('EPSG','3165','Congo DR (Zaire) - 6th parallel south 25°E to 27°E','The Democratic Republic of the Congo (Zaire) - adjacent to 6th parallel south traverse between 25°E and 27°E.',-7.26,-4.23,25.0,27.0,0);
INSERT INTO "extent" VALUES('EPSG','3166','Congo DR (Zaire) - 6th parallel south 27°E to 29°E','The Democratic Republic of the Congo (Zaire) - adjacent to 6th parallel south traverse between 27°E and 29°E.',-7.36,-4.24,27.0,29.0,0);
INSERT INTO "extent" VALUES('EPSG','3167','Congo DR (Zaire) - 6th parallel south 29°E to 31°E','The Democratic Republic of the Congo (Zaire) - adjacent to 6th parallel south traverse and east of 29°E.',-6.04,-4.34,29.0,29.64,0);
INSERT INTO "extent" VALUES('EPSG','3168','Poland - west of 18°E','Poland - west of 18°E.',49.98,54.85,14.14,18.0,1);
INSERT INTO "extent" VALUES('EPSG','3169','Poland - 18°E to 24°E','Poland - between 18°E and 24°E.',49.03,55.95,18.0,24.0,1);
INSERT INTO "extent" VALUES('EPSG','3170','Poland - east of 24°E','Poland - east of 24°E.',50.4,50.9,24.0,24.16,1);
INSERT INTO "extent" VALUES('EPSG','3171','Congo DR (Zaire) - Bas Congo','The Democratic Republic of the Congo (Zaire) - Lower Congo (Bas Congo)',-6.04,-4.28,12.17,16.28,0);
INSERT INTO "extent" VALUES('EPSG','3172','Pacific Ocean','Pacific Ocean - American Samoa, Antarctica, Australia, Brunei Darussalam, Cambodia, Canada, Chile, China, China - Hong Kong, China - Macao, Cook Islands, Ecuador, Fiji, French Polynesia, Guam, Indonesia, Japan, Kiribati, Democratic People''s Republic of Korea (North Korea), Republic of Korea (South Korea), Malaysia, Marshall Islands, Federated States of Micronesia, Nauru, New Caledonia, New Zealand, Niue, Norfolk Island, Northern Mariana Islands, Palau, Panama, Papua New Guinea (PNG), Peru, Philippines, Pitcairn, Russian Federation, Samoa, Singapore, Solomon Islands, Taiwan, Thailand, Tokelau, Tonga, Tuvalu, United States (USA), United States Minor Outlying Islands, Vanuatu, Venezuela, Vietnam, Wallis and Futuna.',-60.0,66.67,98.69,-68.0,0);
INSERT INTO "extent" VALUES('EPSG','3173','Europe - FSU - CS63 zone C0','Estonia, Latvia and Lithuania - onshore west of 23°27''E. Russia - Kaliningrad onshore.',54.17,59.27,19.57,23.45,0);
INSERT INTO "extent" VALUES('EPSG','3174','Europe - FSU - CS63 zone C1','Estonia, Latvia and Lithuania - onshore between 23°27''E and 26°27''E.',53.89,59.72,23.45,26.45,0);
INSERT INTO "extent" VALUES('EPSG','3175','Europe - FSU - CS63 zone C2','Estonia, Latvia and Lithuania - onshore east of 26°27''E.',55.15,59.61,26.45,28.24,0);
INSERT INTO "extent" VALUES('EPSG','3176','Brazil - 54°W to 48°W and south of 15°S','Brazil - onshore between 54°W and 48°W and south of 15°S.',-33.78,-15.0,-54.0,-48.0,0);
INSERT INTO "extent" VALUES('EPSG','3177','Brazil - 48°W to 42°W and south of 15°S','Brazil - onshore between 48°W and 42°W and south of 15°S.',-25.29,-15.0,-48.0,-42.0,0);
INSERT INTO "extent" VALUES('EPSG','3178','Brazil - east of 36°W onshore','Brazil - onshore east of 36°W .',-10.1,-4.99,-36.0,-34.74,0);
INSERT INTO "extent" VALUES('EPSG','3179','Africa - Angola (Cabinda) and DR Congo (Zaire) - coastal','Angola (Cabinda) - onshore and offshore; The Democratic Republic of the Congo (Zaire) - onshore coastal area and offshore.',-6.04,-4.38,10.53,13.1,0);
INSERT INTO "extent" VALUES('EPSG','3180','Africa - Angola (Cabinda) and DR Congo (Zaire) - offshore','Angola (Cabinda) - offshore; The Democratic Republic of the Congo (Zaire) - offshore.',-6.04,-5.05,10.53,12.37,0);
INSERT INTO "extent" VALUES('EPSG','3181','USA - Hawaii - Tern Island and Sorel Atoll','United States (USA) - Hawaii - Tern Island and Sorel Atoll.',23.69,23.93,-166.36,-166.03,0);
INSERT INTO "extent" VALUES('EPSG','3182','St Helena - Ascension Island','St Helena, Ascension and Tristan da Cunha - Ascension Island - onshore.',-8.03,-7.83,-14.46,-14.24,0);
INSERT INTO "extent" VALUES('EPSG','3183','St Helena - St Helena Island','St Helena, Ascension and Tristan da Cunha - St Helena Island - onshore.',-16.08,-15.85,-5.85,-5.58,0);
INSERT INTO "extent" VALUES('EPSG','3184','St Helena - Tristan da Cunha','St Helena, Ascension and Tristan da Cunha - Tristan da Cunha island group including Tristan, Inaccessible, Nightingale, Middle and Stoltenhoff Islands.',-40.42,-37.0,-12.76,-9.8,0);
INSERT INTO "extent" VALUES('EPSG','3185','Cayman Islands - Grand Cayman','Cayman Islands - Grand Cayman.',19.21,19.41,-81.46,-81.04,0);
INSERT INTO "extent" VALUES('EPSG','3186','Cayman Islands - Little Cayman and Cayman Brac','Cayman Islands - Little Cayman and Cayman Brac.',19.63,19.78,-80.14,-79.69,0);
INSERT INTO "extent" VALUES('EPSG','3187','South Georgia and the South Sandwich Islands - onshore','South Georgia and the South Sandwich Islands - onshore.',-59.53,-53.49,-42.14,-26.19,0);
INSERT INTO "extent" VALUES('EPSG','3188','Chile - Easter Island onshore','Chile - Easter Island onshore.',-27.25,-27.01,-109.51,-109.16,0);
INSERT INTO "extent" VALUES('EPSG','3189','British Indian Ocean Territory - Diego Garcia','British Indian Ocean Territory - Chagos Archipelago - Diego Garcia.',-7.49,-7.18,72.3,72.55,0);
INSERT INTO "extent" VALUES('EPSG','3190','Wake - onshore','Wake atoll - onshore.',19.22,19.38,166.55,166.72,0);
INSERT INTO "extent" VALUES('EPSG','3191','Pacific - Marshall Islands, Wake - onshore','Marshall Islands - onshore. Wake atoll onshore.',8.66,19.38,162.27,167.82,0);
INSERT INTO "extent" VALUES('EPSG','3192','Micronesia - Kosrae (Kusaie)','Federated States of Micronesia - Kosrae (Kusaie).',5.21,5.43,162.85,163.1,0);
INSERT INTO "extent" VALUES('EPSG','3193','Vanuatu - southern islands','Vanuatu - southern islands - Aneityum, Efate, Erromango and Tanna.',-20.31,-17.37,168.09,169.95,0);
INSERT INTO "extent" VALUES('EPSG','3194','Vanuatu - northern islands','Vanuatu - northern islands - Aese, Ambrym, Aoba, Epi, Espiritu Santo, Maewo, Malo, Malkula, Paama, Pentecost, Shepherd and Tutuba.',-17.32,-14.57,166.47,168.71,0);
INSERT INTO "extent" VALUES('EPSG','3195','Fiji - Viti Levu','Fiji - Viti Levu island.',-18.32,-17.25,177.19,178.75,0);
INSERT INTO "extent" VALUES('EPSG','3196','Kiribati - Phoenix Islands','Kiribati - Phoenix Islands: Kanton, Orona, McKean Atoll, Birnie Atoll, Phoenix Seamounts.',-4.76,-2.68,-174.6,-170.66,0);
INSERT INTO "extent" VALUES('EPSG','3197','Solomon Islands - Guadalcanal Island','Solomon Islands - Guadalcanal Island.',-9.98,-9.2,159.55,160.88,0);
INSERT INTO "extent" VALUES('EPSG','3198','Solomon Islands - New Georgia - Ghizo (Gizo)','Solomon Islands - Western Islands - New Georgia, Ghizo (Gizo).',-8.86,-7.52,156.44,158.2,0);
INSERT INTO "extent" VALUES('EPSG','3199','Spain - Canary Islands','Spain - Canary Islands onshore and offshore.',24.6,32.76,-21.93,-11.75,0);
INSERT INTO "extent" VALUES('EPSG','3200','Japan - Iwo Jima','Japan - Iwo Jima island.',24.67,24.89,141.2,141.42,0);
INSERT INTO "extent" VALUES('EPSG','3201','Johnston Island','United States Minor Outlying Islands - Johnston Island.',16.67,16.79,-169.59,-169.47,0);
INSERT INTO "extent" VALUES('EPSG','3202','Midway Islands - Sand and Eastern Islands','United States Minor Outlying Islands - Midway Islands - Sand Island and Eastern Island.',28.13,28.28,-177.45,-177.31,0);
INSERT INTO "extent" VALUES('EPSG','3203','Japan - Minamitori-shima (Marcus Island)','Japan - Minamitori-shima (Marcus Island).',24.26,24.32,153.95,154.01,1);
INSERT INTO "extent" VALUES('EPSG','3204','Antarctica - Deception Island','Antarctica - South Shetland Islands - Deception Island.',-63.08,-62.82,-60.89,-60.35,0);
INSERT INTO "extent" VALUES('EPSG','3205','Antarctica - Camp McMurdo area','Antarctica - McMurdo Sound, Camp McMurdo area.',-77.94,-77.17,165.73,167.43,0);
INSERT INTO "extent" VALUES('EPSG','3206','North America - Bahamas and USA - Florida - onshore','North America - onshore - Bahamas and USA - Florida (east).',20.86,30.83,-82.33,-72.68,0);
INSERT INTO "extent" VALUES('EPSG','3207','Cayman Islands - Cayman Brac','Cayman Islands - Cayman Brac.',19.66,19.78,-79.92,-79.69,0);
INSERT INTO "extent" VALUES('EPSG','3208','Pitcairn - Pitcairn Island','Pitcairn - Pitcairn Island.',-25.14,-25.0,-130.16,-130.01,0);
INSERT INTO "extent" VALUES('EPSG','3209','Mauritius - mainland','Mauritius - mainland onshore.',-20.57,-19.94,57.25,57.85,0);
INSERT INTO "extent" VALUES('EPSG','3210','Serbia and Montenegro','Serbia and Montenegro - onshore and offshore.',41.82,46.23,18.44,23.05,1);
INSERT INTO "extent" VALUES('EPSG','3211','Aaland Islands','Åland Islands - onshore and offshore.',59.84,60.48,19.24,21.19,0);
INSERT INTO "extent" VALUES('EPSG','3212','Albania - onshore','Albania - onshore.',39.64,42.67,19.22,21.06,0);
INSERT INTO "extent" VALUES('EPSG','3213','Algeria - onshore','Algeria - onshore.',18.97,37.14,-8.67,11.99,0);
INSERT INTO "extent" VALUES('EPSG','3214','Anguilla - onshore','Anguilla - onshore.',18.11,18.33,-63.22,-62.92,0);
INSERT INTO "extent" VALUES('EPSG','3215','Argentina - mainland onshore','Argentina - mainland onshore.',-52.43,-21.78,-73.59,-53.65,0);
INSERT INTO "extent" VALUES('EPSG','3216','Aruba - onshore','Aruba - onshore.',12.36,12.68,-70.11,-69.82,0);
INSERT INTO "extent" VALUES('EPSG','3217','Bangladesh - onshore','Bangladesh - onshore.',20.52,26.64,88.01,92.67,0);
INSERT INTO "extent" VALUES('EPSG','3218','Barbados - onshore','Barbados - onshore.',13.0,13.39,-59.71,-59.37,0);
INSERT INTO "extent" VALUES('EPSG','3219','Belize - onshore','Belize - onshore.',15.88,18.49,-89.22,-87.72,0);
INSERT INTO "extent" VALUES('EPSG','3220','Benin - onshore','Benin - onshore.',6.17,12.4,0.77,3.86,0);
INSERT INTO "extent" VALUES('EPSG','3221','Bermuda - onshore','Bermuda - onshore.',32.21,32.43,-64.89,-64.61,0);
INSERT INTO "extent" VALUES('EPSG','3222','Bouvet Island - onshore','Bouvet Island - onshore.',-54.52,-54.33,3.29,3.54,0);
INSERT INTO "extent" VALUES('EPSG','3223','Brazil - onshore','Brazil - onshore.',-33.78,5.28,-74.01,-34.74,0);
INSERT INTO "extent" VALUES('EPSG','3224','Bulgaria - onshore','Bulgaria - onshore.',41.24,44.23,22.36,28.68,0);
INSERT INTO "extent" VALUES('EPSG','3225','Cambodia - onshore','Cambodia - onshore.',10.39,14.73,102.34,107.64,0);
INSERT INTO "extent" VALUES('EPSG','3226','Cameroon - onshore','Cameroon - onshore.',1.65,13.09,8.45,16.21,0);
INSERT INTO "extent" VALUES('EPSG','3227','Chile - onshore north of 45°S','Chile - onshore north of 45°S.',-45.0,-17.5,-75.22,-67.0,0);
INSERT INTO "extent" VALUES('EPSG','3228','China - onshore','China - onshore.',18.11,53.56,73.62,134.77,0);
INSERT INTO "extent" VALUES('EPSG','3229','Colombia - mainland','Colombia - mainland onshore.',-4.23,12.52,-79.1,-66.87,0);
INSERT INTO "extent" VALUES('EPSG','3230','Congo - onshore','Congo - onshore.',-5.06,3.72,11.11,18.65,0);
INSERT INTO "extent" VALUES('EPSG','3231','Congo DR (Zaire) - onshore','The Democratic Republic of the Congo (Zaire) - onshore.',-13.46,5.39,12.17,31.31,0);
INSERT INTO "extent" VALUES('EPSG','3232','Costa Rica - onshore','Costa Rica - onshore.',7.98,11.22,-85.97,-82.53,0);
INSERT INTO "extent" VALUES('EPSG','3233','Cote d''Ivoire (Ivory Coast) - onshore','Côte d''Ivoire (Ivory Coast) - onshore.',4.29,10.74,-8.61,-2.48,0);
INSERT INTO "extent" VALUES('EPSG','3234','Croatia - onshore','Croatia - onshore.',42.34,46.54,13.43,19.43,0);
INSERT INTO "extent" VALUES('EPSG','3235','Cuba - onshore','Cuba - onshore.',19.77,23.25,-85.01,-74.07,0);
INSERT INTO "extent" VALUES('EPSG','3236','Cyprus - onshore','Cyprus - onshore.',34.59,35.74,32.2,34.65,0);
INSERT INTO "extent" VALUES('EPSG','3237','Denmark - onshore','Denmark - onshore.',54.51,57.8,8.0,15.24,0);
INSERT INTO "extent" VALUES('EPSG','3238','Djibouti - onshore','Djibouti - onshore.',10.94,12.72,41.75,43.48,0);
INSERT INTO "extent" VALUES('EPSG','3239','Dominica - onshore','Dominica - onshore.',15.14,15.69,-61.55,-61.2,0);
INSERT INTO "extent" VALUES('EPSG','3240','Dominican Republic - onshore','Dominican Republic - onshore.',17.55,19.99,-72.01,-68.27,0);
INSERT INTO "extent" VALUES('EPSG','3241','Ecuador - mainland onshore','Ecuador - mainland - onshore.',-5.01,1.45,-81.03,-75.21,0);
INSERT INTO "extent" VALUES('EPSG','3242','Egypt - onshore','Egypt - onshore.',21.97,31.68,24.7,36.95,0);
INSERT INTO "extent" VALUES('EPSG','3243','El Salvador - onshore','El Salvador - onshore.',13.1,14.44,-90.11,-87.69,0);
INSERT INTO "extent" VALUES('EPSG','3244','Equatorial Guinea - onshore','Equatorial Guinea - onshore.',0.93,3.82,8.37,11.36,0);
INSERT INTO "extent" VALUES('EPSG','3245','Eritrea - onshore','Eritrea - onshore.',12.36,18.01,36.44,43.18,0);
INSERT INTO "extent" VALUES('EPSG','3246','Estonia - onshore','Estonia - onshore.',57.52,59.75,21.74,28.2,0);
INSERT INTO "extent" VALUES('EPSG','3247','Falkland Islands - onshore','Falkland Islands (Malvinas) - onshore.',-52.51,-50.96,-61.55,-57.6,0);
INSERT INTO "extent" VALUES('EPSG','3248','Faroe Islands - onshore','Faroe Islands - onshore.',61.33,62.41,-7.49,-6.33,0);
INSERT INTO "extent" VALUES('EPSG','3249','Gabon - onshore','Gabon - onshore.',-3.98,2.32,8.65,14.52,0);
INSERT INTO "extent" VALUES('EPSG','3250','Gambia - onshore','Gambia - onshore.',13.05,13.83,-16.88,-13.79,0);
INSERT INTO "extent" VALUES('EPSG','3251','Georgia - onshore','Georgia - onshore.',41.04,43.59,39.99,46.72,0);
INSERT INTO "extent" VALUES('EPSG','3252','Ghana - onshore','Ghana - onshore.',4.67,11.16,-3.25,1.23,0);
INSERT INTO "extent" VALUES('EPSG','3253','Gibraltar - onshore','Gibraltar - onshore.',36.07,36.16,-5.42,-5.27,0);
INSERT INTO "extent" VALUES('EPSG','3254','Greece - onshore','Greece - onshore.',34.88,41.75,19.57,28.3,0);
INSERT INTO "extent" VALUES('EPSG','3255','Guam - onshore','Guam - onshore.',13.18,13.7,144.58,145.01,0);
INSERT INTO "extent" VALUES('EPSG','3256','Guatemala - onshore','Guatemala - onshore.',13.69,17.83,-92.29,-88.19,0);
INSERT INTO "extent" VALUES('EPSG','3257','Guinea - onshore','Guinea - onshore.',7.19,12.68,-15.13,-7.65,0);
INSERT INTO "extent" VALUES('EPSG','3258','Guinea-Bissau - onshore','Guinea-Bissau - onshore.',10.87,12.69,-16.77,-13.64,0);
INSERT INTO "extent" VALUES('EPSG','3259','Guyana - onshore','Guyana - onshore.',1.18,8.58,-61.39,-56.47,0);
INSERT INTO "extent" VALUES('EPSG','3260','Haiti - onshore','Haiti - onshore.',17.97,20.15,-74.52,-71.62,0);
INSERT INTO "extent" VALUES('EPSG','3261','Honduras - onshore','Honduras - onshore.',12.98,16.49,-89.36,-83.08,0);
INSERT INTO "extent" VALUES('EPSG','3262','Iceland - onshore','Iceland - onshore.',63.34,66.59,-24.66,-13.38,0);
INSERT INTO "extent" VALUES('EPSG','3263','Japan - onshore mainland','Japan - onshore mainland - Hokkaido, Honshu, Shikoku, Kyushu.',30.94,45.54,129.3,145.87,0);
INSERT INTO "extent" VALUES('EPSG','3264','Kenya - onshore','Kenya - onshore.',-4.72,4.63,33.9,41.91,0);
INSERT INTO "extent" VALUES('EPSG','3265','Korea, Democratic People''s Republic of (North Korea) - onshore','Democratic People''s Republic of Korea (North Korea) - onshore.',37.62,43.01,124.27,130.75,0);
INSERT INTO "extent" VALUES('EPSG','3266','Korea, Republic of (South Korea) - onshore','Republic of Korea (South Korea) - onshore.',33.14,38.64,124.53,131.01,0);
INSERT INTO "extent" VALUES('EPSG','3267','Kuwait - onshore','Kuwait - onshore.',28.53,30.09,46.54,48.48,0);
INSERT INTO "extent" VALUES('EPSG','3268','Latvia - onshore','Latvia - onshore.',55.67,58.09,20.87,28.24,0);
INSERT INTO "extent" VALUES('EPSG','3269','Lebanon - onshore','Lebanon - onshore.',33.06,34.65,35.04,36.63,0);
INSERT INTO "extent" VALUES('EPSG','3270','Liberia - onshore','Liberia - onshore.',4.29,8.52,-11.52,-7.36,0);
INSERT INTO "extent" VALUES('EPSG','3271','Libya - onshore','Libya - onshore.',19.5,33.23,9.31,25.21,0);
INSERT INTO "extent" VALUES('EPSG','3272','Lithuania - onshore','Lithuania - onshore.',53.89,56.45,20.86,26.82,0);
INSERT INTO "extent" VALUES('EPSG','3273','Madagascar - onshore','Madagascar - onshore.',-25.64,-11.89,43.18,50.56,0);
INSERT INTO "extent" VALUES('EPSG','3274','Maldives - onshore','Maldives - onshore.',-0.69,7.08,72.81,73.69,0);
INSERT INTO "extent" VALUES('EPSG','3275','Malta - onshore','Malta - onshore.',35.74,36.05,14.27,14.63,0);
INSERT INTO "extent" VALUES('EPSG','3276','Martinique - onshore','Martinique - onshore.',14.35,14.93,-61.29,-60.76,0);
INSERT INTO "extent" VALUES('EPSG','3277','Mauritania - onshore','Mauritania - onshore.',14.72,27.3,-17.08,-4.8,0);
INSERT INTO "extent" VALUES('EPSG','3278','Mexico - onshore','Mexico - onshore.',14.51,32.72,-118.47,-86.68,0);
INSERT INTO "extent" VALUES('EPSG','3279','Montserrat - onshore','Montserrat - onshore.',16.62,16.87,-62.29,-62.08,0);
INSERT INTO "extent" VALUES('EPSG','3280','Morocco - onshore','Morocco - onshore.',27.66,35.97,-13.24,-1.01,0);
INSERT INTO "extent" VALUES('EPSG','3281','Mozambique - onshore','Mozambique - onshore.',-26.87,-10.42,30.21,40.9,0);
INSERT INTO "extent" VALUES('EPSG','3282','Myanmar (Burma) - onshore','Myanmar (Burma) - onshore.',9.78,28.55,92.2,101.17,0);
INSERT INTO "extent" VALUES('EPSG','3283','Namibia - onshore','Namibia - onshore.',-28.97,-16.95,11.66,25.27,0);
INSERT INTO "extent" VALUES('EPSG','3284','Netherlands - onshore','Netherlands - onshore.',50.78,53.6,3.33,7.3,1);
INSERT INTO "extent" VALUES('EPSG','3285','New Zealand - onshore and nearshore','New Zealand - North Island, South Island, Stewart Island - onshore and nearshore.',-47.65,-33.89,165.87,179.27,0);
INSERT INTO "extent" VALUES('EPSG','3286','Nicaragua - onshore','Nicaragua - onshore.',10.7,15.03,-87.74,-83.08,0);
INSERT INTO "extent" VALUES('EPSG','3287','Nigeria - onshore','Nigeria - onshore.',4.22,13.9,2.69,14.65,0);
INSERT INTO "extent" VALUES('EPSG','3288','Oman - onshore','Oman - onshore. Includes Musandam and the Kuria Muria (Al Hallaniyah) islands.',16.59,26.58,51.99,59.91,0);
INSERT INTO "extent" VALUES('EPSG','3289','Pakistan - onshore','Pakistan - onshore.',23.64,37.07,60.86,77.83,0);
INSERT INTO "extent" VALUES('EPSG','3290','Panama - onshore','Panama - onshore.',7.15,9.68,-83.04,-77.19,0);
INSERT INTO "extent" VALUES('EPSG','3291','Papua New Guinea - onshore','Papua New Guinea - onshore.',-11.7,-1.3,140.85,156.02,0);
INSERT INTO "extent" VALUES('EPSG','3292','Peru - onshore','Peru - onshore.',-18.35,-0.03,-81.41,-68.67,0);
INSERT INTO "extent" VALUES('EPSG','3293','Poland - onshore','Poland - onshore.',49.0,54.89,14.14,24.15,0);
INSERT INTO "extent" VALUES('EPSG','3294','Puerto Rico - onshore','Puerto Rico - onshore.',17.87,18.57,-67.97,-65.19,0);
INSERT INTO "extent" VALUES('EPSG','3295','Romania - onshore','Romania - onshore.',43.62,48.27,20.26,29.74,0);
INSERT INTO "extent" VALUES('EPSG','3296','Russia - onshore','Russian Federation - onshore.',41.19,81.91,19.58,-168.97,0);
INSERT INTO "extent" VALUES('EPSG','3297','St Kitts and Nevis - onshore','St Kitts and Nevis - onshore.',17.06,17.46,-62.92,-62.5,0);
INSERT INTO "extent" VALUES('EPSG','3298','St Lucia - onshore','St Lucia - onshore.',13.66,14.16,-61.13,-60.82,0);
INSERT INTO "extent" VALUES('EPSG','3299','St Pierre and Miquelon - onshore','St Pierre and Miquelon - onshore.',46.69,47.19,-56.48,-56.07,0);
INSERT INTO "extent" VALUES('EPSG','3300','St Vincent and the Grenadines - onshore','St Vincent and the northern Grenadine Islands - onshore.',12.54,13.44,-61.52,-61.07,0);
INSERT INTO "extent" VALUES('EPSG','3301','Samoa - onshore','Samoa - onshore.',-14.11,-13.41,-172.84,-171.37,0);
INSERT INTO "extent" VALUES('EPSG','3302','Sao Tome and Principe - onshore','Sao Tome and Principe - onshore.',-0.04,1.76,6.41,7.52,0);
INSERT INTO "extent" VALUES('EPSG','3303','Saudi Arabia - onshore','Saudi Arabia - onshore.',16.37,32.16,34.51,55.67,0);
INSERT INTO "extent" VALUES('EPSG','3304','Senegal - onshore','Senegal - onshore.',12.29,16.7,-17.59,-11.36,0);
INSERT INTO "extent" VALUES('EPSG','3305','Serbia and Montenegro - onshore','Serbia and Montenegro - onshore.',41.82,46.23,18.44,23.05,1);
INSERT INTO "extent" VALUES('EPSG','3306','Sierra Leone - onshore','Sierra Leone - onshore.',6.88,10.0,-13.35,-10.26,0);
INSERT INTO "extent" VALUES('EPSG','3307','Slovenia - onshore','Slovenia - onshore.',45.42,46.88,13.38,16.61,0);
INSERT INTO "extent" VALUES('EPSG','3308','Somalia - onshore','Somalia - onshore.',-1.71,12.03,40.99,51.47,0);
INSERT INTO "extent" VALUES('EPSG','3309','South Africa - onshore','South Africa - mainland onshore.',-34.88,-22.13,16.45,32.95,0);
INSERT INTO "extent" VALUES('EPSG','3310','Sri Lanka - onshore','Sri Lanka - onshore.',5.86,9.88,79.64,81.95,0);
INSERT INTO "extent" VALUES('EPSG','3311','Africa - South Sudan and Sudan onshore','South Sudan. Sudan - onshore.',3.49,22.24,21.82,38.66,0);
INSERT INTO "extent" VALUES('EPSG','3312','Suriname - onshore','Suriname - onshore.',1.83,6.06,-58.08,-53.95,0);
INSERT INTO "extent" VALUES('EPSG','3313','Sweden - onshore','Sweden - onshore.',55.28,69.07,10.93,24.17,0);
INSERT INTO "extent" VALUES('EPSG','3314','Syria - onshore','Syria - onshore.',32.31,37.3,35.61,42.38,0);
INSERT INTO "extent" VALUES('EPSG','3315','Taiwan - onshore - mainland and Penghu','Taiwan, Republic of China - onshore - Taiwan Island, Penghu (Pescadores) Islands.',21.87,25.34,119.25,122.06,0);
INSERT INTO "extent" VALUES('EPSG','3316','Tanzania - onshore','Tanzania - onshore.',-11.75,-0.99,29.34,40.48,0);
INSERT INTO "extent" VALUES('EPSG','3317','Thailand - onshore','Thailand - onshore.',5.63,20.46,97.34,105.64,0);
INSERT INTO "extent" VALUES('EPSG','3318','East Timor - onshore','Timor-Leste (East Timor) - onshore.',-9.5,-8.08,124.03,127.36,0);
INSERT INTO "extent" VALUES('EPSG','3319','Togo - onshore','Togo - onshore.',6.05,11.14,-0.15,1.8,0);
INSERT INTO "extent" VALUES('EPSG','3320','Tokelau - onshore','Tokelau - onshore.',-9.27,-9.12,-171.92,-171.79,0);
INSERT INTO "extent" VALUES('EPSG','3321','Tonga - onshore','Tonga - onshore.',-21.32,-18.51,-175.42,-173.85,0);
INSERT INTO "extent" VALUES('EPSG','3322','Turkey - onshore','Turkey - onshore.',35.81,42.15,25.62,44.83,0);
INSERT INTO "extent" VALUES('EPSG','3323','Turks and Caicos Islands - onshore','Turks and Caicos Islands - onshore.',21.38,22.01,-72.09,-71.07,0);
INSERT INTO "extent" VALUES('EPSG','3324','Ukraine - onshore','Ukraine - onshore.',44.32,52.38,22.15,40.18,0);
INSERT INTO "extent" VALUES('EPSG','3325','UAE - onshore','United Arab Emirates (UAE) - onshore. Abu Dhabi, Dubai, Sharjah, Umm al Qaywayn, Al Fujairah, Ras al Khaymah.',22.63,26.1,51.56,56.44,0);
INSERT INTO "extent" VALUES('EPSG','3326','Uruguay - onshore','Uruguay - onshore.',-35.0,-30.09,-58.49,-53.09,0);
INSERT INTO "extent" VALUES('EPSG','3327','Venezuela - onshore','Venezuela - onshore.',0.64,12.25,-73.38,-59.8,0);
INSERT INTO "extent" VALUES('EPSG','3328','Vietnam - onshore','Vietnam - onshore.',8.33,23.4,102.14,109.53,0);
INSERT INTO "extent" VALUES('EPSG','3329','Virgin Islands, British - onshore','British Virgin Islands - onshore - Anegada, Jost Van Dyke, Tortola, and Virgin Gorda.',18.28,18.78,-64.88,-64.25,0);
INSERT INTO "extent" VALUES('EPSG','3330','Virgin Islands, US - onshore','US Virgin Islands - onshore - St Croix, St John, and St Thomas.',17.62,18.44,-65.09,-64.51,0);
INSERT INTO "extent" VALUES('EPSG','3331','Western Sahara - onshore','Western Sahara - onshore.',20.71,27.67,-17.16,-8.66,0);
INSERT INTO "extent" VALUES('EPSG','3332','Yemen - onshore','Yemen - onshore.',12.09,19.0,41.8,54.53,0);
INSERT INTO "extent" VALUES('EPSG','3333','Finland - onshore','Finland - onshore.',59.75,70.09,19.24,31.59,0);
INSERT INTO "extent" VALUES('EPSG','3334','China - Hong Kong - onshore','China - Hong Kong - onshore.',22.19,22.56,113.82,114.39,0);
INSERT INTO "extent" VALUES('EPSG','3335','China - Hong Kong - offshore','China - Hong Kong - offshore.',22.13,22.58,113.76,114.51,0);
INSERT INTO "extent" VALUES('EPSG','3336','Iran - onshore','Iran - onshore.',25.02,39.78,44.03,63.34,0);
INSERT INTO "extent" VALUES('EPSG','3337','Reunion - onshore','Reunion - onshore.',-21.42,-20.81,55.16,55.91,0);
INSERT INTO "extent" VALUES('EPSG','3338','New Zealand - Stewart Island','New Zealand - Stewart Island.',-47.33,-46.63,167.29,168.34,0);
INSERT INTO "extent" VALUES('EPSG','3339','Germany - onshore','Germany - onshore - states of Baden-Wurtemberg, Bayern, Berlin, Brandenburg, Bremen, Hamburg, Hessen, Mecklenburg-Vorpommern, Niedersachsen, Nordrhein-Westfalen, Rheinland-Pfalz, Saarland, Sachsen, Sachsen-Anhalt, Schleswig-Holstein, Thuringen.',47.27,55.09,5.86,15.04,0);
INSERT INTO "extent" VALUES('EPSG','3340','Mayotte - onshore','Mayotte - onshore.',-13.05,-12.61,44.98,45.35,0);
INSERT INTO "extent" VALUES('EPSG','3341','India - mainland','India - mainland onshore.',8.02,35.51,68.13,97.42,0);
INSERT INTO "extent" VALUES('EPSG','3342','Jamaica - onshore','Jamaica - onshore.',17.64,18.58,-78.43,-76.17,0);
INSERT INTO "extent" VALUES('EPSG','3343','Italy - including San Marino and Vatican','Italy - onshore and offshore; San Marino, Vatican City State.',34.76,47.1,5.93,18.99,0);
INSERT INTO "extent" VALUES('EPSG','3344','New Zealand - South and Stewart Islands','New Zealand - South Island, Stewart Island.',-47.33,-40.44,166.37,174.46,0);
INSERT INTO "extent" VALUES('EPSG','3345','Slovenia - Ljubljana east','Slovenia - eastern part of the Ljubljana region with the Kamnik-Domzale area.',45.85,46.32,14.45,15.01,0);
INSERT INTO "extent" VALUES('EPSG','3346','Slovenia - Prekmurje','Slovenia - Prekmurje (the Transmuraland).',46.47,46.88,15.98,16.61,0);
INSERT INTO "extent" VALUES('EPSG','3347','Slovenia - Novo Mesto','Slovenia - Novo Mesto with the Gorjanci.',45.66,45.87,15.06,15.47,0);
INSERT INTO "extent" VALUES('EPSG','3348','Slovenia - Gorenjska - upper','Slovenia - upper Gorenjska (Upper Carniola) with the Baca Valley and part of the Cerkno Mountains.',46.09,46.53,13.7,14.18,0);
INSERT INTO "extent" VALUES('EPSG','3349','Slovenia - Ljubliana west','Slovenia - western part of the Ljubljana region with part of Skofja Loka Hills and the Idrija-Cerklje region.',45.86,46.21,13.95,14.52,0);
INSERT INTO "extent" VALUES('EPSG','3350','Slovenia - Notranjska','Slovenia - Notranjska (Inner Carniola) with parts of the Karst and the Brkini Hills.',45.47,45.88,14.08,14.59,0);
INSERT INTO "extent" VALUES('EPSG','3351','Slovenia - Kocevje','Slovenia - Kocevje with the Kocevski Forest and Gotenica Mountain.',45.46,45.76,14.6,15.12,0);
INSERT INTO "extent" VALUES('EPSG','3352','Slovenia - Koroska','Slovenia - Koroska Region (Slovene Carinthia).',46.46,46.66,14.83,15.51,0);
INSERT INTO "extent" VALUES('EPSG','3353','Slovenia - Velenje','Slovenia - Velenje with part of Koroska Region (Slovene Carinthia).',46.28,46.51,14.9,15.26,0);
INSERT INTO "extent" VALUES('EPSG','3354','Slovenia - Zasavje','Slovenia - Zasavje (the Sava Valley) with the broad region of Celje.',46.0,46.32,14.84,15.35,0);
INSERT INTO "extent" VALUES('EPSG','3355','Brazil - west of 54°W and south of 18°S','Brazil - west of 54°W and south of 18°S.',-31.91,-17.99,-58.16,-54.0,0);
INSERT INTO "extent" VALUES('EPSG','3356','South America - Brazil - south of 18°S and west of 54°W + DF; N Paraguay','Brazil - south of 18°S and west of 54°W, plus Distrito Federal. Paraguay - north.',-31.91,-15.37,-62.57,-47.1,0);
INSERT INTO "extent" VALUES('EPSG','3357','USA - GoM OCS','United States (USA) - offshore Gulf of Mexico outer continental shelf (GoM OCS) - protraction areas South Padre Island; North Padre Island; Mustang Island; Matagorda Island; Brazos; Galveston; High Island; Sabine Pass; West Cameron; East Cameron; Vermilion; South Marsh Island; Eugene Island; Ship Shoal; South Pelto; Bay Marchand; South Timbalier; Grand Isle; West Delta; South Pass; Main Pass; Breton Sound; Chandeleur; Corpus Christi; Port Isabel; East Breaks; Alaminos Canyon; Garden Banks; Keathley Canyon; Sigsbee Escarpment; Ewing Bank; Green Canyon; Walker Ridge; Amery Terrace; Mobile; Viosca Knoll; Mississippi Canyon; Atwater Valley; Lund; Lund South; Pensacola; Destin Dome; De Soto Canyon; Lloyd Ridge; Henderson; Florida Plain; Campeche Escarpment; Apalachicola; Florida Middle Ground; The Elbow; Vernon Basin; Howell Hook; Rankin; Gainesville; Tarpon Springs; St Petersburg; Charlotte Harbor; Pulley Ridge; Dry Tortugas; Tortugas Valley; Miami; Key West.',23.82,30.25,-97.22,-81.17,0);
INSERT INTO "extent" VALUES('EPSG','3358','USA - GoM - east of 87.25°W','United States (USA) - offshore Gulf of Mexico (GoM) east of approximately 87°15''W - protraction areas Gainesville, Tarpon Springs, St Petersburg, Charlotte Harbor, Pulley Ridge, Dry Tortugas, Tortugas Valley, Miami, Key West, Apalachicola, Florida Middle Ground, The Elbow, Vernon Basin, Howell Hook, Rankin and Campeche Escarpment. Also for protraction areas Pensacola, Destin Dome, Desoto Canyon, Lloyd Ridge, Henderson and Florida Plain - east of 87°15''W.',23.82,30.25,-87.25,-81.17,0);
INSERT INTO "extent" VALUES('EPSG','3359','USA - GoM - 95°W to 87.25°W','United States (USA) - offshore Gulf of Mexico (GoM) between approximately 95°W and 87°15''W - protraction areas High Island (including all additions and extensions), Sabine Pass, West Cameron (including west and south additions), East Cameron (including south addition), Vermillion (including south addition), South Marsh Island (including north and south additions), Eugene Island (including south addition), Ship Shoal (including south addition), South Timbalier (including south addition), Grand Isle (including south addition), West Delta (including south addition), South Pass (including south and east additions), Main Pass (including south and east addition), Breton Sound, Chandeleur (including east addition), Mobile, Viosca Knoll, Mississippi Canyon, Atwater Valley, Lund, Lund South, Ewing Bank, Green Canyon, Walker Ridge, Amery Terrace, Garden Banks, Keathley Canyon and Sigsbee Escarpment. Also for protraction areas Galveston (including south addition), East Breaks and Aliminos Canyon - east of 95°W; for protraction areas Pensacola, Destin Dome, Desoto Canyon, Lloyd Ridge, Henderson and Florida Plain - west of 87°15''W.',25.61,30.23,-95.0,-87.25,0);
INSERT INTO "extent" VALUES('EPSG','3360','USA - GoM - west of 95°W','United States (USA) - offshore Gulf of Mexico (GoM) west of approximately 95°W - protraction areas Brazos (including south addition), Matagorda Island, Mustang Island (including east addition); North Padre Island (including east addition), South Padre Island (including east addition), Corpus Christi and Port Isabel. Also protraction areas Galveston (including south addition), East Breaks and Aliminos Canyon - west of 95°W.',25.97,28.97,-97.22,-95.0,0);
INSERT INTO "extent" VALUES('EPSG','3361','Mexico - offshore GoM - Tampico area','Mexico - offshore Gulf of Mexico (GoM) - Tampico area.',21.51,22.75,-98.1,-96.89,0);
INSERT INTO "extent" VALUES('EPSG','3362','Greenland - west coast','Greenland - west coast onshore.',59.74,79.0,-73.29,-42.52,0);
INSERT INTO "extent" VALUES('EPSG','3363','Greenland - west coast - 63°N to 66°N','Greenland - west coast onshore - between 63°N and 66°N.',63.0,66.0,-53.7,-49.17,0);
INSERT INTO "extent" VALUES('EPSG','3364','Greenland - west coast - 66°N to 69°N','Greenland - west coast onshore - between 66°N and 69°N.',66.0,69.0,-54.09,-49.4,0);
INSERT INTO "extent" VALUES('EPSG','3365','Greenland - west coast - 69°N to 72°N','Greenland - west coast onshore - between 69°N and 72°N.',69.0,72.0,-56.06,-49.11,0);
INSERT INTO "extent" VALUES('EPSG','3366','Greenland - west coast - 72°N to 75°N','Greenland - west coast onshore - between 72°N and 75°N.',72.0,75.0,-58.21,-52.02,0);
INSERT INTO "extent" VALUES('EPSG','3367','Greenland - west coast - 75°N to 78°N','Greenland - west coast - between 75°N and 78°N.',75.0,78.0,-72.79,-56.31,0);
INSERT INTO "extent" VALUES('EPSG','3368','Greenland - west coast - 78°N to 79°N','Greenland - west coast onshore - between 78°N and 79°N.',78.0,79.0,-73.29,-65.24,0);
INSERT INTO "extent" VALUES('EPSG','3369','Greenland - east coast - 68°N to 69°N','Greenland - east coast onshore - between 68°N and 69°N.',68.66,69.0,-26.99,-25.14,0);
INSERT INTO "extent" VALUES('EPSG','3370','Greenland - east coast - 69°N to 72°N','Greenland - east coast onshore - between 69°N and 72°N.',69.0,72.0,-29.69,-21.32,0);
INSERT INTO "extent" VALUES('EPSG','3371','Greenland - east coast - 72°N to 75°N','Greenland - east coast onshore - between 72°N and 75°N.',72.0,74.58,-29.15,-19.89,0);
INSERT INTO "extent" VALUES('EPSG','3372','USA - west of 174°E - AK, OCS','United States (USA) - west of 174°E. Alaska and offshore continental shelf (OCS).',49.01,56.28,167.65,174.01,0);
INSERT INTO "extent" VALUES('EPSG','3373','USA - 174°E to 180°E - AK, OCS','United States (USA) - between 174°E and 180°E - Alaska and offshore continental shelf (OCS).',47.92,56.67,174.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','3374','USA - 180°W to 174°W - AK, OCS','United States (USA) - between 180°W and 174°W - Alaska and offshore continental shelf (OCS).',47.88,63.21,-180.0,-173.99,0);
INSERT INTO "extent" VALUES('EPSG','3375','USA - 174°W to 168°W - AK, OCS','United States (USA) - between 174°W and 168°W - Alaska and offshore continental shelf (OCS).',48.66,73.05,-174.0,-167.99,0);
INSERT INTO "extent" VALUES('EPSG','3376','Malaysia - West Malaysia - Johor','Malaysia - West Malaysia - Johor.',1.21,2.95,102.44,104.6,0);
INSERT INTO "extent" VALUES('EPSG','3377','Malaysia - West Malaysia - Sembilan and Melaka','Malaysia - West Malaysia - Negeri Sembilan and Melaka.',2.03,3.28,101.7,102.71,0);
INSERT INTO "extent" VALUES('EPSG','3378','Malaysia - West Malaysia - Pahang','Malaysia - West Malaysia - Pahang.',2.45,4.78,101.33,103.67,0);
INSERT INTO "extent" VALUES('EPSG','3379','Malaysia - West Malaysia - Selangor','Malaysia - West Malaysia - Selangor.',2.54,3.87,100.76,101.97,0);
INSERT INTO "extent" VALUES('EPSG','3380','Malaysia - West Malaysia - Terengganu','Malaysia - West Malaysia - Terengganu.',3.89,5.9,102.38,103.72,0);
INSERT INTO "extent" VALUES('EPSG','3381','Malaysia - West Malaysia - Pulau Pinang','Malaysia - West Malaysia - Pulau Pinang - Pinang (Penang) Island and Seberang Perai (Province Wellesley).',5.12,5.59,100.12,100.56,0);
INSERT INTO "extent" VALUES('EPSG','3382','Malaysia - West Malaysia - Kedah and Perlis','Malaysia - West Malaysia - Kedah and Perlis.',5.08,6.72,99.59,101.12,0);
INSERT INTO "extent" VALUES('EPSG','3383','Malaysia - West Malaysia - Perak','Malaysia - West Malaysia - Perak.',3.66,5.92,100.07,102.0,0);
INSERT INTO "extent" VALUES('EPSG','3384','Malaysia - West Malaysia - Kelantan','Malaysia - West Malaysia - Kelantan.',4.54,6.29,101.33,102.67,0);
INSERT INTO "extent" VALUES('EPSG','3385','Finland - east of 31.5°E','Finland - east of 31°30''E.',62.83,63.0,31.5,31.59,0);
INSERT INTO "extent" VALUES('EPSG','3386','Asia - Middle East - Iraq and Kuwait 42°E to 48°E','Iraq - between 42°E and 48°E. Kuwait - west of 48°E.',28.53,37.39,42.0,48.0,1);
INSERT INTO "extent" VALUES('EPSG','3387','Iraq - west of 42°E','Iraq - west of 42°E.',31.14,36.75,38.79,42.0,0);
INSERT INTO "extent" VALUES('EPSG','3388','Iraq - 42°E to 48°E','Iraq - between 42°E and 48°E.',29.06,37.39,42.0,48.0,0);
INSERT INTO "extent" VALUES('EPSG','3389','Iraq - east of 48°E onshore','Iraq - onshore east of 48°E.',29.87,31.0,48.0,48.61,0);
INSERT INTO "extent" VALUES('EPSG','3390','Asia - Middle East -SE Iraq and SW Iran','Iraq - onshore southeast; Iran - onshore northern Gulf coast and west bordering southeast Iraq.',29.06,33.5,44.3,51.06,0);
INSERT INTO "extent" VALUES('EPSG','3391','World - between 80°S and 84°N','World between 80°S and 84°N.',-80.0,84.0,-180.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','3392','Germany - Thuringen - west of 10.5°E','Germany - Thuringen - west of 10°30''E.',50.35,51.56,9.92,10.5,0);
INSERT INTO "extent" VALUES('EPSG','3393','Germany - Thuringen - east of 10.5°E','Germany - Thuringen - east of 10°30''E.',50.2,51.64,10.5,12.56,0);
INSERT INTO "extent" VALUES('EPSG','3394','Germany - Saxony - east of 13.5°E','Germany - Sachsen - east of 13°30''E.',50.62,51.58,13.5,15.04,0);
INSERT INTO "extent" VALUES('EPSG','3395','Germany - Saxony - west of 13.5°E','Germany - Sachsen - west of 13°30''E.',50.2,51.66,11.89,13.51,0);
INSERT INTO "extent" VALUES('EPSG','3396','Germany - Mecklenburg-Vorpommern and Sachsen-Anhalt','Germany - Mecklenburg-Vorpommern and Sachsen-Anhalt.',50.94,53.05,10.54,14.43,1);
INSERT INTO "extent" VALUES('EPSG','3397','Iraq - Basra area','Iraq - Basra area.',29.87,31.09,46.46,48.61,0);
INSERT INTO "extent" VALUES('EPSG','3398','Fiji - main islands','Fiji - onshore - Vanua Levu, Taveuni, Viti Levu and and immediately adjacent smaller islands of Yasawa and Kandavu groups.',-19.22,-16.1,176.81,-179.77,0);
INSERT INTO "extent" VALUES('EPSG','3399','Fiji - main islands - west of 180°','Fiji - onshore west of 180° - Vanua Levu, Taveuni, Viti Levu and and immediately adjacent smaller islands of Yasawa and Kandavu groups.',-19.22,-16.1,176.81,180.0,0);
INSERT INTO "extent" VALUES('EPSG','3400','Fiji - main islands - east of 180°','Fiji - onshore east of 180° - Vanua Levu, Taveuni.',-17.04,-16.1,-180.0,-179.77,0);
INSERT INTO "extent" VALUES('EPSG','3401','Fiji - Vanua Levu and Taveuni','Fiji - Vanua Levu and Taveuni.',-17.07,-16.1,178.42,-179.77,0);
INSERT INTO "extent" VALUES('EPSG','3402','Algeria - Hassi Mouina licence area','Algeria - Hassi Mouina licence area.',29.25,31.0,0.0,1.25,0);
INSERT INTO "extent" VALUES('EPSG','3403','Russia - west of 19.5°E','Russian Federation - Kaliningrad - west of 19°30''E.',54.32,55.3,19.2,19.5,1);
INSERT INTO "extent" VALUES('EPSG','3404','North America - 120°W to 114°W and NAD83 by country','North America - between 120°W and 114°W - onshore and offshore. Canada - Alberta; British Columbia; Northwest Territories; Nunavut. United States (USA) - California; Idaho; Nevada, Oregon; Washington.',30.88,83.5,-120.0,-114.0,0);
INSERT INTO "extent" VALUES('EPSG','3405','North America - 114°W to 108°W and NAD83 by country','North America - between 114°W and 108°W - onshore and offshore. Canada - Alberta; Northwest Territories; Nunavut; Saskatchewan. United States (USA) - Arizona; Colorado; Idaho; Montana; New Mexico; Utah; Wyoming.',31.33,84.0,-114.0,-108.0,0);
INSERT INTO "extent" VALUES('EPSG','3406','North America - 108°W to 102°W and NAD83 by country','North America - between 108°W and 102°W - onshore and offshore. Canada - Northwest Territories; Nunavut; Saskatchewan. United States (USA) - Colorado; Montana; Nebraska; New Mexico; North Dakota; Oklahoma; South Dakota; Texas; Wyoming.',28.98,84.0,-108.0,-102.0,0);
INSERT INTO "extent" VALUES('EPSG','3407','North America - 102°W to 96°W and NAD83 by country','North America - between 102°W and 96°W - onshore and offshore. Canada - Manitoba; Nunavut; Saskatchewan. United States (USA) - Iowa; Kansas; Minnesota; Nebraska; North Dakota; Oklahoma; South Dakota; Texas.',25.83,84.0,-102.0,-96.0,0);
INSERT INTO "extent" VALUES('EPSG','3408','Sweden - Stockholm','Sweden - Stockholm commune.',59.22,59.43,17.75,18.2,0);
INSERT INTO "extent" VALUES('EPSG','3409','Canada - 144°W to 138°W','Canada west of 138°W, onshore and offshore south of 84°N - British Columbia, Yukon.',52.05,72.53,-141.01,-138.0,0);
INSERT INTO "extent" VALUES('EPSG','3410','Canada - 138°W to 132°W','Canada between 138°W and 132°W, onshore and offshore south of 84°N - British Columbia, Northwest Territories, Yukon.',48.06,79.42,-138.0,-132.0,0);
INSERT INTO "extent" VALUES('EPSG','3411','Canada - 132°W to 126°W','Canada - between 132°W and 126°W, onshore and offshore south of 84°N - British Columbia, Northwest Territories, Yukon.',46.52,80.93,-132.0,-126.0,0);
INSERT INTO "extent" VALUES('EPSG','3412','Canada - 126°W to 120°W','Canada between 126°W and 120°W, onshore and offshore south of 84°N - British Columbia, Northwest Territories, Yukon.',48.13,81.8,-126.0,-120.0,0);
INSERT INTO "extent" VALUES('EPSG','3413','Canada - 102°W to 96°W','Canada between 102°W and 96°W, onshore and offshore south of 84°N - Manitoba, Nunavut, Saskatchewan.',48.99,84.0,-102.0,-96.0,0);
INSERT INTO "extent" VALUES('EPSG','3414','Canada - 96°W to 90°W','Canada between 96°W and 90°W, onshore and offshore south of 84°N - Manitoba, Nunavut, Ontario.',48.03,84.0,-96.0,-90.0,0);
INSERT INTO "extent" VALUES('EPSG','3415','Canada - 90°W to 84°W','Canada between 90°W and 84°W, onshore and offshore south of 84°N - Manitoba, Nunavut, Ontario.',46.11,84.0,-90.0,-84.0,0);
INSERT INTO "extent" VALUES('EPSG','3416','Canada - 84°W to 78°W','Canada between 84°W and 78°W, onshore and offshore south of 84°N - Nunavut, Ontario and Quebec.',41.67,84.0,-84.0,-78.0,0);
INSERT INTO "extent" VALUES('EPSG','3417','Canada - 78°W to 72°W','Canada between 78°W and 72°W, onshore and offshore south of 84°N - Nunavut, Ontario and Quebec.',43.63,84.0,-78.0,-72.0,0);
INSERT INTO "extent" VALUES('EPSG','3418','Latin America - SIRGAS 2000 by country','Latin America - Central America and South America - onshore and offshore. Brazil - onshore and offshore.',-59.87,32.72,-122.19,-25.28,0);
INSERT INTO "extent" VALUES('EPSG','3419','North America - 72°W to 66°W and NAD83 by country','North America - between 72°W and 66°W - onshore and offshore. Canada - Labrador; New Brunswick; Nova Scotia; Nunavut; Quebec. Puerto Rico. United States (USA) - Connecticut; Maine; Massachusetts; New Hampshire; New York (Long Island); Rhode Island; Vermont.',14.92,84.0,-72.0,-66.0,0);
INSERT INTO "extent" VALUES('EPSG','3420','North America - 66°W to 60°W and NAD83 by country','North America - between 66°W and 60°W - onshore and offshore. British Virgin Islands. Canada - New Brunswick; Labrador; Nunavut; Prince Edward Island; Quebec. Puerto Rico. US Virgin Islands. United States (USA) offshore Atlantic.',15.63,84.0,-66.0,-60.0,0);
INSERT INTO "extent" VALUES('EPSG','3421','Latin America - 84°W to 78°West; N hemisphere and SIRGAS by country','Latin America - Central America and South America - between 84°W and 78°W, northern hemisphere, onshore and offshore.',0.0,19.54,-84.0,-78.0,0);
INSERT INTO "extent" VALUES('EPSG','3422','Latin America - 78°W to 72°West; N hemisphere and SIRGAS by country','Latin America - Central America and South America - between 78°W and 72°W, northern hemisphere, onshore and offshore.',0.0,15.04,-78.0,-72.0,0);
INSERT INTO "extent" VALUES('EPSG','3423','Mexico - west of 114°W','Mexico west of 114°W, onshore and offshore.',15.01,32.72,-122.19,-114.0,0);
INSERT INTO "extent" VALUES('EPSG','3424','Mexico - 114°W to 108°W','Mexico between 114°W and 108°W, onshore and offshore.',15.09,32.27,-114.0,-108.0,0);
INSERT INTO "extent" VALUES('EPSG','3425','Mexico - 108°W to 102°W','Mexico between 108°W and 102°W, onshore and offshore.',14.05,31.79,-108.0,-102.0,0);
INSERT INTO "extent" VALUES('EPSG','3426','Mexico - 102°W to 96°W','Mexico between 102°W and 96°W, onshore and offshore.',12.3,29.81,-102.0,-96.0,0);
INSERT INTO "extent" VALUES('EPSG','3427','Latin America - 96°W to 90°W; N hemisphere and SIRGAS 2000 by country','Latin America - Central and South America - between 96°W and 90°W, northern hemisphere, onshore and offshore.',0.0,26.0,-96.0,-90.0,0);
INSERT INTO "extent" VALUES('EPSG','3428','Latin America - 90°W to 84°W; N hemisphere and SIRGAS 2000 by country','Latin America - Central America and South America - between 90°W and 84°W, northern hemisphere, onshore and offshore.',0.0,25.77,-90.0,-83.99,0);
INSERT INTO "extent" VALUES('EPSG','3429','Spain - mainland and Balearic Islands onshore','Spain - mainland, Balearic Islands, Ceuta and Melila - onshore.',35.26,43.82,-9.37,4.39,0);
INSERT INTO "extent" VALUES('EPSG','3430','New Caledonia - Belep, Grande Terre, Ile des Pins, Loyalty Islands','New Caledonia - Belep, Grande Terre, Ile des Pins, Loyalty Islands (Lifou, Mare, Ouvea).',-22.73,-19.5,163.54,168.19,0);
INSERT INTO "extent" VALUES('EPSG','3431','New Caledonia - west of 162°E','New Caledonia - west of 162°E onshore and offshore.',-26.03,-15.34,156.25,162.01,0);
INSERT INTO "extent" VALUES('EPSG','3432','New Caledonia - 162°E to 168°E','New Caledonia - between 162°E and 168°E onshore and offshore.',-26.45,-14.83,162.0,168.0,0);
INSERT INTO "extent" VALUES('EPSG','3433','New Caledonia - east of 168°E','New Caledonia - east of 168°E onshore and offshore.',-25.95,-19.75,168.0,174.28,0);
INSERT INTO "extent" VALUES('EPSG','3434','New Caledonia - Mare - west of 168°E','New Caledonia - Loyalty Islands - Mare - west of 168°E.',-21.71,-21.32,167.75,168.0,0);
INSERT INTO "extent" VALUES('EPSG','3435','New Caledonia - Mare - east of 168°E','New Caledonia - Loyalty Islands - Mare - east of 168°E.',-21.71,-21.35,168.0,168.19,0);
INSERT INTO "extent" VALUES('EPSG','3436','South America - 72°W to 66°W, N hemisphere and SIRGAS 2000 by country','South America between 72°W and 66°W and north of approximately 2°N, onshore and offshore.',0.0,15.64,-72.0,-66.0,0);
INSERT INTO "extent" VALUES('EPSG','3437','South America - 66°W to 60°W, N hemisphere and SIRGAS 2000 by country','South America between 66°W and 60°W, north of approximately 4°N, onshore and offshore.',0.64,16.75,-66.0,-59.99,0);
INSERT INTO "extent" VALUES('EPSG','3438','South America - 60°W to 54°W, N hemisphere and SIRGAS 2000 by country','South America between 60°W and 54°W, north of approximately 2°N, onshore and offshore.',1.18,12.19,-60.0,-54.0,0);
INSERT INTO "extent" VALUES('EPSG','3439','South America - 54°W to 48°W, N hemisphere and SIRGAS 2000 by country','South America between 54°W and 48°W, northern hemisphere, onshore and offshore except Brazil where offshore only.',0.0,9.24,-54.0,-47.99,0);
INSERT INTO "extent" VALUES('EPSG','3440','South America - 78°W to 72°W, S hemisphere and SIRGAS 2000 by country','Brazil west of 72°W. In remainder of South America, between 78°W and 72°W, southern hemisphere, onshore and offshore.',-59.36,0.0,-78.0,-71.99,0);
INSERT INTO "extent" VALUES('EPSG','3441','South America - 72°W to 66°W, S hemisphere and SIRGAS 2000 by country','Brazil - between 72°W and 66°W, northern and southern hemispheres. In remainder of South America - between 72°W and 66°W, southern hemisphere, onshore and offshore.',-59.87,2.15,-72.0,-66.0,0);
INSERT INTO "extent" VALUES('EPSG','3442','South America - 66°W to 60°W, S hemisphere and SIRGAS 2000 by country','Brazil - between 66°W and 60°W, northern and southern hemispheres. In remainder of South America - between 66°W and 60°W, southern hemisphere, onshore and offshore.',-58.39,5.28,-66.0,-60.0,0);
INSERT INTO "extent" VALUES('EPSG','3443','South America - 60°W to 54°W, S hemisphere and SIRGAS 2000 by country','Brazil - between 60°W and 54°W, northern and southern hemispheres. In remainder of South America - between 60°W and 54°W, southern hemisphere, onshore and offshore.',-44.82,4.51,-60.0,-54.0,0);
INSERT INTO "extent" VALUES('EPSG','3444','South America - 54°W to 48°W, S hemisphere and SIRGAS 2000 by country','Brazil - between 54°W and 48°W, northern and southern hemispheres, onshore and offshore. In remainder of South America - between 54°W and 48°W, southern hemisphere, onshore and offshore.',-54.18,7.04,-54.0,-47.99,0);
INSERT INTO "extent" VALUES('EPSG','3445','Brazil - 48°W to 42°W','Brazil - between 48°W and 42°W, northern and southern hemispheres, onshore and offshore.',-33.5,5.13,-48.0,-42.0,0);
INSERT INTO "extent" VALUES('EPSG','3446','Brazil - 42°W to 36°W','Brazil - between 42°W and 36°W, northern and southern hemispheres, onshore and offshore.',-26.35,0.74,-42.0,-36.0,0);
INSERT INTO "extent" VALUES('EPSG','3447','Brazil - 36°W to 30°W','Brazil - between 36°W and 30°W, northern and southern hemispheres, onshore and offshore.',-23.8,4.19,-36.0,-29.99,0);
INSERT INTO "extent" VALUES('EPSG','3448','South America - SIRGAS 1995 by country','South America - onshore and offshore. Ecuador (mainland and Galapagos) - onshore and offshore.',-59.87,16.75,-113.21,-26.0,0);
INSERT INTO "extent" VALUES('EPSG','3449','Greenland - west of 72°W','Greenland - west of 72°W, onshore and offshore.',74.52,79.04,-75.0,-72.0,0);
INSERT INTO "extent" VALUES('EPSG','3450','Greenland - 72°W to 66°W','Greenland - between 72°W and 66°W, onshore and offshore.',73.24,80.9,-72.0,-66.0,0);
INSERT INTO "extent" VALUES('EPSG','3451','Greenland - 66°W to 60°W','Greenland - between 66°W and 60°W, onshore and offshore.',68.92,82.22,-66.0,-60.0,0);
INSERT INTO "extent" VALUES('EPSG','3452','Greenland - 60°W to 54°W','Greenland - between 60°W and 54°W, onshore and offshore south of 84°N.',58.91,84.0,-60.0,-54.0,0);
INSERT INTO "extent" VALUES('EPSG','3453','Greenland - 54°W to 48°W','Greenland - between 54°W and 48°W, onshore and offshore south of 84°N.',56.9,84.0,-54.0,-48.0,0);
INSERT INTO "extent" VALUES('EPSG','3454','Greenland - 48°W to 42°W','Greenland - between 48°W and 42°W, onshore and offshore south of 84°N.',56.38,84.0,-48.0,-42.0,0);
INSERT INTO "extent" VALUES('EPSG','3455','Greenland - 42°W to 36°W','Greenland - between 42°W and 36°W, onshore and offshore south of 84°N.',56.56,84.0,-42.0,-36.0,0);
INSERT INTO "extent" VALUES('EPSG','3456','Greenland - 36°W to 30°W','Greenland - between 36°W and 30°W, onshore and offshore south of 84°N.',60.16,84.0,-36.0,-30.0,0);
INSERT INTO "extent" VALUES('EPSG','3457','Greenland - 30°W to 24°W','Greenland - between 30°W and 24°W, onshore and offshore south of 84°N.',64.96,84.0,-30.0,-24.0,0);
INSERT INTO "extent" VALUES('EPSG','3458','Greenland - 24°W to 18°W','Greenland - between 24°W and 18°W, onshore and offshore south of 84°N.',67.7,84.0,-24.0,-18.0,0);
INSERT INTO "extent" VALUES('EPSG','3459','Greenland - 18°W to 12°W','Greenland - between 18°W and 12°W, onshore and offshore south of 84°N.',68.67,84.0,-18.0,-12.0,0);
INSERT INTO "extent" VALUES('EPSG','3460','Greenland - 12°W to 6°W','Greenland - 12°W to 6°W, onshore and offshore south of 84°N.',72.43,84.0,-12.0,-6.0,0);
INSERT INTO "extent" VALUES('EPSG','3461','Mexico - offshore GoM - Campeche area N','Mexico - offshore Gulf of Mexico (GoM) - Bay of Campeche northeast.',20.87,23.01,-94.33,-88.67,0);
INSERT INTO "extent" VALUES('EPSG','3462','Mexico - offshore GoM - Campeche area S','Mexico - offshore Gulf of Mexico (GoM) - Bay of Campeche southeast.',17.85,20.89,-94.79,-89.75,0);
INSERT INTO "extent" VALUES('EPSG','3463','World - 86°S to 86°N','World between 86°S and 86°N.',-86.0,86.0,-180.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','3464','World - N hemisphere - 12°E to 18°E - by country and WGS 72BE','Between 12°E and 18°E, northern hemisphere between equator and 84°N, onshore and offshore. Chad - west of 18°E.',0.0,84.0,12.0,18.0,0);
INSERT INTO "extent" VALUES('EPSG','3465','World - N hemisphere - 18°E to 24°E - by country and WGS 72BE','Between 12°E and 18°E, northern hemisphere between equator and 84°N, onshore and offshore. Chad - east of 18°E.',0.0,84.0,18.0,24.0,0);
INSERT INTO "extent" VALUES('EPSG','3466','China - Ordos basin','China - Ordos basin.',35.0,39.0,107.0,110.007,0);
INSERT INTO "extent" VALUES('EPSG','3467','North America - Great Lakes basin','Canada and United States (USA) - Great Lakes basin.',40.99,50.74,-93.17,-74.47,0);
INSERT INTO "extent" VALUES('EPSG','3468','North America - Great Lakes basin and St Lawrence Seaway','Canada and United States (USA) - Great Lakes basin and St Lawrence Seaway.',40.99,52.22,-93.17,-54.75,0);
INSERT INTO "extent" VALUES('EPSG','3469','China - offshore - Yellow Sea','China - offshore - Huang Hai (Yellow Sea).',31.23,37.4,119.23,125.06,0);
INSERT INTO "extent" VALUES('EPSG','3470','China - offshore - Pearl River basin','China - offshore South China Sea - Pearl River basin.',18.31,22.89,110.13,116.76,0);
INSERT INTO "extent" VALUES('EPSG','3471','Denmark - onshore west of 12°E','Denmark - onshore west of 12°E - Zealand, Jutland, Fuen and Lolland.',54.51,57.8,8.0,12.0,0);
INSERT INTO "extent" VALUES('EPSG','3472','Denmark - onshore east of 12°E','Denmark - onshore east of 12°E - Zealand and Falster, Bornholm.',54.51,56.18,12.0,15.25,0);
INSERT INTO "extent" VALUES('EPSG','3473','World - south of 40°S','Southern hemisphere - south of 40°S including Antarctica.',-90.0,-40.0,-180.0,180.0,1);
INSERT INTO "extent" VALUES('EPSG','3474','World - south of 0°N','Southern hemisphere.',-90.0,0.0,-180.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','3475','World - north of 0°N','Northern hemisphere.',0.0,90.0,-180.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','3476','World - north of 30°N','Northern hemisphere - north of 30°N, including Arctic.',30.0,90.0,-180.0,180.0,1);
INSERT INTO "extent" VALUES('EPSG','3477','Libya - Cyrenaica','Libya - Cyrenaica area 42, blocks 2 and 4.',32.0,32.8,22.49,23.0,0);
INSERT INTO "extent" VALUES('EPSG','3478','Jamaica - west of 78°W','Jamaica - west of 78°W onshore and offshore.',14.16,19.36,-80.6,-77.99,0);
INSERT INTO "extent" VALUES('EPSG','3479','Jamaica - east of 78°W','Jamaica - east of 78°W onshore and offshore.',14.08,19.2,-78.0,-74.51,0);
INSERT INTO "extent" VALUES('EPSG','3480','World - north of 45°N','Northern hemisphere - north of 45°N, including Arctic.',45.0,90.0,-180.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','3481','Canada - NWT','Canada - Northwest Territories onshore.',59.98,78.81,-136.46,-102.0,0);
INSERT INTO "extent" VALUES('EPSG','3482','USA - west of 174°E - AK','United States (USA) - west of 174°E - Alaska (AK).',49.0,56.3,168.0,174.0,1);
INSERT INTO "extent" VALUES('EPSG','3483','USA - 174°E to 180°E - AK','United States (USA) - between 174°E and 180°E - Alaska (AK).',48.0,59.8,174.0,180.0,1);
INSERT INTO "extent" VALUES('EPSG','3484','USA - 180°W to 174°W - AK','United States (USA) - between 180°W and 174°W - Alaska (AK).',48.0,63.3,-180.0,-174.0,1);
INSERT INTO "extent" VALUES('EPSG','3485','USA - 174°W to 168°W - AK','United States (USA) - between 174°W and 168°W - Alaska (AK).',48.7,73.0,-174.0,-168.0,1);
INSERT INTO "extent" VALUES('EPSG','3486','USA - 168°W to 162°W - AK','United States (USA) - between 168°W and 162°W - Alaska (AK).',49.6,74.3,-168.0,-162.0,1);
INSERT INTO "extent" VALUES('EPSG','3487','USA - 162°W to 156°W - AK','United States (USA) - between 162°W and 156°W - Alaska (AK).',51.1,74.7,-162.0,-156.0,1);
INSERT INTO "extent" VALUES('EPSG','3488','USA - 162°W to 156°W onshore - HI','United States (USA) - between 162°W and 156°W onshore - Hawaii.',19.51,22.29,-160.3,-156.0,0);
INSERT INTO "extent" VALUES('EPSG','3489','USA - 162°W to 156°W - AK, HI','United States (USA) - between 162°W and 156°W onshore and offshore - Alaska, Hawaii.',15.57,74.71,-162.0,-155.99,0);
INSERT INTO "extent" VALUES('EPSG','3490','USA - 156°W to 150°W - AK','United States (USA) - between 156°W and 150°W - Alaska (AK).',52.1,74.7,-156.0,-150.0,1);
INSERT INTO "extent" VALUES('EPSG','3491','USA - 156°W to 150°W onshore - HI','United States (USA) - between 156°W and 150°W onshore - Hawaii.',18.87,20.86,-156.0,-154.74,0);
INSERT INTO "extent" VALUES('EPSG','3492','USA - 156°W to 150°W - AK, HI','United States (USA) - between 156°W and 150°W onshore and offshore - Alaska, Hawaii.',15.56,74.71,-156.0,-149.99,0);
INSERT INTO "extent" VALUES('EPSG','3493','USA - 150°W to 144°W - AK','United States (USA) - between 150°W and 144°W - Alaska (AK).',54.0,74.2,-150.0,-144.0,1);
INSERT INTO "extent" VALUES('EPSG','3494','USA - 144°W to 138°W','United States (USA) - between 144°W and 138°W onshore and offshore - Alaska.',53.47,73.59,-144.0,-137.99,0);
INSERT INTO "extent" VALUES('EPSG','3495','USA - 138°W to 132°W','United States (USA) - between 138°W and 132°W onshore and offshore - Alaska.',53.6,73.04,-138.0,-131.99,0);
INSERT INTO "extent" VALUES('EPSG','3496','USA - 132°W to 126°W','United States (USA) - between 132°W and 126°W onshore and offshore - Alaska.',35.38,56.84,-132.0,-126.0,0);
INSERT INTO "extent" VALUES('EPSG','3497','USA - 126°W to 120°W','United States (USA) - between 126°W and 120°W onshore and offshore - California; Oregon; Washington.',30.54,49.09,-126.0,-119.99,0);
INSERT INTO "extent" VALUES('EPSG','3498','USA - 120°W to 114°W','United States (USA) - between 120°W and 114°W onshore and offshore - California, Idaho, Nevada, Oregon, Washington.',30.88,49.01,-120.0,-114.0,0);
INSERT INTO "extent" VALUES('EPSG','3499','USA - 114°W to 108°W','United States (USA) - between 114°W and 108°W - Arizona; Colorado; Idaho; Montana; New Mexico; Utah; Wyoming.',31.33,49.01,-114.0,-108.0,0);
INSERT INTO "extent" VALUES('EPSG','3500','USA - 108°W to 102°W','United States (USA) - between 108°W and 102°W - Colorado; Montana; Nebraska; New Mexico; North Dakota; Oklahoma; South Dakota; Texas; Wyoming.',28.98,49.01,-108.0,-102.0,0);
INSERT INTO "extent" VALUES('EPSG','3501','USA - 102°W to 96°W','United States (USA) - between 102°W and 96°W onshore and offshore - Iowa; Kansas; Minnesota; Nebraska; North Dakota; Oklahoma; South Dakota; Texas.',25.83,49.01,-102.0,-96.0,0);
INSERT INTO "extent" VALUES('EPSG','3502','USA - 96°W to 90°W','United States (USA) - between 96°W and 90°W onshore and offshore - Arkansas; Illinois; Iowa; Kansas; Louisiana; Michigan; Minnesota; Mississippi; Missouri; Nebraska; Oklahoma; Tennessee; Texas; Wisconsin.',25.61,49.38,-96.01,-90.0,0);
INSERT INTO "extent" VALUES('EPSG','3503','USA - 90°W to 84°W','United States (USA) - between 90°W and 84°W onshore and offshore - Alabama; Arkansas; Florida; Georgia; Indiana; Illinois; Kentucky; Louisiana; Michigan; Minnesota; Mississippi; Missouri; North Carolina; Ohio; Tennessee; Wisconsin.',23.97,48.32,-90.0,-84.0,0);
INSERT INTO "extent" VALUES('EPSG','3504','USA - 84°W to 78°W','United States (USA) - between 84°W and 78°W onshore and offshore - Florida; Georgia; Kentucky; Maryland; Michigan; New York; North Carolina; Ohio; Pennsylvania; South Carolina; Tennessee; Virginia; West Virginia.',23.81,46.13,-84.0,-78.0,0);
INSERT INTO "extent" VALUES('EPSG','3505','USA - 78°W to 72°W','United States (USA) - between 78°W and 72°W onshore and offshore - Connecticut; Delaware; Maryland; Massachusetts; New Hampshire; New Jersey; New York; North Carolina; Pennsylvania; Virginia; Vermont.',28.28,45.03,-78.0,-72.0,0);
INSERT INTO "extent" VALUES('EPSG','3506','USA - 72°W to 66°W','United States (USA) - between 72°W and 66°W onshore and offshore - Connecticut; Maine; Massachusetts; New Hampshire; New York (Long Island); Rhode Island; Vermont.',33.61,47.47,-72.0,-65.99,0);
INSERT INTO "extent" VALUES('EPSG','3507','China - Tarim - 77.5°E to 88°E and 37°N to 42°N','China - south and west Tarim basin.',37.0,41.99,77.45,88.0,0);
INSERT INTO "extent" VALUES('EPSG','3508','New Zealand - offshore Pacific Ocean, Southern Ocean','Southwestern Pacific Ocean and Southern Ocean areas surrounding New Zealand.',-60.0,-25.0,155.0,-170.0,0);
INSERT INTO "extent" VALUES('EPSG','3509','UAE - Abu Dhabi - offshore','United Arab Emirates (UAE) - Abu Dhabi offshore.',24.0,25.64,51.5,54.85,0);
INSERT INTO "extent" VALUES('EPSG','3510','Indonesia - 96°E to 99°E onshore','Indonesia - onshore between 96°E and 99°E.',-1.81,5.42,96.0,99.0,0);
INSERT INTO "extent" VALUES('EPSG','3511','Indonesia - 99°E to 102°E onshore','Indonesia - onshore between 99°E and 102°E.',-3.57,3.71,99.0,102.0,0);
INSERT INTO "extent" VALUES('EPSG','3512','Indonesia - 102°E to 105°E onshore','Indonesia - onshore between 102°E and 105°E.',-5.99,1.68,102.0,105.0,0);
INSERT INTO "extent" VALUES('EPSG','3513','Indonesia - 105°E to 108°E onshore','Indonesia - onshore between 105°E and 108°E.',-7.79,4.11,105.0,108.0,0);
INSERT INTO "extent" VALUES('EPSG','3514','Indonesia - 108°E to 111°E onshore','Indonesia - onshore between 108°E and 111°E.',-8.31,4.25,108.0,111.0,0);
INSERT INTO "extent" VALUES('EPSG','3515','Indonesia - 111°E to 114°E onshore','Indonesia - onshore between 111°E and 114°E.',-8.67,1.59,111.0,114.0,0);
INSERT INTO "extent" VALUES('EPSG','3516','Indonesia - 114°E to 117°E onshore','Indonesia - onshore between 114°E and 117°E.',-9.15,4.37,114.0,117.01,0);
INSERT INTO "extent" VALUES('EPSG','3517','Indonesia - 117°E to 120°E onshore','Indonesia - onshore between 117°E and 120°E.',-10.15,4.36,117.0,120.0,0);
INSERT INTO "extent" VALUES('EPSG','3518','Indonesia - 120°E to 123°E onshore','Indonesia - onshore between 120°E and 123°E.',-10.98,1.4,120.0,123.0,0);
INSERT INTO "extent" VALUES('EPSG','3519','Indonesia - 123°E to 126°E onshore','Indonesia - onshore between 123°E and 126°E.',-10.92,3.84,123.0,126.0,0);
INSERT INTO "extent" VALUES('EPSG','3520','Indonesia - 126°E to 129°E onshore','Indonesia - onshore between 126°E and 129°E.',-8.32,4.59,126.0,129.0,0);
INSERT INTO "extent" VALUES('EPSG','3521','Indonesia - 129°E to 132°E onshore','Indonesia - onshore between 129°E and 132°E.',-8.41,0.1,129.0,132.0,0);
INSERT INTO "extent" VALUES('EPSG','3522','Indonesia - 132°E to 135°E onshore','Indonesia - onshore between 132°E and 135°E.',-7.3,-0.29,132.0,135.0,0);
INSERT INTO "extent" VALUES('EPSG','3523','Indonesia - 135°E to 138°E onshore','Indonesia - onshore between 135°E and 138°E.',-8.49,-0.58,135.0,138.0,0);
INSERT INTO "extent" VALUES('EPSG','3524','Canada - 72°W to 66°W','Canada between 72°W and 66°W onshore and offshore - New Brunswick, Labrador, Nova Scotia, Nunavut, Quebec.',40.8,84.0,-72.0,-66.0,0);
INSERT INTO "extent" VALUES('EPSG','3525','Canada - 66°W to 60°W','Canada between 66°W and 60°W onshore and offshore - New Brunswick, Labrador, Nova Scotia, Nunavut, Prince Edward Island, Quebec.',40.04,84.0,-66.0,-60.0,0);
INSERT INTO "extent" VALUES('EPSG','3526','Canada - 108°W to 102°W','Canada between 108°W and 102°W onshore and offshore - Northwest Territories, Nunavut, Saskatchewan.',48.99,84.0,-108.0,-102.0,0);
INSERT INTO "extent" VALUES('EPSG','3527','Canada - 114°W to 108°W','Canada between 114°W and 108°W onshore and offshore - Alberta, Northwest Territories, Nunavut, Saskatchewan.',48.99,84.0,-114.0,-108.0,0);
INSERT INTO "extent" VALUES('EPSG','3528','Canada - 120°W to 114°W','Canada between 120°W and 114°W onshore and offshore - Alberta, British Columbia, Northwest Territories, Nunavut.',48.99,83.5,-120.0,-114.0,0);
INSERT INTO "extent" VALUES('EPSG','3529','South Georgia - onshore','South Georgia and the South Sandwich Islands - South Georgia onshore.',-54.95,-53.93,-38.08,-35.74,0);
INSERT INTO "extent" VALUES('EPSG','3530','UAE - Dubai - offshore','United Arab Emirates (UAE) - Dubai offshore - Falah, Fateh and Rashid oilfields.',24.94,25.8,54.06,55.3,0);
INSERT INTO "extent" VALUES('EPSG','3531','UAE - Dubai municipality','United Arab Emirates (UAE) - Dubai municipality.',24.85,25.34,54.84,55.55,0);
INSERT INTO "extent" VALUES('EPSG','3532','Channel Islands - Jersey','Channel Islands - Jersey.',48.93,49.34,-2.3,-1.98,1);
INSERT INTO "extent" VALUES('EPSG','3533','Channel Islands - Guernsey','Channel Islands - Guernsey.',49.4,49.75,-2.75,-2.13,1);
INSERT INTO "extent" VALUES('EPSG','3534','Serbia and Kosovo','Serbia including Vojvodina and Kosovo.',41.85,46.19,18.81,23.01,0);
INSERT INTO "extent" VALUES('EPSG','3535','Montenegro','Montenegro - onshore and offshore.',41.27,43.56,18.02,20.38,0);
INSERT INTO "extent" VALUES('EPSG','3536','Montenegro - onshore','Montenegro - onshore.',41.79,43.56,18.45,20.38,0);
INSERT INTO "extent" VALUES('EPSG','3537','Portugal - mainland - offshore','Portugal - mainland - offshore.',34.91,41.88,-13.87,-7.24,0);
INSERT INTO "extent" VALUES('EPSG','3538','Croatia - east of 18°E','Croatia - east of 18°E, onshore and offshore.',41.62,45.92,18.0,19.43,0);
INSERT INTO "extent" VALUES('EPSG','3539','Croatia - west of 18°E','Croatia - west of 18°E, onshore and offshore.',41.63,46.54,13.0,18.0,0);
INSERT INTO "extent" VALUES('EPSG','3540','Canada - Alberta - west of 118.5°W','Canada - Alberta - west of 118°30'' W.',52.88,60.0,-120.0,-118.5,0);
INSERT INTO "extent" VALUES('EPSG','3541','Canada - Alberta - 118.5°W to 115.5°W','Canada - Alberta - between 118°30''W and 115°30'' W.',50.77,60.0,-118.5,-115.5,0);
INSERT INTO "extent" VALUES('EPSG','3542','Canada - Alberta - 115.5°W to 112.5°W','Canada - Alberta - between 115°30''W and 112°30''W.',48.99,60.0,-115.5,-112.5,0);
INSERT INTO "extent" VALUES('EPSG','3543','Canada - Alberta - east of 112.5°W','Canada - Alberta - east of 112°30''W.',48.99,60.0,-112.5,-109.98,0);
INSERT INTO "extent" VALUES('EPSG','3544','World - 85°S to 85°N','World between 85.06°S and 85.06°N.',-85.06,85.06,-180.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','3545','France - mainland south of 43°N and Corsica','France onshore - mainland south of 43°N and Corsica.',41.31,43.07,-1.06,9.63,0);
INSERT INTO "extent" VALUES('EPSG','3546','France - mainland south of 44°N','France - mainland onshore south of 44°N.',42.33,44.01,-1.79,7.65,0);
INSERT INTO "extent" VALUES('EPSG','3547','France - mainland - 43°N to 45°N','France - mainland onshore between 43°N and 45°N.',42.92,45.0,-1.79,7.71,0);
INSERT INTO "extent" VALUES('EPSG','3548','France - mainland - 44°N to 46°N','France - mainland onshore between 44°N and 46°N.',44.0,46.0,-1.46,7.71,0);
INSERT INTO "extent" VALUES('EPSG','3549','France - mainland - 45°N to 47°N','France - mainland onshore between 45°N and 47°N.',45.0,47.0,-2.21,7.16,0);
INSERT INTO "extent" VALUES('EPSG','3550','France - mainland - 46°N to 48°N','France - mainland onshore between 46°N and 48°N.',46.0,48.0,-4.77,7.63,0);
INSERT INTO "extent" VALUES('EPSG','3551','France - mainland - 47°N to 49°N','France - mainland onshore between 47°N and 49°N.',47.0,49.0,-4.87,8.23,0);
INSERT INTO "extent" VALUES('EPSG','3552','France - mainland - 48°N to 50°N','France - mainland onshore between 48°N and 50°N.',48.0,50.0,-4.87,8.23,0);
INSERT INTO "extent" VALUES('EPSG','3553','France - mainland north of 49°N','France - mainland onshore north of 49°N.',49.0,51.14,-2.03,8.08,0);
INSERT INTO "extent" VALUES('EPSG','3554','New Zealand - Snares and Auckland Islands','New Zealand - Snares Island, Auckland Island - onshore.',-51.13,-47.8,165.55,166.93,0);
INSERT INTO "extent" VALUES('EPSG','3555','New Zealand - Campbell Island','New Zealand - Campbell Island.',-52.83,-52.26,168.65,169.6,0);
INSERT INTO "extent" VALUES('EPSG','3556','New Zealand - Antipodes and Bounty Islands','New Zealand - Antipodes Island, Bounty Islands.',-49.92,-47.54,178.4,179.37,0);
INSERT INTO "extent" VALUES('EPSG','3557','New Zealand - Raoul and Kermadec Islands','New Zealand - Raoul Island, Kermadec Islands.',-31.56,-29.03,-179.07,-177.62,0);
INSERT INTO "extent" VALUES('EPSG','3558','Antarctica - Ross Sea Region','Antarctica - Ross Sea Region - nominally between 160°E and 150°W but includes buffer on eastern hemisphere margin to include Transantarctic Mountains',-90.0,-59.99,144.99,-144.99,0);
INSERT INTO "extent" VALUES('EPSG','3559','Australia - offshore','Australia - offshore including EEZ.',-47.2,-8.88,109.23,163.2,0);
INSERT INTO "extent" VALUES('EPSG','3560','Slovenia - Dolenjska - central','Slovenia - central Dolenjska (Lower Carniola).',45.81,46.01,14.97,15.43,0);
INSERT INTO "extent" VALUES('EPSG','3561','China - offshore - Bei Bu','China - offshore - Bei Bu Wan (Gulf of Tonkin).',17.81,21.69,107.15,110.17,0);
INSERT INTO "extent" VALUES('EPSG','3562','Taiwan - 120°E to 122°E','Taiwan, Republic of China - between 120°E and 122°E, onshore and offshore - Taiwan Island.',20.41,26.72,119.99,122.06,0);
INSERT INTO "extent" VALUES('EPSG','3563','Taiwan - 118°E to 120°E','Taiwan, Republic of China - between 118°E and 120°E, onshore and offshore - Penghu (Pescadores) Islands.',18.63,24.65,118.0,120.0,0);
INSERT INTO "extent" VALUES('EPSG','3564','Slovenia - west of 14°30''E onshore','Slovenia - onshore west of 14°30''E.',45.44,46.53,13.38,14.58,0);
INSERT INTO "extent" VALUES('EPSG','3565','Slovenia - NE','Slovenia - east of 14°30''E and north of 46°03''N.',46.14,46.88,14.54,16.61,0);
INSERT INTO "extent" VALUES('EPSG','3566','Slovenia - SE','Slovenia - east of 14°30''E and south of 46°09''N.',45.42,46.22,14.55,15.73,0);
INSERT INTO "extent" VALUES('EPSG','3567','Slovenia - southeastern','Slovenia - southeastern.',45.42,45.77,14.53,15.36,0);
INSERT INTO "extent" VALUES('EPSG','3568','Slovenia - Dolenjska','Slovenia - Dolenjska (Lower Carniola).',45.7,46.12,14.47,15.73,0);
INSERT INTO "extent" VALUES('EPSG','3569','Slovenia - Stajerska','Slovenia - Stajerska (Slovene Styria).',46.1,46.76,14.74,16.27,0);
INSERT INTO "extent" VALUES('EPSG','3570','Slovenia - Pomurje','Slovenia - Pomurje (the Mura Region).',46.47,46.88,15.96,16.61,0);
INSERT INTO "extent" VALUES('EPSG','3571','Slovenia - Gorenjska and N Primorsko','Slovenia - Gorenjska (Upper Carniola) and northern Primorska.',46.05,46.53,13.38,14.82,0);
INSERT INTO "extent" VALUES('EPSG','3572','Slovenia - Primorska and Notranjska onshore','Slovenia - onshore Primorska and Notranjska (Inner Carniola).',45.44,46.08,13.47,14.58,0);
INSERT INTO "extent" VALUES('EPSG','3573','Slovenia - central','Slovenia - central.',45.91,46.31,14.21,15.28,0);
INSERT INTO "extent" VALUES('EPSG','3574','Europe - onshore - eastern - S-42(58)','Onshore: Bulgaria, Czechia, Germany (former DDR), Hungary, Poland and Slovakia. Onshore and offshore: Albania and Romania.',39.63,54.89,9.92,31.41,0);
INSERT INTO "extent" VALUES('EPSG','3575','Germany - East Germany - west of 12°E','Germany - states of former East Germany - west of 12°E.',50.2,54.23,9.92,12.0,0);
INSERT INTO "extent" VALUES('EPSG','3576','Europe - 12°E to 18°E onshore and S-42(83) by country','Germany (former DDR) - onshore east of 12°E. Czechia, Hungary and Slovakia - west of 18°E.',45.78,54.74,12.0,18.01,0);
INSERT INTO "extent" VALUES('EPSG','3577','Europe - 18°E to 24°E onshore and S-42(58) by country','Albania - onshore east of 18°E. Czechia, Hungary and Slovakia - east of 18°E. Poland - onshore between 18°E and 24°E. Bulgaria and Romania - onshore west of 24°E.',39.64,54.89,18.0,24.0,0);
INSERT INTO "extent" VALUES('EPSG','3578','Europe - 18°E to 24°E onshore and S-42(83) by country','Czechia, Hungary and Slovakia - east of 18°E.',45.74,50.06,18.0,22.9,0);
INSERT INTO "extent" VALUES('EPSG','3579','Europe - 24°E to 30°E onshore and S-42(58) by country','Bulgaria, Poland and Romania - onshore east of 24°E.',41.24,50.93,24.0,29.74,0);
INSERT INTO "extent" VALUES('EPSG','3580','Europe - 13.5°E to 16.5°E onshore and S-42(58) by country','Czechia - between 13°30''E and 16°30''E. Germany - states of former East Germany onshore - east of 13°30''E - Brandenburg; Mecklenburg-Vorpommern; Sachsen. Hungary and Poland - onshore west of 16°30''E.',46.54,54.72,13.5,16.5,0);
INSERT INTO "extent" VALUES('EPSG','3581','Europe - 16.5°E to 19.5°E onshore and S-42(58) by country','Albania - onshore west of 19°30''E. Czechia - east of 16°30''E. Hungary and Poland - onshore between 16°30''E and 19°30''E. Slovakia - west of 19°30''E.',40.14,54.89,16.5,19.5,0);
INSERT INTO "extent" VALUES('EPSG','3582','Europe - 16.5°E to 19.5°E onshore and S-42(83) by country','Czechia - east of 16°30''E. Hungary - between 16°30''E and 19°30''E. Slovakia - west of 19°30''E.',45.74,50.45,16.5,19.5,0);
INSERT INTO "extent" VALUES('EPSG','3583','Europe - 19.5°E to 22.5°E onshore and S-42(58) by country','Albania - east of 19°30''E. Bulgaria and Romania - west of 22°30''E. Hungary, Poland and Slovakia - between 19°30''E and 22°30''E.',39.64,54.51,19.5,22.5,0);
INSERT INTO "extent" VALUES('EPSG','3584','Europe - 19.5°E to 22.5°E onshore and S-42(83) by country','Hungary and Slovakia - between 19°30''E and 22°30''E.',46.1,49.59,19.5,22.5,0);
INSERT INTO "extent" VALUES('EPSG','3585','Europe - 22.5°E to 25.5°E onshore and S-42(58) by country','Bulgaria and Romania - between 22°30''E and 25°30''E. Hungary, Poland and Slovakia - east of 22°30''E.',41.24,54.41,22.5,25.5,0);
INSERT INTO "extent" VALUES('EPSG','3586','Europe - 22.5°E to 25.5°E onshore and S-42(83) by country','Hungary and Slovakia - east of 22°30''E.',47.76,49.1,22.5,22.9,0);
INSERT INTO "extent" VALUES('EPSG','3587','Europe - 25.5°E to 28.5°E onshore and S-42(58) by country','Bulgaria and Romania - onshore between 25°30''E and 28°30''E.',41.28,48.27,25.5,28.5,0);
INSERT INTO "extent" VALUES('EPSG','3588','Europe - 28.5°E to 31.5°E onshore and S-42(58) by country','Bulgaria and Romania - onshore east of 28°30''E.',43.34,45.44,28.5,29.74,0);
INSERT INTO "extent" VALUES('EPSG','3589','Pakistan - Gambat','Pakistan - Gambat.',25.88,27.67,68.24,69.3,0);
INSERT INTO "extent" VALUES('EPSG','3590','Nigeria - 4°N to 5°N, 6°E to 8°E','Nigeria - 4°N to 5°N and 6°E to 8°E.',3.99,5.01,5.99,8.01,0);
INSERT INTO "extent" VALUES('EPSG','3591','Taiwan - onshore - Penghu','Taiwan, Republic of China - onshore - Penghu (Pescadores) Islands.',23.12,23.82,119.25,119.78,0);
INSERT INTO "extent" VALUES('EPSG','3592','Antarctica - Darwin Glacier region','Antarctica - Darwin Glacier region.',-81.0,-76.0,145.0,169.0,0);
INSERT INTO "extent" VALUES('EPSG','3593','New Zealand - offshore','New Zealand - offshore.',-55.95,-25.88,160.6,-171.2,0);
INSERT INTO "extent" VALUES('EPSG','3594','Europe - EVRF2007','Europe - onshore - Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia; Czechia; Denmark; Estonia; Finland; France - mainland; Germany; Gibraltar, Hungary; Italy - mainland and Sicily; Latvia; Liechtenstein; Lithuania; Luxembourg; Netherlands; Norway; Poland; Portugal - mainland; Romania; San Marino; Slovakia; Slovenia; Spain - mainland; Sweden; Switzerland; United Kingdom (UK) - Great Britain mainland; Vatican City State.',35.95,71.21,-9.56,31.59,0);
INSERT INTO "extent" VALUES('EPSG','3595','Finland - west of 19.5°E onshore nominal','Finland - nominally onshore west of 19°30''E but may be used in adjacent areas to east if a municipality chooses to use one zone over its whole extent.',60.08,60.34,19.24,19.5,0);
INSERT INTO "extent" VALUES('EPSG','3596','Finland - 19.5°E to 20.5°E onshore nominal','Finland - nominally onshore between 19°30''E and 20°30''E but may be used in adjacent areas if a municipality chooses to use one zone over its whole extent.',59.92,60.48,19.5,20.5,0);
INSERT INTO "extent" VALUES('EPSG','3597','Finland - 20.5°E to 21.5°E onshore nominal','Finland - nominally onshore between 20°30''E and 21°30''E but may be used in adjacent areas if a municipality chooses to use one zone over its whole extent.',59.84,69.33,20.5,21.5,0);
INSERT INTO "extent" VALUES('EPSG','3598','Finland - 21.5°E to 22.5°E onshore nominal','Finland - nominally onshore between 21°30''E and 22°30''E but may be used in adjacent areas if a municipality chooses to use one zone over its whole extent.',59.76,69.31,21.5,22.5,0);
INSERT INTO "extent" VALUES('EPSG','3599','Finland - 22.5°E to 23.5°E onshore nominal','Finland - nominally onshore between 22°30''E and 23°30''E but may be used in adjacent areas if a municipality chooses to use one zone over its whole extent.',59.75,68.74,22.5,23.5,0);
INSERT INTO "extent" VALUES('EPSG','3600','Finland - 23.5°E to 24.5°E onshore nominal','Finland - nominally onshore between 23°30''E and 24°30''E but may be used in adjacent areas if a municipality chooses to use one zone over its whole extent.',59.86,68.84,23.5,24.5,0);
INSERT INTO "extent" VALUES('EPSG','3601','Finland - 24.5°E to 25.5°E onshore nominal','Finland - nominally onshore between 24°30''E and 25°30''E but may be used in adjacent areas if a municipality chooses to use one zone over its whole extent.',59.94,68.9,24.5,25.5,0);
INSERT INTO "extent" VALUES('EPSG','3602','Finland - 25.5°E to 26.5°E onshore nominal','Finland - nominally onshore between 25°30''E and 26°30''E but may be used in adjacent areas if a municipality chooses to use one zone over its whole extent.',60.18,69.94,25.5,26.5,0);
INSERT INTO "extent" VALUES('EPSG','3603','Finland - 26.5°E to 27.5°E onshore nominal','Finland - nominally onshore between 26°30''E and 27°30''E but may be used in adjacent areas if a municipality chooses to use one zone over its whole extent.',60.36,70.05,26.5,27.5,0);
INSERT INTO "extent" VALUES('EPSG','3604','Finland - 27.5°E to 28.5°E onshore nominal','Finland - nominally onshore between 27°30''E and 28°30''E but may be used in adjacent areas if a municipality chooses to use one zone over its whole extent.',60.42,70.09,27.5,28.5,0);
INSERT INTO "extent" VALUES('EPSG','3605','Finland - 28.5°E to 29.5°E nominal','Finland - nominally between 28°30''E and 29°30''E but may be used in adjacent areas if a municipality chooses to use one zone over its whole extent.',60.94,69.81,28.5,29.5,0);
INSERT INTO "extent" VALUES('EPSG','3606','Finland - 29.5°E to 30.5°E nominal','Finland - nominally between 29°30''E and 30°30''E but may be used in adjacent areas if a municipality chooses to use one zone over its whole extent.',61.43,67.98,29.5,30.5,0);
INSERT INTO "extent" VALUES('EPSG','3607','Finland - east of 30.5°E nominal','Finland - nominally east of 30°30''E but may be used in adjacent areas to west if a municipality chooses to use one zone over its whole extent.',62.08,64.27,30.5,31.59,0);
INSERT INTO "extent" VALUES('EPSG','3608','Sweden - Stockholm county','Sweden - Stockholm county. Municipalities of Botkyrka, Danderyd, Ekerö, Haninge, Huddinge, Järfälla, Lidingö, Nacka, Nynäshamn, Salem, Sigtuna, Sollentuna, Solna, Stockholm and Sundbyberg.',58.69,60.27,17.25,19.61,0);
INSERT INTO "extent" VALUES('EPSG','3609','Congo DR (Zaire) - Katanga west of 25.5°E','The Democratic Republic of the Congo (Zaire) - Katanga west of 25°30''E.',-11.72,-6.32,21.74,25.51,0);
INSERT INTO "extent" VALUES('EPSG','3610','Congo DR (Zaire) - Katanga 24.5°E to 27.5°E','The Democratic Republic of the Congo (Zaire) - Katanga between 24°30''E and 27°30''E.',-12.08,-4.99,24.5,27.5,0);
INSERT INTO "extent" VALUES('EPSG','3611','Congo DR (Zaire) - Katanga 26.5°E to 29.5°E','The Democratic Republic of the Congo (Zaire) - Katanga between 26°30''E and 29°30''E.',-13.44,-4.99,26.5,29.5,0);
INSERT INTO "extent" VALUES('EPSG','3612','Congo DR (Zaire) - Katanga east of 28.5°E','The Democratic Republic of the Congo (Zaire) - Katanga east of 28°30''E.',-13.46,-4.99,28.5,30.78,0);
INSERT INTO "extent" VALUES('EPSG','3613','Congo DR (Zaire) - south','The Democratic Republic of the Congo (Zaire) - south of a line through Bandundu, Seke and Pweto - onshore and offshore.',-13.46,-3.41,11.79,29.81,0);
INSERT INTO "extent" VALUES('EPSG','3614','Congo DR (Zaire) - Katanga - Lubumbashi area','The Democratic Republic of the Congo (Zaire) - Katanga - Likasi-Lubumbashi area.',-12.01,-11.13,26.38,27.75,0);
INSERT INTO "extent" VALUES('EPSG','3615','Moldova - west of 30°E','Moldova - west of 30°E.',45.44,48.47,26.63,30.0,0);
INSERT INTO "extent" VALUES('EPSG','3616','Moldova - east of 30°E','Moldova - east of 30°E.',46.37,46.47,30.0,30.13,0);
INSERT INTO "extent" VALUES('EPSG','3617','Congo DR (Zaire) - south and 15°E to 17°E','The Democratic Republic of the Congo (Zaire) - south of a line through Bandundu, Seke and Pweto and between 15°E and 17°E.',-7.31,-3.41,15.0,17.0,0);
INSERT INTO "extent" VALUES('EPSG','3618','Congo DR (Zaire) - south and 17°E and 19°E','The Democratic Republic of the Congo (Zaire) - south of a line through Bandundu, Seke and Pweto and between 17°E and 19°E.',-8.11,-3.43,17.0,19.0,0);
INSERT INTO "extent" VALUES('EPSG','3619','Brazil - Distrito Federal','Brazil - Distrito Federal.',-15.94,-15.37,-48.1,-47.1,0);
INSERT INTO "extent" VALUES('EPSG','3620','Congo DR (Zaire) - south and 19°E to 21°E','The Democratic Republic of the Congo (Zaire) - south of a line through Bandundu, Seke and Pweto and between 19°E and 21°E.',-8.0,-3.77,19.0,21.0,0);
INSERT INTO "extent" VALUES('EPSG','3621','Congo DR (Zaire) - south and 21°E to 23°E','The Democratic Republic of the Congo (Zaire) - south of a line through Bandundu, Seke and Pweto and between 21°E and 23°E.',-11.24,-4.18,21.0,23.01,0);
INSERT INTO "extent" VALUES('EPSG','3622','Congo DR (Zaire) - south and 23°E to 25°E','The Democratic Republic of the Congo (Zaire) - south of a line through Bandundu, Seke and Pweto and between 23°E and 25°E.',-11.47,-4.58,23.0,25.0,0);
INSERT INTO "extent" VALUES('EPSG','3623','Congo DR (Zaire) - south and 25°E to 27°E','The Democratic Republic of the Congo (Zaire) - south of a line through Bandundu, Seke and Pweto and between 25°E and 27°E.',-11.99,-4.99,25.0,27.0,0);
INSERT INTO "extent" VALUES('EPSG','3624','Congo DR (Zaire) - south and 27°E to 29°E','The Democratic Republic of the Congo (Zaire) - south of a line through Bandundu, Seke and Pweto and between 27°E and 29°E.',-13.39,-6.43,27.0,29.0,0);
INSERT INTO "extent" VALUES('EPSG','3625','Iraq - onshore','Iraq - onshore.',29.06,37.39,38.79,48.61,0);
INSERT INTO "extent" VALUES('EPSG','3626','Congo DR (Zaire) - south and 12°E to 18°E','The Democratic Republic of the Congo (Zaire) - onshore and offshore south of a line through Bandundu, Seke and Pweto and between 12°E and 18°E.',-8.11,-3.41,12.0,18.01,0);
INSERT INTO "extent" VALUES('EPSG','3627','Congo DR (Zaire) - south and 18°E to 24°E','The Democratic Republic of the Congo (Zaire) - south of a line through Bandundu, Seke and Pweto and between 18°E and 24°E.',-11.24,-3.57,18.0,24.0,0);
INSERT INTO "extent" VALUES('EPSG','3628','Congo DR (Zaire) - south and 24°E to 30°E','The Democratic Republic of the Congo (Zaire) - south of a line through Bandundu, Seke and Pweto and east of 24°E.',-13.46,-4.79,24.0,29.81,0);
INSERT INTO "extent" VALUES('EPSG','3629','Spain - Canary Islands - west of 18°W','Spain - Canary Islands - west of 18°W, onshore and offshore.',24.6,31.19,-21.93,-18.0,0);
INSERT INTO "extent" VALUES('EPSG','3630','Spain - Canary Islands - east of 18°W','Spain - Canary Islands - east of 18°W, onshore and offshore.',25.25,32.76,-18.0,-11.75,0);
INSERT INTO "extent" VALUES('EPSG','3631','Denmark - onshore Jutland west of 10°E','Denmark - Jutland onshore west of 10°E.',54.8,57.64,8.0,10.0,0);
INSERT INTO "extent" VALUES('EPSG','3632','Denmark - onshore Jutland east of 9°E and Funen','Denmark - onshore - Jutland east of 9°E and Funen.',54.67,57.8,9.0,11.29,0);
INSERT INTO "extent" VALUES('EPSG','3633','Mexico - 96°W to 90°W','Mexico between 96°W and 90°W, onshore and offshore.',12.1,26.0,-96.0,-90.0,0);
INSERT INTO "extent" VALUES('EPSG','3634','Caribbean - Puerto Rico and US Virgin Islands - onshore','Puerto Rico and US Virgin Islands - onshore.',17.62,18.57,-67.97,-64.51,0);
INSERT INTO "extent" VALUES('EPSG','3635','Mexico - east of 90°W','Mexico east of 90°W, onshore and offshore.',17.81,25.77,-90.0,-84.64,0);
INSERT INTO "extent" VALUES('EPSG','3636','Norway - onshore - west of 6°E','Norway - onshore - west of 6°E.',58.32,62.49,4.68,6.0,0);
INSERT INTO "extent" VALUES('EPSG','3637','USA - 102°W to 96°W and GoM OCS','United States (USA) - between 102°W and 96°W. Iowa; Kansas; Minnesota; Nebraska; North Dakota; Oklahoma; South Dakota; Texas; Gulf of Mexico outer continental shelf (GoM OCS) west of approximately 96°W - protraction areas Corpus Christi; Port Isabel.',25.83,49.01,-102.0,-95.87,0);
INSERT INTO "extent" VALUES('EPSG','3638','South America - 84°W to 78°W, S hemisphere and SIRGAS95 by country','Ecuador (mainland whole country including areas in northern hemisphere and east of 78°W), onshore and offshore. In remainder of South America, between 84°W and 78°W, southern hemisphere, onshore and offshore.',-56.45,1.45,-84.0,-75.21,0);
INSERT INTO "extent" VALUES('EPSG','3639','Norway - onshore - 6°E to 7°E','Norway - onshore - between 6°E and 7°E.',57.93,63.02,6.0,7.0,0);
INSERT INTO "extent" VALUES('EPSG','3640','USA - 96°W to 90°W and GoM OCS','United States (USA) - between 96°W and 90°W - Arkansas; Illinois; Iowa; Kansas; Louisiana; Michigan; Minnesota; Mississippi; Missouri; Nebraska; Oklahoma; Tennessee; Texas; Wisconsin; Gulf of Mexico outer continental shelf (GoM OCS) between approximately 96°W and 90°W - protraction areas East Breaks; Alaminos Canyon; Garden Banks; Keathley Canyon; Sigsbee Escarpment; Ewing Bank; Green Canyon; Walker Ridge; Amery Terrace.',25.61,49.38,-96.01,-89.86,0);
INSERT INTO "extent" VALUES('EPSG','3641','USA - 90°W to 84°W and GoM OCS','United States (USA) - between 90°W and 84°W onshore and offshore - Alabama; Arkansas; Florida; Georgia; Indiana; Illinois; Kentucky; Louisiana; Michigan; Minnesota; Mississippi; Missouri; North Carolina; Ohio; Tennessee; Wisconsin; Gulf of Mexico outer continental shelf (GoM OCS) between approximately 90°W and 84°W - protraction areas Mobile; Viosca Knoll; Mississippi Canyon; Atwater Valley; Lund; Lund South; Pensacola; Destin Dome; De Soto Canyon; Lloyd Ridge; Henderson; Florida Plain; Campeche Escarpment; Apalachicola; Florida Middle Ground; The Elbow; Vernon Basin; Howell Hook; Rankin.',23.95,48.32,-90.01,-83.91,0);
INSERT INTO "extent" VALUES('EPSG','3642','USA - 84°W to 78°W and GoM OCS','United States (USA) - between 84°W and 78°W onshore and offshore - Florida; Georgia; Maryland; Michigan; New York; North Carolina; Ohio; Pennsylvania; South Carolina; Tennessee; Virginia; West Virginia; Gulf of Mexico outer continental shelf (GoM OCS) east of approximately 84°W - protraction areas Gainesville; Tarpon Springs; St Petersburg; Charlotte Harbor; Pulley Ridge; Dry Tortugas; Tortugas Valley; Miami; Key West.',23.81,46.13,-84.09,-77.99,0);
INSERT INTO "extent" VALUES('EPSG','3643','Germany - Schleswig-Holstein','Germany - Schleswig-Holstein',53.35,55.06,7.8,11.35,1);
INSERT INTO "extent" VALUES('EPSG','3644','Germany - Schleswig-Holstein - east of 10.5°E','Germany - Schleswig-Holstein - east of 10°30''E.',53.36,54.59,10.49,11.4,0);
INSERT INTO "extent" VALUES('EPSG','3645','Sao Tome and Principe - onshore - Sao Tome','Sao Tome and Principe - onshore - Sao Tome.',-0.04,0.46,6.41,6.82,0);
INSERT INTO "extent" VALUES('EPSG','3646','Sao Tome and Principe - onshore - Principe','Sao Tome and Principe - onshore - Principe.',1.48,1.76,7.27,7.52,0);
INSERT INTO "extent" VALUES('EPSG','3647','Norway - onshore - 7°E to 8°E','Norway - onshore - between 7°E and 8°E.',57.93,63.52,7.0,8.0,0);
INSERT INTO "extent" VALUES('EPSG','3648','Norway - onshore - 8°E to 9°E','Norway - onshore - between 8°E and 9°E.',58.03,63.87,8.0,9.0,0);
INSERT INTO "extent" VALUES('EPSG','3649','Norway - onshore - 9°E to 10°E','Norway - onshore - between 9°E and 10°E.',58.52,64.16,9.0,10.0,0);
INSERT INTO "extent" VALUES('EPSG','3650','Norway - onshore - 10°E to 11°E','Norway - onshore - between 10°E and 11°E.',58.9,65.04,10.0,11.0,0);
INSERT INTO "extent" VALUES('EPSG','3651','Norway - onshore - 11°E to 12°E','Norway - onshore - between 11°E and 12°E.',58.88,65.76,11.0,12.0,0);
INSERT INTO "extent" VALUES('EPSG','3652','USA - Michigan - SPCS - W','United States (USA) - Michigan - counties of Baraga; Dickinson; Gogebic; Houghton; Iron; Keweenaw; Marquette; Menominee; Ontonagon.',45.09,48.32,-90.42,-83.44,0);
INSERT INTO "extent" VALUES('EPSG','3653','Norway - onshore - 12°E to 13°E','Norway - onshore - between 12°E and 13°E.',59.88,68.15,12.0,13.0,0);
INSERT INTO "extent" VALUES('EPSG','3654','Norway - onshore - 13°E to 14°E','Norway - onshore - between 13°E and 14°E.',64.01,68.37,13.0,14.0,0);
INSERT INTO "extent" VALUES('EPSG','3655','Norway - onshore - 14°E to 15°E','Norway - onshore - between 14°E and 15°E.',64.03,69.05,14.0,15.0,0);
INSERT INTO "extent" VALUES('EPSG','3656','Norway - onshore - 15°E to 16°E','Norway - onshore - between 15°E and 16°E.',66.14,69.35,15.0,16.0,0);
INSERT INTO "extent" VALUES('EPSG','3657','Norway - onshore - 16°E to 17°E','Norway - onshore - between 16°E and 17°E.',66.88,69.45,16.0,17.0,0);
INSERT INTO "extent" VALUES('EPSG','3658','Norway - onshore - 17°E to 18°E','Norway - onshore - between 17°E and 18°E.',67.94,69.68,17.0,18.0,0);
INSERT INTO "extent" VALUES('EPSG','3659','Germany - Schleswig-Holstein - west of 10.5°E','Germany - Schleswig-Holstein - west of 10°30''E including Heligoland.',53.37,55.09,7.8,10.5,0);
INSERT INTO "extent" VALUES('EPSG','3660','Norway - onshore - 18°E to 19°E','Norway - onshore - between 18°E and 19°E.',68.04,70.27,18.0,19.0,0);
INSERT INTO "extent" VALUES('EPSG','3661','Norway - onshore - 19°E to 20°E','Norway - onshore - between 19°E and 20°E.',68.33,70.34,19.0,20.0,0);
INSERT INTO "extent" VALUES('EPSG','3662','Norway - onshore - 20°E to 21°E','Norway - onshore - between 20°E and 21°E.',68.37,70.29,20.0,21.0,0);
INSERT INTO "extent" VALUES('EPSG','3663','Norway - onshore - 21°E to 22°E','Norway - onshore - between 21°E and 22°E.',69.03,70.71,21.0,22.0,0);
INSERT INTO "extent" VALUES('EPSG','3664','USA - CONUS and Alaska - onshore','United States (USA) - CONUS and Alaska - onshore - Alabama; Alaska mainland; Arizona; Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming.',24.41,71.4,-168.26,-66.91,0);
INSERT INTO "extent" VALUES('EPSG','3665','Norway - onshore - 22°E to 23°E','Norway - onshore - between 22°E and 23°E.',68.69,70.81,22.0,23.0,0);
INSERT INTO "extent" VALUES('EPSG','3666','Indonesia - Java, Java Sea and western Sumatra','Indonesia - Bali, Java and western Sumatra onshore, offshore southern Java Sea, Madura Strait and western Bali Sea.',-8.91,5.97,95.16,117.01,0);
INSERT INTO "extent" VALUES('EPSG','3667','Norway - onshore - 23°E to 24°E','Norway - onshore - between 23°E and 24°E.',68.62,71.08,23.0,24.0,0);
INSERT INTO "extent" VALUES('EPSG','3668','Norway - onshore - 24°E to 25°E','Norway - onshore - between 24°E and 25°E.',68.58,71.16,24.0,25.0,0);
INSERT INTO "extent" VALUES('EPSG','3669','Norway - onshore - 25°E to 26°E','Norway - onshore - between 25°E and 26°E.',68.59,71.21,25.0,26.0,0);
INSERT INTO "extent" VALUES('EPSG','3670','Portugal - Azores and Madeira','Portugal - Azores and Madeira island groups and surrounding EEZ - Flores, Corvo; Graciosa, Terceira, Sao Jorge, Pico, Faial; Sao Miguel, Santa Maria; Madeira, Porto Santo, Desertas; Selvagens.',29.24,43.07,-35.58,-12.48,0);
INSERT INTO "extent" VALUES('EPSG','3671','Norway - onshore - 26°E to 27°E','Norway - onshore - between 26°E and 27°E.',69.71,71.17,26.0,27.0,0);
INSERT INTO "extent" VALUES('EPSG','3672','Norway - onshore - 27°E to 28°E','Norway - onshore - between 27°E and 28°E.',69.9,71.17,27.0,28.0,0);
INSERT INTO "extent" VALUES('EPSG','3673','Norway - onshore - 28°E to 29°E','Norway - onshore - between 28°E and 29°E.',69.03,71.13,28.0,29.0,0);
INSERT INTO "extent" VALUES('EPSG','3674','Norway - onshore - 29°E to 30°E','Norway - onshore - between 29°E and 30°E.',69.02,70.93,29.0,30.0,0);
INSERT INTO "extent" VALUES('EPSG','3675','Paraguay - north of 22°S','Paraguay - north of 22°S.',-22.0,-19.29,-62.57,-57.81,0);
INSERT INTO "extent" VALUES('EPSG','3676','Norway - onshore - east of 30°E','Norway - onshore - east of 30°E.',69.46,70.77,30.0,31.22,0);
INSERT INTO "extent" VALUES('EPSG','3677','Portugal - Azores 30°W to 24°W','Portugal - between 30°W and 24°W - central and eastern Azores - Graciosa, Terceira, Sao Jorge, Pico, Faial; Sao Miguel and Santa Maria islands and surrounding EEZ.',33.52,42.96,-30.0,-24.0,0);
INSERT INTO "extent" VALUES('EPSG','3678','Portugal - Madeira and EEZ E of 18°W','Portugal - Madeira, Porto Santo, Desertas and Selvagens islands and surrounding EEZ east of 18°W.',29.24,36.46,-18.0,-12.48,0);
INSERT INTO "extent" VALUES('EPSG','3679','Portugal - Madeira island onshore','Portugal - Madeira island onshore.',32.58,32.93,-17.31,-16.66,0);
INSERT INTO "extent" VALUES('EPSG','3680','Portugal - Porto Santo island onshore','Portugal - Porto Santo island (Madeira archipelago) onshore.',32.96,33.15,-16.44,-16.23,0);
INSERT INTO "extent" VALUES('EPSG','3681','Portugal - Azores C - Graciosa onshore','Portugal - central Azores - Graciosa island onshore.',38.97,39.14,-28.13,-27.88,0);
INSERT INTO "extent" VALUES('EPSG','3682','Portugal - Azores - west of 30°W','Portugal - west of 30°W - western Azores - Flores and Corvo islands and surrounding EEZ.',35.25,43.07,-35.58,-30.0,0);
INSERT INTO "extent" VALUES('EPSG','3683','Portugal - Azores E - Santa Maria onshore','Portugal - eastern Azores - Santa Maria island onshore.',36.87,37.08,-25.26,-24.96,0);
INSERT INTO "extent" VALUES('EPSG','3684','Portugal - Azores W - Flores onshore','Portugal - western Azores - Flores island onshore.',39.3,39.58,-31.34,-31.07,0);
INSERT INTO "extent" VALUES('EPSG','3685','Portugal - Azores W - Corvo onshore','Portugal - western Azores - Corvo island onshore.',39.63,39.77,-31.18,-31.02,0);
INSERT INTO "extent" VALUES('EPSG','3686','Colombia - mainland and offshore Caribbean','Colombia - mainland and offshore Caribbean.',-4.23,13.68,-79.1,-66.87,0);
INSERT INTO "extent" VALUES('EPSG','3687','Australia - SA and WA 126°E to 132°E','Australia - South Australia west of 132°E, Western Australia east of 126°E, offshore federal waters between 126°E and 129°E.',-37.05,-9.37,125.99,132.01,0);
INSERT INTO "extent" VALUES('EPSG','3688','Australia - SA 132°E to 138°E','Australia - South Australia between 132°E and 138°E.',-36.14,-25.99,132.0,138.0,0);
INSERT INTO "extent" VALUES('EPSG','3689','Australia - SA and Qld 138°E to 144°E','Australia - South Australia east of 138°E, Queensland west of 144°E.',-38.13,-9.86,138.0,144.01,0);
INSERT INTO "extent" VALUES('EPSG','3690','Australia - Qld 144°E to 150°E','Australia - Queensland between 144°E and 150°E.',-29.01,-14.01,144.0,150.0,0);
INSERT INTO "extent" VALUES('EPSG','3691','Australia - Qld east of 150°E','Australia - Queensland east of 150°E.',-29.19,-22.0,150.0,153.61,0);
INSERT INTO "extent" VALUES('EPSG','3692','Brazil - Reconcavo and Jacuipe','Brazil - offshore - Reconcavo and Jacuipe basins.',-13.57,-11.18,-39.09,-35.31,0);
INSERT INTO "extent" VALUES('EPSG','3693','Brazil - Tucano and Jatoba','Brazil - Tucano North, Tucano Central, Tucano South and Jatoba basins.',-12.27,-8.39,-39.14,-37.09,0);
INSERT INTO "extent" VALUES('EPSG','3694','France - onshore - mainland and Corsica','France - onshore - mainland and Corsica.',41.31,51.14,-4.87,9.63,0);
INSERT INTO "extent" VALUES('EPSG','3695','Iraq - 31.4°N to 33°N, 43.9°E to 46.1°E (map 16)','Iraq - between UTM 3470000mN and 3650000mN (approximately 31°21''N and 32°58''N) and between UTM 400000mE and 600000mE (approximately 43°56''E and 46°04''E).',31.36,32.99,43.92,46.08,0);
INSERT INTO "extent" VALUES('EPSG','3696','Brazil - Sergipe and Alagoas','Brazil - offshore - Sergipe and Alagoas basins.',-13.58,-8.73,-37.34,-32.01,0);
INSERT INTO "extent" VALUES('EPSG','3697','Brazil - Paraiba-Pernambuco','Brazil - offshore - Paraiba-Pernambuco basin.',-10.17,-4.6,-35.1,-29.13,0);
INSERT INTO "extent" VALUES('EPSG','3698','Brazil - Potiguar, Ceara and Barreirinhas','Brazil - offshore - Potiguar, Ceara and Barreirinhas basins.',-6.5,4.26,-44.79,-26.0,0);
INSERT INTO "extent" VALUES('EPSG','3699','Brazil - Cumuruxatiba, Jequitinhonha and Camamu-Almada','Brazil - offshore - Cumuruxatiba, Jequitinhonha and Camamu-Almada basins.',-17.7,-13.01,-39.22,-34.6,0);
INSERT INTO "extent" VALUES('EPSG','3700','Brazil - Santos and Pelotas','Brazil - offshore - Santos and Pelotas basins.',-35.71,-22.66,-53.38,-40.2,0);
INSERT INTO "extent" VALUES('EPSG','3701','Iraq - 34.6°N to 36.2°N, west of 42.8°E (map 5)','Iraq - between UTM 3830000mN and 4010000mN (approximately 34°35''N and 36°13''N) and west of UTM 300000mE (approximately 42°48''E).',34.55,36.22,41.09,42.82,0);
INSERT INTO "extent" VALUES('EPSG','3702','Iraq - SE','Iraq - onshore southeast.',29.06,32.51,43.98,48.61,0);
INSERT INTO "extent" VALUES('EPSG','3703','Germany - Lower Saxony west of 7.5°E','Germany - Niedersachsen onshore west of 7°30''E.',52.23,53.81,6.58,7.5,0);
INSERT INTO "extent" VALUES('EPSG','3704','Iraq - 31.4°N to 33°N, east of 46.1°E (map 17)','Iraq - between UTM 3470000mN and 3650000mN (approximately 31°21''N and 32°58''N) and east of UTM 600000mE (approximately 46°04''E).',31.33,32.99,46.05,47.87,0);
INSERT INTO "extent" VALUES('EPSG','3705','Germany - Lower Saxony east of 10.5°E','Germany - Niedersachsen east of 10°30''E.',51.55,53.38,10.5,11.59,0);
INSERT INTO "extent" VALUES('EPSG','3706','Iraq - 29.7 to 31.4°N, 42°E to 43.9°E (map 19)','Iraq - between UTM 3290000mN and 3470000mN (approximately 29°47''N and 31°21''N) and between 42°E and UTM 400000mE (approximately 43°56''E).',29.75,31.37,42.0,43.97,0);
INSERT INTO "extent" VALUES('EPSG','3707','Germany - Lower Saxony 7.5°E to 10.5°E','Germany - Niedersachsen between 7°30''E and 10°30''E.',51.28,53.95,7.5,10.51,0);
INSERT INTO "extent" VALUES('EPSG','3708','Iraq - 29.7°N to 31.4°N, 43.9°E to 46.1°E (map 20)','Iraq - between UTM 3290000mN and 3470000mN (approximately 29°47''N and 31°21''N) and between UTM 400000mE and 600000mE (approximately 43°56''E and 46°04''E).',29.73,31.37,43.94,46.06,0);
INSERT INTO "extent" VALUES('EPSG','3709','Iraq - 31.4°N to 33°N, 42°E to 43.9°E (map 15)','Iraq - between UTM 3470000mN and 3650000mN (approximately 31°21''N and 32°58''N) and between 42°E and UTM 400000mE (approximately 43°56''E).',31.32,32.99,42.0,43.95,0);
INSERT INTO "extent" VALUES('EPSG','3710','Iraq - 29.7°N to 31.4°N, 46.1°E to 48°E (map 21)','Iraq - between UTM 3290000mN and 3470000mN (approximately 29°47''N and 31°21''N) and between UTM 600000mE (approximately 46°04''E) and 48°E.',29.72,31.37,46.03,48.0,0);
INSERT INTO "extent" VALUES('EPSG','3711','Iraq - south of 29.7°N, west of 46.1°E (map 24)','Iraq - south of UTM 3290000mN (approximately 29°47''N) and west of UTM 600000mE (approximately 46°04''E).',29.09,29.75,43.99,46.04,0);
INSERT INTO "extent" VALUES('EPSG','3712','Iraq - south of 29.7°N, east of 46.1°E (map 25)','Iraq - south of UTM 3290000mN (approximately 29°47''N) and east of UTM 600000mE (approximately 46°04''E).',29.06,29.74,46.02,47.02,0);
INSERT INTO "extent" VALUES('EPSG','3713','Asia - Korea N and S - west of 126°E','Democratic People''s Republic of Korea (North Korea) and Republic of Korea (South Korea) - onshore west of 126°E.',33.99,40.9,124.27,126.0,0);
INSERT INTO "extent" VALUES('EPSG','3714','Iraq - north of 36.2°N, west of 42°E (map 1)','Iraq - north of UTM 4010000mN (approximately 36°13''N and west of 42°E.',36.19,36.75,41.27,42.0,0);
INSERT INTO "extent" VALUES('EPSG','3715','Iraq - 34.6°N to 36.2°N, 42.8°E to 45°E (map 6)','Iraq - between UTM 3830000mN and 4010000mN (approximately 34°35''N and 36°13''N) and between UTM 300000mE (approximately 42°48''E) and 45°E.',34.59,36.24,42.77,45.0,0);
INSERT INTO "extent" VALUES('EPSG','3716','Asia - Korea N and S - 126°E to 128°E','Democratic People''s Republic of Korea (North Korea) and Republic of Korea (South Korea) - onshore between 126°E and 128°E.',33.14,41.8,126.0,128.0,0);
INSERT INTO "extent" VALUES('EPSG','3717','Iraq - north of 36.2°N, 42°E to 43.9°E (map 2)','Iraq - north of UTM 4010000mN (approximately 36°13''N) and between 42°E and UTM 400000mE (approximately 43°56''E).',36.19,37.39,42.0,43.89,0);
INSERT INTO "extent" VALUES('EPSG','3718','Iraq - 34.6°N to 36.2°N, east of 45°E (map 7)','Iraq - between UTM 3830000mN and 4010000mN (approximately 34°35''N and 36°13''N) and east of 45°E.',34.6,36.24,45.0,46.35,0);
INSERT INTO "extent" VALUES('EPSG','3719','Iraq - north of 36.2°N, east of 43.9°E (map 3)','Iraq - north of UTM 4010000mN (approximately 36°13''N) and east of UTM 400000mE (approximatrely 43°56''E).',36.22,37.33,43.87,45.33,0);
INSERT INTO "extent" VALUES('EPSG','3720','Korea, Republic of (South Korea) - 130°E to 132°E onshore','Republic of Korea (South Korea) - onshore between 130°E and 132°E.',37.39,37.62,130.71,131.01,0);
INSERT INTO "extent" VALUES('EPSG','3721','Korea, Republic of (South Korea) - 126°E to 128°E Jeju','Republic of Korea (South Korea) - between 126°E and 128°E - Jeju island onshore.',33.14,33.61,126.09,127.01,0);
INSERT INTO "extent" VALUES('EPSG','3722','Iraq - 33°N to 34.6°N, west of 40.1°E (map 8)','Iraq - north of UTM 3650000mN (approximately 32°58''N) and west of UTM zone 37 600000mE (approximately 40°04''E).',32.98,33.99,38.79,40.09,0);
INSERT INTO "extent" VALUES('EPSG','3723','Iraq - 33°N to 34.6°N, 40.1°E to 42°E (map 9)','Iraq - between UTM 3650000mN and 3830000mN (approximately 32°58''N and 34°35''N) and between UTM zone 37 600000mE (approximately 40°04''E) and 42°E.',32.95,34.6,40.07,42.0,0);
INSERT INTO "extent" VALUES('EPSG','3724','Iraq - 33°N to 34.6°N, 42°E to 43.9°E (map 10)','Iraq - between UTM 3650000mN and 3830000mN (approximately 32°58''N and 34°35''N) and between 42°E and UTM 400000mE (approximately 43°56''E).',32.95,34.61,42.0,43.93,0);
INSERT INTO "extent" VALUES('EPSG','3725','Iraq - 33°N to 34.6°N, 43.9°E to 46.1°E (map 11)','Iraq - between UTM 3650000mN and 3830000mN (approximately 32°58''N and 34°35''N) and between UTM 400000mE and 600000mE (approximately 43°56''E and 46°04''E).',32.98,34.62,43.9,46.2,0);
INSERT INTO "extent" VALUES('EPSG','3726','Asia - Korea N and S - 128°E to 130°E','Democratic People''s Republic of Korea (North Korea) and Republic of Korea (South Korea) - onshore between 128°E and 130°E.',34.49,43.01,128.0,130.0,0);
INSERT INTO "extent" VALUES('EPSG','3727','Asia - Korea N and S - east of 130°E','Democratic People''s Republic of Korea (North Korea) and Republic of Korea (South Korea) - onshore east of 130°E.',37.39,42.98,130.0,131.01,0);
INSERT INTO "extent" VALUES('EPSG','3728','Iraq - 31.4°N to 33°N, 40.1°E to 42°E (map 14)','Iraq - between UTM 3470000mN and 3650000mN (approximately 31°21''N and 32°58''N) and between UTM zone 37 600000mE (approximately 40°04''E) and 42°E.',31.32,32.99,40.05,42.0,0);
INSERT INTO "extent" VALUES('EPSG','3729','Iraq - 31.4°N to 33°N, west of 40.1°E (map 13)','Iraq - sorth of UTM 3650000mN (approximately 32°58''N) and west of UTM zone 37 600000mE (approximately 40°04''E).',32.0,32.99,38.92,40.08,0);
INSERT INTO "extent" VALUES('EPSG','3730','Korea, Republic of (South Korea) - 126°E to 128°E mainland','Republic of Korea (South Korea) - between 126°E and 128°E - mainland and nearshore.',33.96,38.33,126.0,128.0,0);
INSERT INTO "extent" VALUES('EPSG','3731','Georgia - offshore','Georgia - offshore.',41.54,43.33,38.97,41.71,0);
INSERT INTO "extent" VALUES('EPSG','3732','Spain - Catalonia onshore','Spain - Catalonia onshore.',40.49,42.86,0.16,3.39,0);
INSERT INTO "extent" VALUES('EPSG','3733','Bolivia - east of 60°W','Bolivia - east of 60°W.',-20.17,-16.27,-60.0,-57.52,0);
INSERT INTO "extent" VALUES('EPSG','3734','Bhutan - Bumthang district','Bhutan - Bumthang district.',27.33,28.09,90.46,91.02,0);
INSERT INTO "extent" VALUES('EPSG','3735','Thailand - onshore east of 102°E','Thailand - onshore east of 102°E.',6.02,18.44,102.0,105.64,0);
INSERT INTO "extent" VALUES('EPSG','3736','Italy - mainland and Sicily','Italy - mainland (including San Marino and Vatican City State) and Sicily.',36.59,47.1,6.62,18.58,0);
INSERT INTO "extent" VALUES('EPSG','3737','Bhutan - Chhukha district','Bhutan - Chhukha district.',26.71,27.32,89.26,89.83,0);
INSERT INTO "extent" VALUES('EPSG','3738','Bhutan - Dagana district','Bhutan - Dagana district.',26.7,27.29,89.63,90.08,0);
INSERT INTO "extent" VALUES('EPSG','3739','Korea, Republic of (South Korea) - mainland','Republic of Korea (South Korea) - mainland onshore.',33.96,38.64,125.75,129.65,0);
INSERT INTO "extent" VALUES('EPSG','3740','Bhutan - Gasa district','Bhutan - Gasa district.',27.72,28.33,89.44,90.47,0);
INSERT INTO "extent" VALUES('EPSG','3741','Thailand - onshore and Gulf of Thailand','Thailand - onshore plus offshore Gulf of Thailand.',5.63,20.46,97.34,105.64,0);
INSERT INTO "extent" VALUES('EPSG','3742','Bhutan - Ha district','Bhutan - Ha district.',27.02,27.62,88.9,89.39,0);
INSERT INTO "extent" VALUES('EPSG','3743','Bhutan - Lhuentse district','Bhutan - Lhuentse district.',27.39,28.09,90.77,91.49,0);
INSERT INTO "extent" VALUES('EPSG','3744','Europe - Ireland (Republic and Ulster) - on- and offshore','Ireland - onshore. United Kingdom (UK) - Northern Ireland (Ulster) - onshore and offshore.',51.33,55.4,-10.6,-5.33,1);
INSERT INTO "extent" VALUES('EPSG','3745','Bhutan - Mongar district','Bhutan - Mongar district.',26.93,27.61,90.95,91.5,0);
INSERT INTO "extent" VALUES('EPSG','3746','Bhutan - Paro district','Bhutan - Paro district.',27.18,27.79,89.12,89.56,0);
INSERT INTO "extent" VALUES('EPSG','3747','Bhutan - Pemagatshel district','Bhutan - Pemagatshel district.',26.78,27.18,91.0,91.56,0);
INSERT INTO "extent" VALUES('EPSG','3748','Latin America - 120°W to 114°W','Latin America between 120°W and 114°W, northern hemisphere, onshore and offshore.',15.01,32.72,-120.0,-114.0,0);
INSERT INTO "extent" VALUES('EPSG','3749','Bhutan - Punakha district','Bhutan - Punakha district.',27.46,27.87,89.63,90.08,0);
INSERT INTO "extent" VALUES('EPSG','3750','Bhutan - Samdrup Jongkhar district','Bhutan - Samdrup Jongkhar district.',26.79,27.25,91.39,92.13,0);
INSERT INTO "extent" VALUES('EPSG','3751','Bhutan - Samtse district','Bhutan - Samtse district.',26.8,27.28,88.74,89.38,0);
INSERT INTO "extent" VALUES('EPSG','3752','Bhutan - Sarpang district','Bhutan - Sarpang district.',26.73,27.23,90.01,90.78,0);
INSERT INTO "extent" VALUES('EPSG','3753','Bhutan - Thimphu district','Bhutan - Thimphu district.',27.14,28.01,89.22,89.77,0);
INSERT INTO "extent" VALUES('EPSG','3754','Bhutan - Trashigang district','Bhutan - Trashigang district.',27.01,27.49,91.37,92.13,0);
INSERT INTO "extent" VALUES('EPSG','3755','Bhutan - Trongsa district','Bhutan - Trongsa district.',27.13,27.79,90.26,90.76,0);
INSERT INTO "extent" VALUES('EPSG','3756','Latin America - 114°W to 108°W','Latin America between 114°W and 108°W, northern hemisphere, onshore and offshore.',15.09,32.27,-114.0,-108.0,0);
INSERT INTO "extent" VALUES('EPSG','3757','Bhutan - Tsirang district','Bhutan - Tsirang district.',26.81,27.2,90.0,90.35,0);
INSERT INTO "extent" VALUES('EPSG','3758','Bhutan - Wangdue Phodrang district','Bhutan - Wangdue Phodrang district.',27.11,28.08,89.71,90.54,0);
INSERT INTO "extent" VALUES('EPSG','3759','Latin America - 108°W to 102°W','Latin America between 108°W and 102°W, northern hemisphere, onshore and offshore.',14.05,31.79,-108.0,-102.0,0);
INSERT INTO "extent" VALUES('EPSG','3760','Bhutan - Yangtse district','Bhutan - Yangtse district.',27.37,28.0,91.34,91.77,0);
INSERT INTO "extent" VALUES('EPSG','3761','Bhutan - Zhemgang district','Bhutan - Zhemgang district.',26.77,27.39,90.53,91.19,0);
INSERT INTO "extent" VALUES('EPSG','3762','New Zealand - North Island - One Tree vcrs','New Zealand - North Island - One Tree Point vertical CRS area.',-36.41,-34.36,172.61,174.83,0);
INSERT INTO "extent" VALUES('EPSG','3763','Latin America - 102°W to 96°W','Latin America between 102°W and 96°W, northern hemisphere, onshore and offshore.',12.3,29.81,-102.01,-96.0,0);
INSERT INTO "extent" VALUES('EPSG','3764','New Zealand - North Island - Auckland vcrs','New Zealand - North Island - Auckland vertical CRS area.',-37.67,-36.12,174.0,176.17,0);
INSERT INTO "extent" VALUES('EPSG','3765','French Guiana - coastal area west of 54°W','French Guiana - coastal area west of 54°W.',4.84,5.69,-54.45,-54.0,0);
INSERT INTO "extent" VALUES('EPSG','3766','French Guiana - coastal area east of 54°W','French Guiana - coastal area east of 54°W.',3.43,5.81,-54.0,-51.61,0);
INSERT INTO "extent" VALUES('EPSG','3767','Ireland - onshore','Ireland - onshore.',51.39,55.43,-10.56,-5.93,0);
INSERT INTO "extent" VALUES('EPSG','3768','New Zealand - North Island - Moturiki vcrs','New Zealand - North Island - Moturiki vertical CRS area.',-40.59,-37.52,174.57,177.26,0);
INSERT INTO "extent" VALUES('EPSG','3769','New Zealand - North Island - Taranaki vcrs','New Zealand - North Island - Taranaki vertical CRS area.',-39.92,-38.41,173.68,174.95,0);
INSERT INTO "extent" VALUES('EPSG','3770','Vietnam - DBSCL 02 and 03','Vietnam - Mekong delta blocks DBSCL 02 and 03.',9.35,11.04,104.24,107.11,0);
INSERT INTO "extent" VALUES('EPSG','3771','New Zealand - North Island - Gisborne vcrs','New Zealand - North Island - Gisborne vertical CRS area.',-39.04,-37.49,176.41,178.63,0);
INSERT INTO "extent" VALUES('EPSG','3772','New Zealand - North Island - Hawkes Bay mc Napier vcrs','New Zealand - North Island - Hawkes Bay meridional circuit and Napier vertical crs area.',-40.57,-38.87,175.8,178.07,0);
INSERT INTO "extent" VALUES('EPSG','3773','New Zealand - North Island - Wellington vcrs','New Zealand - North Island - Wellington vertical CRS area.',-41.67,-40.12,174.52,176.56,0);
INSERT INTO "extent" VALUES('EPSG','3774','New Zealand - North Island - Wellington mc','New Zealand - North Island - Wellington meridional circuit area.',-41.5,-40.91,174.52,175.36,0);
INSERT INTO "extent" VALUES('EPSG','3775','New Zealand - North Island - Wairarapa mc','New Zealand - North Island - Wairarapa meridional circuit area.',-41.67,-40.29,175.01,176.55,0);
INSERT INTO "extent" VALUES('EPSG','3776','New Zealand - North Island - Wanganui mc','New Zealand - North Island - Wanganui meridional circuit area.',-40.97,-39.46,174.4,176.27,0);
INSERT INTO "extent" VALUES('EPSG','3777','New Zealand - North Island - Taranaki mc','New Zealand - North Island - Taranaki meridional circuit area.',-39.78,-38.4,173.68,175.44,0);
INSERT INTO "extent" VALUES('EPSG','3778','New Zealand - North Island - Tuhirangi mc','New Zealand - North Island - Tuhirangi meridional circuit area.',-39.55,-38.87,174.88,176.33,0);
INSERT INTO "extent" VALUES('EPSG','3779','New Zealand - North Island - Bay of Plenty mc','New Zealand - North Island - Bay of Plenty meridional circuit area.',-39.13,-37.22,175.75,177.23,0);
INSERT INTO "extent" VALUES('EPSG','3780','New Zealand - North Island - Poverty Bay mc','New Zealand - North Island - Poverty Bay meridional circuit area.',-39.04,-37.49,176.73,178.63,0);
INSERT INTO "extent" VALUES('EPSG','3781','New Zealand - North Island - Mount Eden mc','New Zealand - North Island - Mount Eden meridional circuit area.',-39.01,-34.1,171.99,176.12,0);
INSERT INTO "extent" VALUES('EPSG','3782','New Zealand - South Island - Collingwood mc','New Zealand - South Island - Collingwood meridional circuit area.',-41.22,-40.44,172.16,173.13,0);
INSERT INTO "extent" VALUES('EPSG','3783','New Zealand - South Island - Karamea mc','New Zealand - South Island - Karamea meridional circuit area.',-41.49,-40.75,171.96,172.7,0);
INSERT INTO "extent" VALUES('EPSG','3784','New Zealand - South Island - Nelson mc','New Zealand - South Island - Nelson meridional circuit area.',-42.18,-40.66,172.4,174.08,0);
INSERT INTO "extent" VALUES('EPSG','3785','New Zealand - South Island - Marlborough mc','New Zealand - South Island - Marlborough meridional circuit area.',-42.65,-40.85,172.95,174.46,0);
INSERT INTO "extent" VALUES('EPSG','3786','New Zealand - South Island - Buller mc','New Zealand - South Island - Buller meridional circuit area.',-42.19,-41.42,171.27,172.41,0);
INSERT INTO "extent" VALUES('EPSG','3787','New Zealand - South Island - Grey mc','New Zealand - South Island - Grey meridional circuit area.',-42.74,-41.5,171.15,172.75,0);
INSERT INTO "extent" VALUES('EPSG','3788','New Zealand - South Island - Amuri mc','New Zealand - South Island - Amuri meridional circuit area.',-42.95,-42.09,171.88,173.55,0);
INSERT INTO "extent" VALUES('EPSG','3789','New Zealand - South Island - Hokitika mc','New Zealand - South Island - Hokitika meridional circuit area.',-43.23,-42.41,170.39,171.89,0);
INSERT INTO "extent" VALUES('EPSG','3790','New Zealand - South Island - Mount Pleasant mc','New Zealand - South Island - Mount Pleasant meridional circuit area.',-43.96,-42.69,171.11,173.38,0);
INSERT INTO "extent" VALUES('EPSG','3791','New Zealand - South Island - Okarito mc','New Zealand - South Island - Okarito meridional circuit area.',-43.85,-43.0,169.21,170.89,0);
INSERT INTO "extent" VALUES('EPSG','3792','New Zealand - South Island - Gawler mc','New Zealand - South Island - Gawler meridional circuit area.',-44.25,-43.13,170.68,172.26,0);
INSERT INTO "extent" VALUES('EPSG','3793','New Zealand - South Island - Timaru mc','New Zealand - South Island - Timaru meridional circuit area.',-44.98,-43.35,169.82,171.55,0);
INSERT INTO "extent" VALUES('EPSG','3794','New Zealand - South Island - Jacksons Bay mc','New Zealand - South Island - Jacksons Bay meridional circuit area.',-44.4,-43.67,168.02,170.01,0);
INSERT INTO "extent" VALUES('EPSG','3795','New Zealand - South Island - Lindis Peak mc','New Zealand - South Island - Lindis Peak meridional circuit area.',-45.4,-43.71,168.62,170.24,0);
INSERT INTO "extent" VALUES('EPSG','3796','New Zealand - South Island - Observation Point mc','New Zealand - South Island - Observation Point meridional circuit area.',-45.82,-44.61,169.77,171.24,0);
INSERT INTO "extent" VALUES('EPSG','3797','New Zealand - South Island - Mount Nicholas mc','New Zealand - South Island - Mount Nicholas meridional circuit area.',-45.58,-44.29,167.72,169.11,0);
INSERT INTO "extent" VALUES('EPSG','3798','New Zealand - South Island - North Taieri mc','New Zealand - South Island - North Taieri meridional circuit area.',-46.73,-45.23,168.64,170.87,0);
INSERT INTO "extent" VALUES('EPSG','3799','New Zealand - South Island - Mount York mc','New Zealand - South Island - Mount York meridional circuit area.',-46.33,-44.53,166.37,168.21,0);
INSERT INTO "extent" VALUES('EPSG','3800','New Zealand - South and Stewart Islands - Bluff mc','New Zealand - Stewart Island; South Island - Bluff meridional circuit area.',-47.33,-45.33,167.29,168.97,0);
INSERT INTO "extent" VALUES('EPSG','3801','New Zealand - South Island - Bluff vcrs','New Zealand - South Island - Bluff vertical CRS area.',-46.71,-46.26,168.01,168.86,0);
INSERT INTO "extent" VALUES('EPSG','3802','New Zealand - South Island - Nelson vcrs','New Zealand - South Island - north of approximately 42°20''S - Nelson vertical CRS area.',-42.44,-40.44,171.82,174.46,0);
INSERT INTO "extent" VALUES('EPSG','3803','New Zealand - South Island - Dunedin vcrs','New Zealand - South Island - between approximately 44°S and 46°S - Dunedin vertical CRS area.',-46.4,-43.82,167.73,171.28,0);
INSERT INTO "extent" VALUES('EPSG','3804','New Zealand - South Island - Lyttleton vcrs','New Zealand - South Island - between approximately 41°20''S and 45°S - Lyttleton vertical CRS area.',-44.92,-41.6,168.95,173.77,0);
INSERT INTO "extent" VALUES('EPSG','3805','Bonaire, St Eustatius and Saba','Bonaire, St Eustatius and Saba - onshore and offshore.',11.66,17.96,-69.09,-62.76,0);
INSERT INTO "extent" VALUES('EPSG','3806','New Zealand - South Island - Dunedin-Bluff vcrs','New Zealand - South Island - Dunedin-Bluff vertical CRS area.',-46.73,-44.52,166.37,169.95,0);
INSERT INTO "extent" VALUES('EPSG','3807','Curacao','Curaçao - onshore and offshore.',11.66,15.35,-69.55,-68.54,0);
INSERT INTO "extent" VALUES('EPSG','3808','Brazil - 36°W to 30°W offshore','Brazil - offshore between 36°W and 30°W, southern hemisphere.',-20.11,0.0,-36.0,-30.0,0);
INSERT INTO "extent" VALUES('EPSG','3809','St Maarten','Sint Maarten - onshore and offshore.',17.81,18.07,-63.3,-62.92,0);
INSERT INTO "extent" VALUES('EPSG','3810','Caribbean - St Maarten, St Eustatius and Saba - onshore','Caribbean - St Maarten, St Eustatius and Saba - onshore.',17.41,18.07,-63.31,-62.88,0);
INSERT INTO "extent" VALUES('EPSG','3811','Chile - 72°W to 66°W','Chile - 72°W to 66°W, onshore and offshore.',-59.87,-17.5,-72.0,-66.0,0);
INSERT INTO "extent" VALUES('EPSG','3812','Nigeria - offshore deep water - east of 6°E','Nigeria - offshore deep water - east of 6°E.',2.61,3.68,6.0,7.82,0);
INSERT INTO "extent" VALUES('EPSG','3813','Nigeria - offshore blocks OPL 209, 219 and 220','Nigeria - offshore blocks OPL 209, 219 and 220.',3.25,5.54,4.01,6.96,0);
INSERT INTO "extent" VALUES('EPSG','3814','Nigeria - offshore blocks OML 99-102 and OPL 222 and 223','Nigeria - offshore blocks OML 99-102 and OPL 222 and 223.',3.25,4.51,7.16,8.25,0);
INSERT INTO "extent" VALUES('EPSG','3815','Nigeria - offshore blocks OPL 209-213 and 316','Nigeria - offshore blocks OPL 209-213 and 316.',4.22,6.31,3.83,5.17,0);
INSERT INTO "extent" VALUES('EPSG','3816','Nigeria - offshore blocks OPL 217-223','Nigeria - offshore blocks OPL 217-223.',3.24,3.86,5.58,8.0,0);
INSERT INTO "extent" VALUES('EPSG','3817','Nigeria - offshore blocks OPL 210, 213, 217 and 218','Nigeria - offshore blocks OPL 210, 213, 217 and 218.',3.24,5.54,4.41,6.29,0);
INSERT INTO "extent" VALUES('EPSG','3818','New Zealand - North Island - Tararu vcrs','New Zealand - North Island - Tararu vertical CRS area.',-37.21,-36.78,175.44,175.99,0);
INSERT INTO "extent" VALUES('EPSG','3819','Nigeria - offshore blocks OPL 215 and 221','Nigeria - offshore blocks OPL 215 and 221.',3.25,4.23,5.02,7.31,0);
INSERT INTO "extent" VALUES('EPSG','3820','Bonaire - St Eustatius and Saba','Bonaire, St Eustatius and Saba - St Eustatius and Saba - onshore and offshore.',16.68,17.96,-64.02,-62.76,0);
INSERT INTO "extent" VALUES('EPSG','3821','Bonaire','Bonaire, St Eustatius and Saba - Bonaire - onshore and offshore.',11.66,15.3,-69.09,-67.98,0);
INSERT INTO "extent" VALUES('EPSG','3822','Bonaire - onshore','Bonaire, St Eustatius and Saba - Bonaire - onshore.',11.97,12.36,-68.47,-68.14,0);
INSERT INTO "extent" VALUES('EPSG','3823','Curacao - onshore','Curaçao - onshore.',11.99,12.44,-69.22,-68.69,0);
INSERT INTO "extent" VALUES('EPSG','3824','Nigeria - Gongola Basin','Nigeria - onshore - Gongola Basin',8.78,11.63,9.41,12.13,0);
INSERT INTO "extent" VALUES('EPSG','3825','Caribbean - French Antilles west of 60°W','French Antilles onshore and offshore west of 60°W - Guadeloupe (including <NAME>, <NAME>, <NAME>, Les Saintes, Iles de la Petite Terre, La Desirade, St Barthélemy, and northern St Martin) and Martinique.',14.08,18.32,-63.66,-60.0,0);
INSERT INTO "extent" VALUES('EPSG','3826','Uruguay - west of 54°W','Uruguay - west of 54°W, onshore and offshore.',-36.63,-30.09,-58.49,-54.0,0);
INSERT INTO "extent" VALUES('EPSG','3827','Bolivia - west of 66°W','Bolivia - west of 66°W.',-22.91,-9.77,-69.66,-66.0,0);
INSERT INTO "extent" VALUES('EPSG','3828','Uruguay - east of 54°W','Uruguay - east of 54°W, onshore and offshore.',-37.77,-31.9,-54.0,-50.01,0);
INSERT INTO "extent" VALUES('EPSG','3829','Chile - 78°W to 72°W','Chile - 78°W to 72°W, onshore and offshore.',-59.36,-18.35,-78.0,-71.99,0);
INSERT INTO "extent" VALUES('EPSG','3830','South America - 84°W to 78°W, N hemisphere and SAD69 by country','South America between 84°W and 78°W, northern hemisphere, onshore.',0.0,2.7,-80.18,-78.0,0);
INSERT INTO "extent" VALUES('EPSG','3831','South America - 84°W to 78°W, S hemisphere and SAD69 by country','South America between 84°W and 78°W, southern hemisphere, onshore.',-10.53,0.0,-81.41,-78.0,0);
INSERT INTO "extent" VALUES('EPSG','3832','South America - 78°W to 72°W, N hemisphere and SAD69 by country','South America between 78°W and 72°W, northern hemisphere, onshore.',0.0,12.31,-78.0,-72.0,0);
INSERT INTO "extent" VALUES('EPSG','3833','South America - 78°W to 72°W, S hemisphere and SAD69 by country','Brazil - west of 72°W. In rest of South America between 78°W and 72°W, southern hemisphere onshore north of 45°S.',-45.0,0.0,-78.0,-71.99,0);
INSERT INTO "extent" VALUES('EPSG','3834','South America - 72°W to 66°W, N hemisphere onshore','South America between 72°W and 66°W, northern hemisphere, onshore, but excluding the area between approximately 0°N, 70°W to 2°N, 70°W to 2°N, 66°W.',0.0,12.52,-72.0,-66.0,0);
INSERT INTO "extent" VALUES('EPSG','3835','South America - 72°W to 66°W, S hemisphere onshore','Brazil - between 72°W and 66°W, northern and southern hemispheres. In rest of South America between 72°W and 66°W, southern hemisphere onshore north of 45°S.',-45.0,2.15,-72.0,-65.99,0);
INSERT INTO "extent" VALUES('EPSG','3836','Peru - east of 72°W','Peru - east of 72°W, onshore and offshore.',-20.44,-2.14,-72.0,-68.67,0);
INSERT INTO "extent" VALUES('EPSG','3837','Peru - 84°W to 78°W','Peru - between 84°W and 78°W, onshore and offshore.',-17.33,-3.11,-84.0,-78.0,0);
INSERT INTO "extent" VALUES('EPSG','3838','Peru - 78°W to 72°W','Peru - between 78°W and 72°W, onshore and offshore.',-21.05,-0.03,-78.0,-72.0,0);
INSERT INTO "extent" VALUES('EPSG','3839','South America - 66°W to 60°W, N hemisphere and SAD69 by country','South America between 66°W and 60°W, northern hemisphere, onshore, but excluding most of the area south of 4°N.',0.64,11.23,-66.0,-59.99,0);
INSERT INTO "extent" VALUES('EPSG','3840','South America - 66°W to 60°W, S hemisphere and SAD69 by country','Brazil - between 66°W and 60°W, northern and southern hemispheres. In rest of South America between 66°W and 60°W, southern hemisphere onshore.',-45.0,5.28,-66.0,-59.99,0);
INSERT INTO "extent" VALUES('EPSG','3841','South America - 60°W to 54°W, N hemisphere and SAD69 by country','South America between 60°W and 54°W, northern hemisphere onshore, but excluding most of the area south of approximately 2°N.',1.18,8.6,-60.0,-54.0,0);
INSERT INTO "extent" VALUES('EPSG','3842','Brazil - east of 30°W','Brazil - east of 30°W, northern and southern hemispheres, onshore and offshore.',-23.86,4.26,-30.0,-25.28,0);
INSERT INTO "extent" VALUES('EPSG','3843','Argentina - mainland onshore and offshore TdF','Argentina - mainland onshore and Atlantic offshore Tierra del Fuego.',-54.93,-21.78,-73.59,-53.65,0);
INSERT INTO "extent" VALUES('EPSG','3844','Nicaragua - onshore north of 12°48''N','Nicaragua - onshore north of 12°48''N.',12.8,15.03,-87.74,-83.08,0);
INSERT INTO "extent" VALUES('EPSG','3845','Brazil - SAD69','Brazil - onshore southeast of a line beginning at the intersection of the 54°W meridian with the northern national boundary then running southwards to 5°S, 54°W, southwestwards to 10°S, 60°W, and southwards to the national boundary. Offshore within 370km of the mainland.',-35.71,7.04,-60.57,-29.03,1);
INSERT INTO "extent" VALUES('EPSG','3846','Greenland - southwest coast south of 63°N','Greenland - onshore southwest coastal area south of 63°N.',59.74,63.0,-50.72,-42.52,0);
INSERT INTO "extent" VALUES('EPSG','3847','Nicaragua - onshore south of 12°48''N','Nicaragua - onshore south of 12°48''N.',10.7,12.8,-87.63,-83.42,0);
INSERT INTO "extent" VALUES('EPSG','3848','Honduras - onshore north of 14°38''30"N','Honduras - onshore north of 14°38''30"N.',14.64,16.49,-89.23,-83.08,0);
INSERT INTO "extent" VALUES('EPSG','3849','Costa Rica - onshore and offshore east of 86°30''W','Costa Rica - onshore and offshore east of 86°30''W.',2.21,11.77,-86.5,-81.43,0);
INSERT INTO "extent" VALUES('EPSG','3850','Honduras - onshore south of 14°38''30"N','Honduras - onshore south of 14°38''30"N.',12.98,14.65,-89.36,-84.4,0);
INSERT INTO "extent" VALUES('EPSG','3851','Brazil - 36°W to 30°W SAD69','Brazil - between 36°W and 30°W, northern and southern hemispheres, onshore and offshore within 370km of the mainland.',-20.1,-0.49,-36.0,-30.0,1);
INSERT INTO "extent" VALUES('EPSG','3852','USA - 120°W to 114°W onshore','United States (USA) - between 120°W and 114°W - onshore - Arizona; California; Idaho; Montana; Nevada; Oregon; Utah; Washington.',32.26,49.01,-120.0,-114.0,0);
INSERT INTO "extent" VALUES('EPSG','3853','Antarctica - McMurdo Sound region','Antarctica - McMurdo Sound region.',-81.0,-76.0,153.0,173.0,0);
INSERT INTO "extent" VALUES('EPSG','3854','Antarctica - Borchgrevink Coast region','Antarctica - Borchgrevink Coast region.',-76.0,-73.0,157.0,173.0,0);
INSERT INTO "extent" VALUES('EPSG','3855','Antarctica - Pennell Coast region','Antarctica - Pennell Coast region.',-73.0,-69.5,160.0,172.0,0);
INSERT INTO "extent" VALUES('EPSG','3856','Antarctica - Ross Ice Shelf Region','Antarctica - Ross Ice Shelf Region.',-90.0,-76.0,150.0,-150.0,0);
INSERT INTO "extent" VALUES('EPSG','3857','USA - 126°W to 120°W onshore','United States (USA) - between 126°W and 120°W - onshore - California; Oregon; Washington.',33.85,49.05,-124.79,-119.99,0);
INSERT INTO "extent" VALUES('EPSG','3858','Venezuela - east of 66°W','Venezuela - east of 66°W, onshore and offshore.',0.64,16.75,-66.0,-58.95,0);
INSERT INTO "extent" VALUES('EPSG','3859','Venezuela - 72°W and 66°W','Venezuela - between 72°W and 66°W, onshore and offshore.',0.73,15.64,-72.0,-66.0,0);
INSERT INTO "extent" VALUES('EPSG','3860','USA - 102°W to 96°W onshore','United States (USA) - between 102°W and 96°W - onshore - Iowa; Kansas; Minnesota; Nebraska; North Dakota; Oklahoma; South Dakota; Texas.',25.83,49.01,-102.0,-95.99,0);
INSERT INTO "extent" VALUES('EPSG','3861','USA - 96°W to 90°W onshore','United States (USA) - between 96°W and 90°W - onshore - Arkansas; Illinois; Iowa; Kansas; Louisiana; Michigan; Minnesota; Mississippi; Missouri; Nebraska; Oklahoma; Tennessee; Texas; Wisconsin.',28.42,49.38,-96.0,-89.99,0);
INSERT INTO "extent" VALUES('EPSG','3862','USA - 90°W to 84°W onshore','United States (USA) - between 90°W and 84°W - onshore - Alabama; Arkansas; Florida; Georgia; Indiana; Illinois; Kentucky; Louisiana; Michigan; Minnesota; Mississippi; Missouri; North Carolina; Ohio; Tennessee; Wisconsin.',28.85,48.32,-90.0,-83.99,0);
INSERT INTO "extent" VALUES('EPSG','3863','USA - 84°W to 78°W onshore','United States (USA) - between 84°W and 78°W - onshore - Florida; Georgia; Maryland; Michigan; New York; North Carolina; Ohio; Pennsylvania; South Carolina; Tennessee; Virginia; West Virginia.',24.41,46.13,-84.01,-78.0,0);
INSERT INTO "extent" VALUES('EPSG','3864','North America - 126°W to 120°W and NAD83 by country','North America - between 126°W and 120°W - onshore and offshore. Canada - British Columbia; Northwest Territories; Yukon. United States (USA) - California; Oregon; Washington.',30.54,81.8,-126.0,-119.99,0);
INSERT INTO "extent" VALUES('EPSG','3865','Canada - Labrador - 66°W to 63°W','Canada - Labrador - 66°W to 63°W.',51.58,60.52,-66.0,-63.0,0);
INSERT INTO "extent" VALUES('EPSG','3866','North America - 132°W to 126°W and NAD83 by country','North America - between 132°W and 126°W - onshore and offshore. Canada - British Columbia; Northwest Territories; Yukon. United States (USA) - Alaska.',35.38,80.93,-132.0,-126.0,0);
INSERT INTO "extent" VALUES('EPSG','3867','North America - 138°W to 132°W and NAD83 by country','North America - between 138°W and 132°W - onshore and offshore. Canada - British Columbia; Northwest Territiories; Yukon. United States (USA) - Alaska.',48.06,79.42,-138.0,-132.0,0);
INSERT INTO "extent" VALUES('EPSG','3868','USA - 78°W to 72°W onshore','United States (USA) - between 78°W and 72°W - onshore - Connecticut; Delaware; Maryland; Massachusetts; New Hampshire; New Jersey; New York; North Carolina; Pennsylvania; Virginia; Vermont.',33.84,45.03,-78.0,-72.0,0);
INSERT INTO "extent" VALUES('EPSG','3869','Costa Rica - onshore north of 9°32''N','Costa Rica - onshore north of 9°32''N.',9.53,11.22,-85.97,-82.53,0);
INSERT INTO "extent" VALUES('EPSG','3870','Costa Rica - onshore south of 9°56''N','Costa Rica - onshore south of 9°56''N',7.98,9.94,-85.74,-82.53,0);
INSERT INTO "extent" VALUES('EPSG','3871','USA - 72°W to 66°W onshore','United States (USA) - between 72°W and 66°W - onshore - Connecticut; Maine; Massachusetts; New Hampshire; New York (Long Island); Rhode Island; Vermont.',40.96,47.47,-72.0,-66.91,0);
INSERT INTO "extent" VALUES('EPSG','3872','North America - 144°W to 138°W and NAD83 by country','North America - between 144°W and 138°W - onshore and offshore. Canada - British Columbia; Yukon. United States (USA) - Alaska.',52.05,73.59,-144.0,-137.99,0);
INSERT INTO "extent" VALUES('EPSG','3873','Spain - Canary Islands onshore','Spain - Canary Islands onshore.',27.58,29.47,-18.22,-13.37,0);
INSERT INTO "extent" VALUES('EPSG','3874','Brazil - Corrego Alegre 1961','Brazil - onshore - between 18°S and 27°30''S, also east of 54°W between 15°S and 18°S.',-27.5,-14.99,-58.16,-38.82,0);
INSERT INTO "extent" VALUES('EPSG','3875','Canada - Labrador - 63°W to 60°W','Canada - Labrador between 63°W and 60°W.',52.0,58.92,-63.0,-60.0,0);
INSERT INTO "extent" VALUES('EPSG','3876','Central America - Guatemala to Costa Rica','Costa Rica; El Salvador; Guatemala; Honduras; Nicaragua.',7.98,17.83,-92.29,-82.53,0);
INSERT INTO "extent" VALUES('EPSG','3877','Brazil - 42°W to 36°W and south of 15°S onshore','Brazil - between 42°W and 36°W and south of 15°S, onshore.',-22.96,-14.99,-42.0,-38.82,0);
INSERT INTO "extent" VALUES('EPSG','3878','Brazil - 54°W to 48°W and SAD69','Brazil - onshore and offshore northern and southern hemispheres between 54°W and 48°W.',-35.71,7.04,-54.01,-47.99,0);
INSERT INTO "extent" VALUES('EPSG','3879','Germany - onshore east of 12°E','Germany - onshore east of 12°E.',47.46,54.74,12.0,15.04,0);
INSERT INTO "extent" VALUES('EPSG','3880','Canada - Labrador - west of 66°W','Canada - Labrador - west of 66°W.',52.05,55.34,-67.81,-66.0,0);
INSERT INTO "extent" VALUES('EPSG','3881','Brazil - 60°W to 54°W','Brazil - between 60°W and 54°W, northern and southern hemispheres.',-31.91,4.51,-60.0,-53.99,0);
INSERT INTO "extent" VALUES('EPSG','3882','Papua New Guinea - west of 144°E','Papua New Guinea - west of 144°E, onshore and offshore.',-11.15,2.31,139.2,144.0,0);
INSERT INTO "extent" VALUES('EPSG','3883','USA - Hawaii - main islands','United States (USA) - Hawaii - main islands onshore and offshore.',15.56,25.58,-163.74,-151.27,0);
INSERT INTO "extent" VALUES('EPSG','3884','Brazil - SAD69 onshore south of 4°30''S','Brazil - onshore southeast of a line beginning at the intersection of the coast with the 4°30''S parallel, then westwards to 4°30''S, 54°W, then southwards to 5°S, 54°W, southwestwards to 10°S, 60°W, and southwards to the national boundary.',-33.78,-4.5,-60.57,-34.74,1);
INSERT INTO "extent" VALUES('EPSG','3885','Papua New Guinea - 144°E to 150°E','Papua New Guinea - between 144°E and 150°E, onshore and offshore.',-13.88,2.58,144.0,150.01,0);
INSERT INTO "extent" VALUES('EPSG','3886','Finland - onshore west of 19.5°E','Finland - onshore west of 19°30''E.',60.0,60.42,19.3,19.5,1);
INSERT INTO "extent" VALUES('EPSG','3887','Brazil - onshore south of 14°S and east of 53°W','Brazil - onshore southeast of a line beginning at the intersection of the 53°W meridian with the northern national boundary then running southwards to 14°S, then westwards to the national boundary.',-33.78,4.43,-60.58,-34.74,0);
INSERT INTO "extent" VALUES('EPSG','3888','Papua New Guinea - 150°E to 156°E','Papua New Guinea - between 150°E and 156°E, onshore and offshore.',-14.75,1.98,150.0,156.0,0);
INSERT INTO "extent" VALUES('EPSG','3889','Europe - Fehmarnbelt outer','Fehmarnbelt area of Denmark and Germany.',54.33,54.83,10.66,12.01,0);
INSERT INTO "extent" VALUES('EPSG','3890','Europe - Fehmarnbelt inner','Fehmarnbelt area of Denmark and Germany.',54.42,54.76,11.17,11.51,0);
INSERT INTO "extent" VALUES('EPSG','3891','Canada - 60°W to 54°W and NAD27','Canada between 60°W and 54°W, onshore and offshore - Newfoundland and Labrador; Quebec.',40.57,68.93,-60.0,-54.0,0);
INSERT INTO "extent" VALUES('EPSG','3892','Germany - offshore North Sea west of 4.5°E','Germany - offshore North Sea west of 4°30''E.',55.24,55.92,3.34,4.5,0);
INSERT INTO "extent" VALUES('EPSG','3893','UK - Wytch Farm','United Kingdom (UK) - Wytch Farm area - onshore and offshore.',50.53,50.8,-2.2,-1.68,0);
INSERT INTO "extent" VALUES('EPSG','3894','New Zealand - Chatham Island onshore','New Zealand - Chatham Island - onshore.',-44.18,-43.67,-176.92,-176.2,0);
INSERT INTO "extent" VALUES('EPSG','3895','Ukraine - west of 24°E','Ukraine - west of 24°E.',47.95,51.66,22.15,24.0,0);
INSERT INTO "extent" VALUES('EPSG','3896','Brazil - equatorial margin','Brazil - offshore - equatorial margin.',-5.74,7.04,-51.64,-32.43,0);
INSERT INTO "extent" VALUES('EPSG','3897','France - offshore Mediterranean','France - offshore Mediterranean.',41.15,43.74,3.04,10.38,0);
INSERT INTO "extent" VALUES('EPSG','3898','Ukraine - 24°E to 30°E','Ukraine - between 24°E and 30°E, onshore and offshore.',45.1,51.96,24.0,30.0,0);
INSERT INTO "extent" VALUES('EPSG','3899','Europe - South Permian basin','Europe - South Permian basin.',50.5,56.0,-1.67,22.0,0);
INSERT INTO "extent" VALUES('EPSG','3900','Europe - onshore - eastern - S-42(83)','Onshore Bulgaria, Czechia, Germany (former DDR), Hungary and Slovakia.',41.24,54.74,9.92,28.68,0);
INSERT INTO "extent" VALUES('EPSG','3901','Germany - onshore west of 6°E','Germany - onshore west of 6°E.',50.97,51.83,5.87,6.0,0);
INSERT INTO "extent" VALUES('EPSG','3902','Reunion','Reunion - onshore and offshore.',-24.72,-18.28,51.83,58.24,0);
INSERT INTO "extent" VALUES('EPSG','3903','Ukraine - 30°E to 36°E','Ukraine - between 30°E and 36°E, onshore and offshore.',43.18,52.38,30.0,36.0,0);
INSERT INTO "extent" VALUES('EPSG','3904','Germany - onshore between 6°E and 12°E','Germany - onshore between 6°E and 12°E.',47.27,55.09,6.0,12.0,0);
INSERT INTO "extent" VALUES('EPSG','3905','Ukraine - east of 36°E','Ukraine - east of 36°E, onshore and offshore.',43.43,50.44,36.0,40.18,0);
INSERT INTO "extent" VALUES('EPSG','3906','Ukraine - west of 22.5°E','Ukraine - west of 22°30''E.',48.24,48.98,22.15,22.5,0);
INSERT INTO "extent" VALUES('EPSG','3907','Ukraine - 22.5°E to 25.5°E','Ukraine - between 22°30''E and 25°30''E.',47.71,51.96,22.5,25.5,0);
INSERT INTO "extent" VALUES('EPSG','3908','Ukraine - 25.5°E to 28.5°E','Ukraine - between 25°30''E and 28°30''E.',45.26,51.94,25.5,28.5,0);
INSERT INTO "extent" VALUES('EPSG','3909','Ukraine - 28.5°E to 31.5°E','Ukraine - between 28°30''E and 31°30''E, onshore and offshore.',43.42,52.12,28.5,31.5,0);
INSERT INTO "extent" VALUES('EPSG','3910','Ukraine - 31.5°E to 34.5°E','Ukraine - between 31°30''E and 34°30''E, onshore and offshore.',43.18,52.38,31.5,34.5,0);
INSERT INTO "extent" VALUES('EPSG','3911','Reunion - east of 54°E','Reunion - onshore and offshore - east of 54°E.',-24.72,-18.28,54.0,58.24,0);
INSERT INTO "extent" VALUES('EPSG','3912','Ukraine - 34.5°E to 37.5°E','Ukraine - between 34°30''E and 37°30''E, onshore and offshore.',43.24,51.25,34.5,37.5,0);
INSERT INTO "extent" VALUES('EPSG','3913','Ukraine - east of 37.5°E','Ukraine - east of 37°30''E.',46.77,50.39,37.5,40.18,0);
INSERT INTO "extent" VALUES('EPSG','3914','World - N hemisphere - 3°E to 9°E - by country','France - offshore Mediterranean including area east of 9°E. Nigeria - offshore including area west of 3°E.',1.92,43.74,2.66,10.38,0);
INSERT INTO "extent" VALUES('EPSG','3915','Reunion - west of 54°E','Reunion - offshore - west of 54°E.',-24.37,-18.52,51.83,54.0,0);
INSERT INTO "extent" VALUES('EPSG','3916','French Southern Territories - Amsterdam onshore','French Southern Territories - Amsterdam Island onshore.',-37.93,-37.74,77.45,77.67,0);
INSERT INTO "extent" VALUES('EPSG','3917','Algeria - Ahnet licence area','Algeria - Ahnet licence area.',26.06,27.51,1.26,2.92,0);
INSERT INTO "extent" VALUES('EPSG','3918','French Southern Territories - Kerguelen','French Southern Territories - Kerguelen onshore and offshore.',-53.24,-45.11,62.96,75.66,0);
INSERT INTO "extent" VALUES('EPSG','3919','French Southern Territories - Crozet','French Southern Territories - Crozet onshore and offshore.',-49.82,-42.61,45.37,57.16,0);
INSERT INTO "extent" VALUES('EPSG','3920','French Southern Territories - Crozet onshore','French Southern Territories - Crozet onshore.',-46.53,-45.87,50.09,52.36,0);
INSERT INTO "extent" VALUES('EPSG','3921','French Southern Territories - Amsterdam & St Paul','French Southern Territories - Amsterdam & St Paul islands onshore and offshore.',-42.08,-34.47,73.24,81.83,0);
INSERT INTO "extent" VALUES('EPSG','3922','French Southern Territories - St Paul onshore','French Southern Territories - St Paul Island onshore.',-38.79,-38.63,77.44,77.63,0);
INSERT INTO "extent" VALUES('EPSG','3923','French Southern Territories - Tromelin','French Southern Territories - Tromelin onshore and offshore.',-18.69,-12.59,52.45,57.18,0);
INSERT INTO "extent" VALUES('EPSG','3924','French Southern Territories - Tromelin onshore','French Southern Territories - Tromelin onshore.',-15.96,-15.82,54.46,54.6,0);
INSERT INTO "extent" VALUES('EPSG','3925','French Southern Territories - Glorieuses','French Southern Territories - Glorieuses onshore and offshore.',-12.8,-10.65,45.76,48.49,0);
INSERT INTO "extent" VALUES('EPSG','3926','French Southern Territories - Glorieuses onshore','French Southern Territories - Glorieuses onshore.',-11.63,-11.5,47.22,47.36,0);
INSERT INTO "extent" VALUES('EPSG','3927','French Southern Territories - Juan de Nova','French Southern Territories - Juan de Nova onshore and offshore.',-19.21,-15.35,40.94,43.46,0);
INSERT INTO "extent" VALUES('EPSG','3928','Sudan - onshore','Sudan - onshore.',8.64,22.24,21.82,38.66,0);
INSERT INTO "extent" VALUES('EPSG','3929','Mozambique - west of 36°E','Mozambique - west of 36°E, onshore and offshore.',-27.58,-11.41,30.21,36.0,0);
INSERT INTO "extent" VALUES('EPSG','3930','French Southern Territories - Juan de Nova onshore','French Southern Territories - Juan de Nova onshore.',-17.13,-17.0,42.67,42.82,0);
INSERT INTO "extent" VALUES('EPSG','3931','Mozambique - 36°E to 42°E','Mozambique - between 36°E and 42°E, onshore and offshore.',-27.71,-10.09,36.0,42.0,0);
INSERT INTO "extent" VALUES('EPSG','3932','French Southern Territories - Bassas da India','French Southern Territories - Bassas da India onshore and offshore.',-23.21,-19.07,37.55,41.59,0);
INSERT INTO "extent" VALUES('EPSG','3933','French Southern Territories - Bassas da India onshore','French Southern Territories - Bassas da India onshore.',-21.58,-21.37,39.57,39.82,0);
INSERT INTO "extent" VALUES('EPSG','3934','French Southern Territories - Europa','French Southern Territories - Europa onshore and offshore.',-25.7,-20.91,37.98,41.82,0);
INSERT INTO "extent" VALUES('EPSG','3935','Mozambique - east of 42°E','Mozambique - offshore east of 42°E.',-15.83,-10.09,42.0,43.03,0);
INSERT INTO "extent" VALUES('EPSG','3936','French Southern Territories - Europa onshore','French Southern Territories - Europa onshore.',-22.46,-22.27,40.26,40.46,0);
INSERT INTO "extent" VALUES('EPSG','3937','Congo DR (Zaire) - 11°E to 13°E','The Democratic Republic of the Congo (Zaire) - west of 13°E onshore and offshore.',-6.04,-4.67,11.79,13.0,0);
INSERT INTO "extent" VALUES('EPSG','3938','Mauritania - 18°W to 12°W','Mauritania - 18°W to 12°W, onshore and offshore.',14.72,23.46,-18.0,-12.0,0);
INSERT INTO "extent" VALUES('EPSG','3939','Mauritania - 12°W to 6°W','Mauritania - between 12°W and 6°W, onshore and offshore.',14.73,27.31,-12.0,-6.0,1);
INSERT INTO "extent" VALUES('EPSG','3940','Mauritania - east of 6°W','Mauritania - east of 6°W, onshore and offshore.',14.73,27.31,-6.0,0.0,1);
INSERT INTO "extent" VALUES('EPSG','3941','Libya - east of 24°E','Libya - east of 24°E, onshore and offshore.',19.99,33.6,24.0,26.21,0);
INSERT INTO "extent" VALUES('EPSG','3942','South Sudan','South Sudan.',3.49,12.22,24.14,35.94,0);
INSERT INTO "extent" VALUES('EPSG','3943','Bahrain - onshore','Bahrain - onshore.',25.53,26.34,50.39,50.85,0);
INSERT INTO "extent" VALUES('EPSG','3944','China - 102°E to 108°E','China - onshore and offshore between 102°E and 108°E.',17.75,42.47,102.0,108.0,0);
INSERT INTO "extent" VALUES('EPSG','3945','China - 108°E to 114°E','China - onshore and offshore between 108°E and 114°E.',16.7,45.11,108.0,114.0,0);
INSERT INTO "extent" VALUES('EPSG','3946','China - 114°E to 120°E','China - onshore and offshore between 114°E and 120°E.',19.02,51.52,114.0,120.0,0);
INSERT INTO "extent" VALUES('EPSG','3947','China - 120°E to 126°E','China - onshore and offshore between 120°E and 126°E.',24.64,53.56,120.0,126.0,0);
INSERT INTO "extent" VALUES('EPSG','3948','China - 126°E to 132°E','China - onshore and offshore between 126°E and 132°E.',29.7,52.79,126.0,132.0,0);
INSERT INTO "extent" VALUES('EPSG','3949','Libya - west of 12°E','Libya - west of 12°E, onshore and offshore.',23.51,33.92,9.31,12.0,0);
INSERT INTO "extent" VALUES('EPSG','3950','Libya - 12°E to 18°E','Libya - between 12°E and 18°E, onshore and offshore.',22.51,35.23,12.0,18.0,0);
INSERT INTO "extent" VALUES('EPSG','3951','Libya - 18°E to 24°E','Libya - between 18°E and 24°E, onshore and offshore.',19.5,35.03,17.99,24.01,0);
INSERT INTO "extent" VALUES('EPSG','3952','Algeria - 6°W to 0°W','Algeria - between 6°W and 0°W (of Greenwich), onshore and offshore.',21.82,37.01,-6.0,0.0,0);
INSERT INTO "extent" VALUES('EPSG','3953','Algeria - 0°E to 6°E','Algeria - between 0°E and 6°E (of Greenwich), onshore and offshore.',18.97,38.77,0.0,6.01,0);
INSERT INTO "extent" VALUES('EPSG','3954','Algeria - east of 6°E','Algeria - east of 6°E (of Greenwich), onshore and offshore.',19.6,38.8,6.0,11.99,0);
INSERT INTO "extent" VALUES('EPSG','3955','Malaysia - West Malaysia','Malaysia - West Malaysia onshore and offshore.',1.13,7.81,98.02,105.82,0);
INSERT INTO "extent" VALUES('EPSG','3956','Iraq - east of 48°E','Iraq - east of 48°E, onshore and offshore.',29.6,31.0,48.0,48.75,0);
INSERT INTO "extent" VALUES('EPSG','3957','Japan - onshore','Japan including outlying islands - onshore.',20.37,45.54,122.83,154.05,0);
INSERT INTO "extent" VALUES('EPSG','3958','Philippines - zone I onshore','Philippines - onshore west of 118°E.',7.75,9.32,116.89,118.0,0);
INSERT INTO "extent" VALUES('EPSG','3959','Japan - 120°E to 126°E','Japan - west of 126°E, onshore and offshore.',21.1,29.71,122.38,126.0,0);
INSERT INTO "extent" VALUES('EPSG','3960','Japan - 126°E to 132°E','Japan - between 126°E and 132°E, onshore and offshore.',21.12,38.63,126.0,132.0,0);
INSERT INTO "extent" VALUES('EPSG','3961','Japan - 132°E to 138°E','Japan - between 132°E and 138°E, onshore and offshore.',17.09,43.55,132.0,138.0,0);
INSERT INTO "extent" VALUES('EPSG','3962','Japan - 138°E to 144°E','Japan - between 138°E and 144°E, onshore and offshore.',17.63,46.05,138.0,144.0,0);
INSERT INTO "extent" VALUES('EPSG','3963','Japan - 144°E to 150°E','Japan - east of 144°E, onshore and offshore.',23.03,45.65,144.0,147.86,0);
INSERT INTO "extent" VALUES('EPSG','3964','Philippines - zone II onshore','Philippines - onshore approximately between 118°E and 120°E - Palawan; Calamian Islands.',8.82,11.58,118.0,120.07,0);
INSERT INTO "extent" VALUES('EPSG','3965','Philippines - zone III onshore','Philippines - onshore approximately between 120°E and 122°E. Luzon (west of 122°E); Mindoro.',4.99,19.45,119.7,122.21,0);
INSERT INTO "extent" VALUES('EPSG','3966','Philippines - zone IV onshore','Philippines - onshore approximately between 122°E and 124°E - southeast Luzon (east of 122°E); Tablas; Masbate; Panay; Cebu; Negros; northwest Mindanao (west of 124°E).',6.35,18.58,121.74,124.29,0);
INSERT INTO "extent" VALUES('EPSG','3967','Philippines - zone V onshore','Philippines - onshore approximately between 124°E and 126°E - east Mindanao (east of 124°E); Bohol; Samar.',5.5,14.15,123.73,126.65,0);
INSERT INTO "extent" VALUES('EPSG','3968','Saudi Arabia - onshore Gulf coast','Saudi Arabia - onshore Arabian Gulf coastal area.',24.63,28.57,47.95,50.81,0);
INSERT INTO "extent" VALUES('EPSG','3969','Philippines - onshore','Philippines - onshore.',4.99,19.45,116.89,126.65,0);
INSERT INTO "extent" VALUES('EPSG','3970','New Zealand - nearshore west of 168°E','New Zealand - nearshore west of 168°E.',-47.65,-42.59,165.87,168.0,0);
INSERT INTO "extent" VALUES('EPSG','3971','New Zealand - nearshore 168°E to 174°E','New Zealand - nearshore between 168°E and 174°E.',-47.64,-33.89,168.0,174.0,0);
INSERT INTO "extent" VALUES('EPSG','3972','New Zealand - nearshore east of 174°E','New Zealand - nearshore east of 174°E.',-44.13,-34.24,174.0,179.27,0);
INSERT INTO "extent" VALUES('EPSG','3973','New Zealand - onshore','New Zealand - North Island, South Island, Stewart Island - onshore.',-47.33,-34.1,166.37,178.63,0);
INSERT INTO "extent" VALUES('EPSG','3974','Cocos (Keeling) Islands','Cocos (Keeling) Islands - onshore and offshore.',-15.56,-8.47,93.41,100.34,0);
INSERT INTO "extent" VALUES('EPSG','3975','Indonesia - east of 138°E onshore','Indonesia - onshore east of 138°E.',-9.19,-1.49,138.0,141.01,0);
INSERT INTO "extent" VALUES('EPSG','3976','Indonesia - west of 96°E onshore','Indonesia - onshore west of 96°E.',2.55,5.97,95.16,96.0,0);
INSERT INTO "extent" VALUES('EPSG','3977','Malaysia - East Malaysia','Malaysia - East Malaysia (Sabah; Sarawak), onshore and offshore.',0.85,7.67,109.31,119.61,0);
INSERT INTO "extent" VALUES('EPSG','3978','Indonesia - 96°E to 102°E, N hemisphere onshore','Indonesia - onshore north of equator and between 96°E and 102°E.',0.0,5.42,96.0,102.0,0);
INSERT INTO "extent" VALUES('EPSG','3979','Indonesia - 102°E to 108°E, N hemisphere onshore','Indonesia - onshore north of equator and between 102°E and 108°E.',0.0,4.11,102.0,108.0,0);
INSERT INTO "extent" VALUES('EPSG','3980','Indonesia - 108°E to 114°E, N hemisphere onshore','Indonesia - onshore north of equator and between 108°E and 114°E.',0.0,4.25,108.0,114.0,0);
INSERT INTO "extent" VALUES('EPSG','3981','Indonesia - 114°E to 120°E, N hemisphere onshore','Indonesia - onshore north of equator and between 114°E and 120°E.',0.0,4.37,114.0,120.0,0);
INSERT INTO "extent" VALUES('EPSG','3982','Taiwan - onshore - mainland','Taiwan, Republic of China - onshore - Taiwan Island.',21.87,25.34,119.99,122.06,0);
INSERT INTO "extent" VALUES('EPSG','3983','Indonesia - 120°E to 126°E, N hemisphere onshore','Indonesia - onshore north of equator and between 120°E and 126°E.',0.0,3.84,120.0,125.71,0);
INSERT INTO "extent" VALUES('EPSG','3984','Indonesia - 126°E to 132°E, N hemisphere onshore','Indonesia - onshore north of equator and between 126°E and 132°E.',0.0,4.59,126.55,131.0,0);
INSERT INTO "extent" VALUES('EPSG','3985','Indonesia - 96°E to 102°E, S hemisphere onshore','Indonesia - onshore south of equator and between 96°E and 102°E.',-3.57,0.0,98.24,102.0,0);
INSERT INTO "extent" VALUES('EPSG','3986','Indonesia - 102°E to 108°E, S hemisphere onshore','Indonesia - onshore south of equator and between 102°E and 108°E.',-7.79,0.0,102.0,108.0,0);
INSERT INTO "extent" VALUES('EPSG','3987','Indonesia - 108°E to 114°E, S hemisphere onshore','Indonesia - onshore south of equator and between 108°E and 114°E.',-8.67,0.0,108.0,114.0,0);
INSERT INTO "extent" VALUES('EPSG','3988','Indonesia - 114°E to 120°E, S hemisphere onshore','Indonesia - onshore south of equator and between 114°E and 120°E.',-10.15,0.0,114.0,120.0,0);
INSERT INTO "extent" VALUES('EPSG','3989','Indonesia - 120°E to 126°E, S hemisphere onshore','Indonesia - onshore south of equator and between 120°E and 126°E.',-10.98,0.0,120.0,126.0,0);
INSERT INTO "extent" VALUES('EPSG','3990','Indonesia - 126°E to 132°E, S hemisphere onshore','Indonesia - onshore south of equator and between 126°E and 132°E.',-8.41,0.0,126.0,132.0,0);
INSERT INTO "extent" VALUES('EPSG','3991','Indonesia - 132°E to 138°E, S hemisphere onshore','Indonesia - onshore south of equator and between 132°E and 138°E.',-8.49,-0.29,132.0,138.0,0);
INSERT INTO "extent" VALUES('EPSG','3992','New Zealand - offshore 180°W to 174°W','New Zealand - offshore between 180°W and 174°W.',-52.97,-25.88,-180.0,-174.0,0);
INSERT INTO "extent" VALUES('EPSG','3993','Germany - onshore 7.5°E to 10.5°E','Germany - onshore between 7°30''E and 10°30''E.',47.27,55.09,7.5,10.51,0);
INSERT INTO "extent" VALUES('EPSG','3994','Madagascar','Madagascar - onshore and offshore.',-28.92,-10.28,40.31,53.39,0);
INSERT INTO "extent" VALUES('EPSG','3995','Japan - onshore mainland and adjacent islands','Japan - onshore mainland and adjacent islands.',30.18,45.54,128.31,145.87,0);
INSERT INTO "extent" VALUES('EPSG','3996','Germany - onshore 10.5°E to 13.5°E','Germany - onshore between 10°30''E and 13°30''E.',47.39,54.74,10.5,13.51,0);
INSERT INTO "extent" VALUES('EPSG','3997','Germany - East Germany - 10.5°E to 13.5°E onshore','Germany - states of former East Germany - onshore between 10°30''E and 13°30''E.',50.2,54.74,10.5,13.51,0);
INSERT INTO "extent" VALUES('EPSG','3998','Germany - onshore east of 13.5°E','Germany - onshore east of 13°30''E.',48.51,54.72,13.5,15.04,0);
INSERT INTO "extent" VALUES('EPSG','3999','Fiji','Fiji - onshore and offshore.',-25.09,-9.78,172.76,-176.27,0);
INSERT INTO "extent" VALUES('EPSG','4000','Germany - onshore 10.5°E to 12°E','Germany - onshore between 10°30''E and 12°E.',47.39,54.59,10.5,12.0,0);
INSERT INTO "extent" VALUES('EPSG','4001','Germany - onshore 12°E to 13.5°E','Germany - onshore between 12°E and 13°30''E.',47.46,54.74,12.0,13.51,0);
INSERT INTO "extent" VALUES('EPSG','4002','Yemen - east of 54°E','Yemen - east of 54°E, onshore and offshore.',8.95,14.95,54.0,57.96,0);
INSERT INTO "extent" VALUES('EPSG','4003','Germany - East Germany - east of 13.5°E onshore','Germany - states of former East Germany - onshore east of 13°30''E.',50.62,54.72,13.5,15.04,0);
INSERT INTO "extent" VALUES('EPSG','4004','Australia - Northern Territory mainland','Australia - Northern Territory mainland onshore.',-26.01,-10.92,128.99,138.0,0);
INSERT INTO "extent" VALUES('EPSG','4005','Indonesia - Kalimantan W - coastal','Indonesia - west Kalimantan - onshore coastal area.',0.06,2.13,108.79,109.78,0);
INSERT INTO "extent" VALUES('EPSG','4006','Yemen - west of 42°E','Yemen - west of 42°E, onshore and offshore.',14.73,16.36,41.08,42.0,0);
INSERT INTO "extent" VALUES('EPSG','4007','Asia - Cambodia and Vietnam - onshore & Cuu Long basin','Cambodia - onshore; Vietnam - onshore and offshore Cuu Long basin.',7.99,23.4,102.14,110.0,0);
INSERT INTO "extent" VALUES('EPSG','4008','Oman - mainland east of 54°E','Oman - mainland onshore east of 54°E.',16.89,26.42,54.0,59.91,0);
INSERT INTO "extent" VALUES('EPSG','4009','Oman - mainland','Oman - mainland onshore.',16.59,26.42,51.99,59.91,0);
INSERT INTO "extent" VALUES('EPSG','4010','Solomon Islands','Solomon Islands - onshore and offshore.',-16.13,-4.14,154.58,173.58,0);
INSERT INTO "extent" VALUES('EPSG','4011','Tuvalu - onshore','Tuvalu - onshore.',-8.62,-6.03,176.24,179.29,0);
INSERT INTO "extent" VALUES('EPSG','4012','Congo DR (Zaire) - Bas Congo east of 15°E','The Democratic Republic of the Congo (Zaire) - Bas Congo east of 15°E.',-5.87,-4.42,14.99,16.28,0);
INSERT INTO "extent" VALUES('EPSG','4013','Papua New Guinea - PFTB','Papua New Guinea - Papuan fold and thrust belt.',-8.28,-5.59,142.24,144.75,0);
INSERT INTO "extent" VALUES('EPSG','4014','Australia - Western Australia mainland','Australia - Western Australia mainland.',-35.19,-13.67,112.85,129.01,0);
INSERT INTO "extent" VALUES('EPSG','4015','Vietnam - mainland','Vietnam - mainland onshore.',8.33,23.4,102.14,109.53,0);
INSERT INTO "extent" VALUES('EPSG','4016','South America - onshore north of 45°S','South America - onshore north of 45°S excluding Amazonia.',-45.0,12.52,-81.41,-34.74,0);
INSERT INTO "extent" VALUES('EPSG','4017','Australia - SE Australia (ACT NSW)','Australia - Australian Capital Territory and New South Wales onshore.',-37.53,-28.15,140.99,153.69,0);
INSERT INTO "extent" VALUES('EPSG','4018','Congo DR (Zaire) - south and 29°E to 31°E','The Democratic Republic of the Congo (Zaire) - south of a line through Bandundu, Seke and Pweto and east of 29°E.',-13.46,-12.15,29.0,29.81,0);
INSERT INTO "extent" VALUES('EPSG','4019','Arctic - 87°N to 75°N, 156°W to 66°W','Arctic - 87°N to 75°N, approximately 156°W to approximately 66°W. May be extended westwards or eastwards within the latitude limits.',75.0,87.01,-156.0,-66.0,0);
INSERT INTO "extent" VALUES('EPSG','4020','Indonesia - onshore','Indonesia - onshore.',-10.98,5.97,95.16,141.01,0);
INSERT INTO "extent" VALUES('EPSG','4021','Australia - Queensland mainland','Australia - Queensland mainland onshore.',-29.19,-10.65,137.99,153.61,0);
INSERT INTO "extent" VALUES('EPSG','4022','UAE - Abu Dhabi and Dubai - onshore east of 54°E','United Arab Emirates (UAE) - Abu Dhabi onshore east of 54°E; Dubai onshore.',22.63,25.34,53.99,56.03,0);
INSERT INTO "extent" VALUES('EPSG','4023','Brazil - west of 72°W','Brazil - west of 72°W.',-10.01,-4.59,-74.01,-71.99,0);
INSERT INTO "extent" VALUES('EPSG','4024','Brazil - 72°W to 66°W','Brazil - between 72°W and 66°W, northern and southern hemispheres.',-11.14,2.15,-72.0,-65.99,0);
INSERT INTO "extent" VALUES('EPSG','4025','Angola - offshore north of 8°S','Angola - offshore north of 8°S - including blocks 0, 1, 2, 14, 15, 17, 18 north of 8°S and 32; onshore Soyo area.',-8.01,-5.05,10.41,12.84,0);
INSERT INTO "extent" VALUES('EPSG','4026','Brazil - 66°W to 60°W','Brazil - between 66°W and 60°W, northern and southern hemispheres.',-16.28,5.28,-66.0,-59.99,0);
INSERT INTO "extent" VALUES('EPSG','4027','Arctic - 87°N to 75°N, 84°W to 6°E','Arctic - 87°N to 75°N, approximately 84°W to approximately 6°E. May be extended westwards or eastwards within the latitude limits.',75.0,87.01,-84.0,6.01,0);
INSERT INTO "extent" VALUES('EPSG','4028','Arctic - 87°N to 75°N, 12°W to 78°E','Arctic - 87°N to 75°N, approximately 12°W to approximately 78°E. May be extended westwards or eastwards within the latitude limits.',75.0,87.01,-12.0,78.01,0);
INSERT INTO "extent" VALUES('EPSG','4029','Arctic - 87°N to 75°N, 60°E to 150°E','Arctic - 87°N to 75°N, approximately 60°E to approximately 150°E. May be extended westwards or eastwards within the latitude limits.',75.0,87.01,60.0,150.01,0);
INSERT INTO "extent" VALUES('EPSG','4030','Arctic - 84°30''N to 79°30''N, 135°W to 95°W','Arctic - between 84°30''N and 79°30''N, approximately 135°W to approximately 95°W. May be extended eastwards within the latitude limits.',79.5,84.51,-135.0,-95.0,0);
INSERT INTO "extent" VALUES('EPSG','4031','Arctic - 87°N to 75°N, 132°E to 138°W','Arctic - 87°N to 75°N, approximately 132°E to approximately 138°W. May be extended westwards or eastwards within the latitude limits.',75.0,87.01,132.0,-138.0,0);
INSERT INTO "extent" VALUES('EPSG','4032','Arctic - 79°N to 67°N, 156°W to 66°W','Arctic - 79°N to 67°N, approximately 156°W to approximately 66°W. May be extended westwards or eastwards within the latitude limits.',67.0,79.01,-156.0,-66.0,0);
INSERT INTO "extent" VALUES('EPSG','4033','Arctic - 79°N to 67°N, 84°W to 6°E','Arctic - 79°N to 67°N, approximately 84°W to approximately 6°E. May be extended westwards or eastwards within the latitude limits.',67.0,79.01,-84.0,6.01,0);
INSERT INTO "extent" VALUES('EPSG','4034','Arctic - 79°N to 67°N, 12°W to 78°E','Arctic - 79°N to 67°N, approximately 12°W to approximately 78°E. May be extended westwards or eastwards within the latitude limits.',67.0,79.01,-12.0,78.01,0);
INSERT INTO "extent" VALUES('EPSG','4035','Italy - Emilia-Romagna','Italy - Emilia-Romagna region.',43.73,45.14,9.19,12.76,0);
INSERT INTO "extent" VALUES('EPSG','4036','Arctic - 84°30''N to 79°30''N, 95°W to 55°W','Arctic - between 84°30''N and 79°30''N, approximately 95°W to approximately 55°W. May be extended westwards within the latitude limits.',79.5,84.51,-95.0,-55.0,0);
INSERT INTO "extent" VALUES('EPSG','4037','Arctic - 79°N to 67°N, 60°E to 150°E','Arctic - 79°N to 67°N, approximately 60°E to approximately 150°E. May be extended westwards or eastwards within the latitude limits.',67.0,79.01,60.0,150.01,0);
INSERT INTO "extent" VALUES('EPSG','4038','Arctic - 79°N to 67°N, 132°E to 138°W','Arctic - 79°N to 67°N, approximately 132°E to approximately 138°W. May be extended westwards or eastwards within the latitude limits.',67.0,79.01,132.0,-138.0,0);
INSERT INTO "extent" VALUES('EPSG','4039','Arctic - 84°30''N to 79°30''N, 72°W to 32°W','Arctic - between 84°30''N and 79°30''N, approximately 72°W to approximately 32°W. May be extended eastwards within the latitude limits.',79.5,84.51,-72.0,-32.0,0);
INSERT INTO "extent" VALUES('EPSG','4040','Arctic - 71°N to 59°N, 156°W to 66°W','Arctic - 71°N to 59°N, approximately 156°W to approximately 66°W. May be extended westwards or eastwards within the latitude limits.',59.0,71.0,-156.0,-66.0,0);
INSERT INTO "extent" VALUES('EPSG','4041','Arctic - 71°N to 59°N, 84°W to 6°E','Arctic - 71°N to 59°N, approximately 84°W to approximately 6°E. May be extended westwards or eastwards within the latitude limits.',59.0,71.0,-84.0,6.0,0);
INSERT INTO "extent" VALUES('EPSG','4042','Arctic - 71°N to 59°N, 12°W to 78°E','Arctic - 71°N to 59°N, approximately 12°W to approximately 78°E. May be extended westwards or eastwards within the latitude limits.',59.0,71.0,-12.0,78.01,0);
INSERT INTO "extent" VALUES('EPSG','4043','Arctic - 71°N to 59°N, 60°E to 150°E','Arctic - 71°N to 59°N, approximately 60°E to approximately 150°E. May be extended westwards or eastwards within the latitude limits.',59.0,71.0,60.0,150.01,0);
INSERT INTO "extent" VALUES('EPSG','4044','Arctic - 87°50''N to 82°50''N, 180°W to 120°W','Arctic - between 87°50''N and 82°50''N, approximately 180°W to approximately 120°W. May be extended westwards or eastwards within the latitude limits.',82.83,87.84,-180.0,-120.0,0);
INSERT INTO "extent" VALUES('EPSG','4045','Arctic - 71°N to 59°N, 132°E to 138°W','Arctic - 71°N to 59°N, approximately 132°E to approximately 138°W. May be extended westwards or eastwards within the latitude limits.',59.0,71.0,132.0,-138.0,0);
INSERT INTO "extent" VALUES('EPSG','4046','Arctic - 84°30''N to 79°30''N, 32°W to 8°E','Arctic - between 84°30''N and 79°30''N, approximately 32°W to approximately 8°E. May be extended westwards within the latitude limits.',79.5,84.51,-32.0,8.01,0);
INSERT INTO "extent" VALUES('EPSG','4047','Arctic - 87°50''N to 82°50''N, 120°W to 60°W','Arctic - between 87°50''N and 82°50''N, approximately 120°W to approximately 60°W. May be extended westwards or eastwards within the latitude limits.',82.83,87.84,-120.0,-60.0,0);
INSERT INTO "extent" VALUES('EPSG','4048','Arctic - 87°50''N to 82°50''N, 60°W to 0°E','Arctic - between 87°50''N and 82°50''N, approximately 60°W to approximately 0°E. May be extended westwards or eastwards within the latitude limits.',82.83,87.84,-60.0,0.0,0);
INSERT INTO "extent" VALUES('EPSG','4049','Arctic - 87°50''N to 82°50''N, 0°E to 60°E','Arctic - between 87°50''N and 82°50''N, approximately 0°E to approximately 60°E. May be extended westwards or eastwards within the latitude limits.',82.83,87.84,0.0,60.01,0);
INSERT INTO "extent" VALUES('EPSG','4050','Arctic - 87°50''N to 82°50''N, 60°E to 120°E','Arctic - between 87°50''N and 82°50''N, approximately 60°E to approximately 120°E. May be extended westwards or eastwards within the latitude limits.',82.83,87.84,60.0,120.01,0);
INSERT INTO "extent" VALUES('EPSG','4051','Arctic - 87°50''N to 82°50''N, 120°E to 180°E','Arctic - between 87°50''N and 82°50''N, approximately 120°E to approximately 180°E. May be extended westwards or eastwards within the latitude limits.',82.83,87.83,120.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','4052','Arctic - 84°30''N to 79°30''N, 174°W to 135°W','Arctic - between 84°30''N and 79°30''N, approximately 174°W to approximately 135°W. May be extended westwards or eastwards within the latitude limits.',79.5,84.51,-174.0,-134.99,0);
INSERT INTO "extent" VALUES('EPSG','4053','Arctic - 84°30''N to 79°30''N, 4°W to 36°E','Arctic - between 84°30''N and 79°30''N, approximately 4°W to approximately 36°E.',79.5,84.51,-4.0,36.01,0);
INSERT INTO "extent" VALUES('EPSG','4054','Arctic - 84°30''N to 79°30''N, 33°E to 73°E','Arctic - between 84°30''N and 79°30''N, approximately 33°E to approximately 73°E. May be extended westwards or eastwards within the latitude limits.',79.5,84.51,33.0,73.01,0);
INSERT INTO "extent" VALUES('EPSG','4055','Arctic - 84°30''N to 79°30''N, 73°E to 113°E','Arctic - between 84°30''N and 79°30''N, approximately 73°E to approximately 113°E. May be extended westwards or eastwards within the latitude limits.',79.5,84.51,73.0,113.01,0);
INSERT INTO "extent" VALUES('EPSG','4056','Arctic - 84°30''N to 79°30''N, 113°E to 153°E','Arctic - between 84°30''N and 79°30''N, approximately 113°E to approximately 153°E. May be extended westwards or eastwards within the latitude limits.',79.5,84.51,113.0,153.01,0);
INSERT INTO "extent" VALUES('EPSG','4057','Arctic - 84°30''N to 79°30''N, 146°E to 174°W','Arctic - between 84°30''N and 79°30''N, approximately 146°E to approximately 174°W. May be extended westwards or eastwards within the latitude limits.',79.5,84.51,146.0,-173.99,0);
INSERT INTO "extent" VALUES('EPSG','4058','Arctic - 81°10''N to 76°10''N, 4°W to 38°E','Arctic (Norway (Svalbard) onshore and offshore) - between 81°10''N and 76°10''N.',76.16,81.17,-3.35,38.0,0);
INSERT INTO "extent" VALUES('EPSG','4059','Arctic - 81°10''N to 76°10''N, 35°E to 67°E','Arctic (Russia onshore and offshore) - between 81°10''N and 76°10''N, approximately 35°E to approximately 67°E. May be extended eastwards within the latitude limits.',76.16,81.17,34.99,67.01,0);
INSERT INTO "extent" VALUES('EPSG','4060','Arctic - 81°10''N to 76°10''N, 67°E to 98°E','Arctic (Russia onshore and offshore) - between 81°10''N and 76°10''N, approximately 67°E to approximately 98°E. May be extended westwards or eastwards within the latitude limits.',76.16,81.17,67.0,98.01,0);
INSERT INTO "extent" VALUES('EPSG','4061','Arctic - 81°10''N to 76°10''N, 98°E to 129°E','Arctic (Russia onshore and offshore) - between 81°10''N and 76°10''N, approximately 98°E to approximately 129°E. May be extended westwards or eastwards within the latitude limits.',76.16,81.17,98.0,129.01,0);
INSERT INTO "extent" VALUES('EPSG','4062','Arctic - 81°10''N to 76°10''N, 129°E to 160°E','Arctic (Russia onshore and offshore) - between 81°10''N and 76°10''N, approximately 129°E to approximately 160°E. May be extended westwards or eastwards within the latitude limits.',76.16,81.17,129.0,160.01,0);
INSERT INTO "extent" VALUES('EPSG','4063','Arctic - 81°10''N to 76°10''N, 160°E to 169°W','Arctic - between 81°10''N and 76°10''N, approximately 160°E to approximately 169°W. May be extended westwards or eastwards within the latitude limits.',76.16,81.17,160.0,-168.99,0);
INSERT INTO "extent" VALUES('EPSG','4064','Arctic - 81°10''N to 76°10''N, 169°W to 138°W','Arctic - between 81°10''N and 76°10''N, approximately 169°W to approximately 138°W. May be extended westwards or eastwards within the latitude limits.',76.16,81.17,-169.0,-138.0,0);
INSERT INTO "extent" VALUES('EPSG','4065','Arctic - 81°10''N to 76°10''N, 144°W to 114°W','Arctic - between 81°10''N and 76°10''N, approximately 144°W to approximately 114°W. May be extended eastwards within the latitude limits.',76.16,81.17,-144.0,-114.0,0);
INSERT INTO "extent" VALUES('EPSG','4066','Norway - onshore - 6°E to 12°E','Norway - onshore - between 6°E and 12°E.',57.93,65.76,6.0,12.0,0);
INSERT INTO "extent" VALUES('EPSG','4067','Norway - onshore - 12°E to 18°E','Norway - onshore - between 12°E and 18°E.',59.88,69.68,12.0,18.01,0);
INSERT INTO "extent" VALUES('EPSG','4068','Norway - onshore - 18°E to 24°E','Norway - onshore - between 18°E and 24°E.',68.04,71.08,18.0,24.01,0);
INSERT INTO "extent" VALUES('EPSG','4069','Norway - onshore - 24°E to 30°E','Norway - onshore - between 24°E and 30°E.',68.58,71.21,24.0,30.0,0);
INSERT INTO "extent" VALUES('EPSG','4070','Arctic - 81°10''N to 76°10''N, 114°W to 84°W','Arctic - between 81°10''N and 76°10''N, approximately 114°W to approximately 84°W. May be extended westwards or eastwards within the latitude limits.',76.16,81.17,-114.0,-84.0,0);
INSERT INTO "extent" VALUES('EPSG','4071','Arctic - 81°10''N to 76°10''N, 84°W to 54°W','Arctic - between 81°10''N and 76°10''N, approximately 84°W to approximately 54°W. May be extended westwards or eastwards within the latitude limits.',76.16,81.17,-84.0,-54.0,0);
INSERT INTO "extent" VALUES('EPSG','4072','Arctic - 81°10''N to 76°10''N, Canada east of 84°W','Arctic - between 81°10''N and 76°10''N, Canada east of approximately 84°W. May be extended westwards within the latitude limits.',76.16,81.17,-84.0,-64.78,0);
INSERT INTO "extent" VALUES('EPSG','4073','Arctic - 81°10''N to 76°10''N, Greenland west of 54°W','Arctic - between 81°10''N and 76°10''N, Greenland west of approximately 54°W. May be extended eastwards within the latitude limits.',76.16,81.17,-75.0,-54.0,0);
INSERT INTO "extent" VALUES('EPSG','4074','Arctic - 81°10''N to 76°10''N, 54°W to 24°W','Arctic - between 81°10''N and 76°10''N, approximately 54°W to approximately 24°W. May be extended westwards or eastwards within the latitude limits.',76.16,81.17,-54.0,-24.0,0);
INSERT INTO "extent" VALUES('EPSG','4075','Arctic - 81°10''N to 76°10''N, 24°W to 3°E','Arctic - between 81°10''N and 76°10''N, approximately 24°W to approximately 2°E. May be extended westwards within the latitude limits.',76.16,81.17,-24.0,1.89,0);
INSERT INTO "extent" VALUES('EPSG','4076','Arctic - 77°50''N to 72°50''N, 169°W to 141°W','Arctic - between 77°50''N and 72°50''N, approximately 169°W to approximately 141°W. May be extended westwards or eastwards within the latitude limits.',72.83,77.84,-169.0,-141.0,0);
INSERT INTO "extent" VALUES('EPSG','4077','Arctic - 77°50''N to 72°50''N, 141°W to 116°W','Arctic - between 77°50''N and 72°50''N, approximately 141°W to approximately 116°W. May be extended westwards or eastwards within the latitude limits.',72.83,77.84,-141.0,-116.0,0);
INSERT INTO "extent" VALUES('EPSG','4078','Arctic - 77°50''N to 72°50''N, 116°W to 91°W','Arctic - between 77°50''N and 72°50''N, approximately 116°W to approximately 91°W. May be extended westwards or eastwards within the latitude limits.',72.83,77.84,-116.0,-91.0,0);
INSERT INTO "extent" VALUES('EPSG','4079','Arctic - 77°50''N to 72°50''N, 91°W to 67°W','Arctic - between 77°50''N and 72°50''N, approximately 91°W to approximately 67°W. May be extended westwards within the latitude limits.',72.83,77.84,-91.0,-67.0,0);
INSERT INTO "extent" VALUES('EPSG','4080','Arctic - 77°50''N to 72°50''N, 76°W to 51°W','Arctic - between 77°50''N and 72°50''N, approximately 76°W to approximately 51°W. May be extended eastwards within the latitude limits.',72.83,77.84,-76.0,-51.0,0);
INSERT INTO "extent" VALUES('EPSG','4081','Arctic - 77°50''N to 72°50''N, 51°W to 26°W','Arctic - between 77°50''N and 72°50''N, approximately 51°W to approximately 26°W. May be extended westwards or eastwards within the latitude limits.',72.83,77.84,-51.0,-26.0,0);
INSERT INTO "extent" VALUES('EPSG','4082','Arctic - 77°50''N to 72°50''N, 26°W to 2°W','Arctic - between 77°50''N and 72°50''N, approximately 26°W to approximately 2°W. May be extended westwards within the latitude limits.',72.83,77.84,-26.0,-2.0,0);
INSERT INTO "extent" VALUES('EPSG','4083','Arctic - 77°50''N to 72°50''N, 2°W to 22°E','Arctic - between 77°50''N and 72°50''N, approximately 2°W to approximately 22°E. May be extended westwards or eastwards within the latitude limits.',72.83,77.84,-2.0,22.01,0);
INSERT INTO "extent" VALUES('EPSG','4084','Arctic - 77°50''N to 72°50''N, 22°E to 46°E','Arctic - between 77°50''N and 72°50''N, approximately 22°E to approximately 46°E. May be extended westwards or eastwards within the latitude limits.',72.83,77.84,22.0,46.01,0);
INSERT INTO "extent" VALUES('EPSG','4085','Arctic - 77°50''N to 72°50''N, 46°E to 70°E','Arctic - between 77°50''N and 72°50''N, approximately 46°E to approximately 70°E. May be extended westwards or eastwards within the latitude limits.',72.83,77.84,46.0,70.01,0);
INSERT INTO "extent" VALUES('EPSG','4086','Arctic - 77°50''N to 72°50''N, 70°E to 94°E','Arctic - between 77°50''N and 72°50''N, approximately 70°E to approximately 94°E. May be extended westwards or eastwards within the latitude limits.',72.83,77.84,70.0,94.01,0);
INSERT INTO "extent" VALUES('EPSG','4087','Arctic - 77°50''N to 72°50''N, 94°E to 118°E','Arctic - between 77°50''N and 72°50''N, approximately 94°E to approximately 118°E. May be extended westwards or eastwards within the latitude limits.',72.83,77.84,94.0,118.01,0);
INSERT INTO "extent" VALUES('EPSG','4088','Arctic - 77°50''N to 72°50''N, 118°E to 142°E','Arctic - between 77°50''N and 72°50''N, approximately 118°E to approximately 142°E. May be extended westwards or eastwards within the latitude limits.',72.83,77.84,118.0,142.01,0);
INSERT INTO "extent" VALUES('EPSG','4089','Arctic - 77°50''N to 72°50''N, 142°E to 166°E','Arctic - between 77°50''N and 72°50''N, approximately 142°E to approximately 166°E. May be extended westwards or eastwards within the latitude limits.',72.83,77.84,142.0,166.01,0);
INSERT INTO "extent" VALUES('EPSG','4090','Arctic - 77°50''N to 72°50''N, 166°E to 169°W','Arctic - between 77°50''N and 72°50''N, approximately 166°E to approximately 169°W. May be extended westwards or eastwards within the latitude limits.',72.83,77.84,166.0,-168.99,0);
INSERT INTO "extent" VALUES('EPSG','4091','Arctic - 74°30''N to 69°30''N, 4°E to 24°E','Arctic - between 74°30''N and 69°30''N, approximately 4°E to approximately 24°E. May be extended westwards or eastwards within the latitude limits.',69.5,74.51,4.0,24.01,0);
INSERT INTO "extent" VALUES('EPSG','4092','Arctic - 74°30''N to 69°30''N, 24°E to 44°E','Arctic - between 74°30''N and 69°30''N, approximately 24°E to approximately 44°E. May be extended westwards or eastwards within the latitude limits.',69.5,74.51,24.0,44.01,0);
INSERT INTO "extent" VALUES('EPSG','4093','Arctic - 74°30''N to 69°30''N, 44°E to 64°E','Arctic - between 74°30''N and 69°30''N, approximately 44°E to approximately 64°E. May be extended westwards or eastwards within the latitude limits.',69.5,74.51,44.0,64.01,0);
INSERT INTO "extent" VALUES('EPSG','4094','Arctic - 74°30''N to 69°30''N, 64°E to 85°E','Arctic - between 74°30''N and 69°30''N, approximately 64°E to approximately 85°E. May be extended westwards or eastwards within the latitude limits.',69.5,74.51,64.0,85.01,0);
INSERT INTO "extent" VALUES('EPSG','4095','Arctic - 74°30''N to 69°30''N, 85°E to 106°E','Arctic - between 74°30''N and 69°30''N, approximately 85°E to approximately 106°E. May be extended westwards or eastwards within the latitude limits.',69.5,74.51,85.0,106.01,0);
INSERT INTO "extent" VALUES('EPSG','4096','Arctic - 74°30''N to 69°30''N, 106°E to 127°E','Arctic - between 74°30''N and 69°30''N, approximately 106°E to approximately 127°E. May be extended westwards or eastwards within the latitude limits.',69.5,74.51,106.0,127.01,0);
INSERT INTO "extent" VALUES('EPSG','4097','Arctic - 74°30''N to 69°30''N, 127°E to 148°E','Arctic - between 74°30''N and 69°30''N, approximately 127°E to approximately 148°E. May be extended westwards or eastwards within the latitude limits.',69.5,74.51,127.0,148.0,0);
INSERT INTO "extent" VALUES('EPSG','4098','Arctic - 74°30''N to 69°30''N, 148°E to 169°E','Arctic - between 74°30''N and 69°30''N, approximately 148°E to approximately 169°E. May be extended westwards or eastwards within the latitude limits.',69.5,74.51,148.0,169.01,0);
INSERT INTO "extent" VALUES('EPSG','4099','Arctic - 74°30''N to 69°30''N, 169°E to 169°W','Arctic - between 74°30''N and 69°30''N, approximately 169°E to approximately 169°W. May be extended westwards or eastwards within the latitude limits.',69.5,74.51,169.0,-169.0,0);
INSERT INTO "extent" VALUES('EPSG','4100','Arctic - 74°30''N to 69°30''N, 173°W to 153°W','Arctic - between 74°30''N and 69°30''N, approximately 173°W to approximately 153°W. May be extended eastwards within the latitude limits.',69.5,74.51,-173.0,-153.0,0);
INSERT INTO "extent" VALUES('EPSG','4101','Arctic - 74°30''N to 69°30''N, 157°W to 137°W','Arctic - between 74°30''N and 69°30''N, approximately 157°W to approximately 137°W. May be extended westwards within the latitude limits.',69.5,74.51,-157.0,-137.0,0);
INSERT INTO "extent" VALUES('EPSG','4102','Arctic - 74°30''N to 69°30''N, 141°W to 121°W','Arctic - between 74°30''N and 69°30''N, approximately 141°W to approximately 121°W. May be extended eastwards within the latitude limits.',69.5,74.51,-141.0,-121.0,0);
INSERT INTO "extent" VALUES('EPSG','4103','Arctic - 74°30''N to 69°30''N, 121°W to 101°W','Arctic - between 74°30''N and 69°30''N, approximately 121°W to approximately 101°W. May be extended westwards or eastwards within the latitude limits.',69.5,74.51,-121.0,-101.0,0);
INSERT INTO "extent" VALUES('EPSG','4104','Arctic - 74°30''N to 69°30''N, 101°W to 81°W','Arctic - between 74°30''N and 69°30''N, approximately 101°W to approximately 81°W. May be extended westwards or eastwards within the latitude limits.',69.5,74.51,-101.0,-81.0,0);
INSERT INTO "extent" VALUES('EPSG','4105','Arctic - 74°30''N to 69°30''N, 81°W to 61°W','Arctic - between 74°30''N and 69°30''N, approximately 81°W to approximately 61°W. May be extended westwards within the latitude limits.',69.5,74.51,-81.0,-61.0,0);
INSERT INTO "extent" VALUES('EPSG','4106','Arctic - 74°30''N to 69°30''N, 72°W to 52°W','Arctic - between 74°30''N and 69°30''N, approximately 72°W to approximately 52°W. May be extended eastwards within the latitude limits.',69.48,74.51,-71.89,-51.99,0);
INSERT INTO "extent" VALUES('EPSG','4107','Arctic - 74°30''N to 69°30''N, 52°W to 32°W','Arctic - between 74°30''N and 69°30''N, approximately 52°W to approximately 32°W. May be extended westwards or eastwards within the latitude limits.',69.5,74.51,-52.0,-32.0,0);
INSERT INTO "extent" VALUES('EPSG','4108','Arctic - 74°30''N to 69°30''N, 32°W to 12°W','Arctic - between 74°30''N and 69°30''N, approximately 32°W to approximately 12°W. May be extended westwards or eastwards within the latitude limits.',69.5,74.51,-32.0,-12.0,0);
INSERT INTO "extent" VALUES('EPSG','4109','Arctic - 74°30''N to 69°30''N, 15°W to 5°E','Arctic - between 74°30''N and 69°30''N, approximately 15°W to approximately 5°E. May be extended westwards or eastwards within the latitude limits.',69.5,74.51,-15.0,5.01,0);
INSERT INTO "extent" VALUES('EPSG','4110','Arctic - 71°10''N to 66°10''N, 174°W to 156°W','Arctic - between 71°10''N and 66°10''N, approximately 174°W to approximately 156°W. May be extended eastwards within the latitude limits.',66.16,71.17,-174.0,-156.0,0);
INSERT INTO "extent" VALUES('EPSG','4111','Arctic - 71°10''N to 66°10''N, 156°W to 138°W','Arctic - between 71°10''N and 66°10''N, approximately 156°W to approximately 138°W. May be extended westwards within the latitude limits.',66.16,71.17,-156.0,-138.0,0);
INSERT INTO "extent" VALUES('EPSG','4112','Arctic - 71°10''N to 66°10''N, 141°W to 122°W','Arctic - between 71°10''N and 66°10''N, approximately 141°W to approximately 122°W. May be extended eastwards within the latitude limits.',66.16,71.17,-141.0,-122.0,0);
INSERT INTO "extent" VALUES('EPSG','4113','Arctic - 71°10''N to 66°10''N, 122°W to 103°W','Arctic - between 71°10''N and 66°10''N, approximately 122°W to approximately 103°W. May be extended westwards or eastwards within the latitude limits.',66.16,71.17,-122.0,-103.0,0);
INSERT INTO "extent" VALUES('EPSG','4114','Arctic - 71°10''N to 66°10''N, 103°W to 84°W','Arctic - between 71°10''N and 66°10''N, approximately 103°W to approximately 84°W. May be extended westwards or eastwards within the latitude limits.',66.16,71.17,-103.0,-84.0,0);
INSERT INTO "extent" VALUES('EPSG','4115','Arctic - 71°10''N to 66°10''N, 84°W to 65°W','Arctic - between 71°10''N and 66°10''N, approximately 84°W to approximately 65°W. May be extended westwards or eastwards within the latitude limits.',66.16,71.17,-84.0,-65.0,0);
INSERT INTO "extent" VALUES('EPSG','4116','Arctic - 71°10''N to 66°10''N, 65°W to 47°W','Arctic - between 71°10''N and 66°10''N, approximately 65°W to approximately 47°W. May be extended westwards or eastwards within the latitude limits.',66.16,71.17,-65.0,-47.0,0);
INSERT INTO "extent" VALUES('EPSG','4117','Arctic - 71°10''N to 66°10''N, 47°W to 29°W','Arctic - between 71°10''N and 66°10''N, approximately 47°W to approximately 29°W. May be extended westwards or eastwards within the latitude limits.',66.16,71.17,-47.0,-29.0,0);
INSERT INTO "extent" VALUES('EPSG','4118','Arctic - 71°10''N to 66°10''N, 29°W to 11°W','Arctic - between 71°10''N and 66°10''N, approximately 29°W to approximately 11°W. May be extended westwards within the latitude limits.',66.16,71.17,-29.0,-11.0,0);
INSERT INTO "extent" VALUES('EPSG','4119','Arctic - 67°50''N to 62°50''N, 59°W to 42°W','Arctic - between 67°50''N and 62°50''N, approximately 59°W to approximately 42°W. May be extended eastwards within the latitude limits.',62.83,67.84,-59.0,-42.0,0);
INSERT INTO "extent" VALUES('EPSG','4120','Arctic - 67°50''N to 62°50''N, 42°W to 25°W','Arctic - between 67°50''N and 62°50''N, approximately 42°W to approximately 25°W. May be extended westwards within the latitude limits.',62.83,67.84,-42.0,-25.0,0);
INSERT INTO "extent" VALUES('EPSG','4121','Cayman Islands - Little Cayman','Cayman Islands - Little Cayman.',19.63,19.74,-80.14,-79.93,0);
INSERT INTO "extent" VALUES('EPSG','4122','Colombia - Arauca city','Colombia - Arauca city.',7.05,7.1,-70.78,-70.71,0);
INSERT INTO "extent" VALUES('EPSG','4123','Arctic - 64°30''N to 59°30''N, 59°W to 44°W','Arctic - between 64°30''N and 59°30''N, approximately 59°W to approximately 44°W. May be extended eastwards within the latitude limits.',59.5,64.51,-59.0,-44.0,0);
INSERT INTO "extent" VALUES('EPSG','4124','Arctic - 64°30''N to 59°30''N, 44°W to 29°W','Arctic - between 64°30''N and 59°30''N, approximately 44°W to approximately 29°W. May be extended westwards within the latitude limits.',59.5,64.51,-44.0,-29.0,0);
INSERT INTO "extent" VALUES('EPSG','4125','Portugal - Madeira and Desertas islands onshore','Portugal - Madeira and Desertas islands - onshore.',32.35,32.93,-17.31,-16.4,0);
INSERT INTO "extent" VALUES('EPSG','4126','Portugal - Azores E onshore - Santa Maria and Formigas','Portugal - eastern Azores onshore - Santa Maria, Formigas.',36.87,37.34,-25.26,-24.72,0);
INSERT INTO "extent" VALUES('EPSG','4127','Nigeria - OML 124','Nigeria - onshore - block OML 124 (formerly OPL 118).',5.56,5.74,6.72,6.97,0);
INSERT INTO "extent" VALUES('EPSG','4128','Colombia - Santa Marta city','Colombia - Santa Marta city.',11.16,11.3,-74.24,-74.13,0);
INSERT INTO "extent" VALUES('EPSG','4129','Brazil - 48°W to 42°W and north of 0°N','Brazil - offshore between 48°W and 42°W, northern hemisphere.',0.0,5.13,-48.0,-41.99,0);
INSERT INTO "extent" VALUES('EPSG','4130','Colombia - Sucre city','Colombia - Sucre city.',8.79,8.83,-74.74,-74.69,0);
INSERT INTO "extent" VALUES('EPSG','4131','Colombia - Tunja city','Colombia - Tunja city.',5.5,5.61,-73.39,-73.3,0);
INSERT INTO "extent" VALUES('EPSG','4132','Colombia - Armenia city','Colombia - Armenia city.',4.5,4.55,-75.73,-75.65,0);
INSERT INTO "extent" VALUES('EPSG','4133','Brazil - 42°W to 36°W and north of 0°N','Brazil - offshore between 42°W and 36°W, northern hemisphere.',0.0,0.74,-42.0,-38.22,0);
INSERT INTO "extent" VALUES('EPSG','4134','Colombia - Barranquilla city','Colombia - Barranquilla city.',10.85,11.06,-74.87,-74.75,0);
INSERT INTO "extent" VALUES('EPSG','4135','Colombia - Bogota city','Colombia - Bogota DC city.',4.45,4.85,-74.27,-73.98,0);
INSERT INTO "extent" VALUES('EPSG','4136','Colombia - Bucaramanga city','Colombia - Bucaramanga city.',7.03,7.17,-73.19,-73.06,0);
INSERT INTO "extent" VALUES('EPSG','4137','Colombia - Cali city','Colombia - Cali city.',3.32,3.56,-76.61,-76.42,0);
INSERT INTO "extent" VALUES('EPSG','4138','Colombia - Cartagena city','Colombia - Cartagena city.',10.27,10.47,-75.57,-75.42,0);
INSERT INTO "extent" VALUES('EPSG','4139','Colombia - Cucuta city','Colombia - Cucuta city.',7.81,7.97,-72.56,-72.46,0);
INSERT INTO "extent" VALUES('EPSG','4140','Colombia - Florencia city','Colombia - Florencia city.',1.57,1.65,-75.63,-75.59,0);
INSERT INTO "extent" VALUES('EPSG','4141','Colombia - Ibague city','Colombia - Ibague city.',4.39,4.47,-75.27,-75.11,0);
INSERT INTO "extent" VALUES('EPSG','4142','Colombia - Inirida city','Colombia - Inirida city.',3.8,3.9,-67.94,-67.88,0);
INSERT INTO "extent" VALUES('EPSG','4143','Colombia - Leticia city','Colombia - Leticia city.',-4.23,-4.17,-69.98,-69.92,0);
INSERT INTO "extent" VALUES('EPSG','4144','Colombia - Manizales city','Colombia - Manizales city.',5.02,5.11,-75.54,-75.44,0);
INSERT INTO "extent" VALUES('EPSG','4145','Colombia - Medellin city','Colombia - Medellin city.',6.12,6.37,-75.66,-75.5,0);
INSERT INTO "extent" VALUES('EPSG','4146','Colombia - Mitu city','Colombia - Mitu city.',1.23,1.29,-70.25,-70.21,0);
INSERT INTO "extent" VALUES('EPSG','4147','Colombia - Mocoa city','Colombia - Mocoa city.',1.12,1.18,-76.66,-76.63,0);
INSERT INTO "extent" VALUES('EPSG','4148','Colombia - Monteria city','Colombia - Monteria city.',8.7,8.81,-75.94,-75.82,0);
INSERT INTO "extent" VALUES('EPSG','4149','Colombia - Neiva city','Colombia - Neiva city.',2.87,2.99,-75.32,-75.23,0);
INSERT INTO "extent" VALUES('EPSG','4150','Colombia - Pasto city','Colombia - Pasto city.',1.16,1.26,-77.32,-77.23,0);
INSERT INTO "extent" VALUES('EPSG','4151','Colombia - Pereira city','Colombia - Pereira city.',4.78,4.87,-75.77,-75.64,0);
INSERT INTO "extent" VALUES('EPSG','4152','Colombia - Popayan city','Colombia - Popayan city.',2.41,2.49,-76.65,-76.55,0);
INSERT INTO "extent" VALUES('EPSG','4153','Colombia - Puerto Carreno city','Colombia - Puerto Carreno city.',5.98,6.3,-67.7,-67.41,0);
INSERT INTO "extent" VALUES('EPSG','4154','Colombia - Quibdo city','Colombia - Quibdo city.',5.66,5.72,-76.67,-76.63,0);
INSERT INTO "extent" VALUES('EPSG','4155','Colombia - Riohacha city','Colombia - Riohacha city.',11.42,11.58,-72.96,-72.84,0);
INSERT INTO "extent" VALUES('EPSG','4156','Colombia - San Andres city','Colombia - San Andres city.',12.43,12.65,-81.82,-81.6,0);
INSERT INTO "extent" VALUES('EPSG','4157','Colombia - San Jose del Guaviare city','Colombia - San Jose del Guaviare city.',2.54,2.61,-72.66,-72.6,0);
INSERT INTO "extent" VALUES('EPSG','4158','Colombia - Valledupar city','Colombia - Valledupar city.',10.39,10.51,-73.3,-73.19,0);
INSERT INTO "extent" VALUES('EPSG','4159','Colombia - Villavicencio city','Colombia - Villavicencio city.',4.07,4.21,-73.69,-73.56,0);
INSERT INTO "extent" VALUES('EPSG','4160','Colombia - Yopal city','Colombia - Yopal city.',5.3,5.37,-72.43,-72.35,0);
INSERT INTO "extent" VALUES('EPSG','4161','North America - Mexico and USA - onshore','Mexico - onshore. United States (USA) - CONUS and Alaska - onshore - Alabama; Alaska; Arizona; Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming.',14.51,71.4,172.42,-66.91,0);
INSERT INTO "extent" VALUES('EPSG','4162','Pacific - US interests Pacific plate','American Samoa, Marshall Islands, United States (USA) - Hawaii, United States minor outlying islands; onshore and offshore.',-17.56,31.8,157.47,-151.27,0);
INSERT INTO "extent" VALUES('EPSG','4163','Japan excluding northern main province','Japan - onshore and offshore, excluding northern prefectures of ''main province'' (see remarks).',17.09,46.05,122.38,157.65,0);
INSERT INTO "extent" VALUES('EPSG','4164','USA - Iowa - Spencer','United States (USA) - Iowa - counties of Clay; Dickinson; Emmet; Kossuth; Lyon; O''Brien; Osceola; Palo Alto; Sioux.',42.9,43.51,-96.6,-93.97,0);
INSERT INTO "extent" VALUES('EPSG','4165','Japan - onshore mainland excluding eastern main province','Japan - onshore mainland - Hokkaido, Honshu (western part only, see remarks), Shikoku, Kyushu.',30.94,45.54,129.3,145.87,0);
INSERT INTO "extent" VALUES('EPSG','4166','Japan - onshore - Honshu, Shikoku, Kyushu','Japan - onshore mainland - Honshu, Shikoku, Kyushu.',30.94,41.58,129.3,142.14,0);
INSERT INTO "extent" VALUES('EPSG','4167','Pacific - US interests Mariana plate','Guam, Northern Mariana Islands and Palau; onshore and offshore.',1.64,23.9,129.48,149.55,0);
INSERT INTO "extent" VALUES('EPSG','4168','Japan - onshore - Hokkaido','Japan - onshore mainland - Hokkaido.',41.34,45.54,139.7,145.87,0);
INSERT INTO "extent" VALUES('EPSG','4169','Christmas Island - onshore','Christmas Island - onshore.',-10.63,-10.36,105.48,105.77,0);
INSERT INTO "extent" VALUES('EPSG','4170','Japan - northern Honshu','Japan - northern Honshu prefectures affected by 2011 Tohoku earthquake: Aomori, Iwate, Miyagi, Akita, Yamaguta, Fukushima, Ibaraki, Tochigi, Gumma, Saitama, Chiba, Tokyo, Kanagawa, Niigata, Toyama, Ishikawa, Fukui, Yamanashi, Nagano, Gifu.',34.84,41.58,135.42,142.14,0);
INSERT INTO "extent" VALUES('EPSG','4171','Northern Mariana Islands - Rota, Saipan and Tinian','Northern Mariana Islands - onshore - Rota, Saipan and Tinian.',14.06,15.35,145.06,145.89,0);
INSERT INTO "extent" VALUES('EPSG','4172','Falkland Islands - offshore 63°W to 57°W','Falkland Islands (Malvinas) - offshore - between 63°W and 57°W.',-56.25,-47.68,-63.01,-56.99,0);
INSERT INTO "extent" VALUES('EPSG','4173','Heard Island and McDonald Islands - west of 66°E','Heard Island and McDonald Islands - offshore west of 66°E.',-57.5,-53.43,62.92,66.0,0);
INSERT INTO "extent" VALUES('EPSG','4174','Australia','Australia - onshore and offshore. Includes Lord Howe Island, Macquarie Islands, Ashmore and Cartier Islands.',-60.56,-8.88,105.8,164.7,0);
INSERT INTO "extent" VALUES('EPSG','4175','Australasia - Australia and Norfolk Island - 162°E to 168°E','Australia - offshore east of 162°E. Norfolk Island - onshore and offshore west of 168°E.',-59.39,-25.94,162.0,168.0,0);
INSERT INTO "extent" VALUES('EPSG','4176','Australasia - Australia and Christmas Island - 108°E to 114°E','Australia - onshore and offshore west of 114°E. Christmas Island - offshore east of 108°E.',-37.84,-10.72,108.0,114.01,0);
INSERT INTO "extent" VALUES('EPSG','4177','Australia - GDA','Australia including Lord Howe Island, Macquarie Islands, Ashmore and Cartier Islands, Christmas Island, Cocos (Keeling) Islands, Norfolk Island. All onshore and offshore.',-60.56,-8.47,93.41,173.35,0);
INSERT INTO "extent" VALUES('EPSG','4178','Australia - 114°E to 120°E','Australia - onshore and offshore between 114°E and 120°E.',-38.53,-12.06,114.0,120.01,0);
INSERT INTO "extent" VALUES('EPSG','4179','Norfolk Island - east of 168°E','Norfolk Island - offshore east of 168°E.',-32.48,-25.61,168.0,173.35,0);
INSERT INTO "extent" VALUES('EPSG','4180','USA - Oregon - Baker City','United States (USA) - Oregon - Baker City area.',44.6,45.19,-118.15,-117.37,0);
INSERT INTO "extent" VALUES('EPSG','4181','Heard Island and McDonald Islands - 66°E to 72°E','Heard Island and McDonald Islands - offshore 66°E to 72°E.',-58.96,-51.18,66.0,72.01,0);
INSERT INTO "extent" VALUES('EPSG','4182','USA - Oregon - Bend-Burns','United States (USA) - Oregon - Bend-Burns area.',43.34,44.28,-120.95,-118.8,0);
INSERT INTO "extent" VALUES('EPSG','4183','Seychelles - Seychelles Bank','Seychelles - Mahe, Silhouette, North, Aride Island, Praslin, La Digue and Frigate islands including adjacent smaller granitic islands on the Seychelles Bank, Bird Island and Denis Island.',-4.86,-3.66,55.15,56.01,0);
INSERT INTO "extent" VALUES('EPSG','4184','Heard Island and McDonald Islands - 72°E to 78°E','Heard Island and McDonald Islands - onshore and offshore 72°E to 78°E.',-59.02,-49.5,72.0,78.01,0);
INSERT INTO "extent" VALUES('EPSG','4185','Heard Island and McDonald Islands - east of 78°E','Heard Island and McDonald Islands - offshore east of 78°E.',-58.47,-50.65,78.0,83.57,0);
INSERT INTO "extent" VALUES('EPSG','4186','Italy - 12°E to 18°E','Italy - onshore and offshore - between 12°E and 18°E including San Marino and Vatican City State.',34.79,47.1,12.0,18.0,0);
INSERT INTO "extent" VALUES('EPSG','4187','Italy - east of 18°E','Italy - onshore and offshore - east of 18°E.',34.76,41.64,17.99,18.99,0);
INSERT INTO "extent" VALUES('EPSG','4188','Spain and Gibraltar - onshore','Gibraltar - onshore; Spain - mainland onshore.',35.95,43.82,-9.37,3.39,0);
INSERT INTO "extent" VALUES('EPSG','4189','Cocos (Keeling) Islands - west of 96°E','Cocos (Keeling) Islands - offshore west of 96°E.',-15.46,-8.57,93.41,96.01,0);
INSERT INTO "extent" VALUES('EPSG','4190','Cocos (Keeling) Islands - east of 96°E','Cocos (Keeling) Islands - onshore and offshore east of 96°E.',-15.56,-8.47,96.0,100.34,0);
INSERT INTO "extent" VALUES('EPSG','4191','Australasia - Australia and Christmas Island - west of 108°E','Australia - offshore west of 108°E. Christmas Island - onshore and offshore west of 108°E.',-34.68,-8.87,102.14,108.01,0);
INSERT INTO "extent" VALUES('EPSG','4192','USA - Oregon - Bend-Klamath Falls','United States (USA) - Oregon - Bend-Klamath Falls area.',41.88,43.89,-122.45,-120.77,0);
INSERT INTO "extent" VALUES('EPSG','4193','Vietnam - west of 103°30''E onshore','Vietnam - onshore west of 103°30''E.',9.2,22.82,102.14,103.51,0);
INSERT INTO "extent" VALUES('EPSG','4194','Japan onshore excluding northern main province','Japan - onshore, excluding northern prefectures of ''main province'' (see remarks).',20.37,45.54,122.83,154.05,0);
INSERT INTO "extent" VALUES('EPSG','4195','USA - Oregon - Bend-Redmond-Prineville','United States (USA) - Oregon - Bend-Redmond-Prineville area.',43.76,44.98,-121.88,-119.79,0);
INSERT INTO "extent" VALUES('EPSG','4196','Australia and Macquarie - 156°E to 162°E','Australia including Lord Howe Island and Macquarie Islands - onshore and offshore between 156°E and 162°E.',-60.56,-14.08,156.0,162.01,0);
INSERT INTO "extent" VALUES('EPSG','4197','USA - Oregon - Eugene','United States (USA) - Oregon - Eugene area.',43.74,44.71,-123.8,-122.18,0);
INSERT INTO "extent" VALUES('EPSG','4198','USA - Oregon - Grants Pass-Ashland','United States (USA) - Oregon - Grants Pass-Ashland area.',41.88,42.85,-123.95,-122.37,0);
INSERT INTO "extent" VALUES('EPSG','4199','USA - Oregon - Canyonville-Grants Pass','United States (USA) - Oregon - Canyonville-Grants Pass area.',42.49,43.24,-123.83,-122.43,0);
INSERT INTO "extent" VALUES('EPSG','4200','USA - Oregon - Columbia River East','United States (USA) - Oregon - Columbia River area between approximately 122°03''W and 118°53''W.',45.49,46.08,-122.05,-118.89,0);
INSERT INTO "extent" VALUES('EPSG','4201','USA - Oregon - Gresham-Warm Springs','United States (USA) - Oregon - Gresham-Warm Springs area.',45.02,45.55,-122.43,-121.68,0);
INSERT INTO "extent" VALUES('EPSG','4202','USA - Oregon - Columbia River West','United States (USA) - Oregon - Columbia River area west of approximately 121°30''W.',45.17,46.56,-124.33,-121.47,0);
INSERT INTO "extent" VALUES('EPSG','4203','USA - Oregon - Cottage Grove-Canyonville','United States (USA) - Oregon - Cottage Grove-Canyonville area.',42.82,43.88,-123.96,-122.4,0);
INSERT INTO "extent" VALUES('EPSG','4204','USA - Oregon - Dufur-Madras','United States (USA) - Oregon - Dufur-Madras area.',44.63,45.55,-121.95,-120.46,0);
INSERT INTO "extent" VALUES('EPSG','4205','enter here applicable extent','enter here applicable geographic extent',89.99,90.0,179.99,180.0,0);
INSERT INTO "extent" VALUES('EPSG','4206','USA - Oregon - La Grande','United States (USA) - Oregon - La Grande area.',45.13,45.8,-118.17,-117.14,0);
INSERT INTO "extent" VALUES('EPSG','4207','USA - Oregon - Ontario','United States (USA) - Oregon - Ontario area.',43.41,44.65,-117.9,-116.7,0);
INSERT INTO "extent" VALUES('EPSG','4208','USA - Oregon - Oregon Coast','United States (USA) - Oregon - coastal area.',41.89,46.4,-124.84,-123.35,0);
INSERT INTO "extent" VALUES('EPSG','4209','USA - Oregon - Pendleton','United States (USA) - Oregon - Pendleton area.',45.46,46.02,-119.36,-118.17,0);
INSERT INTO "extent" VALUES('EPSG','4210','USA - Oregon - Pendleton-La Grande','United States (USA) - Oregon - Pendleton-La Grande area.',45.13,45.64,-118.64,-118.09,0);
INSERT INTO "extent" VALUES('EPSG','4211','USA - Oregon - Portland','United States (USA) - Oregon - Portland area.',45.23,46.01,-123.53,-122.11,0);
INSERT INTO "extent" VALUES('EPSG','4212','USA - Oregon - Salem','United States (USA) - Oregon - Salem area.',44.32,45.3,-123.73,-121.89,0);
INSERT INTO "extent" VALUES('EPSG','4213','USA - Oregon - Sweet Home-Sisters','United States (USA) - Oregon - Sweet Home-Santiam Pass-Sisters area.',44.1,44.66,-122.51,-121.69,0);
INSERT INTO "extent" VALUES('EPSG','4214','Papua New Guinea - mainland onshore','Papua New Guinea - mainland onshore.',-10.76,-2.53,140.85,150.96,0);
INSERT INTO "extent" VALUES('EPSG','4215','Vietnam - 103.5°E to 106.5°E onshore','Vietnam - between 103°30''E and 106°30''E, onshore.',8.33,23.4,103.5,106.51,0);
INSERT INTO "extent" VALUES('EPSG','4216','Papua New Guinea - North Fly','Papua New Guinea - North Fly area (between 5°04''S and 6°36''S and west of 141°32''E).',-6.6,-5.05,140.89,141.54,0);
INSERT INTO "extent" VALUES('EPSG','4217','Vietnam - east of 106.5°E onshore','Vietnam - onshore east of 106°30''E.',8.57,22.95,106.5,109.53,0);
INSERT INTO "extent" VALUES('EPSG','4218','Vietnam - Quang Ninh; Da Nang, Quang Nam; Ba Ria-Vung Tau, Dong Nai, Lam Dong','Vietnam - Quang Ninh province; Da Nang municipality and Quang Nam province; Ba Ria-Vung Tau, Dong Nai and Lam Dong provinces.',8.57,21.67,106.43,108.76,0);
INSERT INTO "extent" VALUES('EPSG','4219','USA - Iowa - Mason City','United States (USA) - Iowa - counties of Cerro Gordo; Chickasaw; Floyd; Hancock; Howard; Mitchell; Winnebago; Winneshiek; Worth.',42.9,43.51,-93.98,-91.6,0);
INSERT INTO "extent" VALUES('EPSG','4220','Equatorial Guinea - Bioko','Equatorial Guinea - Bioko onshore.',3.14,3.82,8.37,9.02,0);
INSERT INTO "extent" VALUES('EPSG','4221','Chile - onshore 36°S to 43.5°S','Chile - onshore between 36°S and 43°30''S.',-43.5,-35.99,-74.48,-70.39,0);
INSERT INTO "extent" VALUES('EPSG','4222','Chile - onshore 26°S to 36°S','Chile - onshore between 26°S and 36°S.',-36.0,-26.0,-72.87,-68.28,0);
INSERT INTO "extent" VALUES('EPSG','4223','Asia - Malaysia (west including SCS) and Singapore','Malaysia - West Malaysia onshore and offshore east coast; Singapore - onshore and offshore.',1.13,7.81,99.59,105.82,0);
INSERT INTO "extent" VALUES('EPSG','4224','Chile - onshore 32°S to 36°S','Chile - onshore between 32°S and 36°S.',-36.0,-31.99,-72.87,-69.77,0);
INSERT INTO "extent" VALUES('EPSG','4225','UAE - Abu Dhabi - onshore','United Arab Emirates (UAE) - Abu Dhabi onshore.',22.63,24.95,51.56,56.03,0);
INSERT INTO "extent" VALUES('EPSG','4226','UAE - Abu Dhabi','United Arab Emirates (UAE) - Abu Dhabi onshore and offshore.',22.63,25.64,51.5,56.03,0);
INSERT INTO "extent" VALUES('EPSG','4227','UAE - Abu Dhabi - onshore east of 54°E','United Arab Emirates (UAE) - Abu Dhabi onshore east of 54°E.',22.63,24.95,53.99,56.03,0);
INSERT INTO "extent" VALUES('EPSG','4228','USA - California - San Francisco Bay Area','United States (USA) - California - San Francisco bay area - counties of Alameda, Contra Costa, Marin, Napa, San Francisco, San Mateo, Santa Clara, Santa Cruz, Solano and Sonoma.',36.85,38.87,-123.56,-121.2,0);
INSERT INTO "extent" VALUES('EPSG','4229','UAE - Abu Dhabi island','United Arab Emirates (UAE) - Abu Dhabi island.',24.24,24.64,54.2,54.71,0);
INSERT INTO "extent" VALUES('EPSG','4230','USA - Iowa - Elkader','United States (USA) - Iowa - counties of Allamakee; Clayton; Delaware.',42.29,43.51,-91.62,-90.89,0);
INSERT INTO "extent" VALUES('EPSG','4231','Chile - onshore north of 26°S','Chile - onshore north of 26°S.',-26.0,-17.5,-70.79,-67.0,0);
INSERT INTO "extent" VALUES('EPSG','4232','Chile - onshore north of 32°S','Chile - onshore north of 32°S.',-32.0,-17.5,-71.77,-67.0,0);
INSERT INTO "extent" VALUES('EPSG','4233','USA - Iowa - Sioux City-Iowa Falls','United States (USA) - Iowa - counties of Buena Vista; Calhoun; Cherokee; Franklin; Hamilton; Hardin; Humboldt; Ida; Plymouth; Pocahontas; Sac; Webster; Woodbury; Wright.',42.2,42.92,-96.65,-93.0,0);
INSERT INTO "extent" VALUES('EPSG','4234','USA - Iowa - Waterloo','United States (USA) - Iowa - counties of Black Hawk; Bremer; Buchanan; Butler; Fayette; Grundy.',42.2,43.09,-93.03,-91.59,0);
INSERT INTO "extent" VALUES('EPSG','4235','USA - Iowa - Council Bluffs','United States (USA) - Iowa - counties of Crawford; Fremont; Harrison; Mills; Monona; Pottawattamie; Shelby.',40.58,42.22,-96.37,-95.04,0);
INSERT INTO "extent" VALUES('EPSG','4236','USA - Iowa - Carroll-Atlantic','United States (USA) - Iowa - counties of Adair; Audubon; Carroll; Cass; Greene; Guthrie.',41.15,42.22,-95.16,-94.16,0);
INSERT INTO "extent" VALUES('EPSG','4237','USA - Iowa - Ames-Des Moines','United States (USA) - Iowa - counties of Boone; Dallas; Madison; Polk; Story; Warren.',41.15,42.22,-94.29,-93.23,0);
INSERT INTO "extent" VALUES('EPSG','4238','Asia - Middle East - Iraq and SW Iran','Iraq - onshore; Iran - onshore northern Gulf coast and west bordering southeast Iraq.',29.06,37.39,38.79,51.06,0);
INSERT INTO "extent" VALUES('EPSG','4239','USA - Iowa - Newton','United States (USA) - Iowa - counties of Jasper; Mahaska; Marion; Marshall; Poweshiek; Tama.',41.16,42.3,-93.35,-92.29,0);
INSERT INTO "extent" VALUES('EPSG','4240','USA - Iowa - Cedar Rapids','United States (USA) - Iowa - counties of Benton; Cedar; Iowa; Johnson; Jones; Linn.',41.42,42.3,-92.31,-90.89,0);
INSERT INTO "extent" VALUES('EPSG','4241','USA - Iowa - Dubuque-Davenport','United States (USA) - Iowa - counties of Clinton; Dubuque; Jackson; Scott.',41.44,42.68,-91.14,-90.14,0);
INSERT INTO "extent" VALUES('EPSG','4242','USA - Iowa - Red Oak-Ottumwa','United States (USA) - Iowa - counties of Adams; Appanoose; Clarke; Davis; Decatur; Lucas; Monroe; Montgomery; Page; Ringgold; Taylor; Union; Wapello; Wayne.',40.57,41.17,-95.39,-92.17,0);
INSERT INTO "extent" VALUES('EPSG','4243','USA - Iowa - Fairfield','United States (USA) - Iowa - counties of Jefferson; Keokuk; Van Buren; Washington.',40.59,41.52,-92.42,-91.48,0);
INSERT INTO "extent" VALUES('EPSG','4244','USA - Iowa - Burlington','United States (USA) - Iowa - counties of Des Moines; Henry; Lee; Louisa; Muscatine.',40.37,41.6,-91.72,-90.78,0);
INSERT INTO "extent" VALUES('EPSG','4245','French Southern Territories - Crozet west of 48°E','French Southern Territories - Crozet offshore west of 48°E.',-49.38,-43.12,45.37,48.01,0);
INSERT INTO "extent" VALUES('EPSG','4246','French Southern and Antarctic Territories','French Southern Territories - onshore and offshore: Amsterdam and St Paul, Crozet, Europa and Kerguelen. Antarctica - Adelie Land coastal area.',-67.13,-20.91,37.98,142.0,0);
INSERT INTO "extent" VALUES('EPSG','4247','French Southern Territories - Crozet 48°E to 54°E','French Southern Territories - Crozet onshore and offshore between 48°E to 54°E.',-49.82,-42.61,48.0,54.01,0);
INSERT INTO "extent" VALUES('EPSG','4248','French Southern Territories - Crozet east of 54°E','French Southern Territories - Crozet offshore east of 54°E.',-49.61,-43.3,54.0,57.16,0);
INSERT INTO "extent" VALUES('EPSG','4249','French Southern Territories - 60°E to 66°E','French Southern Territories - Kerguelen offshore west of 66°E.',-53.03,-45.73,62.96,66.0,0);
INSERT INTO "extent" VALUES('EPSG','4250','French Southern Territories - 66°E to 72°E','French Southern Territories - Kerguelen onshore and offshore between 66°E and 72°E.',-53.24,-45.11,66.0,72.01,0);
INSERT INTO "extent" VALUES('EPSG','4251','French Southern Territories - 72°E to 78°E','French Southern Territories - Kerguelen offshore east of 72°E and Amsterdam & St Paul onshore and offshore west of 78°E.',-51.19,-34.47,72.0,78.01,0);
INSERT INTO "extent" VALUES('EPSG','4252','French Southern Territories - east of 78°E','French Southern Territories - Amsterdam & St Paul offshore east of 78°E.',-42.04,-34.5,78.0,81.83,0);
INSERT INTO "extent" VALUES('EPSG','4253','USA - Indiana - Lake and Newton','United States (USA) - Indiana - counties of Lake and Newton.',40.73,41.77,-87.53,-87.21,0);
INSERT INTO "extent" VALUES('EPSG','4254','USA - Indiana - Jasper and Porter','United States (USA) - Indiana - counties of Jasper and Porter.',40.73,41.77,-87.28,-86.92,0);
INSERT INTO "extent" VALUES('EPSG','4255','USA - Indiana - LaPorte, Pulaski, Starke','United States (USA) - Indiana - counties of LaPorte, Pulaski and Starke.',40.9,41.77,-86.94,-86.46,0);
INSERT INTO "extent" VALUES('EPSG','4256','USA - Indiana - Benton','United States (USA) - Indiana - Benton county.',40.47,40.74,-87.53,-87.09,0);
INSERT INTO "extent" VALUES('EPSG','4257','USA - Indiana - Tippecanoe and White','United States (USA) - Indiana - counties of Tippecanoe and White.',40.21,40.92,-87.1,-86.58,0);
INSERT INTO "extent" VALUES('EPSG','4258','USA - Indiana - Carroll','United States (USA) - Indiana - Carroll county.',40.43,40.74,-86.78,-86.37,0);
INSERT INTO "extent" VALUES('EPSG','4259','USA - Indiana - Fountain and Warren','United States (USA) - Indiana - counties of Fountain and Warren.',39.95,40.48,-87.54,-87.09,0);
INSERT INTO "extent" VALUES('EPSG','4260','USA - Indiana - Clinton','United States (USA) - Indiana - Clinton county.',40.17,40.44,-86.7,-86.24,0);
INSERT INTO "extent" VALUES('EPSG','4261','USA - Indiana - Parke and Vermillion','United States (USA) - Indiana - counties of Parke and Vermillion.',39.6,40.15,-87.54,-87.0,0);
INSERT INTO "extent" VALUES('EPSG','4262','USA - Indiana - Montgomery and Putnam','United States (USA) - Indiana - counties of Montgomery and Putnam.',39.47,40.22,-87.1,-86.64,0);
INSERT INTO "extent" VALUES('EPSG','4263','USA - Indiana - Boone and Hendricks','United States (USA) - Indiana - counties of Boone and Hendricks.',39.6,40.19,-86.7,-86.24,0);
INSERT INTO "extent" VALUES('EPSG','4264','USA - Indiana - Vigo','United States (USA) - Indiana - Vigo county.',39.25,39.61,-87.62,-87.19,0);
INSERT INTO "extent" VALUES('EPSG','4265','USA - Indiana - Clay','United States (USA) - Indiana - Clay county.',39.16,39.61,-87.25,-86.93,0);
INSERT INTO "extent" VALUES('EPSG','4266','USA - Indiana - Owen','United States (USA) - Indiana - Owen county.',39.16,39.48,-87.06,-86.63,0);
INSERT INTO "extent" VALUES('EPSG','4267','USA - Indiana - Monroe and Morgan','United States (USA) - Indiana - counties of Monroe and Morgan.',38.99,39.64,-86.69,-86.24,0);
INSERT INTO "extent" VALUES('EPSG','4268','USA - Indiana - Sullivan','United States (USA) - Indiana - Sullivan county.',38.9,39.26,-87.65,-87.24,0);
INSERT INTO "extent" VALUES('EPSG','4269','USA - Indiana - Daviess and Greene','United States (USA) - Indiana - counties of Daviess and Greene.',38.49,39.18,-87.28,-86.68,0);
INSERT INTO "extent" VALUES('EPSG','4270','USA - Indiana - Knox','United States (USA) - Indiana - Knox county.',38.41,38.91,-87.75,-87.09,0);
INSERT INTO "extent" VALUES('EPSG','4271','USA - Indiana - Dubois and Martin','United States (USA) - Indiana - counties of Dubois and Martin.',38.2,38.91,-87.08,-86.67,0);
INSERT INTO "extent" VALUES('EPSG','4272','USA - Indiana - Crawford, Lawrence, Orange','United States (USA) - Indiana - counties of Crawford, Lawrence and Orange.',38.1,39.0,-86.69,-86.24,0);
INSERT INTO "extent" VALUES('EPSG','4273','USA - Indiana - Gibson','United States (USA) - Indiana - Gibson county.',38.16,38.54,-87.98,-87.31,0);
INSERT INTO "extent" VALUES('EPSG','4274','USA - Indiana - Pike and Warrick','United States (USA) - Indiana - counties of Pike and Warrick.',37.87,38.56,-87.48,-87.01,0);
INSERT INTO "extent" VALUES('EPSG','4275','USA - Indiana - Posey','United States (USA) - Indiana - Posey county.',37.77,38.24,-88.06,-87.68,0);
INSERT INTO "extent" VALUES('EPSG','4276','USA - Indiana - Vanderburgh','United States (USA) - Indiana - Vanderburgh county.',37.82,38.17,-87.71,-87.44,0);
INSERT INTO "extent" VALUES('EPSG','4277','USA - Indiana - Spencer','United States (USA) - Indiana - Spencer county.',37.78,38.21,-87.27,-86.76,0);
INSERT INTO "extent" VALUES('EPSG','4278','USA - Indiana - Perry','United States (USA) - Indiana - Perry county.',37.84,38.27,-86.82,-86.43,0);
INSERT INTO "extent" VALUES('EPSG','4279','USA - Indiana - Fulton, Marshall, St Joseph','United States (USA) - Indiana - counties of Fulton, Marshall and St Joseph.',40.9,41.77,-86.53,-85.94,0);
INSERT INTO "extent" VALUES('EPSG','4280','USA - Indiana - Elkhart, Kosciusko, Wabash','United States (USA) - Indiana - counties of Elkhart, Kosciusko and Wabash.',40.65,41.77,-86.08,-85.63,0);
INSERT INTO "extent" VALUES('EPSG','4281','USA - Indiana - LaGrange and Noble','United States (USA) - Indiana - counties of LaGrange and Noble.',41.26,41.77,-85.66,-85.19,0);
INSERT INTO "extent" VALUES('EPSG','4282','USA - Indiana - Steuben','United States (USA) - Indiana - Steuben county.',41.52,41.77,-85.2,-84.8,0);
INSERT INTO "extent" VALUES('EPSG','4283','USA - Indiana - DeKalb','United States (USA) - Indiana - DeKalb county.',41.26,41.54,-85.2,-84.8,0);
INSERT INTO "extent" VALUES('EPSG','4284','USA - Indiana - Huntington and Whitley','United States (USA) - Indiana - counties of Huntington and Whitley.',40.65,41.3,-85.69,-85.3,0);
INSERT INTO "extent" VALUES('EPSG','4285','USA - Indiana - Allen','United States (USA) - Indiana - Allen county.',40.91,41.28,-85.34,-84.8,0);
INSERT INTO "extent" VALUES('EPSG','4286','USA - Indiana - Cass','United States (USA) - Indiana - Cass county.',40.56,40.92,-86.59,-86.16,0);
INSERT INTO "extent" VALUES('EPSG','4287','USA - Indiana - Howard and Miami','United States (USA) - Indiana - counties of Howard and Miami.',40.37,41.0,-86.38,-85.86,0);
INSERT INTO "extent" VALUES('EPSG','4288','USA - Indiana - Wells','United States (USA) - Indiana - Wells county.',40.56,40.92,-85.45,-85.06,0);
INSERT INTO "extent" VALUES('EPSG','4289','USA - Indiana - Adams','United States (USA) - Indiana - Adams county.',40.56,40.93,-85.08,-84.8,0);
INSERT INTO "extent" VALUES('EPSG','4290','USA - Indiana - Grant','United States (USA) - Indiana - Grant county.',40.37,40.66,-85.87,-85.44,0);
INSERT INTO "extent" VALUES('EPSG','4291','USA - Indiana - Blackford and Delaware','United States (USA) - Indiana - counties of Blackford and Delaware.',40.07,40.57,-85.58,-85.2,0);
INSERT INTO "extent" VALUES('EPSG','4292','USA - Indiana - Jay','United States (USA) - Indiana - Jay county.',40.3,40.58,-85.22,-84.8,0);
INSERT INTO "extent" VALUES('EPSG','4293','USA - Indiana - Hamilton and Tipton','United States (USA) - Indiana - counties of Hamilton and Tipton.',39.92,40.41,-86.25,-85.86,0);
INSERT INTO "extent" VALUES('EPSG','4294','USA - Indiana - Hancock and Madison','United States (USA) - Indiana - counties of Hancock and Madison.',39.69,40.38,-85.96,-85.57,0);
INSERT INTO "extent" VALUES('EPSG','4295','USA - Indiana - Randolph and Wayne','United States (USA) - Indiana - counties of Randolph and Wayne.',39.71,40.32,-85.23,-84.8,0);
INSERT INTO "extent" VALUES('EPSG','4296','USA - Indiana - Henry','United States (USA) - Indiana - Henry county.',39.78,40.08,-85.6,-85.2,0);
INSERT INTO "extent" VALUES('EPSG','4297','USA - Indiana - Johnson and Marion','United States (USA) - Indiana - counties of Johnson and Marion.',39.34,39.93,-86.33,-85.93,0);
INSERT INTO "extent" VALUES('EPSG','4298','USA - Indiana - Shelby','United States (USA) - Indiana - Shelby county.',39.34,39.7,-85.96,-85.62,0);
INSERT INTO "extent" VALUES('EPSG','4299','USA - Indiana - Decatur and Rush','United States (USA) - Indiana - counties of Decatur and Rush.',39.13,39.79,-85.69,-85.29,0);
INSERT INTO "extent" VALUES('EPSG','4300','USA - Indiana - Fayette, Franklin, Union','United States (USA) - Indiana - counties of Fayette, Franklin and Union.',39.26,39.79,-85.31,-84.81,0);
INSERT INTO "extent" VALUES('EPSG','4301','USA - Indiana - Brown','United States (USA) - Indiana - Brown county.',39.04,39.35,-86.39,-86.07,0);
INSERT INTO "extent" VALUES('EPSG','4302','USA - Indiana - Bartholomew','United States (USA) - Indiana - Bartholomew county.',39.03,39.36,-86.09,-85.68,0);
INSERT INTO "extent" VALUES('EPSG','4303','USA - Indiana - Jackson','United States (USA) - Indiana - Jackson county.',38.72,39.08,-86.32,-85.79,0);
INSERT INTO "extent" VALUES('EPSG','4304','USA - Indiana - Jennings','United States (USA) - Indiana - Jennings county.',38.8,39.2,-85.8,-85.43,0);
INSERT INTO "extent" VALUES('EPSG','4305','USA - Indiana - Ripley','United States (USA) - Indiana - Ripley county.',38.91,39.32,-85.45,-85.06,0);
INSERT INTO "extent" VALUES('EPSG','4306','USA - Indiana - Dearborn, Ohio, Switzerland','United States (USA) - Indiana - counties of Dearborn, Ohio and Switzerland.',38.68,39.31,-85.21,-84.78,0);
INSERT INTO "extent" VALUES('EPSG','4307','USA - Indiana - Harrison and Washington','United States (USA) - Indiana - counties of Harrison and Washington.',37.95,38.79,-86.33,-85.84,0);
INSERT INTO "extent" VALUES('EPSG','4308','USA - Indiana - Clark, Floyd, Scott','United States (USA) - Indiana - counties of Clark, Floyd and Scott.',38.17,38.84,-86.04,-85.41,0);
INSERT INTO "extent" VALUES('EPSG','4309','USA - Indiana - Jefferson','United States (USA) - Indiana - Jefferson county.',38.58,38.92,-85.69,-85.2,0);
INSERT INTO "extent" VALUES('EPSG','4310','USA - Montana - St Mary valley','United States (USA) - Montana - St Mary''s Valley area.',48.55,49.01,-113.97,-113.0,0);
INSERT INTO "extent" VALUES('EPSG','4311','USA - Montana - Blackfeet reservation','United States (USA) - Montana - Blackfeet Indian Reservation.',48.0,49.01,-113.84,-112.0,0);
INSERT INTO "extent" VALUES('EPSG','4312','USA - Montana - Milk River','United States (USA) - Montana - Milk River area.',47.78,49.01,-112.5,-108.74,0);
INSERT INTO "extent" VALUES('EPSG','4313','USA - Montana - Fort Belknap','United States (USA) - Montana - Fort Belknap Indian Reservation area.',47.78,49.01,-110.84,-106.99,0);
INSERT INTO "extent" VALUES('EPSG','4314','USA - Montana - Fort Peck higher areas','United States (USA) - Montana - Fort Peck Indian Reservation - higher areas, notably in west and north.',48.01,48.88,-107.57,-104.78,0);
INSERT INTO "extent" VALUES('EPSG','4315','USA - Montana - Fort Peck lower areas','United States (USA) - Montana - Fort Peck Indian Reservation - lower areas, notably in south and east.',47.75,49.01,-107.76,-104.04,0);
INSERT INTO "extent" VALUES('EPSG','4316','USA - Montana - Crow reservation','United States (USA) - Montana - Crow Indian Reservation.',44.99,46.09,-108.84,-106.66,0);
INSERT INTO "extent" VALUES('EPSG','4317','USA - Montana - Three Forks','United States (USA) - Montana - Three Forks area.',45.36,46.59,-112.34,-110.75,0);
INSERT INTO "extent" VALUES('EPSG','4318','USA - Montana - Billings','United States (USA) - Montana - Billings area.',44.99,47.41,-109.42,-107.99,0);
INSERT INTO "extent" VALUES('EPSG','4319','USA - Wyoming - Wind River reservation','United States (USA) - Wyoming - Wind River Indian Reservation.',42.69,43.86,-109.5,-107.94,0);
INSERT INTO "extent" VALUES('EPSG','4320','USA - Wisconsin - Ashland','United States (USA) - Wisconsin - Ashland county.',45.98,47.09,-90.93,-90.3,0);
INSERT INTO "extent" VALUES('EPSG','4321','USA - Wisconsin - Bayfield','United States (USA) - Wisconsin - Bayfield county.',46.15,47.01,-91.56,-90.75,0);
INSERT INTO "extent" VALUES('EPSG','4322','Oman - west of 54°E','Oman - onshore and offshore west of 54°E.',14.94,19.67,51.99,54.01,0);
INSERT INTO "extent" VALUES('EPSG','4323','Oman - 54°E to 60°E','Oman - onshore and offshore between 54°E and 60°E.',14.33,26.74,54.0,60.01,0);
INSERT INTO "extent" VALUES('EPSG','4324','Oman - east of 60°E','Oman - offshore east of 60°E.',16.37,24.09,60.0,63.38,0);
INSERT INTO "extent" VALUES('EPSG','4325','USA - Wisconsin - Burnett','United States (USA) - Wisconsin - Burnett county.',45.63,46.16,-92.89,-92.03,0);
INSERT INTO "extent" VALUES('EPSG','4326','USA - Wisconsin - Douglas','United States (USA) - Wisconsin - Douglas county.',46.15,46.76,-92.3,-91.55,0);
INSERT INTO "extent" VALUES('EPSG','4327','USA - Wisconsin - Florence','United States (USA) - Wisconsin - Florence county.',45.71,46.03,-88.69,-88.05,0);
INSERT INTO "extent" VALUES('EPSG','4328','USA - Wisconsin - Forest','United States (USA) - Wisconsin - Forest county.',45.37,46.08,-89.05,-88.42,0);
INSERT INTO "extent" VALUES('EPSG','4329','USA - Wisconsin - Iron','United States (USA) - Wisconsin - Iron county.',45.98,46.6,-90.56,-89.92,0);
INSERT INTO "extent" VALUES('EPSG','4330','USA - Wisconsin - Oneida','United States (USA) - Wisconsin - Oneida county.',45.46,45.91,-90.05,-89.04,0);
INSERT INTO "extent" VALUES('EPSG','4331','USA - Wisconsin - Barron','United States (USA) - Wisconsin - Barron county.',45.2,45.65,-92.16,-91.53,0);
INSERT INTO "extent" VALUES('EPSG','4332','USA - Wisconsin - Price','United States (USA) - Wisconsin - Price county.',45.37,45.99,-90.68,-90.04,0);
INSERT INTO "extent" VALUES('EPSG','4333','USA - Wisconsin - Sawyer','United States (USA) - Wisconsin - Sawyer county.',45.63,46.16,-91.56,-90.67,0);
INSERT INTO "extent" VALUES('EPSG','4334','USA - Wisconsin - Vilas','United States (USA) - Wisconsin - Vilas county.',45.85,46.3,-90.05,-88.93,0);
INSERT INTO "extent" VALUES('EPSG','4335','USA - Wisconsin - Washburn','United States (USA) - Wisconsin - Washburn county.',45.63,46.16,-92.06,-91.54,0);
INSERT INTO "extent" VALUES('EPSG','4336','USA - Wisconsin - Brown','United States (USA) - Wisconsin - Brown county.',44.24,44.68,-88.26,-87.76,0);
INSERT INTO "extent" VALUES('EPSG','4337','USA - Wisconsin - Buffalo','United States (USA) - Wisconsin - Buffalo county.',44.02,44.6,-92.09,-91.52,0);
INSERT INTO "extent" VALUES('EPSG','4338','USA - Wisconsin - Chippewa','United States (USA) - Wisconsin - Chippewa county.',44.85,45.3,-91.67,-90.92,0);
INSERT INTO "extent" VALUES('EPSG','4339','USA - Wisconsin - Clark','United States (USA) - Wisconsin - Clark county.',44.42,45.04,-90.93,-90.31,0);
INSERT INTO "extent" VALUES('EPSG','4340','USA - Wisconsin - Door','United States (USA) - Wisconsin - Door county.',44.67,45.43,-87.74,-86.8,0);
INSERT INTO "extent" VALUES('EPSG','4341','USA - Wisconsin - Dunn','United States (USA) - Wisconsin - Dunn county.',44.68,45.21,-92.16,-91.64,0);
INSERT INTO "extent" VALUES('EPSG','4342','USA - Wisconsin - Eau Claire','United States (USA) - Wisconsin - Eau Claire county.',44.59,44.86,-91.66,-90.92,0);
INSERT INTO "extent" VALUES('EPSG','4343','USA - Wisconsin - Jackson','United States (USA) - Wisconsin - Jackson county.',44.07,44.6,-91.17,-90.31,0);
INSERT INTO "extent" VALUES('EPSG','4344','USA - Wisconsin - Langlade','United States (USA) - Wisconsin - Langlade county.',45.02,45.48,-89.43,-88.63,0);
INSERT INTO "extent" VALUES('EPSG','4345','USA - Wisconsin - Lincoln','United States (USA) - Wisconsin - Lincoln county.',45.11,45.56,-90.05,-89.42,0);
INSERT INTO "extent" VALUES('EPSG','4346','USA - Wisconsin - Marathon','United States (USA) - Wisconsin - Marathon county.',44.68,45.13,-90.32,-89.22,0);
INSERT INTO "extent" VALUES('EPSG','4347','USA - Wisconsin - Marinette','United States (USA) - Wisconsin - Marinette county.',44.96,45.8,-88.43,-87.48,0);
INSERT INTO "extent" VALUES('EPSG','4348','USA - Wisconsin - Menominee','United States (USA) - Wisconsin - Menominee county.',44.85,45.12,-88.99,-88.48,0);
INSERT INTO "extent" VALUES('EPSG','4349','USA - Wisconsin - Oconto','United States (USA) - Wisconsin - Oconto county.',44.67,45.38,-88.69,-87.76,0);
INSERT INTO "extent" VALUES('EPSG','4350','USA - Wisconsin - Pepin and Pierce','United States (USA) - Wisconsin - counties of Pepin and Pierce.',44.4,44.87,-92.81,-91.65,0);
INSERT INTO "extent" VALUES('EPSG','4351','USA - Wisconsin - Polk','United States (USA) - Wisconsin - Polk county.',45.2,45.73,-92.89,-92.15,0);
INSERT INTO "extent" VALUES('EPSG','4352','USA - Wisconsin - Portage','United States (USA) - Wisconsin - Portage county.',44.24,44.69,-89.85,-89.22,0);
INSERT INTO "extent" VALUES('EPSG','4353','USA - Wisconsin - Rusk','United States (USA) - Wisconsin - Rusk county.',45.29,45.64,-91.55,-90.67,0);
INSERT INTO "extent" VALUES('EPSG','4354','USA - Wisconsin - Shawano','United States (USA) - Wisconsin - Shawano county.',44.58,45.03,-89.23,-88.24,0);
INSERT INTO "extent" VALUES('EPSG','4355','USA - Wisconsin - St. Croix','United States (USA) - Wisconsin - St. Croix county.',44.85,45.22,-92.81,-92.13,0);
INSERT INTO "extent" VALUES('EPSG','4356','USA - Wisconsin - Taylor','United States (USA) - Wisconsin - Taylor county.',45.03,45.39,-90.93,-90.04,0);
INSERT INTO "extent" VALUES('EPSG','4357','USA - Wisconsin - Trempealeau','United States (USA) - Wisconsin - Trempealeau county.',43.98,44.6,-91.62,-91.15,0);
INSERT INTO "extent" VALUES('EPSG','4358','USA - Wisconsin - Waupaca','United States (USA) - Wisconsin - Waupaca county.',44.24,44.69,-89.23,-88.6,0);
INSERT INTO "extent" VALUES('EPSG','4359','USA - Wisconsin - Wood','United States (USA) - Wisconsin - Wood county.',44.24,44.69,-90.32,-89.72,0);
INSERT INTO "extent" VALUES('EPSG','4360','USA - Wisconsin - Adams and Juneau','United States (USA) - Wisconsin - counties of Adams and Juneau.',43.64,44.25,-90.32,-89.59,0);
INSERT INTO "extent" VALUES('EPSG','4361','USA - Wisconsin - Calumet, Fond du Lac, Outagamie and Winnebago','United States (USA) - Wisconsin - counties of Calumet, Fond du Lac, Outagamie and Winnebago.',43.54,44.6,-88.89,-88.04,0);
INSERT INTO "extent" VALUES('EPSG','4362','USA - Wisconsin - Columbia','United States (USA) - Wisconsin - Columbia county.',43.28,43.65,-89.79,-89.0,0);
INSERT INTO "extent" VALUES('EPSG','4363','USA - Wisconsin - Crawford','United States (USA) - Wisconsin - Crawford county.',42.98,43.43,-91.22,-90.66,0);
INSERT INTO "extent" VALUES('EPSG','4364','USA - Wisconsin - Dane','United States (USA) - Wisconsin - Dane county.',42.84,43.3,-89.84,-89.0,0);
INSERT INTO "extent" VALUES('EPSG','4365','USA - Wisconsin - Dodge and Jefferson','United States (USA) - Wisconsin - counties of Dodge and Jefferson.',42.84,43.64,-89.02,-88.4,0);
INSERT INTO "extent" VALUES('EPSG','4366','USA - Wisconsin - Grant','United States (USA) - Wisconsin - Grant county.',42.5,43.22,-91.16,-90.42,0);
INSERT INTO "extent" VALUES('EPSG','4367','USA - Wisconsin - Green and Lafayette','United States (USA) - Wisconsin - counties of Green and Lafayette.',42.5,42.86,-90.43,-89.36,0);
INSERT INTO "extent" VALUES('EPSG','4368','USA - Wisconsin - Green Lake and Marquette','United States (USA) - Wisconsin - counties of Green Lake and Marquette.',43.63,43.99,-89.6,-88.88,0);
INSERT INTO "extent" VALUES('EPSG','4369','USA - Wisconsin - Iowa','United States (USA) - Wisconsin - Iowa county.',42.81,43.21,-90.43,-89.83,0);
INSERT INTO "extent" VALUES('EPSG','4370','USA - Wisconsin - Kenosha, Milwaukee, Ozaukee and Racine','United States (USA) - Wisconsin - counties of Kenosha, Milwaukee, Ozaukee and Racine.',42.49,43.55,-88.31,-87.75,0);
INSERT INTO "extent" VALUES('EPSG','4371','USA - Wisconsin - Kewaunee, Manitowoc and Sheboygan','United States (USA) - Wisconsin - counties of Kewaunee, Manitowoc and Sheboygan.',43.54,44.68,-88.17,-87.37,0);
INSERT INTO "extent" VALUES('EPSG','4372','USA - Wisconsin - La Crosse','United States (USA) - Wisconsin - La Crosse county.',43.72,44.1,-91.43,-90.91,0);
INSERT INTO "extent" VALUES('EPSG','4373','USA - Wisconsin - Monroe','United States (USA) - Wisconsin - Monroe county.',43.72,44.17,-90.98,-90.31,0);
INSERT INTO "extent" VALUES('EPSG','4374','USA - Wisconsin - Richland','United States (USA) - Wisconsin - Richland county.',43.16,43.56,-90.68,-90.19,0);
INSERT INTO "extent" VALUES('EPSG','4375','USA - Wisconsin - Rock','United States (USA) - Wisconsin - Rock county.',42.49,42.85,-89.37,-88.77,0);
INSERT INTO "extent" VALUES('EPSG','4376','USA - Wisconsin - Sauk','United States (USA) - Wisconsin - Sauk county.',43.14,43.65,-90.32,-89.59,0);
INSERT INTO "extent" VALUES('EPSG','4377','USA - Wisconsin - Vernon','United States (USA) - Wisconsin - Vernon county.',43.42,43.74,-91.28,-90.31,0);
INSERT INTO "extent" VALUES('EPSG','4378','USA - Wisconsin - Walworth','United States (USA) - Wisconsin - Walworth county.',42.49,42.85,-88.78,-88.3,0);
INSERT INTO "extent" VALUES('EPSG','4379','USA - Wisconsin - Washington','United States (USA) - Wisconsin - Washington county.',43.19,43.55,-88.42,-88.03,0);
INSERT INTO "extent" VALUES('EPSG','4380','USA - Wisconsin - Waukesha','United States (USA) - Wisconsin - Waukesha county.',42.84,43.2,-88.55,-88.06,0);
INSERT INTO "extent" VALUES('EPSG','4381','USA - Wisconsin - Waushara','United States (USA) - Wisconsin - Waushara county.',43.98,44.25,-89.6,-88.88,0);
INSERT INTO "extent" VALUES('EPSG','4382','Algeria - Ain Tsila','Algeria - Ain Tsila field.',27.4,28.1,7.66,8.27,0);
INSERT INTO "extent" VALUES('EPSG','4383','Papua New Guinea - onshore south of 5°S and west of 144°E','Papua New Guinea - onshore south of 5°S and west of 144°E.',-9.35,-5.0,140.85,144.01,0);
INSERT INTO "extent" VALUES('EPSG','4384','Papua New Guinea - 0°N to 12°S and 140°E to 158°E','Papua New Guinea - between 0°N and 12°S and 140°E and 158°E - onshore and offshore.',-12.0,0.01,140.0,158.01,0);
INSERT INTO "extent" VALUES('EPSG','4385','Kyrgyzstan - west of 70°01''E','Kyrgyzstan - west of 70°01''E.',39.51,40.22,69.24,70.02,0);
INSERT INTO "extent" VALUES('EPSG','4386','Kyrgyzstan - 70°01''E to 73°01''E','Kyrgyzstan - between 70°01''E and 73°01''E.',39.19,42.83,70.01,73.02,0);
INSERT INTO "extent" VALUES('EPSG','4387','Kyrgyzstan - 73°01''E to 76°01''E','Kyrgyzstan - between 73°01''E and 76°01''E.',39.35,43.22,73.01,76.02,0);
INSERT INTO "extent" VALUES('EPSG','4388','Kyrgyzstan - 76°01''E to 79°01''E','Kyrgyzstan - between 76°01''E and 79°01''E.',40.35,43.0,76.01,79.02,0);
INSERT INTO "extent" VALUES('EPSG','4389','Kyrgyzstan - east of 79°01''E','Kyrgyzstan - east of 79°01''E.',41.66,42.8,79.01,80.29,0);
INSERT INTO "extent" VALUES('EPSG','4390','UK - Britain and UKCS 49°45''N to 61°N, 9°W to 2°E','United Kingdom (UK) - offshore to boundary of UKCS within 49°45''N to 61°N and 9°W to 2°E; onshore Great Britain (England, Wales and Scotland). Isle of Man onshore.',49.75,61.01,-9.0,2.01,0);
INSERT INTO "extent" VALUES('EPSG','4391','UK - offshore 49°45''N to 61°N, 9°W to 2°E','United Kingdom (UK) - offshore between 2km from shore and boundary of UKCS within 49°46''N to 61°01''N and 7°33''W to 3°33''E.',49.75,61.01,-9.0,2.01,0);
INSERT INTO "extent" VALUES('EPSG','4392','India - northeast','India - Arunachal Pradesh, Assam, Manipur, Meghalaya, Mizoram, Nagaland and Tripura.',21.94,29.47,89.69,97.42,0);
INSERT INTO "extent" VALUES('EPSG','4393','To be specified','Description of the extent of the CRS.',-90.0,90.0,-180.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','4394','India - Andhra Pradesh and Telangana','India - Andhra Pradesh; Telangana; Yanam area of Pudacherry territory.',12.61,19.92,76.75,84.81,0);
INSERT INTO "extent" VALUES('EPSG','4395','India - Arunachal Pradesh','India - Arunachal Pradesh.',26.65,29.47,91.55,97.42,0);
INSERT INTO "extent" VALUES('EPSG','4396','India - Assam','India - Assam.',24.13,27.98,89.69,96.03,0);
INSERT INTO "extent" VALUES('EPSG','4397','India - Bihar','India - Bihar.',24.28,27.86,83.31,88.3,0);
INSERT INTO "extent" VALUES('EPSG','4398','India - Chhattisgarh','India - Chhattisgarh.',17.78,24.11,80.23,84.39,0);
INSERT INTO "extent" VALUES('EPSG','4399','India - Goa','India - Goa.',14.86,15.8,73.61,74.35,0);
INSERT INTO "extent" VALUES('EPSG','4400','India - Gujarat','India - Gujarat and union territories of Daman, Diu, Dadra and Nagar Haveli.',20.05,24.71,68.13,74.48,0);
INSERT INTO "extent" VALUES('EPSG','4401','India - Haryana','India - Haryana including Chandigarh.',27.65,30.94,74.46,77.6,0);
INSERT INTO "extent" VALUES('EPSG','4402','India - Himachal Pradesh','India - Himachal Pradesh.',30.38,33.26,75.57,79.0,0);
INSERT INTO "extent" VALUES('EPSG','4403','India - Jammu and Kashmir','India - Jammu and Kashmir.',32.27,35.51,73.76,79.57,0);
INSERT INTO "extent" VALUES('EPSG','4404','India - Jharkhand','India - Jharkhand.',21.96,25.35,83.32,87.98,0);
INSERT INTO "extent" VALUES('EPSG','4405','India - Karnataka','India - Karnataka.',11.57,18.46,74.0,78.58,0);
INSERT INTO "extent" VALUES('EPSG','4406','India - Kerala','India - Kerala; Mayyazhi (Mahe) area of Pudacherry territory.',8.25,12.8,74.81,77.4,0);
INSERT INTO "extent" VALUES('EPSG','4407','India - Madhya Pradesh','India - Madhya Pradesh.',21.07,26.88,74.03,82.81,0);
INSERT INTO "extent" VALUES('EPSG','4408','India - Maharashtra','India - Maharashtra.',15.6,22.04,72.6,80.9,0);
INSERT INTO "extent" VALUES('EPSG','4409','India - Manipur','India - Manipur.',23.84,25.7,92.97,94.76,0);
INSERT INTO "extent" VALUES('EPSG','4410','India - Meghalaya','India - Meghalaya.',25.03,26.12,89.82,92.81,0);
INSERT INTO "extent" VALUES('EPSG','4411','India - Mizoram','India - Mizoram.',21.94,24.53,92.25,93.45,0);
INSERT INTO "extent" VALUES('EPSG','4412','India - Nagaland','India - Nagaland.',25.2,27.05,93.33,95.25,0);
INSERT INTO "extent" VALUES('EPSG','4413','India - Odisha','India - Odisha (Orissa).',17.8,22.57,81.38,87.5,0);
INSERT INTO "extent" VALUES('EPSG','4414','India - Punjab','India - Punjab including Chandigarh.',29.54,32.58,73.87,76.94,0);
INSERT INTO "extent" VALUES('EPSG','4415','India - Rajasthan','India - Rajasthan.',23.06,30.2,69.48,78.27,0);
INSERT INTO "extent" VALUES('EPSG','4416','India - Sikkim','India - Sikkim.',27.08,28.14,88.01,88.92,0);
INSERT INTO "extent" VALUES('EPSG','4417','India - Tamil Nadu','India - Tamil Nadu; Pudacherry and Karaikal areas of Pudacherry territory.',8.02,13.59,76.22,80.4,0);
INSERT INTO "extent" VALUES('EPSG','4418','India - Tripura','India - Tripura.',22.94,24.54,91.15,92.34,0);
INSERT INTO "extent" VALUES('EPSG','4419','India - Uttar Pradesh','India - Uttar Pradesh.',23.87,30.42,77.08,84.64,0);
INSERT INTO "extent" VALUES('EPSG','4420','India - Uttarakhand','India - Uttarakhand (Uttaranchal).',28.71,31.48,77.56,81.02,0);
INSERT INTO "extent" VALUES('EPSG','4421','India - West Bengal','India - West Bengal.',21.49,27.23,85.82,89.88,0);
INSERT INTO "extent" VALUES('EPSG','4422','India - Delhi','India - Delhi national capital territory.',28.4,28.89,76.83,77.34,0);
INSERT INTO "extent" VALUES('EPSG','4423','India - Andaman and Nicobar Islands','India - Andaman and Nicobar Islands.',6.7,13.73,92.15,94.33,0);
INSERT INTO "extent" VALUES('EPSG','4424','India - Lakshadweep','India - Lakshadweep (Laccadive, Minicoy, and Aminidivi Islands).',8.21,11.76,72.04,73.76,0);
INSERT INTO "extent" VALUES('EPSG','4425','Papua New Guinea - onshore - Central province and Gulf province east of 144°E','Papua New Guinea - onshore - Gulf province east of 144°24''E, Central province and National Capital District.',-10.42,-6.67,144.4,149.67,0);
INSERT INTO "extent" VALUES('EPSG','4426','Bulgaria - east of 30°E','Bulgaria - offshore east of 30°E.',42.56,43.67,30.0,31.35,0);
INSERT INTO "extent" VALUES('EPSG','4427','Bulgaria - 24°E to 30°E','Bulgaria - onshore east of 24°E, offshore west of 30°E.',41.24,44.15,24.0,30.01,0);
INSERT INTO "extent" VALUES('EPSG','4428','Bulgaria - west of 24°E','Bulgaria - west of 24°E.',41.32,44.23,22.36,24.0,0);
INSERT INTO "extent" VALUES('EPSG','4429','Ukraine - 25°E to 28°E','Ukraine - between 25°E and 28°E.',47.72,51.96,25.0,28.01,0);
INSERT INTO "extent" VALUES('EPSG','4430','Ukraine - 28°E to 31°E onshore','Ukraine - between 28°E and 31°E, onshore.',45.18,52.09,28.0,31.01,0);
INSERT INTO "extent" VALUES('EPSG','4431','Ukraine - 31°E to 34°E onshore','Ukraine - between 31°E and 34°E, onshore.',44.32,52.38,31.0,34.01,0);
INSERT INTO "extent" VALUES('EPSG','4432','Ukraine - 34°E to 37°E onshore','Ukraine - between 34°E and 37°E, onshore.',44.33,52.25,34.0,37.01,0);
INSERT INTO "extent" VALUES('EPSG','4433','Ukraine - 37°E to 40°E onshore','Ukraine - between 37°E and 40°E, onshore.',46.8,50.44,37.0,40.01,0);
INSERT INTO "extent" VALUES('EPSG','4434','Ukraine - east of 40°E','Ukraine - east of 40°E.',48.8,49.62,40.0,40.18,0);
INSERT INTO "extent" VALUES('EPSG','4435','Ukraine - west of 25°E','Ukraine - west of 25°E.',47.71,51.92,22.15,25.01,0);
INSERT INTO "extent" VALUES('EPSG','4436','Australia - Western Australia - Kalgoorlie','Australia - Western Australia - Kalgoorlie area.',-32.25,-28.75,121.0,121.84,0);
INSERT INTO "extent" VALUES('EPSG','4437','Australia - Western Australia - Busselton','Australia - Western Australia - Busselton area onshore below 250m AHD.',-33.75,-33.4,115.18,115.87,0);
INSERT INTO "extent" VALUES('EPSG','4438','Australia - Western Australia - Barrow','Australia - Western Australia - Barrow Island and Onslow area onshore.',-22.2,-20.21,114.9,115.59,0);
INSERT INTO "extent" VALUES('EPSG','4439','Australia - Western Australia - Albany','Australia - Western Australia - Albany area onshore below 190m AHD.',-35.21,-34.75,117.55,118.22,0);
INSERT INTO "extent" VALUES('EPSG','4440','Australia - Western Australia - Jurien Bay','Australia - Western Australia - Jurien Bay area onshore below 200m AHD.',-30.74,-29.08,114.83,115.34,0);
INSERT INTO "extent" VALUES('EPSG','4441','Australia - Western Australia - Broome','Australia - Western Australia - Broome area onshore below 130m AHD.',-18.09,-16.75,122.08,122.62,0);
INSERT INTO "extent" VALUES('EPSG','4442','Australia - Western Australia - Carnarvon','Australia - Western Australia - Carnarvon area onshore.',-25.5,-23.0,113.33,114.0,0);
INSERT INTO "extent" VALUES('EPSG','4443','Australia - Western Australia - Collie','Australia - Western Australia - Collie area between 50m and 310m AHD.',-34.67,-33.25,115.73,116.4,0);
INSERT INTO "extent" VALUES('EPSG','4444','Australia - Western Australia - Kalbarri','Australia - Western Australia - Kalbarri area onshore.',-28.5,-27.16,113.9,114.75,0);
INSERT INTO "extent" VALUES('EPSG','4445','Australia - Western Australia - Esperance','Australia - Western Australia - Esperance area onshore.',-34.5,-33.33,121.56,122.2,0);
INSERT INTO "extent" VALUES('EPSG','4446','Albania - north of 41°18''N and east of 19°09''E','Albania - north of 41°18''N and east of 19°09''E, onshore and offshore.',41.3,42.67,19.14,20.63,0);
INSERT INTO "extent" VALUES('EPSG','4447','DR Congo (Zaire) - offshore','The Democratic Republic of the Congo (Zaire) - offshore.',-6.04,-5.79,11.79,12.37,0);
INSERT INTO "extent" VALUES('EPSG','4448','Australia - Western Australia - Exmouth','Australia - Western Australia - Exmouth area onshore below 160m AHD.',-22.42,-21.75,113.75,114.25,0);
INSERT INTO "extent" VALUES('EPSG','4449','Australia - Western Australia - Geraldton','Australia - Western Australia - Geraldton area onshore below 195m AHD.',-29.1,-28.48,114.51,115.0,0);
INSERT INTO "extent" VALUES('EPSG','4450','USA - Arizona - Pima county west','United States (USA) - Arizona - Pima county - west of the township line between ranges R2W and R3W, Gila and Salt River Meridian (west of approximately 112°31''W).',31.8,32.51,-113.33,-112.51,0);
INSERT INTO "extent" VALUES('EPSG','4451','Australia - Western Australia - Karratha','Australia - Western Australia - Karratha area onshore.',-20.92,-20.25,116.58,117.25,0);
INSERT INTO "extent" VALUES('EPSG','4452','Australia - Western Australia - Kununurra','Australia - Western Australia - Kununurra area onshore below 200m AHD.',-16.75,-14.75,128.5,129.0,0);
INSERT INTO "extent" VALUES('EPSG','4453','Australia - Western Australia - Lancelin','Australia - Western Australia - Lancelin area onshore below 200m AHD.',-31.49,-30.71,115.15,115.62,0);
INSERT INTO "extent" VALUES('EPSG','4454','Greenland - 58°N to 85°N','Greenland - onshore and offshore between 58°N and 85°N and west of 7°W.',58.0,85.01,-75.0,-6.99,0);
INSERT INTO "extent" VALUES('EPSG','4455','Europe - Upper Austria, Salzburg and Bohemia','Austria - Upper Austria and Salzburg provinces. Czechia - Bohemia.',46.93,51.06,12.07,16.83,0);
INSERT INTO "extent" VALUES('EPSG','4456','Europe - Lower Austria and Moravia','Austria - Lower Austria. Czechia - Moravia and Czech Silesia.',47.42,50.45,14.41,18.86,0);
INSERT INTO "extent" VALUES('EPSG','4457','Australia - Western Australia - Margaret River','Australia - Western Australia - Margaret River area onshore below 200m AHD.',-34.42,-33.51,114.96,115.24,0);
INSERT INTO "extent" VALUES('EPSG','4458','USA - Oregon - Riley-Lakeview','United States (USA) - Oregon - Riley-Lakeview area.',41.88,43.45,-120.97,-119.15,0);
INSERT INTO "extent" VALUES('EPSG','4459','USA - Oregon - Burns-Harper','United States (USA) - Oregon - Burns-Harper area.',43.49,44.19,-118.61,-117.49,0);
INSERT INTO "extent" VALUES('EPSG','4460','USA - Arizona - Pima county central','United States (USA) - Arizona - Pima county - between the township line between ranges R2W and R3W and the township line between ranges R7E and R8E, Gila and Salt River Meridian (between approximately 112°31''W and 111°34''W).',31.5,32.51,-112.52,-111.56,0);
INSERT INTO "extent" VALUES('EPSG','4461','Greenland - 59°N to 84°N','Greenland - onshore and offshore between 59°N and 84°N and west of 10°W.',59.0,84.01,-75.0,-10.0,0);
INSERT INTO "extent" VALUES('EPSG','4462','Australia - Western Australia - Perth','Australia - Western Australia - Perth area onshore below 165m AHD.',-33.42,-31.33,115.44,116.09,0);
INSERT INTO "extent" VALUES('EPSG','4463','USA - Oregon - Siskiyou Pass','United States (USA) - Oregon - Siskiyou Pass area.',41.95,42.46,-122.71,-121.96,0);
INSERT INTO "extent" VALUES('EPSG','4464','USA - onshore - AZ MI MT ND OR SC','United States (USA) - onshore - Arizona; Michigan; Montana; North Dakota; Oregon; South Carolina.',31.33,49.01,-124.6,-78.52,0);
INSERT INTO "extent" VALUES('EPSG','4465','USA - Oregon - Canyon City-Burns','United States (USA) - Oregon - Canyon City-Burns area.',43.52,44.36,-119.22,-118.52,0);
INSERT INTO "extent" VALUES('EPSG','4466','Australia - Western Australia - Port Hedland','Australia - Western Australia - Port Hedland area onshore.',-20.79,-20.1,118.25,118.97,0);
INSERT INTO "extent" VALUES('EPSG','4467','Trinidad and Tobago - offshore west of 60°W','Trinidad and Tobago - offshore west of 60°W.',9.83,12.34,-62.09,-59.99,0);
INSERT INTO "extent" VALUES('EPSG','4468','Trinidad and Tobago - offshore east of 60°W','Trinidad and Tobago - offshore east of 60°W.',9.95,12.19,-60.0,-57.28,0);
INSERT INTO "extent" VALUES('EPSG','4469','Angola - onshore','Angola - onshore including Cabinda.',-18.02,-4.38,11.67,24.09,0);
INSERT INTO "extent" VALUES('EPSG','4470','USA - Oregon - Ukiah-Fox','United States (USA) - Oregon - Ukiah-Fox area.',44.52,45.21,-119.35,-118.64,0);
INSERT INTO "extent" VALUES('EPSG','4471','USA - Oregon - Coast Range North','United States (USA) - Oregon - Coast Range North area.',45.4,45.98,-123.81,-123.01,0);
INSERT INTO "extent" VALUES('EPSG','4472','USA - Arizona - Pima county east','United States (USA) - Arizona - Pima county - east of the township line between ranges R7E and R8E, Gila and Salt River Meridian (east of approximately 111°34''W).',31.43,32.52,-111.57,-110.44,0);
INSERT INTO "extent" VALUES('EPSG','4473','USA - Arizona - Pima county Mt. Lemmon','United States (USA) - Arizona - Pima county - Catalina Highway corridor between Mt. Lemmon and Willow Canyon.',32.33,32.49,-110.87,-110.61,0);
INSERT INTO "extent" VALUES('EPSG','4474','USA - Oregon - Dayville-Prairie City','United States (USA) - Oregon - Dayville-Prairie City area.',44.24,44.94,-119.89,-118.61,0);
INSERT INTO "extent" VALUES('EPSG','4475','USA - Oregon - Denio-Burns','United States (USA) - Oregon - Denio-Burns area.',41.88,43.54,-119.41,-117.67,0);
INSERT INTO "extent" VALUES('EPSG','4476','USA - Oregon - Halfway','United States (USA) - Oregon - Halfway area.',44.61,45.28,-117.61,-116.63,0);
INSERT INTO "extent" VALUES('EPSG','4477','USA - Oregon - Medford-Diamond Lake','United States (USA) - Oregon - Medford-Diamond Lake area.',42.53,43.34,-122.73,-121.71,0);
INSERT INTO "extent" VALUES('EPSG','4478','USA - Oregon - Mitchell','United States (USA) - Oregon - Mitchell area.',44.38,44.78,-120.56,-119.82,0);
INSERT INTO "extent" VALUES('EPSG','4479','USA - Oregon - North Central','United States (USA) - Oregon - North Central area.',44.89,45.95,-121.79,-119.03,0);
INSERT INTO "extent" VALUES('EPSG','4480','USA - Oregon - Wallowa','United States (USA) - Oregon - Wallowa area.',45.27,46.05,-118.16,-116.42,0);
INSERT INTO "extent" VALUES('EPSG','4481','USA - Oregon - Ochoco Summit','United States (USA) - Oregon - Ochoco Summit area.',44.21,44.61,-121.01,-120.31,0);
INSERT INTO "extent" VALUES('EPSG','4482','USA - Oregon - Owyhee','United States (USA) - Oregon - Owyhee area.',41.88,43.54,-118.14,-116.85,0);
INSERT INTO "extent" VALUES('EPSG','4483','USA - Oregon - Pilot Rock-Ukiah','United States (USA) - Oregon - Pilot Rock-Ukiah area.',44.99,46.04,-119.65,-118.11,0);
INSERT INTO "extent" VALUES('EPSG','4484','USA - Oregon - Prairie City-Brogan','United States (USA) - Oregon - Prairie City-Brogan area.',44.16,45.02,-118.77,-117.48,0);
INSERT INTO "extent" VALUES('EPSG','4485','USA - Nevada - Las Vegas','United States (USA) - Nevada - Las Vegas area below approximately 3000 feet.',35.88,36.43,-115.5,-114.71,0);
INSERT INTO "extent" VALUES('EPSG','4486','USA - Oregon - Warner Highway','United States (USA) - Oregon - Warner Highway area.',41.95,42.43,-120.42,-119.3,0);
INSERT INTO "extent" VALUES('EPSG','4487','USA - Nevada - Las Vegas high elevation','United States (USA) - Nevada - Las Vegas area above approximately 2850 feet.',35.88,36.43,-115.5,-114.71,0);
INSERT INTO "extent" VALUES('EPSG','4488','USA - Oregon - Willamette Pass','United States (USA) - Oregon - Willamette Pass area.',42.99,44.18,-122.26,-121.48,0);
INSERT INTO "extent" VALUES('EPSG','4489','Antarctica - Adelie Land coastal area west of 138°E','Antarctica - Adelie Land - coastal area between 136°E and 138°E.',-66.73,-65.61,136.0,138.01,0);
INSERT INTO "extent" VALUES('EPSG','4490','Germany - Hamburg','Germany - Hamburg, including Neuwerk, Nigehörn, Scharhörn and surrounding maritime area.',53.36,53.99,8.33,10.41,0);
INSERT INTO "extent" VALUES('EPSG','4491','Australia - Queensland - Weipa','Australia - Queensland - Weipa area between 141°30''E and 142°30''E.',-13.5,-11.49,141.5,142.51,0);
INSERT INTO "extent" VALUES('EPSG','4492','Antarctica - Adelie Land coastal area east of 138°E','Antarctica - Adelie Land - coastal area between 138°E and 142°E.',-67.13,-66.1,138.0,142.0,0);
INSERT INTO "extent" VALUES('EPSG','4493','Australia Christmas and Cocos - onshore','Australia - Australian Capital Territory, New South Wales, Northern Territory, Queensland, South Australia, Tasmania, Western Australia and Victoria - onshore. Christmas Island - onshore. Cocos and Keeling Islands - onshore.',-43.7,-9.86,96.76,153.69,0);
INSERT INTO "extent" VALUES('EPSG','4494','USA - Kansas - Hays','United States (USA) - Kansas - counties of Ellis; Graham; Norton; Phillips; Rooks; Trego.',38.69,40.01,-100.19,-99.03,0);
INSERT INTO "extent" VALUES('EPSG','4495','USA - Kansas - Goodland','United States (USA) - Kansas - counties of Cheyenne; Sherman; Wallace.',38.69,40.01,-102.06,-101.38,0);
INSERT INTO "extent" VALUES('EPSG','4496','USA - Kansas - Colby','United States (USA) - Kansas - counties of Logan; Rawlins; Thomas.',38.69,40.01,-101.49,-100.71,0);
INSERT INTO "extent" VALUES('EPSG','4497','USA - Kansas - Oberlin','United States (USA) - Kansas - counties of Decatur; Gove; Sheridan.',38.69,40.01,-100.82,-100.14,0);
INSERT INTO "extent" VALUES('EPSG','4498','USA - Kansas - Great Bend','United States (USA) - Kansas - counties of Barton; Osborne; Russell; Smith.',38.26,40.01,-99.07,-98.47,0);
INSERT INTO "extent" VALUES('EPSG','4499','USA - Kansas - Beloit','United States (USA) - Kansas - counties of Ellsworth; Jewell; Lincoln; Mitchell; Rice.',38.15,40.01,-98.51,-97.92,0);
INSERT INTO "extent" VALUES('EPSG','4500','USA - Kansas - Salina','United States (USA) - Kansas - counties of Clay; Cloud; Dickinson; Marion; McPherson; Ottawa; Republic; Saline; Washington.',38.08,40.01,-97.94,-96.8,0);
INSERT INTO "extent" VALUES('EPSG','4501','USA - Kansas - Manhattan','United States (USA) - Kansas - counties of Geary; Pottawatomie; Riley; Wabaunsee.',38.73,39.57,-96.97,-95.94,0);
INSERT INTO "extent" VALUES('EPSG','4502','USA - Kansas - Emporia','United States (USA) - Kansas - counties of Chase; Lyon; Morris.',38.08,38.88,-96.94,-95.94,0);
INSERT INTO "extent" VALUES('EPSG','4503','USA - Kansas - Atchison','United States (USA) - Kansas - counties of Atchison; Brown; Doniphan; Jackson; Marshall; Nemaha.',39.21,40.01,-96.81,-94.85,0);
INSERT INTO "extent" VALUES('EPSG','4504','USA - Kansas - Kansas City','United States (USA) - Kansas - counties of Douglas; Jefferson; Johnson; Leavenworth; Shawnee; Wyandotte.',38.73,39.43,-96.04,-94.58,0);
INSERT INTO "extent" VALUES('EPSG','4505','USA - Kansas - Ulysses','United States (USA) - Kansas - counties of Grant; Greeley; Hamilton; Kearny; Morton; Stanton; Stevens; Wichita.',36.99,38.71,-102.05,-101.06,0);
INSERT INTO "extent" VALUES('EPSG','4506','USA - Kansas - Garden City','United States (USA) - Kansas - counties of Finney; Gray; Haskell; Lane; Meade; Scott; Seward.',36.99,38.71,-101.13,-100.08,0);
INSERT INTO "extent" VALUES('EPSG','4507','USA - Kansas - Dodge City','United States (USA) - Kansas - counties of Clark; Ford; Hodgeman; Ness.',36.99,38.7,-100.25,-99.54,0);
INSERT INTO "extent" VALUES('EPSG','4508','USA - Kansas - Larned','United States (USA) - Kansas - counties of Comanche; Edwards; Kiowa; Pawnee; Rush.',36.99,38.7,-99.59,-98.91,0);
INSERT INTO "extent" VALUES('EPSG','4509','USA - Kansas - Pratt','United States (USA) - Kansas - counties of Barber; Pratt; Stafford.',36.99,38.27,-99.03,-98.34,0);
INSERT INTO "extent" VALUES('EPSG','4510','USA - Kansas - Wichita','United States (USA) - Kansas - counties of Butler; Harvey; Kingman; Reno; Sedgwick.',37.38,38.18,-98.48,-96.52,0);
INSERT INTO "extent" VALUES('EPSG','4511','USA - Kansas - Arkansas City','United States (USA) - Kansas - counties of Cowley; Harper; Sumner.',36.99,37.48,-98.35,-96.52,0);
INSERT INTO "extent" VALUES('EPSG','4512','USA - Kansas - Coffeyville','United States (USA) - Kansas - counties of Chautauqua; Coffey; Elk; Greenwood; Montgomery; Osage; Wilson; Woodson.',36.99,38.88,-96.53,-95.5,0);
INSERT INTO "extent" VALUES('EPSG','4513','USA - Kansas - Pittsburg','United States (USA) - Kansas - counties of Allen; Anderson; Bourbon; Cherokee; Crawford; Franklin; Labette; Linn; Miami; Neosho.',36.99,38.74,-95.53,-94.6,0);
INSERT INTO "extent" VALUES('EPSG','4514','Pacific - Guam and NMI west of 144°E','Guam and Northern Mariana Islands; offshore west of 144°E.',10.95,23.9,141.19,144.01,0);
INSERT INTO "extent" VALUES('EPSG','4515','USA - FBN','American Samoa - Tutuila, Aunu''u, Ofu, Olesega, Ta''u and Rose islands - onshore. Guam - onshore. Northern Mariana Islands - onshore. Puerto Rico - onshore. United States (USA) - CONUS - Alabama; Arizona; Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming - onshore plus Gulf of Mexico offshore continental shelf (GoM OCS). US Virgin Islands - onshore.',-14.59,49.38,144.58,-64.51,0);
INSERT INTO "extent" VALUES('EPSG','4516','USA - CONUS and GoM','United States (USA) - CONUS onshore - Alabama; Arizona; Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming. US Gulf of Mexico offshore continental shelf (GoM OCS).',23.82,49.38,-124.79,-66.91,0);
INSERT INTO "extent" VALUES('EPSG','4517','Canada - NAD27','Canada - onshore - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan; Yukon; offshore east coast west of 44°W and north of 40°N.',40.0,83.17,-141.01,-44.0,0);
INSERT INTO "extent" VALUES('EPSG','4518','Pacific - Guam and NMI east of 144°E','Guam and Northern Mariana Islands; onshore and offshore east of 144°E.',11.05,23.9,144.0,149.55,0);
INSERT INTO "extent" VALUES('EPSG','4519','Algeria - 32°N to 34°39''N','Algeria - 35.6 grads to 38.5 grads North (32°N to 34°39''N).',31.99,34.66,-2.95,9.09,0);
INSERT INTO "extent" VALUES('EPSG','4520','World centred on 90°W','World centred on the Americas.',-90.0,90.0,90.01,89.99,0);
INSERT INTO "extent" VALUES('EPSG','4521','Northern Mariana Islands - onshore','Northern Mariana Islands - onshore.',14.06,20.61,144.83,146.12,0);
INSERT INTO "extent" VALUES('EPSG','4522','Finland - mainland south of 66°N','Finland - onshore mainland south of approximately 66°N.',59.75,66.73,20.95,31.59,0);
INSERT INTO "extent" VALUES('EPSG','4523','World centred on 150°E','World centred on Asia-Pacific.',-90.0,90.0,-29.99,-30.01,0);
INSERT INTO "extent" VALUES('EPSG','4524','Saudi Arabia - west of 36°E','Saudi Arabia - onshore and offshore - west of 36°E.',24.92,29.38,34.44,36.01,0);
INSERT INTO "extent" VALUES('EPSG','4525','Pacific - Guam and NMI - onshore','Guam - onshore. Northern Mariana Islands - onshore.',13.18,20.61,144.58,146.12,0);
INSERT INTO "extent" VALUES('EPSG','4526','Saudi Arabia - 36°E to 42°E','Saudi Arabia - onshore and offshore - between 36°E and 42°E.',16.29,32.16,36.0,42.0,0);
INSERT INTO "extent" VALUES('EPSG','4527','Saudi Arabia - 42°E to 48°E','Saudi Arabia - onshore and offshore - between of 42°E and 48°E.',16.35,31.15,41.99,48.0,0);
INSERT INTO "extent" VALUES('EPSG','4528','Saudi Arabia - 48°E to 54°E','Saudi Arabia - onshore and offshore - between 48°E and 54°E.',17.94,28.94,47.99,54.01,0);
INSERT INTO "extent" VALUES('EPSG','4530','Latin America - Central America and South America','Latin America - Central America and South America, onshore and offshore.',-59.87,32.72,-122.19,-25.28,0);
INSERT INTO "extent" VALUES('EPSG','4531','Costa Rica - offshore Caribbean','Costa Rica - offshore - Caribbean sea.',9.6,11.77,-83.6,-81.43,0);
INSERT INTO "extent" VALUES('EPSG','4532','Costa Rica - offshore Pacific','Costa Rica - offshore Pacific ocean and onshore Coco Island.',2.15,11.11,-90.45,-82.92,0);
INSERT INTO "extent" VALUES('EPSG','4533','Canada - British Columbia - CRD','Canada - British Columbia - Vancouver Island - Capital Regional District.',48.25,49.06,-124.52,-123.0,0);
INSERT INTO "extent" VALUES('EPSG','4534','Canada - British Columbia - north Vancouver Is','Canada - British Columbia - north Vancouver Island.',48.48,50.93,-128.5,-123.49,0);
INSERT INTO "extent" VALUES('EPSG','4535','Canada - British Columbia - mainland','Canada - British Columbia - mainland and Graham Island.',48.99,60.01,-139.04,-114.08,0);
INSERT INTO "extent" VALUES('EPSG','4536','Canada - Ontario - Toronto','Canada - Ontario - Toronto.',43.58,43.86,-79.64,-79.11,0);
INSERT INTO "extent" VALUES('EPSG','4537','Canada - Ontario ex. Toronto','Canada - Ontario excluding Toronto.',41.67,56.9,-95.16,-74.35,0);
INSERT INTO "extent" VALUES('EPSG','4538','Vietnam - Son La','Vietnam - Son La province.',20.57,22.04,103.21,105.03,0);
INSERT INTO "extent" VALUES('EPSG','4539','Angola - east of 18°E','Angola - east of 18°E.',-18.02,-6.91,17.99,24.09,0);
INSERT INTO "extent" VALUES('EPSG','4540','Africa - South Africa, Lesotho and Eswatini.','Eswatini (Swaziland); Lesotho; South Africa - onshore and offshore.',-50.32,-22.13,13.33,42.85,0);
INSERT INTO "extent" VALUES('EPSG','4541','Vietnam - Dien Bien and Lai Chau','Vietnam - Dien Bien and Lai Chau provinces.',20.89,22.82,102.14,103.99,0);
INSERT INTO "extent" VALUES('EPSG','4542','Kosovo','Kosovo.',41.85,43.25,19.97,21.8,0);
INSERT INTO "extent" VALUES('EPSG','4543','Serbia','Serbia including Vojvodina.',42.23,46.19,18.81,23.01,0);
INSERT INTO "extent" VALUES('EPSG','4544','North America - Canada, US (Conus+AK), PRVI','North America - onshore and offshore: Canada - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan; Yukon. Puerto Rico. United States (USA) - Alabama; Alaska; Arizona; Arkansas; California; Colorado; Connecticut; Delaware; Florida; Georgia; Idaho; Illinois; Indiana; Iowa; Kansas; Kentucky; Louisiana; Maine; Maryland; Massachusetts; Michigan; Minnesota; Mississippi; Missouri; Montana; Nebraska; Nevada; New Hampshire; New Jersey; New Mexico; New York; North Carolina; North Dakota; Ohio; Oklahoma; Oregon; Pennsylvania; Rhode Island; South Carolina; South Dakota; Tennessee; Texas; Utah; Vermont; Virginia; Washington; West Virginia; Wisconsin; Wyoming. US Virgin Islands.',14.92,86.46,167.65,-47.74,0);
INSERT INTO "extent" VALUES('EPSG','4545','Vietnam - Ca Mau and Kien Giang','Vietnam - Ca Mau and Kien Giang provinces.',8.33,10.55,103.4,105.54,0);
INSERT INTO "extent" VALUES('EPSG','4546','Vietnam - An Giang, Lao Cai, Nghe An, Phu Tho, Yen Bai','Vietnam - An Giang, Lao Cai, Nghe An, Phu Tho and Yen Bai provinces.',10.18,22.85,103.53,105.86,0);
INSERT INTO "extent" VALUES('EPSG','4547','Vietnam - 104°20''E to 106°10''E by province - Hanoi','Vietnam - Ha Noi city, Ha Nam, Ha Tay, Ninh Binh, Thanh Hoa and Vinh Phuc provinces; Can Tho city, Bac Lieu, Dong Thap and Hau Giang provinces.',8.97,21.58,104.37,106.19,0);
INSERT INTO "extent" VALUES('EPSG','4548','Vietnam - 104°20''E to 106°40''E by province','Vietnam - Bac Ninh, Ha Giang, Ha Tinh, Hai Duong, Hung Yen, Nam Dinh, Soc Trang, Tay Ninh, Thai Binh, Tra Vinh and Vinh Long provinces.',9.19,23.4,104.33,106.69,0);
INSERT INTO "extent" VALUES('EPSG','4549','Vietnam - 105°15''E to 107°50''E by province - HCMC','Vietnam - Hai Phong and Ho Chi Minh cities; Ben Tre, Binh Duong, Cao Bang, Long An and Tien Giang provinces.',9.75,23.12,105.26,107.8,0);
INSERT INTO "extent" VALUES('EPSG','4550','Vietnam - Hoa Binh, Quang Binh and Tuyen Quang','Vietnam - Hoa Binh, Quang Binh and Tuyen Quang provinces.',16.92,22.7,104.83,107.03,0);
INSERT INTO "extent" VALUES('EPSG','4551','Angola - west of 12°E','Angola - west of 12°E, onshore and offshore.',-17.28,-5.03,8.2,12.01,0);
INSERT INTO "extent" VALUES('EPSG','4552','Vietnam - Binh Phuoc and Quang Tri','Vietnam - Binh Phuoc and Quang Tri provinces.',11.3,17.22,106.41,107.43,0);
INSERT INTO "extent" VALUES('EPSG','4553','Vietnam - Bac Kan and Thai Nguyen','Vietnam - Bac Kan and Thai Nguyen provinces.',21.32,22.75,105.43,106.25,0);
INSERT INTO "extent" VALUES('EPSG','4554','Vietnam - Bac Giang and Thua Thien-Hue','Vietnam - Bac Giang and Thua Thien-Hue provinces.',15.99,21.63,105.88,108.24,0);
INSERT INTO "extent" VALUES('EPSG','4555','Angola - 12°E to 18°E','Angola - between 12°E and 18°E, onshore and offshore.',-17.44,-4.38,12.0,18.0,0);
INSERT INTO "extent" VALUES('EPSG','4556','Vietnam - Lang Son','Vietnam - Lang Son province.',21.32,22.47,106.09,107.37,0);
INSERT INTO "extent" VALUES('EPSG','4557','Vietnam - Kon Tum','Vietnam - Kon Tum province.',13.92,15.42,107.33,108.55,0);
INSERT INTO "extent" VALUES('EPSG','4558','Vietnam - Quang Ngai','Vietnam - Quang Ngai province.',14.53,15.49,108.23,109.2,0);
INSERT INTO "extent" VALUES('EPSG','4559','Vietnam - Binh Dinh, Khanh Hoa, Ninh Thuan','Vietnam - Binh Dinh, Khanh Hoa and Ninh Thuan provinces.',11.25,14.71,108.55,109.53,0);
INSERT INTO "extent" VALUES('EPSG','4560','Vietnam - Binh Thuan, Dak Lak, Dak Nong, Gia Lai, Phu Yen','Vietnam - Binh Thuan, Dak Lak, Dak Nong, Gia Lai and Phu Yen provinces.',10.43,14.61,107.2,109.52,0);
INSERT INTO "extent" VALUES('EPSG','4561','Argentina - Mendoza - Cuyo basin','Argentina - Mendoza province - Cuyo basin.',-36.37,-31.96,-69.4,-66.42,0);
INSERT INTO "extent" VALUES('EPSG','4562','Argentina - Mendoza and Neuquen','Argentina - Mendoza province, Neuquen province, western La Pampa province and western Rio Negro province.',-43.41,-31.91,-72.14,-65.86,0);
INSERT INTO "extent" VALUES('EPSG','4563','Argentina - 42.5°S to 50.3°S','Argentina - Chibut province south of approximately 42°30''S and Santa Cruz province north of approximately 50°20''S.',-50.34,-42.49,-73.59,-65.47,0);
INSERT INTO "extent" VALUES('EPSG','4564','Argentina - 42.5°S to 50.3°S and west of 70.5°W','Argentina - Chibut province west of 70°30''W and south of approximately 44°55''S and Santa Cruz province west of 70°30''W and north of approximately 50°20''S.',-50.34,-44.94,-73.59,-70.5,0);
INSERT INTO "extent" VALUES('EPSG','4565','Argentina - 42.5°S to 50.3°S and east of 67.5°W','Argentina - Chibut province east of 67°30''W and south of approximately 43°35''S and Santa Cruz province east of 67°30''W and north of approximately 49°23''S.',-49.05,-43.58,-67.5,-65.47,0);
INSERT INTO "extent" VALUES('EPSG','4566','Europe - offshore North Sea - Germany and Netherlands east of 5°E','Germany - offshore North Sea. Netherlands - offshore east of 5E.',53.49,55.92,3.34,8.88,0);
INSERT INTO "extent" VALUES('EPSG','4567','South Africa - mainland - onshore and offshore','South Africa - mainland - onshore and offshore.',-38.17,-22.13,13.33,36.54,0);
INSERT INTO "extent" VALUES('EPSG','4568','South Africa - Prince Edward islands - onshore and offshore','South Africa - Marion Island and Prince Edward Island - onshore and offshore.',-50.32,-43.26,32.71,42.85,0);
INSERT INTO "extent" VALUES('EPSG','4569','Argentina - south Santa Cruz','Argentina - Santa Cruz province south of approximately 50°20''S.',-52.43,-50.33,-73.28,-68.3,0);
INSERT INTO "extent" VALUES('EPSG','4570','Argentina - south Santa Cruz west of 70.5°W','Argentina - Santa Cruz province south of approximately 50°20''S and west of 70°30''W.',-52.0,-50.33,-73.28,-70.5,0);
INSERT INTO "extent" VALUES('EPSG','4571','Argentina - south Santa Cruz east of 70.5°W','Argentina - Santa Cruz province south of approximately 50°20''S and east of 70°30''W.',-52.43,-50.33,-70.5,-68.3,0);
INSERT INTO "extent" VALUES('EPSG','4572','Argentina - 44°S to 47.5°S','Argentina - Chubut province south of approximately 44°S and Santa Cruz province north of approximately 47°30''S - Golfo San Jorge basin onshore and offshore.',-47.5,-43.99,-72.36,-63.24,0);
INSERT INTO "extent" VALUES('EPSG','4573','Argentina - onshore','Argentina - onshore.',-55.11,-21.78,-73.59,-53.65,0);
INSERT INTO "extent" VALUES('EPSG','4574','Brazil - west of 54°W and between 18°S and 27°30''S','Brazil - west of 54°W and between 18°S and 27°30''S.',-27.5,-17.99,-58.16,-54.0,0);
INSERT INTO "extent" VALUES('EPSG','4575','Denmark - onshore Jutland, Funen, Zealand and Lolland','Denmark - onshore Jutland, Funen, Zealand and Lolland.',54.51,57.8,8.0,12.69,0);
INSERT INTO "extent" VALUES('EPSG','4576','Brazil - 54°W to 48°W and 15°S to 27°30''S','Brazil - onshore between 54°W and 48°W and between 15°S and 27°30''S.',-27.5,-14.99,-54.0,-47.99,0);
INSERT INTO "extent" VALUES('EPSG','4577','Argentina - 70.5°W to 67.5°W mainland onshore','Argentina - between 70°30''W and 67°30''W, onshore mainland.',-52.43,-24.08,-70.5,-67.49,0);
INSERT INTO "extent" VALUES('EPSG','4578','Argentina - 67.5°W to 64.5°W mainland onshore','Argentina - between 67°30''W and 64°30''W, onshore mainland.',-49.05,-21.78,-67.5,-64.49,0);
INSERT INTO "extent" VALUES('EPSG','4579','Argentina - 64.5°W to 61.5°W mainland onshore','Argentina - between 64°30''W and 61°30''W, onshore mainland.',-43.14,-21.99,-64.5,-61.49,0);
INSERT INTO "extent" VALUES('EPSG','4580','Germany - Baden-Wurttemberg','Germany - Baden-Wurttemberg.',47.54,49.8,7.51,10.5,0);
INSERT INTO "extent" VALUES('EPSG','4581','Africa - Morocco and Western Sahara - onshore','Africa - Morocco and Western Sahara - onshore.',20.71,35.97,-17.16,-1.01,0);
INSERT INTO "extent" VALUES('EPSG','4582','UK - London to Birmingham and Crewe','UK - HS2 phases 1 and 2a railway corridor from London to Birmingham, Lichfield and Crewe.',51.45,53.3,-2.75,0.0,0);
INSERT INTO "extent" VALUES('EPSG','4583','UK - Liverpool to Leeds','UK - on or related to the Trans-Pennine rail route from Liverpool via Manchester to Bradford and Leeds.',53.32,53.9,-3.14,-1.34,0);
INSERT INTO "extent" VALUES('EPSG','4584','Germany - Saarland','Germany - Saarland.',49.11,49.64,6.35,7.41,0);
INSERT INTO "extent" VALUES('EPSG','4585','Austria - Vienna','Austria - Vienna city state.',48.12,48.34,16.18,16.59,0);
INSERT INTO "extent" VALUES('EPSG','4586','World - south of 50°S','Southern hemisphere - south of 50°S onshore and offshore, including Antarctica.',-90.0,-50.0,-180.0,180.0,0);
INSERT INTO "extent" VALUES('EPSG','4587','Congo DR (Zaire) - 6th parallel south 21.5°E to 23°E','The Democratic Republic of the Congo (Zaire) - adjacent to 6th parallel south traverse between 21°30''E and 23°E.',-7.31,-5.31,21.5,23.01,0);
INSERT INTO "extent" VALUES('EPSG','4588','UK - London to Sheffield','UK - on or related to the Midland Mainline rail route from Sheffield to London.',51.46,53.42,-1.89,0.16,0);
INSERT INTO "extent" VALUES('EPSG','4589','UK - Aberdeen to Inverness','UK - on or related to the A96 highway from Aberdeen to Inverness.',57.1,57.71,-4.31,-2.1,0);
INSERT INTO "extent" VALUES('EPSG','4590','Spain - Ceuta','Spain - Ceuta onshore.',35.82,35.97,-5.4,-5.24,0);
INSERT INTO "extent" VALUES('EPSG','4591','Spain - Canary Islands - Lanzarote','Spain - Canary Islands - Lanzarote onshore.',28.78,29.47,-13.95,-13.37,0);
INSERT INTO "extent" VALUES('EPSG','4592','Spain - Canary Islands - Fuerteventura','Spain - Canary Islands - Fuerteventura onshore.',27.99,28.81,-14.58,-13.75,0);
INSERT INTO "extent" VALUES('EPSG','4593','Spain - Canary Islands - Gran Canaria','Spain - Canary Islands - Gran Canaria onshore.',27.68,28.23,-15.88,-15.31,0);
INSERT INTO "extent" VALUES('EPSG','4594','Spain - Canary Islands - Tenerife','Spain - Canary Islands - Tenerife onshore.',27.93,28.63,-16.96,-16.08,0);
INSERT INTO "extent" VALUES('EPSG','4595','Spain - Canary Islands - La Gomera','Spain - Canary Islands - La Gomera onshore.',27.95,28.26,-17.39,-17.03,0);
INSERT INTO "extent" VALUES('EPSG','4596','Spain - Canary Islands - La Palma','Spain - Canary Islands - La Palma onshore.',28.4,28.9,-18.06,-17.66,0);
INSERT INTO "extent" VALUES('EPSG','4597','Spain - Canary Islands - El Hierro','Spain - Canary Islands - El Hierro onshore.',27.58,27.9,-18.22,-17.83,0);
INSERT INTO "extent" VALUES('EPSG','4598','Spain - Canary Islands western','Spain - Canary Islands - El Hierro, La Gomera, La Palma and Tenerife - onshore.',27.58,28.9,-18.22,-16.08,0);
INSERT INTO "extent" VALUES('EPSG','4599','Spain - Canary Islands - El Hierro west of 18°W','Spain - Canary Islands - El Hierro onshore west of 18°W.',27.59,27.88,-18.22,-18.0,0);
INSERT INTO "extent" VALUES('EPSG','4600','Spain - Canary Islands onshore east of 18°W','Spain - Canary Islands onshore - El Hierro east of 18°W, Fuerteventura, Gran Canaria, La Gomera, La Palma, Lanzarote and Tenerife.',27.58,29.47,-18.06,-13.37,0);
INSERT INTO "extent" VALUES('EPSG','4601','Spain - Canary Islands western east of 18°W','Spain - Canary Islands onshore - El Hierro east of 18°W, La Gomera, La Palma and Tenerife.',27.58,28.9,-18.06,-16.08,0);
INSERT INTO "extent" VALUES('EPSG','4602','Spain - Balearic Islands - Mallorca','Spain - Balearic Islands - Mallorca onshore.',39.07,40.02,2.23,3.55,0);
INSERT INTO "extent" VALUES('EPSG','4603','Spain - Balearic Islands - Menorca','Spain - Balearic Islands - Menorca onshore.',39.75,40.15,3.73,4.39,0);
INSERT INTO "extent" VALUES('EPSG','4604','Spain - Balearic Islands - Ibiza and Formentera','Spain - Balearic Islands - Ibiza and Formentera - onshore.',38.59,39.17,1.12,1.68,0);
INSERT INTO "extent" VALUES('EPSG','4605','Spain - mainland onshore and Ceuta','Spain - mainland and Ceuta - onshore.',35.82,43.82,-9.37,3.39,0);
INSERT INTO "extent" VALUES('EPSG','4606','Europe - British Isles - UK and Ireland onshore, UKCS','United Kingdom (UK) - offshore to boundary of UKCS within 49°45''N to 61°N and 9°W to 2°E; onshore Great Britain (England, Wales and Scotland) and Northern Ireland. Ireland onshore. Isle of Man onshore.',49.75,61.01,-9.0,2.01,0);
INSERT INTO "extent" VALUES('EPSG','4607','UK - Glasgow to Kilmarnock','UK - on or related to the rail route from Glasgow via Barrhead to Kilmarnock and the branch to East Kilbride.',55.55,55.95,-4.65,-4.05,0);
INSERT INTO "extent" VALUES('EPSG','4608','Europe - EVRF2019','Europe - onshore - Andorra; Austria; Belarus; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia; Czechia; Denmark; Estonia; Finland; France - mainland; Germany; Gibraltar, Hungary; Italy - mainland and Sicily; Latvia; Liechtenstein; Lithuania; Luxembourg; Netherlands; North Macedonia; Norway; Poland; Portugal - mainland; Romania; Russia – west of approximately 60°E; San Marino; Slovakia; Slovenia; Spain - mainland; Sweden; Switzerland; United Kingdom (UK) - Great Britain mainland; Ukraine; Vatican City State.',35.95,77.07,-9.56,69.15,0);
INSERT INTO "extent" VALUES('EPSG','4609','Europe - ETRF EVRF2019','Europe - onshore - Andorra; Austria; Belgium; Bosnia and Herzegovina; Bulgaria; Croatia; Czechia; Denmark; Estonia; Finland; France - mainland; Germany; Gibraltar, Hungary; Italy - mainland and Sicily; Latvia; Liechtenstein; Lithuania; Luxembourg; Netherlands; North Macedonia; Norway; Poland; Portugal - mainland; Romania; San Marino; Slovakia; Slovenia; Spain - mainland; Sweden; Switzerland; United Kingdom (UK) - Great Britain mainland; Vatican City State.',35.95,71.21,-9.56,31.59,0);
INSERT INTO "extent" VALUES('EPSG','4610','Argentina - Buenos Aires city','Argentina - autonomous city of Buenos Aires.',-34.71,-34.5,-58.54,-58.29,0);
INSERT INTO "extent" VALUES('EPSG','4611','Malaysia - East Malaysia - Sarawak onshore','Malaysia - East Malaysia - Sarawak onshore.',0.85,5.03,109.54,115.69,0);
INSERT INTO "extent" VALUES('EPSG','4612','Canada - Newfoundland','Canada - Newfoundland - onshore.',46.56,51.68,-59.48,-52.54,0);
INSERT INTO "extent" VALUES('EPSG','4613','Europe - Lyon-Turin','France and Italy - on or related to the rail route from Lyon to Turin.',44.87,45.89,4.65,7.88,0);
INSERT INTO "extent" VALUES('EPSG','4614','Argentina - Comodoro Rivadavia - west of 67.5°W','Argentina - Comodoro Rivadavia area west of 67°30''W.',-46.7,-45.19,-69.5,-67.5,0);
INSERT INTO "extent" VALUES('EPSG','4615','Norway, Svalbard and Jan Mayen - offshore','Norway (offshore) and Svalbard and Jan Mayen (offshore).',56.08,84.73,-13.63,38.0,0);
INSERT INTO "extent" VALUES('EPSG','4616','UK - Great Britain onshore; Isle of Man','United Kingdom (UK) - Great Britain - England, Scotland and Wales onshore; Isle of Man onshore.',49.81,60.93,-8.69,1.91,0);
INSERT INTO "extent" VALUES('EPSG','4617','Canada - east of 42°W','Canada offshore Atlantic - east of 42°W.',45.53,49.53,-42.0,-40.73,0);
INSERT INTO "extent" VALUES('EPSG','4618','Canada - 41°N to 85°N, west of 50°W','Canada - onshore and offshore between 41°N and 85°N and west of 50°W - Alberta; British Columbia; Manitoba; New Brunswick; Newfoundland and Labrador; Northwest Territories; Nova Scotia; Nunavut; Ontario; Prince Edward Island; Quebec; Saskatchewan; Yukon.',41.0,85.0,-141.01,-50.0,0);
INSERT INTO "extent" VALUES('EPSG','4619','Italy - 6°22''E to 18°40''E and north of 35°16''N; San Marino, Vatican City State','Italy - onshore and offshore between 6°22''E and 18°40''E and north of 35°16''N; San Marino, Vatican City State.',35.26,47.1,6.36,18.67,0);
INSERT INTO "extent" VALUES('EPSG','4620','UK - Tweedmouth to Aberdeen','On or related to the complex of rail routes in the East of Scotland, incorporating the route from Tweedbank through the Borders to Edinburgh; the line from Edinburgh to Aberdeen; routes via Kirkaldy and Cowdenbeath; and routes via Leuchars and Perth to Dundee. ',55.55,57.2,-3.55,-1.95,0);
|
set timezone 'Asia/Seoul';
select datetimetz'1942-01-01 00:00:00 Europe/Vienna';
select datetimetz'1942-11-02 10:00:00 Europe/Vienna';
|
-- @testpoint: 创建model,使用不同字符类型命名,部分测试点合理报错
--step1: 建表并插入数据;expect: 建表并插入数据成功
drop table if exists t_model_tab_0004;
create table t_model_tab_0004(id int, second_attack int, treatment int, trait_anxiety int);
insert into t_model_tab_0004 values (1,1,1,70),(2,1,1,80),(3,1,1,50),(4,1,0,60),(5,1,0,40),(6,1,0,65),(7,1,0,75),(8,1,0,80),(9,1,0,70),(10,1,0,60),(11,0,1,65),(12,0,1,50),(13,0,1,45),(14,0,1,35),(15,0,1,40),(16,0,1,50),(17,0,0,55),(18,0,0,45),(19,0,0,50),(20,0,0,60);
--step2: 创建model,以保留关键字命名;expect: 合理报错
create model ASYMMETRIC using logistic_regression features treatment,trait_anxiety target second_attack from t_model_tab_0004;
--step3: 创建model,以已存在model名命名;expect: 合理报错
create model m_model_0004 using logistic_regression features treatment,trait_anxiety target second_attack from t_model_tab_0004;
create model m_model_0004 using logistic_regression features treatment,trait_anxiety target second_attack from t_model_tab_0004;
--step4: 创建model,以已存在的表名命名;expect: 创建成功
create model t_model_tab_0004 using logistic_regression features treatment,trait_anxiety target second_attack from t_model_tab_0004;
--step5: 查找系统表的model名;expect: 返回新建model的modelname值
select modelname from gs_model_warehouse;
--step6: 创建model,以_命名;expect: 创建成功
create model _ using logistic_regression features treatment,trait_anxiety target second_attack from t_model_tab_0004;
--step8: 查找系统表的model名;expect: 返回_
select modelname from gs_model_warehouse order by modelname;
--step9: 清理环境;expect: 清理环境成功
drop model m_model_0004;
drop model t_model_tab_0004;
drop model _;
drop table t_model_tab_0004; |
DROP DATABASE IF EXISTS tests;
CREATE DATABASE tests;
USE tests;
CREATE TABLE users
(
id INT AUTO_INCREMENT NOT NULL,
user_name VARCHAR(255) NOT NULL,
disp_name VARCHAR(255),
email VARCHAR(255) NOT NULL,
email_verified BOOLEAN DEFAULT false,
password VARCHAR(255),
salt VARCHAR(255),
roles VARCHAR(999),
person_key VARCHAR( 80),
person_verified BOOLEAN DEFAULT false,
status VARCHAR( 20) DEFAULT 'Active',
PRIMARY KEY(id),
UNIQUE INDEX users__user_name (user_name),
UNIQUE INDEX users__email (email),
INDEX users__person_key(person_key)
) DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE = InnoDB;
CREATE TABLE user_auths
(
id INT AUTO_INCREMENT NOT NULL,
user_id INT NOT NULL,
provider VARCHAR(255) NOT NULL,
sub VARCHAR(255) NOT NULL,
iss VARCHAR(255) NOT NULL,
name VARCHAR(255),
email VARCHAR(255),
PRIMARY KEY(id),
FOREIGN KEY(user_id) REFERENCES users(id),
UNIQUE INDEX user_auths__provider_sub_iss(provider,sub,iss)
) DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE = InnoDB;
|
DROP TABLE movie, constr;
|
--ZAD7
SELECT COUNT(CASE WHEN waga<1000 THEN 1 ELSE NULL END)
FROM produkty
ORDER BY 1
---- |
<reponame>kinalkpatel2019/citraining<filename>database/lesson-1,2.sql<gh_stars>0
-- phpMyAdmin SQL Dump
-- version 4.9.2
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1:3306
-- Generation Time: Apr 18, 2020 at 01:08 PM
-- Server version: 10.4.10-MariaDB
-- PHP Version: 7.3.12
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `demo`
--
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
CREATE TABLE IF NOT EXISTS `users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`email` varchar(250) NOT NULL,
`password` varchar(100) NOT NULL,
`firstname` varchar(250) NOT NULL,
`lastname` varchar(250) NOT NULL,
`created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
`updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE current_timestamp(),
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `email`, `password`, `firstname`, `lastname`, `created_at`, `updated_at`) VALUES
(1, '<EMAIL>', '<PASSWORD>g', '<PASSWORD>', '<PASSWORD>', '2020-04-16 09:10:51', '2020-04-16 09:10:51');
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
/*
***********************************
Development high seas product v1
06_rename_drop.sql
Run in pgadmin 4.4
salvadorf 2020-07-09
*************************************
*/
-- 14. Once checked that everything is ok in high_seas_04, rename this table to 'high_seas' and drop temporal tables
DROP TABLE high_seas_00;
DROP TABLE high_seas_01;
DROP TABLE high_seas_02;
DROP TABLE high_seas_03;
DROP TABLE high_seas_04;
ALTER TABLE public.high_seas_05
RENAME TO high_seas;
DO $$ BEGIN
RAISE NOTICE '%',CONCAT('High seas product finalized as public.high_seas at ', NOW());
END;
$$; |
DROP TABLE MESSAGES IF EXISTS;
CREATE TABLE MESSAGES (
CODEID VARCHAR(255) NOT NULL,
LANGID VARCHAR(10) NOT NULL,
MESSAGE VARCHAR(4000),
TYPE VARCHAR(255)
);
ALTER TABLE MESSAGES ADD CONSTRAINT pk PRIMARY KEY (CODEID,LANGID);
|
-- DROP USER WorkerApp2@localhost;
CREATE USER WorkerApp2@10.100.17.71 IDENTIFIED BY '123456';
GRANT ALL PRIVILEGES ON WorkerApp2.* TO WorkerApp2@10.100.17.71;
FLUSH PRIVILEGES;
|
/*************************************************************************
* $Id: CreateUser.sql,v 1.1 2006/12/27 17:51:58 globalqss Exp $
***
* Title: Drop User and re-create new
* Description:
* Parameter: UserID UserPwd
* Run as postgres
************************************************************************/
DROP DATABASE &1;
DROP USER &1;
CREATE USER &1 WITH CREATEDB CREATEUSER PASSWORD '&2'
CREATE DATABASE &1
WITH ENCODING='UNICODE'
OWNER=&1; |
INSERT INTO `config` (`id_site`, `key`, `value`) VALUES (NULL,'auto-reply-text',"Hey, thanks for texting, we'll be with ya in a second! -Crunchbutton"); |
<gh_stars>1-10
INSERT INTO link (url, name)
VALUES
('http://github.com', 'GitHub')
ON CONFLICT (url) DO NOTHING; |
<reponame>sguazt/olio
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
create table PERSON(
username VARCHAR(25) NOT NULL,
password VARCHAR(25) NOT NULL,
firstname VARCHAR(25) NOT NULL,
lastname VARCHAR(25) NOT NULL,
email VARCHAR(90) NOT NULL,
telephone VARCHAR(25) NOT NULL,
imageurl VARCHAR(100) NOT NULL,
imagethumburl VARCHAR(100) NOT NULL,
summary VARCHAR(2500) NOT NULL,
timezone VARCHAR(25) NOT NULL,
ADDRESS_addressid INTEGER NOT NULL,
primary key (username)
) ENGINE=InnoDB;
CREATE TABLE PERSON_PERSON (
Person_username VARCHAR(25) NOT NULL,
friends_username VARCHAR(25) NOT NULL,
is_accepted tinyint(1) NOT NULL,
PRIMARY KEY (Person_username, friends_username)
) ENGINE=InnoDB;
CREATE INDEX PERSON_USERNAME_IDX on PERSON_PERSON (Person_username);
CREATE INDEX FRIENDS_USERNAME_IDX on PERSON_PERSON (friends_username);
CREATE TABLE PERSON_SOCIALEVENT (
username VARCHAR(25) NOT NULL,
socialeventid INTEGER NOT NULL,
PRIMARY KEY (username, socialeventid)
)ENGINE=InnoDB;
CREATE INDEX SOCIALEVENT_PERSON_IDX on PERSON_SOCIALEVENT (socialeventid);
CREATE TABLE ADDRESS (
addressid INTEGER NOT NULL AUTO_INCREMENT,
street1 VARCHAR(55) NOT NULL,
street2 VARCHAR(55),
city VARCHAR(55) NOT NULL,
state VARCHAR(25) NOT NULL,
zip VARCHAR(12) NOT NULL,
country VARCHAR(55) NOT NULL,
latitude DECIMAL(14,10) NOT NULL,
longitude DECIMAL(14,10) NOT NULL,
primary key (addressid)
)ENGINE=InnoDB;
CREATE TABLE ID_GEN (
gen_key VARCHAR(20) NOT NULL,
gen_value INTEGER NOT NULL,
primary key (gen_key)
)ENGINE=InnoDB;
CREATE TABLE SOCIALEVENT (
socialeventid INTEGER NOT NULL AUTO_INCREMENT,
title VARCHAR(100) NOT NULL,
description VARCHAR(500) NOT NULL,
submitterUserName VARCHAR(25) NOT NULL,
ADDRESS_addressid INTEGER NOT NULL,
totalscore INTEGER NOT NULL,
numberofvotes INTEGER NOT NULL,
imageurl VARCHAR(100) NOT NULL,
imagethumburl VARCHAR(100) NOT NULL,
literatureurl VARCHAR(100) NOT NULL,
telephone VARCHAR(20) NOT NULL,
timezone VARCHAR(100) NOT NULL,
eventtimestamp VARCHAR(25) NOT NULL,
createdtimestamp TIMESTAMP NOT NULL,
disabled INTEGER NOT NULL,
eventdate VARCHAR(10) NOT NULL,
summary VARCHAR(100) NOT NULL,
primary key (socialeventid),
foreign key (ADDRESS_addressid) references ADDRESS(addressid)
)ENGINE=InnoDB;
CREATE INDEX SOCIALEVENT_DATE_IDX on SOCIALEVENT (eventdate);
CREATE INDEX SOCIALEVENT_EVENTTIMESTAMP_IDX on SOCIALEVENT (eventtimestamp);
CREATE INDEX SOCIALEVENT_CREATEDTIMESTAMP_IDX on SOCIALEVENT (createdtimestamp);
CREATE INDEX SOCIALEVENT_SUBMITTERUSERNAME_IDX on SOCIALEVENT (submitterUserName);
create table SOCIALEVENTTAG(
socialeventtagid INTEGER NOT NULL AUTO_INCREMENT,
tag VARCHAR(30) NOT NULL,
refcount INTEGER NOT NULL,
primary key (socialeventtagid),
unique(tag)
)ENGINE=InnoDB;
CREATE INDEX SOCIALEVENTTAG_TAG on SOCIALEVENTTAG (tag);
create table SOCIALEVENTTAG_SOCIALEVENT(
socialeventtagid INTEGER NOT NULL,
socialeventid INTEGER NOT NULL,
unique(socialeventtagid, socialeventid),
foreign key (socialeventid) references SOCIALEVENT(socialeventid),
foreign key (socialeventtagid) references SOCIALEVENTTAG(socialeventtagid)
)ENGINE=InnoDB;
CREATE INDEX SOCIALEVENT_TAG on SOCIALEVENTTAG_SOCIALEVENT (socialeventid);
create table COMMENTS_RATING(
commentid INTEGER NOT NULL AUTO_INCREMENT,
username VARCHAR(25) NOT NULL,
socialeventid INTEGER NOT NULL,
comments VARCHAR(2500) NOT NULL,
ratings INTEGER NOT NULL,
created_at TIMESTAMP NOT NULL,
updated_at TIMESTAMP,
foreign key (socialeventid) references SOCIALEVENT(socialeventid),
foreign key (username) references PERSON(username),
primary key (commentid)
)ENGINE=InnoDB;
CREATE INDEX SOCIALEVENT_COMMENTS on COMMENTS_RATING (socialeventid);
|
<filename>labs/rdb-mesh/egopolis1/0001/env/version/version_is.sql
/***************************************************************************************************
Check that current environment is of selected version
@param version
Version to check the environment for
@returns
Returns true if current environment has selected version and false otherwise
***************************************************************************************************/
CREATE OR REPLACE FUNCTION env.version_is(version integer)
RETURNS boolean
AS $$
SELECT version.last_value = version_is.version FROM env.version;
$$ LANGUAGE sql;
|
<gh_stars>0
SELECT
-- Relativo a dados do cliente
COALESCE(t8.venda,0) as flag_venda, -- Variavel resposta
'{safra}' as data_lim_safra,
t2.seller_id,
t7.seller_state as estado,
CAST(t3.idade_base AS INTEGER) as idade_dias,
-- Vendas e qualidade dos anuncios
COUNT(DISTINCT t1.order_id) as qtde_vendas,
COUNT(DISTINCT t2.product_id) as variedade_prod,
COUNT(t2.product_id) as qtde_prod_vendidos,
CAST(COUNT(t2.product_id) as FLOAT)/ COUNT(DISTINCT t1.order_id) as media_prod_vend_order,
AVG(t6.product_photos_qty) as media_fotos,
AVG(t6.product_description_lenght) as media_letras_desc,
--Relativo a avaliação do vendendor
AVG(t5.review_score) as avaliacao_safra,
AVG(t3.avaliacao_acumulada) as avaliacao_acumulada,
ROUND(AVG(t3.avaliacao_acumulada) - AVG(t5.review_score),2) as delta_avaliacao_idade_base,
--Relativo a datas
CAST(julianday('{safra}') - julianday(max(t1.order_approved_at)) as INTEGER) as ultima_venda,
COUNT( DISTINCT strftime("%m", t1.order_approved_at) ) as qtde_mes_ativos,
SUM(CASE WHEN julianday(t1.order_delivered_customer_date) > julianday(t1.order_estimated_delivery_date) THEN 1 ELSE 0 END) / CAST(COUNT(t1.order_id) AS FLOAT) as prop_atrasos,
CAST(AVG(julianday(t1.order_estimated_delivery_date) - julianday(t1.order_approved_at)) as INTEGER) as media_prazo_entrega,
-- Referente a receita
sum(t2.price) as receita_total,
sum(t2.price) / COUNT(DISTINCT( t2.order_id)) as ticket_medio,
sum(t2.price) / COUNT(t2.product_id) as valor_medio_prod,
sum(t2.price) / COUNT(DISTINCT(strftime("%m", t1.order_approved_at))) as total_mensal,
sum(t2.freight_value) / COUNT(DISTINCT(t2.order_id)) as frete_medio,
sum(t2.freight_value) / sum(t2.price) as prop_valor_frete ,
CAST((julianday('{safra}') - min(julianday(t1.order_approved_at))) / COUNT(DISTINCT t1.order_id) AS INTERGER)
as intervalo_pedidos_dias
FROM tb_orders as t1
LEFT JOIN tb_order_items as t2
ON t1.order_id = t2.order_id
-- Acrescentando dados que não são linkados com safras avalianca acumada e idade na base
LEFT JOIN(
SELECT
t2.seller_id,
max(julianday('{safra}') - julianday(t1.order_approved_at)) as idade_base,
AVG(t3.review_score) as avaliacao_acumulada
from tb_orders as t1
LEFT JOIN tb_order_items as t2
ON t1.order_id = t2.order_id
LEFT JOIN tb_order_reviews as t3
on t1.order_id = t3.order_id
WHERE t1.order_approved_at < '{safra}'
AND t1.order_status = 'delivered'
GROUP BY t2.seller_id
) as t3
on t2.seller_id = t3.seller_id
--Acrescentando o Valor referente a compra
LEFT JOIN(
SELECT
t1.order_id,
sum(t1.payment_value) as valor_compra
FROM tb_order_payments as t1
GROUP BY t1.order_id
) as t4
on t1.order_id = t4.order_id
LEFT JOIN tb_order_reviews as t5
on t1.order_id = t5.order_id
LEFT JOIN tb_products as t6
on t2.product_id = t6.product_id
LEFT JOIN tb_sellers as t7
on t2.seller_id = t7.seller_id
-- Variavel Resposta
LEFT JOIN (
SELECT
t2.seller_id,
'{safra}' as data_safra,
max(date(t1.order_approved_at)) as dt_venda_var,
"1" as venda
FROM tb_orders as t1
LEFT JOIN tb_order_items as t2
on t1.order_id = t2.order_id
WHERE t1.order_status = 'delivered' AND
t1.order_approved_at BETWEEN date('{safra}') AND date('{safra}', '+3
months')
GROUP BY t2.seller_id) as t8
on t2.seller_id = t8.seller_id
WHERE t1.order_approved_at BETWEEN date('{safra}', '-6 months')
AND '{safra}'
AND t1.order_status = 'delivered'
GROUP BY t2.seller_id |
DECLARE
schema_name VARCHAR2(28);
c NUMBER;
BEGIN
schema_name := '[(schema)]';
SELECT COUNT(*) INTO c FROM all_users WHERE username = schema_name;
IF (c > 0) THEN EXECUTE IMMEDIATE 'DROP USER "' || schema_name || '" CASCADE'; END IF;
EXECUTE IMMEDIATE 'CREATE USER "' || schema_name || '" IDENTIFIED BY ' || DBMS_RANDOM.string('a', 20);
EXECUTE IMMEDIATE 'GRANT UNLIMITED TABLESPACE TO "' || schema_name || '"';
END;
/
|
<reponame>arjundashrath/mina
/* snapp_tables.sql -- support tables for Snapp commands */
/* Several of the tables below support the following convention, related
to NULL values.
In OCaml, some Snapp-related types use the constructors Check, which takes a value,
and Ignore, which is nullary. In columns following the convention, a NULL means Ignore, while
non-NULL means Check.
Similarly, in OCaml, there are the constructors Set, which takes a value, and
Keep, which is nullary. NULL means Keep, and non-NULL means Set.
The tables that follow this convention have a comment "NULL convention".
*/
/* the string representation of an algebraic field */
CREATE TABLE snapp_state_data
( id serial PRIMARY KEY
, field text NOT NULL UNIQUE
);
/* Variable-width arrays of algebraic fields, given as
id's from snapp_state_data
Postgresql does not allow enforcing that the array elements are
foreign keys
The elements of the array are NOT NULL (not enforced by Postgresql)
*/
CREATE TABLE snapp_state_data_array
( id serial PRIMARY KEY
, element_ids int[] NOT NULL
);
/* Fixed-width arrays of algebraic fields, given as id's from
snapp_state_data
We don't specify the width here, as that may change (and not enforced
by Postgresql, in any case)
Postgresql does not allow enforcing that the array elements are
foreign keys
Any element of the array may be NULL, meaning Ignore, per the
NULL convention
*/
CREATE TABLE snapp_states
( id serial PRIMARY KEY
, element_ids int[]
);
CREATE TABLE snapp_verification_keys
( id serial PRIMARY KEY
, verification_key text NOT NULL UNIQUE
, hash text NOT NULL UNIQUE
);
CREATE TYPE snapp_auth_required_type AS ENUM ('none', 'either', 'proof', 'signature', 'both', 'impossible');
CREATE TABLE snapp_permissions
( id serial PRIMARY KEY
, stake boolean NOT NULL
, edit_state snapp_auth_required_type NOT NULL
, send snapp_auth_required_type NOT NULL
, receive snapp_auth_required_type NOT NULL
, set_delegate snapp_auth_required_type NOT NULL
, set_permissions snapp_auth_required_type NOT NULL
, set_verification_key snapp_auth_required_type NOT NULL
, set_snapp_uri snapp_auth_required_type NOT NULL
, edit_sequence_state snapp_auth_required_type NOT NULL
, set_token_symbol snapp_auth_required_type NOT NULL
, increment_nonce snapp_auth_required_type NOT NULL
, set_voting_for snapp_auth_required_type NOT NULL
);
CREATE TABLE snapp_timing_info
( id serial PRIMARY KEY
, initial_minimum_balance bigint NOT NULL
, cliff_time bigint NOT NULL
, cliff_amount bigint NOT NULL
, vesting_period bigint NOT NULL
, vesting_increment bigint NOT NULL
);
/* NULL convention */
CREATE TABLE snapp_updates
( id serial PRIMARY KEY
, app_state_id int NOT NULL REFERENCES snapp_states(id)
, delegate_id int REFERENCES public_keys(id)
, verification_key_id int REFERENCES snapp_verification_keys(id)
, permissions_id int REFERENCES snapp_permissions(id)
, snapp_uri text
, token_symbol text
, timing_id int REFERENCES snapp_timing_info(id)
, voting_for text
);
CREATE TABLE snapp_balance_bounds
( id serial PRIMARY KEY
, balance_lower_bound bigint NOT NULL
, balance_upper_bound bigint NOT NULL
);
CREATE TABLE snapp_nonce_bounds
( id serial PRIMARY KEY
, nonce_lower_bound bigint NOT NULL
, nonce_upper_bound bigint NOT NULL
);
CREATE TYPE snapp_predicate_type AS ENUM ('full', 'nonce', 'accept');
/* NULL convention */
CREATE TABLE snapp_account
( id serial PRIMARY KEY
, balance_id int REFERENCES snapp_balance_bounds(id)
, nonce_id int REFERENCES snapp_nonce_bounds(id)
, receipt_chain_hash text
, public_key_id int REFERENCES public_keys(id)
, delegate_id int REFERENCES public_keys(id)
, state_id int NOT NULL REFERENCES snapp_states(id)
, sequence_state_id int REFERENCES snapp_state_data(id)
, proved_state boolean
);
/* invariants: account id is not NULL iff kind is 'full'
nonce is not NULL iff kind is 'nonce'
*/
CREATE TABLE snapp_predicate
( id serial PRIMARY KEY
, kind snapp_predicate_type NOT NULL
, account_id int REFERENCES snapp_account(id)
, nonce bigint
);
CREATE TYPE snapp_authorization_kind_type AS ENUM ('proof','signature','none_given');
CREATE TABLE snapp_token_id_bounds
( id serial PRIMARY KEY
, token_id_lower_bound bigint NOT NULL
, token_id_upper_bound bigint NOT NULL
);
CREATE TABLE snapp_timestamp_bounds
( id serial PRIMARY KEY
, timestamp_lower_bound bigint NOT NULL
, timestamp_upper_bound bigint NOT NULL
);
CREATE TABLE snapp_length_bounds
( id serial PRIMARY KEY
, length_lower_bound bigint NOT NULL
, length_upper_bound bigint NOT NULL
);
CREATE TABLE snapp_amount_bounds
( id serial PRIMARY KEY
, amount_lower_bound bigint NOT NULL
, amount_upper_bound bigint NOT NULL
);
CREATE TABLE snapp_global_slot_bounds
( id serial PRIMARY KEY
, global_slot_lower_bound bigint NOT NULL
, global_slot_upper_bound bigint NOT NULL
);
/* NULL convention */
CREATE TABLE snapp_epoch_ledger
( id serial PRIMARY KEY
, hash_id int REFERENCES snarked_ledger_hashes(id)
, total_currency_id int REFERENCES snapp_amount_bounds(id)
);
/* NULL convention */
CREATE TABLE snapp_epoch_data
( id serial PRIMARY KEY
, epoch_ledger_id int REFERENCES snapp_epoch_ledger(id)
, epoch_seed text
, start_checkpoint text
, lock_checkpoint text
, epoch_length_id int REFERENCES snapp_length_bounds(id)
);
/* NULL convention */
CREATE TABLE snapp_predicate_protocol_states
( id serial NOT NULL PRIMARY KEY
, snarked_ledger_hash_id int REFERENCES snarked_ledger_hashes(id)
, snarked_next_available_token_id int REFERENCES snapp_token_id_bounds(id)
, timestamp_id int REFERENCES snapp_timestamp_bounds(id)
, blockchain_length_id int REFERENCES snapp_length_bounds(id)
, min_window_density_id int REFERENCES snapp_length_bounds(id)
/* omitting 'last_vrf_output' for now, it's the unit value in OCaml */
, total_currency_id int REFERENCES snapp_amount_bounds(id)
, curr_global_slot_since_hard_fork int REFERENCES snapp_global_slot_bounds(id)
, global_slot_since_genesis int REFERENCES snapp_global_slot_bounds(id)
, staking_epoch_data_id int REFERENCES snapp_epoch_data(id)
, next_epoch_data_id int REFERENCES snapp_epoch_data(id)
);
/* events_ids and sequence_events_ids indicate a list of ids in
snapp_state_data_array. */
CREATE TABLE snapp_party_body
( id serial PRIMARY KEY
, public_key_id int NOT NULL REFERENCES public_keys(id)
, update_id int NOT NULL REFERENCES snapp_updates(id)
, token_id bigint NOT NULL
, balance_change bigint NOT NULL
, increment_nonce boolean NOT NULL
, events_ids int[] NOT NULL
, sequence_events_ids int[] NOT NULL
, call_data_id int NOT NULL REFERENCES snapp_state_data(id)
, call_depth int NOT NULL
, snapp_predicate_protocol_state_id int NOT NULL REFERENCES snapp_predicate_protocol_states(id)
, use_full_commitment boolean NOT NULL
);
CREATE TABLE snapp_party
( id serial NOT NULL PRIMARY KEY
, body_id int NOT NULL REFERENCES snapp_party_body(id)
, predicate_id int NOT NULL REFERENCES snapp_predicate(id)
, authorization_kind snapp_authorization_kind_type NOT NULL
);
|
-- SPDX-License-Identifier: Apache-2.0
-- Licensed to the Ed-Fi Alliance under one or more agreements.
-- The Ed-Fi Alliance licenses this file to you under the Apache License, Version 2.0.
-- See the LICENSE and NOTICES files in the project root for more information.
PRINT N'Creating primary key [StudentTitleIPartAProgramAssociation_PK] on [edfi].[StudentTitleIPartAProgramAssociation]'
GO
ALTER TABLE [edfi].[StudentTitleIPartAProgramAssociation] ADD CONSTRAINT [StudentTitleIPartAProgramAssociation_PK] PRIMARY KEY CLUSTERED ([BeginDate], [EducationOrganizationId], [ProgramEducationOrganizationId], [ProgramName], [ProgramTypeDescriptorId], [StudentUSI])
GO
PRINT N'Creating index [FK_StudentTitleIPartAProgramAssociation_TitleIPartAParticipantDescriptor] on [edfi].[StudentTitleIPartAProgramAssociation]'
GO
CREATE NONCLUSTERED INDEX [FK_StudentTitleIPartAProgramAssociation_TitleIPartAParticipantDescriptor] ON [edfi].[StudentTitleIPartAProgramAssociation] ([TitleIPartAParticipantDescriptorId])
GO
|
-- !Ups
CREATE TABLE close_expired_channel_requests(
channel_id UUID NOT NULL,
active BOOLEAN NOT NULL,
requested_on TIMESTAMPTZ NOT NULL,
CONSTRAINT close_expired_channel_request_pk PRIMARY KEY (channel_id),
CONSTRAINT close_expired_channel_request_channel_fk FOREIGN KEY (channel_id) REFERENCES channels(channel_id)
);
-- !Downs
DROP TABLE close_expired_channel_requests;
|
/**
* <feature scope="SanteDB.Persistence.Data.ADO" id="00010000-00" name="Initialize:001-01" invariantName="npgsql">
* <summary>Installs the core schema for SanteDB</summary>
* <remarks>This script installs the necessary core schema files for SanteDB</remarks>
* <isInstalled mustSucceed="true">SELECT to_regclass('public.sec_usr_tbl') IS NOT NULL;</isInstalled>
* </feature>
*/
-- CREATE EXTENSIONS
CREATE EXTENSION IF NOT EXISTS PGCRYPTO;
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
-- SECURITY USER CLASS CODES. THESE ARE USED TO IDENTIFY THE USER CLASSES AND ARE USED
-- TO DIFFERENTIATE THE CLASSES OF USERS
CREATE TABLE SEC_USR_CLS_CDTBL (
CLS_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
MNEMONIC VARCHAR(32) NOT NULL,
CONSTRAINT PK_SEC_USR_CLS_CDTBL PRIMARY KEY (CLS_ID)
);
INSERT INTO SEC_USR_CLS_CDTBL (CLS_ID, MNEMONIC) VALUES ('33932B42-6F4B-4659-8849-6ACA54139D8E','HumanUser');
INSERT INTO SEC_USR_CLS_CDTBL (CLS_ID, MNEMONIC) VALUES ('E9CD4DAD-2759-4022-AB07-92FCFB236A98','ApplicationUser');
INSERT INTO SEC_USR_CLS_CDTBL (CLS_ID, MNEMONIC) VALUES ('9F71BB34-9691-440F-8249-9C831EA16D58','SystemUser');
-- SECURITY PROVENANCE TABLE
-- THIS TABLE IS USED TO RECORD THE PROVENANCE OF AN OBJECT AT THE TIME OF CREATION / UPDATION / ETC.
CREATE TABLE SEC_PROV_TBL (
PROV_ID UUID NOT NULL DEFAULT uuid_generate_v1(), -- THE ID OF THE PROVENANCE EVENT
USR_ID UUID, -- THE USER IDENTITY OF THE EVENT
DEV_ID UUID, -- THE DEVICE ID OF THE EVENT
APP_ID UUID NOT NULL, -- THE APPLICATION THE USER OR DEVICE WAS USING
SES_ID UUID, -- THE SESSION OF THE EVENT IF APPLICABLE - NB THE SESSION MECHANISM MAY NOT BE IN THIS DATABASE SO THERE IS NO FK TO THE SESSION IDENTIFIER
EST_UTC TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP, -- THE TIMESTAMP WHEN THE TRANSACTION BEGAN ON THE SERVER (REGARDLESS OF WHEN THE DEVICE SAID THE CREATION TIME WAS)
EXT_ID UUID,
EXT_TYP CHAR(1) CHECK (EXT_TYP IN ('U','P')),
CONSTRAINT PK_SEC_PROV_TBL PRIMARY KEY (PROV_ID),
CONSTRAINT CK_SEC_PROV_ORGN CHECK (USR_ID IS NOT NULL OR DEV_ID IS NOT NULL OR SES_ID IS NOT NULL)
);
INSERT INTO SEC_PROV_TBL (PROV_ID, USR_ID, APP_ID) VALUES ('fadca076-3690-4a6e-af9e-f1cd68e8c7e8', 'FADCA076-3690-4A6E-AF9E-F1CD68E8C7E8', '4c5b9f8d-49f4-4101-9662-4270895224b2');
-- SECURITY USER TABLE IS USED BY THE SECURITY SUBSYSTEM AND IS OFTEN
-- LINKED TO A USER ENTITY, DEVICE, OR OTHER ENTITY IN THE CLINICAL
-- DATA MODEL
CREATE TABLE SEC_USR_TBL (
USR_ID UUID NOT NULL DEFAULT uuid_generate_v1(), -- THE UNIQUE IDENTIFIER FOR THE USER
CLS_ID UUID NOT NULL DEFAULT '33932B42-6F4B-4659-8849-6ACA54139D8E', -- THE USER CLASSIFICATION
USR_NAME VARCHAR(64) NOT NULL, -- THE USERNAME OF THE USER
EMAIL VARCHAR(256), -- THE EMAIL ADDRESS OF THE USER
EMAIL_CNF BOOLEAN NOT NULL DEFAULT FALSE, -- WHETHER THE USERS EMAIL ADDRESS HAS BEEN CONFIRMED
PHN_NUM VARCHAR(128), -- THE PRIMARY CONTACT NUMBER FOR SECURITY PURPOSES
PHN_CNF BOOLEAN NOT NULL DEFAULT FALSE, -- INDICATES WHETHER THE SECURITY PHONE NUMBER HAS BEEN CONFIRMED
TFA_ENABLED BOOLEAN NOT NULL DEFAULT FALSE, -- INDICATES WHETHER TWO FACTOR AUTHENTICATION IS REQUIRED FOR THIS ACCOUNT
LOCKED TIMESTAMPTZ, -- TRUE IF THE ACCOUNT HAS BEEN LOCKED
PASSWD VARCHAR(128) NOT NULL, -- THE PASSWORD OF THE USER
SEC_STMP VARCHAR(128) NOT NULL, -- THE SECURITY STAMP WHICH IS USED AS A VERIFICATION THAT THE USER INFORMATION HAS CHANGED
FAIL_LOGIN INT NOT NULL DEFAULT 0, -- THE NUMBER OF TIMES THAT THE USER HAS FAILED TO LOGIN
LAST_LOGIN_UTC TIMESTAMPTZ, -- THE LAST TIME THAT THE USER SUCCESSFULLY LOGGED IN
CRT_UTC TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP, -- THE TIME THAT THE USER ACCOUNT WAS CREATED
CRT_PROV_ID UUID, -- THE USER WHICH CREATED THIS USER ACCOUNT
OBSLT_UTC TIMESTAMPTZ, -- THE TIME THAT THE USER RECORD WAS OBSOLETED
OBSLT_PROV_ID UUID, -- THE USER WHICH OBSOLETED THIS USER ACCOUNT
UPD_UTC TIMESTAMPTZ, -- THE TIME WHEN THIS USER RECORD WAS LAST UPDATED
UPD_PROV_ID UUID, -- THE USER ID WHICH WAS RESPONSIBLE FOR THE UPDATE
CONSTRAINT PK_SEC_USR PRIMARY KEY (USR_ID),
CONSTRAINT FK_SEC_USR_OBSLT_PROV_ID FOREIGN KEY(OBSLT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_SEC_USR_UPD_PROV_ID FOREIGN KEY (UPD_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_SEC_USR_CRT_PROV_ID FOREIGN KEY (CRT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT CK_SEC_USR_OBSLT_USR CHECK (OBSLT_PROV_ID IS NOT NULL AND OBSLT_UTC IS NOT NULL OR OBSLT_PROV_ID IS NULL AND OBSLT_UTC IS NULL),
CONSTRAINT CK_SEC_USR_UPD_USR CHECK (UPD_PROV_ID IS NOT NULL AND UPD_UTC IS NOT NULL OR UPD_PROV_ID IS NULL AND UPD_UTC IS NULL),
CONSTRAINT FK_SEC_USR_USR_CLS_ID FOREIGN KEY (CLS_ID) REFERENCES SEC_USR_CLS_CDTBL(CLS_ID)
);
-- Create a system user
INSERT INTO SEC_USR_TBL (USR_ID, USR_NAME, PASSWD, SEC_STMP, CLS_ID) VALUES ('FADCA076-3690-4A6E-<PASSWORD>', 'SYSTEM','XXXX','XXXX', '9F71BB34-9691-440F-8249-9C831EA16D58');
-- Create the anonymous user
INSERT INTO SEC_USR_TBL (USR_ID, USR_NAME, PASSWD, SEC_STMP, CLS_ID) VALUES ('C96859F0-043C-4480-8DAB-F69D6E86696C', 'ANONYMOUS','XXXX','XXXX', '9F71BB34-9691-440F-8249-9C831EA16D58');
ALTER TABLE SEC_PROV_TBL ADD CONSTRAINT FK_SEC_PROV_USR FOREIGN KEY (USR_ID) REFERENCES SEC_USR_TBL(USR_ID);
-- Enforce SecurityUser
UPDATE SEC_USR_TBL SET CRT_PROV_ID = 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8';
ALTER TABLE SEC_USR_TBL ALTER COLUMN CRT_PROV_ID SET NOT NULL;
CREATE UNIQUE INDEX SEC_USR_NAME_IDX ON SEC_USR_TBL(LOWER(USR_NAME));
CREATE INDEX SEC_USR_NAME_PWD_IDX ON SEC_USR_TBL(USR_NAME, PASSWD);
-- SECURITY USER CLAIMS
CREATE TABLE SEC_USR_CLM_TBL (
CLM_ID UUID NOT NULL DEFAULT uuid_generate_v1(), -- UNIQUE ID FOR THE CLAIM
USR_ID UUID NOT NULL, -- THE USER TO WHICH THE CLAIM BELONGS
CLM_TYP VARCHAR(128) NOT NULL, -- THE TYPE OF CLAIM
CLM_VAL VARCHAR(128) NOT NULL, -- THE VALUE OF THE CLAIM
CONSTRAINT PK_SEC_USR_CLM_TBL PRIMARY KEY (CLM_ID),
CONSTRAINT FK_SEC_USR_CLM_SEC_USR_TBL FOREIGN KEY (USR_ID) REFERENCES SEC_USR_TBL(USR_ID)
);
CREATE INDEX SEC_USR_CLM_USR_ID_IDX ON SEC_USR_CLM_TBL(USR_ID);
-- LINK TO EXTERNAL IDENTIFIER TOKENS
CREATE TABLE SEC_USR_EXTRN_LGN_TBL (
LGN_PVDR VARCHAR(128) NOT NULL, -- THE PROVIDER (GMAIL, LIVE, ETC.)
PVD_KEY VARCHAR(128) NOT NULL, -- THE PROVIDER KEY
USR_ID UUID NOT NULL, -- THE USER TO WHICH THE LOGIN PROVIDES
CONSTRAINT PK_SEC_USR_EXTRN_LGN PRIMARY KEY (LGN_PVDR, PVD_KEY, USR_ID),
CONSTRAINT FK_SEC_USR_EXTRN_LGN_USR_ID FOREIGN KEY (USR_ID) REFERENCES SEC_USR_TBL(USR_ID)
);
-- SECURITY ROLES ARE USED TO GROU POLICIES AND ACTIONS AS WELL AS ACCESS TO
-- PARTICULAR POS APPLICATIONS BASED ON POLICY
CREATE TABLE SEC_ROL_TBL (
ROL_ID UUID NOT NULL DEFAULT uuid_generate_v1(), -- UNIQUE ID OF THE ROLE
ROL_NAME VARCHAR(256) NOT NULL, -- THE NAME OF THE ROLE
DESCR VARCHAR(256), -- THE DESCRIPTION OF THE ROLE
CRT_UTC TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP, -- THE CREATION TIME OF THE ROLE
CRT_PROV_ID UUID NOT NULL, -- THE USER WHICH CREATE THE ROLE
OBSLT_UTC TIMESTAMPTZ, -- THE TIME THAT THE ROLE WAS OBSOLETED
OBSLT_PROV_ID UUID, -- THE USER WHICH OBSOLETED THE ROLE
UPD_UTC TIMESTAMPTZ, -- THE TIME WHEN THE ROLE WAS UPDATED
UPD_PROV_ID UUID, -- THE USER WHICH UPDATED THE ROLE
CONSTRAINT PK_SEC_ROL_TBL PRIMARY KEY (ROL_ID),
CONSTRAINT FK_SEC_ROL_CRT_PROV_ID FOREIGN KEY (CRT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_SEC_ROL_OBSLT_PROV_ID FOREIGN KEY (OBSLT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_SEC_ROL_UPD_PROV_ID FOREIGN KEY (UPD_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT CK_SEC_ROL_OBSLT_USR CHECK (OBSLT_PROV_ID IS NOT NULL AND OBSLT_UTC IS NOT NULL OR OBSLT_PROV_ID IS NULL AND OBSLT_UTC IS NULL),
CONSTRAINT CK_SEC_ROL_UPD_USR CHECK (UPD_PROV_ID IS NOT NULL AND UPD_UTC IS NOT NULL OR UPD_PROV_ID IS NULL AND UPD_UTC IS NULL)
);
-- UNIQUE INDEX ON NAME
CREATE UNIQUE INDEX SEC_ROL_ROL_NAME_IDX ON SEC_ROL_TBL(LOWER(ROL_NAME));
-- SECURITY USER TO ROLE ASSOCIATION
CREATE TABLE SEC_USR_ROL_ASSOC_TBL (
USR_ID UUID NOT NULL, -- THE IDENTIFIER OF THE USER
ROL_ID UUID NOT NULL, -- THE IDENTIFIER OF THE ROLE
CONSTRAINT PK_SEC_ROL_ASSOC_TBL PRIMARY KEY (USR_ID, ROL_ID),
CONSTRAINT FK_SEC_ROL_ASSOC_USR_ID FOREIGN KEY (USR_ID) REFERENCES SEC_USR_TBL(USR_ID),
CONSTRAINT FK_SEC_ROL_ASSOC_ROL_ID FOREIGN KEY (ROL_ID) REFERENCES SEC_ROL_TBL(ROL_ID)
);
CREATE INDEX SEC_USR_ROL_ASSOC_USR_ID_IDX ON SEC_USR_ROL_ASSOC_TBL(USR_ID);
CREATE INDEX SEC_USR_ROL_ASSOC_ROL_ID_IDX ON SEC_USR_ROL_ASSOC_TBL(ROL_ID);
-- POLICY TABLE (SEE OIZ DESIGN DOCUMENTATION)
CREATE TABLE SEC_POL_TBL (
POL_ID UUID NOT NULL DEFAULT uuid_generate_v1(), -- THE UNIQUE IDENTIFIER OF THE POLICY
OID VARCHAR(128) NOT NULL, -- THE OID FOR THE POLICY
POL_NAME VARCHAR(64) NOT NULL, -- THE NAME OF THE POLICY
HDLR_CLS VARCHAR(256), -- THE HANDLER CLASS
IS_PUB BOOLEAN NOT NULL DEFAULT FALSE, -- WHETHER THE POLICY IS INTERNAL OR SHOULD BE DISCLOSED
IS_ELEV BOOLEAN NOT NULL DEFAULT FALSE, -- WHETHER THE POLICY CAN BE ELEVATED OVER
CRT_UTC TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP, -- THE DATE THE POLICY WAS CREATED
CRT_PROV_ID UUID NOT NULL, -- THE USER THAT CREATED THE ROLE
OBSLT_UTC TIMESTAMPTZ, -- THE DATE THE POLICY WAS OBSOLETED
OBSLT_PROV_ID UUID, -- THE OBSOLTION USER
CONSTRAINT PK_SEC_POL_TBL PRIMARY KEY (POL_ID),
CONSTRAINT FK_SEC_POL_CRT_PROV_ID FOREIGN KEY (CRT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_SEC_POL_OBSLT_PROV_ID FOREIGN KEY (OBSLT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID)
);
CREATE UNIQUE INDEX SEC_OID_IDX ON SEC_POL_TBL(OID);
-- BUILT IN OPENIZ POLICIES
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES ('da73c05a-3159-48c8-bbcb-741911d91cd2', '1.3.6.1.4.1.33349.3.1.5.9.2', 'Unrestricted All', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES ('ea73c05a-3159-48c8-bbcb-741911d91cd2', '1.3.6.1.4.1.33349.3.1.5.9.2.0', 'Unrestricted Administrative Function', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES ('d80ac1cf-3d6e-429f-a4a0-88c0bbbc839d', '1.3.6.1.4.1.33349.3.1.5.9.2.0.1', 'Change Password', '<PASSWORD>');
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES ('9c0d65ac-613e-4a67-8bc6-5ce2c0b42160', '1.3.6.1.4.1.33349.3.1.5.9.2.0.2', 'Create Role', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES ('79bcc227-0d13-4fbf-a83e-f2b9fce34151', '1.3.6.1.4.1.33349.3.1.5.9.2.0.3', 'Alter Role', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES ('ab8642cb-28e4-4e9e-bd7b-d6dc72b729b2', '1.3.6.1.4.1.33349.3.1.5.9.2.0.4', 'Create Identity', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES ('bb8642cb-28e4-4e9e-bd7b-d6dc72b729b2', '1.3.6.1.4.1.33349.3.1.5.9.2.0.5', 'Create Device', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES ('cb8642cb-28e4-4e9e-bd7b-d6dc72b729b2', '1.3.6.1.4.1.33349.3.1.5.9.2.0.6', 'Create Application', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES ('db8642cb-28e4-4e9e-bd7b-d6dc72b729b2', '1.3.6.1.4.1.33349.3.1.5.9.2.0.7', 'Administer Concept Dictionary', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES ('eb8642cb-28e4-4e9e-bd7b-d6dc72b729b2', '1.3.6.1.4.1.33349.3.1.5.9.2.0.8', 'Alter Identity', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES ('fb8642cb-28e4-4e9e-bd7b-d6dc72b729b2', '1.3.6.1.4.1.33349.3.1.5.9.2.0.9', 'Alter Policy', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES ('fa8642cb-28e4-4e9e-bd7b-d6dc72b729b2', '1.3.6.1.4.1.33349.3.1.5.9.2.0.10', 'Administer Data Warehouse', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES ('d15b96ab-646c-4c00-9a58-ea09eee67d7c', '1.3.6.1.4.1.33349.3.1.5.9.2.1', 'Login', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES ('e15b96ab-646c-4c00-9a58-ea09eee67d7c', '1.3.6.1.4.1.33349.3.1.5.9.2.1.0', 'Login as a Service', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES ('f6840336-4e20-4bc0-b965-baa6d7c80be3', '1.3.6.1.4.1.33349.3.1.5.9.2.2', 'Unrestricted Clinical Data', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES ('b81daf47-17a5-465e-a5fd-706b168b0265', '1.3.6.1.4.1.33349.3.1.5.9.2.2.0', 'Query Clinical Data', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES ('d7276921-a078-4348-95f2-ed3cde83e607', '1.3.6.1.4.1.33349.3.1.5.9.2.2.1', 'Write Clinical Data', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES ('2e027dee-ede4-4731-b7fa-cb67ae0586be', '1.3.6.1.4.1.33349.3.1.5.9.2.2.2', 'Delete Clinical Data', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES ('5fb731bf-4e59-4863-80bd-51757d58ea3b', '1.3.6.1.4.1.33349.3.1.5.9.2.2.3', 'Read Clinical Data', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES ('5fb731bf-4e59-4863-80bd-51757d58ea9a', '1.3.6.1.4.1.33349.3.1.5.9.2.2.4', 'Export Clinical Data', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES ('dea891aa-224d-4859-81b3-c1eb2750067e', '1.3.6.1.4.1.33349.3.1.5.9.2.999', 'Override Disclosure', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES ('eea891aa-224d-4859-81b3-c1eb2750067e', '1.3.6.1.4.1.33349.3.1.5.9.2.4', 'Unrestricted Metadata', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES ('fea891aa-224d-4859-81b3-c1eb2750067e', '1.3.6.1.4.1.33349.3.1.5.9.2.4.0', 'Read Metadata', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES ('0ea891aa-224d-4859-81b3-c1eb2750067e', '1.3.6.1.4.1.33349.3.1.5.9.2.10', 'Access Client Administrative Function', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES ('0a8642cb-28e4-4e9e-bd7b-d6df72b729b2', '1.3.6.1.4.1.33349.3.1.5.9.2.5', 'Unrestricted Data Warehouse', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES ('1a8642cb-28e4-4e9e-bd7b-d6df72b729b2', '1.3.6.1.4.1.33349.3.1.5.9.2.5.0', 'Write Warehouse Data', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES ('2a8642cb-28e4-4e9e-bd7b-d6df72b729b2', '1.3.6.1.4.1.33349.3.1.5.9.2.5.1', 'Delete Warehouse Data', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES ('3a8642cb-28e4-4e9e-bd7b-d6df72b729b2', '1.3.6.1.4.1.33349.3.1.5.9.2.5.2', 'Read Warehouse Data', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES ('4a8642cb-28e4-4e9e-bd7b-d6df72b729b2', '1.3.6.1.4.1.33349.3.1.5.9.2.5.3', 'Query Warehouse Data', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID, IS_ELEV) VALUES ('36f1ed35-552e-421a-8f59-629561ab9eb6', '1.3.6.1.4.1.33349.3.1.5.9.3', 'Restricted Information', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8', TRUE);
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES (('baa124aa-224d-4859-81b3-c1eb2750067e'), '1.3.6.1.4.1.33349.3.1.5.9.2.4.1.0', 'Write Materials', ('fadca076-3690-4a6e-af9e-f1cd68e8c7e8'));
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES (('baa125aa-224d-4859-81b3-c1eb2750067e'), '1.3.6.1.4.1.33349.3.1.5.9.2.4.1.1', 'Delete Materials', ('fadca076-3690-4a6e-af9e-f1cd68e8c7e8'));
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES (('baa126aa-224d-4859-81b3-c1eb2750067e'), '1.3.6.1.4.1.33349.3.1.5.9.2.4.0.1.2', 'Read Materials', ('fadca076-3690-4a6e-af9e-f1cd68e8c7e8'));
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES (('baa127aa-224d-4859-81b3-c1eb2750067e'), '1.3.6.1.4.1.33349.3.1.5.9.2.4.0.1.3', 'Query Materials', ('fadca076-3690-4a6e-af9e-f1cd68e8c7e8'));
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES (('baa224aa-224d-4859-81b3-c1eb2750067e'), '1.3.6.1.4.1.33349.3.1.5.9.2.4.2.0', 'Write Places & Orgs', ('fadca076-3690-4a6e-af9e-f1cd68e8c7e8'));
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES (('baa225aa-224d-4859-81b3-c1eb2750067e'), '1.3.6.1.4.1.33349.3.1.5.9.2.4.2.1', 'Delete Places & Orgs', ('fadca076-3690-4a6e-af9e-f1cd68e8c7e8'));
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES (('baa226aa-224d-4859-81b3-c1eb2750067e'), '1.3.6.1.4.1.33349.3.1.5.9.2.4.0.2.2', 'Read Places & Orgs', ('fadca076-3690-4a6e-af9e-f1cd68e8c7e8'));
INSERT INTO SEC_POL_TBL (POL_ID, OID, POL_NAME, CRT_PROV_ID) VALUES (('baa227aa-224d-4859-81b3-c1eb2750067e'), '1.3.6.1.4.1.33349.3.1.5.9.2.4.0.2.3', 'Query Places & Orgs', ('fadca076-3690-4a6e-af9e-f1cd68e8c7e8'));
-- SECURITY ROLE TO POLICY ASSOCIATIVE ENTITY
CREATE TABLE SEC_ROL_POL_ASSOC_TBL (
SEC_POL_INST_ID UUID NOT NULL DEFAULT uuid_generate_v1(), -- UNIQUE IDENTIFIER
ROL_ID UUID NOT NULL, -- THE ROLE TO WHICH THE POLICY APPLIES
POL_ID UUID NOT NULL, -- POLICY IDENTIFIER
POL_ACT INT NOT NULL DEFAULT 0 CHECK (POL_ACT < 3), -- POLICY ACTIONS
CONSTRAINT PK_SEC_POL_ROL_ASSOC PRIMARY KEY (SEC_POL_INST_ID),
CONSTRAINT FK_SEC_POL_ROL_ASSOC_ROL_ID FOREIGN KEY (ROL_ID) REFERENCES SEC_ROL_TBL(ROL_ID),
CONSTRAINT FK_SEC_POL_ROL_ASSOC_POL_ID FOREIGN KEY (POL_ID) REFERENCES SEC_POL_TBL(POL_ID)
);
CREATE INDEX SEC_POL_ROL_ASSOC_ROL_ID_IDX ON SEC_ROL_POL_ASSOC_TBL(ROL_ID);
CREATE UNIQUE INDEX SEC_POL_ROL_ASSOC_POL_ROL_IDX ON SEC_ROL_POL_ASSOC_TBL(ROL_ID, POL_ID);
-- INSERT THE DEFAULT ASSOCIATIONS
-- CREATE USERS ROLE
INSERT INTO SEC_ROL_TBL (ROL_ID, ROL_NAME, DESCR, CRT_PROV_ID) VALUES ('f4e58ae8-8bbd-4635-a6d4-8a195b143436', 'USERS', 'Group for users who have login access', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('d15b96ab-646c-4c00-9a58-ea09eee67d7c', 'f4e58ae8-8bbd-4635-a6d4-8a195b143436', 2); -- GRANT Login
-- CREATE ADMINISTRATORS ROLE
INSERT INTO SEC_ROL_TBL (ROL_ID, ROL_NAME, DESCR, CRT_PROV_ID) VALUES ('f6d2ba1d-5bb5-41e3-b7fb-2ec32418b2e1', 'ADMINISTRATORS', 'Group for users who have administrative access', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('ea73c05a-3159-48c8-bbcb-741911d91cd2', 'f6d2ba1d-5bb5-41e3-b7fb-2ec32418b2e1', 2); -- GRANT Access Administrative Function
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('d15b96ab-646c-4c00-9a58-ea09eee67d7c', 'f6d2ba1d-5bb5-41e3-b7fb-2ec32418b2e1', 2); -- GRANT Login
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('f6840336-4e20-4bc0-b965-baa6d7c80be3', 'f6d2ba1d-5bb5-41e3-b7fb-2ec32418b2e1', 0); -- DENY Unrestricted Clinical Data
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('dea891aa-224d-4859-81b3-c1eb2750067e', 'f6d2ba1d-5bb5-41e3-b7fb-2ec32418b2e1', 0); -- DENY Override disclosure
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('0ea891aa-224d-4859-81b3-c1eb2750067e', 'f6d2ba1d-5bb5-41e3-b7fb-2ec32418b2e1', 2); -- GRANT Local Administrator
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('eea891aa-224d-4859-81b3-c1eb2750067e', 'f6d2ba1d-5bb5-41e3-b7fb-2ec32418b2e1', 2); -- GRANT Unrestricted Metadata
-- CLINICAL STAFF
INSERT INTO SEC_ROL_TBL (ROL_ID, ROL_NAME, DESCR, CRT_PROV_ID) VALUES ('43167DCB-6F77-4F37-8222-133E675B4434', 'CLINICAL_STAFF', 'Group for clinic staff', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('ea73c05a-3159-48c8-bbcb-741911d91cd2', '43167DCB-6F77-4F37-8222-133E675B4434', 0); -- GRANT Access Administrative Function
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('d15b96ab-646c-4c00-9a58-ea09eee67d7c', '43167DCB-6F77-4F37-8222-133E675B4434', 2); -- GRANT Login
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('f6840336-4e20-4bc0-b965-baa6d7c80be3', '43167DCB-6F77-4F37-8222-133E675B4434', 2); -- GRANT Unrestricted Clinical Data
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('dea891aa-224d-4859-81b3-c1eb2750067e', '43167DCB-6F77-4F37-8222-133E675B4434', 0); -- DENY Override disclosure
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('fea891aa-224d-4859-81b3-c1eb2750067e', '43167DCB-6F77-4F37-8222-133E675B4434', 2); -- GRANT Read Metadata Administrator
-- CREATE ROLE SYSTEM WHICH IS DENIED LOGIN
INSERT INTO SEC_ROL_TBL (ROL_ID, ROL_NAME, DESCR, CRT_PROV_ID) VALUES ('c3ae21d2-fc23-4133-ba42-b0e0a3b817d7', 'SYSTEM', 'Group for user SYSTEM. Identifies the functions that internal system functions have access to. EDITING THIS ROLE MAY CAUSE SYSTEM FAILURE', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_USR_ROL_ASSOC_TBL (ROL_ID, USR_ID) VALUES ('c3ae21d2-fc23-4133-ba42-b0e0a3b817d7', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
-- GRANT ALL
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('da73c05a-3159-48c8-bbcb-741911d91cd2', 'c3ae21d2-fc23-4133-ba42-b0e0a3b817d7', 2);
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('d15b96ab-646c-4c00-9a58-ea09eee67d7c', 'c3ae21d2-fc23-4133-ba42-b0e0a3b817d7', 0); -- DENY Login
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('dea891aa-224d-4859-81b3-c1eb2750067e', 'c3ae21d2-fc23-4133-ba42-b0e0a3b817d7', 0); -- DENY Override disclosure
-- CREATE ROLE ANONYMOUS WHICH IS DENIED ALL CLINICAL
INSERT INTO SEC_ROL_TBL (ROL_ID, ROL_NAME, DESCR, CRT_PROV_ID) VALUES ('dadbd858-13c5-44a3-ad7d-1c44cecaa4b6', 'ANONYMOUS', 'Group for user ANONYMOUS. Identifies the functions that non-logged in users have access to. EDITING THIS ROLE MAY INTRODUCE SECURITY BREACHES', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_USR_ROL_ASSOC_TBL (ROL_ID, USR_ID) VALUES ('dadbd858-13c5-44a3-ad7d-1c44cecaa4b6', 'C96859F0-043C-4480-8DAB-F69D6E86696C');
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('ea73c05a-3159-48c8-bbcb-741911d91cd2', 'dadbd858-13c5-44a3-ad7d-1c44cecaa4b6', 0); -- DENY Access Administrative Function
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('d15b96ab-646c-4c00-9a58-ea09eee67d7c', 'dadbd858-13c5-44a3-ad7d-1c44cecaa4b6', 0); -- DENY Login
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('f6840336-4e20-4bc0-b965-baa6d7c80be3', 'dadbd858-13c5-44a3-ad7d-1c44cecaa4b6', 0); -- DENY Unrestricted Clinical Data
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('dea891aa-224d-4859-81b3-c1eb2750067e', 'dadbd858-13c5-44a3-ad7d-1c44cecaa4b6', 0); -- DENY Override disclosure
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('fea891aa-224d-4859-81b3-c1eb2750067e', 'dadbd858-13c5-44a3-ad7d-1c44cecaa4b6', 0); -- GRANT Read Metadata
-- CREATE SYNCHRONIZERS ROLE
INSERT INTO SEC_ROL_TBL (ROL_ID, ROL_NAME, DESCR, CRT_PROV_ID) VALUES ('54B7677C-682B-425F-A937-3AA03D5951F1', 'SYNCHRONIZERS', 'Group for user SYNCHRONIZERS. Identifies the functions that are used for synchronization. EDITING THIS ROLE MAY INTRODUCE SECURITY BREACHES', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('e15b96ab-646c-4c00-9a58-ea09eee67d7c', '54B7677C-682B-425F-A937-3AA03D5951F1', 2); -- GRANT AS Service Login
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('f6840336-4e20-4bc0-b965-baa6d7c80be3', '54B7677C-682B-425F-A937-3AA03D5951F1', 2); -- GRANT Unrestricted Clinical Data
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('fea891aa-224d-4859-81b3-c1eb2750067e', '54B7677C-682B-425F-A937-3AA03D5951F1', 2); -- GRANT Read Metadata
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('eea891aa-224d-4859-81b3-c1eb2750067e', '54B7677C-682B-425F-A937-3AA03D5951F1', 2); -- GRANT Unrestricted metadata
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('dea891aa-224d-4859-81b3-c1eb2750067e', '54B7677C-682B-425F-A937-3AA03D5951F1', 0); -- DENY Override disclosure
-- CREATE DEVICE ROLE
INSERT INTO SEC_ROL_TBL (ROL_ID, ROL_NAME, DESCR, CRT_PROV_ID) VALUES ('613d05a0-dd0d-4516-a30c-e733741885f0', 'DEVICE', 'Represents a device in the system. Identifies the functions that are used for devices. EDITING THIS ROLE MAY INTRODUCE SECURITY BREACHES', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('0ea891aa-224d-4859-81b3-c1eb2750067e', '613d05a0-dd0d-4516-a30c-e733741885f0', 2); -- GRANT Access Client Administrative Function
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('d80ac1cf-3d6e-429f-a4a0-88c0bbbc839d', '613d05a0-dd0d-4516-a30c-e733741885f0', 0); -- DENY Change Any Password
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('eb8642cb-28e4-4e9e-bd7b-d6dc72b729b2', '613d05a0-dd0d-4516-a30c-e733741885f0', 2); -- GRANT Alter Identity
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('ab8642cb-28e4-4e9e-bd7b-d6dc72b729b2', '613d05a0-dd0d-4516-a30c-e733741885f0', 2); -- GRANT Create Identity
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('d15b96ab-646c-4c00-9a58-ea09eee67d7c', '613d05a0-dd0d-4516-a30c-e733741885f0', 2); -- GRANT Login
INSERT INTO SEC_ROL_POL_ASSOC_TBL (POL_ID, ROL_ID, POL_ACT) VALUES ('fea891aa-224d-4859-81b3-c1eb2750067e', '613d05a0-dd0d-4516-a30c-e733741885f0', 2); -- GRANT Read Metadata
-- SECURITY DEVICE WHICH IS HOW DEVICES AUTHENTICATE THEMSELVES
CREATE TABLE SEC_DEV_TBL (
DEV_ID UUID NOT NULL DEFAULT uuid_generate_v1(), -- UNIQUE IDENTIFIER FOR THE DEVICE
DEV_SCRT VARCHAR(64) NOT NULL, -- THE SECRET OF THE DEVICE (EX: X509 THUMB)
DEV_PUB_ID VARCHAR(64) NOT NULL, -- THE PUBLIC IDENTIIFER OF THE DEVICE
CRT_UTC TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP, -- THE DATE THE DEVICE WAS CREATED
CRT_PROV_ID UUID NOT NULL, -- THE USER WHICH CREATED THE DEVICE
OBSLT_UTC TIMESTAMPTZ, -- THE TIME THAT THE DEVICE WAS OBSOLETED
OBSLT_PROV_ID UUID, -- THE USER WHICH OBSOLETD THE DEVICE
RPLC_DEV_ID UUID, -- THE DEVICE THAT THIS DEVICE REPLACES.
CONSTRAINT PK_SEC_DEV_TBL PRIMARY KEY (DEV_ID),
CONSTRAINT FK_SEC_DEV_CRT_PROV_ID FOREIGN KEY (CRT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_SEC_DEV_OBSLT_PROV_ID FOREIGN KEY (OBSLT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_SEC_DEV_RPLC_DEV_ID FOREIGN KEY (RPLC_DEV_ID) REFERENCES SEC_DEV_TBL(DEV_ID),
CONSTRAINT CK_SEC_DEV_OBSLT_USR CHECK (OBSLT_PROV_ID IS NOT NULL AND OBSLT_UTC IS NOT NULL OR OBSLT_PROV_ID IS NULL AND OBSLT_UTC IS NULL)
);
CREATE UNIQUE INDEX SEC_DEV_PUB_ID_IDX ON SEC_DEV_TBL(DEV_PUB_ID);
CREATE UNIQUE INDEX SEC_DEV_SCRT_IDX ON SEC_DEV_TBL(DEV_SCRT);
ALTER TABLE SEC_PROV_TBL ADD CONSTRAINT FK_SEC_PROV_DEV FOREIGN KEY (DEV_ID) REFERENCES SEC_DEV_TBL(DEV_ID);
-- SECURITY APPLICATION WHICH IS HOW APPLICATIONS AUTHENTICATE THEMSELVES
CREATE TABLE SEC_APP_TBL (
APP_ID UUID NOT NULL DEFAULT uuid_generate_v1(), -- UNIQUE IDENTIIFER FOR THE DEV
APP_PUB_ID VARCHAR(64) NOT NULL, -- THE PUBLIC IDENTIFIER FOR THE APP
APP_SCRT VARCHAR(64) NOT NULL, -- THE APPLICATION SECRET
CRT_UTC TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP, -- THE CREATION TIME OF THE APP
CRT_PROV_ID UUID NOT NULL, -- THE USER WHICH IS RESPONSIBLE FOR THE CREATION OF THE APP
OBSLT_UTC TIMESTAMPTZ, -- OBSOLETION TIME
OBSLT_PROV_ID UUID, -- THE OBSOLETION USER
RPLC_APP_ID UUID, -- THE APPLICATION WICH THIS APPLICATION REPLACES
CONSTRAINT PK_SEC_APP_TBL PRIMARY KEY (APP_ID),
CONSTRAINT FK_SEC_APP_CRT_PROV_ID FOREIGN KEY (CRT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_SEC_APP_OBSLT_PROV_ID FOREIGN KEY (OBSLT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_SEC_APP_RPLC_APP_ID FOREIGN KEY (RPLC_APP_ID) REFERENCES SEC_APP_TBL(APP_ID),
CONSTRAINT CK_SEC_APP_OBSLT_PROV_ID CHECK (OBSLT_PROV_ID IS NOT NULL AND OBSLT_UTC IS NOT NULL OR OBSLT_PROV_ID IS NULL AND OBSLT_UTC IS NULL)
);
CREATE UNIQUE INDEX SEC_APP_APP_PUB_ID_IDX ON SEC_APP_TBL(APP_PUB_ID);
CREATE INDEX SEC_APP_APP_SCRT_IDX ON SEC_APP_TBL(APP_SCRT);
INSERT INTO SEC_APP_TBL (APP_ID, APP_PUB_ID, APP_SCRT, CRT_PROV_ID) VALUES ('4c5b9f8d-49f4-4101-9662-4270895224b2', 'SYSTEM', 'XXXXX', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
ALTER TABLE SEC_PROV_TBL ADD CONSTRAINT FK_SEC_PROV_APP FOREIGN KEY (APP_ID) REFERENCES SEC_APP_TBL(APP_ID);
-- SECURITY DEVICE TO POLICY ASSOC
CREATE TABLE SEC_DEV_POL_ASSOC_TBL (
SEC_POL_INST_ID UUID NOT NULL DEFAULT uuid_generate_v1(), -- UUID FOR THE INSTANCES
DEV_ID UUID NOT NULL, -- DEVICE IDENTIFIER TO WHICH THE POLICY APPLIES
POL_ID UUID NOT NULL, -- POLICY IDENTIIFER TO WHICH THE POLICY APPLIES
POL_ACT INT NOT NULL CHECK (POL_ACT < 3), -- POLICY ACTION EITHER GRANT, DENY OR ELEVATE
CONSTRAINT PK_SEC_DEV_POL_ASSOC_TBL PRIMARY KEY (SEC_POL_INST_ID),
CONSTRAINT FK_SEC_DEV_POL_ASSOC_DEV_ID FOREIGN KEY (DEV_ID) REFERENCES SEC_DEV_TBL(DEV_ID),
CONSTRAINT FK_SEC_DEV_POL_ASSOC_POL_ID FOREIGN KEY (POL_ID) REFERENCES SEC_POL_TBL(POL_ID)
);
CREATE INDEX SEC_DEV_POL_ASSOC_DEV_ID_IDX ON SEC_DEV_POL_ASSOC_TBL(DEV_ID);
-- SECURITY APPLICATION TO POLICY INSTANCE ASSOCIATION
CREATE TABLE SEC_APP_POL_ASSOC_TBL (
SEC_POL_INST_ID UUID NOT NULL DEFAULT uuid_generate_v1(), -- UUID FOR THE INSTANCE
APP_ID UUID NOT NULL, -- APPLICATION IDENTIFIER TO WHICH THE POLICY APPLIES
POL_ID UUID NOT NULL, -- THE POLICY TO WHICH THE POLICY INSTANCE APPLIES
POL_ACT INT NOT NULL CHECK (POL_ACT < 3), -- POLICY ACTION
CONSTRAINT PK_SEC_APP_POL_ASSOC_TBL PRIMARY KEY (SEC_POL_INST_ID),
CONSTRAINT FK_SEC_APP_POL_ASSOC_APP_ID FOREIGN KEY (APP_ID) REFERENCES SEC_APP_TBL(APP_ID),
CONSTRAINT FK_SEC_APP_POL_ASSOC_POL_ID FOREIGN KEY (POL_ID) REFERENCES SEC_POL_TBL(POL_ID)
);
CREATE INDEX SEC_APP_POL_ASSOC_APP_ID_IDX ON SEC_APP_POL_ASSOC_TBL(APP_ID);
ALTER TABLE SEC_PROV_TBL ADD CONSTRAINT FK_SEC_PROV_USR_TBL FOREIGN KEY (USR_ID) REFERENCES SEC_USR_TBL(USR_ID);
ALTER TABLE SEC_PROV_TBL ADD CONSTRAINT FK_SEC_PROV_DEV_TBL FOREIGN KEY (DEV_ID) REFERENCES SEC_DEV_TBL(DEV_ID);
ALTER TABLE SEC_PROV_TBL ADD CONSTRAINT FK_SEC_PROV_APP_TBL FOREIGN KEY (APP_ID) REFERENCES SEC_APP_TBL(APP_ID);
-- PHONETIC ALGORITHMS TABLE
CREATE TABLE PHON_ALG_TBL (
ALG_ID UUID NOT NULL DEFAULT uuid_generate_v1(), -- UNIQUE IDENTIFIER FOR THE ALGORITHM
ALG_NAME VARCHAR(32) NOT NULL, -- NAME OF THE ALGORITHM
HDLR_CLS VARCHAR(256), -- THE HANDLER CLASS WHICH CAN GENERATE THE ALGORITHM CODES
CRT_UTC TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP, -- THE CREATION TIME
CRT_PROV_ID UUID NOT NULL, -- THE USER WHICH CREATED THE ALGORITHM
UPD_UTC TIMESTAMPTZ, -- THE UPDATED TIME FOR THE ALGORITHM
UPD_PROV_ID UUID, -- THE USER WHICH UPDATED THE ALGORITHM
OBSLT_UTC TIMESTAMPTZ, -- THE TIMESTAMP OF THE OBSOLETION
OBSLT_PROV_ID UUID, -- THE USER WHICH OBSOLETED THE ALGORITHM
CONSTRAINT PK_PHON_ALG_TBL PRIMARY KEY (ALG_ID),
CONSTRAINT FK_PHON_ALG_CRT_PROV_ID FOREIGN KEY (CRT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_PHON_ALG_UPD_PROV_ID FOREIGN KEY (UPD_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_PHON_ALG_OBSLT_PROV_ID FOREIGN KEY (OBSLT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT CK_PHON_ALG_OBSLT_PROV_ID CHECK (OBSLT_PROV_ID IS NOT NULL AND OBSLT_UTC IS NOT NULL OR OBSLT_PROV_ID IS NULL AND OBSLT_UTC IS NULL),
CONSTRAINT CK_PHON_ALG_UPD_USR CHECK (UPD_PROV_ID IS NOT NULL AND UPD_UTC IS NOT NULL OR UPD_PROV_ID IS NULL AND UPD_UTC IS NULL)
);
CREATE INDEX PHON_ALG_NAME_IDX ON PHON_ALG_TBL(ALG_NAME);
INSERT INTO PHON_ALG_TBL (ALG_ID, ALG_NAME, HDLR_CLS, CRT_PROV_ID) VALUES ('402cd339-d0e4-46ce-8fc2-12a4b0e17226', 'NONE', NULL, 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO PHON_ALG_TBL (ALG_ID, ALG_NAME, HDLR_CLS, CRT_PROV_ID) VALUES ('3352a79a-d2e0-4e0c-9b48-6fd2a202c681', 'SOUNDEX', 'SanteDB.Core.Services.Impl.PhoneticAlgorithms.SoundexPhoneticAlgorithmHandler, SanteDB.Core, Version=0.6.0.0', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO PHON_ALG_TBL (ALG_ID, ALG_NAME, HDLR_CLS, CRT_PROV_ID) VALUES ('d79a4dc6-66a6-4602-8fcb-7dc09a895793', 'METAPHONE', 'SanteDB.Core.Services.Impl.PhoneticAlgorithms.MetaphonePhoneticAlgorithmHandler, SanteDB.Core, Version=0.6.0.0', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
-- PHONETIC VALUES TABLE ASSOCIATES STRINGS WITH VALUES
CREATE TABLE PHON_VAL_TBL (
VAL_ID UUID NOT NULL DEFAULT uuid_generate_v1(), -- UNIQUE IDENTIFIER FORHTE VALUE
VAL VARCHAR(64) NOT NULL, -- THE VALUE OF THE CODE IN HUMAN READABLE FORM
PHON_CS VARCHAR(32), -- THE PHONETIC CODE OF THE VALUE
ALG_ID UUID NOT NULL, -- THE PHONETIC ALGORITHM USED TO GENERATE THE CODE
CONSTRAINT PK_PHON_VAL_TBL PRIMARY KEY (VAL_ID),
CONSTRAINT FK_PHON_VAL_ALG_ID FOREIGN KEY (ALG_ID) REFERENCES PHON_ALG_TBL(ALG_ID)
);
CREATE INDEX PHON_VAL_PHON_CS_IDX ON PHON_VAL_TBL(PHON_CS);
CREATE INDEX PHON_VAL_PHON_VAL_IDX ON PHON_VAL_TBL(VAL);
-- GENERIC CONCEPTS TABLE
CREATE TABLE CD_TBL (
CD_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
IS_SYS BOOLEAN NOT NULL DEFAULT FALSE, -- WHETHER THE CONCEPT IS A SYSTEM CONCEPT
CONSTRAINT PK_CD_TBL PRIMARY KEY (CD_ID)
);
-- CONCEPT CLASSIFICATIONS TABLE
CREATE TABLE CD_CLS_TBL (
CLS_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
CLS_NAME VARCHAR(50) NOT NULL, -- THE NAME OF THE CLASS
MNEMONIC VARCHAR(16) NOT NULL, -- THE MNEMONIC USED BY THE SYSTEM TO LOCATE CONCEPTS
CRT_UTC TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP, -- THE TIME THAT HTE CONCEPT CLASS WAS CREATED
CRT_PROV_ID UUID NOT NULL, -- THE USER WHICH CREATED THE CONCEPT CLASS
UPD_UTC TIMESTAMPTZ, -- THE TIME WHEN THE CONCEPT CLASS WAS CREATE
UPD_PROV_ID UUID, -- THE USER ID THAT UPDATED THE CONCEPT CLASS
OBSLT_UTC TIMESTAMPTZ, -- THE OBSOLETION TIME OF THE CONCEPT
OBSLT_PROV_ID UUID, -- THE USER WHICH OBSOLETED THE CONCEPT
CONSTRAINT PK_CD_CLS_TBL PRIMARY KEY (CLS_ID),
CONSTRAINT FK_CD_CLS_CRT_PROV_ID FOREIGN KEY (CRT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_CD_CLS_UPD_PROV_ID FOREIGN KEY (UPD_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_CD_CLS_OBSLT_PROV_ID FOREIGN KEY (OBSLT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT CK_CD_CLS_OBSLT_PROV_ID CHECK (OBSLT_PROV_ID IS NOT NULL AND OBSLT_UTC IS NOT NULL OR OBSLT_PROV_ID IS NULL AND OBSLT_UTC IS NULL),
CONSTRAINT CK_CD_CLS_UPD_PROV_ID CHECK (UPD_PROV_ID IS NOT NULL AND UPD_UTC IS NOT NULL OR UPD_PROV_ID IS NULL AND UPD_UTC IS NULL)
);
CREATE UNIQUE INDEX CD_CLS_MNEMONIC_IDX ON CD_CLS_TBL(MNEMONIC);
-- CONCEPT SETS REPRESENT A SET OF CONCEPTS LOGICALLY GROUPED TOGEHTHER
CREATE TABLE CD_SET_TBL (
SET_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
SET_NAME VARCHAR(50) NOT NULL, -- THE NAME OF THE SET
MNEMONIC VARCHAR(64) NOT NULL, -- THE MNEMONIC (SYSTEM NAME) OF THE SET
OID VARCHAR(64) NOT NULL, -- THE OID (EXTERNAL ID) OF THE CONCEPT SET
URL VARCHAR(256) NOT NULL, -- THE DEFINITION URL OF THE CONCEPT SET
CRT_UTC TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP, -- THE CREATION TIME OF THE CONCEPT SET
CRT_PROV_ID UUID NOT NULL, -- THE USER WHICH CREATED THE CONCEPT SET
OBSLT_UTC TIMESTAMPTZ, -- THE TIME THAT THE SET WAS OBSOLETED
OBSLT_RSN TEXT, -- THE REASON THE SET WAS OBSOLETED
OBSLT_PROV_ID UUID, -- THE OBSOLETION USER IDENTIFIER
UPD_UTC TIMESTAMPTZ, -- THE UPDATED TIME OF THE CONCEPT SET
UPD_PROV_ID UUID, -- THE UUID OF THE USER WHICH UPDATED THE CONCEPT SET
CONSTRAINT PK_CD_SET_TBL PRIMARY KEY (SET_ID),
CONSTRAINT FK_CD_SET_CRT_PROV_ID FOREIGN KEY (CRT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_CD_SET_UPD_PROV_ID FOREIGN KEY (UPD_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_CD_SET_OBSLT_PROV_ID FOREIGN KEY (OBSLT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT CK_CD_SET_OBSLT_PROV_ID CHECK (OBSLT_PROV_ID IS NOT NULL AND OBSLT_UTC IS NOT NULL OR OBSLT_PROV_ID IS NULL AND OBSLT_UTC IS NULL),
CONSTRAINT CK_CD_SET_UPD_PROV_ID CHECK (UPD_PROV_ID IS NOT NULL AND UPD_UTC IS NOT NULL OR UPD_PROV_ID IS NULL AND UPD_UTC IS NULL)
);
CREATE UNIQUE INDEX CD_SET_OID_IDX ON CD_SET_TBL(OID);
CREATE UNIQUE INDEX CD_SET_URL_IDX ON CD_SET_TBL(URL);
CREATE UNIQUE INDEX CD_SET_MNEMONIC_IDX ON CD_SET_TBL(MNEMONIC);
-- CONCEPT SET MEMBERS ASSOCIATION
CREATE TABLE CD_SET_MEM_ASSOC_TBL (
SET_ID UUID NOT NULL, -- THE CONCEPT SET TO WHICH THE CONCEPT BELONGS
CD_ID UUID NOT NULL, -- THE CONCEPT WHICH BELONGS TO THE SET.,
CONSTRAINT PK_CD_SET_MEM_ASSOC_TBL PRIMARY KEY (SET_ID, CD_ID),
CONSTRAINT FK_CD_SET_MEM_ASSOC_CD_SET FOREIGN KEY (SET_ID) REFERENCES CD_SET_TBL(SET_ID),
CONSTRAINT FK_CD_SET_MEM_ASSOC_CD_ID FOREIGN KEY (CD_ID) REFERENCES CD_TBL(CD_ID)
);
CREATE INDEX CD_SET_MEM_ASSOC_CD_SET_ID_IDX ON CD_SET_MEM_ASSOC_TBL(SET_ID);
CREATE INDEX CD_SET_MEM_ASSOC_CD_ID_IDX ON CD_SET_MEM_ASSOC_TBL(CD_ID);
-- VERSION SEQUENCING
CREATE SEQUENCE CD_VRSN_SEQ START WITH 1 INCREMENT BY 1;
-- CONCEPT VERSIONS
CREATE TABLE CD_VRSN_TBL (
CD_VRSN_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
VRSN_SEQ_ID NUMERIC(20) NOT NULL DEFAULT (nextval('CD_VRSN_SEQ')),-- VERSION SEQUENCE
CD_ID UUID NOT NULL, -- THE CONCEPT TO WHICH THE VERSION APPLIES
STS_CD_ID UUID NOT NULL, -- THE STATUS OF THE CONCEPT AT THE CURRENT STATE
CRT_UTC TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP, -- THE TIME THE VERSION WAS CREATED
CRT_PROV_ID UUID NOT NULL, -- THE USER WHICH WAS RESPONSIBLE FOR THE CREATION OF THE CONCEPT VERSION
OBSLT_UTC TIMESTAMPTZ, -- THE TIME THAT OBSOLETED THIS VERSION
OBSLT_PROV_ID UUID, -- THE USER WHICH OBSOLETED THIS VERSION
RPLC_VRSN_ID UUID, -- THE VERSION THAT THIS VERSION REPLACES
CLS_ID UUID NOT NULL, -- THE CONCEPT CLASSIFICATION OF THE CONCEPT AT THE CURRENT VERSION
MNEMONIC VARCHAR(64) NOT NULL, -- THE MNEMONIC OF THE CONCEPT AT THE CURRENT VERSION
CONSTRAINT PK_CD_VRSN_TBL PRIMARY KEY (CD_VRSN_ID),
CONSTRAINT FK_CD_VRSN_STAT_CD_ID FOREIGN KEY (STS_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT FK_CD_VRSN_CD_ID FOREIGN KEY (CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT FK_CD_VRSN_CRT_PROV_ID FOREIGN KEY (CRT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_CD_VRSN_OBSLT_PROV_ID FOREIGN KEY (OBSLT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_CD_VRSN_CLS_ID FOREIGN KEY (CLS_ID) REFERENCES CD_CLS_TBL(CLS_ID),
CONSTRAINT FK_CD_VRSN_RPLC_VRSN_ID FOREIGN KEY (RPLC_VRSN_ID) REFERENCES CD_VRSN_TBL(CD_VRSN_ID),
CONSTRAINT CK_CD_VRSN_OBSLT_PROV_ID CHECK (OBSLT_PROV_ID IS NOT NULL AND OBSLT_UTC IS NOT NULL OR OBSLT_PROV_ID IS NULL AND OBSLT_UTC IS NULL)
);
CREATE INDEX CD_VRSN_CD_ID_IDX ON CD_VRSN_TBL(CD_ID);
CREATE INDEX CD_VRSN_MNEMONIC_IDX ON CD_VRSN_TBL(MNEMONIC);
--DROP INDEX CD_VRSN_MNEMONIC_UQ_IDX ON CD_VRSN_TBL(MNEMONIC) WHERE OBSLT_UTC IS NULL;
CREATE UNIQUE INDEX CD_VRSN_VRSN_SEQ_IDX ON CD_VRSN_TBL(VRSN_SEQ_ID);
-- CONCEPT NAME LOCALIZATION TABLE
CREATE TABLE CD_NAME_TBL (
NAME_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
CD_ID UUID NOT NULL, -- THE CONCEPT THAT THE NAME APPLIES TO
EFFT_VRSN_SEQ_ID NUMERIC(20) NOT NULL, -- THE VERSION SEQUENCE WHERE THIS BECOMES EFFECTIVE
OBSLT_VRSN_SEQ_ID NUMERIC(20), -- THE VERSION SEQUENCE WHERE THIS IS NO LONGER EFFECTIVE
LANG_CS CHAR(2) NOT NULL, -- THE LANGUAGE CODE
VAL VARCHAR(256) NOT NULL, -- NAME OF THE CODE
PHON_CS VARCHAR(32), -- THE PHONETIC CODE
PHON_ALG_ID UUID NOT NULL, -- THE PHONETIC ALGORITHM USED TO GENERATE THE CODE
CONSTRAINT PK_CD_NAME_TBL PRIMARY KEY (NAME_ID),
CONSTRAINT FK_CD_NAME_CD_ID FOREIGN KEY (CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT FK_CD_NAME_EFFT_VRSN_SEQ FOREIGN KEY (EFFT_VRSN_SEQ_ID) REFERENCES CD_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_CD_NAME_OBSLT_VRSN_SEQ FOREIGN KEY (OBSLT_VRSN_SEQ_ID) REFERENCES CD_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_CD_NAME_PHON_ALG_ID FOREIGN KEY (PHON_ALG_ID) REFERENCES PHON_ALG_TBL(ALG_ID)
);
CREATE INDEX CD_NAME_VRSN_IDX ON CD_NAME_TBL(EFFT_VRSN_SEQ_ID, OBSLT_VRSN_SEQ_ID);
CREATE INDEX CD_NAME_VAL_IDX ON CD_NAME_TBL(VAL);
CREATE INDEX CD_NAME_PHON_CS_IDX ON CD_NAME_TBL(PHON_CS);
CREATE INDEX CD_NAME_CD_ID_IDX ON CD_NAME_TBL(CD_ID);
-- CODE SYSTEMS TABLE
CREATE TABLE CD_SYS_TBL (
CS_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
CS_NAME VARCHAR(256), -- HUMAN READABLE NAME FOR THE CODESYSTEM
OID VARCHAR(64) NOT NULL, -- THE OID OF THE CODE SYSTEM
DOMAIN VARCHAR(50), -- THE ASSIGNING AUTHORITY OF THE COE SYSTEM
CRT_UTC TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP, -- THE TIME THAT THE CODE SYSTEM WAS CREATED
CRT_PROV_ID UUID NOT NULL, -- THE USER IDENTIFIER THAT CREATED THE CODE SYSTEM
OBSLT_UTC TIMESTAMPTZ, -- THE TIMESTAMP OF OBSOLETION
OBSLT_PROV_ID UUID, -- THE USER WHO OBSOLETED
UPD_UTC TIMESTAMPTZ, -- THE TIMESTAMP OFUPDATING
UPD_PROV_ID UUID, -- THE USER IDENTIIFER WHO UPDATED
URL VARCHAR(256) NOT NULL, -- THE DEFINITION URL FOR THE CODE SYSTEM
VRSN_TXT VARCHAR(10), -- THE VERSION OF THE CODE SYSTEM AS DEFINED BY THE AUTHORITY
DESCR TEXT, -- THE HUMAN DESCRIPTION OF THE CODE SYSTEM
CONSTRAINT PK_CD_SYS_TBL PRIMARY KEY (CS_ID),
CONSTRAINT FK_CD_SYS_CRT_PROV_ID FOREIGN KEY (CRT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_CD_SYS_UPD_PROV_ID FOREIGN KEY (UPD_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_CD_SYS_OBSLT_PROV_ID FOREIGN KEY (OBSLT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT CK_CD_SYS_OBSLT_PROV_ID CHECK (OBSLT_PROV_ID IS NOT NULL AND OBSLT_UTC IS NOT NULL OR OBSLT_PROV_ID IS NULL AND OBSLT_UTC IS NULL),
CONSTRAINT CK_CD_SYS_UPD_PROV_ID CHECK (UPD_PROV_ID IS NOT NULL AND UPD_UTC IS NOT NULL OR UPD_PROV_ID IS NULL AND UPD_UTC IS NULL)
);
-- INDEX ON CODE SYSTEM
CREATE UNIQUE INDEX CD_SYS_OID_IDX ON CD_SYS_TBL(OID);
CREATE UNIQUE INDEX CD_SYS_URL_IDX ON CD_SYS_TBL(URL);
-- CONCEPT RELATIONSHIP TYPES
CREATE TABLE CD_REL_TYP_CDTBL (
REL_TYP_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
REL_NAME VARCHAR(50) NOT NULL, -- NAME OF THE RELATIONSHIP TYPE
MNEMONIC VARCHAR(20) NOT NULL, -- THE UNCHANGING MNEMONIC OF THE RELATIONSHIP
CRT_UTC TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP, -- THE TIME THAT THE RELATION WAS CREATED
CRT_PROV_ID UUID NOT NULL, -- THE USER IDENTIFIER THAT CREATED THE RELATION
OBSLT_UTC TIMESTAMPTZ, -- THE TIMESTAMP OF OBSOLETION
OBSLT_PROV_ID UUID, -- THE USER WHO OBSOLETED
UPD_UTC TIMESTAMPTZ, -- THE TIMESTAMP OFUPDATING
UPD_PROV_ID UUID, -- THE USER IDENTIIFER WHO UPDATED
CONSTRAINT PK_CD_REL_TYP_CDTBL PRIMARY KEY (REL_TYP_ID),
CONSTRAINT FK_CD_REL_CRT_PROV_ID FOREIGN KEY (CRT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_CD_REL_UPD_PROV_ID FOREIGN KEY (UPD_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_CD_REL_OBSLT_PROV_ID FOREIGN KEY (OBSLT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT CK_CD_REL_OBSLT_PROV_ID CHECK (OBSLT_PROV_ID IS NOT NULL AND OBSLT_UTC IS NOT NULL OR OBSLT_PROV_ID IS NULL AND OBSLT_UTC IS NULL),
CONSTRAINT CK_CD_REL_UPD_PROV_ID CHECK (UPD_PROV_ID IS NOT NULL AND UPD_UTC IS NOT NULL OR UPD_PROV_ID IS NULL AND UPD_UTC IS NULL)
);
CREATE INDEX CD_REL_TYP_MNEMONIC_IDX ON CD_REL_TYP_CDTBL(MNEMONIC);
INSERT INTO CD_REL_TYP_CDTBL (REL_TYP_ID, REL_NAME, MNEMONIC, CRT_PROV_ID) VALUES ('2c4dafc2-566a-41ae-9ebc-3097d7d22f4a', 'Same as', 'SameAs', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO CD_REL_TYP_CDTBL (REL_TYP_ID, REL_NAME, MNEMONIC, CRT_PROV_ID) VALUES ('ad27293d-433c-4b75-88d2-b5360cd95450', 'Inverse of', 'InverseOf', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO CD_REL_TYP_CDTBL (REL_TYP_ID, REL_NAME, MNEMONIC, CRT_PROV_ID) VALUES ('a159d45b-3c34-4e1b-9b75-9193a7528ced', 'Member of', 'MemberOf', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO CD_REL_TYP_CDTBL (REL_TYP_ID, REL_NAME, MNEMONIC, CRT_PROV_ID) VALUES ('ae8b4f2f-009f-4e0d-b35e-5a89555c5947', 'Negation of', 'NegationOf', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO CD_REL_TYP_CDTBL (REL_TYP_ID, REL_NAME, MNEMONIC, CRT_PROV_ID) VALUES ('ae8b4f2f-009f-4e0d-b35e-5a89555c5980', 'Wider-Than', 'WiderThan', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
INSERT INTO CD_REL_TYP_CDTBL (REL_TYP_ID, REL_NAME, MNEMONIC, CRT_PROV_ID) VALUES ('ae8b4f2f-009f-4e0d-b35e-5a89555c5990', 'Narrower-Than', 'NarrowerThan', 'fadca076-3690-4a6e-af9e-f1cd68e8c7e8');
-- REFERENCE TERMS
CREATE TABLE REF_TERM_TBL (
REF_TERM_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
CS_ID UUID NOT NULL, -- CODE SYSTEM UUID
MNEMONIC VARCHAR(50) NOT NULL, -- MNEMONIC OF THE REF TERM
CRT_UTC TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP, -- THE TIME THAT THE REF WAS CREATED
CRT_PROV_ID UUID NOT NULL, -- THE USER IDENTIFIER THAT CREATED THE REF
OBSLT_UTC TIMESTAMPTZ, -- THE TIMESTAMP OF OBSOLETION
OBSLT_PROV_ID UUID, -- THE USER WHO OBSOLETED
UPD_UTC TIMESTAMPTZ, -- THE TIMESTAMP OFUPDATING
UPD_PROV_ID UUID, -- THE USER IDENTIIFER WHO UPDATED
CONSTRAINT PK_REF_TERM_TBL PRIMARY KEY (REF_TERM_ID),
CONSTRAINT FK_REF_TERM_CS_ID FOREIGN KEY (CS_ID) REFERENCES CD_SYS_TBL(CS_ID),
CONSTRAINT FK_REF_TERM_CRT_PROV_ID FOREIGN KEY (CRT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_REF_TERM_UPD_PROV_ID FOREIGN KEY (UPD_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_REF_TERM_OBSLT_PROV_ID FOREIGN KEY (OBSLT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT CK_REF_TERM_OBSLT_PROV_ID CHECK (OBSLT_PROV_ID IS NOT NULL AND OBSLT_UTC IS NOT NULL OR OBSLT_PROV_ID IS NULL AND OBSLT_UTC IS NULL),
CONSTRAINT CK_REF_TERM_UPD_PROV_ID CHECK (UPD_PROV_ID IS NOT NULL AND UPD_UTC IS NOT NULL OR UPD_PROV_ID IS NULL AND UPD_UTC IS NULL)
);
CREATE INDEX CD_REF_TERM_MNEMONIC_IDX ON REF_TERM_TBL(MNEMONIC);
CREATE UNIQUE INDEX CD_REF_TERM_CS_MNEMONIC_UQ_IDX ON REF_TERM_TBL(CS_ID, MNEMONIC);
-- CONCEPT REFERENCE TERM ASSOCIATION
CREATE TABLE CD_REF_TERM_ASSOC_TBL (
CD_REF_TERM_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
REF_TERM_ID UUID NOT NULL, -- THE REFERENCE TERM PART OF THIS RELATIONSHIP
CD_ID UUID NOT NULL, -- THE CONCEPT DEFINITION IDENTIFIER
EFFT_VRSN_SEQ_ID NUMERIC(20) NOT NULL, -- THE VERSION AT WHICH THE REFERENCE TERM RELATIONSHIP BECAME ACTIVE
OBSLT_VRSN_SEQ_ID NUMERIC(20), -- THE VERSION AT WHICH THE REFERENCE TERM IS NO LONGER ACTIVE
REL_TYP_ID UUID NOT NULL, -- THE RELATIONSHIP TYPE IDENTIFIER
CONSTRAINT PK_CD_REF_TERM_ASSOC_TBL PRIMARY KEY (CD_REF_TERM_ID),
CONSTRAINT FK_CD_REF_TERM_ASSOC_REF_TERM_ID FOREIGN KEY (REF_TERM_ID) REFERENCES REF_TERM_TBL(REF_TERM_ID),
CONSTRAINT FK_CD_REF_TERM_ASSOC_CD_ID FOREIGN KEY (CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT FK_CD_REF_TERM_ASSOC_EFFT_VRSN_SEQ_ID FOREIGN KEY (EFFT_VRSN_SEQ_ID) REFERENCES CD_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_CD_REF_TERM_ASSOC_OBSLT_VRSN_SEQ_ID FOREIGN KEY (OBSLT_VRSN_SEQ_ID) REFERENCES CD_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_CD_REF_TERM_ASSOC_REL_TYP_ID FOREIGN KEY (REL_TYP_ID) REFERENCES CD_REL_TYP_CdTBL(REL_TYP_ID)
);
CREATE INDEX CD_REF_TERM_ASSOC_CD_ID_IDX ON CD_REF_TERM_ASSOC_TBL(CD_ID);
CREATE INDEX CD_REF_TERM_ASSOC_VRSN_IDX ON CD_REF_TERM_ASSOC_TBL(EFFT_VRSN_SEQ_ID, OBSLT_VRSN_SEQ_ID);
-- REFERENCE TERM DISPLAY NAMES
CREATE TABLE REF_TERM_NAME_TBL (
REF_TERM_NAME_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
REF_TERM_ID UUID NOT NULL, -- THE REFERENCE TERM ID TO WHICH THE NAME APPLIES
LANG_CS CHAR(2) NOT NULL, -- THE ISO LANGUAGE CODE FOR WHICH THE NAME APPLIES
TERM_NAME VARCHAR(256) NOT NULL, -- THE NAME TO BE USED
CRT_UTC TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP, -- THE TIME THE NAME WAS CREATED
CRT_PROV_ID UUID NOT NULL, -- THE USER WHICH WAS RESPONSIBLE FOR THE CREATION OF THE NAME
OBSLT_UTC TIMESTAMPTZ, -- THE TIME THAT OBSOLETED THIS NAME
OBSLT_PROV_ID UUID, -- THE USER WHICH OBSOLETED THIS NAME
OBSLT_RSN TEXT, -- THE REASON THAT THE TERM NAME WAS OBSOLETED
PHON_CS VARCHAR(20), -- THE PHONETIC CODE FOR THE NAME
PHON_ALG_ID UUID NOT NULL, -- THE PHONETIC ALGORITHM FOR THE NAME
CONSTRAINT PK_REF_TERM_NAME_TBL PRIMARY KEY (REF_TERM_NAME_ID),
CONSTRAINT FK_REF_TERM_NAME_REF_TERM_ID FOREIGN KEY (REF_TERM_ID) REFERENCES REF_TERM_TBL(REF_TERM_ID),
CONSTRAINT FK_REF_TERM_NAME_CRT_PROV_ID FOREIGN KEY (CRT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_REF_TERM_NAME_OBSLT_PROV_ID FOREIGN KEY (OBSLT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT CK_REF_TERM_NAME_OBSLT_PROV_ID CHECK (OBSLT_PROV_ID IS NOT NULL AND OBSLT_UTC IS NOT NULL OR OBSLT_PROV_ID IS NULL AND OBSLT_UTC IS NULL)
);
-- INDEX OF REF TERM NAMES
CREATE INDEX REF_TERM_NAME_PHON_CS_IDX ON REF_TERM_NAME_TBL(PHON_CS);
CREATE INDEX REF_TERM_NAME_TERM_NAME_IDX ON REF_TERM_NAME_TBL(TERM_NAME);
-- REFERENCE TERM RELATIONSHIP TABLE
CREATE TABLE CD_REL_ASSOC_TBL (
CD_REL_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
SRC_CD_ID UUID NOT NULL, -- THE SOURCE OF THE RELATIONSHIP
TRG_CD_ID UUID NOT NULL, -- THE TARGET OF THE RELATIONSHIP
REL_TYP_ID UUID NOT NULL, -- THE TYPE OF RELATIONSHIP
EFFT_VRSN_SEQ_ID NUMERIC(20) NOT NULL, -- THE VERSION AT WHICH THE RELATIONSHIP BECOMES ACTIVE
OBSLT_VRSN_SEQ_ID NUMERIC(20), -- THE VERSION AT WHICH THE RELATIONSHIP IS NO LONGER ACTIVE
CONSTRAINT PK_CD_REL_ASSOC_TBL PRIMARY KEY (CD_REL_ID),
CONSTRAINT FK_CD_REL_ASSOC_SRC_CD_ID FOREIGN KEY (SRC_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT FK_CD_REL_ASSOC_TRG_CD_ID FOREIGN KEY (TRG_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT FK_CD_REL_ASSOC_REL_TYP_ID FOREIGN KEY (REL_TYP_ID) REFERENCES CD_REL_TYP_CDTBL(REL_TYP_ID),
CONSTRAINT FK_CD_REL_ASSOC_EFFT_VRSN_SEQ_ID FOREIGN KEY (EFFT_VRSN_SEQ_ID) REFERENCES CD_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_CD_REL_ASSOC_OBSLT_VRSN_SEQ_ID FOREIGN KEY (OBSLT_VRSN_SEQ_ID) REFERENCES CD_VRSN_TBL(VRSN_SEQ_ID)
);
-- INDEX FOR RELATIONSHIP
CREATE INDEX CD_REL_ASSOC_VRSN_IDX ON CD_REL_ASSOC_TBL(EFFT_VRSN_SEQ_ID, OBSLT_VRSN_SEQ_ID);
CREATE INDEX CD_REL_ASSOC_SRC_ID_IDX ON CD_REL_ASSOC_TBL(SRC_CD_ID);
CREATE INDEX CD_REL_ASSOC_TRG_ID_IDX ON CD_REL_ASSOC_TBL(TRG_CD_ID);
-- CURRENT CONCEPT VERSION VIEW
CREATE VIEW CD_CUR_VRSN_VW AS
SELECT CD_VRSN_TBL.*, CD_TBL.IS_SYS, CD_CLS_TBL.MNEMONIC AS CLS_MNEMONIC
FROM CD_VRSN_TBL INNER JOIN CD_TBL USING (CD_ID)
INNER JOIN CD_CLS_TBL USING (CLS_ID)
WHERE CD_VRSN_TBL.OBSLT_UTC IS NULL;
-- CONCEPT SET MEMBERS VIEW
CREATE VIEW CD_SET_MEM_VW AS
SELECT CD_SET_TBL.SET_ID, CD_SET_TBL.MNEMONIC AS SET_MNEMONIC, CD_CUR_VRSN_VW.CD_ID, CD_CUR_VRSN_VW.CD_VRSN_ID, CD_CUR_VRSN_VW.MNEMONIC AS CD_MNEMONIC, CD_CUR_VRSN_VW.CLS_MNEMONIC
FROM CD_SET_MEM_ASSOC_TBL INNER JOIN CD_SET_TBL USING (SET_ID)
INNER JOIN CD_CUR_VRSN_VW USING(CD_ID);
-- ASSERT A CONCEPT HAS A PARTICULAR CLASSIFIER
-- @RETURN : TRUE IF THE CLASS CARRIES THE SPECIIFED CLASSIFICATION
-- @PARAM CD_ID_IN : THE UUID OF THE CONCEPT
-- @PARAM CLS_MNEMONIC_IN : THE CLASS TO ASSERT
CREATE OR REPLACE FUNCTION ASSRT_CD_CLS(
CD_ID_IN IN UUID,
CLS_MNEMONIC_IN IN VARCHAR(32)
) RETURNS BOOLEAN AS
$$
BEGIN
RETURN (SELECT COUNT(*) FROM CD_VRSN_TBL INNER JOIN CD_CLS_TBL USING (CLS_ID) WHERE CD_ID = CD_ID_IN AND (CD_CLS_TBL.MNEMONIC = CLS_MNEMONIC_IN OR
-- CAN ALSO BE A NuLL REASON
CD_CLS_TBL.CLS_ID = '05ac7b93-1b1e-47dd-87dd-e56e353ecb94')) > 0;
END;
$$ LANGUAGE PLPGSQL;
-- ASSERT THAT A CONCEPT HAS A SET MEMBER
-- @RETURN : TRUE IF THE CONCEPT SET CONTAINS THE CONCEPT
-- @PARAM CD_ID_IN : THE UUID FO THE CONCEPT
-- @PARAM SET_MNEMONIC_IN : THE NAME OF THE CONCEPT SET TO TEST
CREATE OR REPLACE FUNCTION IS_CD_SET_MEM(
CD_ID_IN IN UUID,
SET_MNEMONIC_IN IN VARCHAR(32)
) RETURNS BOOLEAN AS
$$
BEGIN
RETURN (SELECT COUNT(*) FROM CD_SET_MEM_ASSOC_TBL INNER JOIN CD_SET_TBL USING(SET_ID) WHERE CD_ID = CD_ID_IN AND (MNEMONIC = SET_MNEMONIC_IN OR SET_ID = '51925f69-14a3-4516-bb2c-e2280a4f3065')) > 0;
END;
$$ LANGUAGE PLPGSQL;
-- CONSTRAINT CHECK FOR CONCEPT SETS
ALTER TABLE CD_VRSN_TBL ADD CONSTRAINT CK_CD_VRSN_STS_CD_ID CHECK (IS_CD_SET_MEM(STS_CD_ID, 'ConceptStatus'));
-- EXTENSION TYPE REGISTRY
CREATE TABLE EXT_TYP_TBL (
EXT_TYP_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
HDLR_CLS VARCHAR(256) NOT NULL, -- THE EXTENSION HANDLER WHICH HANDLES (SERIALIZES) THIS TYPE OF EXTENSION
EXT_NAME VARCHAR(128) NOT NULL, -- THE HUMAN NAME OF THE EXTENSION
IS_ACTIVE BOOLEAN NOT NULL DEFAULT TRUE, -- TRUE IF THE EXTENSION REGISTRATION IS ACTIVE
CRT_UTC TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP, -- THE CREATION TIME OF THE EXTENSION TYPE
CRT_PROV_ID UUID NOT NULL, -- THE USER WHO CREATED THE EXTENSION REGISTRATION
UPD_UTC TIMESTAMPTZ, -- THE TIME THAT THE EXTENSION TYPE WAS UPDATED
UPD_PROV_ID UUID, -- THE USER WHICH UPDATED THE EXTENSION TYPE
OBSLT_UTC TIMESTAMPTZ, -- THE TIME WHEN THE EXTENSION WAS OBSOLETED
OBSLT_PROV_ID UUID, -- THE USER WHICH OBSOLETED THE EXTENSION TYPE
CONSTRAINT PK_EXT_TYP_TBL PRIMARY KEY (EXT_TYP_ID),
CONSTRAINT FK_EXT_TYP_CRT_PROV_ID FOREIGN KEY (CRT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_EXT_TYP_UPD_PROV_ID FOREIGN KEY (UPD_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_EXT_TYP_OBSLT_PROV_ID FOREIGN KEY (OBSLT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT CK_EXT_TYP_OBSLT_PROV_ID CHECK (OBSLT_PROV_ID IS NOT NULL AND OBSLT_UTC IS NOT NULL OR OBSLT_PROV_ID IS NULL AND OBSLT_UTC IS NULL),
CONSTRAINT CK_EXT_TYP_UPD_PROV_ID CHECK (UPD_PROV_ID IS NOT NULL AND UPD_UTC IS NOT NULL OR UPD_PROV_ID IS NULL AND UPD_UTC IS NULL)
);
-- INDEX ON EXTENSION TYPE
CREATE UNIQUE INDEX EXT_TYP_NAME_IDX ON EXT_TYP_TBL(EXT_NAME);
-- ASSIGNING AUTHORITY
CREATE TABLE ASGN_AUT_TBL (
AUT_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
AUT_NAME VARCHAR(50) NOT NULL, -- THE NAME OF THE ASSIGNING AUTHORITY
OID VARCHAR(256) NOT NULL, -- THE OID OF THE ASSIGNING AUTHORTIY
NSID VARCHAR(32) NOT NULL, -- THE HL7 V2 CX.4 ASSIGNING AUTHORITY DOMAIN
URL VARCHAR(250), -- THE URL OF THE ASSINGING AUTHORITY DEFINITION
APP_ID UUID, -- APPLICATION IDENTIFIER OF A DEVICE THAT IS PERMITTED TO ASSIGN IDS
DESCR TEXT, -- THE DESCRIPTION OF THE AUTHORITY
CRT_UTC TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP, -- THE TIME THAT THE AA WAS CREATED
CRT_PROV_ID UUID NOT NULL, -- THE USER WHICH CREATED THE AA
OBSLT_UTC TIMESTAMPTZ, -- THE TIME THAT THE AA WAS OBSOLETED
OBSLT_PROV_ID UUID, -- THE USER WHICH OBSOLETED THE AA
VAL_RGX VARCHAR(64), -- REGULAR EXPRESSION FOR VALIDATION
IS_UNQ BOOLEAN NOT NULL DEFAULT FALSE, -- TRUE IF THE ASSIGNING AUTHORITY IS UNIQUE
CONSTRAINT PK_ASGN_AUT_TBL PRIMARY KEY (AUT_ID),
CONSTRAINT FK_ASGN_AUT_CRT_PROV_ID FOREIGN KEY (CRT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_ASGN_AUT_OBSLT_PROV_ID FOREIGN KEY (OBSLT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT CK_ASGN_AUT_OBSLT_PROV_ID CHECK (OBSLT_PROV_ID IS NOT NULL AND OBSLT_UTC IS NOT NULL OR OBSLT_PROV_ID IS NULL AND OBSLT_UTC IS NULL),
CONSTRAINT FK_ASGN_AUT_APP_ID FOREIGN KEY (APP_ID) REFERENCES SEC_APP_TBL(APP_ID)
);
CREATE UNIQUE INDEX ASGN_AUT_NAME_IDX ON ASGN_AUT_TBL(NSID);
CREATE UNIQUE INDEX ASGN_AUT_OID_IDX ON ASGN_AUT_TBL(OID);
-- IDENTIFIES SCOPES TO WHICH AN AA APPLIES
CREATE TABLE ASGN_AUT_SCP_TBL (
AUT_ID UUID NOT NULL, -- THE AA TO WHICH THE SCOPE APPLIES
CD_ID UUID NOT NULL, -- THE UUID FOR THE CLASS WHICH DESCRIBES THE SCOPE
CONSTRAINT PK_ASGN_AUT_SCP_TBL PRIMARY KEY (AUT_ID, CD_ID),
CONSTRAINT FK_ASGN_AUT_SCP_AUT_ID FOREIGN KEY (AUT_ID) REFERENCES ASGN_AUT_TBL(AUT_ID),
CONSTRAINT FK_ASGN_AUT_SCP_CD_ID FOREIGN KEY (CD_ID) REFERENCES CD_TBL(CD_ID)
);
-- IDENTIFIER TYPES
CREATE TABLE ID_TYP_TBL (
ID_TYP_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
TYP_CD_ID UUID NOT NULL, -- THE TYPE OF IDENTIFIER
ENT_SCP_CD_ID UUID NOT NULL, -- THE SCOPE IN WHICH THE IDENTIFIER TYPE CAN BE USED
CRT_UTC TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP, -- THE TIME THAT THE AA WAS CREATED
CRT_PROV_ID UUID NOT NULL, -- THE USER WHICH CREATED THE AA
OBSLT_UTC TIMESTAMPTZ, -- THE TIME THAT THE AA WAS OBSOLETED
OBSLT_PROV_ID UUID, -- THE USER WHICH OBSOLETED THE AA
CONSTRAINT PK_ID_TYP_TBL PRIMARY KEY (ID_TYP_ID),
CONSTRAINT FK_ID_TYP_CRT_PROV_ID FOREIGN KEY (CRT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_ID_TYP_OBSLT_PROV_ID FOREIGN KEY (OBSLT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT CK_ID_TYP_OBSLT_PROV_ID CHECK (OBSLT_PROV_ID IS NOT NULL AND OBSLT_UTC IS NOT NULL OR OBSLT_PROV_ID IS NULL AND OBSLT_UTC IS NULL),
CONSTRAINT FK_ID_TYP_TYP_CD_ID FOREIGN KEY (TYP_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT FK_ID_TYP_ENT_SCP_CD_ID FOREIGN KEY (ENT_SCP_CD_ID) REFERENCES CD_TBL(CD_ID)
);
-- TEMPLATE DEFINITION TABLE
CREATE TABLE TPL_DEF_TBL (
TPL_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
OID VARCHAR(64), -- THE OID OF THE TEMPLATE DEFINITION
MNEMONIC VARCHAR(64) NOT NULL, -- THE MNEMONIC FOR THE TEMPLATE DEFINITION
TPL_NAME VARCHAR(128), -- THE HUMAN READABLE NAME FOR THE TEMPLATE DEFINITION
DESCR TEXT, -- A DESCRIPTION OF THE TEMPLATE
CRT_UTC TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP, -- THE CREATION TIME OF THE EXTENSION TYPE
CRT_PROV_ID UUID NOT NULL, -- THE USER WHO CREATED THE EXTENSION REGISTRATION
UPD_UTC TIMESTAMPTZ, -- THE TIME THAT THE EXTENSION TYPE WAS UPDATED
UPD_PROV_ID UUID, -- THE USER WHICH UPDATED THE EXTENSION TYPE
OBSLT_UTC TIMESTAMPTZ, -- THE TIME WHEN THE EXTENSION WAS OBSOLETED
OBSLT_PROV_ID UUID, -- THE USER WHICH OBSOLETED THE EXTENSION TYPE
CONSTRAINT PK_TPL_DEF_TBL PRIMARY KEY (TPL_ID),
CONSTRAINT FK_TPL_DEF_CRT_PROV_ID FOREIGN KEY (CRT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_TPL_DEF_UPD_PROV_ID FOREIGN KEY (UPD_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_TPL_DEF_OBSLT_PROV_ID FOREIGN KEY (OBSLT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT CK_TPL_DEF_OBSLT_PROV_ID CHECK (OBSLT_PROV_ID IS NOT NULL AND OBSLT_UTC IS NOT NULL OR OBSLT_PROV_ID IS NULL AND OBSLT_UTC IS NULL),
CONSTRAINT CK_TPL_DEF_UPD_PROV_ID CHECK (UPD_PROV_ID IS NOT NULL AND UPD_UTC IS NOT NULL OR UPD_PROV_ID IS NULL AND UPD_UTC IS NULL)
);
CREATE UNIQUE INDEX TPL_DEF_OID_IDX ON TPL_DEF_TBL(OID);
CREATE UNIQUE INDEX TPL_DEF_MNEMONIC_IDX ON TPL_DEF_TBL(MNEMONIC);
-- CREATE ACT TABLE
CREATE TABLE ACT_TBL (
ACT_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
TPL_ID UUID, -- IDENTIFIES THE TEMPLATE WHICH THIS ACT FOLLOWS
CLS_CD_ID UUID NOT NULL, -- CLASSIFIES THE TYPE OF ACT
MOD_CD_ID UUID NOT NULL, -- IDENTIIFES THE MOOD OF THE ACT
CONSTRAINT PK_ACT PRIMARY KEY (ACT_ID),
CONSTRAINT FK_ACT_CLS_CD_ID FOREIGN KEY (CLS_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT FK_ACT_MOD_CD_ID FOREIGN KEY (MOD_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT CK_ACT_CLS_CD CHECK (IS_CD_SET_MEM(CLS_CD_ID, 'ActClass')),
CONSTRAINT CK_ACT_MOD_CD CHECK (IS_CD_SET_MEM(MOD_CD_ID, 'ActMood')),
CONSTRAINT FK_ACT_TPL_ID FOREIGN KEY (TPL_ID) REFERENCES TPL_DEF_TBL(TPL_ID)
);
-- INDEXING
CREATE INDEX ACT_CLS_CD_IDX ON ACT_TBL(CLS_CD_ID);
-- ACT VERSION SEQUENCE
CREATE SEQUENCE ACT_VRSN_SEQ START WITH 1 INCREMENT BY 1;
-- ACT VERSION TABLE
CREATE TABLE ACT_VRSN_TBL (
ACT_VRSN_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
VRSN_SEQ_ID NUMERIC(20) NOT NULL DEFAULT nextval('ACT_VRSN_SEQ'), -- THE VERSION SEQUENCE
ACT_ID UUID NOT NULL, -- THE ACT IDENTIFIER TO WHICH THIS VERSION APPLIES
CRT_UTC TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP, -- THE TIME THAT HTE VERSION WAS CREATED
CRT_PROV_ID UUID NOT NULL, -- THE USER WHICH WAS RESPONSIBLE FOR THE CREATION OF THE VERSION
OBSLT_UTC TIMESTAMPTZ, -- THE TIME WHEN THE ACT VERSION BECOMES OBSOLETE
OBSLT_PROV_ID UUID, -- THE USER WHICH OBSOLETED THE ACT VERSION
OBSLT_RSN TEXT, -- THE REASON WHY THE VERSION WSA OBSOLETED
RPLC_VRSN_ID UUID, -- THE UUID OF THE VERSION THAT THIS VERISON REPLACE
NEG_IND BOOLEAN NOT NULL DEFAULT FALSE, -- TRUE IF THE ACT NEVER OCCURRED
TYP_CD_ID UUID, -- THE TYPE CONCEPT OF THE ACT AT THIS VERSION
STS_CD_ID UUID NOT NULL, -- THE STATUS OF THE ACT AS OF THIS VERSION
RSN_CD_ID UUID, -- THE REASON OF THE ACT TO OCCUR
ACT_UTC TIMESTAMPTZ, -- THE TIME THE ACT OCCURRED
ACT_START_UTC TIMESTAMPTZ, -- THE TIME THE ACT STARTED OR WAS TO START
ACT_STOP_UTC TIMESTAMPTZ, -- THE TIME THAT THE ACT STOPPED TO WAS TO STOP
CONSTRAINT PK_ACT_VRSN_TBL PRIMARY KEY (ACT_VRSN_ID),
CONSTRAINT FK_ACT_VRSN_ACT FOREIGN KEY (ACT_ID) REFERENCES ACT_TBL(ACT_ID),
CONSTRAINT FK_ACT_VRSN_CRT_PROV_ID FOREIGN KEY (CRT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_ACT_VRSN_OBSLT_PROV_ID FOREIGN KEY (OBSLT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_ACT_VRSN_RPLC_VRSN_ID FOREIGN KEY (RPLC_VRSN_ID) REFERENCES ACT_VRSN_TBL(ACT_VRSN_ID),
CONSTRAINT FK_ACT_VRSN_TYP_CD_ID FOREIGN KEY (TYP_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT FK_ACT_VRSN_RSN_CD_ID FOREIGN KEY (RSN_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT FK_ACT_VRSN_STS_CD_ID FOREIGN KEY (STS_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT CK_ACT_VRSN_STS_CD CHECK (IS_CD_SET_MEM(STS_CD_ID, 'ActStatus')),
CONSTRAINT CK_ACT_VRSN_RSN_CD CHECK (RSN_CD_ID IS NULL OR IS_CD_SET_MEM(RSN_CD_ID, 'ActReason') OR IS_CD_SET_MEM(RSN_CD_ID, 'NullReason')),
CONSTRAINT CK_ACT_VRSN_OBSLT_PROV_ID CHECK(OBSLT_PROV_ID IS NOT NULL AND OBSLT_UTC IS NOT NULL OR OBSLT_PROV_ID IS NULL AND OBSLT_UTC IS NULL),
CONSTRAINT CK_ACT_VRSN_ACT_UTC CHECK(ACT_UTC IS NOT NULL OR ACT_START_UTC IS NOT NULL OR ACT_STOP_UTC IS NOT NULL) -- CHECK: ONE OF ACT TIME, START, OR END MUST BE PROVIDED
);
-- INDEXING FOR ACTS
CREATE UNIQUE INDEX ACT_VRSN_VRSN_SEQ_ID_IDX ON ACT_VRSN_TBL(VRSN_SEQ_ID);
CREATE INDEX ACT_VRSN_ACT_ID_IDX ON ACT_VRSN_TBL(ACT_ID);
CREATE INDEX ACT_VRSN_TYP_CD_ID_IDX ON ACT_VRSN_TBL(TYP_CD_ID);
-- IDENTIFIERS FOR ACTS
CREATE TABLE ACT_ID_TBL (
ACT_ID_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
ID_TYP_ID UUID, -- THE TYPE OF IDENTIFIER
ACT_ID UUID NOT NULL, -- THE IDENTIFIER OF THE ACT
EFFT_VRSN_SEQ_ID NUMERIC(20) NOT NULL, -- THE VERSION AT WHICH TIME THIS IDENTIIFER BECAME ACTIVE
OBSLT_VRSN_SEQ_ID NUMERIC(20), -- THE VERSION SEQUENCE AT WHICH THE IDENTIFIER WAS NO LONGER ACTIVE
AUT_ID UUID NOT NULL, -- THE ASSIGNING AUTHORITY OF THE IDENTIFIER
ID_VAL VARCHAR(64) NOT NULL, -- THE VALUE OF THE IDENTIFIER
CONSTRAINT PK_ACT_ID_TBL PRIMARY KEY(ACT_ID_ID),
CONSTRAINT FK_ACT_ID_ACT_ID FOREIGN KEY (ACT_ID) REFERENCES ACT_TBL(ACT_ID),
CONSTRAINT FK_ACT_ID_ID_TYP_ID FOREIGN KEY (ID_TYP_ID) REFERENCES ID_TYP_TBL(ID_TYP_ID),
CONSTRAINT FK_ACT_ID_EFFT_VRSN_SEQ_ID FOREIGN KEY (EFFT_VRSN_SEQ_ID) REFERENCES ACT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_ACT_ID_OBSLT_VRSN_SEQ_ID FOREIGN KEY (OBSLT_VRSN_SEQ_ID) REFERENCES ACT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_ACT_ID_AUT_ID FOREIGN KEY (AUT_ID) REFERENCES ASGN_AUT_TBL(AUT_ID)
);
-- INDEXING FO RTHE ID TABLE
CREATE INDEX ACT_ID_ACT_ID_IDX ON ACT_ID_TBL(ACT_ID);
CREATE INDEX ACT_ID_VRSN_IDX ON ACT_ID_TBL(EFFT_VRSN_SEQ_ID, OBSLT_VRSN_SEQ_ID);
-- ACT RELATIONSHIPS
CREATE TABLE ACT_REL_TBL (
REL_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
SRC_ACT_ID UUID NOT NULL, -- THE SOURCE ACT
TRG_ACT_ID UUID NOT NULL, -- THE TARGET ACT
EFFT_VRSN_SEQ_ID NUMERIC(20) NOT NULL, -- EFFECTIVE VERSION OF THE RELATIONSHIP
OBSLT_VRSN_SEQ_ID NUMERIC(20), -- THE OBSOLETION VERSION OF THE RELATIONSHIP
REL_TYP_CD_ID UUID NOT NULL, -- THE RELATIONSHIP TYPE CONCEPT
CONSTRAINT PK_ACT_REL_TBL PRIMARY KEY (REL_ID),
CONSTRAINT FK_ACT_REL_SRC_ACT_ID FOREIGN KEY (SRC_ACT_ID) REFERENCES ACT_TBL(ACT_ID),
CONSTRAINT FK_ACT_REL_TRG_ACT_ID FOREIGN KEY (TRG_ACT_ID) REFERENCES ACT_TBL(ACT_ID),
CONSTRAINT FK_ACT_REL_EFFT_VRSN_SEQ_ID FOREIGN KEY (EFFT_VRSN_SEQ_ID) REFERENCES ACT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_ACT_REL_OBSLT_VRSN_SEQ_ID FOREIGN KEY (OBSLT_VRSN_SEQ_ID) REFERENCES ACT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_ACT_REL_REL_TYP_CD_ID FOREIGN KEY (REL_TYP_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT FK_ACT_REL_REL_TYP_CD CHECK (IS_CD_SET_MEM(REL_TYP_CD_ID, 'ActRelationshipType'))
);
CREATE INDEX ACT_REL_SRC_ACT_ID_IDX ON ACT_REL_TBL(SRC_ACT_ID);
CREATE INDEX ACT_REL_TRG_ACT_ID_IDX ON ACT_REL_TBL(TRG_ACT_ID);
CREATE INDEX ACT_REL_VRSN_IDX ON ACT_REL_TBL(EFFT_VRSN_SEQ_ID, OBSLT_VRSN_SEQ_ID);
-- ACT EXTENSIONS TABLE
CREATE TABLE ACT_EXT_TBL (
ACT_EXT_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
ACT_ID UUID NOT NULL, -- THE ACT TO WHICH THE EXTENSION APPLIES
EXT_TYP_ID UUID NOT NULL, -- THE TYPE OF EXTENSION
EXT_VAL BYTEA, -- THE SERIALIZED EXTENSION VALUE
EXT_DISP VARCHAR(64), -- THE DISPLAY (HUMAN) VERSION OF THE EXTENSION
EFFT_VRSN_SEQ_ID NUMERIC(20) NOT NULL, -- THE VERSION AT WHICH THE EXTENSION IS ACTIVE
OBSLT_VRSN_SEQ_ID NUMERIC(20), -- THE VERSION AT WHICH THE EXTENSION IS NOT ACTIVE
CONSTRAINT PK_ACT_EXT_TBL PRIMARY KEY (ACT_EXT_ID),
CONSTRAINT FK_ACT_EXT_ACT_ID FOREIGN KEY (ACT_ID) REFERENCES ACT_TBL(ACT_ID),
CONSTRAINT FK_ACT_EXT_EFFT_VRSN_SEQ_ID FOREIGN KEY (EFFT_VRSN_SEQ_ID) REFERENCES ACT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_ACT_EXT_OBSLT_VRSN_SEQ_ID FOREIGN KEY (OBSLT_VRSN_SEQ_ID) REFERENCES ACT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_ACT_EXT_EXT_TYP_ID FOREIGN KEY (EXT_TYP_ID) REFERENCES EXT_TYP_TBL(EXT_TYP_ID)
);
CREATE INDEX ACT_EXT_VRSN_IDX ON ACT_EXT_TBL(EFFT_VRSN_SEQ_ID, OBSLT_VRSN_SEQ_ID);
CREATE INDEX ACT_EXT_ACT_ID ON ACT_EXT_TBL(ACT_ID);
-- CONTROL ACT TABLE
CREATE TABLE CNTRL_ACT_TBL (
ACT_VRSN_ID UUID NOT NULL, -- THE LINK TO THE ACT WHICH IS A CONTROL ACT
CONSTRAINT PK_CNTRL_ACT_TBL PRIMARY KEY (ACT_VRSN_ID),
CONSTRAINT FK_CNTRL_ACT_ACT_VRSN_ID FOREIGN KEY (ACT_VRSN_ID) REFERENCES ACT_VRSN_TBL(ACT_VRSN_ID)
);
-- OBSERVATION TABLE
CREATE TABLE OBS_TBL (
ACT_VRSN_ID UUID NOT NULL, -- THE VERSION TO WHICH THIS OBSERVATION DATA APPLIES
INT_CD_ID UUID, -- THE INTERPRETATION CODE OF THE OBSERVATION
VAL_TYP VARCHAR(2) NOT NULL CHECK (VAL_TYP IN ('PQ','ST','CD')), -- THE TYPE OF VALUE
CONSTRAINT PK_OBS_TBL PRIMARY KEY (ACT_VRSN_ID),
CONSTRAINT FK_OBS_ACT_VRSN_ID FOREIGN KEY (ACT_VRSN_ID) REFERENCES ACT_VRSN_TBL(ACT_VRSN_ID),
CONSTRAINT FK_OBS_INT_CD_ID FOREIGN KEY (INT_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT CK_OBS_INT_CD CHECK (INT_CD_ID IS NULL OR IS_CD_SET_MEM(INT_CD_ID, 'ActInterpretation'))
);
-- OBSERVATION VALUE TYPE INDEx
CREATE INDEX OBS_VAL_TYP_IDX ON OBS_TBL(VAL_TYP);
-- QUANTITY OBSERVATION TABLE
CREATE TABLE QTY_OBS_TBL (
ACT_VRSN_ID UUID NOT NULL, -- THE VERSION TO WHICH THE OBSERVATION DATA APLIES
QTY DECIMAL NOT NULL, -- THE QUANTITY ITSELF
QTY_PRC NUMERIC(2), -- THE PRECISION OF THE OBSERVED VALUES
UOM_CD_ID UUID NOT NULL, -- THE UNIT OF MEASURE OF THE QUANTITY
CONSTRAINT PK_QTY_OBS_TBL PRIMARY KEY (ACT_VRSN_ID),
CONSTRAINT FK_QTY_OBS_ACT_VRSN_ID FOREIGN KEY (ACT_VRSN_ID) REFERENCES OBS_TBL(ACT_VRSN_ID),
CONSTRAINT FK_QTY_OBS_UOM_CD_ID FOREIGN KEY (UOM_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT CK_QTY_OBS_UOM_CD CHECK (ASSRT_CD_CLS(UOM_CD_ID, 'UnitOfMeasure'))
);
-- CODIFIED OBSERVATION TABLE
CREATE TABLE CD_OBS_TBL (
ACT_VRSN_ID UUID NOT NULL, -- THE VERSION TO WHICH THE OBSERVATION DTA APPLIES
VAL_CD_ID UUID NOT NULL, -- THE CONCEPT WHICH REPRESENTS THE VALUE
CONSTRAINT PK_CD_OBS_TBL PRIMARY KEY (ACT_VRSN_ID),
CONSTRAINT FK_CD_OBS_ACT_VRSN_ID FOREIGN KEY (ACT_VRSN_ID) REFERENCES OBS_TBL(ACT_VRSN_ID),
CONSTRAINT FK_CD_OBS_VAL_CD_ID FOREIGN KEY (VAL_CD_ID) REFERENCES CD_TBL(CD_ID)
);
-- TEXT OBSERVATION
CREATE TABLE TXT_OBS_TBL (
ACT_VRSN_ID UUID NOT NULL, -- THE VERSION TO WHICH THE TEXT DATA APPLIES
OBS_VAL TEXT NOT NULL, -- THE OBSERVATION VALUE
CONSTRAINT PK_TXT_OBS_TBL PRIMARY KEY (ACT_VRSN_ID),
CONSTRAINT FK_TXT_OBS_ACT_VRSN_ID FOREIGN KEY (ACT_VRSN_ID) REFERENCES OBS_TBL(ACT_VRSN_ID)
);
-- PATIENT ENCOUNTER
CREATE TABLE PAT_ENC_TBL (
ACT_VRSN_ID UUID NOT NULL, -- THE VERSION TO WHICH THE ENCOUNTER DATA APPLIES
DSCH_DSP_CD_ID UUID, -- THE DISCHARGE DISPOSITION IF KNOWN
CONSTRAINT PK_PAT_ENC_TBL PRIMARY KEY (ACT_VRSN_ID),
CONSTRAINT FK_PAT_ENC_ACT_VRSN_ID FOREIGN KEY (ACT_VRSN_ID) REFERENCES ACT_VRSN_TBL(ACT_VRSN_ID),
CONSTRAINT FK_PAT_ENC_DSCH_DSP_CD_ID FOREIGN KEY (DSCH_DSP_CD_ID) REFERENCES CD_TBL(CD_ID)
);
-- SUBBSTANCE ADMINISTRATION
CREATE TABLE SUB_ADM_TBL (
ACT_VRSN_ID UUID NOT NULL, -- THE VERSION TO WHICH THE SUBSTANCE ADMINISTRATION DATA APPLIES
STE_CD_ID UUID, -- THE SITE OF ADMINISTRATION
RTE_CD_ID UUID NOT NULL DEFAULT '8ba48d37-6c86-4a54-9a2f-e3a1dad2e6a2', -- THE ROUTE OF ADMINISTRATION
DOS_QTY DECIMAL NOT NULL, -- THE AMOUNT ADMINISTERED
DOS_UNT_CD_ID UUID NOT NULL, -- THE DOSE UOM CODE
SEQ_ID INT, -- THE SEQUENCE CODE OF THE DOSE IF GIVEN AS PART OF A DOSE
CONSTRAINT PK_SUB_ADM_TBL PRIMARY KEY (ACT_VRSN_ID),
CONSTRAINT FK_SUB_ADM_ACT_VRSN_ID FOREIGN KEY (ACT_VRSN_ID) REFERENCES ACT_VRSN_TBL(ACT_VRSN_ID),
CONSTRAINT FK_SUB_ADM_STE_CD_ID FOREIGN KEY (STE_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT FK_SUB_ADM_RTE_CD_ID FOREIGN KEY (RTE_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT CK_SUB_ADM_RTE_CD CHECK (ASSRT_CD_CLS(RTE_CD_ID, 'Route')),
CONSTRAINT FK_SUB_ADM_DOS_UNT_CD_ID FOREIGN KEY (DOS_UNT_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT CK_SUB_ADM_DOS_UNT_CD CHECK (ASSRT_CD_CLS(DOS_UNT_CD_ID, 'UnitOfMeasure'))
);
-- ACT TAG
CREATE TABLE ACT_TAG_TBL (
TAG_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
ACT_ID UUID NOT NULL, -- THE ACT TO WHICH THE TAG APPLIES
TAG_NAME VARCHAR(64) NOT NULL, -- THE NAME OF THE TAG
TAG_VALUE TEXT, -- THE VALUE OF THE TAG
CRT_UTC TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP, -- THE TIME THE TAG WAS ATTACHED TO THE ACT
CRT_PROV_ID UUID NOT NULL, -- THE USER WHICH IS RESPONSIBLE FOR THE CREATION OF THE ACT TAG
OBSLT_UTC TIMESTAMPTZ, -- THE TIME THAT THE TAG NO LONGER APPLIES TO THE OBJECT
OBSLT_PROV_ID UUID, -- THE USER THAT OBSOLETED THE TAG
CONSTRAINT PK_ACT_TAG_TBL PRIMARY KEY (TAG_ID),
CONSTRAINT FK_ACT_TAG_ACT_ID FOREIGN KEY (ACT_ID) REFERENCES ACT_TBL(ACT_ID),
CONSTRAINT FK_ACT_TAG_CRT_PROV_ID FOREIGN KEY (CRT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_ACT_TAG_OBSLT_PROV_ID FOREIGN KEY (OBSLT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT CK_ACT_TAG_OBSLT_USR CHECK (OBSLT_PROV_ID IS NULL AND OBSLT_UTC IS NULL OR OBSLT_PROV_ID IS NOT NULL AND OBSLT_UTC IS NOT NULL)
);
CREATE INDEX ACT_TAG_TAG_NAME_IDX ON ACT_TAG_TBL(TAG_NAME);
CREATE INDEX ACT_TAG_ACT_ID_IDX ON ACT_TAG_TBL(ACT_ID);
-- ACT POLICY ASSOCIATION
CREATE TABLE ACT_POL_ASSOC_TBL (
SEC_POL_INST_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
ACT_ID UUID NOT NULL, -- THE ACT TO WHICH THE POLICY APPLIES
EFFT_VRSN_SEQ_ID NUMERIC(20) NOT NULL, -- THE VERSION OF THE ACT WHERE THE POLICY ASSOCIATION DID BECOME ACTIVE
OBSLT_VRSN_SEQ_ID NUMERIC(20), -- THE VERSION OF THE ACT WHERE THE POLICY ASSOCIATION IS OBSOLETE,
POL_ID UUID NOT NULL, -- THE IDENTIFIER OF THE POLICY WHICH IS ATTACHED TO THE ACT
CONSTRAINT PK_ACT_POL_ASSOC_TBL PRIMARY KEY(SEC_POL_INST_ID),
CONSTRAINT FK_ACT_POL_ACT_ID FOREIGN KEY (ACT_ID) REFERENCES ACT_TBL(ACT_ID),
CONSTRAINT FK_ACT_POL_EFFT_VRSN_SEQ_ID FOREIGN KEY (EFFT_VRSN_SEQ_ID) REFERENCES ACT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_ACT_POL_OBSLT_VRSN_SEQ_ID FOREIGN KEY (OBSLT_VRSN_SEQ_ID) REFERENCES ACT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_ACT_POL_POL_ID FOREIGN KEY (POL_ID) REFERENCES SEC_POL_TBL(POL_ID)
);
CREATE INDEX ACT_POL_ASSOC_POL_ID_IDX ON ACT_POL_ASSOC_TBL(POL_ID);
CREATE INDEX ACT_POL_ASSOC_VRSN_IDX ON ACT_POL_ASSOC_TBL(EFFT_VRSN_SEQ_ID, OBSLT_VRSN_SEQ_ID);
-- ENTITY TABLE
CREATE TABLE ENT_TBL (
ENT_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
TPL_ID UUID, -- THE TEMPLATE WHICH THIS ENTITY FOLLOWS
CLS_CD_ID UUID NOT NULL, -- IDENTIIFES THE CLASS CONCEPT
DTR_CD_ID UUID NOT NULL, -- IDENTIFIES THE ENTITY DETERMINER
CONSTRAINT PK_ENT_TBL PRIMARY KEY (ENT_ID),
CONSTRAINT FK_ENT_TPL_ID FOREIGN KEY (TPL_ID) REFERENCES TPL_DEF_TBL(TPL_ID),
CONSTRAINT FK_ENT_CLS_CD_ID FOREIGN KEY (CLS_CD_ID) REFERENCES CD_TBL (CD_ID),
CONSTRAINT FK_ENT_DTR_CD_ID FOREIGN KEY (DTR_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT CK_ENT_CLS_CD CHECK (IS_CD_SET_MEM(CLS_CD_ID, 'EntityClass')),
CONSTRAINT FK_ENT_DTR_CD CHECK (IS_CD_SET_MEM(DTR_CD_ID, 'EntityDeterminer'))
);
CREATE INDEX ENT_TBL_CLS_CD_ID_IDX ON ENT_TBL(CLS_CD_ID);
-- ASSRERT ENTITY IS A PARTICULAR CLASS
CREATE OR REPLACE FUNCTION IS_ENT_CLS(
ENT_ID_IN IN UUID,
CLS_MNEMONIC_IN IN VARCHAR(32)
) RETURNS BOOLEAN AS
$$
BEGIN
RETURN (SELECT COUNT(*) FROM ENT_TBL INNER JOIN CD_CUR_VRSN ON (ENT_TBL.CLS_CD_ID = CD_CUR_VRSN.CD_ID) WHERE ENT_ID = ENT_ID_IN AND CD_CUR_VRSN.MNEMONIC = CLS_MNEMONIC_IN) > 0;
END
$$ LANGUAGE PLPGSQL;
-- ENTITY TAGS
CREATE TABLE ENT_TAG_TBL (
TAG_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
ENT_ID UUID NOT NULL, -- THE ENTITY TO WHICH THE TAG APPLIES
TAG_NAME VARCHAR(64) NOT NULL, -- THE NAME OF THE TAG
TAG_VALUE TEXT, -- THE VALUE OF THE TAG
CRT_UTC TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP, -- THE TIME WHEN THE TAG WAS ADDED TO THE ENTITY
CRT_PROV_ID UUID NOT NULL, -- THE USER WHICH CREATED OR ATTACHED THE TAG TO THE ENTITY
OBSLT_UTC TIMESTAMPTZ, -- THE TIME WHEN THE TAG WAS OBSOLETED,
OBSLT_PROV_ID UUID, -- THE USER WHICH OBSOLETED THE TAG
CONSTRAINT PK_ENT_TAG_TBL PRIMARY KEY (TAG_ID),
CONSTRAINT FK_ENT_TAG_ENT_ID FOREIGN KEY (ENT_ID) REFERENCES ENT_TBL(ENT_ID),
CONSTRAINT FK_ENT_TAG_CRT_PROV_ID FOREIGN KEY (CRT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_ENT_TAG_OBSLT_PROV_ID FOREIGN KEY (OBSLT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT CK_ENT_TAG_OBSLT_USR CHECK (OBSLT_PROV_ID IS NOT NULL AND OBSLT_UTC IS NOT NULL OR OBSLT_PROV_ID IS NULL AND OBSLT_UTC IS NULL)
);
-- INDEX ON ENTITY TAG
CREATE INDEX ENT_TAG_ENT_ID_IDX ON ENT_TAG_TBL(ENT_ID);
-- ENTITY VERSION
CREATE SEQUENCE ENT_VRSN_SEQ START WITH 1 INCREMENT BY 1;
-- ENTITY VERSION TABLE
CREATE TABLE ENT_VRSN_TBL (
ENT_VRSN_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
VRSN_SEQ_ID NUMERIC(20) NOT NULL DEFAULT nextval('ENT_VRSN_SEQ'), -- UNIQUE VERSION SEQUENCE FOR THE ENTITY VERSION
ENT_ID UUID NOT NULL, -- THE ENTITY TO WHICH THE VERSION APPLIES
RPLC_VRSN_ID UUID, -- THE VERSION THAT THIS ENTITY VERSION REPLACES
STS_CD_ID UUID NOT NULL, -- THE STATUS OF THE ENTITY AT THIS VERSION
TYP_CD_ID UUID, -- THE SUBCLASS OR TYPE WITHIN THE CLASS OF THE ENTITY
CRT_UTC TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP, -- THE TIME WHEN THE VERSION WAS CREATED
CRT_PROV_ID UUID NOT NULL, -- THE USER WHICH CREATED THIS VERSION OF THE ENTITY
OBSLT_UTC TIMESTAMPTZ, -- THE TIME WHEN THE VERSION WAS OBSOLETED
OBSLT_PROV_ID UUID, -- THEUSER WHICH OBSOLETED THE VERSION
CONSTRAINT PK_ENT_VRSN_TBL PRIMARY KEY (ENT_VRSN_ID),
CONSTRAINT FK_ENT_VRSN_ENT_ID FOREIGN KEY (ENT_ID) REFERENCES ENT_TBL(ENT_ID),
CONSTRAINT FK_ENT_VRSN_RPLC_VRSN_SEQ_ID FOREIGN KEY (RPLC_VRSN_ID) REFERENCES ENT_VRSN_TBL(ENT_VRSN_ID),
CONSTRAINT FK_ENT_VRSN_STS_CD_ID FOREIGN KEY (STS_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT FK_ENT_VRSN_TYP_CD_ID FOREIGN KEY (TYP_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT FK_ENT_VRSN_CRT_PROV_ID FOREIGN KEY (CRT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_ENT_VRSN_OBSLT_PROV_ID FOREIGN KEY (OBSLT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT CK_ENT_VRSN_STS_CD CHECK (IS_CD_SET_MEM(STS_CD_ID, 'EntityStatus')),
CONSTRAINT CK_ENT_VRSN_OBSLT_USR CHECK (OBSLT_PROV_ID IS NOT NULL AND OBSLT_UTC IS NOT NULL OR OBSLT_PROV_ID IS NULL AND OBSLT_UTC IS NULL)
);
CREATE INDEX ENT_VRSN_STS_CD_ID_IDX ON ENT_VRSN_TBL(STS_CD_ID);
CREATE INDEX ENT_VRSN_ENT_ID_IDX ON ENT_VRSN_TBL(ENT_ID);
CREATE UNIQUE INDEX ENT_VRSN_VRSN_SEQ_ID_IDX ON ENT_VRSN_TBL(VRSN_SEQ_ID);
-- ENTITY POLICY ASSOCIATION
CREATE TABLE ENT_POL_ASSOC_TBL (
SEC_POL_INST_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
ENT_ID UUID NOT NULL, -- THE ACT TO WHICH THE POLICY APPLIES
EFFT_VRSN_SEQ_ID NUMERIC(20) NOT NULL, -- THE VERSION OF THE ACT WHERE THE POLICY ASSOCIATION DID BECOME ACTIVE
OBSLT_VRSN_SEQ_ID NUMERIC(20), -- THE VERSION OF THE ACT WHERE THE POLICY ASSOCIATION IS OBSOLETE,
POL_ID UUID NOT NULL, -- THE IDENTIFIER OF THE POLICY WHICH IS ATTACHED TO THE ACT
CONSTRAINT PK_ENT_POL_ASSOC_TBL PRIMARY KEY(SEC_POL_INST_ID),
CONSTRAINT FK_ENT_POL_ENT_ID FOREIGN KEY (ENT_ID) REFERENCES ENT_TBL(ENT_ID),
CONSTRAINT FK_ENT_POL_EFFT_VRSN_SEQ_ID FOREIGN KEY (EFFT_VRSN_SEQ_ID) REFERENCES ENT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_ENT_POL_OBSLT_VRSN_SEQ_ID FOREIGN KEY (OBSLT_VRSN_SEQ_ID) REFERENCES ENT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_ENT_POL_POL_ID FOREIGN KEY (POL_ID) REFERENCES SEC_POL_TBL(POL_ID)
);
CREATE INDEX ENT_POL_ASSOC_POL_ID_IDX ON ENT_POL_ASSOC_TBL(POL_ID);
CREATE INDEX ENT_POL_ASSOC_VRSN_IDX ON ENT_POL_ASSOC_TBL(EFFT_VRSN_SEQ_ID, OBSLT_VRSN_SEQ_ID);
-- ENTITY RELATIONSHIP TABLE
CREATE TABLE ENT_REL_TBL (
ENT_REL_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
SRC_ENT_ID UUID NOT NULL, -- THE SOURCE ENTITY OF THE RELATIONSHIP
TRG_ENT_ID UUID NOT NULL, -- THE TARGET ENTITY OF THE RELATIONSHIP
EFFT_VRSN_SEQ_ID NUMERIC(20) NOT NULL, -- THE SOURCE VERSION SEQUENCE WHERE THE RELATIONSHIP BECAME ACTIVE
OBSLT_VRSN_SEQ_ID NUMERIC(20), -- THE SOURCE VERSION SEQUENCE WHERE THE RELATIONSHIP BECAME OBSOLETE
REL_TYP_CD_ID UUID NOT NULL, -- THE TYPE OF RELATIONSHIP BETWEEN THE ENTITIES
QTY INT DEFAULT 1, -- THE NUMER OF THE TARGET ENTITY RELATED TO THE SOURCE ENTIYT
CONSTRAINT PK_ENT_REL_TBL PRIMARY KEY (ENT_REL_ID),
CONSTRAINT FK_ENT_REL_SRC_ENT_ID FOREIGN KEY (SRC_ENT_ID) REFERENCES ENT_TBL(ENT_ID),
CONSTRAINT FK_ENT_REL_TRG_ENT_ID FOREIGN KEY (TRG_ENT_ID) REFERENCES ENT_TBL(ENT_ID),
CONSTRAINT FK_ENT_REL_EFFT_VRSN_SEQ_ID FOREIGN KEY (EFFT_VRSN_SEQ_ID) REFERENCES ENT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_ENT_REL_OBSLT_VRSN_SEQ_ID FOREIGN KEY (OBSLT_VRSN_SEQ_ID) REFERENCES ENT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_ENT_REL_REL_TYP_CD_ID FOREIGN KEY (REL_TYP_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT CK_ENT_REL_REL_TYPE_CD CHECK (IS_CD_SET_MEM(REL_TYP_CD_ID, 'EntityRelationshipType'))
);
CREATE INDEX ENT_REL_SRC_ENT_ID_IDX ON ENT_REL_TBL(SRC_ENT_ID);
CREATE INDEX ENT_REL_TRG_ENT_ID_IDX ON ENT_REL_TBL(TRG_ENT_ID);
CREATE INDEX ENT_REL_VRSN_IDX ON ENT_REL_TBL(EFFT_VRSN_SEQ_ID, OBSLT_VRSN_SEQ_ID);
CREATE INDEX ent_rel_tbl_rel_typ_idx ON ent_rel_tbl (rel_typ_cd_id);
-- ENTITY ADDRESS TABLE
CREATE TABLE ENT_ADDR_TBL (
ADDR_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
ENT_ID UUID NOT NULL, -- THE ENTITY TO WHICH THE ADDRESS IS ATTACHED
EFFT_VRSN_SEQ_ID NUMERIC(20) NOT NULL, -- THE VERSION WHEN THE ADDRESS RELATIONSHIP BECAME ACTIVE
OBSLT_VRSN_SEQ_ID NUMERIC(20), -- THE VERSION WHEN THE ADDRESS RELATIOSHIP IS NOT ACTIVE
USE_CD_ID UUID NOT NULL, -- INDICATES THE USE OF THE ADDRESS
CONSTRAINT PK_ENT_ADDR_TBL PRIMARY KEY (ADDR_ID),
CONSTRAINT FK_ENT_ADDR_ENT_ID FOREIGN KEY (ENT_ID) REFERENCES ENT_TBL(ENT_ID),
CONSTRAINT FK_ENT_ADDR_EFFT_VRSN_SEQ_ID FOREIGN KEY (EFFT_VRSN_SEQ_ID) REFERENCES ENT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_ENT_ADDR_OBSLT_VRSN_SEQ_ID FOREIGN KEY (OBSLT_VRSN_SEQ_ID) REFERENCES ENT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_ENT_ADDR_ADDR_USE_CD_ID FOREIGN KEY (USE_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT CK_ENT_ADDR_USE_CD CHECK (IS_CD_SET_MEM(USE_CD_ID, 'AddressUse'))
);
-- INDEX FO ADDRESS
CREATE INDEX ENT_ADDR_ENT_ID_IDX ON ENT_ADDR_TBL(ENT_ID);
CREATE INDEX ENT_ADDR_VRSN_IDX ON ENT_ADDR_TBL(EFFT_VRSN_SEQ_ID, OBSLT_VRSN_SEQ_ID);
-- ENTITY ADDRESS VALUES TABLE
CREATE TABLE ENT_ADDR_CMP_VAL_TBL (
VAL_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
VAL VARCHAR(256) NOT NULL, -- THE VALUE OF THE COMPONENT
CONSTRAINT PK_ENT_ADDR_CMP_VAL_TBL PRIMARY KEY (VAL_ID)
);
CREATE INDEX EN_ADDR_CMP_VAL_VAL_IDX ON ENT_ADDR_CMP_VAL_TBL(VAL);
-- ENTITY ADDRESS COMPONENT TABLE
CREATE TABLE ENT_ADDR_CMP_TBL (
CMP_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
TYP_CD_ID UUID, -- THE TYPE OF THE COMPONENT (STREET, CITY, ETC.)
VAL_ID UUID NOT NULL, -- THE UUID FOR THE ADDRESS VALUE
ADDR_ID UUID NOT NULL, -- THE UUID FOR THE ADDRESS TO WHICH THE COMPONENT APPLIES
CONSTRAINT PK_ENT_ADDR_CMP_TBL PRIMARY KEY(CMP_ID),
CONSTRAINT FK_ENT_ADDR_CMP_TYP_CD_ID FOREIGN KEY (TYP_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT FK_ENT_ADDR_CMP_VAL_ID FOREIGN KEY (VAL_ID) REFERENCES ENT_ADDR_CMP_VAL_TBL(VAL_ID),
CONSTRAINT FK_ENT_ADDR_CMP_ADDR_ID FOREIGN KEY (ADDR_ID) REFERENCES ENT_ADDR_TBL(ADDR_ID),
CONSTRAINT CK_ENT_ADDR_CMP_TYP_CD CHECK (TYP_CD_ID IS NULL OR IS_CD_SET_MEM(TYP_CD_ID, 'AddressComponentType'))
);
CREATE INDEX ENT_ADDR_CMP_ADDR_ID_IDX ON ENT_ADDR_CMP_TBL(ADDR_ID);
CREATE INDEX ENT_ADDR_CMP_VAL_ID_IDX ON ENT_ADDR_CMP_TBL(VAL_ID);
-- ENTITY NAME TABLE
CREATE TABLE ENT_NAME_TBL (
NAME_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
ENT_ID UUID NOT NULL, -- THE ENTITY TO WHICH THE NAME APPLIES
EFFT_VRSN_SEQ_ID NUMERIC(20) NOT NULL, -- THE ENTITY SEQUENCE AT WHICH THE NAME BECOMES ACTIVE
OBSLT_VRSN_SEQ_ID NUMERIC(20), -- THE ENTITY SEQUENCE WHERE THE NAME IS NO LONGER ACTIVE
USE_CD_ID UUID NOT NULL, -- THE USE OF THE NAME (LEGAL, ETC.)
CONSTRAINT PK_ENT_NAME_TBL PRIMARY KEY (NAME_ID),
CONSTRAINT FK_ENT_NAME_ENT_ID FOREIGN KEY (ENT_ID) REFERENCES ENT_TBL(ENT_ID),
CONSTRAINT FK_ENT_NAME_EFFT_VRSN_SEQ_ID FOREIGN KEY (EFFT_VRSN_SEQ_ID) REFERENCES ENT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_ENT_NAME_OBSLT_VRSN_SEQ_ID FOREIGN KEY (OBSLT_VRSN_SEQ_ID) REFERENCES ENT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_ENT_NAME_USE_CD_ID FOREIGN KEY (USE_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT CK_ENT_NAME_USE_CD CHECK (IS_CD_SET_MEM(USE_CD_ID, 'NameUse'))
);
CREATE INDEX ENT_NAME_ENT_ID_IDX ON ENT_NAME_TBL(ENT_ID);
CREATE INDEX ENT_NAME_VRSN_IDX ON ENT_NAME_TBL(EFFT_VRSN_SEQ_ID, OBSLT_VRSN_SEQ_ID);
CREATE SEQUENCE NAME_VAL_SEQ START WITH 1 INCREMENT BY 1;
-- ENTITY NAME COMPONENT
CREATE TABLE ENT_NAME_CMP_TBL (
CMP_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
TYP_CD_ID UUID, -- THE TYPE OF COMPONENT (FAMILY, GIVEN, ETC);
VAL_ID UUID NOT NULL, -- THE PHONETIC CODE FOR THE NAME
NAME_ID UUID NOT NULL, -- THE NAME TO WHICH THE COMPONENT APPLIES
VAL_SEQ NUMERIC(20,0) NOT NULL DEFAULT nextval('NAME_VAL_SEQ'),
CONSTRAINT PK_ENT_NAME_CMP_TBL PRIMARY KEY (CMP_ID),
CONSTRAINT FK_ENT_NAME_CMP_TYP_CD_ID FOREIGN KEY (TYP_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT FK_ENT_NAME_CMP_PHON_VAL_ID FOREIGN KEY (VAL_ID) REFERENCES PHON_VAL_TBL(VAL_ID),
CONSTRAINT FK_ENT_NAME_CMP_NAME_ID FOREIGN KEY (NAME_ID) REFERENCES ENT_NAME_TBL(NAME_ID),
CONSTRAINT CK_ENT_NAME_CMP_TYP_CD CHECK (TYP_CD_ID IS NULL OR IS_CD_SET_MEM(TYP_CD_ID, 'NameComponentType'))
);
CREATE INDEX ENT_NAME_CMP_NAME_ID_IDX ON ENT_NAME_CMP_TBL(NAME_ID);
CREATE INDEX ENT_NAME_CMP_PHON_VAL_ID_IDX ON ENT_NAME_CMP_TBL(VAL_ID);
-- ENTITY EXTENSIONS TABLE
CREATE TABLE ENT_EXT_TBL (
ENT_EXT_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
ENT_ID UUID NOT NULL, -- THE ENTITY TO WHICH THE EXTENSION APPLIES
EXT_TYP_ID UUID NOT NULL, -- THE TYPE OF ENTITY EXTENSION
EXT_VAL BYTEA, -- THE VALUE OF THE EXTENSION
EXT_DISP VARCHAR(64), -- A DISPLAY OF THE ENTITY EXTENSION
EFFT_VRSN_SEQ_ID NUMERIC(20) NOT NULL, -- EFFECTIVE VERSION IDENTIFIER
OBSLT_VRSN_SEQ_ID NUMERIC(20), -- OBSOLETIONS VERSION SEQ
CONSTRAINT PK_ENT_EXT_TBL PRIMARY KEY (ENT_EXT_ID),
CONSTRAINT FK_ENT_EXT_ENT_ID FOREIGN KEY (ENT_ID) REFERENCES ENT_TBL(ENT_ID),
CONSTRAINT FK_ENT_EXT_EFFT_VRSN_SEQ_ID FOREIGN KEY (EFFT_VRSN_SEQ_ID) REFERENCES ENT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_ENT_EXT_OBSLT_VRSN_SEQ_ID FOREIGN KEY (OBSLT_VRSN_SEQ_ID) REFERENCES ENT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_ENT_EXT_TYP_ID FOREIGN KEY (EXT_TYP_ID) REFERENCES EXT_TYP_TBL(EXT_TYP_ID)
);
CREATE INDEX ENT_EXT_ENT_ID_IDX ON ENT_EXT_TBL(ENT_ID);
CREATE INDEX ENT_EXT_VRSN_IDX ON ENT_EXT_TBL(EFFT_VRSN_SEQ_ID, OBSLT_VRSN_SEQ_ID);
-- TODO: MAYBE IS TO BE CHANGED
CREATE OR REPLACE FUNCTION IS_ENT_ID_UNQ (
AUT_ID_IN IN UUID,
ID_VAL_IN VARCHAR(64)
) RETURNS BOOLEAN AS
$$
BEGIN
IF EXISTS (SELECT ENT_ID_ID FROM ENT_ID_TBL NATURAL JOIN ASGN_AUT_TBL WHERE IS_UNQ = TRUE AND AUT_ID = AUT_ID_IN AND ID_VAL = ID_VAL_IN AND OBSLT_VRSN_SEQ_ID IS NULL LIMIT 1) THEN
RETURN TRUE;
ELSE
RETURN FALSE;
END IF;
END;
$$ LANGUAGE PLPGSQL;
-- ENTITY IDENTIFIER TABLE
CREATE TABLE ENT_ID_TBL (
ENT_ID_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
ENT_ID UUID NOT NULL, -- THE ENTITY TO WHICH THE IDENTIFIER IS ATTACHED
ID_TYP_ID UUID, -- THE TYPE OF IDENTIIFER
EFFT_VRSN_SEQ_ID NUMERIC(20) NOT NULL, -- THE VERSION WHEN THE IDENTIFIER WAS ACTIVE
OBSLT_VRSN_SEQ_ID NUMERIC(20), -- OBSOLETE VERSION SEQUENCE ID
AUT_ID UUID NOT NULL, -- THE ASSIGNING AUTHORITY OF THE IDENTIFIER
ID_VAL VARCHAR(64) NOT NULL, -- THE VALUE OF THE IDENTIFIER
CONSTRAINT PK_ENT_ID_TBL PRIMARY KEY (ENT_ID_ID),
CONSTRAINT FK_ENT_ID_ENT_ID FOREIGN KEY (ENT_ID) REFERENCES ENT_TBL(ENT_ID),
CONSTRAINT FK_ENT_ID_EFFT_VRSN_SEQ_ID FOREIGN KEY (EFFT_VRSN_SEQ_ID) REFERENCES ENT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_ENT_ID_OBSLT_VRSN_SEQ_ID FOREIGN KEY (OBSLT_VRSN_SEQ_ID) REFERENCES ENT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_ENT_ID_AUT_ID FOREIGN KEY (AUT_ID) REFERENCES ASGN_AUT_TBL(AUT_ID)
);
CREATE INDEX ENT_ID_VRSN_IDX ON ENT_ID_TBL(EFFT_VRSN_SEQ_ID, OBSLT_VRSN_SEQ_ID);
CREATE INDEX ENT_ID_ENT_ID_IDX ON ENT_ID_TBL(ENT_ID);
CREATE UNIQUE INDEX ENT_ID_ENT_VAL_UQ_IDX ON ENT_ID_TBL(EFFT_VRSN_SEQ_ID, AUT_ID, ID_VAL);
-- TELECOM ADDRESS
CREATE TABLE ENT_TEL_TBL (
TEL_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
ENT_ID UUID NOT NULL, -- THE ENTITY TO WHICH THE TELECOM ADDRESS APPLIES
TYP_CD_ID UUID, -- THE TYPE OF ADDRESS (FAX, TEL, EMAIL, PAGER, ETC.)
USE_CD_ID UUID NOT NULL, -- IDENTIIFES THE USE OF THE ADDRESS (HOME, WORK, ETC.)
TEL_VAL VARCHAR(256) NOT NULL, -- THE VALUE OF THE ADDRESS
EFFT_VRSN_SEQ_ID NUMERIC(20) NOT NULL, -- THE VERSION SEQUENCE WHEN THE ADDRESS IS ACTIVE
OBSLT_VRSN_SEQ_ID NUMERIC(20), -- THE VERSION SEQUENCE WHEN TH ADDRESS IS OBSOLETE
CONSTRAINT PK_ENT_TEL_TBL PRIMARY KEY (TEL_ID),
CONSTRAINT FK_ENT_TEL_ENT_ID FOREIGN KEY (ENT_ID) REFERENCES ENT_TBL(ENT_ID),
CONSTRAINT FK_ENT_TEL_TYP_CD_ID FOREIGN KEY (TYP_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT FK_ENT_TEL_USE_CD_ID FOREIGN KEY (USE_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT FK_ENT_TEL_EFFT_VRSN_SEQ_ID FOREIGN KEY (EFFT_VRSN_SEQ_ID) REFERENCES ENT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_ENT_TEL_OBSLT_VRSN_SEQ_ID FOREIGN KEY (OBSLT_VRSN_SEQ_ID) REFERENCES ENT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT CK_ENT_TEL_TYP_CD CHECK (TYP_CD_ID IS NULL OR IS_CD_SET_MEM(TYP_CD_ID, 'TelecomAddressType')),
CONSTRAINT CK_ENT_TEL_USE_CD CHECK (IS_CD_SET_MEM(USE_CD_ID, 'TelecomAddressUse'))
);
CREATE INDEX ENT_TEL_VRSN_IDX ON ENT_TEL_TBL(EFFT_VRSN_SEQ_ID, OBSLT_VRSN_SEQ_ID);
CREATE INDEX ENT_TEL_ENT_ID_IDX ON ENT_TEL_TBL(ENT_ID);
CREATE INDEX ENT_TEL_VAL_IDX ON ENT_TEL_TBL(TEL_VAL);
-- PLACE TABLE
CREATE TABLE PLC_TBL (
ENT_VRSN_ID UUID NOT NULL, -- THE ENTITY VERSION THIS PLACE REPRESENTS
MOB_IND BOOLEAN NOT NULL DEFAULT FALSE, -- TRUE IF THE PLACE HAS NO FIXED ADDRESS
LAT FLOAT, -- THE LATITUDE OF THE PLACE
LNG FLOAT, -- THE LONGITUDE OF THE PLACE
CONSTRAINT PK_PLC_TBL PRIMARY KEY (ENT_VRSN_ID),
CONSTRAINT FK_PLC_ENT_VRSN_TBL FOREIGN KEY (ENT_VRSN_ID) REFERENCES ENT_VRSN_TBL(ENT_VRSN_ID)
);
-- PLACE SERVICE TABLE
CREATE TABLE PLC_SVC_TBL (
SVC_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
ENT_ID UUID NOT NULL, -- THE ENTITY TO WHICH THE SERVICE APPLIES
EFFT_VRSN_SEQ_ID NUMERIC(20) NOT NULL, -- EFFECTIVE VERSION SEQUENCE
OBSLT_VRSN_SEQ_ID NUMERIC(20), -- THE VERSION WHEERE THE SERVICE WAS REMOVED
SVC_CD_ID UUID NOT NULL, -- THE CONCEPT WHICH DEFINES THE SERVICE
SCHDL TEXT NOT NULL, -- THE SERVICE SCHEDULE
CONSTRAINT PK_PLC_SVC_TBL PRIMARY KEY (SVC_ID),
CONSTRAINT FK_PLC_SVC_ENT_ID FOREIGN KEY (ENT_ID) REFERENCES ENT_TBL(ENT_ID),
CONSTRAINT CK_PLC_SVC_ENT CHECK (IS_ENT_CLS(ENT_ID, 'ServiceDeliveryLocation')),
CONSTRAINT FK_PLC_SVC_EFFT_VRSN_SEQ_ID FOREIGN KEY (EFFT_VRSN_SEQ_ID) REFERENCES ENT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_PLC_SVC_OBSLT_VRSN_SEQ_ID FOREIGN KEY (OBSLT_VRSN_SEQ_ID) REFERENCES ENT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_PLC_SVC_CD_ID FOREIGN KEY (SVC_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT CK_PLC_SVC_CD CHECK (IS_CD_SET_MEM(SVC_CD_ID, 'ServiceCode'))
);
-- ORGANIZATION TABLE
CREATE TABLE ORG_TBL (
ENT_VRSN_ID UUID NOT NULL, -- THE ENTITY VERSION TO WHICH THIS ORG APPLIES
IND_CD_ID UUID, -- THE INDUSTRY CONCEPT OF THE ORGANIZATION
CONSTRAINT PK_ORG_TBL PRIMARY KEY (ENT_VRSN_ID),
CONSTRAINT FK_ORG_ENT_VRSN_ID FOREIGN KEY (ENT_VRSN_ID) REFERENCES ENT_VRSN_TBL(ENT_VRSN_ID),
CONSTRAINT FK_ORG_IND_CD_ID FOREIGN KEY (IND_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT CK_ORG_IND_CD CHECK (IND_CD_ID IS NULL OR IS_CD_SET_MEM(IND_CD_ID, 'IndustryCode'))
);
-- APPLICATION ENTITY
CREATE TABLE APP_ENT_TBL (
ENT_VRSN_ID UUID NOT NULL, -- THE ENTITY TO WHICH THE VERISON APPLIES
SEC_APP_ID UUID, -- THE SECURITY APPLICATION ASSOCIATION EDITH THE ENTITY
SOFT_NAME VARCHAR(64) NOT NULL, -- THE NAME OF THE SOFTWARE PRODUCT THIS APPLICATION ENTITY REPRESENTS
VER_NAME VARCHAR(64), -- THE VERSION NAME OF THE ENTITY
VND_NAME VARCHAR(64), -- THE VENDOR NAME
CONSTRAINT PK_APP_ENT_TBL PRIMARY KEY (ENT_VRSN_ID),
CONSTRAINT FK_APP_ENT_ENT_VRSN_ID FOREIGN KEY (ENT_VRSN_ID) REFERENCES ENT_VRSN_TBL(ENT_VRSN_ID),
CONSTRAINT FK_APP_ENT_SEC_APP_ID FOREIGN KEY (SEC_APP_ID) REFERENCES SEC_APP_TBL(APP_ID)
);
CREATE INDEX APP_ENT_SEC_APP_ID_IDX ON APP_ENT_TBL(SEC_APP_ID);
-- DEVICE ENTITY
CREATE TABLE DEV_ENT_TBL (
ENT_VRSN_ID UUID NOT NULL, -- THE ENTITY VERSION TO WHICH THE DEVICE INFORMATION APPLIES
SEC_DEV_ID UUID, -- THE SECURITY DEVICE TO WHICH THE DEVICE INFORMATION APPLIES
MNF_NAME VARCHAR(64) NOT NULL, -- THE NAME THE MANUFACTURER GAVE TO THE DEVICE
OS_NAME VARCHAR(64), -- THE NAME OF THE OPERATING SYSTEM ON THE DEVICE
CONSTRAINT PK_DEV_ENT_TBL PRIMARY KEY (ENT_VRSN_ID),
CONSTRAINT FK_DEV_ENT_ENT_VRSN_ID FOREIGN KEY (ENT_VRSN_ID) REFERENCES ENT_VRSN_TBL(ENT_VRSN_ID),
CONSTRAINT FK_DEV_SEC_DEV_ID FOREIGN KEY (SEC_DEV_ID) REFERENCES SEC_DEV_TBL(DEV_ID)
);
CREATE INDEX DEV_ENT_SEC_APP_ID_IDX ON DEV_ENT_TBL(SEC_DEV_ID);
-- MATERIALS TABLE
CREATE TABLE MAT_TBL (
ENT_VRSN_ID UUID NOT NULL, -- THE ENTITY VERSION TO WHICH TH EMATERIAL DATA APPLIES
EXP_UTC DATE, -- THE DATE WHEN THE MATERIAL EXPIRES
FRM_CD_ID UUID, -- THE FORM OF THE MATERIAL (CAPSULES, INJECTION, ETC),
QTY DECIMAL(20,10), -- THE QUANTITY OF THIS OBJECT IN THE PARENT OBJECT
QTY_CD_ID UUID, -- IDENTIFIES THE QUANTITY UNITS OF MATERIAL
IS_ADM BOOLEAN NOT NULL DEFAULT FALSE, -- TRUE IF THE MATERIAL ISN'T A REAL MATERIAL, RATHER EXISTS FOR ADMINISTRATIVE TRACKING PURPOSES
CONSTRAINT PK_MAT_TBL PRIMARY KEY (ENT_VRSN_ID),
CONSTRAINT FK_MAT_ENT_VRSN_ID FOREIGN KEY (ENT_VRSN_ID) REFERENCES ENT_VRSN_TBL(ENT_VRSN_ID),
CONSTRAINT FK_MAT_FRM_CD_ID FOREIGN KEY (FRM_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT FK_MAT_QTY_CD_ID FOREIGN KEY (QTY_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT CK_MAT_FRM_CD CHECK (FRM_CD_ID IS NULL OR ASSRT_CD_CLS(FRM_CD_ID, 'Form')),
CONSTRAINT CK_MAT_QTY_CD CHECK (QTY_CD_ID IS NULL OR ASSRT_CD_CLS(QTY_CD_ID, 'UnitOfMeasure'))
);
-- MANUFACTURED MATERIALS TABLE
CREATE TABLE MMAT_TBL (
ENT_VRSN_ID UUID NOT NULL, -- THE MATERIAL VERSION ID
LOT_NO VARCHAR(32), -- THE LOT NUMBER OF THE MMAT
CONSTRAINT PK_MMAT_TBL PRIMARY KEY (ENT_VRSN_ID),
CONSTRAINT FK_MMAT_ENT_VRSN_ID FOREIGN KEY (ENT_VRSN_ID) REFERENCES MAT_TBL(ENT_VRSN_ID)
);
CREATE INDEX MMAT_LOT_NO_IDX ON MMAT_TBL (LOT_NO);
-- PERSON TABLE
CREATE TABLE PSN_TBL (
ENT_VRSN_ID UUID NOT NULL, -- THE ENTITY VERSION ID TO WHICH TH EPERSON INFO
DOB DATE, -- DATE OF BIRTH OF THE PERSON
DOB_PREC CHAR(1) CHECK (DOB_PREC IN ('Y','M','D')), -- THE PRECISION OF TH EDATE
CONSTRAINT PK_PSN_TBL PRIMARY KEY (ENT_VRSN_ID),
CONSTRAINT FK_PSN_ENT_VRSN_ID FOREIGN KEY (ENT_VRSN_ID) REFERENCES ENT_VRSN_TBL(ENT_VRSN_ID)
);
-- PERSON LANGUAGE COMMUNICATION TABLE
CREATE TABLE PSN_LNG_TBL (
LNG_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
ENT_ID UUID NOT NULL, -- THE PERSON TO WHICH THE LANGUAGE APPLIES
EFFT_VRSN_SEQ_ID NUMERIC(20) NOT NULL, -- THE VERSION OF THE PERSON ENTITY WHERE THIS BECOMES ACTIVE
OBSLT_VRSN_SEQ_ID NUMERIC(20), -- THE OBSOLETION VERISON OF THE PERSON LANGUAGE
LNG_CS CHAR(2) NOT NULL, -- THE LANGUAGE CODE REPRESENTING THE COMMUNICATION
PREF_IND BOOLEAN NOT NULL DEFAULT FALSE, -- PREFERENCE INDICATOR
CONSTRAINT PK_PSN_LNG_TBL PRIMARY KEY (LNG_ID),
CONSTRAINT FK_PSN_LNG_ENT_ID FOREIGN KEY (ENT_ID) REFERENCES ENT_TBL(ENT_ID),
CONSTRAINT FK_PSN_LNG_EFFT_VRSN_SEQ_ID FOREIGN KEY (EFFT_VRSN_SEQ_ID) REFERENCES ENT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_PSN_LNG_OBSLT_VRSN_SEQ_ID FOREIGN KEY (OBSLT_VRSN_SEQ_ID) REFERENCES ENT_VRSN_TBL(VRSN_SEQ_ID)
);
CREATE INDEX PSN_LNG_ENT_ID_IDX ON PSN_LNG_TBL(ENT_ID);
CREATE INDEX PSN_LNG_VRSN_IDX ON PSN_LNG_TBL(EFFT_VRSN_SEQ_ID, OBSLT_VRSN_SEQ_ID);
-- PATIENT TABLE
CREATE TABLE PAT_TBL (
ENT_VRSN_ID UUID NOT NULL, -- THE VERSION ID OF THE ENTITY VERSION TO WHICH THE PATIENT INFO APPLIES
GNDR_CD_ID UUID NOT NULL, -- THE GENDER OF THE PATIENT
DCSD_UTC DATE, -- THE DATE THE PATIENT DIED
DCSD_PREC CHAR(1) CHECK (DCSD_PREC IN ('Y','M','D')),
MB_ORD NUMERIC(2), -- THE ORDER IN WHICH THE PATIENT WAS BORN
MRTL_STS_CD_ID UUID, -- MARITAL STATUS KEY
EDU_LVL_CD_ID UUID, -- EDUCATION LEVEL KEY
LVN_ARG_CD_ID UUID, -- LIVING ARRANGEMENT
RLGN_CD_ID UUID, -- RELIGION CODE
ETH_GRP_CD_ID UUID, -- ETHNIC GROUP KEY
CONSTRAINT PK_PAT_TBL PRIMARY KEY (ENT_VRSN_ID),
CONSTRAINT FK_PAT_ENT_VRSN_ID FOREIGN KEY (ENT_VRSN_ID) REFERENCES PSN_TBL(ENT_VRSN_ID),
CONSTRAINT FK_PAT_GNDR_CD_ID FOREIGN KEY (GNDR_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT CK_PAT_GNDR_CD CHECK (IS_CD_SET_MEM(GNDR_CD_ID, 'AdministrativeGenderCode')),
CONSTRAINT FK_PSN_MRTL_STS_CD_ID FOREIGN KEY (MRTL_STS_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT FK_PAT_EDU_LVL_CD_ID FOREIGN KEY (EDU_LVL_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT FK_PAT_LVN_ARG_CD_ID FOREIGN KEY (LVN_ARG_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT FK_PAT_RLGN_CD_ID FOREIGN KEY (RLGN_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT CK_PAT_MRTL_STS_CD CHECK (MRTL_STS_CD_ID IS NULL OR IS_CD_SET_MEM(MRTL_STS_CD_ID, 'MaritalStatus')),
CONSTRAINT CK_PAT_EDU_LVL_CD CHECK (EDU_LVL_CD_ID IS NULL OR IS_CD_SET_MEM(EDU_LVL_CD_ID, 'EducationLevel')),
CONSTRAINT CK_PAT_LVN_ARG_CD CHECK (LVN_ARG_CD_ID IS NULL OR IS_CD_SET_MEM(LVN_ARG_CD_ID, 'LivingArrangement')),
CONSTRAINT CK_PAT_RLGN_CD CHECK (RLGN_CD_ID IS NULL OR IS_CD_SET_MEM(RLGN_CD_ID, 'Religion')),
CONSTRAINT CK_PAT_ETH_GRP_CD CHECK (ETH_GRP_CD_ID IS NULL OR IS_CD_SET_MEM(ETH_GRP_CD_ID, 'Ethnicity'))
);
-- PROVIDER TABLE
CREATE TABLE PVDR_TBL (
ENT_VRSN_ID UUID NOT NULL, -- THE VERSION OF THE PERSON TO WHICH THE PROVIDER INFO APPLIES
SPEC_CD_ID UUID, -- THE PROVIDER'S SPECIALTY
CONSTRAINT PK_PVDR_TBL PRIMARY KEY (ENT_VRSN_ID),
CONSTRAINT FK_PVDR_ENT_VRSN_ID FOREIGN KEY (ENT_VRSN_ID) REFERENCES PSN_TBL(ENT_VRSN_ID),
CONSTRAINT FK_PVDR_SPEC_CD_ID FOREIGN KEY (SPEC_CD_ID) REFERENCES CD_TBL(CD_ID)
);
-- USER ENTITY TABLE
CREATE TABLE USR_ENT_TBL (
ENT_VRSN_ID UUID NOT NULL, -- THE ENTITY VERSION OF THE PERSON THE ENTITY APPLIES TO
SEC_USR_ID UUID NOT NULL, -- THE SECURITY USER IDENTIFIER OF THE USER ENTITY
CONSTRAINT PK_USR_ENT_TBL PRIMARY KEY (ENT_VRSN_ID),
CONSTRAINT FK_USR_ENT_VRSN_ID FOREIGN KEY (ENT_VRSN_ID) REFERENCES PSN_TBL(ENT_VRSN_ID),
CONSTRAINT FK_USR_ENT_SEC_USR_ID FOREIGN KEY (SEC_USR_ID) REFERENCES SEC_USR_TBL(USR_ID)
);
CREATE INDEX USR_ENT_SEC_USR_ID_IDX ON USR_ENT_TBL(SEC_USR_ID);
-- CLINICAL PROTOCOL HANDLER
CREATE TABLE PROTO_HDLR_TBL (
HDLR_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
HDLR_NAME VARCHAR(64) NOT NULL, -- THE NAME OF THE HANDLER (HUMAN READABLE)
HDLR_CLS VARCHAR(256) NOT NULL, -- THE CLASS WHICH IS RESPONSIBLE FOR THE PROTOCOL EXECUTION
IS_ACTIVE BOOLEAN NOT NULL DEFAULT TRUE, -- INDICATES WHETHER THE PROTOCOL IS ACTIVE
CRT_UTC TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP, -- THE TIME WHEN THE HANDLER WAS CREATED
CRT_PROV_ID UUID NOT NULL , -- THE IDENTIFIER OF THE USER WHICH CREATED THE HANDLER
OBSLT_UTC TIMESTAMPTZ, -- THE TIME THE HANDLER WAS OBSOLETED
OBSLT_PROV_ID UUID, -- THE USER WHICH OBSOLETED THE HANDLER
CONSTRAINT PK_PROTO_HDLR_TBL PRIMARY KEY (HDLR_ID),
CONSTRAINT FK_PROTO_HDLR_CRT_PROV_ID FOREIGN KEY (CRT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_PROTO_HDLR_OBSLT_PROV_ID FOREIGN KEY (OBSLT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT CK_PROTO_HDLR_OBSLT_USR CHECK (OBSLT_UTC IS NULL AND OBSLT_PROV_ID IS NULL OR OBSLT_UTC IS NOT NULL AND OBSLT_PROV_ID IS NOT NULL)
);
-- CLINICAL PROTOCOL DEFINITION TABLE
CREATE TABLE PROTO_TBL (
PROTO_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
PROTO_NAME VARCHAR(64) NOT NULL, -- NAME FO THE PROTOCOL (EX: CHILDHOOD VACCINATIONS)
HDLR_ID UUID NOT NULL, -- THE HANDLER CLASS WHICH EXECUTES THE PROTOCOL
OID VARCHAR(64), -- THE OID OF THE PROTOCOL
DEFN BYTEA, -- THE DEFINITION FILE WHICH DEFINES THE PROTOCOL IN A FORMAT THAT THE HANDLER CAN USE
CRT_UTC TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP, -- THE TIME THE PROTOCOL DEFINITION WAS CREATE
CRT_PROV_ID UUID NOT NULL, -- THE USER WHICH CREATE THE PROTOCOL
OBSLT_UTC TIMESTAMPTZ, -- THE TIME WHEN THE PROTOCOL DEFINITION WAS OBSOLETED
OBSLT_PROV_ID UUID, -- THE USER WHICH OBSOLETED THE PROTOCL DEFINITION
RPLC_PROTO_ID UUID, -- IF THE PROTOCOL REPLACES A PREVIOUS PROTOCOL
CONSTRAINT PK_PROTO_TBL PRIMARY KEY (PROTO_ID),
CONSTRAINT FK_PROTO_HDLR_ID FOREIGN KEY (HDLR_ID) REFERENCES PROTO_HDLR_TBL(HDLR_ID),
CONSTRAINT FK_PROTO_CRT_PROV_ID FOREIGN KEY (CRT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_PROTO_OBSLT_PROV_ID FOREIGN KEY (OBSLT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_PROTO_RPLC_PROTO_ID FOREIGN KEY (RPLC_PROTO_ID) REFERENCES PROTO_TBL(PROTO_ID),
CONSTRAINT CK_PROTO_OBSLT_USR CHECK (OBSLT_PROV_ID IS NULL AND OBSLT_UTC IS NULL OR OBSLT_PROV_ID IS NOT NULL AND OBSLT_UTC IS NOT NULL)
);
-- INDEX FOR PROTOCOL BY OID
CREATE UNIQUE INDEX PROTO_NAME_UQ_IDX ON PROTO_TBL(PROTO_NAME);
-- PROTOCOL TO ACT TABLE
CREATE TABLE ACT_PROTO_ASSOC_TBL (
PROTO_ID UUID NOT NULL,
ACT_ID UUID NOT NULL, -- THE ACT TO WHICH THE PROTOCOL APPLIES
SEQ INT NOT NULL, -- INDICATES THE SEQUENCE IN THE CARE PROTOCOL
IS_COMPL BOOLEAN NOT NULL DEFAULT FALSE, -- INDICATES THAT THE ACT IS A TERMINAL STATE OF THE PROTOCOL
STATE_DAT BYTEA, -- ANY STATE DATA THE PROTOCOL HANDLER WISHES TO ATTACH
CONSTRAINT PK_ACT_PROTO_ASSOC_TBL PRIMARY KEY (PROTO_ID, ACT_ID),
CONSTRAINT FK_ACT_PROTO_ASSOC_PROTO_ID FOREIGN KEY (PROTO_ID) REFERENCES PROTO_TBL(PROTO_ID),
CONSTRAINT FK_ACT_PROTO_ASSOC_ACT_ID FOREIGN KEY (ACT_ID) REFERENCES ACT_TBL(ACT_ID)
);
CREATE INDEX ACT_PROTO_ASSOC_ACT_ID_IDX ON ACT_PROTO_ASSOC_TBL(ACT_ID);
-- ACT NOTES TABLE
CREATE TABLE ACT_NOTE_TBL (
NOTE_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
ACT_ID UUID NOT NULL, -- THE ACT TO WHICH THE NOTE APPLIES
EFFT_VRSN_SEQ_ID NUMERIC(20) NOT NULL, -- THE VERSION OF HTE ACT WHERE THE NOTE WAS ADDED
OBSLT_VRSN_SEQ_ID NUMERIC(20), -- THE VERSION OF THE ACT WHERE THE NOTE WAS REMOVED
AUTH_ENT_ID UUID NOT NULL, -- THE UAHTOR WHO CREATED THE NOTE (SINCE A NOTE CAN BE ATTACHED WITHOUT CREATING A NEW VERSION)
NOTE_TXT TEXT NOT NULL, -- THE NOTE TEXT
CONSTRAINT PK_ACT_NOTE_TBL PRIMARY KEY (NOTE_ID),
CONSTRAINT FK_ACT_NOTE_ACT_ID FOREIGN KEY (ACT_ID) REFERENCES ACT_TBL(ACT_ID),
CONSTRAINT FK_ACT_NOTE_EFFT_VRSN_SEQ_ID FOREIGN KEY (EFFT_VRSN_SEQ_ID) REFERENCES ACT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_ACT_NOTE_OBSLT_VRSN_SEQ_ID FOREIGN KEY (OBSLT_VRSN_SEQ_ID) REFERENCES ACT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_ACT_NOTE_AUTH_ENT_ID FOREIGN KEY (AUTH_ENT_ID) REFERENCES ENT_TBL(ENT_ID)
);
CREATE INDEX ACT_NOTE_VRSN_IDX ON ACT_NOTE_TBL (EFFT_VRSN_SEQ_ID, OBSLT_VRSN_SEQ_ID);
CREATE INDEX ACT_NOTE_ACT_ID_IDX ON ACT_NOTE_TBL(ACT_ID);
-- ENTITY NOTE TABLE
CREATE TABLE ENT_NOTE_TBL (
NOTE_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
ENT_ID UUID NOT NULL, -- THE ENTITY TO WHICH THE NOTE APPLIES
EFFT_VRSN_SEQ_ID NUMERIC(20) NOT NULL, -- THE VERSION OF HTE ENTITY WHERE THE NOTE WAS ADDED
OBSLT_VRSN_SEQ_ID NUMERIC(20), -- THE VERSION OF THE ENTITY WHERE THE NOTE WAS REMOVED
AUTH_ENT_ID UUID NOT NULL, -- THE UAHTOR WHO CREATED THE NOTE (SINCE A NOTE CAN BE ATTACHED WITHOUT CREATING A NEW VERSION)
NOTE_TXT TEXT NOT NULL, -- THE NOTE TEXT
CONSTRAINT PK_ENT_NOTE_TBL PRIMARY KEY (NOTE_ID),
CONSTRAINT FK_ENT_NOTE_ENT_ID FOREIGN KEY (ENT_ID) REFERENCES ENT_TBL(ENT_ID),
CONSTRAINT FK_ENT_NOTE_EFFT_VRSN_SEQ_ID FOREIGN KEY (EFFT_VRSN_SEQ_ID) REFERENCES ENT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_ENT_NOTE_OBSLT_VRSN_SEQ_ID FOREIGN KEY (OBSLT_VRSN_SEQ_ID) REFERENCES ENT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_ENT_NOTE_AUTH_ENT_ID FOREIGN KEY (AUTH_ENT_ID) REFERENCES ENT_TBL(ENT_ID)
);
CREATE INDEX ENT_NOTE_VRSN_IDX ON ENT_NOTE_TBL (EFFT_VRSN_SEQ_ID, OBSLT_VRSN_SEQ_ID);
CREATE INDEX ENT_NOTE_ENT_ID_IDX ON ENT_NOTE_TBL(ENT_ID);
-- ACT PARTICIPATION TABLE
CREATE TABLE ACT_PTCPT_TBL (
ACT_PTCPT_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
ENT_ID UUID NOT NULL, -- THE ENTITY TO WHICH THE PARTICIPATION APPLIES
ACT_ID UUID NOT NULL, -- THE ACT TO WHICH THE PARTICIPATION APPLIES
EFFT_VRSN_SEQ_ID NUMERIC(20) NOT NULL, -- THE VERSION OF THE ACT WHERE THE PARTICIPATION IS ACTIVATED
OBSLT_VRSN_SEQ_ID NUMERIC(20), -- THE VERISON OF THE ACT WHERE THE PARTICIPATION IS NO LONGER ACTIVE
QTY INT DEFAULT 1, -- THE QUANTITY OF ENTITY PARTICIPATING IN ACT
ROL_CD_ID UUID NOT NULL, -- THE ROLE THAT THE ENTITY PLAYS IN ACT
CONSTRAINT PK_ACT_PTCPT_TBL PRIMARY KEY (ACT_PTCPT_ID),
CONSTRAINT FK_ACT_PTCPT_ENT_ID FOREIGN KEY (ENT_ID) REFERENCES ENT_TBL(ENT_ID),
CONSTRAINT FK_ACT_PTCPT_ACT_ID FOREIGN KEY (ACT_ID) REFERENCES ACT_TBL(ACT_ID),
CONSTRAINT FK_ACT_PTCPT_EFFT_VRSN_SEQ_ID FOREIGN KEY (EFFT_VRSN_SEQ_ID) REFERENCES ACT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_ACT_PTCPT_OBSLT_VRSN_SEQ_ID FOREIGN KEY (OBSLT_VRSN_SEQ_ID) REFERENCES ACT_VRSN_TBL(VRSN_SEQ_ID),
CONSTRAINT FK_ACT_PTCPT_ROL_CD_ID FOREIGN KEY (ROL_CD_ID) REFERENCES CD_TBL(CD_ID),
CONSTRAINT CK_ACT_PTCPT_ROL_CD CHECK (IS_CD_SET_MEM(ROL_CD_ID, 'ActParticipationType'))
);
CREATE INDEX ACT_PTCPT_ENT_ID_IDX ON ACT_PTCPT_TBL(ENT_ID);
CREATE INDEX ACT_PTCPT_ACT_ID_IDX ON ACT_PTCPT_TBL(ACT_ID);
CREATE INDEX ACT_PTCPT_VRSN_ID_IDX ON ACT_PTCPT_TBL(EFFT_VRSN_SEQ_ID, OBSLT_VRSN_SEQ_ID);
CREATE INDEX ACT_PTCPT_ACT_ROL_IDX ON ACT_PTCPT_TBL(ACT_ID, ROL_CD_ID);
CREATE INDEX ACT_PTCPT_ENT_ROL_IDX ON ACT_PTCPT_TBL(ENT_ID, ROL_CD_ID);
-- ALERT MESSAGES
CREATE TABLE ALRT_TBL (
ALRT_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
CRT_UTC TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP, -- TIME THE ALERT WAS CREATED
CRT_PROV_ID UUID NOT NULL, -- THE USER WHO CREATED THE ALERT
OBSLT_UTC TIMESTAMPTZ, -- THE TIME THE ALERT WAS REMOVED
OBSLT_PROV_ID UUID, -- THE USER WHICH OBSOLETED THE ALERT
UPD_UTC TIMESTAMPTZ, -- THE TIME THE ALERT WAS UPDATED
UPD_PROV_ID UUID, -- THE USER WHICH UPDATED THE ALERT
FROM_INFO VARCHAR(128) NOT NULL, -- THE INFORMATION WHICH APPEARS IN THE FROM HEADER (EXAMPLE: THE FROM MIME HEADER)
TO_INFO VARCHAR(128) NOT NULL, -- THE INFORMATION WHICH APPEARS IN THE TO HEADER (EXAMPLE: FROM MIME)
MSG_UTC TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP, -- THE TIMESTAMP OF THE MESSAGE
SUBJ VARCHAR(256), -- THE SUBJECT OF THE MESSAGE
BODY TEXT NOT NULL, -- THE BODY OF THE MESSAGE
FLAGS INT NOT NULL DEFAULT 0, -- FLAGS OF THE MESSAGE
CONSTRAINT PK_ALRT_TBL PRIMARY KEY (ALRT_ID),
CONSTRAINT FK_ALRT_CRT_PROV_ID FOREIGN KEY (CRT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_ALRT_UPD_PROV_ID FOREIGN KEY (UPD_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT FK_ALRT_OBSLT_PROV_ID FOREIGN KEY (OBSLT_PROV_ID) REFERENCES SEC_PROV_TBL(PROV_ID),
CONSTRAINT CK_ALRT_UPD_USR CHECK (UPD_PROV_ID IS NULL AND UPD_UTC IS NULL OR UPD_PROV_ID IS NOT NULL AND UPD_UTC IS NOT NULL),
CONSTRAINT CK_ALRT_OBSLT_USR CHECK (OBSLT_PROV_ID IS NULL AND OBSLT_UTC IS NULL OR OBSLT_PROV_ID IS NOT NULL AND OBSLT_UTC IS NOT NULL)
);
-- INDEX
CREATE INDEX ALRT_TO_INFO_IDX ON ALRT_TBL(TO_INFO);
-- ALERT RECIPIENT (RCPT TO) TABLE
CREATE TABLE ALRT_RCPT_TO_TBL (
ALRT_ID UUID NOT NULL, -- THE ALERT TO WHICH THE RCPT TO APPLIES
USR_ID UUID NOT NULL, -- THE RCPT TO USER
CONSTRAINT PK_ALRT_RCPT_TO_TBL PRIMARY KEY (ALRT_ID, USR_ID),
CONSTRAINT FK_ALRT_RCPT_TO_ALRT_ID FOREIGN KEY (ALRT_ID) REFERENCES ALRT_TBL(ALRT_ID),
CONSTRAINT FK_ALRT_RCPT_TO_USR_ID FOREIGN KEY (USR_ID) REFERENCES SEC_USR_TBL(USR_ID)
);
-- SECURITY SESSIONS TABLE
CREATE TABLE SEC_SES_TBL (
SES_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
CRT_UTC TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP, -- THE TIME WHEN THE SESSION WAS ESTABLISHED
EXP_UTC TIMESTAMPTZ NOT NULL, -- THE TIME WHEN THE SESSION WILL EXPIRE
APP_ID UUID NOT NULL, -- THE SECURITY APPLICATION WHICH THE SESSION IS ESTABLISHED FOR
USR_ID UUID, -- THE USER IDENTIFIER (APPLICATION USER IF APPLICATION GRANT)
DEV_ID UUID,
RFRSH_TKN VARCHAR(128) UNIQUE NOT NULL, -- THE REFRESH TOKEN FOR THE OBJECT
RFRSH_EXP_UTC TIMESTAMPTZ NOT NULL, -- THE TIME THAT THE REFRESH TOKEN EXPIRES
AUD VARCHAR(32) NOT NULL, -- THE REMOTE IP ADDRESS THAT ESTABLISHED THE SESSION
CONSTRAINT PK_SEC_SES_TBL PRIMARY KEY (SES_ID),
CONSTRAINT FK_SEC_SES_APP_ID FOREIGN KEY (APP_ID) REFERENCES SEC_APP_TBL(APP_ID),
CONSTRAINT FK_SEC_SES_USR_ID FOREIGN KEY (USR_ID) REFERENCES SEC_USR_TBL(USR_ID),
CONSTRAINT FK_SEC_SES_DEV_ID FOREIGN KEY (DEV_ID) REFERENCES SEC_DEV_TBL(DEV_ID),
CONSTRAINT CK_SEC_SES_EXP CHECK (EXP_UTC > CRT_UTC),
CONSTRAINT CK_SEC_SES_RFRSH_EXP CHECK (RFRSH_EXP_UTC > EXP_UTC)
);
-- SECURITY SESSION CLAIMS TABLE
CREATE TABLE SEC_SES_CLM_TBL (
CLM_ID UUID NOT NULL DEFAULT uuid_generate_v1(),
SES_ID UUID NOT NULL, -- THE SESSION TO WHICH THE CLAIM BELONGS
CLM_TYP VARCHAR(128) NOT NULL, -- THE TYPE OF CLAIM
CLM_VAL VARCHAR(128) NOT NULL, -- THE VALUE OF THE CLAIM
CONSTRAINT PK_SEC_SES_CLM_TBL PRIMARY KEY (CLM_ID),
CONSTRAINT FK_SEC_SES_CLM_SES_ID FOREIGN KEY (SES_ID) REFERENCES SEC_SES_TBL(SES_ID)
);
CREATE INDEX ALRT_RCPT_TO_USR_ID_IDX ON ALRT_RCPT_TO_TBL(USR_ID);
CREATE INDEX ALRT_RCPT_TO_ALRT_ID_IDX ON ALRT_RCPT_TO_TBL(ALRT_ID);
CREATE UNIQUE INDEX ACT_PTCPT_UNQ_ENF ON ACT_PTCPT_TBL(ACT_ID, ENT_ID, ROL_CD_ID) WHERE OBSLT_VRSN_SEQ_ID IS NULL;
CREATE UNIQUE INDEX ENT_REL_UNQ_ENF ON ENT_REL_TBL(SRC_ENT_ID, TRG_ENT_ID, REL_TYP_CD_ID) WHERE OBSLT_VRSN_SEQ_ID IS NULL;
CREATE UNIQUE INDEX ACT_REL_UNQ_ENF ON ACT_REL_TBL(SRC_ACT_ID, TRG_ACT_ID, REL_TYP_CD_ID) WHERE OBSLT_VRSN_SEQ_ID IS NULL;
ALTER TABLE ENT_VRSN_TBL ADD CRT_ACT_ID UUID;
ALTER TABLE ENT_VRSN_TBL ADD CONSTRAINT FK_ENT_VRSN_CRT_ACT FOREIGN KEY (CRT_ACT_ID) REFERENCES ACT_TBL(ACT_ID); |
<gh_stars>1-10
UPDATE AM_API_COMMENTS
SET COMMENTED_USER = `pseudonym`
WHERE COMMENTED_USER = `username`
|
<gh_stars>1-10
CREATE UNIQUE INDEX "PK_CTNOMENCLATURAL_CODE" ON "CTNOMENCLATURAL_CODE" ("NOMENCLATURAL_CODE")
|
<reponame>adityabhalsod007/GTU_mca_practical
UPDATE Employee e,department d SET salary = (salary / 100) * 10 + salary WHERE d.dept_name='it';
select * from employee; |
CREATE TABLE heroes (
id int PRIMARY KEY AUTO_INCREMENT,
name varchar(256) NOT NULL
)ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT INTO heroes VALUES(1, 'Mr. Nice');
INSERT INTO heroes VALUES(2, 'Narco');
INSERT INTO heroes VALUES(3, 'Bombasto');
INSERT INTO heroes VALUES(4, 'Celeritas');
INSERT INTO heroes VALUES(5, 'Magneta');
INSERT INTO heroes VALUES(6, 'RubberMan');
INSERT INTO heroes VALUES(7, 'Dynama');
INSERT INTO heroes VALUES(8, 'Dr IQ');
INSERT INTO heroes VALUES(9, 'Magma');
INSERT INTO heroes VALUES(10, 'Tornado');
|
<filename>doc/database/ddl/widget.sql<gh_stars>10-100
drop table if exists widget cascade;
-- 위젯
create table widget(
widget_id integer,
widget_name varchar(100) not null,
widget_key varchar(100) not null,
view_order integer default 1,
user_id varchar(32) not null,
insert_date timestamp with time zone default now(),
constraint widget_pk primary key (widget_id)
);
comment on table widget is '위젯';
comment on column widget.widget_id is '고유번호';
comment on column widget.widget_name is '이름';
comment on column widget.widget_key is 'Key';
comment on column widget.view_order is '나열 순서';
comment on column widget.user_id is '사용자 아이디';
comment on column widget.insert_date is '등록일';
|
<reponame>liuzhangjian/spring-in-action-4th-mvn
create table Things (
id identity,
name varchar(100)
); |
select name, akas, title, tags
from azure.azure_synapse_workspace
where name = '{{ resourceName }}' and resource_group = '{{ resourceName }}';
|
<gh_stars>1-10
CREATE TABLE v_fifo_agent_call_logs ( fifo_agent_call_log_id INTEGER PRIMARY KEY, v_id TEXT, resolution_code TEXT, transaction_id TEXT, action_item TEXT, uuid TEXT, notes TEXT, add_user TEXT, add_date TEXT );
|
<reponame>opengauss-mirror/Yat
-- @testpoint:opengauss关键字equals(非保留),作为序列名
--关键字不带引号-成功
drop sequence if exists equals;
create sequence equals start 100 cache 50;
drop sequence equals;
--关键字带双引号-成功
drop sequence if exists "equals";
create sequence "equals" start 100 cache 50;
drop sequence "equals";
--关键字带单引号-合理报错
drop sequence if exists 'equals';
create sequence 'equals' start 100 cache 50;
--关键字带反引号-合理报错
drop sequence if exists `equals`;
create sequence `equals` start 100 cache 50;
|
-- phpMyAdmin SQL Dump
-- version 4.9.0.1
-- https://www.phpmyadmin.net/
--
-- Servidor: localhost
-- Tiempo de generación: 09-08-2019 a las 18:07:15
-- Versión del servidor: 10.3.16-MariaDB
-- Versión de PHP: 7.1.30
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Base de datos: `dbprueba`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `articulo`
--
CREATE TABLE `articulo` (
`idarticulo` int(11) NOT NULL,
`idcategoria` int(11) NOT NULL,
`nombre` varchar(50) NOT NULL,
`descripcion` varchar(256) DEFAULT NULL,
`codigo` varchar(20) NOT NULL,
`stock` int(11) NOT NULL,
`condicion` tinyint(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Volcado de datos para la tabla `articulo`
--
INSERT INTO `articulo` (`idarticulo`, `idcategoria`, `nombre`, `descripcion`, `codigo`, `stock`, `condicion`) VALUES
(1, 1, 'Impresora Epson Ep450', 'multifuncional', '1234567890', 100, 1);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `categoria`
--
CREATE TABLE `categoria` (
`idcategoria` int(11) NOT NULL,
`nombre` varchar(70) NOT NULL,
`condicion` tinyint(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Volcado de datos para la tabla `categoria`
--
INSERT INTO `categoria` (`idcategoria`, `nombre`, `condicion`) VALUES
(1, 'Hardware', 0),
(2, 'Software', 0);
--
-- Índices para tablas volcadas
--
--
-- Indices de la tabla `articulo`
--
ALTER TABLE `articulo`
ADD PRIMARY KEY (`idarticulo`),
ADD KEY `idcategoria` (`idcategoria`);
--
-- Indices de la tabla `categoria`
--
ALTER TABLE `categoria`
ADD PRIMARY KEY (`idcategoria`);
--
-- AUTO_INCREMENT de las tablas volcadas
--
--
-- AUTO_INCREMENT de la tabla `articulo`
--
ALTER TABLE `articulo`
MODIFY `idarticulo` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT de la tabla `categoria`
--
ALTER TABLE `categoria`
MODIFY `idcategoria` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
<reponame>alon-r/dbt-sqlserver<gh_stars>0
{% macro sqlserver__get_columns_in_relation(relation) -%}
{% call statement('get_columns_in_relation', fetch_result=True) %}
SELECT
column_name,
data_type,
character_maximum_length,
numeric_precision,
numeric_scale
FROM
(select
ordinal_position,
column_name,
data_type,
character_maximum_length,
numeric_precision,
numeric_scale
from [{{ relation.database }}].INFORMATION_SCHEMA.COLUMNS
where table_name = '{{ relation.identifier }}'
and table_schema = '{{ relation.schema }}'
UNION ALL
select
ordinal_position,
column_name collate database_default,
data_type collate database_default,
character_maximum_length,
numeric_precision,
numeric_scale
from tempdb.INFORMATION_SCHEMA.COLUMNS
where table_name like '{{ relation.identifier }}%') cols
order by ordinal_position
{% endcall %}
{% set table = load_result('get_columns_in_relation').table %}
{{ return(sql_convert_columns_in_relation(table)) }}
{% endmacro %}
{% macro sqlserver__get_columns_in_query(select_sql) %}
{% call statement('get_columns_in_query', fetch_result=True, auto_begin=False) -%}
select TOP 0 * from (
{{ select_sql }}
) as __dbt_sbq
where 0 = 1
{% endcall %}
{{ return(load_result('get_columns_in_query').table.columns | map(attribute='name') | list) }}
{% endmacro %}
{% macro sqlserver__alter_column_type(relation, column_name, new_column_type) %}
{%- set tmp_column = column_name + "__dbt_alter" -%}
{% call statement('alter_column_type') -%}
alter {{ relation.type }} {{ relation }} add {{ tmp_column }} {{ new_column_type }};
update {{ relation }} set {{ tmp_column }} = {{ column_name }};
alter {{ relation.type }} {{ relation }} drop column {{ column_name }};
exec sp_rename '{{ relation | replace('"', '') }}.{{ tmp_column }}', '{{ column_name }}', 'column'
{%- endcall -%}
{% endmacro %} |
create table scheduling_spec (
id integer generated always as identity,
revision integer not null default 0,
plan_id integer not null,
plan_revision integer not null,
horizon_start timestamptz not null,
horizon_end timestamptz not null,
simulation_arguments jsonb not null,
constraint scheduling_specification_synthetic_key
primary key(id)
);
comment on table scheduling_spec is e''
'The specification for a scheduling run.';
comment on column scheduling_spec.id is e''
'The synthetic identifier for this scheduling specification.';
comment on column scheduling_spec.revision is e''
'A monotonic clock that ticks for every change to this scheduling specification.';
comment on column scheduling_spec.plan_id is e''
'The ID of the plan to be scheduled.';
comment on column scheduling_spec.horizon_start is e''
'The start of the scheduling horizon within which the scheduler may place activities.';
comment on column scheduling_spec.horizon_end is e''
'The end of the scheduling horizon within which the scheduler may place activities.';
comment on column scheduling_spec.simulation_arguments is e''
'The arguments to use for simulation during scheduling.';
create function increment_revision_on_update()
returns trigger
security definer
language plpgsql as $$begin
new.revision = old.revision + 1;
return new;
end$$;
create function increment_revision_on_goal_update()
returns trigger
security definer
language plpgsql as $$begin
with goals as (
select g.spec_id from scheduling_spec_goals as g
where g.goal_id = new.id
)
update scheduling_spec set revision = revision + 1
where exists(select 1 from goals where spec_id = id);
return new;
end$$;
create trigger increment_revision_on_update_trigger
before update on scheduling_spec
for each row
when (pg_trigger_depth() < 1)
execute function increment_revision_on_update();
create trigger increment_revision_on_goal_update
before update on scheduling_goal
for each row
execute function increment_revision_on_goal_update();
|
SELECT
sum(case when contract_paydue_type = 'LICS' and insert_date>='2019-01-01' and insert_date <'2020-01-01' then contract_paydue_amount else null end) as sum_contract_paydue_amount_of_LICS_in_2019,
sum(case when contract_paydue_type = 'LICS' and insert_date>='2020-01-01' and insert_date <'2021-01-01' then contract_paydue_amount else null end) as sum_contract_paydue_amount_of_LICS_in_2020,
sum(case when contract_paydue_type = 'LICS' and insert_date>='2021-01-01' and insert_date <'2021-04-01' then contract_paydue_amount else null end) as sum_contract_paydue_amount_of_LICS_in_2021,
sum(case when contract_paydue_type = 'OM' and insert_date>='2019-01-01' and insert_date <'2020-01-01' then contract_paydue_amount else null end) as sum_contract_paydue_amount_of_OM_in_2019,
sum(case when contract_paydue_type = 'OM' and insert_date>='2020-01-01' and insert_date <'2021-01-01' then contract_paydue_amount else null end) as sum_contract_paydue_amount_of_OM_in_2020,
sum(case when contract_paydue_type = 'OM' and insert_date>='2021-01-01' and insert_date <'2021-04-01' then contract_paydue_amount else null end) as sum_contract_paydue_amount_of_OM_in_2021,
sum(case when contract_paydue_type = 'IMPL' and insert_date>='2019-01-01' and insert_date <'2020-01-01' then contract_paydue_amount else null end) as sum_contract_paydue_amount_of_IMPL_in_2019,
sum(case when contract_paydue_type = 'IMPL' and insert_date>='2020-01-01' and insert_date <'2021-01-01' then contract_paydue_amount else null end) as sum_contract_paydue_amount_of_IMPL_in_2020,
sum(case when contract_paydue_type = 'IMPL' and insert_date>='2021-01-01' and insert_date <'2021-04-01' then contract_paydue_amount else null end) as sum_contract_paydue_amount_of_IMPL_in_2021
FROM public.t_contract_paydue
--SUM也和COUNT一样可以使用case when then else 来设置条件 |
create table `azure_translation` (
`text` varchar(30) character set ascii not null
,`lang` varchar(2) character set ascii not null
,`result` text not null
,primary key(`text`, `lang`)
);
|
SELECT FLOOR(decimals.number1) AS number1, CEIL(decimals.number2) AS number2
FROM decimals; |
<reponame>roaddee/dulkemot<filename>content/berkas/sql/34_1473933551.sql
INSERT INTO tweb_apbd(`berkas_id`,`lembaga_id`, `lembaga_kode`, `wilayah_kode`,`tahun`, `rekening_kode`, `uraian`, `nominal`,`nominal_sebelum`, `nominal_sesudah`, `nominal_perubahan`, `nominal_persen`, `keterangan`, `created_by`, `updated_by`) VALUES
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.00.00.4..\"Pendapatan\".6333923970.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.00.00.4.1..\"PendapatanAsliDaerah\".6333923970.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.00.00.4.1.2..\"HasilRetribusiDaerah\".4965982970.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.00.00.4.1.2.01..\"RetribusiJasaUmum\".4910482970.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.00.00.4.1.2.02..\"RetribusiJasaUsaha\".55500000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.00.00.4.1.4..\"Lain-LainPendapatanAsliDaerahYangSah\".1367941000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.00.00.4.1.4.15..\"PendapatandariPengelolaanBLUD\".1367941000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.00.00.5..\"Belanja\".127461537419.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.00.00.5.1..\"BelanjaTidakLangsung\".23786690044.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.00.00.5.1.1..\"BelanjaPegawai\".23786690044.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.00.00.5.1.1.01..\"GajiDanTunjangan\".23786690044.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.00.00.5.2..\"BELANJALANGSUNG\".103674847375.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.01..\"PROGRAMPELAYANANADMINISTRASIPERKANTORAN\".6240136635.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.02..\"PROGRAMPENINGKATANSARANADANPRASARANAAPARATUR\".6650242800.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.05..\"PROGRAMPENINGKATANKAPASITASSUMBERDAYAAPARATUR\".1728702550.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.06..\"PROGRAMPENINGKATANPENGEMBANGANSISTEMPELAPORANCAPAIANKINERJADANKEUANGAN\".160329000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.19..\"PROGRAMPROMOSIKESEHATANDANPEMBERDAYAANMASYARAKAT\".1229850000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.19.001..\"PengembanganMediaPromosiDanInformasiSadarHidupSehat\".402840000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.19.002..\"PenyuluhanMasyarakatPolaHidupSehat\".110150000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.19.009..\"PeningkatanPeranSertaMasyarakatMelaluiUpayaKesehatanBerbasisMasyarakat(UKBM)\".132210000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.19.010..\"PenerbitanMajalahKesehatan\".71110000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.19.011..\"PengembanganMediaPromosiKesehatan\".113540000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.19.012..\"PenyusunanPanduandanPengadaanMateriMediaPenanggulanganHIVAIDS\".200000000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.19.013..\"PenyusunanPanduandanPengadaanMateriMediaPenanggulanganNarkoba\".200000000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.20..\"PROGRAMPERBAIKANGIZIMASYARAKAT\".928920000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.20.001..\"PenyusunanPetaInformasiMasyarakatKurangGizi\".27500000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.20.003..\"PenanggulanganKurangEnergiProtein(KEP).AnemiaGiziBesi.GangguanAkibatKurangYodium(GAKY).KurangVitADanKekuranganZatGiziM\".453431000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.20.005..\"PenanggulanganGiziLebih\".165000000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.20.006..\"Monitoring.EvaluasiDanPelaporan\".9969000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.20.008..\"SosialisasiPenanggulanganMasalahGizi\".205020000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.20.009..\"Peningkatankapasitaspetugasgizi\".68000000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.21..\"PROGRAMOENGEMBANGANLINGKUNGANSEHAT\".1036611000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.21.005..\"PengembanganKawasanSehat\".80000000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.21.008..\"PembinaanKualitasKesehatanLingkungandiTempat-tempatUmum\".229807000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.21.024..\"PenyehatanAir\".36731000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.21.025..\"PenyehatanLingkunganPemukiman\".460523000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.21.026..\"PeningkatanManajemenKesehatanLingkungan\".229550000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.26..\"PROGRAMPENGADAAN.PENINGKATANSARANADANPRASARANARUMAHSAKIT/RUMAHSAKITJIWA/RUMAHSAKITPARU-PARU/RUMAHSAKITMATA\".13197104800.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.26.001..\"PembangunanRumahSakit\".6699552000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.26.018..\"PengadaanAkt-AlatKesehatanRumahSakitdiBP4(DanaCukaiTembakau)\".673685000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.26.019..\"PengadaanObat-ObatanRumahSakit\".1855898700.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.26.021..\"PengadaanMebeleurRumahSakit\".60000000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.26.022..\"PengadaanPerlengkapanRumahTanggaRumahSakit(Dapur.RuangPasien.Laundry.RuangTungguDanLain-Lain)\".119997500.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.26.023..\"PengadaanBahan-BahanLogistikRumahSakit(DanaCukaiTembakau)\".266220000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.26.024..\"PengadaanPencetakanAdministrasiDanSuratMenyuratRumahSakit\".120000000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.26.028..\"PengadaanReagen/BahanKimia(DanaCukaiTembakau)\".750000000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.26.032..\"PengadaanReagen/BahanKimia(DanaCukaiTembakau)\".1245339000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.26.033..\"PengadaanAlat-AlatKesehatanRumahSakit\".1406412600.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.27..\"PROGRAMPEMELIHARAANSARANADANPRASARANARUMAHSAKIT/RUMAHSAKITJIWA/RUMAHSAKITPARU-PARU/RUMAHSAKITMATA\".444195700.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.27.001..\"PemeliharaanRutin/BerkalaRumahSakit\".229995700.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.27.016..\"PemeliharaanRutin/BerkalaInstalasiPengeolahanLimbahRumahSakit\".84200000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.27.017..\"PemeliharaanRutin/BerkalaAlat-AlatKesehatanRumahSakit\".60000000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.27.020..\"PemeliharaanRutin/BerkalaPerlengkapanRumahSakit\".50000000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.27.022..\"PemeliharaanRutin/BerkalaHewanPercobaan\".20000000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.33..\"PROGRAMSEDIAANFARMASI.PERBEKALANKESEHATAN.DANPENGAWASANMAKANAN\".298892000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.33.001..\"PeningkatanPemerataanObatDanPerbekalanKesehatan\".200808000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.33.002..\"PeningkatanMutuPelayananFarmasiKomunitasDanRS\".12100000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.33.003..\"PeningkatanMutuPenggunaanObatDanPerbekalanKesehatan\".85984000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.43..\"PROGRAMKESEHATANLANSIA\".143364000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.43.001..\"PerencanaanProgramKesehatanLansia\".15400000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.43.003..\"PengembanganPuskesmasSantunUsila\".76364000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.43.005..\"MonevProgramKesehatanLansiadiProvinsi\".17600000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.43.006..\"OrientasiPenangananGangguanKesehatanLansia\".34000000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.47..\"PROGRAMKESEHATANANAKDANREMAJA\".68200000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.47.001..\"PertemuanFKPKRRProvinsi\".14300000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.47.002..\"KoordinasiPuekesmasPKPRdiKab/Kota\".26950000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.47.003..\"KoordinasiketerpaduanKesproRemajadiKab/Kota\".26950000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.48..\"PROGRAMPELAYANANKESEHATANDASARDANRUJUKAN\".1696396640.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.48.001..\"RekruitmenPetugasKesehatanHaji\".19157340.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.48.002..\"PeningkatanPelayanandanPenanggulanganMasalahKesehatan\".389883000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.48.003..\"PeningkatanKesehatanMasyarakat\".137367000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.48.004..\"PelayananPPPKpadaEvenPenting\".30000000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.48.005..\"UpayaKesehatanRujukan\".144691000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.48.006..\"PemilihanTenagaKesehatanBerprestasi\".125000000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.48.007..\"PeningkatanKesehatanHaji\".24370000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.48.008..\"PeningkatanProgramKesehatanJiwa\".105086000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.48.009..\"PeningkatanKesehatanGigi\".157686000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.48.010..\"PeningkatanProgramKesehatanIndra\".279456000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.48.011..\"PeningkatanProgramKesehatanOlahraga\".15210000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.48.012..\"Peningkatankesehatankerja\".28208000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.48.013..\"PeningkatanMutuPelatihanKesehatan\".20397500.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.48.014..\"PeningkatanMutuTenagaKesehatan\".108397300.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.48.015..\"PeningkatanMutuSaranaKesehaan\".11487500.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.49..\"PROGRAMPENINGKATANPELAYANANKESEHATANPADABLUDBAPELJAMKESOS\".65976201000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.49.001..\"PelayananKesehatanpadaBLUD\".65976201000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.51..\"PROGRAMPEMBINAANKESEHATANIBU\".220000000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.51.001..\"PelatihanPPGDONNakes\".24200000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.51.002..\"SosialisasiPengenalanTandaBahayaBumil.Bufas.Bulin\".29700000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.51.003..\"EvaluasidanKoordinasiYankesIbu\".11000000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.51.004..\"SosialisasiPelaksanaanSitemMataRantaiRujukan\".17700000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.51.005..\"PenanggulanganPelayananKB\".25850000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.51.006..\"PenguatanTaskForceKIA\".20900000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.51.007..\"EvaluasiRSPONEK\".17600000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.51.008..\"Penguatan/PembentukanTimPenangananKegawatanMaternalNeonataldiRS\".28050000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.51.009..\"PengembanganSistemInformasiPenangananKegawatanMaternalNeonatal\".45000000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.53..\"PROGRAMPELATIHANKESEHATANDANPENINGKATANMUTUDIKLAT\".501743150.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.53.001..\"PemasaranDklat\".116377000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.53.002..\"PengembanganSDMDiklat\".78042500.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.53.003..\"PenyelenggaraanDiklatSDMKesehatanNakesdanMasyarakat\".307323650.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.55..\"PROGRAMPEMBINAANKESEHATANBAYIDANBALITA\".118650000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.55.001..\"PembinaanTeknisPascaPelatihan\".15950000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.55.002..\"PengembanganSurveilansKIA\".12100000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.55.003..\"PerencanaandanEvaluasiKesehatanAnak\".12100000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.55.004..\"PengembanganKeterpaduanSDIDTKBalita\".48800000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.55.005..\"KoordinasiPelaksanaanMTBSdiPuskesmas\".29700000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.56..\"PROGRAMPEMBIAYAANKESEHATAN\".599193000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.56.001..\"PengembanganJaminanPelayananKesehatan\".50870000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.56.002..\"PengembanganSistemPembiayaanKesehatan\".25500000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.56.003..\"SosialisasiPelaksanaanJamkes\".199355000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.56.004..\"MonitoringdanEvaluasiPelaksanaanJamkesta\".126755000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.56.005..\"MonitoringdanEvaluasiPelaksanaanJamkes\".97915000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.56.006..\"PengelolaanDataJaminanKesehatan\".98798000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.57..\"PROGRAMPENCEGAHANDANPENANGGULANGANPENYAKIT\".2436115100.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.57.001..\"PeningkatanImunisasi\".292323000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.57.002..\"PenguatanPelaksanaanBulanImunisasiAnakSekolah(BIAS)\".30040000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.57.003..\"SKDdanPenanggulanganKLB\".137500000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.57.004..\"SurveilansPD3I\".27500000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.57.005..\"PengendalianpenyakitDemamBerdarahDengue\".304369000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.57.006..\"PengendalianPenyakitMalaria\".143475100.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.57.007..\"PencegahandanPenanggulanganPENYAKIThivaids\".478893000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.57.008..\"PengendalianPenyakitTB\".534225000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.57.009..\"PengendalianPenyakitZoonosis\".182080000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.57.010..\"PenanggulanganPenyakitKanker\".105310000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.57.011..\"PenanggulanganPenyakitJantungdanPembuluhDarah(PJPD)\".44350000.','','','0','','0','0','','2','2'),
('144','87','\"\"1.02.01.\"\",,\"','34','2014,,','1.02.1.02.01.57.012..\"PenanggulanganPenyakitMetabolik\".156050000.','','','0','','0','0','','2','2'),
|
<filename>migrations/2018-06-21-204519_command_aliases/up.sql
-- Your SQL goes here
CREATE TABLE IF NOT EXISTS command_alias (
id BIGSERIAL PRIMARY KEY,
owner_id BIGINT NOT NULL,
alias_name VARCHAR(2000) NOT NULL,
alias_value VARCHAR(2000) NOT NULL,
UNIQUE (owner_id, alias_name)
);
CREATE INDEX IF NOT EXISTS "command_alias_owner_id_idx" ON "command_alias" ("owner_id");
|
BEGIN TRANSACTION;
CREATE TABLE Levels (
level_id integer PRIMARY KEY AUTOINCREMENT NOT NULL,
level_name text,
description text
);
INSERT INTO "Levels" VALUES(0,'Positive','Shows whether test is positive or negative');
INSERT INTO "Levels" VALUES(1,'ErrorType','Type of the error like "out-of-bounds" or "memory leak"');
INSERT INTO "Levels" VALUES(2,'MemoryType','Type of the memory used in the test');
INSERT INTO "Levels" VALUES(3,'ComputationComplexity','Describes expression which caused the error');
INSERT INTO "Levels" VALUES(4,'Context','Context the error appeared in like');
INSERT INTO "Levels" VALUES(5,'CodeComplexity','Complexity of code in the test');
COMMIT;
BEGIN TRANSACTION;
CREATE TABLE "Values" (
value_id integer PRIMARY KEY AUTOINCREMENT NOT NULL,
level_id integer,
value text,
description text
);
INSERT INTO "Values" VALUES(1,0,'n','negative test');
INSERT INTO "Values" VALUES(2,0,'p','positive test');
INSERT INTO "Values" VALUES(3,1,'UI','UnInitialized variable');
INSERT INTO "Values" VALUES(4,1,'ZD','Zero Division');
INSERT INTO "Values" VALUES(5,1,'OOB','Out Of Bounds');
INSERT INTO "Values" VALUES(6,1,'DAM','DeAllocated Memory');
INSERT INTO "Values" VALUES(7,1,'IP','Invalid Pointer');
INSERT INTO "Values" VALUES(8,1,'ML','Memory Leak');
INSERT INTO "Values" VALUES(9,1,'DC','Dead Code');
INSERT INTO "Values" VALUES(10,2,'aS','Automatic+Single');
INSERT INTO "Values" VALUES(11,2,'aS+aS','Automatic+Single + Automatic+Single');
INSERT INTO "Values" VALUES(12,3,'v','Variable');
INSERT INTO "Values" VALUES(13,3,'A(v,c)','Arithmetic(Variable, Const)');
INSERT INTO "Values" VALUES(14,3,'A(D(v,c))','Arithmetic(Dereferencing(var, const))');
INSERT INTO "Values" VALUES(15,4,'lc','local context');
INSERT INTO "Values" VALUES(16,4,'fp','function parameter');
INSERT INTO "Values" VALUES(17,4,'fr','function return');
INSERT INTO "Values" VALUES(18,4,'rc','recursion');
INSERT INTO "Values" VALUES(19,5,'ln','linear code');
INSERT INTO "Values" VALUES(20,5,'cd','condition');
INSERT INTO "Values" VALUES(21,5,'rp','repeat');
INSERT INTO "Values" VALUES(22,3,'D(v)',NULL);
INSERT INTO "Values" VALUES(23,3,'A(D(v))',NULL);
INSERT INTO "Values" VALUES(24,4,'fp+fr',NULL);
INSERT INTO "Values" VALUES(25,2,'aA',NULL);
INSERT INTO "Values" VALUES(26,2,'aS+aA',NULL);
INSERT INTO "Values" VALUES(27,3,'D(A(c,v))',NULL);
INSERT INTO "Values" VALUES(28,3,'c',NULL);
INSERT INTO "Values" VALUES(29,3,'a(v,c)',NULL);
INSERT INTO "Values" VALUES(30,3,'A(v))',NULL);
INSERT INTO "Values" VALUES(31,3,'A(D(v),c))',NULL);
INSERT INTO "Values" VALUES(32,3,'D(A(v,c))',NULL);
INSERT INTO "Values" VALUES(33,3,'A(D(v),c)',NULL);
INSERT INTO "Values" VALUES(34,3,'A(c,v)',NULL);
INSERT INTO "Values" VALUES(35,2,'aS+dA',NULL);
INSERT INTO "Values" VALUES(36,3,'A(v)',NULL);
INSERT INTO "Values" VALUES(37,2,'sS',NULL);
COMMIT;
BEGIN TRANSACTION;
CREATE TABLE Tests (
test_id integer PRIMARY KEY AUTOINCREMENT NOT NULL,
path text,
positive text
);
INSERT INTO "Tests" VALUES(24,'tests/33-n-DAM-aS-D(v)-lc-ln.c','n');
INSERT INTO "Tests" VALUES(25,'tests/27-n-DAM-aS+aS-v-lc-ln.c','n');
INSERT INTO "Tests" VALUES(26,'tests/7-n-ZD-aS+aS-A(D(v))-lc-ln.c','n');
INSERT INTO "Tests" VALUES(27,'tests/ui/ui_positive.c','p');
INSERT INTO "Tests" VALUES(28,'tests/ui/ui_negative.c','n');
INSERT INTO "Tests" VALUES(29,'tests/40-p-DAM-aS-D(v)-fp+fr-ln.c','p');
INSERT INTO "Tests" VALUES(30,'tests/3-n-ZD-aS-v-lc-ln.c','n');
INSERT INTO "Tests" VALUES(31,'tests/28-p-DAM-aS+aS-v-lc-ln.c','p');
INSERT INTO "Tests" VALUES(32,'tests/13-n-ZD-aA-A(D(v))-lc-ln.c','n');
INSERT INTO "Tests" VALUES(33,'tests/38-n-UI-aS-v-lc-cd.c','n');
INSERT INTO "Tests" VALUES(34,'tests/30-p-DAM-aS+aS-v-lc-ln.c','p');
INSERT INTO "Tests" VALUES(35,'tests/20-p-ZD-aS+aA-D(A(c,v))-lc-ln.c','p');
INSERT INTO "Tests" VALUES(36,'tests/12-p-ZD-aS+aS-A(D(v))-lc-ln.c','p');
INSERT INTO "Tests" VALUES(37,'tests/24-p-ZD-aS-c-lc-cd.c','p');
INSERT INTO "Tests" VALUES(38,'tests/37-n-UI-aS-v-lc-ln.c','n');
INSERT INTO "Tests" VALUES(39,'tests/oob/oob_positive.c','p');
INSERT INTO "Tests" VALUES(40,'tests/oob/oob_negative.c','n');
INSERT INTO "Tests" VALUES(41,'tests/11-n-ZD-aS+aS-A(D(v))-lc-ln.c','n');
INSERT INTO "Tests" VALUES(42,'tests/10-p-ZD-aS-A(v)-lc-ln.c','p');
INSERT INTO "Tests" VALUES(43,'tests/29-n-DAM-aS+aS-v-lc-ln.c','n');
INSERT INTO "Tests" VALUES(44,'tests/2-p-ZD-aS-c-lc-ln.c','p');
INSERT INTO "Tests" VALUES(45,'tests/31-n-ZD-aS+aS-A(D(v),c))-lc-ln.c','n');
INSERT INTO "Tests" VALUES(46,'tests/39-n-DAM-aS-D(v)-fp+fr-ln.c','n');
INSERT INTO "Tests" VALUES(47,'tests/15-n-ZD-aA-D(A(v,c))-lc-ln .c','n');
INSERT INTO "Tests" VALUES(48,'tests/32-p-ZD-aS+aS-A(D(v),c))-lc-ln.c','p');
INSERT INTO "Tests" VALUES(49,'tests/6-p-ZD-aS-A(c,v)-lc-ln.c','p');
INSERT INTO "Tests" VALUES(50,'tests/dam/dam_auto_negative.c','n');
INSERT INTO "Tests" VALUES(51,'tests/dam/dam_dynamic_positive.c','p');
INSERT INTO "Tests" VALUES(52,'tests/dam/dam_auto_positive.c','p');
INSERT INTO "Tests" VALUES(53,'tests/dam/dam_dynamic_negative.c','n');
INSERT INTO "Tests" VALUES(54,'tests/zd/zd_positive.c','p');
INSERT INTO "Tests" VALUES(55,'tests/zd/zd_negative.c','n');
INSERT INTO "Tests" VALUES(56,'tests/19-n-ZD-aS+aA-D(A(c,v))-lc-ln.c','n');
INSERT INTO "Tests" VALUES(57,'tests/14-p-ZD-aA-A(D(v))-lc-ln.c','p');
INSERT INTO "Tests" VALUES(58,'tests/ip/ip_negative.c','n');
INSERT INTO "Tests" VALUES(59,'tests/ip/ip_dynamic_negative.c','n');
INSERT INTO "Tests" VALUES(60,'tests/ip/ip_zero_negative.c','n');
INSERT INTO "Tests" VALUES(61,'tests/ip/ip_positive.c','p');
INSERT INTO "Tests" VALUES(62,'tests/ip/ip_zero_positive.c','p');
INSERT INTO "Tests" VALUES(63,'tests/ip/ip_dynamic_positive.c','p');
INSERT INTO "Tests" VALUES(64,'tests/4-p-ZD-aS-v-lc-ln.c','p');
INSERT INTO "Tests" VALUES(65,'tests/21-n-ZD-aS-v-lc-cd.c','n');
INSERT INTO "Tests" VALUES(66,'tests/5-n-ZD-aS-A(c,v)-lc-ln.c','n');
INSERT INTO "Tests" VALUES(67,'tests/8-p-ZD-aS+aS-A(D(v))-lc-ln.c','p');
INSERT INTO "Tests" VALUES(68,'tests/1-n-ZD-aS-c-lc-ln.c','n');
INSERT INTO "Tests" VALUES(69,'tests/34-p-DAM-aS-D(v)-lc-ln.c','p');
INSERT INTO "Tests" VALUES(70,'tests/9-n-ZD-aS-A(v)-lc-ln.c','n');
INSERT INTO "Tests" VALUES(71,'tests/17-n-ZD-sS-v-lc-ln.c','n');
INSERT INTO "Tests" VALUES(72,'tests/22-p-ZD-aS-v-lc-cd.c','p');
INSERT INTO "Tests" VALUES(73,'tests/18-p-ZD-sS-v-lc-ln.c','p');
INSERT INTO "Tests" VALUES(74,'tests/23-n-ZD-aS-c-lc-cd.c','n');
INSERT INTO "Tests" VALUES(75,'tests/16-p-ZD-aA-D(A(v,c))-lc-ln .c','p');
COMMIT;
BEGIN TRANSACTION;
CREATE TABLE Classification (
test_id integer NOT NULL,
level_id integer NOT NULL,
value_id integer,
PRIMARY KEY (test_id, level_id)
);
INSERT INTO "Classification" VALUES(24,0,1);
INSERT INTO "Classification" VALUES(24,1,6);
INSERT INTO "Classification" VALUES(24,2,10);
INSERT INTO "Classification" VALUES(24,3,22);
INSERT INTO "Classification" VALUES(24,4,15);
INSERT INTO "Classification" VALUES(24,5,19);
INSERT INTO "Classification" VALUES(25,0,1);
INSERT INTO "Classification" VALUES(25,1,6);
INSERT INTO "Classification" VALUES(25,2,11);
INSERT INTO "Classification" VALUES(25,3,12);
INSERT INTO "Classification" VALUES(25,4,15);
INSERT INTO "Classification" VALUES(25,5,19);
INSERT INTO "Classification" VALUES(26,0,1);
INSERT INTO "Classification" VALUES(26,1,4);
INSERT INTO "Classification" VALUES(26,2,11);
INSERT INTO "Classification" VALUES(26,3,23);
INSERT INTO "Classification" VALUES(26,4,15);
INSERT INTO "Classification" VALUES(26,5,19);
INSERT INTO "Classification" VALUES(27,0,2);
INSERT INTO "Classification" VALUES(27,1,3);
INSERT INTO "Classification" VALUES(27,2,10);
INSERT INTO "Classification" VALUES(27,3,12);
INSERT INTO "Classification" VALUES(27,4,15);
INSERT INTO "Classification" VALUES(27,5,19);
INSERT INTO "Classification" VALUES(28,0,1);
INSERT INTO "Classification" VALUES(28,1,3);
INSERT INTO "Classification" VALUES(28,2,10);
INSERT INTO "Classification" VALUES(28,3,12);
INSERT INTO "Classification" VALUES(28,4,15);
INSERT INTO "Classification" VALUES(28,5,19);
INSERT INTO "Classification" VALUES(29,0,2);
INSERT INTO "Classification" VALUES(29,1,6);
INSERT INTO "Classification" VALUES(29,2,10);
INSERT INTO "Classification" VALUES(29,3,22);
INSERT INTO "Classification" VALUES(29,4,24);
INSERT INTO "Classification" VALUES(29,5,19);
INSERT INTO "Classification" VALUES(30,0,1);
INSERT INTO "Classification" VALUES(30,1,4);
INSERT INTO "Classification" VALUES(30,2,10);
INSERT INTO "Classification" VALUES(30,3,12);
INSERT INTO "Classification" VALUES(30,4,15);
INSERT INTO "Classification" VALUES(30,5,19);
INSERT INTO "Classification" VALUES(31,0,2);
INSERT INTO "Classification" VALUES(31,1,6);
INSERT INTO "Classification" VALUES(31,2,11);
INSERT INTO "Classification" VALUES(31,3,12);
INSERT INTO "Classification" VALUES(31,4,15);
INSERT INTO "Classification" VALUES(31,5,19);
INSERT INTO "Classification" VALUES(32,0,1);
INSERT INTO "Classification" VALUES(32,1,4);
INSERT INTO "Classification" VALUES(32,2,25);
INSERT INTO "Classification" VALUES(32,3,23);
INSERT INTO "Classification" VALUES(32,4,15);
INSERT INTO "Classification" VALUES(32,5,19);
INSERT INTO "Classification" VALUES(33,0,1);
INSERT INTO "Classification" VALUES(33,1,3);
INSERT INTO "Classification" VALUES(33,2,10);
INSERT INTO "Classification" VALUES(33,3,12);
INSERT INTO "Classification" VALUES(33,4,15);
INSERT INTO "Classification" VALUES(33,5,20);
INSERT INTO "Classification" VALUES(34,0,2);
INSERT INTO "Classification" VALUES(34,1,6);
INSERT INTO "Classification" VALUES(34,2,11);
INSERT INTO "Classification" VALUES(34,3,12);
INSERT INTO "Classification" VALUES(34,4,15);
INSERT INTO "Classification" VALUES(34,5,19);
INSERT INTO "Classification" VALUES(35,0,2);
INSERT INTO "Classification" VALUES(35,1,4);
INSERT INTO "Classification" VALUES(35,2,26);
INSERT INTO "Classification" VALUES(35,3,27);
INSERT INTO "Classification" VALUES(35,4,15);
INSERT INTO "Classification" VALUES(35,5,19);
INSERT INTO "Classification" VALUES(36,0,2);
INSERT INTO "Classification" VALUES(36,1,4);
INSERT INTO "Classification" VALUES(36,2,11);
INSERT INTO "Classification" VALUES(36,3,23);
INSERT INTO "Classification" VALUES(36,4,15);
INSERT INTO "Classification" VALUES(36,5,19);
INSERT INTO "Classification" VALUES(37,0,2);
INSERT INTO "Classification" VALUES(37,1,4);
INSERT INTO "Classification" VALUES(37,2,10);
INSERT INTO "Classification" VALUES(37,3,28);
INSERT INTO "Classification" VALUES(37,4,15);
INSERT INTO "Classification" VALUES(37,5,20);
INSERT INTO "Classification" VALUES(38,0,1);
INSERT INTO "Classification" VALUES(38,1,3);
INSERT INTO "Classification" VALUES(38,2,10);
INSERT INTO "Classification" VALUES(38,3,12);
INSERT INTO "Classification" VALUES(38,4,15);
INSERT INTO "Classification" VALUES(38,5,20);
INSERT INTO "Classification" VALUES(39,0,2);
INSERT INTO "Classification" VALUES(39,1,5);
INSERT INTO "Classification" VALUES(39,2,26);
INSERT INTO "Classification" VALUES(39,3,29);
INSERT INTO "Classification" VALUES(39,4,15);
INSERT INTO "Classification" VALUES(39,5,19);
INSERT INTO "Classification" VALUES(40,0,1);
INSERT INTO "Classification" VALUES(40,1,5);
INSERT INTO "Classification" VALUES(40,2,26);
INSERT INTO "Classification" VALUES(40,3,29);
INSERT INTO "Classification" VALUES(40,4,15);
INSERT INTO "Classification" VALUES(40,5,19);
INSERT INTO "Classification" VALUES(41,0,1);
INSERT INTO "Classification" VALUES(41,1,4);
INSERT INTO "Classification" VALUES(41,2,11);
INSERT INTO "Classification" VALUES(41,3,23);
INSERT INTO "Classification" VALUES(41,4,15);
INSERT INTO "Classification" VALUES(41,5,19);
INSERT INTO "Classification" VALUES(42,0,2);
INSERT INTO "Classification" VALUES(42,1,4);
INSERT INTO "Classification" VALUES(42,2,10);
INSERT INTO "Classification" VALUES(42,3,30);
INSERT INTO "Classification" VALUES(42,4,15);
INSERT INTO "Classification" VALUES(42,5,19);
INSERT INTO "Classification" VALUES(43,0,1);
INSERT INTO "Classification" VALUES(43,1,6);
INSERT INTO "Classification" VALUES(43,2,11);
INSERT INTO "Classification" VALUES(43,3,12);
INSERT INTO "Classification" VALUES(43,4,15);
INSERT INTO "Classification" VALUES(43,5,19);
INSERT INTO "Classification" VALUES(44,0,2);
INSERT INTO "Classification" VALUES(44,1,4);
INSERT INTO "Classification" VALUES(44,2,10);
INSERT INTO "Classification" VALUES(44,3,28);
INSERT INTO "Classification" VALUES(44,4,15);
INSERT INTO "Classification" VALUES(44,5,19);
INSERT INTO "Classification" VALUES(45,0,1);
INSERT INTO "Classification" VALUES(45,1,4);
INSERT INTO "Classification" VALUES(45,2,11);
INSERT INTO "Classification" VALUES(45,3,31);
INSERT INTO "Classification" VALUES(45,4,15);
INSERT INTO "Classification" VALUES(45,5,19);
INSERT INTO "Classification" VALUES(46,0,1);
INSERT INTO "Classification" VALUES(46,1,6);
INSERT INTO "Classification" VALUES(46,2,10);
INSERT INTO "Classification" VALUES(46,3,22);
INSERT INTO "Classification" VALUES(46,4,24);
INSERT INTO "Classification" VALUES(46,5,19);
INSERT INTO "Classification" VALUES(47,0,1);
INSERT INTO "Classification" VALUES(47,1,4);
INSERT INTO "Classification" VALUES(47,2,25);
INSERT INTO "Classification" VALUES(47,3,32);
INSERT INTO "Classification" VALUES(47,4,15);
INSERT INTO "Classification" VALUES(47,5,19);
INSERT INTO "Classification" VALUES(48,0,2);
INSERT INTO "Classification" VALUES(48,1,4);
INSERT INTO "Classification" VALUES(48,2,11);
INSERT INTO "Classification" VALUES(48,3,33);
INSERT INTO "Classification" VALUES(48,4,15);
INSERT INTO "Classification" VALUES(48,5,19);
INSERT INTO "Classification" VALUES(49,0,2);
INSERT INTO "Classification" VALUES(49,1,4);
INSERT INTO "Classification" VALUES(49,2,10);
INSERT INTO "Classification" VALUES(49,3,34);
INSERT INTO "Classification" VALUES(49,4,15);
INSERT INTO "Classification" VALUES(49,5,19);
INSERT INTO "Classification" VALUES(50,0,1);
INSERT INTO "Classification" VALUES(50,1,6);
INSERT INTO "Classification" VALUES(50,2,11);
INSERT INTO "Classification" VALUES(50,3,12);
INSERT INTO "Classification" VALUES(50,4,15);
INSERT INTO "Classification" VALUES(50,5,19);
INSERT INTO "Classification" VALUES(51,0,2);
INSERT INTO "Classification" VALUES(51,1,6);
INSERT INTO "Classification" VALUES(51,2,35);
INSERT INTO "Classification" VALUES(51,3,29);
INSERT INTO "Classification" VALUES(51,4,15);
INSERT INTO "Classification" VALUES(51,5,19);
INSERT INTO "Classification" VALUES(52,0,2);
INSERT INTO "Classification" VALUES(52,1,6);
INSERT INTO "Classification" VALUES(52,2,11);
INSERT INTO "Classification" VALUES(52,3,12);
INSERT INTO "Classification" VALUES(52,4,15);
INSERT INTO "Classification" VALUES(52,5,19);
INSERT INTO "Classification" VALUES(53,0,1);
INSERT INTO "Classification" VALUES(53,1,6);
INSERT INTO "Classification" VALUES(53,2,35);
INSERT INTO "Classification" VALUES(53,3,29);
INSERT INTO "Classification" VALUES(53,4,15);
INSERT INTO "Classification" VALUES(53,5,19);
INSERT INTO "Classification" VALUES(54,0,2);
INSERT INTO "Classification" VALUES(54,1,4);
INSERT INTO "Classification" VALUES(54,2,10);
INSERT INTO "Classification" VALUES(54,3,28);
INSERT INTO "Classification" VALUES(54,4,15);
INSERT INTO "Classification" VALUES(54,5,19);
INSERT INTO "Classification" VALUES(55,0,1);
INSERT INTO "Classification" VALUES(55,1,4);
INSERT INTO "Classification" VALUES(55,2,10);
INSERT INTO "Classification" VALUES(55,3,28);
INSERT INTO "Classification" VALUES(55,4,15);
INSERT INTO "Classification" VALUES(55,5,19);
INSERT INTO "Classification" VALUES(56,0,1);
INSERT INTO "Classification" VALUES(56,1,4);
INSERT INTO "Classification" VALUES(56,2,26);
INSERT INTO "Classification" VALUES(56,3,27);
INSERT INTO "Classification" VALUES(56,4,15);
INSERT INTO "Classification" VALUES(56,5,19);
INSERT INTO "Classification" VALUES(57,0,2);
INSERT INTO "Classification" VALUES(57,1,4);
INSERT INTO "Classification" VALUES(57,2,25);
INSERT INTO "Classification" VALUES(57,3,23);
INSERT INTO "Classification" VALUES(57,4,15);
INSERT INTO "Classification" VALUES(57,5,19);
INSERT INTO "Classification" VALUES(58,0,1);
INSERT INTO "Classification" VALUES(58,1,7);
INSERT INTO "Classification" VALUES(58,2,10);
INSERT INTO "Classification" VALUES(58,3,12);
INSERT INTO "Classification" VALUES(58,4,15);
INSERT INTO "Classification" VALUES(58,5,19);
INSERT INTO "Classification" VALUES(59,0,1);
INSERT INTO "Classification" VALUES(59,1,7);
INSERT INTO "Classification" VALUES(59,2,35);
INSERT INTO "Classification" VALUES(59,3,29);
INSERT INTO "Classification" VALUES(59,4,15);
INSERT INTO "Classification" VALUES(59,5,19);
INSERT INTO "Classification" VALUES(60,0,1);
INSERT INTO "Classification" VALUES(60,1,7);
INSERT INTO "Classification" VALUES(60,2,10);
INSERT INTO "Classification" VALUES(60,3,12);
INSERT INTO "Classification" VALUES(60,4,15);
INSERT INTO "Classification" VALUES(60,5,19);
INSERT INTO "Classification" VALUES(61,0,2);
INSERT INTO "Classification" VALUES(61,1,7);
INSERT INTO "Classification" VALUES(61,2,10);
INSERT INTO "Classification" VALUES(61,3,12);
INSERT INTO "Classification" VALUES(61,4,15);
INSERT INTO "Classification" VALUES(61,5,19);
INSERT INTO "Classification" VALUES(62,0,2);
INSERT INTO "Classification" VALUES(62,1,7);
INSERT INTO "Classification" VALUES(62,2,10);
INSERT INTO "Classification" VALUES(62,3,12);
INSERT INTO "Classification" VALUES(62,4,15);
INSERT INTO "Classification" VALUES(62,5,19);
INSERT INTO "Classification" VALUES(63,0,2);
INSERT INTO "Classification" VALUES(63,1,7);
INSERT INTO "Classification" VALUES(63,2,35);
INSERT INTO "Classification" VALUES(63,3,29);
INSERT INTO "Classification" VALUES(63,4,15);
INSERT INTO "Classification" VALUES(63,5,20);
INSERT INTO "Classification" VALUES(64,0,2);
INSERT INTO "Classification" VALUES(64,1,4);
INSERT INTO "Classification" VALUES(64,2,10);
INSERT INTO "Classification" VALUES(64,3,12);
INSERT INTO "Classification" VALUES(64,4,15);
INSERT INTO "Classification" VALUES(64,5,19);
INSERT INTO "Classification" VALUES(65,0,1);
INSERT INTO "Classification" VALUES(65,1,4);
INSERT INTO "Classification" VALUES(65,2,10);
INSERT INTO "Classification" VALUES(65,3,12);
INSERT INTO "Classification" VALUES(65,4,15);
INSERT INTO "Classification" VALUES(65,5,20);
INSERT INTO "Classification" VALUES(66,0,1);
INSERT INTO "Classification" VALUES(66,1,4);
INSERT INTO "Classification" VALUES(66,2,10);
INSERT INTO "Classification" VALUES(66,3,34);
INSERT INTO "Classification" VALUES(66,4,15);
INSERT INTO "Classification" VALUES(66,5,19);
INSERT INTO "Classification" VALUES(67,0,2);
INSERT INTO "Classification" VALUES(67,1,4);
INSERT INTO "Classification" VALUES(67,2,11);
INSERT INTO "Classification" VALUES(67,3,23);
INSERT INTO "Classification" VALUES(67,4,15);
INSERT INTO "Classification" VALUES(67,5,19);
INSERT INTO "Classification" VALUES(68,0,1);
INSERT INTO "Classification" VALUES(68,1,4);
INSERT INTO "Classification" VALUES(68,2,10);
INSERT INTO "Classification" VALUES(68,3,28);
INSERT INTO "Classification" VALUES(68,4,15);
INSERT INTO "Classification" VALUES(68,5,19);
INSERT INTO "Classification" VALUES(69,0,2);
INSERT INTO "Classification" VALUES(69,1,6);
INSERT INTO "Classification" VALUES(69,2,10);
INSERT INTO "Classification" VALUES(69,3,22);
INSERT INTO "Classification" VALUES(69,4,15);
INSERT INTO "Classification" VALUES(69,5,19);
INSERT INTO "Classification" VALUES(70,0,1);
INSERT INTO "Classification" VALUES(70,1,4);
INSERT INTO "Classification" VALUES(70,2,10);
INSERT INTO "Classification" VALUES(70,3,36);
INSERT INTO "Classification" VALUES(70,4,15);
INSERT INTO "Classification" VALUES(70,5,19);
INSERT INTO "Classification" VALUES(71,0,1);
INSERT INTO "Classification" VALUES(71,1,4);
INSERT INTO "Classification" VALUES(71,2,37);
INSERT INTO "Classification" VALUES(71,3,12);
INSERT INTO "Classification" VALUES(71,4,15);
INSERT INTO "Classification" VALUES(71,5,19);
INSERT INTO "Classification" VALUES(72,0,2);
INSERT INTO "Classification" VALUES(72,1,4);
INSERT INTO "Classification" VALUES(72,2,10);
INSERT INTO "Classification" VALUES(72,3,12);
INSERT INTO "Classification" VALUES(72,4,15);
INSERT INTO "Classification" VALUES(72,5,20);
INSERT INTO "Classification" VALUES(73,0,2);
INSERT INTO "Classification" VALUES(73,1,4);
INSERT INTO "Classification" VALUES(73,2,37);
INSERT INTO "Classification" VALUES(73,3,12);
INSERT INTO "Classification" VALUES(73,4,15);
INSERT INTO "Classification" VALUES(73,5,19);
INSERT INTO "Classification" VALUES(74,0,1);
INSERT INTO "Classification" VALUES(74,1,4);
INSERT INTO "Classification" VALUES(74,2,10);
INSERT INTO "Classification" VALUES(74,3,28);
INSERT INTO "Classification" VALUES(74,4,15);
INSERT INTO "Classification" VALUES(74,5,20);
INSERT INTO "Classification" VALUES(75,0,2);
INSERT INTO "Classification" VALUES(75,1,4);
INSERT INTO "Classification" VALUES(75,2,25);
INSERT INTO "Classification" VALUES(75,3,32);
INSERT INTO "Classification" VALUES(75,4,15);
INSERT INTO "Classification" VALUES(75,5,19);
COMMIT;
BEGIN TRANSACTION;
CREATE TABLE BasicTests (
test_id integer PRIMARY KEY NOT NULL,
value_id integer
);
INSERT INTO "BasicTests" VALUES(27,3);
INSERT INTO "BasicTests" VALUES(28,3);
INSERT INTO "BasicTests" VALUES(39,5);
INSERT INTO "BasicTests" VALUES(40,5);
INSERT INTO "BasicTests" VALUES(50,6);
INSERT INTO "BasicTests" VALUES(51,6);
INSERT INTO "BasicTests" VALUES(52,6);
INSERT INTO "BasicTests" VALUES(53,6);
INSERT INTO "BasicTests" VALUES(54,4);
INSERT INTO "BasicTests" VALUES(55,4);
INSERT INTO "BasicTests" VALUES(58,7);
INSERT INTO "BasicTests" VALUES(59,7);
INSERT INTO "BasicTests" VALUES(60,7);
INSERT INTO "BasicTests" VALUES(61,7);
INSERT INTO "BasicTests" VALUES(62,7);
INSERT INTO "BasicTests" VALUES(63,7);
COMMIT;
BEGIN TRANSACTION;
CREATE TABLE Verifiers (
ver_id integer PRIMARY KEY AUTOINCREMENT NOT NULL,
name text,
version text,
executable text,
keys text,
output_stream text,
path_separator text
);
INSERT INTO "Verifiers" VALUES(1,'Splint','3.1.2','splint','-strict -fileextensions -sizeoftype -varuse','stdout','/');
COMMIT;
BEGIN TRANSACTION;
CREATE TABLE Analysis (
ver_id integer NOT NULL,
value_id integer NOT NULL,
keywords text,
PRIMARY KEY (ver_id, value_id)
);
INSERT INTO "Analysis" VALUES(1,3,'used before definition & may not be initialized');
INSERT INTO "Analysis" VALUES(1,5,'out-of-bounds');
INSERT INTO "Analysis" VALUES(1,6,'Possible out-of-bounds | used after being released');
INSERT INTO "Analysis" VALUES(1,7,'out-of-bounds | possibly null pointer & null pointer is dereferenced | null pointer');
COMMIT;
BEGIN TRANSACTION;
CREATE TABLE TestingSessions (
session_id integer PRIMARY KEY AUTOINCREMENT NOT NULL,
ver_id integer NOT NULL,
time_start timestamp NOT NULL,
time_end timestamp,
description text
);
INSERT INTO "TestingSessions" VALUES(1,1,'2009-04-25 12:37:23','2009-04-25 12:37:23','');
COMMIT;
BEGIN TRANSACTION;
CREATE TABLE Output (
output_id integer PRIMARY KEY AUTOINCREMENT NOT NULL,
output_text text,
hash text
);
INSERT INTO "Output" VALUES(1,'tests/33-n-DAM-aS-D(v)-lc-ln.c: (in function main)
tests/33-n-DAM-aS-D(v)-lc-ln.c:7:2: Variable p used before definition
An rvalue is used that may not be initialized to a value on some execution
path. (Use -usedef to inhibit warning)
tests/33-n-DAM-aS-D(v)-lc-ln.c:7:1: Possible out-of-bounds store: *p
Unable to resolve constraint:
requires maxSet(p @ tests/33-n-DAM-aS-D(v)-lc-ln.c:7:2) >= 0
needed to satisfy precondition:
requires maxSet(p @ tests/33-n-DAM-aS-D(v)-lc-ln.c:7:2) >= 0
A memory write may write to an address beyond the allocated buffer. (Use
-boundswrite to inhibit warning)
','cbd2f2ca42921a2110dc21fcaa01f899');
INSERT INTO "Output" VALUES(2,'tests/27-n-DAM-aS+aS-v-lc-ln.c: (in function main)
tests/27-n-DAM-aS+aS-v-lc-ln.c:11:6: Variable p used before definition
An rvalue is used that may not be initialized to a value on some execution
path. (Use -usedef to inhibit warning)
tests/27-n-DAM-aS+aS-v-lc-ln.c:11:5: Possible out-of-bounds read: *p
Unable to resolve constraint:
requires maxRead(p @ tests/27-n-DAM-aS+aS-v-lc-ln.c:11:6) >= 0
needed to satisfy precondition:
requires maxRead(p @ tests/27-n-DAM-aS+aS-v-lc-ln.c:11:6) >= 0
A memory read references memory beyond the allocated storage. (Use
-boundsread to inhibit warning)
','97b76a92ea78edf2c66c58a919b3563e');
INSERT INTO "Output" VALUES(3,'','d41d8cd98f00b204e9800998ecf8427e');
INSERT INTO "Output" VALUES(4,'tests/ui/ui_negative.c: (in function main)
tests/ui/ui_negative.c:5:10: Variable a used before definition
An rvalue is used that may not be initialized to a value on some execution
path. (Use -usedef to inhibit warning)
','84970d802b11d7d7748ef8eb7819555a');
INSERT INTO "Output" VALUES(5,'tests/40-p-DAM-aS-D(v)-fp+fr-ln.c: (in function main)
tests/40-p-DAM-aS-D(v)-fp+fr-ln.c:9:28:
Declaration using extern inside function scope: int getVal(int *)
An extern declaration is used inside a function scope. (Use -nestedextern to
inhibit warning)
tests/40-p-DAM-aS-D(v)-fp+fr-ln.c:9:25: Declaration parameter has name: p
A parameter in a function prototype has a name. This is dangerous, since a
macro definition could be visible here. (Use either -protoparamname or
-namechecks to inhibit warning)
tests/40-p-DAM-aS-D(v)-fp+fr-ln.c:11:19:
Passed storage p not completely defined (*p is undefined): getVal (p)
Storage derivable from a parameter, return value or global is not defined.
Use /*@out@*/ to denote passed or returned storage which need not be defined.
(Use -compdef to inhibit warning)
tests/40-p-DAM-aS-D(v)-fp+fr-ln.c:7:19: Storage *p allocated
tests/40-p-DAM-aS-D(v)-fp+fr-ln.c:11:11:
Undetected modification possible from call to unconstrained function
getVal: getVal
An unconstrained function is called in a function body where modifications
are checked. Since the unconstrained function may modify anything, there may
be undetected modifications in the checked function. (Use -modunconnomods to
inhibit warning)
tests/40-p-DAM-aS-D(v)-fp+fr-ln.c:13:8: Unreachable code: return 0
This code will never be reached on any possible execution. (Use -unreachable
to inhibit warning)
','68600a4d23fcffe6e7fc20ed6326151d');
INSERT INTO "Output" VALUES(6,'tests/28-p-DAM-aS+aS-v-lc-ln.c: (in function main)
tests/28-p-DAM-aS+aS-v-lc-ln.c:12:5: Possible out-of-bounds read: *p
Unable to resolve constraint:
requires maxRead(&b @ tests/28-p-DAM-aS+aS-v-lc-ln.c:7:5) >= 0
needed to satisfy precondition:
requires maxRead(p @ tests/28-p-DAM-aS+aS-v-lc-ln.c:12:6) >= 0
A memory read references memory beyond the allocated storage. (Use
-boundsread to inhibit warning)
','dc30401b935007d382c0ef72d57028bc');
INSERT INTO "Output" VALUES(7,'tests/38-n-UI-aS-v-lc-cd.c: (in function main)
tests/38-n-UI-aS-v-lc-cd.c:10:7: Variable x used before definition
An rvalue is used that may not be initialized to a value on some execution
path. (Use -usedef to inhibit warning)
tests/38-n-UI-aS-v-lc-cd.c:10:22: Return value type char does not match
declared type int: ''\0''
A character constant is used as an int. Use +charintliteral to allow
character constants to be used as ints. (This is safe since the actual type
of a char constant is int.)
tests/38-n-UI-aS-v-lc-cd.c:10:40: Return value type char does not match
declared type int: *x
To make char and int types equivalent, use +charint.
tests/38-n-UI-aS-v-lc-cd.c:10:22: Body of if clause of if statement is not a
block: return ''\0''
If body is a single statement, not a compound block. (Use -ifblock to inhibit
warning)
tests/38-n-UI-aS-v-lc-cd.c:10:40: Body of else clause of if statement is not a
block: return *x
tests/38-n-UI-aS-v-lc-cd.c:12:8: Unreachable code: return 0
This code will never be reached on any possible execution. (Use -unreachable
to inhibit warning)
tests/38-n-UI-aS-v-lc-cd.c:10:40: Possible out-of-bounds read: *x
Unable to resolve constraint:
requires maxRead(x @ tests/38-n-UI-aS-v-lc-cd.c:10:41) >= 0
needed to satisfy precondition:
requires maxRead(x @ tests/38-n-UI-aS-v-lc-cd.c:10:41) >= 0
A memory read references memory beyond the allocated storage. (Use
-boundsread to inhibit warning)
','3e6f8ecf7a4bb2f019311102db5973ec');
INSERT INTO "Output" VALUES(8,'tests/37-n-UI-aS-v-lc-ln.c: (in function main)
tests/37-n-UI-aS-v-lc-ln.c:8:9: Variable x used before definition
An rvalue is used that may not be initialized to a value on some execution
path. (Use -usedef to inhibit warning)
tests/37-n-UI-aS-v-lc-ln.c:8:8: Return value type char does not match declared
type int: *x
To make char and int types equivalent, use +charint.
tests/37-n-UI-aS-v-lc-ln.c:10:8: Unreachable code: return 0
This code will never be reached on any possible execution. (Use -unreachable
to inhibit warning)
tests/37-n-UI-aS-v-lc-ln.c:8:8: Possible out-of-bounds read: *x
Unable to resolve constraint:
requires maxRead(x @ tests/37-n-UI-aS-v-lc-ln.c:8:9) >= 0
needed to satisfy precondition:
requires maxRead(x @ tests/37-n-UI-aS-v-lc-ln.c:8:9) >= 0
A memory read references memory beyond the allocated storage. (Use
-boundsread to inhibit warning)
','892f150069316d044f77e2544a0f3d47');
INSERT INTO "Output" VALUES(9,'tests/oob/oob_negative.c: (in function main)
tests/oob/oob_negative.c:5:2: Likely out-of-bounds store: a[1]
Unable to resolve constraint:
requires 0 >= 1
needed to satisfy precondition:
requires maxSet(a @ tests/oob/oob_negative.c:5:2) >= 1
A memory write may write to an address beyond the allocated buffer. (Use
-likelyboundswrite to inhibit warning)
','eefd18e757e1480592eea6a8925fa7ea');
INSERT INTO "Output" VALUES(10,'tests/29-n-DAM-aS+aS-v-lc-ln.c: (in function main)
tests/29-n-DAM-aS+aS-v-lc-ln.c:7:5: Variable x used before definition
An rvalue is used that may not be initialized to a value on some execution
path. (Use -usedef to inhibit warning)
','5bf17ae81f34b8d3ed0e078a3d57ccbb');
INSERT INTO "Output" VALUES(11,'tests/39-n-DAM-aS-D(v)-fp+fr-ln.c: (in function main)
tests/39-n-DAM-aS-D(v)-fp+fr-ln.c:9:28:
Declaration using extern inside function scope: int getVal(int *)
An extern declaration is used inside a function scope. (Use -nestedextern to
inhibit warning)
tests/39-n-DAM-aS-D(v)-fp+fr-ln.c:9:25: Declaration parameter has name: p
A parameter in a function prototype has a name. This is dangerous, since a
macro definition could be visible here. (Use either -protoparamname or
-namechecks to inhibit warning)
tests/39-n-DAM-aS-D(v)-fp+fr-ln.c:11:19:
Passed storage p not completely defined (*p is undefined): getVal (p)
Storage derivable from a parameter, return value or global is not defined.
Use /*@out@*/ to denote passed or returned storage which need not be defined.
(Use -compdef to inhibit warning)
tests/39-n-DAM-aS-D(v)-fp+fr-ln.c:7:15: Storage *p allocated
tests/39-n-DAM-aS-D(v)-fp+fr-ln.c:11:11:
Undetected modification possible from call to unconstrained function
getVal: getVal
An unconstrained function is called in a function body where modifications
are checked. Since the unconstrained function may modify anything, there may
be undetected modifications in the checked function. (Use -modunconnomods to
inhibit warning)
tests/39-n-DAM-aS-D(v)-fp+fr-ln.c:13:8: Unreachable code: return 0
This code will never be reached on any possible execution. (Use -unreachable
to inhibit warning)
','829dc4db9e633955fb7f5b4913998b33');
INSERT INTO "Output" VALUES(12,'tests/dam/dam_auto_negative.c: (in function main)
tests/dam/dam_auto_negative.c:11:2: Possible out-of-bounds store: *p
Unable to resolve constraint:
requires maxSet(p @ tests/dam/dam_auto_negative.c:11:3) >= 0
needed to satisfy precondition:
requires maxSet(p @ tests/dam/dam_auto_negative.c:11:3) >= 0
A memory write may write to an address beyond the allocated buffer. (Use
-boundswrite to inhibit warning)
','077df7ec347ad5129e7e0316ce2e5b1b');
INSERT INTO "Output" VALUES(13,'tests/dam/dam_auto_positive.c: (in function main)
tests/dam/dam_auto_positive.c:6:2: Possible out-of-bounds store: *p
Unable to resolve constraint:
requires maxSet(&a @ tests/dam/dam_auto_positive.c:5:6) >= 0
needed to satisfy precondition:
requires maxSet(p @ tests/dam/dam_auto_positive.c:6:3) >= 0
A memory write may write to an address beyond the allocated buffer. (Use
-boundswrite to inhibit warning)
','0ab7702fa312452b4041b973e56b2f73');
INSERT INTO "Output" VALUES(14,'tests/dam/dam_dynamic_negative.c: (in function main)
tests/dam/dam_dynamic_negative.c:11:3: Variable p used after being released
Memory is used after it has been released (either by passing as an only param
or assigning to an only global). (Use -usereleased to inhibit warning)
tests/dam/dam_dynamic_negative.c:10:7: Storage p released
','31f3414dc8e31b8cd0abd21299ec4729');
INSERT INTO "Output" VALUES(15,'tests/ip/ip_negative.c: (in function main)
tests/ip/ip_negative.c:5:2: Likely out-of-bounds store: *p
Unable to resolve constraint:
requires maxSet(-559038737) >= 0
needed to satisfy precondition:
requires maxSet(p @ tests/ip/ip_negative.c:5:3) >= 0
A memory write may write to an address beyond the allocated buffer. (Use
-likelyboundswrite to inhibit warning)
','e3daffedbdcf4cfb843e6e27a67edaad');
INSERT INTO "Output" VALUES(16,'tests/ip/ip_dynamic_negative.c: (in function main)
tests/ip/ip_dynamic_negative.c:7:3: Dereference of possibly null pointer p: *p
A possibly null pointer is dereferenced. Value is either the result of a
function which may return null (in which case, code should check it is not
null), or a global, parameter or structure field declared with the null
qualifier. (Use -nullderef to inhibit warning)
tests/ip/ip_dynamic_negative.c:6:11: Storage p may become null
','19161457b5a5f4b58cbd1b1e316a54aa');
INSERT INTO "Output" VALUES(17,'tests/ip/ip_zero_negative.c: (in function main)
tests/ip/ip_zero_negative.c:5:3: Dereference of null pointer p: *p
A possibly null pointer is dereferenced. Value is either the result of a
function which may return null (in which case, code should check it is not
null), or a global, parameter or structure field declared with the null
qualifier. (Use -nullderef to inhibit warning)
tests/ip/ip_zero_negative.c:4:11: Storage p becomes null
tests/ip/ip_zero_negative.c:5:2: Likely out-of-bounds store: *p
Unable to resolve constraint:
requires maxSet(0) >= 0
needed to satisfy precondition:
requires maxSet(p @ tests/ip/ip_zero_negative.c:5:3) >= 0
A memory write may write to an address beyond the allocated buffer. (Use
-likelyboundswrite to inhibit warning)
','d0a6d7ac61bc83c0cf7c54129abcd5fb');
INSERT INTO "Output" VALUES(18,'tests/34-p-DAM-aS-D(v)-lc-ln.c: (in function main)
tests/34-p-DAM-aS-D(v)-lc-ln.c:8:1: Possible out-of-bounds store: *p
Unable to resolve constraint:
requires maxSet(p @ tests/34-p-DAM-aS-D(v)-lc-ln.c:8:2) >= 0
needed to satisfy precondition:
requires maxSet(p @ tests/34-p-DAM-aS-D(v)-lc-ln.c:8:2) >= 0
A memory write may write to an address beyond the allocated buffer. (Use
-boundswrite to inhibit warning)
','7f4acf57f5f2dd7dc07c583b8cf52255');
COMMIT;
BEGIN TRANSACTION;
CREATE TABLE Testing (
test_id integer NOT NULL,
session_id integer NOT NULL,
output_id integer,
result text,
PRIMARY KEY (test_id, session_id)
);
INSERT INTO "Testing" VALUES(24,1,1,'exact');
INSERT INTO "Testing" VALUES(25,1,2,'exact');
INSERT INTO "Testing" VALUES(27,1,3,'nothing');
INSERT INTO "Testing" VALUES(28,1,4,'exact');
INSERT INTO "Testing" VALUES(29,1,5,'something');
INSERT INTO "Testing" VALUES(31,1,6,'exact');
INSERT INTO "Testing" VALUES(33,1,7,'exact');
INSERT INTO "Testing" VALUES(34,1,3,'nothing');
INSERT INTO "Testing" VALUES(38,1,8,'exact');
INSERT INTO "Testing" VALUES(39,1,3,'nothing');
INSERT INTO "Testing" VALUES(40,1,9,'exact');
INSERT INTO "Testing" VALUES(43,1,10,'something');
INSERT INTO "Testing" VALUES(46,1,11,'something');
INSERT INTO "Testing" VALUES(50,1,12,'exact');
INSERT INTO "Testing" VALUES(51,1,3,'nothing');
INSERT INTO "Testing" VALUES(52,1,13,'exact');
INSERT INTO "Testing" VALUES(53,1,14,'exact');
INSERT INTO "Testing" VALUES(58,1,15,'exact');
INSERT INTO "Testing" VALUES(59,1,16,'exact');
INSERT INTO "Testing" VALUES(60,1,17,'exact');
INSERT INTO "Testing" VALUES(61,1,3,'nothing');
INSERT INTO "Testing" VALUES(62,1,3,'nothing');
INSERT INTO "Testing" VALUES(63,1,3,'nothing');
INSERT INTO "Testing" VALUES(69,1,18,'exact');
COMMIT;
|
<gh_stars>1-10
CREATE USER scylla WITH PASSWORD '<PASSWORD>';
CREATE DATABASE scyla_dev;
GRANT ALL PRIVILEGES ON DATABASE scylla_dev to scylla;
|
<reponame>CSCfi/antero<filename>db_archive/sql_archive/454__alter_table_d_organisaatio_add_oppilaitostyyppi.sql
IF NOT EXISTS (
select * from INFORMATION_SCHEMA.COLUMNS
where TABLE_SCHEMA='dw' and TABLE_NAME='d_organisaatio'
and COLUMN_NAME='oppilaitostyyppi_koodi' --+ fi,sv,en
) BEGIN
ALTER TABLE dw.d_organisaatio ADD
oppilaitostyyppi_koodi varchar(5) NULL,
oppilaitostyyppi_fi nvarchar(120) NULL,
oppilaitostyyppi_sv nvarchar(120) NULL,
oppilaitostyyppi_en nvarchar(120) NULL
END
/* revert
ALTER TABLE dw.d_organisaatio DROP COLUMN
oppilaitostyyppi_koodi,
oppilaitostyyppi_fi,
oppilaitostyyppi_sv,
oppilaitostyyppi_en
--*/
|
<filename>contributions/sqliteSingle/src/sampleCompany.sql
BEGIN TRANSACTION;
INSERT INTO Department(name) VALUES("Research");
INSERT INTO Department(name) VALUES("Development" );
INSERT INTO Department(name, superdepartment) VALUES("Dev1" ,(SELECT ID FROM Department WHERE name == "Development"));
INSERT INTO Department(name, superdepartment) VALUES("Dev1.1" ,(SELECT ID FROM Department WHERE name == "Dev1"));
INSERT INTO Employee(name, address, salary, department, isManager) VALUES("Craig","Redmond","123456",(SELECT ID FROM Department WHERE name == "Research"), "TRUE");
INSERT INTO Employee(name, address, salary, department) VALUES("Erik","Utrecht","12345",(SELECT ID FROM Department WHERE name == "Research"));
INSERT INTO Employee(name, address, salary, department) VALUES("Ralf","Koblenz","1234",(SELECT ID FROM Department WHERE name == "Research"));
INSERT INTO Employee(name, address, salary, department, isManager) VALUES("Ray","Redmond","234567",(SELECT ID FROM Department WHERE name == "Development"), "TRUE");
INSERT INTO Employee(name, address, salary, department, isManager) VALUES("Klaus","Boston","23456",(SELECT ID FROM Department WHERE name == "Dev1"), "TRUE");
INSERT INTO Employee(name, address, salary, department, isManager) VALUES("Karl","Riga","2345",(SELECT ID FROM Department WHERE name == "Dev1.1"), "TRUE");
INSERT INTO Employee(name, address, salary, department) VALUES("Joe","Wifi City","2344",(SELECT ID FROM Department WHERE name == "Dev1.1"));
END TRANSACTION; |
<reponame>abread/humoreic
DROP TABLE guilds;
|
<filename>src/test/resources/sql/select/2c87939e.sql
-- file:jsonb.sql ln:1049 expect:true
select jsonb_insert('{"a": []}', '{a, 1}', '"new_value"', true)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.