text
stringlengths
6
9.38M
DROP TABLE Reviews; DROP TABLE Authors; DROP TABLE Users; DROP TABLE Articles; DROP TABLE Levels; CREATE TABLE Levels( Id SERIAL PRIMARY KEY, Access varchar(100), UNIQUE(Access) ); CREATE TABLE Users( Id SERIAL PRIMARY KEY, Name varchar(50), LastName varchar(50), Email varchar(50), Login varchar(50), Password varchar(50), CreatedAt Date, UpdatedAt Date, Enabled boolean, Sex varchar(1), Birth Date, Residence varchar(100), Education varchar(200), WorkPlace varchar(200), Position varchar(100), Passport varchar(100), IssuedBy varchar(200), AdrressReg varchar(200), AccessLevel integer REFERENCES Levels, UNIQUE(Login,Email) ); CREATE TABLE Articles( Id SERIAL PRIMARY KEY, Title varchar(100), Subject varchar(100), DontPubl boolean, PathArticle varchar(100), PathAnnotRus varchar(100), PathAnnotEng varchar(100), PathListLiter varchar(100), DateSend Date, DateAdoption Date, DatePubl Date, URL varchar(100), UNIQUE(Title) ); CREATE TABLE Reviews( Id SERIAL PRIMARY KEY, IdUser Integer REFERENCES Users, IdArticle Integer REFERENCES Articles, PathReview varchar(100), DateOfReceipt Date, DateReview Date ); CREATE TABLE Authors( Id SERIAL PRIMARY KEY, IdUser Integer REFERENCES Users, IdArticle Integer REFERENCES Articles );
SELECT TOP 400000 sp.specObjID,sp.objID,sp.ra,sp.dec,sp.z,sp.modelMag_u,sp.modelMag_g,sp.modelMag_r,sp.modelMag_i,sp.modelMag_z,sp.extinction_u,sp.extinction_g,sp.extinction_r,sp.extinction_i,sp.extinction_z FROM SpecPhotoAll AS sp WHERE sp.objType = 0 AND sp.sciencePrimary > 0 AND sp.z < 0.1 AND sp.objID IS NOT NULL ORDER BY sp.specObjID
-- phpMyAdmin SQL Dump -- version 4.7.9 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Waktu pembuatan: 11 Agu 2020 pada 08.41 -- Versi server: 10.1.31-MariaDB -- Versi PHP: 7.1.15 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: `dbpethotel` -- -- -------------------------------------------------------- -- -- Struktur dari tabel `admins` -- CREATE TABLE `admins` ( `id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `password` varchar(100) NOT NULL, `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `admins` -- INSERT INTO `admins` (`id`, `name`, `email`, `password`, `created_at`, `updated_at`) VALUES (1, 'adminari', 'ariardiansyah@gmail.com', '$2y$10$gYe3iQ6onFj8R8rnazEt.OfEvAgNFHf.5X3KvI8dNcpIGeYTW0aXG', '2020-07-28 12:34:28', '2020-07-28 12:34:28'), (2, 'adminjeki', 'priyazakharias@gmail.com', '$2y$10$Vwd4w8Se/Y07z60w758dxuQmc8QeqUvaZWtEY.Tf5.A7Tdt.lOdo.', '2020-08-07 21:05:54', '2020-08-07 14:05:54'); -- -------------------------------------------------------- -- -- Struktur dari tabel `bookings` -- CREATE TABLE `bookings` ( `id` int(11) NOT NULL, `kode_booking` int(11) NOT NULL, `member_id` int(11) NOT NULL, `kandang_id` int(11) NOT NULL, `tgl_checkin` datetime NOT NULL, `lama_inap` int(3) NOT NULL, `total_harga` varchar(255) NOT NULL, `status` varchar(255) NOT NULL, `updated_at` datetime NOT NULL, `created_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `kandangs` -- CREATE TABLE `kandangs` ( `id` int(11) NOT NULL, `pethotel_id` int(11) NOT NULL, `type_id` int(11) NOT NULL, `deskripsi` varchar(255) NOT NULL, `harga` bigint(20) NOT NULL, `jumlah_kandang` int(30) NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `kandangs` -- INSERT INTO `kandangs` (`id`, `pethotel_id`, `type_id`, `deskripsi`, `harga`, `jumlah_kandang`, `created_at`, `updated_at`) VALUES (1, 2, 10, 'ajjbciscjbsciwcisjb', 50000, 10, '2020-08-11 00:00:00', '2020-08-11 00:00:00'), (2, 2, 12, 'sojhdcwjjcwiscjgijds', 70000, 10, '2020-08-11 00:00:00', '2020-08-11 00:00:00'); -- -------------------------------------------------------- -- -- Struktur dari tabel `members` -- CREATE TABLE `members` ( `id` int(11) NOT NULL, `nama` varchar(100) NOT NULL, `email` varchar(100) NOT NULL, `password` varchar(100) NOT NULL, `no_hp` varchar(20) NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Struktur dari tabel `pethotels` -- CREATE TABLE `pethotels` ( `id` int(10) NOT NULL, `email` varchar(255) NOT NULL, `password` varchar(255) NOT NULL, `nama_pemilik` varchar(100) NOT NULL, `jenis_kelamin` varchar(40) NOT NULL, `foto_ktp` varchar(255) NOT NULL, `nama_pethotel` varchar(50) NOT NULL, `alamat_pethotel` text NOT NULL, `telp` varchar(25) NOT NULL, `foto` varchar(255) NOT NULL, `foto2` varchar(255) NOT NULL, `kategori_pethotel` varchar(100) NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `pethotels` -- INSERT INTO `pethotels` (`id`, `email`, `password`, `nama_pemilik`, `jenis_kelamin`, `foto_ktp`, `nama_pethotel`, `alamat_pethotel`, `telp`, `foto`, `foto2`, `kategori_pethotel`, `created_at`, `updated_at`) VALUES (2, 'coko@gmail.com', '$2y$10$MxV8Istqd4G9xv4IjFgbGerUCb/gKQlhsFhhvqlYm3fO4LziR06GC', 'Teddy', 'L', 'public/gambar/VUjbqaN3QH0Wiaq8dfQR2cLnbnmIvIKjudxSzMOm.jpeg', 'Coko PetShop', 'Paal Merah', '081280107534', 'public/gambar/VUjbqaN3QH0Wiaq8dfQR2cLnbnmIvIKjudxSzMOm.jpeg', 'public/gambar/VUjbqaN3QH0Wiaq8dfQR2cLnbnmIvIKjudxSzMOm.jpeg', 'Pet Hotel Anjing&Kucing', '2020-08-09 15:43:47', '2020-08-11 06:22:07'), (3, 'kimby@gmail.com', '$2y$10$K2IiTXwsYNnRAmE.Cmi8XeYy6SHTNDBotWUMx6frmkBgPN/b4zoQq', 'Coko', 'L', 'public/gambar/66Dpaq9anSlKE1AbRNQfW9xbERmMcadP4Bnzf0K2.jpeg', 'Teddy PetShop', 'Tehok', '0812123456', 'public/gambar/66Dpaq9anSlKE1AbRNQfW9xbERmMcadP4Bnzf0K2.jpeg', 'public/gambar/66Dpaq9anSlKE1AbRNQfW9xbERmMcadP4Bnzf0K2.jpeg', 'Pet Hotel Anjing', '2020-08-09 15:45:47', '2020-08-09 15:45:47'); -- -------------------------------------------------------- -- -- Struktur dari tabel `profils` -- CREATE TABLE `profils` ( `id` int(11) NOT NULL, `nama` varchar(255) NOT NULL, `gambar` varchar(255) NOT NULL, `telp` varchar(255) NOT NULL, `alamat` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `created_at` date NOT NULL, `updated_at` date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `types` -- CREATE TABLE `types` ( `id` int(11) NOT NULL, `nama_type` varchar(50) NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `types` -- INSERT INTO `types` (`id`, `nama_type`, `created_at`, `updated_at`) VALUES (10, 'Anjing Ras Kecil', '2020-08-04 00:00:00', '2020-08-04 00:00:00'), (12, 'Anjing Ras Besar', '2020-08-04 00:00:00', '2020-08-04 00:00:00'), (13, 'Kucing All Ras', '2020-08-04 00:00:00', '2020-08-04 00:00:00'); -- -------------------------------------------------------- -- -- Struktur dari tabel `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(255) 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 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data untuk tabel `users` -- INSERT INTO `users` (`id`, `name`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES (1, 'admin', 'admin@gmail.com', NULL, '$2y$10$LlACb5nrAYV5Uhx/wBp9NeH3ZALfl9vDrD4WpdN3iIkSQGkt5EkIa', NULL, '2020-07-20 22:38:44', '2020-07-20 22:38:44'); -- -- Indexes for dumped tables -- -- -- Indeks untuk tabel `admins` -- ALTER TABLE `admins` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `bookings` -- ALTER TABLE `bookings` ADD PRIMARY KEY (`id`), ADD KEY `member_id` (`member_id`), ADD KEY `kandang_id` (`kandang_id`); -- -- Indeks untuk tabel `kandangs` -- ALTER TABLE `kandangs` ADD PRIMARY KEY (`id`), ADD KEY `id` (`pethotel_id`), ADD KEY `type_id` (`type_id`); -- -- Indeks untuk tabel `members` -- ALTER TABLE `members` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `pethotels` -- ALTER TABLE `pethotels` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `profils` -- ALTER TABLE `profils` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `types` -- ALTER TABLE `types` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT untuk tabel yang dibuang -- -- -- AUTO_INCREMENT untuk tabel `admins` -- ALTER TABLE `admins` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT untuk tabel `bookings` -- ALTER TABLE `bookings` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `kandangs` -- ALTER TABLE `kandangs` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT untuk tabel `members` -- ALTER TABLE `members` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `pethotels` -- ALTER TABLE `pethotels` MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT untuk tabel `profils` -- ALTER TABLE `profils` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `types` -- ALTER TABLE `types` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14; -- -- AUTO_INCREMENT untuk tabel `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables) -- -- -- Ketidakleluasaan untuk tabel `bookings` -- ALTER TABLE `bookings` ADD CONSTRAINT `fk_kandang_booking` FOREIGN KEY (`kandang_id`) REFERENCES `kandangs` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `fk_member_booking` FOREIGN KEY (`member_id`) REFERENCES `members` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Ketidakleluasaan untuk tabel `kandangs` -- ALTER TABLE `kandangs` ADD CONSTRAINT `fk_kandang_pethotel` FOREIGN KEY (`pethotel_id`) REFERENCES `pethotels` (`id`), ADD CONSTRAINT `fk_kandang_type` FOREIGN KEY (`type_id`) REFERENCES `types` (`id`); 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 */;
SET @ATABLE=''; SET @PRESENTATION_ID='DDDCB1FBC05FA143495A3E7385B1392B'; SELECT P.TABLE_NAME INTO @ATABLE FROM PRESENTATIONS P WHERE P.PRESENTATION_ID=@PRESENTATION_ID; SET @SQLS=CONCAT('DROP TABLE IF EXISTS ',@ATABLE); PREPARE stmt FROM @SQLS; EXECUTE stmt; DEALLOCATE PREPARE stmt; SELECT PC.COLUMN_ID, C.NAME FROM PRESENTATION_COLUMNS PC JOIN COLUMNS C ON C.COLUMN_ID=PC.COLUMN_ID WHERE PC.PRESENTATION_ID=@PRESENTATION_ID ORDER BY PC.PRIORITY;
/****** Object: StoredProcedure [dbo].[prc_CWI_SetGroup] Script Date: 4/25/2013 2:38:38 PM ******/ IF EXISTS (SELECT * FROM sys.objects WHERE type = 'P' AND name = 'prc_CWI_SetGroup') DROP PROCEDURE [dbo].[prc_CWI_SetGroup] GO /****** Object: StoredProcedure [dbo].[prc_CWI_SetGroup] Script Date: 4/25/2013 2:38:38 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO /******************************************************************* * PROCEDURE: prc_CWI_SetGroup * Purpose : This PROC would be called TO insert the group in to the group table * Invoked from : Groups.aspx * CREATED: MohanKumar Sundaram * MODIFICATION HISTORY * DATE AUTHOR DESCRIPTION ********************************************************************** Execution example : ********************************************************************** declare @gid int exec prc_CWI_SetGroup @group='IDC', @author = 'oss\msundaram', @groupid =@gid output select @gid **********************************************************************/ CREATE PROCEDURE [dbo].[prc_CWI_SetGroup] @group varchar(max), @author varchar(max) = '', --used to insert for createdby column @groupId int = NULL OUTPUT AS SELECT @groupId = Id From CWI_Group WHERE GroupName = @group IF @groupId IS NULL BEGIN INSERT INTO [dbo].[CWI_Group] ([GroupName] ,[IsActive] ,[CreatedBy] ,[CreatedOn] ,[ModifiedBy] ,[ModifiedOn]) VALUES ( @group, 1, @author, GETDATE(), @author, GETDATE() ) SET @groupId = SCOPE_IDENTITY() END GO
alter table ore_calcs add column ore_settings text;
/* Name: Amount of searches saved per day Data source: 4 Created By: Admin Last Update At: 2016-02-29T20:49:02.601179+00:00 */ SELECT string(STRFTIME_UTC_USEC(DATE(date_time), "%m/%d/%Y")) AS date, count(*) AS Save_count FROM (TABLE_QUERY(djomniture:cipomniture_djmansionglobal,'CONCAT(REPLACE(table_id,"_","-"),"-01") BETWEEN STRFTIME_UTC_USEC("{{startdate}}", "%Y-%m-01") and STRFTIME_UTC_USEC("{{enddate}}", "%Y-%m-31")')) WHERE date(date_time) > date('2016-02-02') AND post_page_event = "100" AND DATE(date_time) >= DATE('{{startdate}}') AND DATE(date_time) <= DATE('{{enddate}}') AND (post_prop25 = "searchSaved") GROUP BY date
select distinct A.airline_name from airline_codes A, (select F.airline_code from flight_reports F where F.dest_city_name = 'Boston, MA' and F.is_cancelled = 0.00 and F.year > 2017 intersect select F.airline_code from flight_reports F where F.dest_city_name = 'New York, NY' and F.is_cancelled = 0.00 and F.year > 2017 intersect select F.airline_code from flight_reports F where F.dest_city_name = 'Portland, ME' and F.is_cancelled = 0.00 and F.year > 2017 intersect select F.airline_code from flight_reports F where F.dest_city_name = 'Washington, DC' and F.is_cancelled = 0.00 and F.year > 2017 intersect select F.airline_code from flight_reports F where F.dest_city_name = 'Philadelphia, PA' and F.is_cancelled = 0.00 and F.year > 2017 ) as intersectTable where A.airline_code = intersectTable.airline_code except select distinct A2.airline_name from airline_codes A2 , (select F.airline_code from flight_reports F where F.dest_city_name = 'Boston, MA' and F.is_cancelled = 0.00 and F.year < 2018 intersect select F.airline_code from flight_reports F where F.dest_city_name = 'New York, NY' and F.is_cancelled = 0.00 and F.year < 2018 intersect select F.airline_code from flight_reports F where F.dest_city_name = 'Portland, ME' and F.is_cancelled = 0.00 and F.year < 2018 intersect select F.airline_code from flight_reports F where F.dest_city_name = 'Washington, DC' and F.is_cancelled = 0.00 and F.year < 2018 intersect select F.airline_code from flight_reports F where F.dest_city_name = 'Philadelphia, PA' and F.is_cancelled = 0.00 and F.year < 2018 ) as unionTable where A2.airline_code = unionTable.airline_code order by airline_name asc;
USE `smartdata`; DROP TABLE IF EXISTS auth_admin; DROP TABLE IF EXISTS auth_function; DROP TABLE IF EXISTS auth_menu; DROP TABLE IF EXISTS auth_permission; DROP TABLE IF EXISTS auth_role; DROP TABLE IF EXISTS auth_role_permission; DROP TABLE IF EXISTS auth_user; DROP TABLE IF EXISTS auth_user_role; CREATE TABLE `auth_admin` ( `id` DOUBLE unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `user_id` DOUBLE DEFAULT NULL COMMENT '用户id', `admin_name` VARCHAR(80) DEFAULT NULL COMMENT '名称', `email` VARCHAR(200) DEFAULT NULL COMMENT '邮箱', `tel` VARCHAR(60) DEFAULT NULL COMMENT '电话', `depart_id` DOUBLE DEFAULT NULL COMMENT '部门id(废弃)', `job_no` VARCHAR(60) DEFAULT NULL COMMENT '工号', `role_type` DOUBLE DEFAULT NULL COMMENT '类型:1,其他人员, 2,管理员 3,商务 4,运营人员', PRIMARY KEY (`id`), UNIQUE KEY `uniq_admin_pk` (`id`) ) ENGINE=INNODB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='管理员表'; CREATE TABLE `auth_function` ( `id` DOUBLE unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `parent_id` DOUBLE DEFAULT NULL COMMENT '父功能点id', `function_name` VARCHAR(128) DEFAULT NULL COMMENT '功能名称', `function_index` DOUBLE DEFAULT NULL COMMENT '排序索引', PRIMARY KEY (`id`), UNIQUE KEY `uniq_function_pk` (`id`) ) ENGINE=INNODB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='功能点表'; CREATE TABLE `auth_menu` ( `id` DOUBLE unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `permission` VARCHAR(400) DEFAULT NULL COMMENT '权限id', `parent_id` DOUBLE DEFAULT NULL COMMENT '父菜单id', `menu_name` VARCHAR(400) DEFAULT NULL COMMENT '菜单名称', `url` VARCHAR(800) DEFAULT NULL COMMENT '菜单url', `menu_index` DOUBLE DEFAULT NULL COMMENT '排序索引', `create_time` DATETIME DEFAULT NULL COMMENT '创建时间', PRIMARY KEY (`id`), UNIQUE KEY `uniq_menu_pk` (`id`) ) ENGINE=INNODB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='菜单表'; CREATE TABLE `auth_permission` ( `id` BIGINT(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `permission` VARCHAR(400) DEFAULT NULL COMMENT '权限', `permission_name` VARCHAR(400) DEFAULT NULL COMMENT '权限名称', `function_id` DOUBLE DEFAULT NULL COMMENT '功能id', `create_time` DATETIME DEFAULT NULL COMMENT '创建时间', PRIMARY KEY (`id`) ) ENGINE=INNODB DEFAULT CHARSET=utf8 COMMENT='权限表'; CREATE TABLE `auth_role` ( `id` DOUBLE unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `role_name` VARCHAR(128) DEFAULT NULL COMMENT '角色名称', `create_time` DATETIME DEFAULT NULL COMMENT '创建时间', PRIMARY KEY (`id`), UNIQUE KEY `uniq_role_pk` (`id`) ) ENGINE=INNODB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='角色表'; CREATE TABLE `auth_role_permission` ( `id` DOUBLE unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `role_id` DOUBLE DEFAULT NULL COMMENT '角色id', `permission` VARCHAR(400) DEFAULT NULL COMMENT '权限id', PRIMARY KEY (`id`), UNIQUE KEY `uniq_role_permission_pk` (`id`) ) ENGINE=INNODB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='角色权限关系表'; CREATE TABLE `auth_user` ( `id` DOUBLE unsigned NOT NULL AUTO_INCREMENT COMMENT '用户id', `username` VARCHAR(200) DEFAULT NULL COMMENT '用户名称', `passwd` VARCHAR(200) DEFAULT NULL COMMENT '密码', `user_status` VARCHAR(8) DEFAULT NULL COMMENT '用户状态', `user_type` VARCHAR(8) DEFAULT NULL COMMENT '用户类型', `create_time` DATETIME DEFAULT NULL COMMENT '创建时间', `locale` VARCHAR(10) DEFAULT NULL COMMENT '语言(废弃)', PRIMARY KEY (`id`), UNIQUE KEY `uniq_user_uk1` (`username`) ) ENGINE=INNODB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='用户基本信息表'; CREATE TABLE `auth_user_role` ( `id` DOUBLE unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `user_id` DOUBLE DEFAULT NULL COMMENT '用户id', `role_id` DOUBLE DEFAULT NULL COMMENT '角色id', PRIMARY KEY (`id`), UNIQUE KEY `uniq_user_role_pk` (`id`) ) ENGINE=INNODB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='用户角色关系表';
-- phpMyAdmin SQL Dump -- version 4.8.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Jan 11, 2019 at 07:45 AM -- Server version: 10.1.33-MariaDB -- PHP Version: 7.2.6 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: `pets_db` -- -- -------------------------------------------------------- -- -- Table structure for table `pets` -- CREATE TABLE `pets` ( `id` int(11) NOT NULL, `name` varchar(30) NOT NULL, `species` varchar(20) NOT NULL, `gender` int(1) NOT NULL, `birth` date DEFAULT NULL, `picture` varchar(100) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `pets` -- INSERT INTO `pets` (`id`, `name`, `species`, `gender`, `birth`, `picture`) VALUES (1, 'Bunny', 'Kelinci', 1, '2016-09-06', '/demo_pets/pets_picture/1.jpeg'), (2, 'Doggy', 'Anjing', 1, '2014-12-06', '/demo_pets/pets_picture/2.jpeg'), (6, 'Mira', 'Kucing', 1, '2017-01-06', '/demo_pets/pets_picture/6.jpeg'), (9, 'Tayo', 'Kucing', 2, '2001-06-02', '/demo_pets/pets_picture/9.jpeg'); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` int(11) NOT NULL, `name` varchar(30) NOT NULL, `email` varchar(50) NOT NULL, `password` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `email`, `password`) VALUES (1, 'Ferdy', 'ferdy@mail.com', '$2y$10$bVxEftPUf58QuMR8RUoQmuUZVsmu.4bybkEO.zEoRiGDals/ptaKi'), (2, 'Hendri', 'hen@mail.com', '$2y$10$B1xtqnJtZWl7e7m7xlWUJeJ.ykJYfTN5CQJqxj4WsV2sznVfihUl6'), (3, 'Jamil', 'jam@mail.com', '$2y$10$fSjc.Z6jSCuuQovXlW8skuhLN5ryx27pOd7j5kbcjdM9XYdqcCa9.'); -- -- Indexes for dumped tables -- -- -- Indexes for table `pets` -- ALTER TABLE `pets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `pets` -- ALTER TABLE `pets` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` 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 */;
create or replace view v_czcs020_dtjk_bxbd as ( select de181, to_char(de001,'yyyy-mm-dd') as de001,jsde303,jsde329,de011,de022 from v_czcs020 where instr(jsde335, '加油站') = 0 and instr(jsde335, '售票处') = 0 and instr(jsde335, '发行社') = 0 and jsde328 not in ('007') and de181 > 5000 union select sum(de181) as de181, to_char(de001,'yyyy-mm-dd') as de001, max(jsde303), jsde329, de011, de022 from v_czcs020 where instr(jsde335, '加油站') = 0 and instr(jsde335, '售票处') = 0 and instr(jsde335, '发行社') = 0 and jsde328 not in ('007') --and de181 <= 5000 group by to_char(de001,'yyyy-mm-dd'), jsde329,de011,de022 having sum(de181) > 10000 );
CREATE PROCEDURE [actual].[pDel_problem] AS TRUNCATE TABLE [actual].[problem]
CREATE OR REPLACE FUNCTION WXHF_GET_ONWAY_INFO_arc (IP_ISMI VARCHAR2)RETURN VARCHAR2 IS js json_list; BEGIN js:=json_dyn.executeList(' SELECT so.co_nbr,so.so_nbr,so.serv_inst_id,muri.icc_id FROM HBWH_OSS_ADMIN.MID_UIM_RES_INFO MURI, SO_MAIN_PROD_PRPTY_arc PRP, so_main_prod_arc smp, so_arc so WHERE MURI.IMSI = '''||IP_ISMI||''' AND MURI.ICC_ID = PRP.SPEC_PRPTY_VALUE and smp.so_main_prod_id=prp.so_main_prod_id and smp.sts=''A'' and prp.sts=''A'' and smp.no_flag=''A'' and smp.so_nbr=so.so_nbr and so.sts=''A'' AND PRP.SPEC_PRPTY_ID = ''800'''); return js.to_char(); END; /
--Get a list of all the orders processed with category name (as an input parameter) *not implemented yet --Get the product name , count of orders processed SELECT ProductName ,Count(Id) Orders FROM ( SELECT p.ProductName ,o.Id FROM [Order] o JOIN OrderDetail od on od.OrderId = o.Id JOIN Product p on p.Id = od.ProductId ) GROUP BY ProductName ORDER BY 2 desc --Get the list of the months which don’t have any orders WITH recursive cnt(x) AS ( SELECT 0 UNION all SELECT x+1 FROM cnt LIMIT (SELECT ( ( julianday((SELECT substr(Max(OrderDate),1,10) FROM [Order])) - julianday((SELECT substr(Min(OrderDate),1,10) FROM [Order])) ) ) + 1 ) ) SELECT a.* ,b.* FROM ( SELECT strftime('%Y-%m',date(julianday((SELECT substr(Min(OrderDate),1,10) FROM [Order])), '+' || x || ' days')) as date FROM cnt a GROUP BY strftime('%Y-%m',date(julianday((SELECT substr(Min(OrderDate),1,10) FROM [Order])), '+' || x || ' days')) ) a LEFT JOIN ( SELECT substr(OrderDate,1,7) as OrderDate FROM [Order] Group BY substr(OrderDate,1,7) ) b on b.OrderDate = a.date WHERE b.OrderDate is null --Get the top 3 products which have the most orders SELECT od.ProductId ,p.ProductName ,Count(od.Quantity) as SumOfQuantity FROM OrderDetail od JOIN Product p on p.Id = od.ProductId GROUP BY od.ProductId ORDER BY 3 desc LIMIT 3; --Get the list of the months which don’t have any orders for product chai WITH recursive cnt(x) AS ( SELECT 0 UNION all SELECT x+1 FROM cnt LIMIT (SELECT ( ( julianday((SELECT substr(Max(OrderDate),1,10) FROM [Order])) - julianday((SELECT substr(Min(OrderDate),1,10) FROM [Order])) ) ) + 1 ) ) SELECT a.* ,b.* FROM ( SELECT strftime('%Y-%m',date(julianday((SELECT substr(Min(OrderDate),1,10) FROM [Order])), '+' || x || ' days')) as date FROM cnt a GROUP BY strftime('%Y-%m',date(julianday((SELECT substr(Min(OrderDate),1,10) FROM [Order])), '+' || x || ' days')) ) a LEFT JOIN ( SELECT substr(o.OrderDate,1,7) as OrderDate FROM [Order] o JOIN OrderDetail od on od.OrderId = o.Id JOIN Product p on p.Id = od.ProductId and p.ProductName = 'Chai' Group BY substr(o.OrderDate,1,7) ) b on b.OrderDate = a.date WHERE b.OrderDate is null --Get the list of the products which don’t have any orders across all the months and year as SELECT * FROM Product a LEFT OUTER JOIN ( SELECT ProductId FROM OrderDetail GROUP BY ProductId ) b on b.ProductId = a.Id WHERE b.ProductId is null --Get the list of employees who processed orders for the product chai SELECT * FROM Employee e JOIN ( SELECT o.EmployeeId FROM [Order] o JOIN OrderDetail od on od.OrderId = o.Id JOIN Product p on p.Id = od.ProductId and p.ProductName = 'Chai' GROUP BY o.EmployeeId ) b on b.EmployeeId = e.Id --Get the list of employees and the count of orders they processed in the month of march across all years SELECT Max(e.LastName) LastName ,Max(e.FirstName) FirstName ,Count(o.Id) CountOfOrders --,Count(Case when substr(o.OrderDate,1,4) = '2012' then o.Id end) as [2012 Orders] --,Count(Case when substr(o.OrderDate,1,4) = '2013' then o.Id end) as [2013 Orders] --,Count(Case when substr(o.OrderDate,1,4) = '2014' then o.Id end) as [2014 Orders] --,Count(Case when substr(o.OrderDate,1,4) = '2015' then o.Id end) as [2015 Orders] --,Count(Case when substr(o.OrderDate,1,4) = '2016' then o.Id end) as [2016 Orders] FROM [Order] o JOIN Employee e on e.Id = o.EmployeeId WHERE substr(o.OrderDate,6,2) = '03' GROUP BY o.EmployeeId ORDER BY 3 desc --Get the list of employees who processed the orders that belong to the city in which they live SELECT e.LastName ,e.FirstName FROM [Order] o JOIN Employee e on e.Id = o.EmployeeId and e.City = o.ShipCity GROUP BY e.LastName ,e.FirstName --Get the list of employees who processed the orders that don’t belong to the city in which they live SELECT e.LastName ,e.FirstName FROM [Order] o JOIN Employee e on e.Id = o.EmployeeId and e.City <> o.ShipCity GROUP BY e.LastName ,e.FirstName --Get the shipping companies that processed ordersfor the category Seafood SELECT max(S.CompanyName) CompanyName FROM [Order] o JOIN OrderDetail od on od.OrderId = o.Id JOIN Product p on p.Id = od.ProductId JOIN Category c on c.Id = p.CategoryId and c.CategoryName = 'Seafood' JOIN Shipper s on s.Id = o.ShipVia GROUP BY s.Id --Get the category name and count of orders processed by employees in the USA SELECT CategoryName ,Count(Id) as Orders FROM ( SELECT c.CategoryName ,o.Id FROM [Order] o JOIN OrderDetail od on od.OrderId = o.Id JOIN Product p on p.Id = od.ProductId JOIN Category c on c.Id = p.CategoryId JOIN Employee e on e.Id = o.EmployeeId and e.Country = 'USA' GROUP BY c.CategoryName ,o.Id )
-- Create table create schema userapi; create table users ( id BIGSERIAL PRIMARY KEY, email text, password text, createdtime time, updatetime time, token text);
CREATE TABLE favorite ( id bigint NOT NULL IDENTITY, page varchar(255) DEFAULT NULL, userId varchar(255) DEFAULT NULL, sort int DEFAULT NULL ); CREATE TABLE user_favorites ( userId varchar(255) NOT NULL, shareId varchar(255) DEFAULT NULL ); INSERT INTO user_favorites VALUES ('206563d4-34c3-4368-a586-31032416173f','713z63d4-34c3-4368-a586-310qpa16173f'),('730263d4-34c3-4218-z586-30371516173f','713z63d4-34c3-4368-a586-31193796173f'); INSERT INTO favorite VALUES (null,'/content/australia/page1','206563d4-34c3-4368-a586-31032416173f',3), (null,'/content/australia/page2','206563d4-34c3-4368-a586-31032416173f',0), (null,'/content/australia/page3','206563d4-34c3-4368-a586-31032416173f',1), (null,'/content/australia/page4','206563d4-34c3-4368-a586-31032416173f',2);
--4.1 select select * from CHUNHAN select * from CONGNHAN select * from THIETKE select * from THAMGIA select * from KIENTRUCSU select a. * from CHUNHAN a --tao alias select a.MSCH, a.TENCHU from CHUNHAN a select b.DIACHITHAU, b.DIENTHOAI, b.MSCT, b.TENTHAU from CHUTHAU b select b.DIACHITHAU, b.DIENTHOAI, b.MSCT, b.TENTHAU,'TC'+ convert(varchar, b.MSCT) KIHIEU from CHUTHAU b --4.2 distinct select a.PHAI from CHUNHAN a select distinct a.PHAI from CHUNHAN a --loc nhung du lieu trung lap select distinct a.CHUYENMON from CONGNHAN a --4.3 where select * from CHUNHAN where DIACHICHU = '85 Mau Than' --4.4 and, or select DIACHICHU, MSCH from CHUNHAN where DIACHICHU LIKE '%o%' and MSCH=001 select MSCH, TENCHU, DIACHICHU from CHUNHAN where DIACHICHU LIKE '%o%' and TENCHU like '%g' or MSCH=001 select MSCH, TENCHU, DIACHICHU from CHUNHAN where TENCHU like '%g' and MSCH=001 or DIACHICHU LIKE '%o%' select MSCH, TENCHU, DIACHICHU from CHUNHAN where DIACHICHU LIKE '%o%' and MSCH=001 or TENCHU like '%g' select MSCH, TENCHU, DIACHICHU from CHUNHAN where (DIACHICHU LIKE '%o%' or DIACHICHU LIKE '%h') and MSCH=001 --4.5 in select * from CHUNHAN where DIACHICHU in ('54 Xo Viet Nghe Tinh', '29 Nguyen Van Troi') --4.6 between select * from CHUNHAN where MSCH between 4 and 10 --4.7 wildcard select NGAYSINH from CONGNHAN where NGAYSINH like '%_%' --4.8 like select HOTENCN from CONGNHAN where HOTENCN like 'L%' --4.9 order by select HOTENCN from CONGNHAN order by HOTENCN asc --tang dan select HOTENCN from CONGNHAN order by HOTENCN select HOTENCN from CONGNHAN order by HOTENCN desc --giam dan --4.10 group by select MSKTS, sum(STTCT) [SUM] from THIETKE group by MSKTS select MSKTS, avg(STTCT) [AGV] from THIETKE group by MSKTS select MSKTS, count(STTCT) [COUNT] from THIETKE group by MSKTS select MSKTS, min (STTCT) [MIN] from THIETKE group by MSKTS select MSKTS, max(STTCT) [MAX] from THIETKE group by MSKTS select MSKTS, sum(STTCT), count(STTCT), min (STTCT), max(STTCT), avg(STTCT) from THIETKE group by MSKTS --4.11 having select MSKTS, sum(STTCT), count(STTCT), min (STTCT), max(STTCT), avg(STTCT) from THIETKE group by MSKTS having sum(STTCT) >= 15 --5.1 insert into insert into CONGNHAN(MSCN, HOTENCN, NGAYSINH, PHAI, CHUYENMON) values ('016', 'Nguyen Ngoc Huyen', 1995-09-17, 'Nu', 'may') --5.2 insert into select insert into KIENTRUCSU(MSKTS, HOTENKTS, NGAYSINH, PHAI, NOITN, DIACHIKTS ) select MSCN, HOTENCN, NGAYSINH, '0', 'Ha Noi', '34 Mau Than-Can Tho' from CONGNHAN where MSCN = '011' --6 update update THIETKE set THULAO = THULAO*2 where STTCT = '6' select * from THIETKE --7 delete delete THIETKE where THULAO = '6' select * from THIETKE --8.1 count select count(THULAO) [COUNT] from THIETKE --8.2 sum select sum(THULAO) [SUM] from THIETKE --8.3 avg select avg(THULAO) [AVG] from THIETKE --8.4 min select min(THULAO) [MIN] from THIETKE --8.5 max select max(THULAO) [MAX] from THIETKE --9.1 join select MSCN, NGAYTG, SONGAY from THAMGIA join THIETKE on THAMGIA.STTCT=THIETKE.STTCT --9.2 left join select MSCN, NGAYTG, SONGAY from THAMGIA left join THIETKE on THAMGIA.STTCT=THIETKE.STTCT --9.3 right join select MSCN, NGAYTG, SONGAY from THAMGIA right join THIETKE on THAMGIA.STTCT=THIETKE.STTCT --9.4 full join select MSCN, NGAYTG, SONGAY from THAMGIA full join THIETKE on THAMGIA.STTCT=THIETKE.STTCT --10.1 Subquery trong mệnh đề Where select b.DIACHITHAU, b.DIENTHOAI, b.MSCT, b.TENTHAU from CHUTHAU b Where b.MSCT In (Select c.MSCT From CHUTHAU c Where c.TENTHAU like '%B%' --10.2 Subquery trong mệnh đề From select a.STTCT, a.MSCN, a.NGAYTG, a.SONGAY from THAMGIA a, (select b.STTCT, sum(b.THULAO) [SUM] from THIETKE b group by b.STTCT) c where a.STTCT=c.STTCT select * from THIETKE --10.3 Subquery trong mệnh đề select select a.STTCT, a.MSCN, a.NGAYTG, a.SONGAY, (select sum(b.THULAO) from THIETKE b where a.STTCT=b.STTCT) [MAX] from THAMGIA a
/* SQLyog Community v13.1.1 (64 bit) MySQL - 10.1.36-MariaDB : Database - os baza ********************************************************************* */ /*!40101 SET NAMES utf8 */; /*!40101 SET SQL_MODE=''*/; /*!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 */; CREATE DATABASE /*!32312 IF NOT EXISTS*/`os baza` /*!40100 DEFAULT CHARACTER SET utf8 */; USE `os baza`; /*Table structure for table `city` */ DROP TABLE IF EXISTS `city`; CREATE TABLE `city` ( `zip_code` varchar(5) NOT NULL, `city_name` varchar(20) DEFAULT NULL, PRIMARY KEY (`zip_code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `city` */ insert into `city`(`zip_code`,`city_name`) values ('11000','Beograd'), ('14000','Valjevo'), ('18101','Niš'), ('19000','Zaječar'), ('21000','Novi Sad'), ('24000','Subotica'), ('34000','Kragujevac'), ('36000','Kraljevo'); /*Table structure for table `club` */ DROP TABLE IF EXISTS `club`; CREATE TABLE `club` ( `club_registration_number` varchar(7) NOT NULL, `club_name` varchar(50) NOT NULL, `club_adress` varchar(50) NOT NULL, `number_of_wins_match` int(11) DEFAULT '0', `number_of_wins_tournament` int(11) DEFAULT '0', `city` varchar(5) NOT NULL, PRIMARY KEY (`club_registration_number`), KEY `fk_grad-klub` (`city`), CONSTRAINT `fk_grad-klub` FOREIGN KEY (`city`) REFERENCES `city` (`zip_code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `club` */ insert into `club`(`club_registration_number`,`club_name`,`club_adress`,`number_of_wins_match`,`number_of_wins_tournament`,`city`) values ('0000010','Blok Aut','Jurija Gagarina 168',2,1,'11000'), ('0000011','Roda','Mirijevski Bulevar bb',0,0,'11000'), ('0000022','As Batajnica','Ulica SG Mitraljete 57',3,1,'11000'), ('0000033','Crvena Zvezda','Marka Kraljevića 27',5,2,'11000'), ('0000034','Šumadija 34','Šumadijska 4',0,0,'34000'), ('0000044','Radnički Kragujevac','Save Kovačevića 33',0,0,'34000'), ('0000055','Partizan','Partizanske Avijacije 136',3,1,'11000'), ('0000066','Vojvodina NS','Zmaj Jovina 65',0,0,'21000'), ('0000077','Srbijanka 014','Valjevske kapije 128',0,0,'14000'), ('0000088','Valjevo','Vuka Karadžića 42',2,1,'14000'), ('0000099','Spartak','Bulevar Laze Kostića 18',1,1,'24000'), ('0000100','Ribnica','Kraljevačka 89',0,0,'36000'); /*Table structure for table `employee` */ DROP TABLE IF EXISTS `employee`; CREATE TABLE `employee` ( `username` varchar(20) NOT NULL, `password` varchar(20) NOT NULL, `name` varchar(50) NOT NULL, PRIMARY KEY (`username`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `employee` */ insert into `employee`(`username`,`password`,`name`) values ('laza','laza','Lazar Lazic'), ('pera','pera','Petar Petrovic'), ('zika','zika','Zika Zikic'); /*Table structure for table `game` */ DROP TABLE IF EXISTS `game`; CREATE TABLE `game` ( `matchID` int(11) NOT NULL, `tournamentID` int(3) NOT NULL, `host` varchar(7) NOT NULL, `guest` varchar(7) NOT NULL, `score` varchar(3) NOT NULL, `winner` varchar(7) NOT NULL, `time` time NOT NULL, PRIMARY KEY (`matchID`,`tournamentID`), KEY `fk_utakmica_domacin` (`host`), KEY `fk_utakmica_gost` (`guest`), KEY `fk_utakmica_turnir` (`tournamentID`), CONSTRAINT `fk_utakmica_domacin` FOREIGN KEY (`host`) REFERENCES `club` (`club_registration_number`) ON UPDATE CASCADE, CONSTRAINT `fk_utakmica_gost` FOREIGN KEY (`guest`) REFERENCES `club` (`club_registration_number`) ON UPDATE CASCADE, CONSTRAINT `fk_utakmica_turnir` FOREIGN KEY (`tournamentID`) REFERENCES `tournament` (`tournamentID`) ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `game` */ insert into `game`(`matchID`,`tournamentID`,`host`,`guest`,`score`,`winner`,`time`) values (1,1,'0000011','0000022','1:3','GOST','01:45:00'), (1,2,'0000099','0000066','3:2','DOMAĆIN','02:10:00'), (1,3,'0000088','0000100','3:2','DOMAĆIN','02:40:00'), (1,4,'0000022','0000011','3:2','DOMAĆIN','03:00:00'), (1,5,'0000088','0000055','2:3','GOST','02:15:00'), (1,6,'0000010','0000011','3:0','DOMAĆIN','02:10:00'), (1,7,'0000022','0000010','3:1','DOMAĆIN','01:35:00'), (2,1,'0000033','0000034','3:0','DOMAĆIN','01:20:00'), (2,5,'0000033','0000066','3:1','DOMAĆIN','02:00:00'), (2,6,'0000022','0000033','1:3','GOST','02:25:00'), (2,7,'0000033','0000022','3:2','DOMAĆIN','02:20:00'), (3,1,'0000022','0000033','1:3','GOST','01:50:00'), (3,5,'0000099','0000088','0:3','GOST','01:35:00'), (3,6,'0000033','0000010','2:3','GOST','02:40:00'), (4,5,'0000055','0000033','3:2','DOMAĆIN','03:25:00'), (5,5,'0000055','0000088','3:1','DOMAĆIN','02:20:00'); /*Table structure for table `participation` */ DROP TABLE IF EXISTS `participation`; CREATE TABLE `participation` ( `tournamentID` int(3) NOT NULL, `club_registration_number` varchar(7) NOT NULL, PRIMARY KEY (`tournamentID`,`club_registration_number`), KEY `fk_ucesce_klub` (`club_registration_number`), CONSTRAINT `fk_ucesce_klub` FOREIGN KEY (`club_registration_number`) REFERENCES `club` (`club_registration_number`) ON UPDATE CASCADE, CONSTRAINT `fk_ucesce_turnir` FOREIGN KEY (`tournamentID`) REFERENCES `tournament` (`tournamentID`) ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `participation` */ insert into `participation`(`tournamentID`,`club_registration_number`) values (1,'0000011'), (1,'0000022'), (1,'0000033'), (1,'0000034'), (2,'0000066'), (2,'0000099'), (3,'0000088'), (3,'0000100'), (4,'0000011'), (4,'0000022'), (5,'0000033'), (5,'0000055'), (5,'0000066'), (5,'0000088'), (5,'0000099'), (6,'0000010'), (6,'0000011'), (6,'0000022'), (6,'0000033'), (7,'0000010'), (7,'0000022'), (7,'0000033'); /*Table structure for table `player` */ DROP TABLE IF EXISTS `player`; CREATE TABLE `player` ( `player_registration_number` varchar(5) NOT NULL, `name` varchar(40) NOT NULL, `gender` varchar(1) NOT NULL, `date_of_birth` date DEFAULT NULL, `player_adress` varchar(40) NOT NULL, `jersey_number` int(2) DEFAULT '0', `city` varchar(5) NOT NULL, `positionID` int(1) NOT NULL, `club_registration_number` varchar(7) NOT NULL, PRIMARY KEY (`player_registration_number`), KEY `fk_igrac-klub` (`club_registration_number`), KEY `fk_grad-igrac` (`city`), KEY `fk_pozicija` (`positionID`), CONSTRAINT `fk_grad-igrac` FOREIGN KEY (`city`) REFERENCES `city` (`zip_code`) ON UPDATE CASCADE, CONSTRAINT `fk_igrac-klub` FOREIGN KEY (`club_registration_number`) REFERENCES `club` (`club_registration_number`) ON UPDATE CASCADE, CONSTRAINT `fk_pozicija` FOREIGN KEY (`positionID`) REFERENCES `position` (`positionID`) ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `player` */ insert into `player`(`player_registration_number`,`name`,`gender`,`date_of_birth`,`player_adress`,`jersey_number`,`city`,`positionID`,`club_registration_number`) values ('00001','Milica Vujović','Ž','1994-04-23','Bulevar Mihajla Pupina 24',5,'21000',2,'0000066'), ('00009','Milica Petrović','Ž','1993-07-07','Isidore Sekulić 64',2,'21000',3,'0000055'), ('11111','Ana Jovanović','Ž','1990-12-12','Milutina Milankovića 134b',0,'36000',1,'0000011'), ('11133','Ivan Krstić','M','1992-03-15','Zmaja od noćaja 18',13,'21000',3,'0000099'), ('11222','Nikola Jovanović','M','1994-11-10','Omladinskih Brigada',8,'11000',4,'0000033'), ('12344','Marko Markovic','M','1990-01-12','Jovana Ristića 85',1,'18101',5,'0000055'); /*Table structure for table `position` */ DROP TABLE IF EXISTS `position`; CREATE TABLE `position` ( `positionID` int(1) NOT NULL AUTO_INCREMENT, `position_name` varchar(20) NOT NULL, PRIMARY KEY (`positionID`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; /*Data for the table `position` */ insert into `position`(`positionID`,`position_name`) values (1,'DIZAC'), (2,'PRIMAC'), (3,'SREDNJI BLOKER'), (4,'KOREKTOR'), (5,'LIBERO'); /*Table structure for table `tournament` */ DROP TABLE IF EXISTS `tournament`; CREATE TABLE `tournament` ( `tournamentID` int(3) NOT NULL, `tournament_name` varchar(40) NOT NULL, `date` datetime NOT NULL, `winner` varchar(7) NOT NULL, `city` varchar(5) NOT NULL, PRIMARY KEY (`tournamentID`), KEY `fk_turnir_pobednik` (`winner`), KEY `fk_turnir_postanski_broj` (`city`), CONSTRAINT `fk_turnir_pobednik` FOREIGN KEY (`winner`) REFERENCES `club` (`club_registration_number`) ON UPDATE CASCADE, CONSTRAINT `fk_turnir_postanski_broj` FOREIGN KEY (`city`) REFERENCES `city` (`zip_code`) ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `tournament` */ insert into `tournament`(`tournamentID`,`tournament_name`,`date`,`winner`,`city`) values (1,'Uskršnji turnir','2018-10-18 20:26:01','0000033','18101'), (2,'Humanitarni','2019-02-16 20:26:47','0000099','21000'), (3,'Liga seniora','2018-07-07 20:27:24','0000088','36000'), (4,'aaaa Turnir','2002-12-12 00:00:00','0000022','11000'), (5,'Liga kadeta','2018-05-10 00:00:00','0000055','11000'), (6,'Mini volley na Adi','2019-02-22 00:00:00','0000010','11000'), (7,'NAziv neki','2019-12-12 00:00:00','0000033','11000'); /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
select s.name from subjects s,books_subjects bs where bs.book=6 and bs.subject=s.id;
----- Single nested SQL query for task 4 ----- SELECT target_banks.bank_name AS "BankName", target_banks.city AS "City", target_banks.security AS "Security" FROM (SELECT DISTINCT plans.bank_name, plans.city, banks.security, banks.no_accounts FROM plans NATURAL JOIN banks WHERE plans.planned_date BETWEEN CURRENT_DATE AND CURRENT_DATE + INTERVAL '1 year' AND NOT EXISTS (SELECT * FROM robberies WHERE robberies.robbery_date BETWEEN CURRENT_DATE AND CURRENT_DATE - INTERVAL '1 year')) AS target_banks ORDER BY target_banks.no_accounts DESC;
ALTER TABLE `event` ADD COLUMN closed_at DATETIME DEFAULT NULL;
INSERT INTO tbl_invoices (id, number_invoice, description, customer_id, create_at, state) VALUES (1, '0001', 'invoice office items', 1, '2020-06-28','CREATED'); INSERT INTO tbl_invoice_items (invoice_id, product_id, quantity, price) VALUES (1, 1 , 1, 178.89); INSERT INTO tbl_invoice_items (invoice_id, product_id, quantity, price) VALUES (1, 2 , 2, 12.5); INSERT INTO tbl_invoice_items (invoice_id, product_id, quantity, price) VALUES (1, 3 , 1, 40.06);
DROP TABLE IF EXISTS `userprograms`;
BEGIN TRANSACTION; CREATE TABLE "outlet" ( `alias` TEXT NOT NULL, `number` INTEGER NOT NULL, `userAlias` TEXT NOT NULL ); INSERT INTO "outlet" VALUES('promo-9192-banners',2288416,'promo-9193'); INSERT INTO "outlet" VALUES('promo-9293',2156999,'promo-9193'); INSERT INTO "outlet" VALUES('promo-9193-coupons',2288416,'promo-9193'); INSERT INTO "outlet" VALUES('promo-9293',2156999,'promo-9193'); INSERT INTO "outlet" VALUES('promo-80',2743206,'promo-1075'); INSERT INTO "outlet" VALUES('promo-93',5772504,'promo-9193'); INSERT INTO "outlet" VALUES('cds-9193',5116821,'cds'); INSERT INTO "outlet" VALUES('cds-off-fo',1137767,'admycca'); INSERT INTO "outlet" VALUES('promo-1030-92',1148617,'promo-1075'); INSERT INTO "outlet" VALUES('promo-50',2156416,'promo-1075'); INSERT INTO "outlet" VALUES('promo-60',2156672,'promo-1075'); INSERT INTO "outlet" VALUES('promo-70',2270933,'promo-1075'); INSERT INTO "outlet" VALUES('promo-40 ',2743206,'promo-1075'); INSERT INTO "outlet" VALUES('promo-1020-91',5204048,'promo-1075'); INSERT INTO "outlet" VALUES('cds-on-fo',5772504,'admycca'); INSERT INTO "outlet" VALUES('cds-80',5101222,'cds'); INSERT INTO "outlet" VALUES('pay-access',1148617,'corin'); INSERT INTO "outlet" VALUES('freq-ordered',8000353,'payment-access'); INSERT INTO "outlet" VALUES('freq-ordered2',100036,'payment-access'); INSERT INTO "outlet" VALUES('beach-burrito',2743206,'payment-access'); CREATE TABLE "user" ( `alias` TEXT, `username` TEXT, `password` TEXT, PRIMARY KEY(`username`) ); INSERT INTO "user" VALUES('promo-9193','cutedog@xyz123.com','35Paxton'); INSERT INTO "user" VALUES('payment-access','abcdxyz@outlook.com','Mycca@11'); INSERT INTO "user" VALUES('promo-1075','myccatest123@gmail.com','Mycca@11'); INSERT INTO "user" VALUES('webtestuser','webtestuser1','b'); INSERT INTO "user" VALUES('admin-bde','admycca@outlook.com','Mycca@11'); INSERT INTO "user" VALUES('corin','corin3@hotmail.com','Coke@123'); INSERT INTO "user" VALUES('testcust','testcustomercca@outlook.com','Mycca@15'); COMMIT;
/* A Christmas tree with SQL using Common Table Expressions (CTE) * Inspired by SQL Daily's tweet - see https://twitter.com/sqldaily/status/1077534562518032390 */ WITH RECURSIVE tree (i, t) AS ( SELECT 1 AS i, CAST(CONCAT(LPAD(' ', 4 - 0, ' '), LPAD('*', (0 * 2) + 1, '*')) AS CHAR(128)) AS t UNION ALL SELECT i + 1, CONCAT(LPAD(' ', 4 - i, ' '), LPAD('*', (i * 2) + 1, '*')) FROM tree WHERE i <= 4 ) SELECT t AS TREE FROM tree;
CREATE TABLE IF NOT EXISTS tag ( tag_id BIGINT UNSIGNED UNIQUE AUTO_INCREMENT NOT NULL, content VARCHAR(50), link VARCHAR(255), PRIMARY KEY (tag_id) );
-- phpMyAdmin SQL Dump -- version 4.9.1 -- https://www.phpmyadmin.net/ -- -- Host: localhost:3306 -- Generation Time: Oct 12, 2019 at 12:09 PM -- Server version: 10.3.16-MariaDB -- PHP Version: 7.3.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: `id11099697_hotel_acube` -- CREATE DATABASE IF NOT EXISTS `id11099697_hotel_acube` DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci; USE `id11099697_hotel_acube`; -- -------------------------------------------------------- -- -- Table structure for table `customer_details` -- CREATE TABLE `customer_details` ( `cust_id` int(5) NOT NULL, `name` varchar(40) NOT NULL, `mobile_number` double NOT NULL, `no_of_members` int(3) NOT NULL, `email_id` varchar(30) DEFAULT NULL, `check_in` date DEFAULT NULL, `check_out` date DEFAULT NULL, `mode_of_payment` enum('Cash','Online') DEFAULT NULL, `room_id` enum('101','102','103','104') NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `customer_details` -- INSERT INTO `customer_details` (`cust_id`, `name`, `mobile_number`, `no_of_members`, `email_id`, `check_in`, `check_out`, `mode_of_payment`, `room_id`) VALUES (1, 'Adarsh Mishra', 7977248626, 2, 'afitnesscontact@gmail.com', '2019-10-02', '2019-10-05', 'Online', '101'), (30, 'ajay mishra', 7894561230, 2, 'ajaymishra729@gmail.com', '2019-10-04', '2019-10-06', 'Online', '104'), (31, 'abhishek tripathi', 132131411, 2, 'lelouch8353@gmail.com', '2019-10-10', '2019-10-04', 'Cash', '103'), (32, 'Ajinkya Chavan', 9876543210, 2, 'ajinkyachavan@gmail.com', '2019-10-03', '2019-10-10', 'Cash', '103'), (33, 'Abhishek Jain', 9769575914, 2, 'abhisjain18@gmail.com', '2019-10-04', '2019-10-11', 'Cash', '104'), (34, 'Sandeep', 987965876, 2, 'sandy@pandy.com', '2019-10-05', '2019-10-06', 'Online', '104'), (35, 'Amit', 9363993739, 4, 'amit@gmail.com', '2019-10-03', '2019-10-08', 'Online', '102'), (36, 'Hardik deshmukh', 8457842786, 4, 'smarthardik@yahoo.com', '2019-10-04', '2019-10-10', 'Cash', '104'), (37, 'Hardik deshmukh', 8457842786, 4, 'smarthardik@yahoo.com', '2019-10-04', '2019-10-10', 'Cash', '104'), (38, 'jitendra', 5566988231, 2, 'jitu@dubey.com', '2019-10-04', '2019-10-06', 'Online', '104'), (39, 'raj', 9876543210, 1, 'as@ad.com', '2019-10-05', '2019-10-12', 'Online', '103'), (40, 'MISHRA ADARSH UMESHC', 7666170676, 1, 'adarsh9923@gmail.com', '2019-10-02', '2019-10-04', 'Cash', '103'), (41, 'MISHRA ADARSH UMESHC', 7666170676, 1, 'adarsh9923@gmail.com', '2019-10-02', '2019-10-04', 'Cash', '103'), (42, 'amit', 1234567890, 1, 'am@g.com', '2019-10-11', '2019-10-13', 'Cash', '102'); -- -------------------------------------------------------- -- -- Table structure for table `room` -- CREATE TABLE `room` ( `room_id` int(8) NOT NULL, `room_type` varchar(30) DEFAULT NULL, `room_rent` double NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `room` -- INSERT INTO `room` (`room_id`, `room_type`, `room_rent`) VALUES (101, 'Single simple', 3000), (102, 'Single deluxe', 5000), (103, 'Double simple', 4800), (104, 'Double deluxe', 6800); -- -- Indexes for dumped tables -- -- -- Indexes for table `customer_details` -- ALTER TABLE `customer_details` ADD PRIMARY KEY (`cust_id`); -- -- Indexes for table `room` -- ALTER TABLE `room` ADD PRIMARY KEY (`room_id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `customer_details` -- ALTER TABLE `customer_details` MODIFY `cust_id` int(5) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=43; 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 */;
-- phpMyAdmin SQL Dump -- version 4.8.5 -- https://www.phpmyadmin.net/ -- -- Хост: 127.0.0.1:3306 -- Время создания: Янв 16 2020 г., 17:37 -- Версия сервера: 8.0.15 -- Версия PHP: 7.1.22 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 */; -- -- База данных: `tasks` -- -- -------------------------------------------------------- -- -- Структура таблицы `tasks` -- CREATE TABLE `tasks` ( `id` int(11) NOT NULL, `name` varchar(45) COLLATE utf8_bin NOT NULL, `e-mail` varchar(45) COLLATE utf8_bin NOT NULL, `text` varchar(1800) COLLATE utf8_bin NOT NULL, `status` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin; -- -- Дамп данных таблицы `tasks` -- INSERT INTO `tasks` (`id`, `name`, `e-mail`, `text`, `status`) VALUES (1, 'Петя', 'petya@mail.ru', 'На ветке сидели две вороны. Одна улетела. Сколько ворон осталось на ветке?', 1), (2, 'Вася', 'vasya@ya.ru', 'Зимой и летом одним цветом. Что это?', 1), (3, 'Иван', 'ivan@ya.ru', 'Сколько ног у осьминога?', 1), (4, 'Аня', 'anya@ya.ru', 'На каком континенте не растут пальмы?', 1), (5, 'Лена', 'lena@mail.ru', 'Почему снег белый?', 1); -- -- Индексы сохранённых таблиц -- -- -- Индексы таблицы `tasks` -- ALTER TABLE `tasks` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT для сохранённых таблиц -- -- -- AUTO_INCREMENT для таблицы `tasks` -- ALTER TABLE `tasks` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=42; 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 Procedure mERP_sp_GetSubmittedRFA(@ClaimType Int, @FromMonth nvarchar(100),@ToMonth nvarchar(100),@Type int ) As SET DATEFORMAT DMY If @ClaimType = 1 Or @ClaimType = 2 /*Expiry Or Damages Or Sampling*/ If @ClaimType = 1 /*Damages Or Expiry*/ Select RFA.ActivityCode, RFA.Description , RFA.ActiveFrom as SchemeFrom, RFA.ActiveTo as SchemeTo, RFA.PayoutFrom as PayoutFrom, RFA.PayoutTo as PayoutTo, CN.ClaimValue as RFAValue, RFA.RFADocID as DocID, Case CN.ClaimType When 1 Then 6 Else 7 End as SchType, Sum(IsNull(RFA.SalvageQty, 0)) As SalvageQty, Sum(IsNull(RFA.SalvageValue, 0)) As SalvageValue From ClaimsNote CN, DandDAbstract dda, tbl_mERP_RFAAbstract RFA Where cn.ClaimID = dda.ClaimID And IsNull(dda.ClaimStatus, 0) = 3 And CN.ClaimDate between dbo.mERP_fn_getFromDate(@FromMonth) and dbo.mERP_fn_getToDate(@ToMonth) and Isnull(RFA.Status,0)<>5 And CN.ClaimType In (2) And IsNull(CN.ClaimRFA,0) > 0 And CN.ClaimID = RFA.DocReference Group By RFA.ActivityCode, RFA.Description , RFA.ActiveFrom , RFA.ActiveTo , RFA.PayoutFrom , RFA.PayoutTo , CN.ClaimValue , RFA.RFADocID , CN.ClaimType Union Select Distinct RFA.ActivityCode, RFA.Description , Null as SchemeFrom, Null as SchemeTo, Null as PayoutFrom, Null as PayoutTo, CN.ClaimValue as RFAValue, RFA.RFADocID as DocID, Case CN.ClaimType When 1 Then 6 Else 7 End as SchType, 0, 0 From ClaimsNote CN, tbl_mERP_RFAAbstract RFA Where CN.ClaimDate between dbo.mERP_fn_getFromDate(@FromMonth) and dbo.mERP_fn_getToDate(@ToMonth) and Isnull(RFA.Status,0)<>5 And CN.ClaimType In (1) And IsNull(CN.ClaimRFA,0) > 0 And CN.ClaimID = RFA.DocReference Else /*Sampling*/ Select Distinct RFA.ActivityCode, RFA.Description , Null as SchemeFrom, Null as SchemeTo, Null as PayoutFrom, Null as PayoutTo, CN.ClaimValue as RFAValue, RFA.RFADocID as DocID, 8 as SchType From ClaimsNote CN, tbl_mERP_RFAAbstract RFA Where CN.ClaimType = 3 and Isnull(RFA.Status,0)<>5 AND CN.ClaimDate between dbo.mERP_fn_getFromDate(@FromMonth) and dbo.mERP_fn_getToDate(@ToMonth) And IsNull(CN.ClaimRFA,0) > 0 And CN.ClaimID = RFA.DocReference Else If @ClaimType = 4 Select Distinct RFA.ActivityCode, RFA.Description , Null as SchemeFrom, Null as SchemeTo, PayoutFrom as PayoutFrom, PayoutTo as PayoutTo, CN.ClaimValue as RFAValue, RFA.RFADocID as DocID, CN.ClaimType as SchType From ClaimsNote CN, tbl_mERP_RFAAbstract RFA Where CN.ClaimType In (10) And RFA.PayoutTo between dbo.mERP_fn_getFromDate(@FromMonth) and dbo.mERP_fn_getToDate(@ToMonth) and Isnull(RFA.Status,0)<>5 And IsNull(CN.ClaimRFA,0) > 0 And CN.ClaimID = RFA.DocReference Else Begin Create Table #tmpSPRFAInfo(ActivityCode nvarchar(255), Description nvarchar(255), SchemeFrom datetime, SchemeTo datetime, PayoutFrom datetime, PayoutTo datetime, RFAValue decimal(18,6),DocID int, SchType int) Create Table #tmpDispRFAInfo(ActivityCode nvarchar(255), Description nvarchar(255), SchemeFrom datetime, SchemeTo datetime, PayoutFrom datetime, PayoutTo datetime, RFAValue decimal(18,6),DocID int, SchType int) if @type = 1 BEGIN insert Into #tmpSPRFAInfo Select Distinct RFA.ActivityCode, RFA.Description, SA.SchemeFrom, SA.SchemeTo, RFA.PayoutFrom, RFA.PayoutTo, CN.ClaimValue as RFAValue, RFA.RFADocID as DocID, 1 as SchType From tbl_mERP_RFAAbstract RFA, ClaimsNote CN, tbl_mERP_SchemeAbstract SA Where CN.ClaimType = 7 AND SA.schemeType in (1,2) And RFA.PayoutTo between dbo.mERP_fn_getFromDate(@FromMonth) and dbo.mERP_fn_getToDate(@ToMonth) and Isnull(RFA.Status,0)<>5 And RFA.DocumentID = SA.SchemeID And IsNull(CN.ClaimRFA, 0) > 0 And CN.ClaimID = RFA.DocReference And SA.ActivityCode = RFA.ActivityCode END ELSE IF @type = 2 BEGIN insert Into #tmpSPRFAInfo Select Distinct RFA.ActivityCode, RFA.Description, SA.SchemeFrom, SA.SchemeTo, RFA.PayoutFrom, RFA.PayoutTo, CN.ClaimValue as RFAValue, RFA.RFADocID as DocID, 1 as SchType From tbl_mERP_RFAAbstract RFA, ClaimsNote CN, tbl_mERP_SchemeAbstract SA Where CN.ClaimType = 7 AND SA.schemeType = 3 And RFA.PayoutTo between dbo.mERP_fn_getFromDate(@FromMonth) and dbo.mERP_fn_getToDate(@ToMonth) and Isnull(RFA.Status,0)<>5 And RFA.DocumentID = SA.SchemeID And IsNull(CN.ClaimRFA, 0) > 0 And CN.ClaimID = RFA.DocReference And SA.ActivityCode = RFA.ActivityCode END ELSE IF @type = 3 BEGIN insert Into #tmpSPRFAInfo Select Distinct RFA.ActivityCode, RFA.Description, SA.SchemeFrom, SA.SchemeTo, RFA.PayoutFrom, RFA.PayoutTo, CN.ClaimValue as RFAValue, RFA.RFADocID as DocID, 1 as SchType From tbl_mERP_RFAAbstract RFA, ClaimsNote CN, tbl_mERP_SchemeAbstract SA Where CN.ClaimType = 7 AND SA.schemeType = 4 And RFA.PayoutTo between dbo.mERP_fn_getFromDate(@FromMonth) and dbo.mERP_fn_getToDate(@ToMonth) and Isnull(RFA.Status,0)<>5 And RFA.DocumentID = SA.SchemeID And IsNull(CN.ClaimRFA, 0) > 0 And CN.ClaimID = RFA.DocReference And SA.ActivityCode = RFA.ActivityCode END ELSE BEGIN insert Into #tmpSPRFAInfo Select Distinct RFA.ActivityCode, RFA.Description, SA.SchemeFrom, SA.SchemeTo, RFA.PayoutFrom, RFA.PayoutTo, CN.ClaimValue as RFAValue, RFA.RFADocID as DocID, 1 as SchType From tbl_mERP_RFAAbstract RFA, ClaimsNote CN, tbl_mERP_SchemeAbstract SA Where CN.ClaimType = 7 AND SA.schemeType in (1,2,3,4) And RFA.PayoutTo between dbo.mERP_fn_getFromDate(@FromMonth) and dbo.mERP_fn_getToDate(@ToMonth) and Isnull(RFA.Status,0)<>5 And RFA.DocumentID = SA.SchemeID And IsNull(CN.ClaimRFA, 0) > 0 And CN.ClaimID = RFA.DocReference And SA.ActivityCode = RFA.ActivityCode END if @type = 1 BEGIN insert into #tmpDispRFAInfo Select Distinct RFA.ActivityCode, RFA.Description, SA.SchemeFrom as SchemeFrom, SA.SchemeTo as SchemeTo, RFA.PayoutFrom, RFA.PayoutTo, CN.ClaimValue as RFAValue, RFA.RFADocID as DocID, Case RFA.SchemeType When 'Display' Then 3 Else 4 End as SchType From tbl_mERP_RFAAbstract RFA, ClaimsNote CN, tbl_mERP_SchemeAbstract SA, tbl_mERP_SchemePayoutPeriod SPP Where CN.ClaimType In (8,9) AND SA.schemeType in (1,2) and Isnull(RFA.Status,0)<>5 And RFA.PayoutTo between dbo.mERP_fn_getFromDate(@FromMonth) and dbo.mERP_fn_getToDate(@ToMonth) And IsNull(CN.ClaimRFA, 0) > 0 And CN.ClaimID = RFA.DocReference And SA.ActivityCode = RFA.ActivityCode And SA.SchemeID = SPP.SchemeID And RFA.PayoutFrom = SPP.PayoutPeriodFrom And RFA.PayoutTo = SPP.PayoutPeriodTo END ELSE IF @type = 2 BEGIN insert into #tmpDispRFAInfo Select Distinct RFA.ActivityCode, RFA.Description, SA.SchemeFrom as SchemeFrom, SA.SchemeTo as SchemeTo, RFA.PayoutFrom, RFA.PayoutTo, CN.ClaimValue as RFAValue, RFA.RFADocID as DocID, Case RFA.SchemeType When 'Display' Then 3 Else 4 End as SchType From tbl_mERP_RFAAbstract RFA, ClaimsNote CN, tbl_mERP_SchemeAbstract SA, tbl_mERP_SchemePayoutPeriod SPP Where CN.ClaimType In (8,9) AND SA.schemeType = 3 And RFA.PayoutTo between dbo.mERP_fn_getFromDate(@FromMonth) and dbo.mERP_fn_getToDate(@ToMonth) and Isnull(RFA.Status,0)<>5 And IsNull(CN.ClaimRFA, 0) > 0 And CN.ClaimID = RFA.DocReference And SA.ActivityCode = RFA.ActivityCode And SA.SchemeID = SPP.SchemeID And RFA.PayoutFrom = SPP.PayoutPeriodFrom And RFA.PayoutTo = SPP.PayoutPeriodTo END ELSE IF @type = 3 BEGIN insert into #tmpDispRFAInfo Select Distinct RFA.ActivityCode, RFA.Description, SA.SchemeFrom as SchemeFrom, SA.SchemeTo as SchemeTo, RFA.PayoutFrom, RFA.PayoutTo, CN.ClaimValue as RFAValue, RFA.RFADocID as DocID, Case RFA.SchemeType When 'Display' Then 3 Else 4 End as SchType From tbl_mERP_RFAAbstract RFA, ClaimsNote CN, tbl_mERP_SchemeAbstract SA, tbl_mERP_SchemePayoutPeriod SPP Where CN.ClaimType In (8,9) AND SA.schemeType = 4 And RFA.PayoutTo between dbo.mERP_fn_getFromDate(@FromMonth) and dbo.mERP_fn_getToDate(@ToMonth) and Isnull(RFA.Status,0)<>5 And IsNull(CN.ClaimRFA, 0) > 0 And CN.ClaimID = RFA.DocReference And SA.ActivityCode = RFA.ActivityCode And SA.SchemeID = SPP.SchemeID And RFA.PayoutFrom = SPP.PayoutPeriodFrom And RFA.PayoutTo = SPP.PayoutPeriodTo END ELSE BEGIN insert into #tmpDispRFAInfo Select Distinct RFA.ActivityCode, RFA.Description, SA.SchemeFrom as SchemeFrom, SA.SchemeTo as SchemeTo, RFA.PayoutFrom, RFA.PayoutTo, CN.ClaimValue as RFAValue, RFA.RFADocID as DocID, Case RFA.SchemeType When 'Display' Then 3 Else 4 End as SchType From tbl_mERP_RFAAbstract RFA, ClaimsNote CN, tbl_mERP_SchemeAbstract SA, tbl_mERP_SchemePayoutPeriod SPP Where CN.ClaimType In (8,9) AND SA.schemeType in(1,2,3,4) And RFA.PayoutTo between dbo.mERP_fn_getFromDate(@FromMonth) and dbo.mERP_fn_getToDate(@ToMonth) and Isnull(RFA.Status,0)<>5 And IsNull(CN.ClaimRFA, 0) > 0 And CN.ClaimID = RFA.DocReference And SA.ActivityCode = RFA.ActivityCode And SA.SchemeID = SPP.SchemeID And RFA.PayoutFrom = SPP.PayoutPeriodFrom And RFA.PayoutTo = SPP.PayoutPeriodTo END Select ActivityCode, Description, SchemeFrom, SchemeTo, PayoutFrom, PayoutTo, Sum(RFAValue) as RFAValue, DocID, SchType From #tmpSPRFAInfo Group By ActivityCode, Description, SchemeFrom, SchemeTo, PayoutFrom, PayoutTo, DocID, SchType Union Select ActivityCode, Description, SchemeFrom, SchemeTo, PayoutFrom, PayoutTo, Sum(RFAValue) as RFAValue, DocID, SchType From #tmpDispRFAInfo Group By ActivityCode, Description, SchemeFrom, SchemeTo, PayoutFrom, PayoutTo, DocID, SchType Drop Table #tmpSPRFAInfo Drop Table #tmpDispRFAInfo End
CREATE Procedure sp_han_CollectionConfig AS Select (Select Top 1 Tool_Value From tblTools Where Tool_ID = 1) 'WriteOff_Validation', (Select Top 1 Tool_Value From tblTools Where Tool_ID = 2) 'Coll_Disc_PymtDate_Validation', (Select Top 1 Tool_Value From tblTools Where Tool_ID = 3) 'Allow_Coll_Fulladjust' --$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$-- --$$ The List of Tool_ID Number Refere to which Option $$-- --$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$-- --$$ 1 : [WriteOff_Validation] --$$ 2 : [Coll_Disc_PymtDate_Validation] --$$ 3 : [Allow_Coll_Fulladjust] --$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$-- --$$ List Format --$$ ToolID : [Tool_Data] :: InDetail --$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$--
-- phpMyAdmin SQL Dump -- version 5.0.4 -- https://www.phpmyadmin.net/ -- -- Host: localhost -- Generation Time: Apr 21, 2021 at 05:26 PM -- Server version: 10.4.17-MariaDB -- PHP Version: 8.0.0 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; 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: `crudapp` -- -- -------------------------------------------------------- -- -- Table structure for table `userinfo` -- CREATE TABLE `userinfo` ( `user_id` int(10) NOT NULL, `user_name` varchar(50) NOT NULL, `user_gender` varchar(20) NOT NULL, `user_dob` varchar(20) NOT NULL, `user_phone` varchar(20) NOT NULL, `user_email` varchar(50) NOT NULL, `user_address` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `userinfo` -- INSERT INTO `userinfo` (`user_id`, `user_name`, `user_gender`, `user_dob`, `user_phone`, `user_email`, `user_address`) VALUES (5, 'Sathish', 'male', '1996-01-04', '7039284091', 'sathish@gmail.com', '5th ward ,Indira Nagar'); -- -- Indexes for dumped tables -- -- -- Indexes for table `userinfo` -- ALTER TABLE `userinfo` ADD PRIMARY KEY (`user_id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `userinfo` -- ALTER TABLE `userinfo` MODIFY `user_id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; 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 */;
/* Formatted on 5/22/2017 10:35:14 AM (QP5 v5.114.809.3010) Added Indicator for SITT and ILD calls for easy filtering. */ SELECT CA.CO_ID, UDR.CUST_INFO_CONTRACT_ID, UDR.TARIFF_INFO_USED_SERVICE_PKEY USAGE_CATEGORY, SN.DES USAGE_SUB_CATEGORY, CASE WHEN TMO_RATING_TYPE = 'Throttled' THEN 'WAS THROTTLED' ELSE 'NOT THROTTLED' END AS THROTTLED_IND, UDR.O_P_NUMBER_ADDRESS CALLED_NUMBER, CASE WHEN SN.SHDES = 'UMA' THEN 'Y' ELSE 'N' END AS "WI-FI_INDICATOR", CASE WHEN SN.SHDES = 'FTMMS' THEN 'Y' ELSE 'N' END AS "MMS INDICATOR", CASE WHEN ( (UDR.TMO_USAGE_TYPE = 'Home' AND UDR.TMO_USAGE_SUBTYPE_2 = 'International') OR (UDR.TMO_USAGE_TYPE = 'International Roaming')) THEN 'Y' ELSE 'N' END AS "ILD INDICATOR", CASE WHEN ( (UDR.TMO_USAGE_TYPE = 'Home' AND UDR.TMO_USAGE_SUBTYPE_2 = 'International') OR (UDR.TMO_USAGE_TYPE = 'International Roaming')) THEN (START_TIME_TIMESTAMP + NVL ( (START_TIME_OFFSET / 86400), 0)) ELSE NULL END AS "ILD INDICATOR DATETIME", CASE WHEN TARIFF_DETAIL_TMO_OFFER_ID IN (60002, 60013) THEN 'Y' ELSE 'N' END AS "SUBSCRIBER B52 Indicator", CASE WHEN NVL (ROUNDED_VOLUME, 0) = 0 THEN FREE_ROUNDED_VOLUME_VOLUME WHEN NVL (FREE_ROUNDED_VOLUME_VOLUME, 0) = 0 THEN ROUNDED_VOLUME END AS "ROUNDED_VOLUME", (SELECT DES FROM MPSUMTAB WHERE UMCODE = UDR.ROUNDED_VOLUME_UMCODE) UOM, MRC.MRC, UDR.TMO_RATING_TYPE, UDR.TMO_USAGE_TYPE, UDR.TMO_USAGE_SUBTYPE_1, UDR.TMO_USAGE_SUBTYPE_2, -- DATA TYPE CASE WHEN TARIFF_INFO_USED_SERVICE_PKEY IN ('VOICE', 'TEXT') AND UPPER (TMO_USAGE_TYPE) IN ('HOME', 'DOMESTIC ROAMING') AND UPPER (UDR.TMO_USAGE_SUBTYPE_2) = 'INTERNATIONAL' THEN 'Y' ELSE 'N' END AS "SITT INDICATOR", CASE WHEN TARIFF_INFO_USED_SERVICE_PKEY IN ('VOICE', 'TEXT') AND UPPER (TMO_USAGE_TYPE) IN ('HOME', 'DOMESTIC ROAMING') AND UPPER (UDR.TMO_USAGE_SUBTYPE_2) = 'INTERNATIONAL' THEN (START_TIME_TIMESTAMP + NVL ( (START_TIME_OFFSET / 86400), 0)) ELSE NULL END AS "SITT INDICATOR DATETIME", CASE WHEN UPPER (UDR.TMO_USAGE_TYPE) LIKE '%ROAMING%' THEN TMO_USAGE_TYPE ELSE NULL END AS "SUBSCRIBER_ROAMING_TYPE", S_P_NUMBER_US_CITY FROM_CITY, S_P_NUMBER_US_STATE FROM_STATE, -- Available only when the call origin is domestic O_P_NUMBER_US_CITY TO_CITY, O_P_NUMBER_US_STATE TO_STATE, -- Available when call is "domestic to domestic" or "roaming call to domestic" S_P_NUMBER_COUNTRY_CODE FROM_COUNTRY_CODE, (SELECT NAME FROM COUNTRY WHERE S_P_NUMBER_COUNTRY_CODE = ISO) FROM_COUNTRY_NAME, -- Available when 'roaming call to domestic' or 'roaming call to international' O_P_NUMBER_COUNTRY_CODE TO_COUNTRY_CODE, (SELECT NAME FROM COUNTRY WHERE O_P_NUMBER_COUNTRY_CODE = ISO) TO_COUNTRY_NAME --Available when 'domestic to international' or 'roaming call to international' FROM ( SELECT * FROM SYSADM_RX.UDR_PRE_NONZERO UNION ALL SELECT * FROM SYSADM_RX.UDR_PRE_ZERO) UDR, CONTRACT_ALL CA, MPUSNTAB SN, ( SELECT B.CO_ID, SUM (C.ACCESSFEE) MRC FROM PR_SERV_SPCODE_HIST A, CONTRACT_ALL B, MPULKTMB C, MPUSNTAB D WHERE A.CO_ID = B.CO_ID AND B.TMCODE = C.TMCODE AND A.SPCODE = C.SPCODE AND A.FUTURE_PENDING_FLAG IS NULL AND A.SNCODE = C.SNCODE AND A.HISTNO IN (SELECT MAX (X.HISTNO) FROM SYSADM.PR_SERV_SPCODE_HIST X WHERE X.CO_ID = A.CO_ID AND X.SNCODE = A.SNCODE) AND C.VSCODE IN (SELECT MAX (Y.VSCODE) FROM SYSADM.MPULKTMB Y WHERE Y.TMCODE = C.TMCODE AND Y.SPCODE = C.SPCODE AND Y.SNCODE = C.SNCODE AND VSDATE <= SYSDATE) AND A.SNCODE = D.SNCODE AND D.SHDES IN ('VOICE', 'TEXT', 'DATA') GROUP BY B.CO_ID) MRC, ( SELECT MIN (A.START_TIME_TIMESTAMP) DTMFIRSTCALL, A.CUST_INFO_CONTRACT_ID FROM ( SELECT * FROM SYSADM_RX.UDR_PRE_NONZERO UNION ALL SELECT * FROM SYSADM_RX.UDR_PRE_ZERO) A WHERE A.TARIFF_INFO_USED_SERVICE_PKEY IN ('VOICE') GROUP BY CUST_INFO_CONTRACT_ID) FIRST_CALL WHERE UDR.CUST_INFO_CONTRACT_ID = CA.CO_ID AND UDR.TARIFF_INFO_SNCODE = SN.SNCODE AND TARIFF_INFO_USED_SERVICE_PKEY IN ('VOICE', 'TEXT', 'DATA') AND UDR.CUST_INFO_CONTRACT_ID = MRC.CO_ID AND UDR.CUST_INFO_CONTRACT_ID = FIRST_CALL.CUST_INFO_CONTRACT_ID ORDER BY 1 DESC
create database small; use small; CREATE TABLE PART ( P_PARTKEY INT, P_NAME VARCHAR(55), P_MFGR CHAR(25), P_BRAND CHAR(10), P_TYPE VARCHAR(25), P_SIZE INT, P_CONTAINER CHAR(10), P_RETAILPRICE FLOAT, P_COMMENT VARCHAR(23), PRIMARY KEY(P_PARTKEY) ); CREATE TABLE REGION ( R_REGIONKEY INT, R_NAME CHAR(25), R_COMMENT VARCHAR(152), PRIMARY KEY(R_REGIONKEY) ); CREATE TABLE NATION ( N_NATIONKEY INT, N_NAME CHAR(25), N_REGIONKEY INT NOT NULL, N_COMMENT VARCHAR(152), PRIMARY KEY(N_NATIONKEY) ); CREATE TABLE SUPPLIER ( S_SUPPKEY INT, S_NAME CHAR(25), S_ADDRESS VARCHAR(40), S_NATIONKEY INT NOT NULL, S_PHONE CHAR(15), S_ACCTBAL FLOAT, S_COMMENT VARCHAR(101), PRIMARY KEY(S_SUPPKEY) ); CREATE TABLE CUSTOMER ( C_CUSTKEY INT, C_NAME VARCHAR(25), C_ADDRESS VARCHAR(40), C_NATIONKEY INT NOT NULL, C_PHONE CHAR(15), C_ACCTBAL FLOAT, C_MKTSEGMENT CHAR(10), C_COMMENT VARCHAR(117), PRIMARY KEY(C_CUSTKEY) ); CREATE TABLE PARTSUPP ( PS_PARTKEY INT NOT NULL, PS_SUPPKEY INT NOT NULL, PS_AVAILQTY INT, PS_SUPPLYCOST FLOAT, PS_COMMENT VARCHAR(199), PRIMARY KEY (PS_PARTKEY, PS_SUPPKEY) ); CREATE TABLE ORDERS ( O_ORDERKEY INT, O_CUSTKEY INT NOT NULL, O_ORDERSTATUS CHAR(1), O_TOTALPRICE FLOAT, O_ORDERDATE DATE, O_ORDERPRIORITY CHAR(15), O_CLERK CHAR(15), O_SHIPPRIORITY INT, O_COMMENT VARCHAR(79), PRIMARY KEY(O_ORDERKEY) ); CREATE TABLE LINEITEM ( L_ORDERKEY INT NOT NULL, L_PARTKEY INT NOT NULL, L_SUPPKEY INT NOT NULL, L_LINENUMBER INT, L_QUANTITY FLOAT, L_EXTENDEDPRICE FLOAT, L_DISCOUNT FLOAT, L_TAX FLOAT, L_RETURNFLAG CHAR(1), L_LINESTATUS CHAR(1), L_SHIPDATE DATE, L_COMMITDATE DATE, L_RECEIPTDATE DATE, L_SHIPINSTRUCT CHAR(25), L_SHIPMODE CHAR(10), L_COMMENT VARCHAR(44), PRIMARY KEY (L_ORDERKEY, L_LINENUMBER) ); ALTER TABLE SUPPLIER ADD constraint fk FOREIGN KEY (S_NATIONKEY) REFERENCES NATION(N_NATIONKEY); ALTER TABLE PARTSUPP ADD constraint fk FOREIGN KEY (PS_PARTKEY) REFERENCES PART(P_PARTKEY); ALTER TABLE PARTSUPP ADD constraint fk2 FOREIGN KEY (PS_SUPPKEY) REFERENCES SUPPLIER(S_SUPPKEY); ALTER TABLE CUSTOMER ADD constraint fk FOREIGN KEY (C_NATIONKEY) REFERENCES NATION(N_NATIONKEY); ALTER TABLE ORDERS ADD constraint fk FOREIGN KEY (O_CUSTKEY) REFERENCES CUSTOMER(C_CUSTKEY); ALTER TABLE LINEITEM ADD constraint fk FOREIGN KEY (L_ORDERKEY) REFERENCES ORDERS(O_ORDERKEY); ALTER TABLE LINEITEM ADD constraint fk2 FOREIGN KEY (L_PARTKEY,L_SUPPKEY) REFERENCES PARTSUPP(PS_PARTKEY,PS_SUPPKEY); ALTER TABLE NATION ADD constraint fk FOREIGN KEY (N_REGIONKEY) REFERENCES REGION(R_REGIONKEY);
INSERT INTO ITEM (ID, NAME) VALUES (1, '肉製品');
INSERT INTO equipos VALUES("338","NAUTICO ESC.\"REDONDO\"","30","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("340","MAPUCHE \"BLANCO\"","54","8","3","","2002-02-09 00:00:00","2017-03-17 00:00:00","0","3"); INSERT INTO equipos VALUES("341","GOLF CLUB ARG.\"A\"","34","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("342","NAUTICO ESCOBAR BLAN","30","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("343","BANCO PROVINCIA ROJO","61","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("344","EL MORO","31","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("345","MAPUCHE \"B\"","54","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("346","MAPUCHE \"B\"","54","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("347","LAS PRADERAS VERDE","15","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("348","SAN DIEGO/BOCA RATON","28","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("349","CUBA-FATIMA","27","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("350","LAS LAJAS \"B\"","44","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("351","GOLFERS","35","1","1","","2002-02-09 00:00:00","2015-07-20 00:00:00","0","1"); INSERT INTO equipos VALUES("352","HIGHLAND","40","5","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","1","9"); INSERT INTO equipos VALUES("353","MIRAFLORES NARANJA","53","5","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("354","LOS HORNEROS","41","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("355","BANCO PROVINCIA ROJO","61","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("356","PILAR DEL LAGO","46","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("357","LARENA/LOS QUINCHOS","47","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("358","ARANJUEZ \"AMARILLO\"","4","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("359","GOLF CLUB ARGENTINO","34","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("360","HIGHLAND","40","4","3","","2002-02-09 00:00:00","1900-01-01 00:00:00","1","9"); INSERT INTO equipos VALUES("361","LOS QUINCHOS/LARENA","65","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("362","LOS HORNEROS","41","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("363","HARAS DEL PILAR","37","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("364","NAUTICO ESCOBAR","30","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("365","EL MORO","31","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("366","GOLF CLUB ARG. \"B\"","34","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("367","HINDU CLUB","38","4","3","","2002-02-09 00:00:00","1900-01-01 00:00:00","1","10"); INSERT INTO equipos VALUES("368","SAN MIGUEL DE GHISO","36","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("369","LOS CARDALES","20","3","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","1","1"); INSERT INTO equipos VALUES("370","LAS LAJAS \"F\"","44","3","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("371","LAS PRADERAS","15","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("372","MAPUCHE \"A\"","54","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("373","MASCHWITZ","55","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("374","SAN DIEGO \"B\"","28","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("375","LOMAVERDE/SAN CARLOS","80","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("376","LOMA VERDE \"2000\"","80","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("377","MIRAFLORES/PUEYRREDO","53","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("378","MIRAFLORES \"B\"","53","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("379","MIRAFLORES","53","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("380","LA CASCADA","19","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("381","BANCO PROV/SAN DIEGO","61","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("382","NAUTICO ESCOBAR","30","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("383","NAUTICO ESCOBAR","30","7","3","","2002-02-09 00:00:00","1900-01-01 00:00:00","1","2"); INSERT INTO equipos VALUES("384","CAMPO CHICO \"F\"","18","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("385","ARANZAZU \"A\"","9","4","3","","2002-02-09 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("386","BOCA RATON ROJO","12","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("387","PUEYRREDON","64","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("388","ARANZAZU \"F\"","9","3","3","","2002-02-09 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("389","LAS PRADERAS AZUL","15","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("390","BANCO PROV. \"ROJO\"","61","8","1","","2002-02-09 00:00:00","2017-03-07 00:00:00","0","4"); INSERT INTO equipos VALUES("391","CUBA-FATIMA AZUL","27","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("392","LA DELFINA","29","4","3","","2002-02-09 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("393","LA TRADICION","78","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("394","INDIO CUA","26","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("395","PILAR LAGO/PUEYRREDO","46","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("396","BOCA RATON \"F\"","12","5","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("397","MASCHWITZ PRIVADO","52","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("398","MAPUCHE \"B\"/GOLFER´S","54","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("399","GOLFER�S","35","1","1","","2002-02-09 00:00:00","2015-07-20 00:00:00","0","1"); INSERT INTO equipos VALUES("400","LOMA VERDE / ARANJUEZ","80","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("401","PILAR DEL LAGO","46","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("402","LOS ÁLAMOS / LOS TRONCOS","6","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("403","ARANJUEZ","4","1","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("404","LOS LAGARTOS \"VERDE\"","49","8","1","","2002-02-09 00:00:00","1900-01-01 00:00:00","1","8"); INSERT INTO equipos VALUES("405","BANCO PROVINCIA \"BAPRO ORO\"","61","1","1","","2002-03-05 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("406","SAN DIEGO \"BLANCO\"","28","3","1","","2002-03-21 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("407","LAS PRADERAS \"A\"","15","8","1","","2002-03-08 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("408","PUEYRREDON","64","1","1","","2002-03-18 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("409","CUBA-FATIMA","27","1","1","","2002-03-20 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("410","ARMENIA","7","8","1","53","2002-03-22 00:00:00","1900-01-01 00:00:00","1","5"); INSERT INTO equipos VALUES("411","CAMPOS DE ALVAREZ","5","1","1","","2002-03-25 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("412","LOS CARDALES \"B\"","20","1","1","","2002-03-26 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("413","BOCA RATON","12","4","4","","2002-03-28 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("414","HARAS DEL PILAR","37","1","1","","2002-03-28 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("416","ARANZAZU \"B\"","9","1","1","","2002-03-28 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("417","BANCO PROVINCIA-VERDE","61","5","1","","2002-04-03 00:00:00","2015-03-09 00:00:00","0","1"); INSERT INTO equipos VALUES("418","LAS LAJAS","44","1","1","","2002-05-02 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("419","HARAS MARIA EUGENIA","39","5","3","","2003-02-10 00:00:00","2015-02-25 00:00:00","0","1"); INSERT INTO equipos VALUES("420","INDIO CUÁ","26","1","1","","2003-02-18 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("421","CAMPOS DE ALVAREZ","5","1","1","","2003-02-18 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("422","LAS PRADERAS","15","1","1","","2003-02-21 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("423","HARAS DEL PILAR \"A\"","37","4","1","","2003-03-10 00:00:00","1900-01-01 00:00:00","1","2"); INSERT INTO equipos VALUES("424","SAN MIGUEL DE GHISO","36","1","1","","2003-03-14 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("425","LOS CARDALES \"VERDE\"","20","8","3","","2003-03-19 00:00:00","1900-01-01 00:00:00","1","1"); INSERT INTO equipos VALUES("426","SAN CARLOS","24","1","1","","2003-03-19 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("427","MIRAFLORES","53","1","1","","2003-03-21 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("428","MIRAFLORES \"A\"","53","8","1","","2003-03-21 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("429","MIRAFLORES","53","7","1","","2003-03-21 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("430","ARMENIA/PILAR DEL LAGO","46","1","1","","2003-03-24 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("431","LOS ÁLAMOS / LOS TRONCOS","6","1","1","","2003-03-25 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("432","LOS ÁLAMOS / LOS TRONCOS","6","1","1","","2003-03-25 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("433","ARANJUEZ","4","1","1","","2003-03-25 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("434","MIRAFLORES","53","6","1","","2003-03-28 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("435","CAMPO CHICO \"BLANCO\"","18","5","1","","2003-03-25 00:00:00","1900-01-01 00:00:00","1","1"); INSERT INTO equipos VALUES("436","CAMPOS DE ALVAREZ","5","4","1","","2003-04-02 00:00:00","2015-03-09 00:00:00","0","1"); INSERT INTO equipos VALUES("437","INDIO CUÁ \"F\"","26","1","3","","2003-04-03 00:00:00","2017-03-13 00:00:00","0","4"); INSERT INTO equipos VALUES("438","INDIO CUÁ","26","1","1","","2003-04-04 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("439","BARRANCAS DE SAN JOSÉ","10","1","1","","2003-09-09 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("440","LA LOMADA \"BLANCO\"","48","4","1","196","2004-03-12 00:00:00","1900-01-01 00:00:00","1","6"); INSERT INTO equipos VALUES("441","LA LOMADA DE PILAR \"F\"","48","5","1","","2004-03-12 00:00:00","2015-03-11 00:00:00","0","1"); INSERT INTO equipos VALUES("442","PILAR DEL LAGO/LA DELFINA","46","4","3","","2004-03-12 00:00:00","2015-03-09 00:00:00","0","1"); INSERT INTO equipos VALUES("443","HIGHLAND","40","3","3","","2004-03-15 00:00:00","1900-01-01 00:00:00","1","9"); INSERT INTO equipos VALUES("444","BOCA RATON","12","8","3","","2004-03-15 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("445","LARENA","47","1","1","","2004-03-16 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("446","BANCO PROV. \"BLANCO\"","61","3","1","","2004-03-16 00:00:00","2016-03-07 00:00:00","0","4"); INSERT INTO equipos VALUES("447","LARENA / LOS QUINCHOS","47","1","1","","2004-03-16 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("448","LOS LAGARTOS VERDE","49","1","1","","2004-03-16 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("449","LOMA VERDE \"2004\"","80","1","1","","2004-03-17 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("450","HINDÚ CLUB","38","1","1","","2004-03-19 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("451","MAPUCHE \"B\"","54","1","1","","2004-03-19 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("452","LOMA VERDE \"2004\"","80","1","1","","2004-03-22 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("453","AYRES DE PILAR","3","1","1","","2004-08-12 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("454","LOS PILARES","63","1","1","","2005-02-28 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("455","MAPUCHE \"CELESTE\"","54","8","5","","2005-03-10 00:00:00","2015-03-26 00:00:00","0","3"); INSERT INTO equipos VALUES("456","MASCHWITZ","55","1","1","","2005-03-10 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("457","LAS PRADERAS ","15","2","1","","2005-03-11 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("458","LA CASUALIDAD","14","5","3","","2005-03-14 00:00:00","2015-02-25 00:00:00","0","1"); INSERT INTO equipos VALUES("459","GOLFER�S","35","1","1","","2005-03-14 00:00:00","2015-07-20 00:00:00","0","1"); INSERT INTO equipos VALUES("460","CUBA (FATIMA) \"BLANCO\"","27","8","1","","2005-03-16 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("461","EL MORO","31","8","4","17","2005-03-16 00:00:00","1900-01-01 00:00:00","1","6"); INSERT INTO equipos VALUES("462","LOMA VERDE \"2007\"","80","4","1","","2005-03-16 00:00:00","1900-01-01 00:00:00","1","8"); INSERT INTO equipos VALUES("463","ARANJUEZ","4","5","1","","2005-03-17 00:00:00","1900-01-01 00:00:00","1","1"); INSERT INTO equipos VALUES("464","MASCHWITZ \"F\"","55","1","1","","2005-03-17 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("465","SANTA CATALINA \"F\"","68","1","1","","2005-03-18 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("466","BANCO PROV. \"VERDE\"","61","4","1","","2005-03-21 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("467","LOS ÁLAMOS / LOS TRONCOS","6","1","1","","2005-03-23 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("468","CAMPOS DE ALVAREZ ","5","1","1","","2005-03-24 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("469","MIRAFLORES \"2005\" \"F\"","53","5","3","","2005-03-24 00:00:00","2015-03-11 00:00:00","0","1"); INSERT INTO equipos VALUES("470","MIRAFLORES \"F\"","53","1","1","","2005-03-28 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("471","BOCA RATON","12","1","1","","2006-03-10 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("472","BOCA RATÓN","12","1","1","","2006-03-10 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("473","LA LOMADA \"VERDE\"","48","4","3","","2006-03-13 00:00:00","2017-03-09 00:00:00","0","1"); INSERT INTO equipos VALUES("474","LA LOMADA DE PILAR","48","1","1","","2006-03-13 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("475","LA TRADICIÓN","78","1","1","","2006-03-14 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("476","MASCHWITZ ","55","2","3","","2006-03-15 00:00:00","2017-03-08 00:00:00","0","1"); INSERT INTO equipos VALUES("477","LA CASCADA \"F\"","19","2","3","","2006-03-15 00:00:00","2017-03-10 00:00:00","0","8"); INSERT INTO equipos VALUES("478","INDIO CUÁ \"F\"","26","2","1","","2006-03-13 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("479","LAS LAJAS","44","2","3","","2006-03-16 00:00:00","2017-03-10 00:00:00","0","4"); INSERT INTO equipos VALUES("480","LOMA VERDE \"F\"","80","2","1","","2006-03-17 00:00:00","2016-03-09 00:00:00","0","5"); INSERT INTO equipos VALUES("481","ÁLAMOS / TRONCOS","6","8","4","","2006-03-20 00:00:00","1900-01-01 00:00:00","1","7"); INSERT INTO equipos VALUES("482","NAUTICO DE ESCOBAR \"F\"","30","2","1","","2006-03-20 00:00:00","1900-01-01 00:00:00","1","2"); INSERT INTO equipos VALUES("483","LAS LAJAS","44","1","3","","2006-03-21 00:00:00","1900-01-01 00:00:00","1","5"); INSERT INTO equipos VALUES("484","BARRANCAS \"AZUL\"","10","4","4","","2006-03-22 00:00:00","2015-03-12 00:00:00","0","1"); INSERT INTO equipos VALUES("485","BANCO PROV. \"F\"","61","2","1","","2006-03-22 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("486","MIRAFLORES \"F\"","53","1","1","","2006-03-22 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("487","MASCHWITZ \"F\" 2010","55","4","1","","2006-03-23 00:00:00","1900-01-01 00:00:00","1","1"); INSERT INTO equipos VALUES("488","PUEYRREDON","64","1","1","","2006-03-23 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("489","PUEYRREDON","64","1","1","","2006-03-23 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("490","LOS ÁLAMOS / LOS TRONCOS \"F\"","6","1","1","","2006-03-23 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("491","SAN PATRICIO","60","4","3","37","2006-03-23 00:00:00","1900-01-01 00:00:00","1","2"); INSERT INTO equipos VALUES("492","PUEYRREDON","64","1","1","","2006-03-29 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("493","PILAR DEL LAGO","46","8","5","","2007-03-14 00:00:00","2015-03-11 00:00:00","0","1"); INSERT INTO equipos VALUES("494","PILAR DEL LAGO","46","1","1","","2007-03-14 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("495","MASCHWITZ \"CELESTE\"","55","1","1","","2007-03-14 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("496","MASCHWITZ \"B\"","55","1","1","","2007-03-14 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("497","MASCHWITZ","55","1","1","","2007-03-14 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("498","SAN CARLOS ","24","1","1","","2007-03-15 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("499","LOS CASTORES \"F\"","66","4","4","","2007-03-15 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("500","GOLFER´S \"C\"","35","1","1","","2007-03-19 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("501","LOS CARDALES \"VERDE\"","20","2","3","","2007-03-21 00:00:00","2017-03-09 00:00:00","0","1"); INSERT INTO equipos VALUES("502","BANCO PROV. \"BLANCO\"","61","1","1","","2007-03-22 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("503","HINDU CLUB","38","3","1","","2007-03-22 00:00:00","1900-01-01 00:00:00","1","10"); INSERT INTO equipos VALUES("504","SAN DIEGO","28","2","1","","2007-03-22 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("505","SAN DIEGO \"B\"","28","1","1","","2007-03-22 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("506","EL MORO","31","1","1","","2007-03-23 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("507","AYRES DE PILAR \"BLANCO\"","3","4","1","","2008-03-10 00:00:00","1900-01-01 00:00:00","1","10"); INSERT INTO equipos VALUES("508","CUBA (FATIMA) \"AZUL\"","27","1","1","","2008-03-13 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("509","LOMA VERDE \"F\" 2008","80","1","1","","2008-03-19 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("510","LA TRADICION","78","1","1","","2008-03-27 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("511","PUEYRREDÓN","64","1","1","","2008-12-27 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("512","SAN DIEGO \"F\"","28","4","3","","2008-03-27 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("513","SAN DIEGO \"VERDE\"","28","8","4","","2008-03-27 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("514","PUEYRREDÓN","64","1","1","","2008-03-31 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("515","GOLFER�S","35","1","1","","2008-03-31 00:00:00","2015-07-20 00:00:00","0","1"); INSERT INTO equipos VALUES("516","CAMPO CHICO \"LA BANDA\"","18","4","4","","2008-04-01 00:00:00","1900-01-01 00:00:00","1","1"); INSERT INTO equipos VALUES("517","ARANJUEZ","4","1","1","","2008-03-04 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("518","ARANJUEZ","4","1","1","","2008-04-04 00:00:00","1900-01-01 00:00:00","1","1"); INSERT INTO equipos VALUES("519","VILLA OLIVOS","82","1","1","","2008-04-10 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("520","LARENA \"F\"","47","1","3","","2009-03-11 00:00:00","2016-03-09 00:00:00","0","5"); INSERT INTO equipos VALUES("521","CAMPOS DE ALVAREZ","5","1","1","","2009-03-16 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("522","CAMPOS DE ALVAREZ \"F\"","5","3","3","","2009-03-16 00:00:00","2015-03-09 00:00:00","0","1"); INSERT INTO equipos VALUES("523","MAPUCHE \"AZUL\"","54","2","3","","2009-03-16 00:00:00","2017-03-09 00:00:00","0","3"); INSERT INTO equipos VALUES("524","MAPUCHE \"AZUL\"","54","1","1","","2009-03-16 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("525","BANCO PROV. \"VERDE\"","61","8","3","","2009-03-16 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("526","BANCO PROVINCIA \"AZUL\"","61","1","1","","2009-03-16 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("527","LOS CASTORES ","66","1","1","","2009-03-19 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("528","LOS CASTORES \"F\"","66","8","4","","2009-03-19 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("529","LA TRADICION","78","5","1","41","2009-03-20 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("530","LOMA VERDE \"F\"","80","8","4","","2009-03-20 00:00:00","2015-03-15 00:00:00","0","1"); INSERT INTO equipos VALUES("531","NÁUTICO DE ESCOBAR ","30","1","1","","2009-03-23 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("532","HARAS DEL PILAR \"F\"","37","8","3","","2009-03-27 00:00:00","2017-03-14 00:00:00","0","2"); INSERT INTO equipos VALUES("533","ARANJUEZ","4","4","4","","2009-03-30 00:00:00","2016-03-10 00:00:00","0","1"); INSERT INTO equipos VALUES("534","ARANJUEZ \"F\"","4","7","3","","2009-03-31 00:00:00","1900-01-01 00:00:00","1","1"); INSERT INTO equipos VALUES("535","PILAR DEL ESTE","62","1","1","","2009-03-31 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("536","LOS CASTORES ","66","6","1","","2009-06-29 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("537","LOS PILARES ","63","4","1","","2009-10-02 00:00:00","2016-03-07 00:00:00","0","3"); INSERT INTO equipos VALUES("538","STA M. DE LOS OLIVOS","75","4","1","181","2010-02-24 00:00:00","1900-01-01 00:00:00","1","1"); INSERT INTO equipos VALUES("539","MIRAFLORES NARANJA","53","8","4","","2010-03-08 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("540","BARRANCAS \"GRIS\"","10","4","3","","2010-03-09 00:00:00","2016-03-09 00:00:00","0","5"); INSERT INTO equipos VALUES("541","VILLAGE GOLF & TENNIS CLUB","81","1","1","","2010-03-10 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("542","CAMPOS DE ALVAREZ ","5","8","5","","2010-03-11 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("543","LARENA \"F\"","47","2","1","","2010-03-11 00:00:00","2017-03-23 00:00:00","0","5"); INSERT INTO equipos VALUES("544","INDIO CUA \"F\"","26","3","3","","2010-03-11 00:00:00","1900-01-01 00:00:00","1","5"); INSERT INTO equipos VALUES("545","MASCHWITZ","55","1","1","","2010-03-11 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("546","HARAS DEL PILAR","37","1","1","","2010-03-11 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("547","MASCHWITZ","55","1","1","","2010-03-11 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("548","EL MORO","31","1","1","","2010-03-12 00:00:00","2015-03-05 00:00:00","0","1"); INSERT INTO equipos VALUES("549","LA LOMADA","48","1","1","","2010-03-15 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("550","EL MORO","31","1","3","","2010-03-15 00:00:00","2015-03-10 00:00:00","0","5"); INSERT INTO equipos VALUES("551","PUEYRREDON","64","3","3","","2010-03-16 00:00:00","2017-03-07 00:00:00","0","4"); INSERT INTO equipos VALUES("552","PILAR DEL LAGO","46","1","1","","2010-03-17 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("553","ALTOS DEL SOL","8","5","3","","2010-03-17 00:00:00","2017-03-10 00:00:00","0","5"); INSERT INTO equipos VALUES("554","PILAR DEL LAGO \"F\"","46","4","4","","2010-03-18 00:00:00","2016-03-10 00:00:00","0","4"); INSERT INTO equipos VALUES("555","NÁUTICO DE ESCOBAR \"F\"","30","1","1","","2010-03-18 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("556","NAUTICO DE ESCOBAR AZUL","30","1","1","","2010-03-18 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("557","SAN DIEGO \"A\"","28","1","1","","2010-03-22 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("559","LOS CASTORES","66","4","4","","2010-03-25 00:00:00","2015-03-17 00:00:00","0","1"); INSERT INTO equipos VALUES("560","LOS CASTORES","66","1","1","","2010-03-25 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("561","HARAS DEL PILAR \"CE\"","37","7","1","","2010-03-31 00:00:00","1900-01-01 00:00:00","1","2"); INSERT INTO equipos VALUES("562","SANTA ANA","69","1","1","","2010-10-15 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("564","SAN PATRICIO \"F\"","60","4","4","37","2011-03-01 00:00:00","1900-01-01 00:00:00","1","2"); INSERT INTO equipos VALUES("565","CAMPO CHICO \"F\"","18","3","1","","2011-03-03 00:00:00","1900-01-01 00:00:00","1","1"); INSERT INTO equipos VALUES("566","HARAS MARÍA EUGENIA B.P.","39","1","1","","2011-03-10 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("567","ARANZAZU \"F\"","9","4","3","","2011-03-10 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("568","LA LOMADA DE PILAR \"F\"","48","3","1","195","2011-03-10 00:00:00","1900-01-01 00:00:00","1","6"); INSERT INTO equipos VALUES("569","SAN DIEGO \"BLANCO\"","28","8","3","","2011-03-10 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("570","LARENA-QUINCHOS JUVENILES 2011","47","1","1","","2011-03-10 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("571","HARAS DEL P. \"F\"","37","3","3","","2011-03-11 00:00:00","1900-01-01 00:00:00","1","2"); INSERT INTO equipos VALUES("572","SAN CARLOS","24","1","1","","2011-03-14 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("573","MAPUCHE","54","3","3","","2011-03-14 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("574","MAPUCHE","54","7","3","","2011-03-14 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("575","BANCO PROV. \"BLANCO\"","61","2","1","","2011-03-14 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("576","BANCO PROV. \"BLANCO\"","61","5","1","","2011-03-14 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("577","BOCA RATON \"F\"","12","3","1","","2011-03-16 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("578","BOCA RATON \"F\"","12","6","1","","2011-03-16 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("579","PILAR DEL LAGO \"F\"","18","2","3","","2011-03-16 00:00:00","2017-03-07 00:00:00","0","1"); INSERT INTO equipos VALUES("580","CAMPO CHICO \"GRIS\"","18","8","1","","2011-03-17 00:00:00","1900-01-01 00:00:00","1","1"); INSERT INTO equipos VALUES("581","LAS PRADERAS ","15","4","1","","2011-03-17 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("582","CAMPO GRANDE","17","7","1","","2011-03-17 00:00:00","2015-03-12 00:00:00","0","1"); INSERT INTO equipos VALUES("583","LA LOMADA \"F\"","48","8","3","","2011-03-21 00:00:00","2017-03-07 00:00:00","0","1"); INSERT INTO equipos VALUES("584","HARAS DEL PILAR \"CE\"","37","6","1","","2011-03-23 00:00:00","2017-03-14 00:00:00","0","2"); INSERT INTO equipos VALUES("585","CUBA (FATIMA) \"AZUL\"","27","3","3","","2011-03-28 00:00:00","2015-03-11 00:00:00","0","1"); INSERT INTO equipos VALUES("586","ARANJUEZ","4","1","1","","2011-03-31 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("587","LOS CARDALES \"BLANCO\"","20","8","3","","2012-02-22 00:00:00","1900-01-01 00:00:00","1","1"); INSERT INTO equipos VALUES("588","HARAS. S. MARIA \"A\"","42","4","1","","2012-03-06 00:00:00","1900-01-01 00:00:00","1","1"); INSERT INTO equipos VALUES("589","TERRAVISTA","83","5","1","","2012-03-09 00:00:00","1900-01-01 00:00:00","1","7"); INSERT INTO equipos VALUES("590","PILAR DEL LAGO \"F\"","46","7","1","28","2012-03-12 00:00:00","1900-01-01 00:00:00","1","5"); INSERT INTO equipos VALUES("591","LA DELFINA","29","1","1","","2012-03-14 00:00:00","2016-03-08 00:00:00","0","1"); INSERT INTO equipos VALUES("592","LOMA VERDE","80","1","1","","2012-03-14 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("593","LA LOMADA \"AZUL\"","48","7","1","195","2012-03-14 00:00:00","1900-01-01 00:00:00","1","6"); INSERT INTO equipos VALUES("595","CAMPO GRANDE","17","1","3","","2012-03-14 00:00:00","2017-03-01 00:00:00","0","4"); INSERT INTO equipos VALUES("596","SAN MIGUEL DE GHISO","36","5","1","","2012-03-14 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("597","NÁUTICO ESCOBAR \"AZUL\"","30","8","4","","2012-03-15 00:00:00","1900-01-01 00:00:00","1","2"); INSERT INTO equipos VALUES("598","LARENA-LOS QUINCHOS","47","7","1","","2012-03-15 00:00:00","2015-03-11 00:00:00","0","1"); INSERT INTO equipos VALUES("599","LOS CASTORES","66","3","1","","2012-03-16 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("600","HIGHLAND","40","1","3","","2012-03-16 00:00:00","1900-01-01 00:00:00","1","9"); INSERT INTO equipos VALUES("602","CUBA (FATIMA)","27","2","1","","2012-03-16 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("603","MAPUCHE-MIRAFLORES-PUEY SMAXI","54","1","1","","2012-03-16 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("604","MASCHWITZ \"F\"","55","3","1","","2012-03-16 00:00:00","1900-01-01 00:00:00","1","1"); INSERT INTO equipos VALUES("605","MASCHWITZ - JUVENILES","55","1","1","","2012-03-19 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("606","MASCHWITZ - PROMOCIONAL","55","1","1","","2012-03-19 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("607","CUBA- FÁTIMA","27","1","1","","2012-04-19 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("608","AYRES DE PILAR","3","7","1","","2012-03-20 00:00:00","1900-01-01 00:00:00","1","10"); INSERT INTO equipos VALUES("609","AYRES DE PILAR","3","1","1","","2012-03-20 00:00:00","1900-01-01 00:00:00","1","10"); INSERT INTO equipos VALUES("610","ARANZAZU \"AMARILLO\"","9","2","1","","2012-03-20 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("611","HARAS DEL PILAR B.P.","37","1","1","","2012-03-20 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("612","CUBA (FATIMA) \"NEGRO\"","27","8","4","","2012-03-21 00:00:00","1900-01-01 00:00:00","1","5"); INSERT INTO equipos VALUES("613","LA CASCADA \"F\"","19","4","3","","2012-03-26 00:00:00","2015-03-26 00:00:00","0","1"); INSERT INTO equipos VALUES("614","LA CASCADA","19","8","5","","2012-03-26 00:00:00","2015-03-09 00:00:00","0","1"); INSERT INTO equipos VALUES("615","AYRES DE PILAR \"ROJO\"","3","4","4","","2012-03-29 00:00:00","2016-03-11 00:00:00","0","8"); INSERT INTO equipos VALUES("616","LA TRADICION","78","1","1","","2012-03-30 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("617","HARAS DEL PILAR \"LP\"","37","7","1","","2012-03-30 00:00:00","1900-01-01 00:00:00","1","2"); INSERT INTO equipos VALUES("618","SEPTIEMBRE \"F\"","71","4","4","","2013-03-04 00:00:00","2017-03-23 00:00:00","0","4"); INSERT INTO equipos VALUES("619","ARANJUEZ","4","1","1","","2013-03-04 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("620","SAN JORGE VILLAGE","67","8","5","","2013-03-04 00:00:00","2016-03-30 00:00:00","0","1"); INSERT INTO equipos VALUES("621","LA TRADICION","78","8","3","41","2013-03-07 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("622","BARRANCAS DE SAN JOSE","10","1","1","","2013-03-11 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("623","SAN CARLOS","24","1","3","","2013-03-11 00:00:00","2017-03-08 00:00:00","0","1"); INSERT INTO equipos VALUES("625","LA LOMADA DE PILAR ","48","6","1","195","2013-03-13 00:00:00","1900-01-01 00:00:00","1","6"); INSERT INTO equipos VALUES("626","LARENA / QUINCHOS SEL D","47","1","1","","2013-03-13 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("627","SAN PATRICIO","60","1","1","","2013-03-13 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("628","MIRAFLORES 2015 \"F\"","53","4","1","","2013-03-13 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("629","CUBA (FATIMA) \"AZUL\"","27","1","1","","2013-03-13 00:00:00","2015-03-11 00:00:00","0","1"); INSERT INTO equipos VALUES("630","MAPUCHE","54","1","1","","2013-03-15 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("631","MAPUCHE \"AZUL\"","54","8","4","","2013-03-15 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("632","CAMPOS DE ALVAREZ","5","1","3","","2013-03-15 00:00:00","2015-03-09 00:00:00","0","1"); INSERT INTO equipos VALUES("633","GOLFER´S \"C\"","35","4","4","179","2013-03-15 00:00:00","1900-01-01 00:00:00","1","2"); INSERT INTO equipos VALUES("634","LA DELFINA LD","29","8","3","","2013-03-18 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("635","AYRES DE PILAR","3","6","1","","2013-03-19 00:00:00","1900-01-01 00:00:00","1","10"); INSERT INTO equipos VALUES("636","PUEYRREDON","64","7","1","","2013-03-21 00:00:00","2017-03-07 00:00:00","0","4"); INSERT INTO equipos VALUES("637","SAN DIEGO \"AMARILLO\" \"F\"","28","3","1","","2013-03-21 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("638","SAN DIEGO","28","1","1","","2013-03-21 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("639","TERRAVISTA F LAJAS","83","1","1","","2013-03-22 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("640","HARAS S. MARIA \"VERDE\" \"F\"","42","5","1","","2013-03-26 00:00:00","2017-03-06 00:00:00","0","1"); INSERT INTO equipos VALUES("641","SANTA ANA \"F\"","69","5","3","","2013-03-26 00:00:00","2016-03-08 00:00:00","0","1"); INSERT INTO equipos VALUES("642","FINCAS DEL PILAR","33","1","1","","2013-11-21 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("643","ALTOS DEL SOL","8","4","3","","2014-02-28 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("644","BANCO PROV. \"AMARILLO\"","61","4","3","","2014-03-11 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("645","SANTA ANA \"F\"","69","4","4","","2014-03-11 00:00:00","1900-01-01 00:00:00","1","1"); INSERT INTO equipos VALUES("646","PUEYRREDON","64","1","1","","2014-03-12 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("647","SAN CARLOS","24","8","3","","2014-03-12 00:00:00","1900-01-01 00:00:00","1","1"); INSERT INTO equipos VALUES("648","MASCHWITZ","55","1","1","","2014-03-12 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("649","MASCHWITZ","55","7","3","","2014-03-12 00:00:00","2016-03-18 00:00:00","0","1"); INSERT INTO equipos VALUES("650","PILAR DEL LAGO \"F\"","46","1","1","28","2014-03-12 00:00:00","1900-01-01 00:00:00","1","5"); INSERT INTO equipos VALUES("651","LOS CARDALES \"BLANCO\"","20","2","1","","2014-03-12 00:00:00","1900-01-01 00:00:00","1","1"); INSERT INTO equipos VALUES("652","LA LOMADA DE PILAR","48","1","1","195","2014-03-12 00:00:00","1900-01-01 00:00:00","1","6"); INSERT INTO equipos VALUES("654","NÁUTICO ESCOBAR \"F\"","30","4","4","","2014-03-12 00:00:00","2017-03-07 00:00:00","0","2"); INSERT INTO equipos VALUES("655","SAN PATRICIO","60","1","1","","2014-03-13 00:00:00","2015-03-13 00:00:00","0","1"); INSERT INTO equipos VALUES("656","CAMPO GRANDE","17","4","3","233","2014-03-13 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("657","CAMPO GRANDE","17","8","4","233","2014-03-13 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("658","CAMPO GRANDE","17","6","1","","2014-03-13 00:00:00","2015-03-12 00:00:00","0","1"); INSERT INTO equipos VALUES("659","AYRES DE PILAR","3","8","4","","2014-03-14 00:00:00","1900-01-01 00:00:00","1","10"); INSERT INTO equipos VALUES("660","NAUTICO ESCOBAR \"F\"","30","3","3","","2014-03-14 00:00:00","2015-03-13 00:00:00","0","1"); INSERT INTO equipos VALUES("661","LOS PILARES","63","1","1","","2014-03-14 00:00:00","2017-03-07 00:00:00","0","3"); INSERT INTO equipos VALUES("662","HARAS DEL P. \"BLANCO\"","37","3","1","","2014-03-17 00:00:00","1900-01-01 00:00:00","1","2"); INSERT INTO equipos VALUES("663","HARAS DEL PILAR \"LP\"","37","6","1","","2014-03-17 00:00:00","1900-01-01 00:00:00","1","2"); INSERT INTO equipos VALUES("664","GOLFER´S \"F\"","35","2","1","177","2014-03-21 00:00:00","1900-01-01 00:00:00","1","2"); INSERT INTO equipos VALUES("665","HARAS DEL PILAR","37","1","1","","2014-03-27 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("666","HARAS DEL PILAR","37","1","1","","2014-03-27 00:00:00","1900-01-01 00:00:00","0","1"); INSERT INTO equipos VALUES("667","ARANZAZU \"F\"","9","1","3","","2014-03-27 00:00:00","2016-03-08 00:00:00","0","4"); INSERT INTO equipos VALUES("668","PILAR DEL ESTE SANCIONADO","62","5","1","","2014-12-30 00:00:00","2016-03-30 00:00:00","0","1"); INSERT INTO equipos VALUES("669","LOS QUINCHOS","65","7","1","","2015-01-12 00:00:00","2015-03-26 00:00:00","0","1"); INSERT INTO equipos VALUES("672","HARAS MARIA EUGENIA","39","4","1","168","2015-02-25 00:00:00","1900-01-01 00:00:00","1","2"); INSERT INTO equipos VALUES("673","ARMENIA","7","1","3","","2015-02-25 00:00:00","2017-03-07 00:00:00","0","6"); INSERT INTO equipos VALUES("674","LA CASUALIDAD","14","4","3","192","2015-02-25 00:00:00","1900-01-01 00:00:00","1","5"); INSERT INTO equipos VALUES("675","SAN PATRICIO \"F\"","60","3","3","","2015-03-03 00:00:00","2016-03-10 00:00:00","0","1"); INSERT INTO equipos VALUES("676","PILAR DEL LAGO \"F\"","46","3","1","28","2015-03-09 00:00:00","1900-01-01 00:00:00","1","5"); INSERT INTO equipos VALUES("677","BANCO PROV. \"BLANCO\"","61","9","1","","2015-03-09 00:00:00","2016-03-07 00:00:00","0","4"); INSERT INTO equipos VALUES("679","LA LOMADA \"ROJO \"","48","4","4","195","2015-03-10 00:00:00","1900-01-01 00:00:00","1","6"); INSERT INTO equipos VALUES("680","LA LOMADA \"BLANCO\"","48","7","3","196","2015-03-10 00:00:00","1900-01-01 00:00:00","1","6"); INSERT INTO equipos VALUES("681","MIRAFLORES","53","3","1","","2015-03-10 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("682","CAMPO CHICO \"LA CARAVANA\"","18","8","5","","2015-03-11 00:00:00","1900-01-01 00:00:00","1","1"); INSERT INTO equipos VALUES("683","BOCA RATON \"F\"","12","7","3","","2015-03-11 00:00:00","2017-03-07 00:00:00","0","3"); INSERT INTO equipos VALUES("684","MAPUCHE \"BLANCO\"","54","4","3","","2015-03-11 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("685","LAS LAJAS","44","7","1","","2015-03-11 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("686","NAUTICO ESCOBAR","30","6","1","","2015-03-11 00:00:00","2017-03-07 00:00:00","0","2"); INSERT INTO equipos VALUES("687","HARAS DEL P. \"ROJO\"","37","3","3","","2015-03-11 00:00:00","1900-01-01 00:00:00","1","2"); INSERT INTO equipos VALUES("688","HARAS DEL PILAR \"F\"","37","1","3","","2015-03-11 00:00:00","1900-01-01 00:00:00","1","2"); INSERT INTO equipos VALUES("689","LOS LAGARTOS \"BLANCO\"","49","8","5","","2015-03-11 00:00:00","2017-03-08 00:00:00","0","3"); INSERT INTO equipos VALUES("690","BARRANCAS \"AZUL\"","10","3","3","192","2015-03-12 00:00:00","1900-01-01 00:00:00","1","6"); INSERT INTO equipos VALUES("691","LAS LAJAS","44","9","1","","2015-03-13 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("692","SAN PATRICIO","60","8","5","","2015-03-13 00:00:00","2017-03-29 00:00:00","0","1"); INSERT INTO equipos VALUES("693","SAN PATRICIO","60","7","3","37","2015-03-13 00:00:00","1900-01-01 00:00:00","1","2"); INSERT INTO equipos VALUES("694","LOMA VERDE ","80","2","1","","2015-03-15 00:00:00","1900-01-01 00:00:00","1","7"); INSERT INTO equipos VALUES("695","LOMA VERDE","80","8","3","","2015-03-15 00:00:00","1900-01-01 00:00:00","1","8"); INSERT INTO equipos VALUES("696","HARAS MARIA ELENA","86","4","4","5","2015-03-16 00:00:00","1900-01-01 00:00:00","1","6"); INSERT INTO equipos VALUES("697","LOS HORNEROS \"F\"","41","8","4","","2015-03-16 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("698","ALAMOS/TRONCOS","79","5","3","","2015-03-16 00:00:00","2016-03-08 00:00:00","0","7"); INSERT INTO equipos VALUES("699","LOS CASTORES \"B\"","66","3","3","","2015-03-17 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("700","LAS PRADERAS ","15","6","1","","2015-03-18 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("701","HINDU CLUB \"F\"","38","3","3","","2015-03-19 00:00:00","2016-03-10 00:00:00","0","7"); INSERT INTO equipos VALUES("702","CAMPO CHICO \"ATLAS\"","18","4","4","","2015-03-20 00:00:00","1900-01-01 00:00:00","1","1"); INSERT INTO equipos VALUES("703","PILAR DEL LAGO \"F\"","46","8","5","28","2016-03-02 00:00:00","1900-01-01 00:00:00","1","5"); INSERT INTO equipos VALUES("704","BANCO PROV. \"VERDE\"","61","2","3","","2016-03-07 00:00:00","2017-03-07 00:00:00","0","4"); INSERT INTO equipos VALUES("705","LA LOMADA","48","8","5","195","2016-03-08 00:00:00","1900-01-01 00:00:00","1","6"); INSERT INTO equipos VALUES("706","LA LOMADA \"CELESTE\"","48","7","3","196","2016-03-08 00:00:00","1900-01-01 00:00:00","1","6"); INSERT INTO equipos VALUES("707","SEPTIEMBRE \"F\"","71","3","3","","2016-03-08 00:00:00","1900-01-01 00:00:00","1","5"); INSERT INTO equipos VALUES("708","NAUTICO ESCOBAR","30","1","3","","2016-03-08 00:00:00","1900-01-01 00:00:00","1","2"); INSERT INTO equipos VALUES("709","SAN PATRICIO \"F\"","60","1","3","37","2016-03-08 00:00:00","1900-01-01 00:00:00","1","2"); INSERT INTO equipos VALUES("710","SAN CARLOS","24","5","1","","2016-03-09 00:00:00","1900-01-01 00:00:00","1","1"); INSERT INTO equipos VALUES("711","LARENA \"F\"","47","5","1","","2016-03-09 00:00:00","1900-01-01 00:00:00","1","7"); INSERT INTO equipos VALUES("712","HINDU CLUB \"F\"","38","2","1","","2016-03-10 00:00:00","1900-01-01 00:00:00","1","10"); INSERT INTO equipos VALUES("713","MAYLING","87","8","5","243","2016-03-10 00:00:00","1900-01-01 00:00:00","1","5"); INSERT INTO equipos VALUES("714","INDIO CUA \"F\"","26","4","4","","2016-03-11 00:00:00","2017-03-13 00:00:00","0","1"); INSERT INTO equipos VALUES("715","AYRES DE PILAR \"AMARILLO\"","3","3","3","","2016-03-11 00:00:00","1900-01-01 00:00:00","1","10"); INSERT INTO equipos VALUES("716","ALTOS DEL SOL \"F\"","8","8","5","","2016-03-14 00:00:00","1900-01-01 00:00:00","1","7"); INSERT INTO equipos VALUES("717","LOS CASTORES","66","8","5","","2016-03-15 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("718","LOS CASTORES \"A\"","66","7","3","","2016-03-15 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("719","ARANZAZU \"F\"","9","2","1","","2016-03-16 00:00:00","1900-01-01 00:00:00","1","1"); INSERT INTO equipos VALUES("720","SAN DIEGO \"VERDE\" \"F\"","28","3","1","","2016-03-18 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("721","LOMA VERDE \"MCC\" \"F\"","55","6","1","203","2016-03-28 00:00:00","2017-03-07 00:00:00","0","1"); INSERT INTO equipos VALUES("722","CAMPO GRANDE","17","7","3","233","2017-03-01 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("723","LA LOMADA \"VERDE\"","48","3","3","196","2017-03-02 00:00:00","1900-01-01 00:00:00","1","6"); INSERT INTO equipos VALUES("724","HINDU CLUB \"B\"","38","7","3","","2017-03-02 00:00:00","2017-03-15 00:00:00","0","1"); INSERT INTO equipos VALUES("725","GOLFER´S \"F\"","35","3","3","178","2017-03-03 00:00:00","1900-01-01 00:00:00","1","2"); INSERT INTO equipos VALUES("727","TERRAVISTA \"F\"","83","8","5","","2017-03-03 00:00:00","1900-01-01 00:00:00","1","7"); INSERT INTO equipos VALUES("728","HS SANTA MARIA \"VERDE\"","42","4","4","","2017-03-06 00:00:00","1900-01-01 00:00:00","1","1"); INSERT INTO equipos VALUES("729","HARAS SANTA MARIA ","42","1","3","","2017-03-06 00:00:00","2017-03-09 00:00:00","0","1"); INSERT INTO equipos VALUES("730","MAPUCHE \"AZUL\"","54","9","1","","2017-03-06 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("731","BANCO PROVINCIA","61","3","3","","2017-03-06 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("732","LOS PILARES","63","8","5","","2017-03-07 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("733","BOCA RATON \"F\"","12","1","3","","2017-03-07 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("735","PUEYRREDON \"F\"","64","8","4","","2017-03-07 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("736","PUEYRREDON","64","6","1","","2017-03-07 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("737","NAUTICO DE ESCOBAR \"F\"","30","3","3","","2017-03-07 00:00:00","1900-01-01 00:00:00","1","2"); INSERT INTO equipos VALUES("738","MASCHWITZ CC","55","9","1","","2017-03-07 00:00:00","1900-01-01 00:00:00","1","1"); INSERT INTO equipos VALUES("739","MASCHWITZ CLUB \"TRICOLOR\" \"D\"","55","8","5","","2017-03-08 00:00:00","1900-01-01 00:00:00","1","1"); INSERT INTO equipos VALUES("740","MASCHWITZ \"F\"","55","6","1","","2017-03-08 00:00:00","1900-01-01 00:00:00","1","1"); INSERT INTO equipos VALUES("741","PILAR DEL LAGO \"F\"","46","9","1","28","2017-03-08 00:00:00","1900-01-01 00:00:00","1","5"); INSERT INTO equipos VALUES("742","SAN MIGUEL DE GHISO","36","8","5","","2017-03-09 00:00:00","1900-01-01 00:00:00","1","1"); INSERT INTO equipos VALUES("743","LAS PRADERAS \"F\"","15","4","4","","2017-03-10 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("744","LAS PRADERAS \"F\"","15","7","3","","2017-03-10 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("745","LOS ALAMOS \"F\"","6","3","3","","2017-03-10 00:00:00","1900-01-01 00:00:00","1","6"); INSERT INTO equipos VALUES("746","LA CASCADA \"F\"","19","9","1","","2017-03-10 00:00:00","1900-01-01 00:00:00","1","9"); INSERT INTO equipos VALUES("747","LOMA VERDE \"F\"","80","1","3","","2017-03-10 00:00:00","2017-03-28 00:00:00","0","7"); INSERT INTO equipos VALUES("748","LOS PILARES","63","4","4","","2017-03-13 00:00:00","1900-01-01 00:00:00","1","5"); INSERT INTO equipos VALUES("749","HARAS MARIA VICTORIA","89","4","4","","2017-03-14 00:00:00","1900-01-01 00:00:00","1","1"); INSERT INTO equipos VALUES("750","LOS CARDALES \"VERDE\" \"F\"","20","9","1","","2017-03-15 00:00:00","1900-01-01 00:00:00","1","1"); INSERT INTO equipos VALUES("751","SAN DIEGO \"F\"","28","9","1","","2017-03-16 00:00:00","1900-01-01 00:00:00","1","3"); INSERT INTO equipos VALUES("752","INDIO CUA \"F\"","26","7","3","","2017-03-17 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO equipos VALUES("753","INDIO CUA \"F\"","26","6","1","","2017-03-17 00:00:00","1900-01-01 00:00:00","1","7"); INSERT INTO equipos VALUES("754","ARANZAZU","9","6","1","","2017-03-29 00:00:00","1900-01-01 00:00:00","1","4"); INSERT INTO ganadorestorneos VALUES("1","476","2016-02-16 00:00:00"); INSERT INTO ganadorestorneos VALUES("3","406","2016-02-16 00:00:00"); INSERT INTO ganadorestorneos VALUES("4","388","2016-02-16 00:00:00"); INSERT INTO ganadorestorneos VALUES("5","367","2016-02-16 00:00:00"); INSERT INTO ganadorestorneos VALUES("6","564","2016-02-16 00:00:00"); INSERT INTO ganadorestorneos VALUES("8","109","2016-02-16 00:00:00"); INSERT INTO ganadorestorneos VALUES("19","234","2016-02-16 00:00:00"); INSERT INTO ganadorestorneos VALUES("20","512","2016-02-16 00:00:00"); INSERT INTO ganadorestorneos VALUES("21","130","2016-02-16 00:00:00"); INSERT INTO ganadorestorneos VALUES("22","190","2016-02-16 00:00:00"); INSERT INTO ganadorestorneos VALUES("23","591","2016-02-16 00:00:00"); INSERT INTO ganadorestorneos VALUES("24","564","2016-02-16 00:00:00"); INSERT INTO ganadorestorneos VALUES("26","214","2016-02-16 00:00:00"); INSERT INTO ganadorestorneos VALUES("31","404","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("32","189","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("34","425","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("35","163","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("39","205","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("40","590","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("41","663","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("54","575","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("55","485","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("56","662","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("57","687","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("58","229","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("59","462","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("60","672","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("61","684","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("62","245","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("63","640","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("64","609","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("65","518","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("66","480","2016-02-16 00:00:00"); INSERT INTO ganadorestorneos VALUES("67","369","2016-02-16 00:00:00"); INSERT INTO ganadorestorneos VALUES("68","130","2016-02-16 00:00:00"); INSERT INTO ganadorestorneos VALUES("69","697","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("71","589","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("72","575","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("73","664","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("74","593","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("75","608","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("76","383","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("77","649","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("78","502","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("79","557","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("80","681","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("81","687","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("83","580","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("84","225","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("87","695","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("88","625","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("89","635","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("90","507","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("91","245","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("92","662","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("93","661","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("94","473","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("95","672","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("96","608","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("97","590","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("100","687","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("101","502","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("102","628","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("103","684","2015-12-10 00:00:00"); INSERT INTO ganadorestorneos VALUES("105","205","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("106","680","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("107","234","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("108","163","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("109","407","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("110","657","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("112","106","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("113","485","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("114","719","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("115","478","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("117","662","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("118","568","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("120","581","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("121","104","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("122","507","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("123","245","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("124","596","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("125","557","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("126","652","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("127","680","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("128","485","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("130","712","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("131","705","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("132","657","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("133","688","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("134","170","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("135","568","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("136","676","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("137","646","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("138","662","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("139","462","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("140","628","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("141","245","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("142","429","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("143","199","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("144","460","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("145","324","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("147","434","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("148","234","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("149","463","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("150","568","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("151","650","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("152","109","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("153","104","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("154","567","2016-12-23 00:00:00"); INSERT INTO ganadorestorneos VALUES("155","659","2016-12-23 00:00:00"); INSERT INTO habilitacionestranjugadores VALUES("1","2613","121","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","102","375","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","161","479","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","180","479","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","188","189","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","212","459","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","226","664","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","241","378","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","254","109","11","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","255","378","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","261","378","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","270","109","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","320","385","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","322","385","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","335","249","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","350","229","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","355","384","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","357","384","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","368","331","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","370","331","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","381","115","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","384","229","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","386","229","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","387","565","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","392","229","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","393","229","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","394","331","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","398","229","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","400","115","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","404","115","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","428","364","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","446","518","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","452","375","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","454","518","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","456","420","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","495","544","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","526","212","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","570","375","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","596","126","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","604","126","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","623","462","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","642","400","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","643","375","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","708","503","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","723","503","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","727","112","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","738","112","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","763","134","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","769","134","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","777","134","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","778","364","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","784","135","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","802","135","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","855","138","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","862","464","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","863","201","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","864","476","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","864","476","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","866","347","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","868","201","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","874","201","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","880","373","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","881","373","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","884","201","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","899","140","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","910","142","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","948","501","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","950","501","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1001","687","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1008","134","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1018","200","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1068","148","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1078","604","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1079","518","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1084","518","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1119","109","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1136","121","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1170","518","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1171","518","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1173","518","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1235","138","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1239","139","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1252","120","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1275","135","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1298","501","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1309","212","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1349","115","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1378","380","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1433","189","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1491","201","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1555","189","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1572","674","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1586","443","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1589","571","4","2015-12-31 00:00:00","AUTORIZADO A JUGAR PROP DE LA TIA POR CD"); INSERT INTO habilitacionestranjugadores VALUES("2","1596","476","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1598","364","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1622","375","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1630","121","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1669","380","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1702","166","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1737","518","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1740","518","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1753","139","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1760","201","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1830","140","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1858","567","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1863","148","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1873","148","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1890","628","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1892","353","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1897","469","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1897","628","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1899","108","11","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1899","628","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1917","378","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1923","702","6","2015-09-30 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1951","135","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1960","135","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","1994","176","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2008","139","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2053","250","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2070","518","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2078","518","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2084","518","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2087","190","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2091","190","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2092","190","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2137","200","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2153","229","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2204","200","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2244","501","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2248","651","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2256","213","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2302","229","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2310","166","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2311","163","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2311","166","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2313","166","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2354","219","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2367","201","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2376","651","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2378","367","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2389","384","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2403","331","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2433","139","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2447","651","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2450","389","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2506","190","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2512","479","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2519","220","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2523","220","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2540","376","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2581","163","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2581","166","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2582","163","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2622","420","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2634","389","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2644","190","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2729","200","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2817","126","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2822","108","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2903","111","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2911","115","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2921","229","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2923","115","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2925","360","8","2015-12-31 00:00:00","EXCEPCIÓN POR EDAD EN SENIOR 2015"); INSERT INTO habilitacionestranjugadores VALUES("2","2934","119","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2952","523","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","2977","557","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3071","190","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3082","533","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3089","518","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3103","557","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3109","557","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3113","134","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3118","353","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3157","126","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3194","353","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3208","189","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3216","218","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3244","466","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3264","384","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3265","215","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3316","220","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3349","360","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3352","518","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3355","518","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3367","106","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3375","380","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3407","213","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3440","115","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3440","229","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3451","115","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3452","115","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3462","139","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3466","200","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3469","200","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3473","200","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3538","557","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3539","361","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3607","389","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3627","557","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3636","420","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3649","119","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3656","119","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3677","119","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3725","119","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3788","575","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3799","518","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3849","557","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3850","557","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3911","331","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3913","115","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3924","115","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3941","389","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3941","457","8","2015-12-31 00:00:00","EXCECION POR EDAD 2015"); INSERT INTO habilitacionestranjugadores VALUES("2","3958","108","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","3992","322","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4002","230","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4026","140","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4041","140","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4073","551","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4075","227","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4081","115","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4127","119","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4196","457","8","2015-12-31 00:00:00","EXCECION POR EDAD 2015"); INSERT INTO habilitacionestranjugadores VALUES("2","4200","213","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4207","518","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4210","375","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4235","479","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4314","115","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4349","459","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4351","227","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4369","201","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4441","602","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4492","322","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4507","206","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4512","543","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4528","134","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4529","134","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4536","108","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4611","325","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4613","229","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4614","229","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4716","694","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4748","557","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4752","503","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4765","126","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4804","201","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4828","651","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4833","651","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4867","518","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4872","518","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4954","538","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4970","575","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4982","115","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","4987","109","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5000","213","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5064","201","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5069","239","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5073","206","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5106","501","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5151","423","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5166","664","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5173","501","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5231","322","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5233","602","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5241","389","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5241","457","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5245","134","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5292","480","8","2015-12-31 00:00:00","EXCEPCIÓN POR EDAD EN SUPER MAXI 2015"); INSERT INTO habilitacionestranjugadores VALUES("2","5358","343","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5409","123","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5416","233","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5443","106","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5514","596","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5515","596","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5555","378","11","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5580","134","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5585","200","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5586","231","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5605","557","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5621","110","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5622","353","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5708","200","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5710","378","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5759","356","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5761","364","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5853","219","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5872","363","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5925","414","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5925","571","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5934","445","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5983","112","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","5988","461","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6014","466","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6017","485","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6025","343","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6036","231","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6037","231","9","2015-02-26 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6041","231","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6042","231","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6097","676","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6127","390","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6157","140","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6160","135","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6198","389","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6206","200","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6238","637","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6257","557","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6258","382","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6267","231","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6274","120","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6280","382","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6282","135","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6284","110","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6291","479","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6305","457","8","2015-12-31 00:00:00","EXCECION POR EDAD 2015"); INSERT INTO habilitacionestranjugadores VALUES("2","6345","387","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6369","457","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6370","190","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6397","479","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6413","389","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6463","579","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6467","392","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6491","322","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6495","485","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6516","365","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6554","393","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6558","393","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6562","393","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6594","518","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6612","698","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6651","115","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6656","176","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6665","395","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6688","557","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6700","326","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6722","476","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6723","393","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6726","518","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6735","518","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6752","401","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6767","501","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6817","109","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6870","135","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6891","478","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6933","310","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6944","416","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","6995","135","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","7000","231","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","7029","443","8","2015-12-31 00:00:00","EXCEPCIÓN POR EDAD EN MAXI 2015"); INSERT INTO habilitacionestranjugadores VALUES("2","7147","410","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","7148","410","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","7158","543","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","7177","343","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","7178","446","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","7178","446","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","7249","343","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","7271","414","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","7380","681","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","7437","239","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","7474","412","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","7494","239","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","7496","482","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","7509","482","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","7531","363","4","2015-12-31 00:00:00","NOTA POR SOCIEDADES NOTISAN S.A. DEBEN TRAER TODOS LOS AÑOS"); INSERT INTO habilitacionestranjugadores VALUES("2","7570","544","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","7591","662","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","7598","406","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","7610","571","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","7617","662","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","7622","662","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","7627","485","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","7637","230","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","7697","394","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","7777","694","8","2015-12-31 00:00:00","EXCEPCION X EDAD EN SUPER MAXI 2015"); INSERT INTO habilitacionestranjugadores VALUES("2","7812","428","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","7815","428","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","7886","123","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","7893","428","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","7929","413","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8008","150","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8050","321","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8085","134","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8085","482","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8100","579","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8140","370","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8143","568","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8187","501","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8216","309","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8217","446","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8306","573","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8311","694","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8312","321","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8326","123","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8351","478","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8365","473","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8509","109","11","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8528","445","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8533","571","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8537","220","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8581","565","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8599","687","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8603","410","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8604","410","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8605","410","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8609","690","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8626","109","11","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8747","675","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8833","396","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8833","396","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8880","317","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8881","525","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8887","644","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8888","405","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8897","604","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8900","445","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8901","543","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8936","369","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","8941","505","6","2015-05-18 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9009","687","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9012","382","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9022","466","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9023","525","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9063","390","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9069","115","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9097","491","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9102","343","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9111","667","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9124","580","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9185","572","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9209","630","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9217","439","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9225","479","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9246","457","8","2015-12-31 00:00:00","EXCECION POR EDAD 2015"); INSERT INTO habilitacionestranjugadores VALUES("2","9335","413","10","2015-05-10 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9346","163","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9389","317","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9390","390","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9422","445","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9428","389","4","2015-10-08 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9435","571","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9442","437","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9446","120","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9447","437","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9461","675","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9509","492","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9551","452","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9577","568","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9592","525","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9629","309","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9654","370","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9656","580","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9664","141","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9712","630","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9729","322","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9757","599","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9779","437","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9803","493","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9813","694","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9854","487","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9864","107","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9884","557","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9899","229","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9904","579","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9912","525","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9915","525","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9941","141","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9948","539","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9949","107","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9956","599","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9961","662","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9966","363","13","2015-09-02 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","9983","557","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10008","492","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10027","502","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10038","425","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10040","141","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10062","116","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10086","388","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10116","116","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10118","651","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10180","602","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10228","525","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10231","502","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10235","672","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10259","646","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10263","646","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10282","406","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10293","540","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10298","222","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10307","222","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10325","239","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10328","520","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10342","222","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10344","222","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10359","443","8","2015-12-31 00:00:00","EXCEPCIÓN POR EDAD EN MAXI 2015"); INSERT INTO habilitacionestranjugadores VALUES("2","10421","151","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10425","544","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10438","383","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10456","560","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10489","118","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10507","363","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10507","662","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10530","396","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10555","664","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10614","353","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10632","699","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10666","518","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10692","139","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10700","573","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10710","383","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10712","383","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10737","425","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10753","151","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10754","151","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10755","151","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10756","478","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10778","502","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10781","317","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10829","118","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10830","518","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10833","118","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10848","630","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10853","107","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10885","116","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","10905","445","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11152","491","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11165","538","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11193","550","8","2015-12-31 00:00:00","Excepción Juveniles 2015"); INSERT INTO habilitacionestranjugadores VALUES("2","11202","600","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11244","204","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11245","204","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11258","217","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11265","317","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11292","649","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11298","534","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11321","499","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11324","130","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11350","429","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11357","699","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11361","699","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11385","144","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11390","652","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11414","476","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11431","688","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11433","688","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11453","688","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11482","699","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11507","429","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11507","429","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11524","550","8","2015-12-31 00:00:00","Excepción Juveniles 2015"); INSERT INTO habilitacionestranjugadores VALUES("2","11528","485","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11566","690","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11578","410","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11591","440","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11592","353","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11665","107","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11672","652","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11675","141","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11686","690","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11693","543","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11776","683","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11784","683","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11796","572","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11810","623","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11832","595","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11842","595","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11843","595","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11844","595","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11852","534","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11866","383","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11879","429","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11911","503","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11917","561","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11926","561","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11929","650","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11969","429","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","11984","479","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12007","573","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12020","675","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12036","561","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12041","423","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12060","537","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12076","681","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12078","512","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12103","534","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12127","571","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12201","683","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12217","687","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12231","617","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12236","204","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12248","429","11","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12252","602","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12279","573","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12308","383","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12338","383","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12344","396","10","2015-05-10 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12350","608","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12354","370","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12355","578","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12355","683","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12356","683","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12360","589","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12365","589","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12366","589","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12368","589","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12413","591","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12419","491","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12426","588","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12427","588","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12428","588","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12429","588","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12430","588","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12432","588","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12433","588","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12434","588","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12435","588","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12436","588","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12438","588","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12439","588","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12442","588","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12445","588","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12448","588","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12451","588","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12453","588","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12454","588","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12455","588","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12516","192","4","2015-10-08 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12554","687","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12556","617","10","2015-12-31 00:00:00","APROBADO 2015 PADRE GUSTAVO SUAREZ"); INSERT INTO habilitacionestranjugadores VALUES("2","12600","217","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12607","238","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12648","584","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12676","590","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12684","590","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12685","590","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12686","584","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12688","589","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12704","593","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12732","583","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12740","238","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12774","617","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12784","557","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12785","557","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12812","114","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12827","473","10","2015-06-25 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12852","623","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12875","478","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12885","217","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12917","429","11","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12929","589","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12936","589","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12947","204","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12971","247","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12978","686","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12980","482","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12984","640","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12985","588","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12986","588","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12987","588","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","12988","588","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13029","217","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13053","625","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13053","625","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13057","625","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13058","625","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13067","224","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13079","635","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13081","635","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13082","635","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13101","700","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13130","623","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13159","690","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13181","534","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13195","429","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13195","434","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13196","429","11","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13196","434","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13197","434","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13201","625","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13233","640","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13234","640","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13235","640","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13236","640","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13238","640","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13239","640","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13241","640","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13243","640","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13245","640","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13246","640","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13247","640","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13249","640","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13250","640","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13253","640","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13254","640","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13255","589","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13256","589","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13258","589","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13264","589","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13267","589","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13339","501","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13340","247","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13359","228","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13370","636","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13380","610","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13389","536","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13399","663","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13403","589","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13426","234","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13445","114","9","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13448","238","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13487","234","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13512","589","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13514","536","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13548","247","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13549","247","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13578","640","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13579","640","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13580","640","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13599","369","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13610","247","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13626","578","5","2015-05-16 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13626","578","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13627","578","5","2015-05-16 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13627","578","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13628","413","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13643","661","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13646","661","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13654","635","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13657","536","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13660","645","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13671","434","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13683","575","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13692","623","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13713","576","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13716","673","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13747","429","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13749","360","8","2015-12-31 00:00:00","EXCEPCIÓN POR EDAD EN SENIOR 2015"); INSERT INTO habilitacionestranjugadores VALUES("2","13764","238","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13771","640","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13776","578","6","2015-06-06 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13777","559","11","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","13789","234","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","14796","228","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","14801","228","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","14802","228","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","14820","235","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","14821","238","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","14901","663","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","15906","588","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","15907","588","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","15936","114","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","15981","434","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","15991","646","6","2015-05-09 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","15991","646","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16015","636","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16024","501","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16029","228","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16037","588","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16039","370","10","2015-05-14 00:00:00","inicio tramite de dominio"); INSERT INTO habilitacionestranjugadores VALUES("2","16040","593","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16061","674","11","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16119","696","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16130","141","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16139","602","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16141","238","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16146","228","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16191","686","6","2015-10-28 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16192","686","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16214","434","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16220","228","11","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16227","693","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16230","652","6","2015-05-25 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16242","693","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16252","663","6","2015-05-08 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16257","360","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16261","625","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16283","234","5","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16284","309","6","2015-06-05 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16291","686","9","2015-05-08 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16294","700","6","2015-09-21 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16306","686","1","2015-12-10 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16306","686","6","2015-12-10 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16308","686","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16315","574","6","2015-05-16 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16318","584","4","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16318","584","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16348","679","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16349","652","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16355","685","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16373","581","4","2015-09-15 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16414","487","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16440","235","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16445","507","4","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16446","679","6","2015-10-14 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16447","679","6","2015-05-08 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16451","236","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16457","641","5","2015-05-08 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16502","679","6","2015-05-21 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16505","685","6","2015-05-29 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16506","663","8","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16515","701","6","2015-05-30 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16523","679","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16524","649","6","2015-06-14 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("2","16551","679","10","2015-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","161","479","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","180","479","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","188","189","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","212","459","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","241","378","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","254","109","11","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","255","109","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","255","681","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","261","378","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","270","109","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","322","385","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","328","388","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","334","388","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","335","249","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","337","610","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","350","580","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","355","384","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","366","115","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","370","331","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","381","115","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","386","229","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","388","565","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","392","516","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","393","516","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","394","331","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","400","115","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","404","115","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","405","516","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","495","544","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","526","212","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","564","462","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","566","462","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","596","126","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","604","126","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","638","400","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","642","480","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","643","476","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","727","112","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","738","385","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","763","134","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","769","134","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","777","134","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","778","694","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","784","214","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","802","345","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","855","138","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","861","138","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","862","464","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","863","201","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","864","476","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","864","476","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","865","487","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","866","347","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","874","201","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","880","373","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","881","373","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","884","201","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","910","211","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","948","651","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","950","501","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1001","687","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1008","134","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1068","148","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1078","604","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1079","169","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1084","311","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1113","477","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1119","109","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1120","378","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1136","478","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1171","464","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1235","138","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1239","139","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1252","120","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1275","214","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1298","501","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1323","400","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1343","503","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1349","115","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1378","380","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1433","691","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1491","201","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1555","189","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1572","674","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1589","571","4","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1590","503","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1596","476","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1598","364","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1620","385","14","2016-07-20 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1622","375","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1669","380","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1702","163","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1737","169","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1753","139","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1760","201","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1830","140","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1839","140","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1863","148","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1890","628","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1892","353","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1897","628","6","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1899","108","11","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1917","378","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1923","702","6","2016-05-06 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1951","214","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1960","345","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","1994","580","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2008","139","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2053","250","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2080","169","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2087","347","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2092","581","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2137","200","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2153","331","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2194","714","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2244","501","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2245","651","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2248","651","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2252","211","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2252","211","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2262","104","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2310","163","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2311","166","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2354","219","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2358","219","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2367","477","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2376","651","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2377","211","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2424","368","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2433","139","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2447","651","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2450","389","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2506","190","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2519","220","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2523","220","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2540","376","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2557","480","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2581","166","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2582","163","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2634","389","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2673","109","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2675","109","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2729","200","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2787","126","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2801","428","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2804","388","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2817","126","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2822","108","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2823","109","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2903","111","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2911","516","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2911","516","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2923","115","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2934","119","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2943","126","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","2977","128","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3109","128","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3113","134","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3118","353","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3157","126","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3159","695","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3194","353","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3208","189","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3316","189","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3349","360","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3352","482","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3367","324","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3375","380","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3376","380","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3386","352","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3407","213","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3409","376","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3440","229","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3440","229","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3452","115","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3455","496","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3462","139","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3467","654","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3469","200","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3472","482","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3473","200","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3506","610","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3539","361","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3607","389","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3627","199","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3649","119","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3655","119","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3656","119","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3662","699","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3708","376","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3725","119","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3755","321","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3788","575","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3811","719","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3832","504","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3849","329","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3850","329","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3852","466","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3881","148","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3911","331","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3913","115","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3924","115","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3935","712","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3941","457","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3941","457","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3954","651","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3958","108","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","3992","322","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4002","368","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4023","213","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4026","140","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4026","211","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4041","140","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4073","551","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4075","227","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4081","115","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4127","119","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4200","213","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4207","610","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4210","480","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4225","369","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4235","479","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4257","698","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4314","115","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4349","459","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4351","227","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4400","240","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4405","243","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4440","148","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4492","322","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4507","120","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4528","134","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4529","134","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4536","108","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4611","325","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4613","384","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4614","565","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4740","148","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4748","329","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4765","126","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4779","483","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4804","201","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4828","651","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4833","651","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4843","140","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4867","463","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4954","538","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4982","115","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","4987","378","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5000","213","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5001","695","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5064","201","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5088","644","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5106","501","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5151","423","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5154","121","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5166","664","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5212","343","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5222","369","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5231","322","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5241","457","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5245","134","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5292","694","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5354","704","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5358","343","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5405","628","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5409","123","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5418","321","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5424","321","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5443","106","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5555","378","11","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5580","134","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5585","200","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5605","208","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5621","353","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5622","353","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5702","501","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5710","378","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5726","485","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5748","676","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5757","579","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5759","356","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5778","482","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5779","579","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5780","707","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5853","697","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5872","363","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5925","571","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","5988","461","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6020","575","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6025","485","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6036","231","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6037","231","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6042","231","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6051","353","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6058","353","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6061","110","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6127","390","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6147","425","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6157","140","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6186","352","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6197","443","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6198","389","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6257","199","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6280","382","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6282","150","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6284","110","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6291","479","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6299","370","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6305","457","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6325","363","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6345","387","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6351","485","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6369","457","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6370","190","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6413","389","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6460","676","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6467","392","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6468","408","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6491","322","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6508","602","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6519","602","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6554","393","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6558","393","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6561","322","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6562","393","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6651","435","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6656","580","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6665","395","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6688","199","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6700","326","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6718","610","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6722","476","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6723","393","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6724","485","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6726","463","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6735","118","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6752","401","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6767","501","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6817","109","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6864","378","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6870","150","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6891","478","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6933","310","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","6944","416","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7032","326","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7041","213","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7147","410","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7148","410","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7158","543","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7177","343","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7178","446","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7271","414","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7324","142","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7380","681","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7427","711","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7437","163","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7474","412","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7496","482","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7508","501","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7531","720","4","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7556","419","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7570","544","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7590","388","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7591","662","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7617","662","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7622","662","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7637","230","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7638","424","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7668","604","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7672","369","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7697","544","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7777","694","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7784","369","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7812","428","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7815","428","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7867","245","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7886","123","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7893","428","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7929","571","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","7984","676","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8008","150","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8050","321","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8073","690","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8085","482","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8100","579","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8135","719","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8143","568","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8187","501","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8216","526","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8264","321","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8306","573","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8326","123","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8351","478","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8359","577","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8365","473","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8509","109","11","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8533","571","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8603","410","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8604","410","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8605","410","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8609","690","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8626","109","11","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8704","568","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8747","370","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8833","396","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8834","413","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8835","413","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8841","396","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8880","525","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8881","525","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8887","644","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8888","405","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8897","604","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8900","445","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8901","543","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8956","476","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","8991","543","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9009","687","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9022","466","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9023","317","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9063","390","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9097","675","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9124","580","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9189","478","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9196","694","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9225","479","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9247","476","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9279","630","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9335","577","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9346","447","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9376","491","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9389","525","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9390","390","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9422","445","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9428","389","4","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9446","120","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9447","120","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9454","390","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9455","390","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9509","492","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9547","126","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9577","568","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9636","502","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9656","580","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9662","425","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9716","466","6","2016-10-27 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9728","720","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9729","322","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9729","575","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9730","317","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9757","599","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9770","568","5","2016-06-27 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9782","437","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9786","437","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9795","708","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9803","493","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9813","694","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9818","396","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9828","599","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9874","637","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9884","128","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9899","516","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9904","579","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9908","526","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9912","525","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9913","317","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9915","525","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9934","369","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9948","539","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9949","107","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","9961","662","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","10008","492","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","10033","579","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","10038","425","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","10102","630","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","10118","651","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","10129","599","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","10221","513","11","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","10228","525","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","10235","672","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","10325","239","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","10456","557","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","10489","118","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","10507","662","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","10507","662","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","10569","235","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","10600","720","10","2016-12-31 00:00:00","APROBADO POR NOTA 2016"); INSERT INTO habilitacionestranjugadores VALUES("5","10632","699","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","10679","699","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","10692","139","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","10736","141","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","10756","478","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","10778","317","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","10781","502","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","10829","118","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","10833","118","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","10845","170","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","10846","170","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","10847","170","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","10853","107","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","10905","445","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11039","565","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11053","406","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11102","650","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11108","104","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11124","443","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11152","491","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11165","538","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11203","600","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11204","600","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11206","600","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11236","690","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11265","317","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11274","567","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11323","718","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11363","683","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11387","715","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11403","507","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11414","476","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11441","532","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11443","688","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11444","688","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11446","688","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11464","116","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11481","718","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11482","699","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11507","429","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11528","485","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11570","141","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11578","410","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11579","518","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11581","518","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11582","518","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11583","518","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11591","440","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11592","353","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11623","235","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11665","107","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11675","141","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11693","543","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11755","630","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11765","479","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11775","683","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11780","683","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11786","683","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11796","572","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11797","712","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11832","595","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11832","595","8","2016-12-31 00:00:00","Se lo deja jugar en 2016 en juveniles (aprobada excepcion por edad)"); INSERT INTO habilitacionestranjugadores VALUES("5","11852","534","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11852","534","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11879","429","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11882","429","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11895","204","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11909","623","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11918","561","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11925","561","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11930","664","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11965","690","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","11997","718","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12002","116","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12071","370","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12078","512","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12118","543","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12127","571","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12131","561","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12163","534","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12167","502","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12214","139","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12217","720","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12235","204","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12248","429","11","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12249","429","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12344","396","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12356","683","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12360","589","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12365","589","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12366","589","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12369","512","11","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12383","721","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12413","591","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12419","491","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12426","588","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12427","588","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12428","588","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12429","588","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12430","588","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12432","588","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12433","588","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12434","588","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12435","588","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12438","588","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12439","588","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12442","588","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12445","588","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12448","588","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12451","588","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12453","588","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12454","588","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12455","588","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12516","437","4","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12554","687","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12556","617","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12600","217","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12629","650","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12650","688","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12662","676","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12669","170","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12672","721","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12673","721","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12678","650","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12679","650","6","2016-10-05 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12682","650","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12699","593","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12708","593","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12732","583","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12765","688","4","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12810","116","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12827","473","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12842","204","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12853","623","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12878","116","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12885","217","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12917","429","11","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12929","589","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12936","589","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12956","588","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12956","588","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12959","687","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12980","482","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12984","640","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12986","588","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12987","588","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","12988","588","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13020","224","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13026","234","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13029","217","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13046","392","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13053","706","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13068","623","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13085","635","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13089","635","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13090","635","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13093","578","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13094","578","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13098","700","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13101","700","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13105","646","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13107","646","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13117","685","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13130","623","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13130","647","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13134","234","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13141","236","6","2016-11-07 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13159","690","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13195","434","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13196","434","11","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13222","685","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13224","685","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13234","640","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13235","640","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13236","640","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13238","640","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13239","640","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13241","640","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13243","640","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13246","640","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13250","640","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13254","640","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13255","589","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13267","589","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13322","681","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13339","501","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13346","640","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13362","646","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13379","130","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13388","584","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13389","536","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13392","584","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13398","617","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13401","590","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13403","589","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13442","114","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13443","114","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13445","114","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13460","144","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13478","606","6","2016-05-05 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13478","721","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13508","584","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13509","217","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13512","589","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13526","685","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13567","637","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13579","640","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13580","640","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13594","593","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13595","593","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13599","369","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13603","683","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13612","224","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13626","683","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13627","683","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13630","635","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13636","661","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13641","661","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13648","661","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13655","536","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13660","645","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13717","673","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13718","673","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13771","640","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13777","559","11","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","13786","644","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","14825","536","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","14834","434","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","14844","234","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","14846","565","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","14883","663","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","14894","228","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","15906","588","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","15907","588","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","15911","646","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","15920","718","6","2016-05-06 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","15927","565","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","15970","434","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","15976","590","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","15977","590","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","15978","676","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","15980","608","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","15981","434","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","15981","434","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16009","715","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16024","501","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16039","370","10","2016-12-31 00:00:00","APROBADO X CD, NO RENOVAR SI NO HAY ESCRITURA DEFINITIVA"); INSERT INTO habilitacionestranjugadores VALUES("5","16061","674","11","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16087","589","6","2016-08-13 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16137","234","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16143","640","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16150","683","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16151","578","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16220","228","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16283","217","5","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16318","561","4","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16319","584","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16326","561","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16348","679","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16363","650","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16386","673","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16388","247","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16390","589","6","2016-08-13 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16393","688","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16410","536","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16416","247","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16417","247","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16418","247","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16427","130","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16446","679","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16457","396","5","2016-06-29 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16468","721","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16494","247","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16508","534","4","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16508","534","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16513","637","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16523","679","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16529","700","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16536","228","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16551","679","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16552","228","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16564","567","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16567","661","5","2016-06-27 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16603","706","6","2016-05-01 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16606","625","6","2016-05-04 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16607","696","4","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16613","706","6","2016-05-26 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16614","625","7","2016-05-07 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16645","528","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16664","718","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16665","718","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16669","699","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16682","434","11","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16683","434","11","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16695","589","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16806","236","6","2016-07-17 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16810","700","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16825","663","4","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16832","663","6","2016-05-26 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16837","663","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16838","663","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16843","687","4","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16845","687","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16846","687","4","2016-11-03 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16846","687","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16855","228","6","2016-05-14 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16883","681","6","2016-05-26 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16883","681","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16885","680","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16887","706","6","2016-05-07 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16890","625","1","2016-05-07 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16890","625","6","2016-05-01 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16891","625","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16892","625","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16894","625","6","2016-05-07 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16895","596","4","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16915","636","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16915","646","6","2016-04-22 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16917","636","6","2016-04-22 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16922","636","6","2016-05-06 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16966","578","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16968","578","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","16977","713","6","2016-05-20 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17054","717","6","2016-05-07 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17066","228","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17076","478","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17079","636","6","2016-05-21 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17080","617","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17081","584","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17083","478","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17084","714","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17086","714","4","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17095","640","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17111","114","6","2016-05-06 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17112","479","4","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17113","719","4","2016-09-01 00:00:00","debe traer escritura definitiva con dominio al final."); INSERT INTO habilitacionestranjugadores VALUES("5","17114","686","6","2016-05-04 00:00:00","aguardo nota de orden judicial"); INSERT INTO habilitacionestranjugadores VALUES("5","17116","578","6","2016-04-30 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17117","588","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17118","714","8","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17132","721","6","2016-06-10 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17135","721","6","2016-10-13 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17139","721","9","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17141","588","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17142","588","10","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17162","704","4","2016-11-10 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17162","704","7","2016-11-10 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17167","702","6","2016-08-20 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17168","114","6","2016-08-20 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17169","656","4","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17170","656","4","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17171","595","4","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17172","595","4","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17186","229","4","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17186","229","7","2016-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("5","17187","567","6","2016-09-04 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","102","746","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","161","479","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","180","479","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","188","104","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","212","459","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","241","378","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","254","378","11","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","255","378","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","261","378","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","270","428","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","321","249","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","322","385","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","335","249","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","337","610","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","350","580","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","352","384","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","355","384","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","366","115","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","370","331","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","381","115","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","386","580","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","388","565","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","392","516","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","393","516","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","394","331","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","400","115","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","404","115","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","446","746","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","452","375","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","456","420","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","526","478","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","564","695","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","569","126","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","596","376","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","604","126","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","638","400","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","642","480","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","643","476","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","705","712","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","727","112","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","738","385","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","763","134","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","769","134","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","777","134","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","778","694","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","784","214","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","802","523","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","855","138","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","861","138","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","862","464","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","863","201","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","864","476","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","864","738","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","865","334","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","866","347","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","874","201","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","874","738","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","880","373","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","881","373","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","884","201","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","906","369","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","908","211","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","910","211","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","948","651","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","950","501","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","984","628","6","2017-06-21 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1001","687","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1033","741","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1066","745","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1073","463","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1078","476","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1084","311","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1113","477","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1119","109","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1120","378","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1171","464","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1202","126","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1235","138","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1239","139","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1275","214","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1298","501","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1323","694","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1343","503","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1349","115","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1378","380","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1433","691","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1480","604","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1491","201","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1555","189","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1572","674","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1589","423","4","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1590","503","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1596","476","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1622","480","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1630","544","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1669","380","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1702","163","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1706","723","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1753","334","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1760","201","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1830","211","6","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1839","140","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1863","148","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1890","628","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1892","353","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1897","628","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1899","108","11","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1917","378","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1951","214","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1960","345","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1965","462","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","1994","580","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2008","139","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2053","250","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2078","169","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2087","581","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2092","581","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2095","347","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2153","331","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2217","741","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2242","501","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2244","501","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2245","369","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2245","750","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2248","651","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2285","223","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2310","163","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2311","166","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2319","163","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2376","651","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2424","596","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2431","487","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2433","139","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2433","487","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2434","487","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2435","728","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2447","651","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2450","389","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2502","581","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2506","190","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2519","220","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2523","220","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2540","376","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2557","480","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2581","166","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2582","163","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2587","352","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2597","112","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2597","588","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2617","121","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2634","389","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2702","743","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2704","250","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2720","604","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2787","462","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2801","428","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2817","126","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2876","104","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2890","503","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2891","503","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2903","111","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2923","115","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2934","120","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2943","126","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","2977","128","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3057","743","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3069","347","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3071","640","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3071","743","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3094","512","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3109","128","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3118","353","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3157","126","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3159","126","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3190","211","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3194","428","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3208","189","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3216","218","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3316","189","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3355","169","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3367","106","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3375","380","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3376","380","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3384","360","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3387","360","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3407","213","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3409","376","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3440","229","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3445","702","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3452","115","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3455","139","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3462","139","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3472","482","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3506","610","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3539","361","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3539","750","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3607","457","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3627","128","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3649","119","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3655","119","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3656","119","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3677","420","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3708","376","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3755","321","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3764","730","8","2017-12-31 00:00:00","otorgada excepción en 2017 por venir de lista de sup maxi 2016"); INSERT INTO habilitacionestranjugadores VALUES("6","3767","750","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3788","575","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3804","738","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3811","719","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3849","329","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3850","329","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3852","731","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3911","331","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3913","115","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3924","115","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3941","407","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3941","457","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3954","651","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3958","108","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","3992","322","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4002","596","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4026","211","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4041","140","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4075","227","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4081","435","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4127","120","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4152","602","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4176","738","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4200","694","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4207","719","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4209","738","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4210","480","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4225","369","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4234","444","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4238","691","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4242","220","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4277","140","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4295","501","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4302","347","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4314","115","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4349","459","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4351","227","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4355","610","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4405","243","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4472","504","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4492","322","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4507","120","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4529","134","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4536","108","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4611","106","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4613","579","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4614","580","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4642","738","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4716","694","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4748","329","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4765","126","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4779","483","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4783","472","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4792","347","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4803","604","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4867","463","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4954","538","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4982","115","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","4987","378","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5000","213","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5001","126","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5064","201","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5069","239","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5073","206","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5088","644","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5106","750","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5148","544","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5173","750","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5212","343","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5222","369","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5222","651","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5231","322","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5241","457","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5258","596","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5341","457","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5358","343","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5358","343","13","2017-04-25 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5409","123","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5411","233","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5418","321","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5424","321","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5425","233","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5443","106","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5514","596","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5515","596","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5543","443","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5580","544","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5605","208","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5621","428","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5622","353","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5670","610","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5702","750","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5710","378","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5726","485","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5746","477","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5747","741","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5759","356","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5765","730","8","2017-12-31 00:00:00","otorgada excepción en 2017 por venir de lista de sup maxi 2016"); INSERT INTO habilitacionestranjugadores VALUES("6","5779","741","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5780","707","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5872","363","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","5988","461","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6025","485","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6061","110","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6117","684","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6127","390","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6188","352","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6198","581","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6257","199","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6282","150","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6284","110","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6291","691","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6325","363","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6335","664","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6345","387","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6345","664","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6351","485","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6367","691","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6369","457","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6370","190","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6397","691","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6413","457","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6463","741","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6486","406","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6491","322","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6519","602","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6554","393","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6558","393","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6561","322","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6562","393","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6594","463","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6641","737","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6651","580","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6656","580","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6661","728","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6665","395","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6685","128","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6688","199","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6722","738","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6723","393","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6726","463","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6752","401","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6767","750","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6817","109","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6864","378","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6870","150","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6933","310","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","6944","416","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7018","326","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7032","326","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7041","694","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7092","664","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7148","410","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7177","343","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7178","446","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7271","414","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7289","720","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7322","140","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7327","741","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7338","644","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7416","199","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7437","163","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7474","412","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7494","239","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7531","720","4","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7556","419","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7570","544","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7591","662","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7615","662","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7617","662","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7637","230","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7638","424","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7668","604","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7672","369","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7697","544","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7700","462","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7777","694","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7784","369","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7812","428","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7815","428","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7816","428","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7837","353","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7838","353","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7886","123","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7924","745","4","2017-06-20 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7928","681","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","7941","444","14","2017-10-10 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8021","731","6","2017-05-04 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8050","321","4","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8076","690","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8081","746","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8085","482","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8100","741","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8143","583","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8172","720","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8187","501","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8216","526","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8306","573","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8326","123","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8365","473","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8509","109","11","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8533","571","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8550","317","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8603","410","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8605","410","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8626","109","11","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8671","715","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8704","568","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8759","730","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8764","120","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8769","564","4","2017-06-30 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8815","694","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8833","396","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8881","525","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8887","644","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8888","405","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8900","445","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8932","750","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","8956","738","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9022","466","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9023","317","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9043","109","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9063","525","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9064","525","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9069","115","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9097","491","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9108","388","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9124","580","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9196","694","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9225","189","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9247","738","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9285","568","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9335","577","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9346","447","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9364","681","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9376","491","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9390","525","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9422","445","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9446","120","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9447","120","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9450","317","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9454","390","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9455","390","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9509","492","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9537","751","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9577","568","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9582","723","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9617","202","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9656","580","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9662","425","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9695","507","6","2017-05-08 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9728","720","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9729","731","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9730","317","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9757","499","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9770","568","5","2017-06-30 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9803","703","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9813","694","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9827","741","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9852","243","11","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9884","128","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9899","516","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9904","741","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9908","526","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9912","525","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9913","317","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9915","525","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9927","708","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9948","539","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9949","107","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9961","662","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","9963","690","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10008","492","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10033","741","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10038","425","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10049","708","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10078","370","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10098","525","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10118","651","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10157","630","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10195","747","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10221","513","11","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10228","317","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10230","317","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10294","746","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10302","222","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10306","222","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10325","239","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10423","544","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10489","118","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10507","662","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10548","742","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10600","720","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10614","428","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10632","699","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10665","727","11","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10679","699","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10682","457","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10692","139","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10692","487","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10693","602","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10726","747","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10738","141","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10781","502","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10781","502","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10829","118","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10833","118","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10853","107","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10853","428","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10855","107","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10905","445","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10910","528","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","10939","747","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11036","479","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11036","691","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11046","107","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11053","406","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11124","443","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11152","491","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11165","538","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11236","690","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11248","207","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11253","207","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11265","317","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11266","534","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11309","483","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11309","483","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11311","483","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11370","370","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11387","715","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11412","604","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11414","738","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11454","723","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11456","687","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11507","107","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11519","494","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11528","504","6","2017-05-03 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11533","557","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11570","141","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11578","410","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11592","353","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11593","571","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11620","708","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11627","746","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11641","518","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11644","141","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11665","107","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11675","141","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11682","708","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11709","141","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11750","676","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11765","691","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11802","718","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11803","699","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11852","518","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11872","644","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11879","107","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11930","664","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11965","690","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","11976","738","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12018","679","6","2017-06-30 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12045","718","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12100","534","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12127","571","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12130","688","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12152","752","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12156","518","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12167","502","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12198","443","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12230","571","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12232","617","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12242","502","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12244","688","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12248","107","11","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12313","676","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12328","370","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12341","748","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12344","396","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12351","609","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12360","589","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12365","589","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12366","589","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12369","637","11","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12385","429","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12386","429","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12388","429","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12419","491","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12425","491","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12426","588","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12427","588","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12428","588","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12429","588","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12430","588","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12433","588","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12435","728","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12438","588","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12439","588","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12442","588","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12445","588","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12448","588","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12451","588","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12453","588","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12454","588","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12455","588","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12551","691","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12556","617","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12577","574","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12590","752","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12608","204","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12613","204","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12650","688","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12671","752","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12702","593","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12703","593","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12728","568","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12738","204","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12761","691","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12765","688","4","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12768","617","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12773","617","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12788","205","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12792","738","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12799","718","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12808","114","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12846","217","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12876","752","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12878","116","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12878","116","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12885","502","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12906","144","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12917","429","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12917","539","11","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12926","205","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12929","589","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12936","589","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12956","588","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12959","687","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12980","482","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12986","588","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","12987","588","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13029","217","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13046","392","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13054","593","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13059","593","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13074","643","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13077","608","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13092","578","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13104","646","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13110","646","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13116","685","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13144","588","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13148","707","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13151","707","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13167","707","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13175","722","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13194","578","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13195","429","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13196","429","11","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13233","728","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13234","640","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13235","640","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13238","588","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13239","728","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13241","640","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13243","640","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13245","728","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13246","640","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13246","728","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13249","728","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13253","640","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13254","640","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13255","589","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13256","589","6","2017-05-26 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13259","609","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13267","589","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13310","542","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13322","681","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13339","750","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13346","728","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13346","728","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13355","205","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13378","235","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13384","688","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13389","536","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13389","536","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13401","650","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13403","589","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13404","578","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13405","578","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13436","633","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13444","116","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13445","114","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13458","116","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13465","144","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13470","534","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13472","744","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13512","589","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13518","722","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13555","746","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13567","637","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13572","617","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13578","728","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13579","640","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13580","728","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13592","680","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13611","224","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13615","727","11","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13626","683","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13660","637","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13660","645","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13665","578","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13672","429","6","2017-05-08 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13678","685","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13694","234","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13698","709","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13706","130","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13740","640","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13740","728","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13744","640","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13745","681","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13755","222","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13771","640","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13777","559","11","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","13786","644","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","14814","590","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","14844","217","13","2017-04-25 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","14846","565","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","14858","722","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","14874","590","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","14878","617","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","15906","588","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","15907","588","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","15981","429","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","15982","590","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","15985","114","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","15995","744","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16009","715","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16024","750","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16037","588","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16039","370","10","2017-07-29 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16061","674","11","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16093","590","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16096","578","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16106","650","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16128","234","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16132","217","13","2017-04-25 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16133","234","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16137","234","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16143","640","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16150","683","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16233","693","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16241","723","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16246","693","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16248","693","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16249","663","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16252","663","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16266","635","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16275","731","13","2017-04-25 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16283","217","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16293","637","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16317","663","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16318","561","4","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16324","561","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16348","679","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16351","483","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16393","688","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16438","235","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16446","679","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16447","679","6","2017-06-15 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16448","487","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16454","130","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16457","396","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16468","740","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16487","236","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16493","651","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16499","504","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16513","637","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16517","676","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16521","434","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16525","536","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16528","434","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16550","518","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16551","679","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16590","590","6","2017-06-10 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16603","680","6","2017-06-30 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16606","706","6","2017-06-30 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16613","680","6","2017-06-30 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16645","528","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16650","536","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16651","536","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16655","536","6","2017-04-20 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16656","536","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16682","434","11","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16683","434","11","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16695","589","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16760","713","6","2017-06-30 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16817","423","4","2017-08-11 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16817","720","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16825","663","4","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16825","663","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16826","663","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16837","663","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16838","663","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16839","663","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16843","687","4","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16844","687","6","2017-05-25 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16844","687","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16845","687","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16846","687","4","2017-07-01 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16846","687","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16853","228","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16855","228","6","2017-05-25 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16855","228","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16856","228","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16871","228","6","2017-05-18 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16883","681","6","2017-04-29 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16883","681","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16885","680","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16890","706","6","2017-06-30 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16891","706","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16892","706","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16920","736","6","2017-06-04 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16920","736","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16922","744","6","2017-05-05 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16926","736","1","2017-05-06 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16926","736","2","2017-05-06 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16926","736","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16939","600","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16951","224","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16963","578","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16985","609","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","16996","635","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17004","635","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17010","635","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17047","718","6","2017-05-04 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17060","247","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17064","228","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17079","744","6","2017-05-05 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17083","478","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17095","640","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17095","728","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17106","130","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17112","479","4","2017-07-22 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17112","691","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17114","686","6","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17115","247","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17134","740","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17141","588","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17142","588","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17152","699","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17162","575","4","2017-04-29 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17163","114","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17169","656","4","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17170","656","4","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17171","595","4","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17172","595","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17178","236","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17185","743","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17196","228","6","2017-05-25 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17216","728","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17217","728","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17218","728","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17219","728","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17221","588","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17222","434","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17227","434","6","2017-05-03 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17230","434","6","2017-04-30 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17239","234","4","2017-05-11 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17240","234","6","2017-04-07 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17250","328","6","2017-06-30 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17253","222","6","2017-06-30 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17254","633","6","2017-06-30 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17265","625","6","2017-06-30 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17265","625","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17266","625","6","2017-06-15 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17271","625","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17279","679","6","2017-06-30 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17308","423","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17315","590","6","2017-06-10 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17316","703","6","2017-05-04 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17330","722","6","2017-05-15 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17331","722","4","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17336","722","6","2017-06-15 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17339","722","4","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17342","109","11","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17350","713","6","2017-06-30 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17361","685","6","2017-05-11 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17363","685","6","2017-04-23 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17366","685","6","2017-05-03 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17367","328","6","2017-06-30 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17383","360","6","2017-05-17 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17407","752","6","2017-05-10 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17408","753","6","2017-05-04 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17409","753","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17410","752","6","2017-05-03 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17411","752","6","2017-05-04 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17411","752","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17413","753","6","2017-05-03 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17415","463","6","2017-05-08 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17416","463","6","2017-05-08 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17418","578","6","2017-05-03 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17419","577","6","2017-05-03 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17420","578","6","2017-05-05 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17436","743","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17438","645","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17440","709","6","2017-04-27 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17443","700","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17448","564","6","2017-05-04 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17453","700","6","2017-05-08 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17463","744","6","2017-04-27 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17468","736","6","2017-04-27 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17469","234","6","2017-06-04 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17470","736","6","2017-05-05 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17470","736","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17471","736","6","2017-04-27 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17472","736","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17476","736","6","2017-05-06 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17477","736","6","2017-05-06 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17479","736","6","2017-05-04 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17480","736","6","2017-04-27 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17483","731","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17484","217","6","2017-04-21 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17493","740","6","2017-05-08 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17494","740","6","2017-05-08 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17495","740","6","2017-05-08 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17496","740","6","2017-05-24 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17497","740","6","2017-05-08 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17498","740","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17499","740","6","2017-06-05 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17500","740","6","2017-05-08 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17503","461","6","2017-06-30 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17514","211","6","2017-05-08 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17528","392","6","2017-05-08 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17542","743","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17544","744","6","2017-05-17 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17555","697","6","2017-05-15 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17563","748","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17572","702","6","2017-04-13 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17578","482","6","2017-05-08 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17582","749","6","2017-06-30 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17586","749","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17587","749","6","2017-06-30 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17588","749","6","2017-06-15 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17589","749","14","2017-06-30 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17592","749","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17595","749","6","2017-06-30 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17596","749","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17599","749","6","2017-06-30 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17603","491","6","2017-06-15 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17604","204","6","2017-05-08 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17605","752","6","2017-05-03 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17606","711","6","2017-05-26 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17607","753","6","2017-05-03 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17608","651","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17609","247","6","2017-05-08 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17611","118","6","2017-05-08 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17612","534","6","2017-05-19 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17613","740","6","2017-05-08 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17615","752","6","2017-05-04 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17621","544","5","2017-07-15 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17621","544","7","2017-07-15 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17621","544","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17622","413","5","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17623","396","6","2017-05-05 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17627","625","5","2017-06-30 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17632","738","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17637","753","6","2017-05-29 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17638","753","6","2017-05-08 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17642","753","6","2017-05-08 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17644","753","6","2017-05-08 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17645","753","6","2017-05-08 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17647","753","6","2017-05-03 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17650","205","6","2017-05-03 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17656","144","6","2017-05-08 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17662","718","6","2017-05-04 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17664","499","6","2017-08-03 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17673","114","6","2017-05-26 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17674","114","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17675","487","5","2017-06-29 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17676","740","6","2017-05-08 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17677","740","6","2017-05-23 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17679","720","11","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17680","513","6","2017-05-18 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17682","512","6","2017-05-04 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17687","534","6","2017-05-04 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17688","736","6","2017-05-06 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17692","679","10","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17694","396","6","2017-05-27 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17697","369","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17698","753","6","2017-05-05 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17704","754","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17705","754","6","2017-04-29 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17706","754","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17707","663","11","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17712","635","6","2017-05-08 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17715","557","6","2017-05-25 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17719","130","7","2017-05-05 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17723","754","6","2017-04-03 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17726","754","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17731","754","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17732","236","4","2017-06-10 00:00:00","TIENE QUE TRAER LIBRO RUBRICADO, HABLADO CON CRUZADO"); INSERT INTO habilitacionestranjugadores VALUES("6","17734","516","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17736","720","4","2017-07-04 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17738","236","6","2017-05-04 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17743","528","5","2017-07-03 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17745","528","5","2017-07-03 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17748","706","6","2017-06-30 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17750","367","7","2017-05-05 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17752","130","7","2017-05-05 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17752","130","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17754","114","9","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17755","737","8","2017-12-31 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17757","739","6","2017-06-03 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17760","528","5","2017-07-03 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17762","236","6","2017-06-03 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17763","236","6","2017-05-26 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17765","236","13","2017-05-17 00:00:00",""); INSERT INTO habilitacionestranjugadores VALUES("6","17766","528","5","2017-07-10 00:00:00",""); INSERT INTO lotessancionesacumuladas VALUES("404","5","1"); INSERT INTO lotessancionesacumuladas VALUES("405","5","1"); INSERT INTO lotessancionesacumuladas VALUES("406","5","1"); INSERT INTO lotessancionesacumuladas VALUES("423","4","1"); INSERT INTO lotessancionesacumuladas VALUES("424","4","1"); INSERT INTO lotessancionesacumuladas VALUES("431","5","1"); INSERT INTO lotessancionesacumuladas VALUES("432","5","1"); INSERT INTO lotessancionesacumuladas VALUES("433","5","1"); INSERT INTO lotessancionesacumuladas VALUES("462","5","1"); INSERT INTO lotessancionesacumuladas VALUES("463","5","1"); INSERT INTO lotessancionesacumuladas VALUES("464","3","1"); INSERT INTO lotessancionesacumuladas VALUES("465","5","1"); INSERT INTO lotessancionesacumuladas VALUES("466","5","1"); INSERT INTO lotessancionesacumuladas VALUES("467","5","1"); INSERT INTO lotessancionesacumuladas VALUES("468","5","1"); INSERT INTO lotessancionesacumuladas VALUES("469","5","1"); INSERT INTO lotessancionesacumuladas VALUES("472","3","1"); INSERT INTO lotessancionesacumuladas VALUES("473","5","1"); INSERT INTO lotessancionesacumuladas VALUES("474","3","1"); INSERT INTO lotessancionesacumuladas VALUES("475","5","1"); INSERT INTO lotessancionesacumuladas VALUES("476","5","1"); INSERT INTO lotessancionesacumuladas VALUES("477","3","1"); INSERT INTO lotessancionesacumuladas VALUES("478","5","1"); INSERT INTO lotessancionesacumuladas VALUES("479","5","1"); INSERT INTO lotessancionesacumuladas VALUES("480","5","1"); INSERT INTO lotessancionesacumuladas VALUES("481","5","1"); INSERT INTO lotessancionesacumuladas VALUES("482","5","1"); INSERT INTO lotessancionesacumuladas VALUES("483","5","1"); INSERT INTO lotessancionesacumuladas VALUES("484","5","1"); INSERT INTO lotessancionesacumuladas VALUES("485","5","1"); INSERT INTO lotessancionesacumuladas VALUES("486","5","1"); INSERT INTO lotessancionesacumuladas VALUES("487","5","1"); INSERT INTO lotessancionesacumuladas VALUES("496","3","1"); INSERT INTO lotessancionesacumuladas VALUES("497","3","1"); INSERT INTO lotessancionesacumuladas VALUES("498","5","1"); INSERT INTO lotessancionesacumuladas VALUES("499","2","1"); INSERT INTO lotessancionesacumuladas VALUES("500","5","1"); INSERT INTO lotessancionesacumuladas VALUES("501","5","1"); INSERT INTO lotessancionesacumuladas VALUES("502","5","1"); INSERT INTO lotessancionesacumuladas VALUES("503","2","1"); INSERT INTO lotessancionesacumuladas VALUES("504","5","1"); INSERT INTO lotessancionesacumuladas VALUES("531","1","1"); INSERT INTO lotessancionesacumuladas VALUES("532","5","1"); INSERT INTO lotessancionesacumuladas VALUES("533","5","1"); INSERT INTO lotessancionesacumuladas VALUES("538","5","1"); INSERT INTO lotessancionesacumuladas VALUES("539","5","1"); INSERT INTO lotessancionesacumuladas VALUES("540","2","1"); INSERT INTO lotessancionesacumuladas VALUES("541","3","1"); INSERT INTO lotessancionesacumuladas VALUES("542","5","1"); INSERT INTO lotessancionesacumuladas VALUES("543","2","1"); INSERT INTO lotessancionesacumuladas VALUES("548","5","1"); INSERT INTO lotessancionesacumuladas VALUES("549","4","1"); INSERT INTO lotessancionesacumuladas VALUES("550","3","1"); INSERT INTO lotessancionesacumuladas VALUES("551","5","1"); INSERT INTO lotessancionesacumuladas VALUES("552","5","1"); INSERT INTO lotessancionesacumuladas VALUES("553","5","1"); INSERT INTO lotessancionesacumuladas VALUES("554","1","1"); INSERT INTO lotessancionesacumuladas VALUES("555","5","1"); INSERT INTO lotessancionesacumuladas VALUES("560","4","1"); INSERT INTO lotessancionesacumuladas VALUES("561","1","1"); INSERT INTO lotessancionesacumuladas VALUES("562","1","1"); INSERT INTO lotessancionesacumuladas VALUES("563","5","1"); INSERT INTO lotessancionesacumuladas VALUES("564","5","1"); INSERT INTO lotessancionesacumuladas VALUES("565","1","1"); INSERT INTO lotessancionesacumuladas VALUES("566","2","1"); INSERT INTO lotessancionesacumuladas VALUES("567","5","1"); INSERT INTO lotessancionesacumuladas VALUES("568","3","1"); INSERT INTO lotessancionesacumuladas VALUES("569","5","1"); INSERT INTO lotessancionesacumuladas VALUES("570","2","1"); INSERT INTO lotessancionesacumuladas VALUES("578","5","1"); INSERT INTO lotessancionesacumuladas VALUES("579","5","1"); INSERT INTO lotessancionesacumuladas VALUES("580","1","1"); INSERT INTO lotessancionesacumuladas VALUES("581","4","1"); INSERT INTO lotessancionesacumuladas VALUES("582","5","1"); INSERT INTO lotessancionesacumuladas VALUES("583","4","1"); INSERT INTO lotessancionesacumuladas VALUES("584","5","1"); INSERT INTO lotessancionesacumuladas VALUES("591","5","1"); INSERT INTO lotessancionesacumuladas VALUES("607","4","1"); INSERT INTO lotessancionesacumuladas VALUES("608","5","1"); INSERT INTO lotessancionesacumuladas VALUES("609","5","1"); INSERT INTO lotessancionesacumuladas VALUES("610","5","1"); INSERT INTO lotessancionesacumuladas VALUES("611","3","1"); INSERT INTO lotessancionesacumuladas VALUES("612","5","1"); INSERT INTO lotessancionesacumuladas VALUES("613","4","1"); INSERT INTO lotessancionesacumuladas VALUES("614","1","1"); INSERT INTO lotessancionesacumuladas VALUES("615","3","1"); INSERT INTO lotessancionesacumuladas VALUES("616","2","1"); INSERT INTO lotessancionesacumuladas VALUES("617","5","1"); INSERT INTO lotessancionesacumuladas VALUES("626","2","1"); INSERT INTO lotessancionesacumuladas VALUES("627","5","1"); INSERT INTO lotessancionesacumuladas VALUES("628","5","1"); INSERT INTO lotessancionesacumuladas VALUES("629","2","1"); INSERT INTO lotessancionesacumuladas VALUES("630","5","1"); INSERT INTO lotessancionesacumuladas VALUES("636","5","1"); INSERT INTO lotessancionesacumuladas VALUES("637","1","1"); INSERT INTO lotessancionesacumuladas VALUES("643","5","1"); INSERT INTO lotessancionesacumuladas VALUES("659","4","1"); INSERT INTO lotessancionesacumuladas VALUES("660","1","1"); INSERT INTO lotessancionesacumuladas VALUES("661","5","1"); INSERT INTO lotessancionesacumuladas VALUES("662","1","1"); INSERT INTO lotessancionesacumuladas VALUES("663","5","1"); INSERT INTO lotessancionesacumuladas VALUES("664","3","1"); INSERT INTO lotessancionesacumuladas VALUES("665","4","1"); INSERT INTO lotessancionesacumuladas VALUES("666","3","1"); INSERT INTO lotessancionesacumuladas VALUES("670","4","1"); INSERT INTO lotessancionesacumuladas VALUES("671","4","1"); INSERT INTO lotessancionesacumuladas VALUES("672","5","1"); INSERT INTO lotessancionesacumuladas VALUES("673","1","1"); INSERT INTO lotessancionesacumuladas VALUES("674","5","1"); INSERT INTO lotessancionesacumuladas VALUES("675","4","1"); INSERT INTO lotessancionesacumuladas VALUES("676","5","1"); INSERT INTO lotessancionesacumuladas VALUES("677","2","1"); INSERT INTO lotessancionesacumuladas VALUES("689","5","1"); INSERT INTO lotessancionesacumuladas VALUES("690","5","1"); INSERT INTO lotessancionesacumuladas VALUES("691","5","1"); INSERT INTO lotessancionesacumuladas VALUES("692","5","1"); INSERT INTO lotessancionesacumuladas VALUES("693","1","1"); INSERT INTO lotessancionesacumuladas VALUES("703","1","1"); INSERT INTO lotessancionesacumuladas VALUES("704","5","1"); INSERT INTO lotessancionesacumuladas VALUES("705","1","1"); INSERT INTO lotessancionesacumuladas VALUES("706","2","1"); INSERT INTO lotessancionesacumuladas VALUES("707","1","1"); INSERT INTO lotessancionesacumuladas VALUES("708","3","1"); INSERT INTO lotessancionesacumuladas VALUES("726","5","1"); INSERT INTO lotessancionesacumuladas VALUES("727","3","1"); INSERT INTO lotessancionesacumuladas VALUES("728","5","1"); INSERT INTO lotessancionesacumuladas VALUES("729","4","1"); INSERT INTO lotessancionesacumuladas VALUES("730","5","1"); INSERT INTO lotessancionesacumuladas VALUES("737","3","1"); INSERT INTO lotessancionesacumuladas VALUES("738","1","1"); INSERT INTO lotessancionesacumuladas VALUES("752","3","1"); INSERT INTO lotessancionesacumuladas VALUES("753","5","1"); INSERT INTO lotessancionesacumuladas VALUES("754","5","1"); INSERT INTO lotessancionesacumuladas VALUES("755","1","1"); INSERT INTO lotessancionesacumuladas VALUES("762","5","1"); INSERT INTO lotessancionesacumuladas VALUES("763","5","1"); INSERT INTO lotessancionesacumuladas VALUES("764","4","1"); INSERT INTO lotessancionesacumuladas VALUES("765","2","1"); INSERT INTO lotessancionesacumuladas VALUES("766","5","1"); INSERT INTO lotessancionesacumuladas VALUES("770","2","1"); INSERT INTO lotessancionesacumuladas VALUES("771","5","1"); INSERT INTO lotessancionesacumuladas VALUES("772","5","1"); INSERT INTO lotessancionesacumuladas VALUES("773","4","1"); INSERT INTO lotessancionesacumuladas VALUES("774","4","1"); INSERT INTO lotessancionesacumuladas VALUES("775","5","1"); INSERT INTO lotessancionesacumuladas VALUES("776","5","1"); INSERT INTO lotessancionesacumuladas VALUES("777","4","1"); INSERT INTO lotessancionesacumuladas VALUES("778","5","1"); INSERT INTO lotessancionesacumuladas VALUES("779","4","1"); INSERT INTO lotessancionesacumuladas VALUES("780","5","1"); INSERT INTO lotessancionesacumuladas VALUES("781","1","1"); INSERT INTO lotessancionesacumuladas VALUES("785","5","1"); INSERT INTO lotessancionesacumuladas VALUES("786","1","1"); INSERT INTO lotessancionesacumuladas VALUES("787","5","1"); INSERT INTO lotessancionesacumuladas VALUES("788","5","1"); INSERT INTO lotessancionesacumuladas VALUES("789","2","1"); INSERT INTO lotessancionesacumuladas VALUES("790","4","1"); INSERT INTO lotessancionesacumuladas VALUES("791","5","1"); INSERT INTO lotessancionesacumuladas VALUES("792","2","1"); INSERT INTO lotessancionesacumuladas VALUES("793","5","1"); INSERT INTO lotessancionesacumuladas VALUES("796","1","1"); INSERT INTO lotessancionesacumuladas VALUES("797","1","1"); INSERT INTO lotessancionesacumuladas VALUES("802","5","1"); INSERT INTO lotessancionesacumuladas VALUES("803","2","1"); INSERT INTO lotessancionesacumuladas VALUES("804","3","1"); INSERT INTO lotessancionesacumuladas VALUES("805","2","1"); INSERT INTO lotessancionesacumuladas VALUES("806","4","1"); INSERT INTO lotessancionesacumuladas VALUES("807","5","1"); INSERT INTO lotessancionesacumuladas VALUES("808","2","1"); INSERT INTO lotessancionesacumuladas VALUES("809","2","1"); INSERT INTO lotessancionesacumuladas VALUES("818","5","1"); INSERT INTO lotessancionesacumuladas VALUES("819","5","1"); INSERT INTO lotessancionesacumuladas VALUES("820","5","1"); INSERT INTO lotessancionesacumuladas VALUES("827","3","1"); INSERT INTO lotessancionesacumuladas VALUES("828","5","1"); INSERT INTO lotessancionesacumuladas VALUES("829","2","1"); INSERT INTO lotessancionesacumuladas VALUES("830","4","1"); INSERT INTO lotessancionesacumuladas VALUES("831","2","1"); INSERT INTO lotessancionesacumuladas VALUES("832","5","1"); INSERT INTO lotessancionesacumuladas VALUES("833","3","1"); INSERT INTO lotessancionesacumuladas VALUES("834","3","1"); INSERT INTO lotessancionesacumuladas VALUES("844","5","1"); INSERT INTO lotessancionesacumuladas VALUES("845","5","1"); INSERT INTO lotessancionesacumuladas VALUES("846","5","1"); INSERT INTO lotessancionesacumuladas VALUES("847","3","1"); INSERT INTO lotessancionesacumuladas VALUES("848","4","1"); INSERT INTO lotessancionesacumuladas VALUES("849","5","1"); INSERT INTO lotessancionesacumuladas VALUES("850","1","1"); INSERT INTO lotessancionesacumuladas VALUES("851","2","1"); INSERT INTO lotessancionesacumuladas VALUES("852","3","1"); INSERT INTO lotessancionesacumuladas VALUES("853","5","1"); INSERT INTO lotessancionesacumuladas VALUES("854","3","1"); INSERT INTO lotessancionesacumuladas VALUES("855","4","1"); INSERT INTO lotessancionesacumuladas VALUES("856","4","1"); INSERT INTO lotessancionesacumuladas VALUES("862","5","1"); INSERT INTO lotessancionesacumuladas VALUES("863","4","1"); INSERT INTO lotessancionesacumuladas VALUES("864","4","1"); INSERT INTO lotessancionesacumuladas VALUES("865","3","1"); INSERT INTO lotessancionesacumuladas VALUES("866","4","1"); INSERT INTO lotessancionesacumuladas VALUES("867","1","1"); INSERT INTO lotessancionesacumuladas VALUES("868","4","1"); INSERT INTO lotessancionesacumuladas VALUES("869","5","1"); INSERT INTO lotessancionesacumuladas VALUES("870","5","1"); INSERT INTO lotessancionesacumuladas VALUES("871","1","1"); INSERT INTO lotessancionesacumuladas VALUES("872","4","1"); INSERT INTO lotessancionesacumuladas VALUES("873","5","1"); INSERT INTO lotessancionesacumuladas VALUES("874","2","1"); INSERT INTO lotessancionesacumuladas VALUES("875","3","1"); INSERT INTO lotessancionesacumuladas VALUES("876","2","1"); INSERT INTO lotessancionesacumuladas VALUES("877","3","1"); INSERT INTO lotessancionesacumuladas VALUES("878","1","1"); INSERT INTO lotessancionesacumuladas VALUES("879","1","1"); INSERT INTO lotessancionesacumuladas VALUES("880","5","1"); INSERT INTO lotessancionesacumuladas VALUES("881","5","1"); INSERT INTO lotessancionesacumuladas VALUES("882","5","1"); INSERT INTO lotessancionesacumuladas VALUES("883","2","1"); INSERT INTO lotessancionesacumuladas VALUES("884","3","1"); INSERT INTO lotessancionesacumuladas VALUES("891","5","1"); INSERT INTO lotessancionesacumuladas VALUES("892","2","1"); INSERT INTO lotessancionesacumuladas VALUES("893","5","1"); INSERT INTO lotessancionesacumuladas VALUES("894","1","1"); INSERT INTO lotessancionesacumuladas VALUES("895","4","1"); INSERT INTO lotessancionesacumuladas VALUES("896","5","1"); INSERT INTO lotessancionesacumuladas VALUES("897","1","1"); INSERT INTO lotessancionesacumuladas VALUES("898","5","1"); INSERT INTO lotessancionesacumuladas VALUES("899","5","1"); INSERT INTO lotessancionesacumuladas VALUES("900","5","1"); INSERT INTO lotessancionesacumuladas VALUES("901","5","1"); INSERT INTO lotessancionesacumuladas VALUES("902","5","1"); INSERT INTO lotessancionesacumuladas VALUES("903","4","1"); INSERT INTO lotessancionesacumuladas VALUES("904","5","1"); INSERT INTO lotessancionesacumuladas VALUES("905","5","1"); INSERT INTO lotessancionesacumuladas VALUES("911","5","1"); INSERT INTO lotessancionesacumuladas VALUES("912","5","1"); INSERT INTO lotessancionesacumuladas VALUES("913","4","1"); INSERT INTO lotessancionesacumuladas VALUES("914","1","1"); INSERT INTO lotessancionesacumuladas VALUES("921","5","1"); INSERT INTO lotessancionesacumuladas VALUES("922","5","1"); INSERT INTO lotessancionesacumuladas VALUES("923","5","1"); INSERT INTO lotessancionesacumuladas VALUES("924","5","1"); INSERT INTO lotessancionesacumuladas VALUES("925","5","1"); INSERT INTO lotessancionesacumuladas VALUES("926","5","1"); INSERT INTO lotessancionesacumuladas VALUES("927","5","1"); INSERT INTO lotessancionesacumuladas VALUES("928","3","1"); INSERT INTO lotessancionesacumuladas VALUES("929","5","1"); INSERT INTO lotessancionesacumuladas VALUES("930","4","1"); INSERT INTO lotessancionesacumuladas VALUES("931","4","1"); INSERT INTO lotessancionesacumuladas VALUES("932","4","1"); INSERT INTO lotessancionesacumuladas VALUES("933","3","1"); INSERT INTO lotessancionesacumuladas VALUES("934","1","1"); INSERT INTO lotessancionesacumuladas VALUES("935","5","1"); INSERT INTO lotessancionesacumuladas VALUES("936","1","1"); INSERT INTO lotessancionesacumuladas VALUES("937","3","1"); INSERT INTO lotessancionesacumuladas VALUES("938","5","1"); INSERT INTO lotessancionesacumuladas VALUES("939","5","1"); INSERT INTO lotessancionesacumuladas VALUES("940","4","1"); INSERT INTO lotessancionesacumuladas VALUES("941","5","1"); INSERT INTO lotessancionesacumuladas VALUES("942","5","1"); INSERT INTO lotessancionesacumuladas VALUES("943","5","1"); INSERT INTO lotessancionesacumuladas VALUES("944","3","1"); INSERT INTO lotessancionesacumuladas VALUES("945","1","1"); INSERT INTO lotessancionesacumuladas VALUES("946","4","1"); INSERT INTO lotessancionesacumuladas VALUES("947","1","1"); INSERT INTO lotessancionesacumuladas VALUES("948","5","1"); INSERT INTO lotessancionesacumuladas VALUES("949","5","1"); INSERT INTO lotessancionesacumuladas VALUES("950","3","1"); INSERT INTO lotessancionesacumuladas VALUES("951","4","1"); INSERT INTO lotessancionesacumuladas VALUES("952","5","1"); INSERT INTO lotessancionesacumuladas VALUES("953","3","1"); INSERT INTO lotessancionesacumuladas VALUES("954","5","1"); INSERT INTO lotessancionesacumuladas VALUES("955","5","1"); INSERT INTO lotessancionesacumuladas VALUES("956","1","1"); INSERT INTO lotessancionesacumuladas VALUES("957","3","1"); INSERT INTO lotessancionesacumuladas VALUES("958","1","1"); INSERT INTO lotessancionesacumuladas VALUES("959","3","1"); INSERT INTO lotessancionesacumuladas VALUES("960","3","1"); INSERT INTO lotessancionesacumuladas VALUES("961","5","1"); INSERT INTO lotessancionesacumuladas VALUES("962","4","1"); INSERT INTO lotessancionesacumuladas VALUES("963","2","1"); INSERT INTO lotessancionesacumuladas VALUES("964","5","1"); INSERT INTO lotessancionesacumuladas VALUES("965","3","1"); INSERT INTO lotessancionesacumuladas VALUES("966","5","1"); INSERT INTO lotessancionesacumuladas VALUES("967","5","1"); INSERT INTO lotessancionesacumuladas VALUES("968","5","1"); INSERT INTO lotessancionesacumuladas VALUES("969","5","1"); INSERT INTO lotessancionesacumuladas VALUES("970","2","1"); INSERT INTO lotessancionesacumuladas VALUES("971","4","1"); INSERT INTO lotessancionesacumuladas VALUES("972","3","1"); INSERT INTO lotessancionesacumuladas VALUES("973","4","1"); INSERT INTO lotessancionesacumuladas VALUES("976","5","1"); INSERT INTO lotessancionesacumuladas VALUES("977","5","1"); INSERT INTO lotessancionesacumuladas VALUES("978","5","1"); INSERT INTO lotessancionesacumuladas VALUES("979","4","1"); INSERT INTO lotessancionesacumuladas VALUES("980","5","1"); INSERT INTO lotessancionesacumuladas VALUES("981","2","1"); INSERT INTO lotessancionesacumuladas VALUES("982","1","1"); INSERT INTO lotessancionesacumuladas VALUES("983","2","1"); INSERT INTO lotessancionesacumuladas VALUES("984","2","1"); INSERT INTO lotessancionesacumuladas VALUES("985","5","1"); INSERT INTO lotessancionesacumuladas VALUES("986","4","1"); INSERT INTO lotessancionesacumuladas VALUES("987","5","1"); INSERT INTO lotessancionesacumuladas VALUES("988","2","1"); INSERT INTO lotessancionesacumuladas VALUES("989","5","1"); INSERT INTO lotessancionesacumuladas VALUES("990","1","1"); INSERT INTO lotessancionesacumuladas VALUES("991","5","1"); INSERT INTO lotessancionesacumuladas VALUES("992","5","1"); INSERT INTO lotessancionesacumuladas VALUES("993","5","1"); INSERT INTO lotessancionesacumuladas VALUES("994","2","1"); INSERT INTO lotessancionesacumuladas VALUES("995","2","1"); INSERT INTO lotessancionesacumuladas VALUES("996","3","1"); INSERT INTO lotessancionesacumuladas VALUES("997","5","1"); INSERT INTO lotessancionesacumuladas VALUES("998","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1003","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1004","2","1"); INSERT INTO lotessancionesacumuladas VALUES("1005","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1006","2","1"); INSERT INTO lotessancionesacumuladas VALUES("1007","2","1"); INSERT INTO lotessancionesacumuladas VALUES("1008","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1009","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1010","3","1"); INSERT INTO lotessancionesacumuladas VALUES("1011","1","1"); INSERT INTO lotessancionesacumuladas VALUES("1012","1","1"); INSERT INTO lotessancionesacumuladas VALUES("1013","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1014","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1015","3","1"); INSERT INTO lotessancionesacumuladas VALUES("1019","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1020","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1021","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1022","3","1"); INSERT INTO lotessancionesacumuladas VALUES("1023","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1024","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1025","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1026","3","1"); INSERT INTO lotessancionesacumuladas VALUES("1027","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1028","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1029","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1030","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1031","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1032","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1033","2","1"); INSERT INTO lotessancionesacumuladas VALUES("1034","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1035","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1036","3","1"); INSERT INTO lotessancionesacumuladas VALUES("1042","2","1"); INSERT INTO lotessancionesacumuladas VALUES("1043","3","1"); INSERT INTO lotessancionesacumuladas VALUES("1044","3","1"); INSERT INTO lotessancionesacumuladas VALUES("1045","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1046","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1047","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1048","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1049","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1050","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1051","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1054","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1055","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1056","3","1"); INSERT INTO lotessancionesacumuladas VALUES("1057","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1058","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1059","3","1"); INSERT INTO lotessancionesacumuladas VALUES("1060","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1061","2","1"); INSERT INTO lotessancionesacumuladas VALUES("1062","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1063","2","1"); INSERT INTO lotessancionesacumuladas VALUES("1064","2","1"); INSERT INTO lotessancionesacumuladas VALUES("1065","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1066","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1067","3","1"); INSERT INTO lotessancionesacumuladas VALUES("1068","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1069","3","1"); INSERT INTO lotessancionesacumuladas VALUES("1070","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1071","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1072","3","1"); INSERT INTO lotessancionesacumuladas VALUES("1073","3","1"); INSERT INTO lotessancionesacumuladas VALUES("1074","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1075","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1076","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1077","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1078","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1079","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1080","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1081","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1082","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1083","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1084","3","1"); INSERT INTO lotessancionesacumuladas VALUES("1085","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1086","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1087","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1088","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1089","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1090","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1091","1","1"); INSERT INTO lotessancionesacumuladas VALUES("1092","1","1"); INSERT INTO lotessancionesacumuladas VALUES("1093","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1094","2","1"); INSERT INTO lotessancionesacumuladas VALUES("1095","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1096","3","1"); INSERT INTO lotessancionesacumuladas VALUES("1097","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1855","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1856","3","1"); INSERT INTO lotessancionesacumuladas VALUES("1857","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1858","2","1"); INSERT INTO lotessancionesacumuladas VALUES("1859","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1860","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1861","1","1"); INSERT INTO lotessancionesacumuladas VALUES("1862","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1865","3","1"); INSERT INTO lotessancionesacumuladas VALUES("1866","1","1"); INSERT INTO lotessancionesacumuladas VALUES("1867","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1870","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1871","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1872","2","1"); INSERT INTO lotessancionesacumuladas VALUES("1873","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1874","2","1"); INSERT INTO lotessancionesacumuladas VALUES("1875","3","1"); INSERT INTO lotessancionesacumuladas VALUES("1876","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1877","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1878","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1879","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1886","2","1"); INSERT INTO lotessancionesacumuladas VALUES("1887","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1891","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1892","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1893","2","1"); INSERT INTO lotessancionesacumuladas VALUES("1894","1","1"); INSERT INTO lotessancionesacumuladas VALUES("1895","1","1"); INSERT INTO lotessancionesacumuladas VALUES("1896","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1897","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1898","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1900","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1901","1","1"); INSERT INTO lotessancionesacumuladas VALUES("1902","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1903","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1904","2","1"); INSERT INTO lotessancionesacumuladas VALUES("1905","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1906","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1907","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1908","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1909","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1910","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1911","3","1"); INSERT INTO lotessancionesacumuladas VALUES("1912","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1913","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1914","3","1"); INSERT INTO lotessancionesacumuladas VALUES("1915","3","1"); INSERT INTO lotessancionesacumuladas VALUES("1916","1","1"); INSERT INTO lotessancionesacumuladas VALUES("1917","2","1"); INSERT INTO lotessancionesacumuladas VALUES("1918","2","1"); INSERT INTO lotessancionesacumuladas VALUES("1920","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1921","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1922","2","1"); INSERT INTO lotessancionesacumuladas VALUES("1923","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1924","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1925","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1926","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1927","2","1"); INSERT INTO lotessancionesacumuladas VALUES("1928","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1929","3","1"); INSERT INTO lotessancionesacumuladas VALUES("1930","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1931","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1932","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1933","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1934","3","1"); INSERT INTO lotessancionesacumuladas VALUES("1935","1","1"); INSERT INTO lotessancionesacumuladas VALUES("1936","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1937","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1938","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1939","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1940","1","1"); INSERT INTO lotessancionesacumuladas VALUES("1941","2","1"); INSERT INTO lotessancionesacumuladas VALUES("1942","1","1"); INSERT INTO lotessancionesacumuladas VALUES("1943","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1944","1","1"); INSERT INTO lotessancionesacumuladas VALUES("1945","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1949","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1950","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1951","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1952","3","1"); INSERT INTO lotessancionesacumuladas VALUES("1953","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1954","1","1"); INSERT INTO lotessancionesacumuladas VALUES("1955","3","1"); INSERT INTO lotessancionesacumuladas VALUES("1956","1","1"); INSERT INTO lotessancionesacumuladas VALUES("1957","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1958","2","1"); INSERT INTO lotessancionesacumuladas VALUES("1959","1","1"); INSERT INTO lotessancionesacumuladas VALUES("1960","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1961","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1962","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1963","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1964","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1965","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1966","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1967","2","1"); INSERT INTO lotessancionesacumuladas VALUES("1968","2","1"); INSERT INTO lotessancionesacumuladas VALUES("1969","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1970","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1971","2","1"); INSERT INTO lotessancionesacumuladas VALUES("1972","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1977","3","1"); INSERT INTO lotessancionesacumuladas VALUES("1978","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1979","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1980","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1981","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1982","2","1"); INSERT INTO lotessancionesacumuladas VALUES("1989","1","1"); INSERT INTO lotessancionesacumuladas VALUES("1990","2","1"); INSERT INTO lotessancionesacumuladas VALUES("1991","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1992","3","1"); INSERT INTO lotessancionesacumuladas VALUES("1993","1","1"); INSERT INTO lotessancionesacumuladas VALUES("1994","3","1"); INSERT INTO lotessancionesacumuladas VALUES("1995","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1996","4","1"); INSERT INTO lotessancionesacumuladas VALUES("1997","5","1"); INSERT INTO lotessancionesacumuladas VALUES("1998","3","1"); INSERT INTO lotessancionesacumuladas VALUES("1999","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2004","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2005","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2006","1","1"); INSERT INTO lotessancionesacumuladas VALUES("2007","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2015","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2018","1","1"); INSERT INTO lotessancionesacumuladas VALUES("2019","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2020","4","1"); INSERT INTO lotessancionesacumuladas VALUES("2021","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2022","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2023","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2024","1","1"); INSERT INTO lotessancionesacumuladas VALUES("2025","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2026","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2027","1","1"); INSERT INTO lotessancionesacumuladas VALUES("2028","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2029","1","1"); INSERT INTO lotessancionesacumuladas VALUES("2030","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2031","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2032","1","1"); INSERT INTO lotessancionesacumuladas VALUES("2034","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2035","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2036","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2037","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2038","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2039","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2040","1","1"); INSERT INTO lotessancionesacumuladas VALUES("2041","1","1"); INSERT INTO lotessancionesacumuladas VALUES("2042","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2043","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2044","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2045","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2046","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2047","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2048","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2049","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2050","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2051","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2052","1","1"); INSERT INTO lotessancionesacumuladas VALUES("2055","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2056","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2057","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2058","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2059","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2060","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2061","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2071","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2072","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2073","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2074","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2075","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2097","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2098","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2099","4","1"); INSERT INTO lotessancionesacumuladas VALUES("2100","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2101","1","1"); INSERT INTO lotessancionesacumuladas VALUES("2102","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2108","4","1"); INSERT INTO lotessancionesacumuladas VALUES("2109","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2110","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2111","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2112","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2113","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2114","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2115","1","1"); INSERT INTO lotessancionesacumuladas VALUES("2116","4","1"); INSERT INTO lotessancionesacumuladas VALUES("2119","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2125","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2126","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2127","4","1"); INSERT INTO lotessancionesacumuladas VALUES("2128","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2129","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2130","4","1"); INSERT INTO lotessancionesacumuladas VALUES("2131","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2147","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2148","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2149","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2150","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2151","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2152","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2153","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2154","4","1"); INSERT INTO lotessancionesacumuladas VALUES("2159","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2160","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2161","1","1"); INSERT INTO lotessancionesacumuladas VALUES("2162","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2163","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2164","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2165","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2166","1","1"); INSERT INTO lotessancionesacumuladas VALUES("2167","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2168","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2169","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2170","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2171","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2172","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2173","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2174","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2175","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2176","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2177","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2178","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2179","4","1"); INSERT INTO lotessancionesacumuladas VALUES("2180","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2181","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2182","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2183","1","1"); INSERT INTO lotessancionesacumuladas VALUES("2184","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2185","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2186","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2187","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2188","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2189","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2190","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2191","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2194","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2196","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2198","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2200","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2201","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2202","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2204","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2205","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2206","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2207","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2208","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2209","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2210","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2211","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2212","4","1"); INSERT INTO lotessancionesacumuladas VALUES("2213","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2234","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2235","4","1"); INSERT INTO lotessancionesacumuladas VALUES("2236","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2237","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2238","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2239","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2240","1","1"); INSERT INTO lotessancionesacumuladas VALUES("2241","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2242","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2243","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2244","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2245","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2246","1","1"); INSERT INTO lotessancionesacumuladas VALUES("2252","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2253","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2254","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2255","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2256","1","1"); INSERT INTO lotessancionesacumuladas VALUES("2257","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2258","1","1"); INSERT INTO lotessancionesacumuladas VALUES("2259","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2260","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2261","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2262","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2263","1","1"); INSERT INTO lotessancionesacumuladas VALUES("2264","4","1"); INSERT INTO lotessancionesacumuladas VALUES("2265","1","1"); INSERT INTO lotessancionesacumuladas VALUES("2266","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2267","1","1"); INSERT INTO lotessancionesacumuladas VALUES("2279","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2280","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2281","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2282","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2283","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2284","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2292","1","1"); INSERT INTO lotessancionesacumuladas VALUES("2293","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2294","1","1"); INSERT INTO lotessancionesacumuladas VALUES("2295","4","1"); INSERT INTO lotessancionesacumuladas VALUES("2296","4","1"); INSERT INTO lotessancionesacumuladas VALUES("2297","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2298","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2299","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2300","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2301","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2302","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2303","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2304","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2305","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2306","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2309","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2310","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2311","4","1"); INSERT INTO lotessancionesacumuladas VALUES("2312","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2313","1","1"); INSERT INTO lotessancionesacumuladas VALUES("2314","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2315","4","1"); INSERT INTO lotessancionesacumuladas VALUES("2316","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2317","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2318","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2319","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2320","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2321","4","1"); INSERT INTO lotessancionesacumuladas VALUES("2322","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2323","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2324","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2325","4","1"); INSERT INTO lotessancionesacumuladas VALUES("2326","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2327","1","1"); INSERT INTO lotessancionesacumuladas VALUES("2328","4","1"); INSERT INTO lotessancionesacumuladas VALUES("2329","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2330","1","1"); INSERT INTO lotessancionesacumuladas VALUES("2331","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2332","3","1"); INSERT INTO lotessancionesacumuladas VALUES("2333","4","1"); INSERT INTO lotessancionesacumuladas VALUES("2862","5","1"); INSERT INTO lotessancionesacumuladas VALUES("2863","1","1"); INSERT INTO lotessancionesacumuladas VALUES("2888","2","1"); INSERT INTO lotessancionesacumuladas VALUES("2889","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3052","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3053","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3054","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3055","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3056","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3057","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3058","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3059","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3062","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3063","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3064","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3065","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3066","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3067","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3068","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3069","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3070","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3071","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3072","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3073","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3074","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3075","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3076","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3077","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3078","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3079","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3080","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3081","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3082","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3083","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3084","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3085","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3086","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3087","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3088","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3089","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3090","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3091","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3092","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3093","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3094","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3095","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3096","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3097","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3098","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3099","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3100","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3101","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3102","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3103","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3107","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3108","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3109","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3110","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3111","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3112","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3113","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3114","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3115","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3116","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3117","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3118","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3119","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3120","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3121","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3122","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3124","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3125","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3126","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3127","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3128","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3129","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3130","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3131","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3132","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3133","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3134","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3135","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3136","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3137","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3138","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3139","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3140","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3141","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3142","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3143","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3144","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3145","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3146","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3147","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3148","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3149","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3150","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3151","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3152","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3153","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3154","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3155","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3156","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3157","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3163","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3164","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3165","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3166","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3167","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3168","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3169","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3170","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3171","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3172","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3173","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3174","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3175","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3176","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3177","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3178","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3179","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3180","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3181","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3182","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3183","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3184","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3185","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3188","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3189","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3190","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3191","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3192","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3193","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3194","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3195","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3196","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3197","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3198","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3199","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3200","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3201","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3202","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3203","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3204","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3205","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3206","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3207","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3210","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3211","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3212","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3213","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3214","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3215","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3216","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3217","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3218","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3219","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3220","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3221","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3222","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3223","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3224","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3225","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3226","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3227","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3228","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3229","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3230","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3231","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3232","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3233","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3234","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3235","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3236","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3237","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3238","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3239","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3240","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3241","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3242","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3243","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3244","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3245","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3246","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3247","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3248","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3249","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3250","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3251","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3252","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3253","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3254","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3255","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3256","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3257","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3258","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3259","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3260","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3261","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3262","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3263","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3264","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3265","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3266","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3267","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3268","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3269","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3270","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3271","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3272","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3273","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3274","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3275","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3276","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3277","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3278","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3279","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3280","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3281","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3282","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3283","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3284","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3285","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3286","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3287","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3288","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3289","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3290","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3291","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3292","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3293","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3294","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3295","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3296","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3297","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3298","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3299","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3300","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3301","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3302","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3303","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3304","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3305","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3306","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3307","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3308","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3309","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3310","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3311","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3312","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3313","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3314","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3315","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3316","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3317","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3318","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3319","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3320","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3323","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3324","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3325","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3326","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3327","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3328","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3329","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3330","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3331","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3332","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3334","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3335","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3336","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3337","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3338","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3339","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3340","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3341","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3342","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3343","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3344","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3345","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3346","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3347","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3348","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3349","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3350","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3351","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3352","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3353","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3433","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3500","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3501","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3502","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3513","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3516","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3621","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3622","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3623","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3624","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3625","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3626","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3627","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3628","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3629","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3630","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3631","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3632","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3633","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3634","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3635","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3636","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3637","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3638","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3639","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3640","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3641","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3642","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3643","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3644","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3645","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3646","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3652","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3653","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3654","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3655","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3656","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3657","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3658","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3659","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3660","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3661","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3662","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3663","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3664","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3665","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3666","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3667","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3668","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3669","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3670","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3671","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3672","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3673","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3674","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3675","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3676","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3677","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3678","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3679","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3680","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3681","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3682","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3683","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3684","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3685","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3686","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3687","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3688","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3689","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3690","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3691","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3692","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3693","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3694","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3695","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3696","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3697","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3698","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3699","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3700","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3701","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3702","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3703","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3706","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3707","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3708","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3709","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3710","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3711","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3712","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3713","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3714","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3715","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3716","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3717","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3718","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3719","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3720","1","1"); INSERT INTO lotessancionesacumuladas VALUES("3721","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3722","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3723","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3724","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3725","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3726","3","1"); INSERT INTO lotessancionesacumuladas VALUES("3728","2","1"); INSERT INTO lotessancionesacumuladas VALUES("3729","4","1"); INSERT INTO lotessancionesacumuladas VALUES("3730","5","1"); INSERT INTO lotessancionesacumuladas VALUES("3926","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4089","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4116","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4125","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4339","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4340","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4341","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4342","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4343","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4344","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4345","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4346","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4347","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4348","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4349","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4350","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4351","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4352","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4353","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4354","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4355","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4356","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4357","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4358","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4359","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4360","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4361","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4362","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4363","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4364","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4365","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4366","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4367","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4368","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4369","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4370","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4371","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4372","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4373","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4374","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4375","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4376","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4377","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4378","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4379","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4380","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4381","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4382","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4383","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4384","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4385","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4386","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4387","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4388","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4389","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4390","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4391","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4392","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4393","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4394","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4395","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4396","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4397","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4398","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4399","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4400","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4401","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4402","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4403","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4404","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4405","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4406","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4407","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4408","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4409","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4410","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4414","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4415","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4416","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4417","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4418","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4419","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4420","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4421","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4422","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4423","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4424","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4425","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4426","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4427","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4428","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4429","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4430","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4431","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4432","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4433","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4434","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4435","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4436","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4437","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4438","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4439","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4440","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4441","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4442","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4443","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4444","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4445","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4446","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4447","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4448","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4449","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4450","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4452","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4453","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4454","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4455","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4456","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4457","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4458","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4459","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4460","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4461","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4462","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4463","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4464","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4465","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4466","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4467","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4468","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4469","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4470","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4471","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4472","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4473","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4477","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4478","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4479","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4480","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4481","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4482","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4483","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4484","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4485","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4486","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4487","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4488","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4489","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4490","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4491","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4492","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4493","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4494","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4495","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4496","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4497","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4498","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4499","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4500","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4501","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4502","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4503","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4504","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4505","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4506","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4507","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4508","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4509","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4510","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4511","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4512","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4513","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4514","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4515","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4516","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4517","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4518","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4519","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4520","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4521","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4522","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4523","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4524","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4525","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4526","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4527","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4528","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4529","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4530","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4531","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4532","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4533","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4534","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4535","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4536","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4537","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4538","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4539","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4540","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4541","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4542","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4543","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4544","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4545","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4546","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4547","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4548","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4549","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4550","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4551","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4552","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4553","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4554","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4555","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4556","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4557","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4562","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4563","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4564","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4565","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4566","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4567","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4568","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4569","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4570","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4571","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4572","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4573","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4574","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4575","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4576","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4577","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4578","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4579","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4580","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4581","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4582","3","1"); INSERT INTO lotessancionesacumuladas VALUES("4583","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4584","4","1"); INSERT INTO lotessancionesacumuladas VALUES("4585","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4586","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4587","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4588","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4589","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4590","1","1"); INSERT INTO lotessancionesacumuladas VALUES("4591","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4592","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4593","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4596","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4892","5","1"); INSERT INTO lotessancionesacumuladas VALUES("4898","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4901","2","1"); INSERT INTO lotessancionesacumuladas VALUES("4902","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5061","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5062","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5063","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5064","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5065","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5066","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5067","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5068","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5069","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5070","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5071","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5072","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5073","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5074","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5075","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5076","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5077","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5078","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5079","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5080","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5081","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5082","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5083","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5084","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5085","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5086","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5087","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5088","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5089","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5090","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5091","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5092","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5093","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5094","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5095","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5096","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5097","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5098","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5099","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5100","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5101","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5102","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5103","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5104","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5105","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5106","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5107","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5108","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5109","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5110","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5111","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5112","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5113","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5114","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5115","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5116","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5117","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5118","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5119","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5120","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5121","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5122","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5123","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5124","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5125","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5126","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5127","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5128","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5129","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5130","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5131","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5132","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5133","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5134","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5135","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5136","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5137","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5138","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5139","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5140","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5141","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5142","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5143","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5144","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5145","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5146","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5147","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5148","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5149","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5150","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5151","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5152","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5153","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5154","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5155","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5156","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5157","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5158","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5159","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5160","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5161","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5162","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5163","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5164","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5165","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5166","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5167","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5168","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5169","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5170","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5171","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5172","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5173","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5174","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5175","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5176","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5177","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5178","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5179","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5180","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5181","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5182","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5183","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5184","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5185","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5186","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5187","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5188","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5189","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5190","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5191","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5192","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5193","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5194","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5195","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5196","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5197","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5198","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5199","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5200","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5201","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5202","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5203","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5204","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5205","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5206","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5207","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5208","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5209","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5210","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5211","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5212","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5213","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5214","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5215","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5216","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5217","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5218","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5219","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5220","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5221","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5222","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5224","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5225","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5226","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5227","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5228","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5231","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5232","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5233","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5234","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5235","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5236","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5237","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5238","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5239","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5240","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5241","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5242","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5243","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5244","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5245","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5246","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5247","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5248","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5249","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5250","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5251","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5252","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5291","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5412","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5413","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5414","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5415","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5416","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5421","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5422","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5431","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5432","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5433","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5434","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5435","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5436","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5437","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5438","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5439","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5440","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5441","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5442","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5443","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5444","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5448","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5449","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5450","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5452","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5453","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5454","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5455","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5456","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5457","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5458","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5460","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5461","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5463","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5464","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5465","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5466","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5467","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5468","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5469","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5470","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5474","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5475","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5476","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5480","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5481","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5490","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5491","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5492","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5494","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5495","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5496","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5497","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5500","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5501","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5505","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5506","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5507","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5508","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5509","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5512","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5513","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5514","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5515","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5516","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5517","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5518","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5519","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5521","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5522","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5531","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5535","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5536","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5537","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5538","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5539","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5540","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5543","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5544","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5545","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5546","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5547","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5548","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5549","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5553","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5554","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5555","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5556","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5557","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5560","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5561","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5567","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5569","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5570","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5571","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5572","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5574","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5575","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5576","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5577","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5578","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5579","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5580","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5590","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5591","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5592","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5595","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5596","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5597","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5600","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5601","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5602","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5603","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5604","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5605","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5606","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5607","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5608","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5609","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5610","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5611","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5612","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5613","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5614","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5615","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5616","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5619","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5620","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5621","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5622","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5623","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5624","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5627","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5628","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5629","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5631","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5632","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5642","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5643","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5644","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5648","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5649","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5650","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5651","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5653","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5654","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5655","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5656","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5658","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5659","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5660","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5665","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5666","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5667","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5668","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5669","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5670","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5671","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5672","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5677","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5678","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5679","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5680","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5681","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5682","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5683","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5684","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5685","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5686","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5687","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5688","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5691","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5692","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5693","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5694","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5695","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5696","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5697","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5698","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5699","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5700","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5701","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5702","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5703","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5704","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5705","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5706","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5707","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5708","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5709","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5710","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5711","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5712","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5713","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5714","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5715","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5716","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5717","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5718","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5719","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5720","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5721","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5722","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5723","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5724","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5725","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5726","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5727","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5728","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5729","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5730","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5731","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5732","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5733","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5734","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5735","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5736","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5737","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5738","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5739","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5740","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5741","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5742","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5743","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5744","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5745","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5746","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5747","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5748","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5749","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5750","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5751","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5752","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5753","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5754","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5755","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5756","4","1"); INSERT INTO lotessancionesacumuladas VALUES("5757","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5758","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5759","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5760","5","1"); INSERT INTO lotessancionesacumuladas VALUES("5761","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5762","2","1"); INSERT INTO lotessancionesacumuladas VALUES("5763","1","1"); INSERT INTO lotessancionesacumuladas VALUES("5764","3","1"); INSERT INTO lotessancionesacumuladas VALUES("5765","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6056","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6091","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6092","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6093","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6094","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6095","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6096","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6097","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6098","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6099","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6100","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6101","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6103","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6104","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6105","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6106","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6107","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6108","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6109","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6110","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6111","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6112","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6113","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6114","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6115","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6116","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6117","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6118","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6119","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6120","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6121","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6122","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6123","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6124","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6125","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6126","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6127","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6128","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6129","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6130","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6131","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6132","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6133","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6134","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6135","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6136","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6137","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6138","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6139","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6140","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6141","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6142","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6143","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6144","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6145","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6146","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6147","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6148","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6149","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6150","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6151","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6152","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6153","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6154","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6155","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6156","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6157","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6158","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6159","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6160","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6161","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6162","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6163","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6164","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6165","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6166","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6167","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6168","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6169","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6170","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6171","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6172","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6173","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6174","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6175","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6176","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6177","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6178","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6179","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6180","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6181","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6182","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6183","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6184","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6185","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6186","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6187","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6188","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6189","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6192","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6193","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6194","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6195","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6196","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6197","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6198","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6199","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6200","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6201","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6202","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6203","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6206","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6207","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6208","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6209","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6210","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6211","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6212","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6213","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6214","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6215","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6216","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6217","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6218","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6219","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6220","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6221","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6222","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6223","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6224","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6225","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6227","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6228","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6229","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6230","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6231","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6232","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6233","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6234","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6235","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6236","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6237","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6238","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6239","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6240","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6241","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6248","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6558","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6559","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6560","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6561","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6565","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6566","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6567","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6568","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6569","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6570","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6571","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6572","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6573","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6574","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6575","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6576","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6577","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6578","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6579","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6580","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6581","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6582","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6583","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6584","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6585","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6586","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6587","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6588","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6589","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6590","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6591","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6593","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6594","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6595","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6596","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6597","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6598","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6606","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6623","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6624","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6625","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6630","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6656","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6657","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6658","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6659","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6660","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6661","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6662","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6663","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6664","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6665","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6666","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6667","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6668","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6669","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6670","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6671","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6672","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6673","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6674","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6675","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6676","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6677","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6678","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6679","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6683","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6684","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6685","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6686","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6687","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6688","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6689","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6690","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6691","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6692","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6693","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6694","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6695","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6696","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6697","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6698","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6699","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6700","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6701","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6702","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6703","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6709","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6710","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6711","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6712","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6713","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6715","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6716","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6717","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6718","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6719","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6720","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6721","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6722","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6723","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6724","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6725","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6726","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6727","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6728","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6729","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6730","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6731","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6732","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6733","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6734","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6735","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6736","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6737","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6738","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6739","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6740","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6741","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6742","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6743","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6744","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6745","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6746","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6747","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6748","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6749","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6750","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6751","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6752","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6753","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6754","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6755","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6756","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6757","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6758","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6759","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6760","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6761","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6762","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6763","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6764","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6765","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6766","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6767","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6768","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6769","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6770","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6771","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6772","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6773","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6774","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6775","1","1"); INSERT INTO lotessancionesacumuladas VALUES("6776","3","1"); INSERT INTO lotessancionesacumuladas VALUES("6777","5","1"); INSERT INTO lotessancionesacumuladas VALUES("6778","4","1"); INSERT INTO lotessancionesacumuladas VALUES("6779","2","1"); INSERT INTO lotessancionesacumuladas VALUES("6780","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7040","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7074","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7075","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7076","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7077","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7078","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7079","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7080","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7081","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7082","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7083","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7084","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7085","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7086","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7087","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7088","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7089","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7090","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7091","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7092","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7093","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7094","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7095","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7096","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7097","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7098","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7099","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7100","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7101","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7102","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7103","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7104","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7105","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7106","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7107","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7108","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7109","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7110","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7111","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7112","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7113","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7114","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7115","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7116","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7117","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7118","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7119","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7120","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7121","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7122","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7123","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7124","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7125","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7126","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7127","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7128","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7129","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7130","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7131","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7132","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7133","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7134","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7135","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7136","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7137","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7138","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7139","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7140","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7141","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7142","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7143","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7144","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7145","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7146","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7147","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7148","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7149","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7150","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7151","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7152","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7153","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7154","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7155","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7156","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7157","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7158","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7159","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7160","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7161","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7162","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7163","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7164","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7165","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7166","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7167","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7168","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7169","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7170","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7171","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7172","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7173","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7174","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7175","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7176","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7177","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7178","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7179","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7180","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7181","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7182","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7183","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7184","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7185","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7186","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7187","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7188","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7189","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7190","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7191","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7192","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7193","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7194","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7195","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7196","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7197","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7198","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7199","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7200","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7201","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7202","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7203","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7204","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7206","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7207","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7208","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7209","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7210","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7211","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7212","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7213","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7214","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7215","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7216","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7217","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7218","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7219","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7220","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7221","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7222","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7223","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7340","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7341","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7342","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7343","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7344","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7345","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7346","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7347","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7348","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7349","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7350","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7351","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7352","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7353","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7354","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7355","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7356","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7357","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7358","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7359","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7360","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7361","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7362","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7363","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7364","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7365","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7366","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7367","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7368","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7369","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7370","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7371","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7372","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7373","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7374","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7375","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7376","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7377","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7378","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7379","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7380","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7381","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7384","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7385","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7386","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7387","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7388","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7389","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7390","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7391","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7398","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7399","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7400","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7401","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7402","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7408","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7409","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7410","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7411","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7412","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7415","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7416","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7417","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7418","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7419","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7420","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7421","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7422","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7423","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7424","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7425","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7426","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7427","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7428","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7429","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7431","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7432","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7598","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7599","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7600","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7601","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7602","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7603","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7604","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7605","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7606","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7607","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7608","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7609","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7610","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7611","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7612","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7613","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7614","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7615","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7616","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7617","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7618","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7619","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7624","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7625","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7626","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7627","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7628","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7629","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7630","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7631","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7632","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7634","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7635","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7636","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7637","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7638","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7639","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7640","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7641","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7642","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7643","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7644","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7645","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7646","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7647","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7648","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7649","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7650","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7651","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7652","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7653","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7654","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7655","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7657","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7658","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7659","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7660","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7661","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7662","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7663","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7664","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7665","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7666","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7669","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7670","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7671","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7672","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7673","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7674","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7675","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7676","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7677","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7678","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7679","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7680","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7681","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7682","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7683","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7684","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7685","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7686","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7687","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7688","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7689","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7729","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7778","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7779","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7780","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7781","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7782","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7783","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7784","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7785","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7786","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7787","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7788","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7789","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7790","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7791","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7792","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7793","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7794","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7795","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7796","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7797","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7798","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7799","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7800","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7801","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7802","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7805","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7806","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7807","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7808","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7809","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7810","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7811","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7812","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7813","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7814","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7815","3","1"); INSERT INTO lotessancionesacumuladas VALUES("7816","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7817","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7818","4","1"); INSERT INTO lotessancionesacumuladas VALUES("7819","5","1"); INSERT INTO lotessancionesacumuladas VALUES("7820","1","1"); INSERT INTO lotessancionesacumuladas VALUES("7823","2","1"); INSERT INTO lotessancionesacumuladas VALUES("7824","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8054","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8065","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8066","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8067","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8068","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8069","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8070","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8071","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8072","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8073","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8074","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8075","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8076","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8077","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8078","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8079","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8080","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8081","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8082","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8083","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8084","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8085","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8086","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8087","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8088","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8089","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8090","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8091","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8092","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8093","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8094","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8095","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8096","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8097","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8098","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8099","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8100","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8101","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8102","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8106","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8107","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8108","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8109","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8110","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8111","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8112","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8113","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8114","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8115","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8116","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8117","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8118","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8119","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8120","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8121","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8122","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8123","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8124","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8125","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8126","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8127","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8128","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8129","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8130","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8131","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8132","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8133","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8134","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8135","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8136","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8137","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8138","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8139","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8140","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8141","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8142","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8143","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8144","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8145","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8146","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8147","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8148","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8149","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8150","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8151","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8152","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8153","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8154","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8155","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8156","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8157","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8158","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8159","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8160","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8161","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8162","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8163","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8164","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8165","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8166","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8167","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8168","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8169","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8170","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8171","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8172","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8173","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8174","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8274","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8275","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8276","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8279","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8340","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8341","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8342","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8343","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8344","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8345","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8346","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8347","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8348","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8349","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8350","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8351","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8352","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8353","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8354","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8355","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8356","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8357","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8358","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8359","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8360","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8361","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8362","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8363","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8364","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8365","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8366","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8367","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8368","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8369","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8371","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8372","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8373","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8374","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8375","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8376","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8377","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8378","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8379","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8380","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8381","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8382","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8383","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8384","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8385","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8386","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8387","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8388","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8389","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8390","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8391","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8392","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8393","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8394","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8395","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8396","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8397","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8398","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8399","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8400","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8401","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8402","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8403","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8404","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8405","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8406","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8407","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8408","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8409","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8410","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8411","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8412","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8413","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8414","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8415","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8416","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8417","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8418","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8419","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8420","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8421","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8422","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8423","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8424","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8425","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8426","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8427","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8428","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8429","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8430","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8431","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8432","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8433","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8434","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8435","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8512","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8513","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8514","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8606","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8607","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8608","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8655","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8656","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8657","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8658","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8659","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8660","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8661","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8662","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8663","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8664","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8665","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8666","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8667","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8668","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8669","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8670","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8671","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8672","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8673","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8674","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8675","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8676","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8677","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8678","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8679","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8680","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8681","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8690","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8691","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8692","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8693","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8694","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8695","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8696","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8697","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8698","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8699","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8700","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8702","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8703","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8704","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8705","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8706","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8707","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8708","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8709","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8710","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8711","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8712","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8713","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8714","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8715","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8716","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8717","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8718","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8719","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8720","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8721","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8722","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8723","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8724","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8725","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8726","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8727","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8728","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8729","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8730","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8731","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8732","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8733","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8734","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8735","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8736","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8737","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8738","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8739","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8740","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8742","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8743","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8744","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8745","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8746","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8747","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8748","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8749","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8750","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8751","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8752","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8753","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8754","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8755","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8756","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8757","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8758","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8759","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8760","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8761","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8845","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8974","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8975","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8976","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8984","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8985","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8986","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8987","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8988","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8989","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8990","5","1"); INSERT INTO lotessancionesacumuladas VALUES("8991","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8992","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8993","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8994","3","1"); INSERT INTO lotessancionesacumuladas VALUES("8995","4","1"); INSERT INTO lotessancionesacumuladas VALUES("8996","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8997","2","1"); INSERT INTO lotessancionesacumuladas VALUES("8998","1","1"); INSERT INTO lotessancionesacumuladas VALUES("8999","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9000","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9001","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9002","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9003","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9004","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9005","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9006","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9007","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9008","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9009","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9010","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9011","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9012","5","1"); INSERT INTO lotessancionesacumuladas VALUES("9013","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9014","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9015","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9016","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9017","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9018","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9019","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9020","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9021","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9022","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9023","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9024","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9025","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9026","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9027","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9028","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9029","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9030","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9031","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9032","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9033","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9034","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9035","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9036","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9037","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9040","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9041","5","1"); INSERT INTO lotessancionesacumuladas VALUES("9042","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9043","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9044","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9045","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9046","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9047","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9048","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9049","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9050","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9051","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9052","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9053","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9054","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9055","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9056","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9057","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9058","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9059","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9060","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9061","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9062","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9063","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9064","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9065","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9066","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9067","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9068","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9069","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9070","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9071","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9072","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9073","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9074","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9075","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9076","5","1"); INSERT INTO lotessancionesacumuladas VALUES("9077","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9078","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9079","5","1"); INSERT INTO lotessancionesacumuladas VALUES("9080","5","1"); INSERT INTO lotessancionesacumuladas VALUES("9081","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9082","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9083","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9084","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9085","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9086","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9087","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9088","5","1"); INSERT INTO lotessancionesacumuladas VALUES("9089","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9090","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9143","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9263","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9264","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9265","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9266","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9267","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9268","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9269","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9270","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9271","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9272","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9273","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9274","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9275","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9276","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9277","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9278","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9279","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9280","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9281","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9282","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9283","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9284","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9286","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9287","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9288","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9289","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9294","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9295","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9296","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9297","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9298","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9299","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9300","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9301","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9302","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9303","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9304","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9305","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9306","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9307","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9308","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9309","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9310","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9311","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9312","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9313","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9314","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9315","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9316","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9317","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9318","5","1"); INSERT INTO lotessancionesacumuladas VALUES("9319","5","1"); INSERT INTO lotessancionesacumuladas VALUES("9320","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9321","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9322","5","1"); INSERT INTO lotessancionesacumuladas VALUES("9323","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9324","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9325","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9326","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9327","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9328","5","1"); INSERT INTO lotessancionesacumuladas VALUES("9329","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9330","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9331","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9334","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9335","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9336","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9337","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9338","5","1"); INSERT INTO lotessancionesacumuladas VALUES("9341","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9342","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9343","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9344","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9345","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9346","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9347","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9348","5","1"); INSERT INTO lotessancionesacumuladas VALUES("9349","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9350","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9351","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9352","5","1"); INSERT INTO lotessancionesacumuladas VALUES("9353","5","1"); INSERT INTO lotessancionesacumuladas VALUES("9354","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9355","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9356","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9357","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9358","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9359","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9360","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9361","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9362","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9363","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9364","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9518","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9519","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9521","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9547","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9548","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9549","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9550","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9551","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9552","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9553","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9554","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9555","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9556","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9557","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9558","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9559","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9560","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9561","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9562","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9563","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9564","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9566","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9567","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9568","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9569","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9570","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9571","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9572","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9573","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9574","5","1"); INSERT INTO lotessancionesacumuladas VALUES("9575","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9576","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9577","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9578","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9579","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9580","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9581","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9582","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9583","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9584","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9585","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9586","5","1"); INSERT INTO lotessancionesacumuladas VALUES("9587","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9588","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9589","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9590","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9591","5","1"); INSERT INTO lotessancionesacumuladas VALUES("9592","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9595","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9596","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9597","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9598","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9599","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9600","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9601","5","1"); INSERT INTO lotessancionesacumuladas VALUES("9602","5","1"); INSERT INTO lotessancionesacumuladas VALUES("9603","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9604","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9605","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9606","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9607","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9608","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9609","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9610","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9611","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9612","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9613","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9614","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9615","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9616","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9617","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9618","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9619","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9620","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9621","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9622","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9623","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9626","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9627","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9628","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9629","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9630","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9632","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9633","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9634","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9635","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9636","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9637","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9638","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9639","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9640","5","1"); INSERT INTO lotessancionesacumuladas VALUES("9641","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9642","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9643","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9644","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9645","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9646","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9647","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9648","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9789","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9814","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9815","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9816","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9817","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9818","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9845","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9846","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9847","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9848","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9849","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9850","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9851","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9852","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9853","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9854","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9855","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9856","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9857","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9858","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9859","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9860","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9861","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9862","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9863","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9864","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9865","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9866","5","1"); INSERT INTO lotessancionesacumuladas VALUES("9867","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9868","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9869","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9870","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9871","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9872","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9873","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9874","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9875","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9876","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9877","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9878","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9879","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9880","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9881","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9882","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9883","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9884","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9885","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9886","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9887","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9888","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9889","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9890","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9891","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9892","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9893","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9894","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9895","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9896","5","1"); INSERT INTO lotessancionesacumuladas VALUES("9897","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9898","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9899","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9901","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9902","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9903","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9904","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9905","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9906","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9907","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9908","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9909","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9910","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9911","1","1"); INSERT INTO lotessancionesacumuladas VALUES("9912","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9913","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9914","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9915","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9916","5","1"); INSERT INTO lotessancionesacumuladas VALUES("9917","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9918","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9919","2","1"); INSERT INTO lotessancionesacumuladas VALUES("9920","3","1"); INSERT INTO lotessancionesacumuladas VALUES("9921","4","1"); INSERT INTO lotessancionesacumuladas VALUES("9922","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10053","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10062","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10073","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10091","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10092","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10093","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10094","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10095","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10096","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10097","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10098","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10099","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10100","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10101","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10102","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10103","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10104","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10105","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10106","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10107","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10108","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10109","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10110","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10111","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10112","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10113","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10114","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10115","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10116","5","1"); INSERT INTO lotessancionesacumuladas VALUES("10117","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10118","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10119","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10120","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10121","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10122","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10123","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10124","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10125","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10126","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10127","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10128","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10129","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10130","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10131","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10132","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10133","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10134","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10135","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10136","5","1"); INSERT INTO lotessancionesacumuladas VALUES("10137","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10138","4","1"); INSERT INTO lotessancionesacumuladas VALUES("10139","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10140","4","1"); INSERT INTO lotessancionesacumuladas VALUES("10141","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10142","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10143","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10144","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10145","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10146","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10147","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10148","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10149","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10150","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10151","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10152","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10153","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10154","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10155","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10156","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10157","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10158","4","1"); INSERT INTO lotessancionesacumuladas VALUES("10159","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10160","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10161","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10162","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10163","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10164","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10166","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10167","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10168","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10169","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10170","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10171","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10172","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10173","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10174","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10175","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10176","4","1"); INSERT INTO lotessancionesacumuladas VALUES("10177","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10178","5","1"); INSERT INTO lotessancionesacumuladas VALUES("10179","5","1"); INSERT INTO lotessancionesacumuladas VALUES("10180","5","1"); INSERT INTO lotessancionesacumuladas VALUES("10181","4","1"); INSERT INTO lotessancionesacumuladas VALUES("10183","4","1"); INSERT INTO lotessancionesacumuladas VALUES("10329","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10330","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10331","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10332","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10333","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10334","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10335","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10336","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10337","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10338","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10339","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10340","4","1"); INSERT INTO lotessancionesacumuladas VALUES("10341","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10342","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10343","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10345","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10346","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10347","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10348","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10349","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10350","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10351","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10352","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10353","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10354","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10355","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10356","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10357","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10358","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10359","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10360","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10361","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10362","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10363","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10364","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10365","4","1"); INSERT INTO lotessancionesacumuladas VALUES("10366","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10367","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10368","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10369","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10370","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10371","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10372","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10373","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10374","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10375","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10376","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10377","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10378","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10379","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10380","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10381","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10382","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10383","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10384","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10385","4","1"); INSERT INTO lotessancionesacumuladas VALUES("10386","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10387","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10388","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10389","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10390","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10391","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10392","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10393","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10394","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10395","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10396","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10397","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10398","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10399","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10400","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10401","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10402","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10403","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10407","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10408","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10409","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10410","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10411","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10412","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10414","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10415","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10416","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10507","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10508","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10515","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10516","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10517","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10518","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10548","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10549","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10550","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10551","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10552","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10553","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10554","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10555","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10556","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10557","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10558","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10559","4","1"); INSERT INTO lotessancionesacumuladas VALUES("10560","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10561","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10562","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10563","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10564","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10565","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10566","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10567","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10568","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10569","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10570","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10571","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10572","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10573","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10574","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10575","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10576","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10577","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10578","4","1"); INSERT INTO lotessancionesacumuladas VALUES("10579","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10580","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10581","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10582","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10583","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10584","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10585","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10586","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10587","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10588","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10589","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10590","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10591","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10592","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10593","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10594","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10595","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10596","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10597","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10598","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10599","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10600","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10601","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10602","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10603","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10604","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10605","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10606","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10607","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10608","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10609","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10610","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10611","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10612","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10613","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10614","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10615","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10616","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10617","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10618","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10619","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10620","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10678","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10762","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10767","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10768","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10770","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10771","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10772","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10773","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10778","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10779","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10780","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10781","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10782","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10783","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10784","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10785","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10786","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10789","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10790","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10796","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10797","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10798","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10799","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10800","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10801","5","1"); INSERT INTO lotessancionesacumuladas VALUES("10802","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10803","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10808","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10809","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10812","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10813","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10814","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10821","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10822","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10824","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10825","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10826","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10827","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10828","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10829","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10830","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10831","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10832","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10833","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10834","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10835","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10836","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10837","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10838","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10839","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10840","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10841","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10842","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10843","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10844","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10845","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10846","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10847","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10848","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10849","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10850","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10851","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10852","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10853","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10854","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10855","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10856","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10857","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10858","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10859","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10860","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10861","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10862","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10863","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10864","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10865","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10866","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10867","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10868","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10869","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10870","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10871","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10872","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10873","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10874","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10875","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10876","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10877","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10878","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10879","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10880","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10881","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10882","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10883","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10884","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10885","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10886","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10887","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10888","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10889","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10890","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10891","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10892","2","1"); INSERT INTO lotessancionesacumuladas VALUES("10992","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10993","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10994","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10995","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10996","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10997","1","1"); INSERT INTO lotessancionesacumuladas VALUES("10998","3","1"); INSERT INTO lotessancionesacumuladas VALUES("10999","3","1"); INSERT INTO lotessancionesacumuladas VALUES("11000","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11002","3","1"); INSERT INTO lotessancionesacumuladas VALUES("11003","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11004","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11005","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11006","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11007","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11008","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11009","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11010","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11011","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11012","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11013","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11014","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11015","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11016","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11017","3","1"); INSERT INTO lotessancionesacumuladas VALUES("11018","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11019","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11020","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11021","3","1"); INSERT INTO lotessancionesacumuladas VALUES("11022","3","1"); INSERT INTO lotessancionesacumuladas VALUES("11023","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11024","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11025","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11026","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11027","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11028","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11029","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11030","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11031","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11032","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11033","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11034","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11035","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11036","4","1"); INSERT INTO lotessancionesacumuladas VALUES("11037","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11040","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11041","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11042","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11044","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11045","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11046","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11047","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11048","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11141","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11142","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11143","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11145","3","1"); INSERT INTO lotessancionesacumuladas VALUES("11146","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11147","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11148","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11149","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11150","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11151","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11152","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11153","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11154","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11156","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11157","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11158","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11159","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11160","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11162","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11163","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11164","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11165","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11166","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11167","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11168","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11169","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11170","3","1"); INSERT INTO lotessancionesacumuladas VALUES("11171","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11172","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11175","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11176","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11177","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11178","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11179","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11180","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11181","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11182","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11184","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11186","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11187","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11188","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11189","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11190","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11191","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11192","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11193","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11194","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11195","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11196","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11287","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11289","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11309","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11310","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11311","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11312","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11313","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11314","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11315","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11319","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11320","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11321","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11322","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11323","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11324","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11325","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11326","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11327","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11328","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11329","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11330","3","1"); INSERT INTO lotessancionesacumuladas VALUES("11331","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11332","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11333","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11334","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11335","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11336","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11337","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11340","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11341","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11342","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11343","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11344","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11345","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11346","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11347","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11348","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11349","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11350","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11351","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11352","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11353","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11354","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11355","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11356","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11357","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11358","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11359","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11360","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11361","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11362","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11363","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11364","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11365","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11366","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11367","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11369","4","1"); INSERT INTO lotessancionesacumuladas VALUES("11370","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11371","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11372","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11373","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11374","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11375","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11376","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11377","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11379","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11380","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11381","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11382","3","1"); INSERT INTO lotessancionesacumuladas VALUES("11383","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11384","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11385","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11386","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11387","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11388","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11454","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11456","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11460","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11469","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11476","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11477","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11478","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11479","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11480","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11481","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11489","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11495","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11496","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11497","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11498","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11499","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11500","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11501","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11512","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11514","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11515","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11516","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11522","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11523","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11524","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11525","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11527","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11528","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11529","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11530","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11531","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11532","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11535","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11536","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11537","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11538","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11539","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11540","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11541","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11542","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11543","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11545","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11546","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11547","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11549","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11550","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11551","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11552","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11554","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11555","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11556","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11557","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11558","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11559","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11560","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11561","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11562","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11563","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11564","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11565","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11566","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11567","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11571","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11572","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11573","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11574","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11575","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11576","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11577","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11578","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11579","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11580","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11581","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11582","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11583","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11584","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11585","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11598","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11599","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11600","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11601","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11602","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11603","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11617","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11618","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11619","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11622","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11623","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11624","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11625","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11626","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11627","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11628","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11629","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11630","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11631","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11632","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11633","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11634","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11635","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11636","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11637","2","1"); INSERT INTO lotessancionesacumuladas VALUES("11641","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11642","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11643","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11644","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11649","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11651","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11654","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11655","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11656","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11657","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11658","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11659","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11662","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11663","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11664","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11670","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11671","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11672","1","1"); INSERT INTO lotessancionesacumuladas VALUES("11673","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12251","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12252","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12271","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12272","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12279","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12376","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12377","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12378","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12379","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12380","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12381","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12382","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12383","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12387","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12388","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12389","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12390","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12391","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12392","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12393","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12394","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12395","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12396","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12397","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12398","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12399","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12400","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12401","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12402","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12403","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12404","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12405","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12406","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12407","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12408","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12409","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12410","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12412","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12413","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12414","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12415","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12416","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12417","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12418","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12419","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12420","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12421","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12422","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12423","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12424","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12425","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12426","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12427","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12428","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12429","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12430","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12431","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12432","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12433","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12434","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12435","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12436","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12437","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12438","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12439","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12446","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12447","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12448","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12449","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12450","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12451","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12452","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12453","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12454","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12455","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12456","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12457","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12458","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12459","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12460","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12461","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12462","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12463","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12464","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12465","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12466","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12467","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12468","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12469","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12470","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12471","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12472","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12473","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12474","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12475","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12476","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12477","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12478","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12479","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12480","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12481","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12482","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12483","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12484","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12485","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12486","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12487","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12494","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12495","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12496","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12497","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12498","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12499","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12500","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12501","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12502","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12503","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12504","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12505","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12506","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12507","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12508","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12509","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12510","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12511","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12512","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12513","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12514","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12515","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12516","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12517","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12518","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12519","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12520","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12521","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12522","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12523","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12524","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12525","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12526","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12527","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12528","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12529","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12530","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12531","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12532","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12533","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12534","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12535","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12536","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12537","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12538","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12539","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12540","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12541","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12542","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12543","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12544","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12545","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12546","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12547","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12548","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12549","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12550","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12551","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12552","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12553","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12554","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12555","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12556","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12557","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12558","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12559","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12565","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12566","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12567","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12568","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12569","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12570","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12571","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12572","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12573","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12574","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12575","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12576","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12577","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12578","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12579","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12583","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12584","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12585","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12586","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12587","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12588","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12589","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12590","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12591","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12592","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12593","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12594","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12595","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12596","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12597","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12598","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12599","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12600","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12601","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12602","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12603","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12604","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12605","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12606","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12607","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12608","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12609","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12610","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12611","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12612","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12613","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12614","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12615","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12616","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12617","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12618","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12619","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12620","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12621","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12622","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12623","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12624","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12625","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12626","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12627","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12628","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12629","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12630","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12631","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12632","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12633","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12634","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12635","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12636","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12637","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12638","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12639","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12640","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12641","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12642","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12643","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12644","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12645","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12646","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12647","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12648","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12649","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12650","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12651","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12652","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12653","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12654","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12655","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12656","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12657","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12658","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12659","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12660","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12661","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12662","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12663","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12664","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12665","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12666","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12667","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12668","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12669","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12670","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12671","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12672","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12673","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12674","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12675","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12676","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12677","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12678","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12679","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12680","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12681","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12682","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12683","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12684","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12685","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12686","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12687","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12688","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12689","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12690","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12691","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12692","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12693","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12694","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12695","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12696","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12697","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12698","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12699","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12700","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12701","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12702","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12703","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12704","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12705","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12706","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12707","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12708","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12709","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12710","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12711","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12712","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12713","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12714","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12715","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12716","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12717","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12718","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12719","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12720","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12721","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12722","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12724","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12725","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12727","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12728","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12729","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12731","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12732","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12733","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12734","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12735","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12736","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12737","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12738","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12739","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12740","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12741","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12742","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12743","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12744","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12745","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12746","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12747","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12760","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12761","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12762","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12763","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12764","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12765","4","1"); INSERT INTO lotessancionesacumuladas VALUES("12766","1","1"); INSERT INTO lotessancionesacumuladas VALUES("12767","3","1"); INSERT INTO lotessancionesacumuladas VALUES("12768","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12769","2","1"); INSERT INTO lotessancionesacumuladas VALUES("12770","5","1"); INSERT INTO lotessancionesacumuladas VALUES("12771","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13009","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13010","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13011","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13012","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13013","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13014","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13015","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13016","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13043","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13044","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13045","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13046","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13047","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13087","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13088","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13089","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13090","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13091","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13092","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13212","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13213","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13214","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13221","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13226","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13228","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13229","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13243","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13244","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13245","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13251","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13252","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13257","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13258","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13266","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13267","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13282","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13283","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13289","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13290","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13291","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13292","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13297","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13298","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13299","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13300","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13301","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13302","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13303","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13304","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13305","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13306","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13307","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13308","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13309","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13310","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13311","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13312","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13313","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13314","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13315","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13316","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13317","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13318","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13319","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13320","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13321","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13322","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13323","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13324","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13325","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13326","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13327","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13328","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13329","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13330","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13331","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13332","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13333","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13334","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13335","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13336","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13337","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13338","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13339","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13340","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13341","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13342","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13343","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13344","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13345","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13346","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13347","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13348","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13349","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13350","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13351","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13352","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13353","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13354","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13355","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13356","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13357","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13358","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13359","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13360","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13361","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13362","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13363","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13364","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13365","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13366","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13367","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13368","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13369","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13370","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13371","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13372","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13373","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13374","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13375","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13376","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13377","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13378","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13379","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13380","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13381","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13382","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13383","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13384","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13385","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13386","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13387","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13388","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13389","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13390","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13391","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13392","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13393","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13394","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13395","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13396","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13397","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13398","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13399","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13400","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13401","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13402","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13403","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13404","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13405","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13408","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13409","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13410","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13411","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13412","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13413","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13414","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13415","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13416","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13417","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13418","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13419","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13420","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13421","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13422","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13423","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13424","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13425","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13426","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13427","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13428","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13429","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13430","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13431","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13432","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13433","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13434","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13435","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13436","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13437","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13438","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13439","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13441","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13442","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13443","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13444","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13445","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13446","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13447","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13448","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13449","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13450","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13451","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13452","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13453","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13454","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13455","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13456","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13457","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13458","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13459","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13460","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13461","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13462","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13463","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13464","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13465","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13466","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13467","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13468","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13469","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13470","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13471","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13472","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13473","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13474","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13475","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13476","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13477","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13478","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13479","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13480","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13481","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13482","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13483","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13484","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13485","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13486","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13487","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13488","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13489","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13490","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13491","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13492","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13493","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13494","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13495","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13496","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13497","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13498","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13499","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13500","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13501","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13502","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13503","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13504","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13505","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13506","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13507","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13508","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13509","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13510","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13511","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13512","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13513","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13514","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13515","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13516","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13517","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13518","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13519","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13520","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13521","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13522","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13523","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13524","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13525","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13526","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13527","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13528","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13529","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13530","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13531","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13532","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13533","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13540","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13541","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13542","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13543","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13544","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13545","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13546","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13547","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13548","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13549","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13550","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13551","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13552","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13553","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13554","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13555","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13556","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13559","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13560","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13562","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13563","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13564","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13565","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13566","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13567","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13568","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13569","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13570","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13571","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13572","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13573","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13574","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13575","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13576","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13577","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13578","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13579","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13580","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13581","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13582","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13583","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13584","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13585","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13586","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13587","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13588","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13589","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13590","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13591","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13592","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13593","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13594","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13595","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13596","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13597","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13598","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13599","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13600","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13601","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13602","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13603","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13604","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13605","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13606","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13607","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13608","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13609","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13610","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13611","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13708","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13709","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13710","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13711","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13712","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13713","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13714","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13715","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13716","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13717","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13718","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13719","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13720","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13721","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13724","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13725","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13726","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13727","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13728","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13729","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13730","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13731","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13732","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13733","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13734","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13735","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13736","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13737","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13738","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13739","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13740","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13741","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13742","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13743","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13744","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13745","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13746","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13747","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13748","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13749","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13750","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13751","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13752","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13753","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13754","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13755","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13756","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13757","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13758","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13759","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13760","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13761","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13762","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13763","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13764","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13765","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13766","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13767","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13768","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13769","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13770","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13771","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13772","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13773","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13774","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13775","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13776","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13777","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13781","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13782","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13783","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13784","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13785","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13786","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13787","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13788","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13789","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13790","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13791","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13792","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13793","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13794","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13795","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13796","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13797","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13798","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13801","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13802","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13803","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13804","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13805","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13806","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13807","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13808","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13809","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13820","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13821","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13826","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13827","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13828","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13829","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13830","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13831","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13832","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13868","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13869","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13870","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13871","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13872","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13873","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13874","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13878","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13879","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13880","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13881","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13882","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13883","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13892","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13893","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13902","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13903","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13904","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13907","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13908","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13909","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13910","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13911","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13912","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13919","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13920","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13921","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13922","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13923","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13924","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13927","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13928","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13929","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13930","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13931","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13932","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13933","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13934","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13944","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13945","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13946","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13951","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13952","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13953","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13954","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13959","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13960","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13961","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13962","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13963","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13964","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13965","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13966","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13969","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13970","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13971","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13972","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13973","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13974","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13975","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13983","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13984","2","1"); INSERT INTO lotessancionesacumuladas VALUES("13985","4","1"); INSERT INTO lotessancionesacumuladas VALUES("13986","3","1"); INSERT INTO lotessancionesacumuladas VALUES("13987","1","1"); INSERT INTO lotessancionesacumuladas VALUES("13988","5","1"); INSERT INTO lotessancionesacumuladas VALUES("13998","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14005","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14006","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14007","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14008","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14009","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14010","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14011","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14012","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14016","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14018","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14019","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14020","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14022","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14023","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14024","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14033","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14034","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14039","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14043","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14044","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14048","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14049","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14050","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14051","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14052","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14053","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14054","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14055","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14056","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14057","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14059","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14066","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14067","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14068","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14069","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14070","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14071","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14074","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14075","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14076","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14077","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14078","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14079","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14080","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14081","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14082","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14083","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14095","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14096","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14097","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14098","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14099","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14100","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14101","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14104","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14105","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14106","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14107","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14108","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14109","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14110","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14111","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14112","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14113","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14114","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14115","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14116","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14117","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14118","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14119","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14120","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14121","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14122","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14123","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14124","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14125","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14126","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14127","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14128","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14129","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14130","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14131","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14132","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14133","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14134","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14135","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14136","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14137","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14138","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14139","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14140","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14141","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14142","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14143","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14144","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14145","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14146","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14147","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14148","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14149","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14150","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14151","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14152","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14153","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14154","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14155","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14156","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14157","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14158","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14159","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14160","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14161","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14162","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14163","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14164","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14165","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14166","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14260","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14261","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14262","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14263","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14264","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14265","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14266","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14267","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14268","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14269","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14270","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14271","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14272","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14273","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14274","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14275","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14276","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14277","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14278","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14279","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14280","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14281","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14282","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14283","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14284","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14285","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14286","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14287","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14288","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14289","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14290","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14291","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14292","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14293","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14294","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14295","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14296","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14297","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14298","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14299","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14300","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14301","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14302","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14303","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14304","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14305","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14306","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14307","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14310","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14311","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14312","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14314","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14315","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14316","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14319","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14338","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14339","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14340","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14341","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14342","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14343","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14344","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14345","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14346","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14347","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14371","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14372","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14373","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14374","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14375","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14376","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14386","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14389","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14392","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14393","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14394","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14397","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14398","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14399","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14402","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14403","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14404","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14409","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14410","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14411","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14412","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14416","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14417","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14418","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14419","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14420","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14421","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14426","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14427","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14428","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14429","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14430","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14431","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14432","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14435","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14441","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14442","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14443","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14444","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14445","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14446","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14447","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14452","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14460","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14461","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14525","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14526","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14527","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14528","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14529","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14530","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14531","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14532","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14533","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14534","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14535","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14536","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14537","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14538","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14539","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14540","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14541","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14542","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14543","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14544","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14545","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14546","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14547","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14548","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14549","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14550","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14552","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14553","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14554","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14555","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14556","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14557","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14558","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14559","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14560","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14561","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14562","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14565","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14566","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14576","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14580","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14581","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14582","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14583","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14584","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14585","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14586","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14587","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14588","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14589","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14590","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14591","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14592","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14593","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14594","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14595","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14596","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14597","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14598","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14599","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14600","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14601","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14602","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14603","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14604","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14605","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14606","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14607","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14608","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14609","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14610","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14611","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14612","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14613","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14614","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14615","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14616","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14617","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14618","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14619","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14620","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14621","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14622","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14623","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14624","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14625","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14626","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14627","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14628","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14629","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14630","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14631","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14632","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14633","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14634","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14635","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14644","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14645","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14646","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14647","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14648","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14649","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14650","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14652","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14653","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14654","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14655","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14656","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14669","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14670","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14671","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14672","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14673","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14674","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14675","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14676","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14677","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14678","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14679","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14680","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14753","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14754","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14755","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14756","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14757","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14758","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14759","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14760","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14761","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14762","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14763","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14764","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14769","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14770","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14771","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14772","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14773","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14774","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14775","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14776","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14777","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14778","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14779","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14780","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14781","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14782","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14788","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14789","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14790","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14793","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14794","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14795","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14796","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14797","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14798","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14800","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14801","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14802","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14806","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14807","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14808","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14809","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14816","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14817","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14818","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14819","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14820","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14821","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14822","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14823","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14824","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14825","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14826","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14827","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14828","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14829","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14830","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14831","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14832","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14833","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14834","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14835","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14836","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14837","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14838","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14839","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14840","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14841","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14842","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14844","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14869","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14870","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14871","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14872","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14873","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14874","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14877","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14878","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14879","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14880","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14881","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14889","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14890","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14892","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14893","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14894","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14895","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14896","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14897","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14898","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14929","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14930","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14931","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14932","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14940","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14941","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14942","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14958","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14959","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14960","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14961","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14962","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14963","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14964","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14974","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14975","4","1"); INSERT INTO lotessancionesacumuladas VALUES("14976","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14979","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14990","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14991","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14992","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14995","1","1"); INSERT INTO lotessancionesacumuladas VALUES("14996","2","1"); INSERT INTO lotessancionesacumuladas VALUES("14997","3","1"); INSERT INTO lotessancionesacumuladas VALUES("14998","5","1"); INSERT INTO lotessancionesacumuladas VALUES("14999","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15003","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15004","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15005","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15006","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15007","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15008","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15031","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15032","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15033","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15034","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15035","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15036","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15037","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15038","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15039","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15041","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15042","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15043","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15044","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15045","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15046","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15047","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15048","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15049","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15050","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15051","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15052","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15053","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15054","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15055","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15056","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15057","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15058","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15059","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15060","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15061","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15062","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15063","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15064","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15065","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15066","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15067","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15068","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15069","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15070","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15071","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15072","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15073","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15074","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15075","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15076","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15077","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15078","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15079","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15080","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15081","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15082","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15083","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15084","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15085","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15086","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15087","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15088","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15089","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15161","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15162","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15163","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15164","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15165","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15166","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15167","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15168","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15169","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15170","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15171","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15175","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15176","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15177","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15178","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15179","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15180","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15181","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15182","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15183","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15184","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15185","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15186","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15187","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15188","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15189","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15190","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15191","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15192","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15193","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15194","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15196","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15197","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15198","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15199","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15200","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15201","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15202","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15203","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15204","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15205","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15206","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15207","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15208","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15209","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15210","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15211","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15212","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15213","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15214","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15215","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15216","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15217","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15218","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15219","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15220","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15221","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15222","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15223","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15224","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15228","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15229","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15230","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15231","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15232","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15233","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15237","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15238","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15246","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15247","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15248","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15249","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15250","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15251","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15254","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15257","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15258","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15259","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15260","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15261","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15262","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15263","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15264","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15265","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15274","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15275","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15277","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15278","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15283","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15287","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15288","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15292","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15293","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15294","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15296","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15299","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15300","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15301","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15305","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15306","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15310","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15311","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15312","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15315","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15321","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15322","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15323","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15324","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15325","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15326","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15327","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15328","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15330","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15331","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15332","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15333","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15334","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15335","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15347","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15348","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15351","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15352","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15353","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15354","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15356","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15357","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15358","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15359","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15360","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15361","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15362","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15363","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15364","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15365","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15374","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15375","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15376","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15385","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15386","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15387","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15388","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15389","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15400","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15401","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15402","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15411","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15412","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15413","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15414","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15416","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15417","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15418","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15419","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15420","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15421","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15422","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15423","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15424","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15425","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15426","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15427","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15428","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15429","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15430","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15432","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15433","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15434","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15439","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15440","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15441","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15442","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15443","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15445","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15447","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15448","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15449","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15450","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15451","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15452","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15453","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15454","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15455","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15456","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15457","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15458","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15459","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15460","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15461","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15462","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15463","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15464","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15465","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15467","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15468","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15469","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15470","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15471","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15472","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15533","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15534","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15535","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15536","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15537","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15538","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15539","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15540","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15541","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15542","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15543","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15544","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15545","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15546","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15547","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15548","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15549","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15550","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15551","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15552","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15553","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15554","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15555","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15556","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15561","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15562","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15563","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15564","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15565","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15566","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15572","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15573","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15574","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15577","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15579","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15580","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15581","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15582","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15583","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15584","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15587","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15588","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15589","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15591","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15592","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15593","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15594","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15595","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15596","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15597","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15609","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15610","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15611","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15612","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15614","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15615","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15616","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15617","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15618","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15621","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15622","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15623","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15624","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15628","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15629","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15639","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15640","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15641","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15643","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15649","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15650","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15651","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15652","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15653","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15654","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15660","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15661","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15663","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15669","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15670","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15671","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15684","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15685","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15686","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15690","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15691","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15692","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15693","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15694","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15695","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15696","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15697","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15705","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15706","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15707","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15708","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15709","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15710","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15711","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15712","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15713","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15717","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15718","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15724","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15725","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15726","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15727","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15728","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15729","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15730","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15731","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15732","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15734","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15737","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15738","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15739","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15740","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15741","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15742","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15743","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15744","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15745","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15749","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15750","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15751","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15752","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15753","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15755","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15756","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15757","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15758","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15759","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15765","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15766","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15771","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15774","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15775","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15776","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15777","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15778","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15779","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15780","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15781","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15782","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15783","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15784","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15785","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15788","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15789","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15790","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15791","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15792","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15793","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15794","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15795","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15796","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15797","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15798","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15799","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15800","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15954","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15955","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15956","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15959","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15960","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15961","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15962","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15963","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15965","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15966","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15967","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15968","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15972","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15973","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15974","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15975","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15976","5","1"); INSERT INTO lotessancionesacumuladas VALUES("15980","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15988","3","1"); INSERT INTO lotessancionesacumuladas VALUES("15989","1","1"); INSERT INTO lotessancionesacumuladas VALUES("15992","4","1"); INSERT INTO lotessancionesacumuladas VALUES("15998","2","1"); INSERT INTO lotessancionesacumuladas VALUES("15999","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16000","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16005","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16008","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16009","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16010","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16011","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16012","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16013","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16014","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16015","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16016","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16017","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16018","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16019","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16020","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16025","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16034","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16042","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16043","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16044","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16045","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16046","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16047","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16050","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16053","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16054","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16061","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16062","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16071","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16072","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16073","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16074","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16080","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16083","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16084","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16087","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16088","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16093","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16094","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16095","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16096","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16097","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16098","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16101","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16102","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16103","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16104","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16105","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16106","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16107","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16108","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16109","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16110","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16111","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16112","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16113","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16114","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16115","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16121","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16122","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16123","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16124","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16125","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16126","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16127","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16128","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16129","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16130","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16131","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16132","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16133","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16134","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16135","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16136","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16137","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16138","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16139","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16140","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16141","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16142","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16143","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16144","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16145","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16146","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16147","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16148","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16149","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16150","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16151","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16152","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16153","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16154","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16155","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16156","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16157","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16158","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16159","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16160","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16161","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16162","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16163","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16165","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16166","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16167","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16168","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16169","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16170","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16171","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16172","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16173","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16174","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16175","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16176","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16177","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16178","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16179","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16180","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16181","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16182","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16183","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16184","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16185","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16186","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16187","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16188","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16189","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16190","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16191","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16192","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16193","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16194","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16195","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16196","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16197","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16198","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16199","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16200","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16201","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16202","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16203","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16204","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16205","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16206","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16332","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16336","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16346","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16347","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16348","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16350","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16353","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16354","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16355","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16358","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16359","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16361","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16362","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16363","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16364","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16365","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16366","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16367","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16376","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16377","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16378","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16379","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16380","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16381","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16384","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16385","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16387","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16388","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16389","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16390","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16391","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16392","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16393","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16394","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16395","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16397","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16407","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16417","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16418","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16423","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16424","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16430","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16435","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16436","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16439","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16440","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16442","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16443","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16444","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16459","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16461","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16462","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16463","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16464","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16465","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16466","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16467","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16468","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16469","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16470","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16471","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16472","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16473","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16476","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16477","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16478","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16479","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16480","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16481","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16482","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16483","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16484","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16485","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16486","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16487","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16490","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16491","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16492","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16493","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16494","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16495","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16496","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16497","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16498","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16499","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16500","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16501","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16502","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16503","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16504","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16505","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16506","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16507","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16508","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16509","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16510","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16511","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16512","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16513","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16514","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16515","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16516","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16517","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16518","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16519","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16520","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16521","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16522","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16523","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16524","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16525","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16526","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16527","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16528","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16529","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16530","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16531","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16532","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16533","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16603","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16604","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16615","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16616","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16679","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16680","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16698","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16699","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16706","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16707","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16708","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16709","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16711","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16712","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16722","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16723","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16727","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16728","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16729","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16730","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16731","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16732","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16735","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16738","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16739","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16740","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16741","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16742","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16743","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16752","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16755","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16756","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16764","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16765","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16767","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16768","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16769","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16770","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16773","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16774","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16775","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16776","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16778","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16779","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16780","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16781","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16782","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16783","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16784","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16785","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16786","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16788","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16789","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16790","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16791","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16792","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16793","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16794","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16795","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16796","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16797","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16798","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16799","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16800","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16801","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16802","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16803","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16804","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16805","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16806","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16807","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16808","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16809","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16810","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16811","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16812","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16813","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16814","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16815","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16816","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16817","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16818","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16819","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16820","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16821","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16822","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16823","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16824","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16825","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16826","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16827","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16828","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16829","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16830","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16831","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16832","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16834","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16835","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16836","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16837","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16838","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16839","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16840","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16841","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16842","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16843","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16844","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16845","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16846","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16847","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16848","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16849","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16850","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16851","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16852","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16853","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16854","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16855","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16856","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16857","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16858","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16860","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16861","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16862","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16863","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16864","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16865","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16866","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16867","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16868","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16869","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16871","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16872","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16874","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16875","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16876","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16878","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16879","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16880","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16983","5","1"); INSERT INTO lotessancionesacumuladas VALUES("16985","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16986","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16990","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16991","4","1"); INSERT INTO lotessancionesacumuladas VALUES("16992","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16993","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16994","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16995","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16996","2","1"); INSERT INTO lotessancionesacumuladas VALUES("16997","3","1"); INSERT INTO lotessancionesacumuladas VALUES("16998","1","1"); INSERT INTO lotessancionesacumuladas VALUES("16999","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17000","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17003","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17005","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17009","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17010","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17011","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17012","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17013","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17014","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17015","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17016","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17021","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17022","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17023","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17024","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17025","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17026","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17032","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17033","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17054","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17069","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17070","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17071","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17072","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17073","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17074","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17075","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17076","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17077","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17078","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17079","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17080","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17081","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17082","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17083","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17084","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17085","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17086","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17087","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17088","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17089","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17090","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17091","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17092","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17093","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17094","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17095","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17096","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17097","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17098","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17099","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17100","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17101","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17102","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17103","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17104","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17105","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17106","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17107","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17108","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17109","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17110","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17111","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17112","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17113","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17118","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17119","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17120","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17121","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17122","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17123","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17124","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17125","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17126","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17127","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17128","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17186","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17188","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17192","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17193","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17194","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17195","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17196","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17197","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17207","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17211","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17212","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17213","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17247","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17248","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17249","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17250","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17251","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17256","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17257","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17258","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17260","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17261","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17262","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17275","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17278","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17279","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17280","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17281","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17282","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17283","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17285","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17286","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17287","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17290","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17292","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17300","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17301","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17302","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17308","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17309","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17311","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17312","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17313","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17314","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17315","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17317","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17319","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17320","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17321","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17322","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17323","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17324","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17325","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17326","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17327","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17328","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17329","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17330","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17331","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17332","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17333","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17334","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17335","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17336","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17337","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17338","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17339","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17340","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17341","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17342","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17343","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17344","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17345","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17346","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17347","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17348","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17349","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17350","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17351","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17352","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17353","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17354","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17355","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17356","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17357","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17358","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17359","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17360","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17361","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17362","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17363","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17364","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17365","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17366","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17367","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17368","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17369","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17370","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17371","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17372","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17373","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17374","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17375","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17376","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17377","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17378","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17379","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17380","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17381","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17382","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17383","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17384","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17385","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17386","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17387","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17388","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17450","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17451","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17452","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17453","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17454","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17457","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17458","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17462","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17465","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17466","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17467","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17471","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17472","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17473","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17474","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17475","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17476","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17477","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17478","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17479","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17483","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17484","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17485","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17486","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17491","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17492","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17493","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17498","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17499","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17508","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17511","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17513","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17519","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17520","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17523","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17524","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17527","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17535","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17536","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17537","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17539","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17540","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17542","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17543","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17544","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17546","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17547","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17548","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17550","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17552","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17553","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17557","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17558","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17559","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17560","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17561","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17563","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17564","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17565","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17566","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17567","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17568","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17569","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17570","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17572","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17573","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17574","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17575","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17577","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17578","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17579","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17580","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17581","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17582","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17583","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17584","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17585","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17586","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17587","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17588","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17589","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17590","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17591","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17592","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17593","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17594","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17595","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17596","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17597","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17598","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17599","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17600","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17601","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17602","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17603","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17604","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17605","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17606","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17607","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17608","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17609","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17610","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17611","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17612","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17613","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17614","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17615","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17616","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17636","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17637","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17638","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17639","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17654","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17677","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17678","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17679","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17681","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17686","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17687","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17691","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17692","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17696","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17716","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17717","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17718","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17719","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17720","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17721","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17722","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17723","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17724","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17725","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17726","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17727","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17730","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17731","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17732","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17733","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17734","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17735","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17736","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17737","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17738","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17739","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17740","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17741","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17742","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17743","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17744","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17745","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17746","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17747","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17748","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17749","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17750","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17751","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17754","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17755","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17756","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17758","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17784","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17785","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17786","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17787","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17807","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17808","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17809","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17810","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17812","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17816","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17817","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17818","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17819","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17820","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17821","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17822","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17823","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17824","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17825","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17826","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17827","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17828","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17829","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17830","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17831","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17832","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17833","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17834","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17835","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17836","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17837","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17838","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17839","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17840","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17841","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17842","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17843","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17844","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17845","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17905","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17908","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17909","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17916","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17917","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17918","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17919","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17921","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17930","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17945","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17950","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17970","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17971","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17972","3","1"); INSERT INTO lotessancionesacumuladas VALUES("17973","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17975","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17976","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17978","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17979","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17980","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17981","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17982","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17984","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17985","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17986","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17987","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17989","5","1"); INSERT INTO lotessancionesacumuladas VALUES("17990","1","1"); INSERT INTO lotessancionesacumuladas VALUES("17992","2","1"); INSERT INTO lotessancionesacumuladas VALUES("17995","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17998","4","1"); INSERT INTO lotessancionesacumuladas VALUES("17999","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18000","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18004","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18005","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18006","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18007","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18008","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18009","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18010","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18011","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18012","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18013","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18014","5","1"); INSERT INTO lotessancionesacumuladas VALUES("18015","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18016","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18017","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18018","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18019","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18020","4","1"); INSERT INTO lotessancionesacumuladas VALUES("18021","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18022","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18023","4","1"); INSERT INTO lotessancionesacumuladas VALUES("18024","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18025","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18026","4","1"); INSERT INTO lotessancionesacumuladas VALUES("18027","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18028","5","1"); INSERT INTO lotessancionesacumuladas VALUES("18029","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18030","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18031","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18032","5","1"); INSERT INTO lotessancionesacumuladas VALUES("18033","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18034","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18035","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18036","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18037","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18038","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18039","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18040","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18041","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18042","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18043","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18044","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18045","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18046","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18047","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18048","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18049","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18050","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18051","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18052","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18053","4","1"); INSERT INTO lotessancionesacumuladas VALUES("18054","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18055","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18056","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18057","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18058","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18059","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18060","5","1"); INSERT INTO lotessancionesacumuladas VALUES("18061","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18062","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18063","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18064","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18089","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18090","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18091","4","1"); INSERT INTO lotessancionesacumuladas VALUES("18092","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18093","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18094","5","1"); INSERT INTO lotessancionesacumuladas VALUES("18095","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18101","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18102","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18103","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18104","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18105","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18106","5","1"); INSERT INTO lotessancionesacumuladas VALUES("18107","4","1"); INSERT INTO lotessancionesacumuladas VALUES("18108","4","1"); INSERT INTO lotessancionesacumuladas VALUES("18110","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18111","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18118","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18119","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18120","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18121","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18126","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18129","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18130","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18132","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18136","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18137","5","1"); INSERT INTO lotessancionesacumuladas VALUES("18138","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18139","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18142","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18144","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18147","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18148","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18150","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18155","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18160","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18161","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18164","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18167","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18168","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18172","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18173","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18179","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18180","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18181","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18182","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18183","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18184","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18185","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18195","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18198","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18199","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18200","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18201","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18204","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18205","4","1"); INSERT INTO lotessancionesacumuladas VALUES("18206","5","1"); INSERT INTO lotessancionesacumuladas VALUES("18207","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18208","4","1"); INSERT INTO lotessancionesacumuladas VALUES("18209","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18210","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18211","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18212","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18213","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18214","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18215","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18216","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18217","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18218","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18219","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18220","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18221","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18222","5","1"); INSERT INTO lotessancionesacumuladas VALUES("18223","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18224","5","1"); INSERT INTO lotessancionesacumuladas VALUES("18225","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18226","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18227","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18251","4","1"); INSERT INTO lotessancionesacumuladas VALUES("18252","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18253","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18254","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18274","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18289","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18296","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18297","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18299","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18300","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18301","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18302","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18306","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18310","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18320","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18325","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18326","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18329","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18333","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18335","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18336","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18337","4","1"); INSERT INTO lotessancionesacumuladas VALUES("18338","5","1"); INSERT INTO lotessancionesacumuladas VALUES("18339","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18340","5","1"); INSERT INTO lotessancionesacumuladas VALUES("18341","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18342","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18343","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18345","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18346","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18349","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18350","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18351","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18352","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18353","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18355","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18356","4","1"); INSERT INTO lotessancionesacumuladas VALUES("18364","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18365","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18366","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18367","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18368","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18369","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18370","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18371","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18372","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18373","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18374","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18375","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18376","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18377","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18378","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18379","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18380","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18381","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18382","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18383","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18384","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18385","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18386","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18387","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18388","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18389","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18390","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18391","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18392","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18393","5","1"); INSERT INTO lotessancionesacumuladas VALUES("18394","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18395","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18396","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18397","5","1"); INSERT INTO lotessancionesacumuladas VALUES("18398","4","1"); INSERT INTO lotessancionesacumuladas VALUES("18399","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18400","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18401","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18402","4","1"); INSERT INTO lotessancionesacumuladas VALUES("18403","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18404","4","1"); INSERT INTO lotessancionesacumuladas VALUES("18405","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18406","5","1"); INSERT INTO lotessancionesacumuladas VALUES("18407","4","1"); INSERT INTO lotessancionesacumuladas VALUES("18408","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18409","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18410","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18411","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18412","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18448","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18449","4","1"); INSERT INTO lotessancionesacumuladas VALUES("18450","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18457","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18458","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18459","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18460","4","1"); INSERT INTO lotessancionesacumuladas VALUES("18463","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18464","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18465","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18466","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18467","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18468","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18469","5","1"); INSERT INTO lotessancionesacumuladas VALUES("18470","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18471","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18472","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18473","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18474","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18475","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18476","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18477","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18488","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18504","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18514","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18517","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18518","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18521","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18528","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18529","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18533","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18534","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18540","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18549","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18550","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18551","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18552","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18556","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18558","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18565","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18566","5","1"); INSERT INTO lotessancionesacumuladas VALUES("18567","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18568","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18569","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18570","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18576","5","1"); INSERT INTO lotessancionesacumuladas VALUES("18577","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18578","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18579","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18580","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18581","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18589","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18590","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18591","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18592","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18602","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18603","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18604","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18605","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18609","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18610","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18611","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18612","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18613","4","1"); INSERT INTO lotessancionesacumuladas VALUES("18614","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18615","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18616","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18617","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18618","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18619","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18620","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18621","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18622","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18623","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18624","4","1"); INSERT INTO lotessancionesacumuladas VALUES("18625","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18626","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18627","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18628","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18629","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18630","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18631","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18632","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18633","5","1"); INSERT INTO lotessancionesacumuladas VALUES("18634","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18635","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18636","5","1"); INSERT INTO lotessancionesacumuladas VALUES("18637","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18638","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18639","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18640","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18641","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18642","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18645","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18646","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18647","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18648","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18649","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18650","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18651","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18652","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18653","4","1"); INSERT INTO lotessancionesacumuladas VALUES("18654","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18655","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18656","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18657","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18658","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18659","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18660","5","1"); INSERT INTO lotessancionesacumuladas VALUES("18661","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18662","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18663","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18664","5","1"); INSERT INTO lotessancionesacumuladas VALUES("18692","4","1"); INSERT INTO lotessancionesacumuladas VALUES("18693","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18694","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18695","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18696","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18699","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18704","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18705","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18707","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18717","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18722","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18723","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18725","4","1"); INSERT INTO lotessancionesacumuladas VALUES("18726","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18727","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18728","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18731","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18732","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18734","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18742","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18750","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18753","4","1"); INSERT INTO lotessancionesacumuladas VALUES("18754","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18757","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18758","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18759","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18760","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18765","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18766","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18771","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18772","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18789","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18790","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18791","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18792","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18793","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18799","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18800","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18801","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18802","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18803","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18804","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18805","4","1"); INSERT INTO lotessancionesacumuladas VALUES("18806","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18807","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18808","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18809","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18810","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18811","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18812","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18813","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18814","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18815","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18816","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18817","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18818","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18819","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18820","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18821","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18822","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18823","4","1"); INSERT INTO lotessancionesacumuladas VALUES("18824","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18825","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18826","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18827","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18828","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18829","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18830","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18831","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18832","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18833","5","1"); INSERT INTO lotessancionesacumuladas VALUES("18834","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18835","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18836","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18837","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18838","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18839","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18840","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18841","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18842","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18843","4","1"); INSERT INTO lotessancionesacumuladas VALUES("18844","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18846","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18925","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18927","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18929","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18930","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18931","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18932","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18935","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18937","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18943","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18945","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18951","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18957","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18962","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18963","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18964","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18965","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18966","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18971","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18972","4","1"); INSERT INTO lotessancionesacumuladas VALUES("18973","2","1"); INSERT INTO lotessancionesacumuladas VALUES("18979","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18980","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18981","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18982","3","1"); INSERT INTO lotessancionesacumuladas VALUES("18983","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18984","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18987","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18988","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18989","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18992","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18996","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18997","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18998","1","1"); INSERT INTO lotessancionesacumuladas VALUES("18999","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19002","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19003","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19004","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19005","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19006","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19007","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19008","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19009","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19010","3","1"); INSERT INTO lotessancionesacumuladas VALUES("19011","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19012","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19013","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19014","3","1"); INSERT INTO lotessancionesacumuladas VALUES("19015","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19016","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19017","4","1"); INSERT INTO lotessancionesacumuladas VALUES("19018","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19019","3","1"); INSERT INTO lotessancionesacumuladas VALUES("19020","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19021","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19022","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19023","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19024","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19025","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19026","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19027","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19028","3","1"); INSERT INTO lotessancionesacumuladas VALUES("19029","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19030","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19031","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19032","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19033","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19034","4","1"); INSERT INTO lotessancionesacumuladas VALUES("19035","3","1"); INSERT INTO lotessancionesacumuladas VALUES("19036","3","1"); INSERT INTO lotessancionesacumuladas VALUES("19037","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19038","4","1"); INSERT INTO lotessancionesacumuladas VALUES("19039","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19040","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19041","5","1"); INSERT INTO lotessancionesacumuladas VALUES("19042","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19043","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19044","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19045","5","1"); INSERT INTO lotessancionesacumuladas VALUES("19046","4","1"); INSERT INTO lotessancionesacumuladas VALUES("19047","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19048","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19049","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19050","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19051","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19052","4","1"); INSERT INTO lotessancionesacumuladas VALUES("19053","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19099","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19100","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19101","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19102","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19103","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19115","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19116","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19117","3","1"); INSERT INTO lotessancionesacumuladas VALUES("19118","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19129","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19131","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19142","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19143","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19144","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19145","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19146","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19147","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19148","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19150","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19151","3","1"); INSERT INTO lotessancionesacumuladas VALUES("19160","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19161","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19162","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19163","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19165","3","1"); INSERT INTO lotessancionesacumuladas VALUES("19166","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19167","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19168","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19170","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19171","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19172","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19174","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19176","3","1"); INSERT INTO lotessancionesacumuladas VALUES("19177","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19178","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19181","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19182","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19183","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19184","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19185","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19186","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19187","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19188","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19189","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19190","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19191","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19192","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19193","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19194","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19195","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19196","3","1"); INSERT INTO lotessancionesacumuladas VALUES("19197","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19198","3","1"); INSERT INTO lotessancionesacumuladas VALUES("19199","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19202","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19203","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19204","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19205","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19206","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19207","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19208","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19209","3","1"); INSERT INTO lotessancionesacumuladas VALUES("19210","3","1"); INSERT INTO lotessancionesacumuladas VALUES("19211","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19212","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19213","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19214","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19215","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19216","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19217","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19218","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19219","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19220","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19221","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19222","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19223","3","1"); INSERT INTO lotessancionesacumuladas VALUES("19224","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19225","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19226","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19227","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19228","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19253","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19254","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19255","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19256","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19267","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19298","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19299","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19302","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19303","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19311","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19318","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19326","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19345","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19346","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19347","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19348","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19349","3","1"); INSERT INTO lotessancionesacumuladas VALUES("19350","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19351","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19352","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19353","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19354","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19355","3","1"); INSERT INTO lotessancionesacumuladas VALUES("19356","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19357","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19358","3","1"); INSERT INTO lotessancionesacumuladas VALUES("19359","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19360","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19361","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19362","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19363","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19364","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19365","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19366","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19367","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19369","3","1"); INSERT INTO lotessancionesacumuladas VALUES("19370","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19371","5","1"); INSERT INTO lotessancionesacumuladas VALUES("19372","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19373","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19374","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19375","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19376","3","1"); INSERT INTO lotessancionesacumuladas VALUES("19377","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19378","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19380","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19381","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19382","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19383","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19384","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19385","3","1"); INSERT INTO lotessancionesacumuladas VALUES("19386","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19387","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19388","4","1"); INSERT INTO lotessancionesacumuladas VALUES("19389","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19390","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19391","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19392","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19393","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19394","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19395","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19396","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19398","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19399","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19400","4","1"); INSERT INTO lotessancionesacumuladas VALUES("19401","4","1"); INSERT INTO lotessancionesacumuladas VALUES("19448","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19452","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19453","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19455","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19456","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19460","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19465","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19466","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19468","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19471","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19509","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19515","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19516","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19517","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19520","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19521","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19522","3","1"); INSERT INTO lotessancionesacumuladas VALUES("19523","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19524","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19525","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19526","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19527","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19528","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19529","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19530","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19531","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19532","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19533","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19534","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19535","3","1"); INSERT INTO lotessancionesacumuladas VALUES("19536","3","1"); INSERT INTO lotessancionesacumuladas VALUES("19537","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19538","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19539","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19540","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19541","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19542","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19543","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19544","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19545","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19546","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19547","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19548","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19549","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19550","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19551","3","1"); INSERT INTO lotessancionesacumuladas VALUES("19552","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19553","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19554","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19555","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19556","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19557","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19558","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19559","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19560","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19561","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19562","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19563","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19564","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19565","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19566","3","1"); INSERT INTO lotessancionesacumuladas VALUES("19567","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19568","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19569","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19570","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19572","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19573","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19620","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19626","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19627","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19640","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19641","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19642","3","1"); INSERT INTO lotessancionesacumuladas VALUES("19643","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19644","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19664","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19669","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19670","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19671","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19672","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19673","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19674","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19675","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19676","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19677","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19680","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19682","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19683","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19685","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19686","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19687","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19688","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19693","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19694","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19695","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19696","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19697","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19698","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19699","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19700","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19701","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19702","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19703","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19704","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19705","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19706","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19707","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19708","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19709","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19710","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19711","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19712","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19713","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19714","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19715","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19716","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19717","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19718","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19719","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19720","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19721","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19722","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19723","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19724","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19725","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19726","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19727","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19728","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19729","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19730","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19731","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19732","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19733","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19734","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19735","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19736","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19737","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19738","4","1"); INSERT INTO lotessancionesacumuladas VALUES("19823","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19824","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19825","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19826","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19827","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19828","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19833","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19838","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19839","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19840","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19857","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19860","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19861","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19862","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19867","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19870","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19878","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19879","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19880","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19881","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19882","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19883","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19884","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19885","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19886","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19887","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19888","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19889","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19890","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19891","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19892","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19893","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19894","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19895","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19896","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19897","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19898","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19899","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19900","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19901","3","1"); INSERT INTO lotessancionesacumuladas VALUES("19902","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19903","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19904","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19905","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19906","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19907","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19908","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19909","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19910","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19911","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19912","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19913","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19914","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19915","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19916","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19917","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19918","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19919","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19920","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19921","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19922","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19923","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19924","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19925","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19926","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19927","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19928","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19929","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19930","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19931","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19932","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19933","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19934","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19935","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19936","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19979","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19980","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19981","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19982","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19985","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19986","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19987","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19988","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19989","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19990","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19993","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19994","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19995","2","1"); INSERT INTO lotessancionesacumuladas VALUES("19996","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19997","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19998","1","1"); INSERT INTO lotessancionesacumuladas VALUES("19999","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20000","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20005","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20006","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20008","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20010","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20011","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20012","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20013","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20014","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20015","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20017","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20018","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20019","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20020","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20023","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20024","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20032","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20033","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20034","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20035","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20036","2","1"); INSERT INTO lotessancionesacumuladas VALUES("20037","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20038","2","1"); INSERT INTO lotessancionesacumuladas VALUES("20039","2","1"); INSERT INTO lotessancionesacumuladas VALUES("20040","2","1"); INSERT INTO lotessancionesacumuladas VALUES("20041","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20042","2","1"); INSERT INTO lotessancionesacumuladas VALUES("20047","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20048","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20049","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20050","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20051","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20052","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20054","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20060","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20061","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20062","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20063","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20064","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20065","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20066","2","1"); INSERT INTO lotessancionesacumuladas VALUES("20068","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20069","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20070","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20071","1","1"); INSERT INTO lotessancionesacumuladas VALUES("20109","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20110","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20111","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20112","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20113","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20114","4","0"); INSERT INTO lotessancionesacumuladas VALUES("20115","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20116","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20117","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20118","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20119","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20120","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20121","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20122","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20123","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20124","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20125","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20126","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20127","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20128","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20129","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20130","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20131","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20132","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20133","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20134","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20135","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20136","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20137","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20138","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20139","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20140","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20141","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20142","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20143","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20144","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20145","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20146","4","0"); INSERT INTO lotessancionesacumuladas VALUES("20147","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20148","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20149","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20150","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20151","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20152","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20153","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20174","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20175","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20176","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20177","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20178","4","0"); INSERT INTO lotessancionesacumuladas VALUES("20179","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20180","4","0"); INSERT INTO lotessancionesacumuladas VALUES("20181","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20196","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20197","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20198","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20199","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20200","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20201","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20202","4","0"); INSERT INTO lotessancionesacumuladas VALUES("20203","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20208","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20209","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20210","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20211","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20223","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20224","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20225","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20226","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20228","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20229","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20230","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20231","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20232","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20233","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20234","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20235","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20236","4","0"); INSERT INTO lotessancionesacumuladas VALUES("20237","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20238","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20239","4","0"); INSERT INTO lotessancionesacumuladas VALUES("20240","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20241","4","0"); INSERT INTO lotessancionesacumuladas VALUES("20242","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20243","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20244","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20245","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20246","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20247","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20248","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20249","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20257","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20258","4","0"); INSERT INTO lotessancionesacumuladas VALUES("20300","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20301","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20302","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20306","4","0"); INSERT INTO lotessancionesacumuladas VALUES("20322","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20323","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20324","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20325","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20326","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20327","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20328","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20329","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20330","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20331","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20335","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20336","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20337","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20338","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20339","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20340","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20341","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20342","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20343","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20344","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20348","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20349","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20350","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20351","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20358","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20359","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20360","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20361","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20362","4","0"); INSERT INTO lotessancionesacumuladas VALUES("20363","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20364","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20365","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20366","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20379","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20380","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20381","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20382","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20383","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20388","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20389","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20390","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20397","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20398","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20399","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20400","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20401","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20402","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20403","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20404","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20405","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20406","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20407","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20408","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20409","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20410","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20411","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20414","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20415","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20416","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20417","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20418","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20419","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20420","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20421","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20422","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20423","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20424","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20425","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20426","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20427","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20428","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20430","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20431","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20432","4","0"); INSERT INTO lotessancionesacumuladas VALUES("20433","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20434","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20435","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20436","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20438","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20439","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20440","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20441","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20442","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20443","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20444","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20445","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20450","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20451","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20452","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20453","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20454","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20455","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20456","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20457","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20458","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20459","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20460","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20461","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20462","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20463","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20464","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20465","4","0"); INSERT INTO lotessancionesacumuladas VALUES("20469","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20470","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20471","4","0"); INSERT INTO lotessancionesacumuladas VALUES("20472","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20473","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20474","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20475","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20476","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20477","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20478","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20479","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20480","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20481","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20482","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20483","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20484","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20485","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20486","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20487","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20488","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20489","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20490","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20491","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20492","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20493","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20494","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20495","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20496","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20497","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20498","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20499","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20500","5","1"); INSERT INTO lotessancionesacumuladas VALUES("20501","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20502","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20503","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20504","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20505","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20506","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20510","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20511","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20512","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20631","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20632","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20633","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20634","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20635","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20636","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20637","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20648","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20649","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20650","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20651","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20652","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20661","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20662","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20663","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20664","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20675","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20676","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20683","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20684","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20690","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20691","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20692","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20693","4","0"); INSERT INTO lotessancionesacumuladas VALUES("20698","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20699","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20700","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20701","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20702","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20703","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20704","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20705","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20706","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20709","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20710","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20711","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20712","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20713","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20714","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20715","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20716","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20717","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20718","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20719","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20720","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20721","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20722","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20723","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20724","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20725","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20726","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20727","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20728","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20734","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20735","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20736","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20737","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20738","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20739","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20740","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20741","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20742","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20743","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20744","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20745","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20746","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20747","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20748","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20759","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20760","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20761","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20762","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20766","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20767","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20768","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20769","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20770","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20772","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20773","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20774","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20775","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20776","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20777","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20778","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20779","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20780","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20781","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20782","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20783","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20784","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20785","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20786","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20787","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20788","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20789","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20790","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20791","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20792","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20793","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20794","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20795","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20796","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20797","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20798","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20799","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20800","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20801","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20802","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20803","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20804","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20807","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20808","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20809","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20810","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20826","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20827","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20828","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20829","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20830","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20831","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20832","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20833","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20834","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20835","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20836","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20837","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20838","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20839","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20840","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20863","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20864","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20865","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20866","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20867","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20868","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20869","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20870","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20871","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20872","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20875","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20876","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20877","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20878","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20879","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20880","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20881","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20882","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20887","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20888","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20895","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20896","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20897","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20898","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20899","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20900","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20901","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20902","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20903","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20907","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20908","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20909","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20910","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20911","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20918","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20919","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20920","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20921","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20922","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20923","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20924","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20931","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20932","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20933","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20934","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20935","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20947","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20948","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20949","3","0"); INSERT INTO lotessancionesacumuladas VALUES("20964","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20965","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20966","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20970","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20971","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20972","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20973","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20974","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20975","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20976","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20977","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20978","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20979","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20980","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20981","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20982","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20988","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20989","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20990","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20992","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20993","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20994","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20995","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20996","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20997","1","0"); INSERT INTO lotessancionesacumuladas VALUES("20998","2","0"); INSERT INTO lotessancionesacumuladas VALUES("20999","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21000","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21001","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21002","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21003","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21004","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21005","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21006","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21007","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21015","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21016","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21017","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21018","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21019","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21020","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21021","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21022","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21023","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21024","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21025","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21026","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21027","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21054","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21061","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21062","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21063","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21064","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21065","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21066","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21067","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21077","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21078","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21079","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21083","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21084","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21085","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21086","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21087","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21088","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21098","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21099","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21100","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21101","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21102","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21103","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21104","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21105","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21106","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21107","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21114","4","0"); INSERT INTO lotessancionesacumuladas VALUES("21125","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21126","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21127","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21128","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21129","4","0"); INSERT INTO lotessancionesacumuladas VALUES("21130","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21131","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21132","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21133","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21142","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21143","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21144","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21148","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21149","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21150","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21151","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21152","4","0"); INSERT INTO lotessancionesacumuladas VALUES("21153","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21154","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21155","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21156","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21157","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21158","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21159","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21160","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21161","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21162","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21163","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21164","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21165","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21166","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21167","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21168","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21169","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21170","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21171","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21172","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21173","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21179","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21180","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21184","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21185","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21186","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21187","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21188","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21189","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21190","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21191","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21192","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21193","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21200","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21201","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21202","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21203","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21204","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21205","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21206","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21207","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21208","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21209","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21210","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21211","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21212","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21213","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21214","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21215","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21216","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21217","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21218","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21219","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21220","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21221","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21222","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21223","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21224","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21225","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21226","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21227","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21228","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21234","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21235","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21236","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21237","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21238","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21239","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21240","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21241","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21242","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21243","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21244","4","0"); INSERT INTO lotessancionesacumuladas VALUES("21245","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21246","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21247","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21248","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21249","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21250","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21251","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21252","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21253","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21254","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21255","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21256","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21257","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21258","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21259","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21260","4","0"); INSERT INTO lotessancionesacumuladas VALUES("21261","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21262","4","0"); INSERT INTO lotessancionesacumuladas VALUES("21263","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21264","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21265","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21266","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21267","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21268","4","0"); INSERT INTO lotessancionesacumuladas VALUES("21269","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21270","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21271","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21272","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21273","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21274","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21275","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21276","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21277","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21278","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21279","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21280","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21281","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21282","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21283","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21284","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21285","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21409","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21411","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21412","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21413","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21414","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21415","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21416","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21417","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21418","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21419","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21420","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21421","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21422","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21423","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21424","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21425","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21426","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21427","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21428","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21429","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21431","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21432","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21433","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21462","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21463","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21464","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21465","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21466","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21467","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21468","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21469","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21470","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21471","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21472","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21473","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21474","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21475","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21476","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21477","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21478","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21479","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21480","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21481","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21482","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21483","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21484","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21485","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21515","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21516","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21517","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21520","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21521","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21522","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21523","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21524","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21525","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21526","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21527","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21528","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21529","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21530","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21531","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21532","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21533","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21534","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21535","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21536","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21537","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21538","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21544","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21575","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21576","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21577","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21583","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21584","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21585","4","0"); INSERT INTO lotessancionesacumuladas VALUES("21586","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21587","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21588","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21589","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21600","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21601","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21602","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21653","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21654","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21664","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21683","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21684","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21685","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21690","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21691","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21697","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21698","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21699","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21700","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21701","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21702","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21703","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21704","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21705","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21706","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21707","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21710","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21711","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21712","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21713","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21714","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21720","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21721","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21722","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21723","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21724","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21725","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21732","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21733","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21734","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21735","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21736","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21737","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21738","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21739","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21740","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21741","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21742","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21743","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21744","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21745","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21746","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21747","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21748","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21749","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21750","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21751","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21752","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21753","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21754","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21755","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21756","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21757","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21758","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21759","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21760","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21761","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21762","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21763","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21764","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21765","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21766","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21767","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21768","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21769","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21770","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21771","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21772","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21773","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21774","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21775","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21776","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21777","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21778","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21779","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21780","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21781","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21782","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21783","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21784","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21785","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21786","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21787","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21788","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21789","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21790","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21791","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21792","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21793","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21794","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21795","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21796","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21797","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21798","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21799","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21800","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21801","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21802","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21803","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21804","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21805","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21806","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21807","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21808","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21809","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21811","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21812","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21813","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21814","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21815","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21816","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21817","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21818","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21819","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21820","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21821","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21822","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21823","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21824","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21825","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21826","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21827","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21828","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21829","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21830","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21831","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21832","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21833","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21834","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21835","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21836","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21837","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21838","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21839","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21840","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21841","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21842","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21843","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21845","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21846","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21847","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21848","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21849","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21850","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21851","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21852","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21853","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21854","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21855","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21856","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21857","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21858","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21859","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21860","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21861","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21862","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21863","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21864","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21865","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21866","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21867","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21868","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21869","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21870","1","0"); INSERT INTO lotessancionesacumuladas VALUES("21871","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21872","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21873","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21874","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21875","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21876","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21877","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21878","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21879","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21880","3","0"); INSERT INTO lotessancionesacumuladas VALUES("21881","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21882","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21883","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21884","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21885","2","0"); INSERT INTO lotessancionesacumuladas VALUES("21886","4","0"); INSERT INTO lotessancionesacumuladas VALUES("22006","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22016","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22030","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22031","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22038","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22039","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22040","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22041","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22042","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22053","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22054","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22057","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22058","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22059","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22060","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22061","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22062","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22063","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22064","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22065","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22066","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22067","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22068","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22069","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22070","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22071","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22073","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22074","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22075","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22076","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22077","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22083","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22084","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22085","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22088","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22089","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22090","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22091","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22092","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22093","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22094","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22097","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22098","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22099","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22100","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22101","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22104","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22105","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22106","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22108","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22109","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22110","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22111","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22121","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22122","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22123","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22124","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22125","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22126","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22138","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22139","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22140","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22141","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22148","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22149","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22150","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22153","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22154","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22155","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22156","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22163","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22164","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22165","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22170","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22171","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22172","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22173","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22174","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22175","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22176","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22179","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22180","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22181","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22182","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22183","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22184","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22185","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22190","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22191","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22192","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22193","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22194","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22195","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22196","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22197","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22198","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22199","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22216","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22217","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22218","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22219","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22220","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22221","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22232","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22233","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22235","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22236","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22237","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22238","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22239","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22244","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22245","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22246","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22247","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22253","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22258","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22260","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22276","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22277","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22278","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22279","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22280","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22288","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22293","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22298","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22299","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22301","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22302","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22303","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22304","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22305","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22306","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22307","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22308","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22309","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22310","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22311","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22312","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22313","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22314","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22315","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22316","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22317","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22318","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22319","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22320","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22321","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22322","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22323","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22324","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22325","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22326","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22327","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22328","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22329","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22330","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22331","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22332","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22333","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22334","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22335","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22336","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22337","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22338","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22339","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22340","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22341","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22342","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22343","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22344","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22345","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22346","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22347","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22348","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22349","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22350","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22351","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22352","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22353","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22354","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22355","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22356","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22357","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22358","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22359","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22360","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22361","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22362","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22363","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22364","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22365","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22366","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22367","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22368","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22369","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22370","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22371","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22372","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22373","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22374","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22375","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22376","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22377","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22378","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22379","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22380","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22381","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22382","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22383","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22384","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22385","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22386","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22387","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22388","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22389","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22390","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22391","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22392","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22393","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22394","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22395","3","0"); INSERT INTO lotessancionesacumuladas VALUES("22396","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22397","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22398","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22399","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22400","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22401","3","0"); INSERT INTO lotessancionesacumuladas VALUES("22402","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22403","3","0"); INSERT INTO lotessancionesacumuladas VALUES("22404","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22405","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22406","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22407","3","0"); INSERT INTO lotessancionesacumuladas VALUES("22408","3","0"); INSERT INTO lotessancionesacumuladas VALUES("22409","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22410","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22411","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22412","2","0"); INSERT INTO lotessancionesacumuladas VALUES("22459","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22460","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22461","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22462","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22463","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22464","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22465","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22466","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22467","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22468","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22473","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22474","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22482","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22483","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22484","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22485","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22489","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22490","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22491","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22493","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22494","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22495","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22496","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22497","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22498","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22499","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22500","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22505","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22506","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22507","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22508","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22509","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22512","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22513","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22514","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22515","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22516","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22517","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22518","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22521","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22522","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22527","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22528","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22529","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22530","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22531","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22534","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22535","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22536","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22537","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22538","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22543","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22544","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22545","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22546","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22547","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22548","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22549","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22550","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22551","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22554","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22555","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22556","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22558","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22559","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22560","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22561","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22562","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22563","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22564","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22566","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22567","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22568","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22569","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22570","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22571","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22572","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22573","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22578","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22579","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22580","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22581","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22582","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22583","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22584","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22585","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22586","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22587","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22591","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22592","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22593","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22594","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22595","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22599","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22600","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22601","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22602","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22603","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22604","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22605","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22606","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22607","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22608","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22609","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22610","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22611","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22612","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22613","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22614","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22615","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22622","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22623","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22624","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22625","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22626","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22631","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22633","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22634","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22635","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22636","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22638","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22639","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22640","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22641","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22644","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22645","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22646","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22647","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22648","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22649","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22650","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22651","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22652","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22657","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22658","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22659","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22660","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22661","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22662","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22663","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22679","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22680","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22685","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22687","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22688","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22689","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22690","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22691","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22692","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22703","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22707","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22712","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22753","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22754","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22755","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22756","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22760","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22761","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22762","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22763","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22778","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22779","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22780","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22786","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22787","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22788","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22789","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22826","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22827","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22828","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22829","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22830","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22831","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22832","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22833","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22834","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22835","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22836","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22837","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22838","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22839","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22840","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22841","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22842","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22843","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22844","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22845","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22846","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22847","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22848","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22849","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22850","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22851","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22852","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22853","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22854","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22855","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22856","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22857","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22858","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22859","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22860","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22861","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22862","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22863","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22864","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22865","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22866","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22867","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22868","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22869","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22870","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22871","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22872","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22873","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22874","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22875","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22876","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22877","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22878","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22879","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22880","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22881","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22882","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22883","1","0"); INSERT INTO lotessancionesacumuladas VALUES("22884","1","0"); INSERT INTO partidos VALUES("1","1","0","","1","1","1","476","482","1","","","3","2014-06-28 00:00:00","15:30","3","0","1","1","0","0","","0"); INSERT INTO partidos VALUES("2","1","0","","1","1","2","664","480","1","","","3","2014-06-28 00:00:00","15:30","11","0","0","0","0","0","","0"); INSERT INTO partidos VALUES("3","1","0","","1","2","1","482","480","1","","","3","2014-07-05 00:00:00","15:30","11","0","0","0","0","0","","0"); INSERT INTO partidos VALUES("4","1","0","","1","2","2","476","664","1","","","3","2014-07-05 00:00:00","15:30","11","0","0","0","0","0","","0"); INSERT INTO partidos VALUES("5","1","0","","1","3","1","480","476","1","","","3","2014-07-12 00:00:00","15:30","11","0","0","0","0","0","","0"); INSERT INTO partidos VALUES("6","1","0","","1","3","2","664","482","1","","","3","2014-07-12 00:00:00","15:30","11","0","0","0","0","0","","0"); INSERT INTO partidos VALUES("17","3","0","","1","1","1","406","604","1","","","3","2014-06-28 00:00:00","15:30","11","0","0","0","0","0","","0"); INSERT INTO partidos VALUES("18","3","0","","1","1","2","446","577","1","","","3","2014-06-28 00:00:00","15:30","11","0","0","0","0","0","","0"); INSERT INTO partidos VALUES("19","3","0","","1","2","1","577","571","1","","","3","2014-07-05 00:00:00","15:30","11","0","0","0","0","0","","0"); INSERT INTO partidos VALUES("20","3","0","","1","2","2","604","446","1","","","3","2014-07-05 00:00:00","15:30","11","0","0","0","0","0","","0"); INSERT INTO partidos VALUES("21","3","0","","1","3","1","446","406","1","","","3","2014-07-12 00:00:00","15:30","11","0","0","0","0","0","","0"); INSERT INTO partidos VALUES("22","3","0","","1","3","2","571","604","1","","","3","2014-07-12 00:00:00","15:30","11","0","0","0","0","0","","0"); INSERT INTO partidos VALUES("23","3","0","","1","4","1","604","577","1","","","3","2014-07-19 00:00:00","15:30","11","0","0","0","0","0","","0"); INSERT INTO partidos VALUES("24","3","0","","1","4","2","406","571","1","","","3","2014-07-19 00:00:00","15:30","11","0","0","0","0","0","","0"); INSERT INTO partidos VALUES("25","3","0","","1","5","1","571","446","1","","","3","2014-07-26 00:00:00","15:30","11","0","0","0","0","0","","0"); INSERT INTO partidos VALUES("26","3","0","","1","5","2","577","406","1","","","3","2014-07-26 00:00:00","15:30","11","0","0","0","0","0","","0"); INSERT INTO partidos VALUES("27","4","0","","1","1","1","443","388","1","","","3","2014-06-28 00:00:00","15:30","11","0","0","0","0","0","","0"); INSERT INTO partidos VALUES("28","5","0","","1","1","1","367","436","1","","","3","2014-06-28 00:00:00","15:30","11","0","0","0","0","0","","0"); INSERT INTO partidos VALUES("29","5","0","","1","1","2","537","385","1","","","3","2014-06-28 00:00:00","15:30","11","0","0","0","0","0","","0"); INSERT INTO partidos VALUES("30","5","0","","1","2","1","436","385","1","","","3","2014-07-05 00:00:00","15:30","11","0","0","0","0","0","","0"); INSERT INTO partidos VALUES("31","5","0","","1","2","2","367","537","1","","","3","2014-07-05 00:00:00","15:30","11","0","0","0","0","0","","0"); INSERT INTO partidos VALUES("32","5","0","","1","3","1","385","367","1","","","3","2014-07-12 00:00:00","15:30","11","0","0","0","0","0","","0"); INSERT INTO partidos VALUES("33","5","0","","1","3","2","537","436","1","","","3","2014-07-12 00:00:00","15:30","11","0","0","0","0","0","","0"); INSERT INTO partidos VALUES("34","6","0","","1","1","1","564","618","1","","","3","2014-06-28 00:00:00","15:30","11","0","0","0","0","0","","0"); INSERT INTO partidos VALUES("35","6","0","","1","2","1","618","613","1","","","3","2014-07-05 00:00:00","15:30","11","0","0","0","0","0","","0"); INSERT INTO partidos VALUES("36","6","0","","1","3","1","613","564","1","","","3","2014-07-12 00:00:00","15:30","11","0","0","0","0","0","","0");
/*!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 `CARGO` -- DROP TABLE IF EXISTS CARGO; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE CARGO ( ID bigint(20) NOT NULL, calculated_at datetime(3) DEFAULT NULL, ETA date DEFAULT NULL, unloaded_at_dest tinyint(1) DEFAULT '0', MISDIRECTED tinyint(1) DEFAULT '0', routing_status varchar(255) DEFAULT NULL, transport_status varchar(255) DEFAULT NULL, next_expected_handling_event_type varchar(255) DEFAULT NULL, next_expected_location_id bigint(20) DEFAULT NULL, next_expected_voyage_id bigint(20) DEFAULT NULL, current_voyage_id bigint(20) DEFAULT NULL, last_event_id bigint(20) DEFAULT NULL, last_known_location_id bigint(20) DEFAULT NULL, spec_arrival_deadline date DEFAULT NULL, spec_destination_id bigint(20) DEFAULT NULL, spec_origin_id bigint(20) DEFAULT NULL, tracking_id varchar(255) DEFAULT NULL, origin_id bigint(20) DEFAULT NULL, PRIMARY KEY (ID), UNIQUE KEY tracking_id (tracking_id), KEY FK_CARGO_next_expected_voyage_id (next_expected_voyage_id), KEY FK_CARGO_origin_id (origin_id), KEY FK_CARGO_next_expected_location_id (next_expected_location_id), KEY FK_CARGO_current_voyage_id (current_voyage_id), KEY FK_CARGO_spec_destination_id (spec_destination_id), KEY FK_CARGO_last_known_location_id (last_known_location_id), KEY FK_CARGO_last_event_id (last_event_id), KEY FK_CARGO_spec_origin_id (spec_origin_id), CONSTRAINT FK_CARGO_current_voyage_id FOREIGN KEY (current_voyage_id) REFERENCES VOYAGE (ID), CONSTRAINT FK_CARGO_last_event_id FOREIGN KEY (last_event_id) REFERENCES HANDLINGEVENT (ID), CONSTRAINT FK_CARGO_last_known_location_id FOREIGN KEY (last_known_location_id) REFERENCES LOCATION (ID), CONSTRAINT FK_CARGO_next_expected_location_id FOREIGN KEY (next_expected_location_id) REFERENCES LOCATION (ID), CONSTRAINT FK_CARGO_next_expected_voyage_id FOREIGN KEY (next_expected_voyage_id) REFERENCES VOYAGE (ID), CONSTRAINT FK_CARGO_origin_id FOREIGN KEY (origin_id) REFERENCES LOCATION (ID), CONSTRAINT FK_CARGO_spec_destination_id FOREIGN KEY (spec_destination_id) REFERENCES LOCATION (ID), CONSTRAINT FK_CARGO_spec_origin_id FOREIGN KEY (spec_origin_id) REFERENCES LOCATION (ID) ); /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CARGO` -- /*!40000 ALTER TABLE CARGO DISABLE KEYS */; INSERT INTO CARGO VALUES (1932,'2018-10-01 11:51:02.265','2018-10-15',0,0,'ROUTED','IN_PORT','LOAD',1912,1919,NULL,1938,1912,'2018-10-16',1904,1901,'ABC123',1901); INSERT INTO CARGO VALUES (1939,'2018-10-01 11:51:02.308',NULL,0,1,'ROUTED','ONBOARD_CARRIER',NULL,NULL,NULL,1914,1946,1912,'2018-10-19',1903,1911,'JKL567',1911); INSERT INTO CARGO VALUES (1947,'2018-10-01 11:51:02.309',NULL,0,0,'NOT_ROUTED','NOT_RECEIVED',NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01',1902,1901,'DEF789',1901); INSERT INTO CARGO VALUES (1948,'2018-10-01 11:51:02.344','2018-09-03',0,0,'ROUTED','CLAIMED',NULL,NULL,NULL,NULL,1954,1913,'2018-09-07',1913,1912,'MNO456',1912); /*!40000 ALTER TABLE CARGO ENABLE KEYS */; -- -- Table structure for table `HANDLINGEVENT` -- DROP TABLE IF EXISTS HANDLINGEVENT; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE HANDLINGEVENT ( ID bigint(20) NOT NULL, completionTime date DEFAULT NULL, registration date DEFAULT NULL, `TYPE` varchar(255) DEFAULT NULL, cargo_id bigint(20) DEFAULT NULL, location_id bigint(20) DEFAULT NULL, voyage_id bigint(20) DEFAULT NULL, PRIMARY KEY (ID), KEY FK_HANDLINGEVENT_cargo_id (cargo_id), KEY FK_HANDLINGEVENT_location_id (location_id), KEY FK_HANDLINGEVENT_voyage_id (voyage_id), CONSTRAINT FK_HANDLINGEVENT_cargo_id FOREIGN KEY (cargo_id) REFERENCES CARGO (ID), CONSTRAINT FK_HANDLINGEVENT_location_id FOREIGN KEY (location_id) REFERENCES LOCATION (ID), CONSTRAINT FK_HANDLINGEVENT_voyage_id FOREIGN KEY (voyage_id) REFERENCES VOYAGE (ID) ); /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `HANDLINGEVENT` -- /*!40000 ALTER TABLE HANDLINGEVENT DISABLE KEYS */; INSERT INTO HANDLINGEVENT VALUES (1936,'2018-09-21','2018-10-01','RECEIVE',1932,1901,NULL); INSERT INTO HANDLINGEVENT VALUES (1937,'2018-09-24','2018-10-01','LOAD',1932,1901,1914); INSERT INTO HANDLINGEVENT VALUES (1938,'2018-09-30','2018-10-01','UNLOAD',1932,1912,1914); INSERT INTO HANDLINGEVENT VALUES (1943,'2018-09-16','2018-10-01','RECEIVE',1939,1911,NULL); INSERT INTO HANDLINGEVENT VALUES (1944,'2018-09-21','2018-10-01','LOAD',1939,1911,1914); INSERT INTO HANDLINGEVENT VALUES (1945,'2018-09-28','2018-10-01','UNLOAD',1939,1912,1914); INSERT INTO HANDLINGEVENT VALUES (1946,'2018-09-29','2018-10-01','LOAD',1939,1912,1914); INSERT INTO HANDLINGEVENT VALUES (1950,'2018-08-25','2018-10-01','RECEIVE',1948,1912,NULL); INSERT INTO HANDLINGEVENT VALUES (1951,'2018-08-28','2018-10-01','LOAD',1948,1912,1919); INSERT INTO HANDLINGEVENT VALUES (1952,'2018-09-03','2018-10-01','UNLOAD',1948,1913,1919); INSERT INTO HANDLINGEVENT VALUES (1953,'2018-09-04','2018-10-01','CUSTOMS',1948,1913,NULL); INSERT INTO HANDLINGEVENT VALUES (1954,'2018-09-05','2018-10-01','CLAIM',1948,1913,NULL); /*!40000 ALTER TABLE HANDLINGEVENT ENABLE KEYS */; -- -- Table structure for table `LEG` -- DROP TABLE IF EXISTS LEG; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE LEG ( ID bigint(20) NOT NULL, load_time date DEFAULT NULL, unload_time date DEFAULT NULL, load_location_id bigint(20) DEFAULT NULL, unload_location_id bigint(20) DEFAULT NULL, voyage_id bigint(20) DEFAULT NULL, cargo_id bigint(20) DEFAULT NULL, PRIMARY KEY (ID), KEY FK_LEG_unload_location_id (unload_location_id), KEY FK_LEG_load_location_id (load_location_id), KEY FK_LEG_cargo_id (cargo_id), KEY FK_LEG_voyage_id (voyage_id), CONSTRAINT FK_LEG_cargo_id FOREIGN KEY (cargo_id) REFERENCES CARGO (ID), CONSTRAINT FK_LEG_load_location_id FOREIGN KEY (load_location_id) REFERENCES LOCATION (ID), CONSTRAINT FK_LEG_unload_location_id FOREIGN KEY (unload_location_id) REFERENCES LOCATION (ID), CONSTRAINT FK_LEG_voyage_id FOREIGN KEY (voyage_id) REFERENCES VOYAGE (ID) ); /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `LEG` -- /*!40000 ALTER TABLE LEG DISABLE KEYS */; INSERT INTO LEG VALUES (1933,'2018-09-24','2018-09-30',1901,1912,1914,1932); INSERT INTO LEG VALUES (1934,'2018-10-03','2018-10-07',1912,1913,1919,1932); INSERT INTO LEG VALUES (1935,'2018-10-09','2018-10-15',1913,1904,1922,1932); INSERT INTO LEG VALUES (1940,'2018-09-21','2018-09-28',1911,1912,1914,1939); INSERT INTO LEG VALUES (1941,'2018-09-29','2018-10-03',1912,1913,1919,1939); INSERT INTO LEG VALUES (1942,'2018-10-07','2018-10-16',1913,1903,1922,1939); INSERT INTO LEG VALUES (1949,'2018-08-28','2018-09-03',1912,1913,1919,1948); /*!40000 ALTER TABLE LEG ENABLE KEYS */; -- -- Table structure for table `LOCATION` -- DROP TABLE IF EXISTS LOCATION; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE LOCATION ( ID bigint(20) NOT NULL, `NAME` varchar(255) DEFAULT NULL, UNLOCODE varchar(255) DEFAULT NULL, PRIMARY KEY (ID) ); /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `LOCATION` -- /*!40000 ALTER TABLE LOCATION DISABLE KEYS */; INSERT INTO LOCATION VALUES (1901,'Hong Kong','CNHKG'); INSERT INTO LOCATION VALUES (1902,'Melbourne','AUMEL'); INSERT INTO LOCATION VALUES (1903,'Stockholm','SESTO'); INSERT INTO LOCATION VALUES (1904,'Helsinki','FIHEL'); INSERT INTO LOCATION VALUES (1905,'Chicago','USCHI'); INSERT INTO LOCATION VALUES (1906,'Tokyo','JNTKO'); INSERT INTO LOCATION VALUES (1907,'Hamburg','DEHAM'); INSERT INTO LOCATION VALUES (1908,'Shanghai','CNSHA'); INSERT INTO LOCATION VALUES (1909,'Rotterdam','NLRTM'); INSERT INTO LOCATION VALUES (1910,'Guttenburg','SEGOT'); INSERT INTO LOCATION VALUES (1911,'Hangzhou','CNHGH'); INSERT INTO LOCATION VALUES (1912,'New York','USNYC'); INSERT INTO LOCATION VALUES (1913,'Dallas','USDAL'); /*!40000 ALTER TABLE LOCATION ENABLE KEYS */; -- -- Table structure for table `MOVIE_CRITERIA` -- DROP TABLE IF EXISTS MOVIE_CRITERIA; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE MOVIE_CRITERIA ( id int(11) NOT NULL, `NAME` varchar(50) NOT NULL, ACTORS varchar(200) NOT NULL, PRIMARY KEY (id) ); /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `MOVIE_CRITERIA` -- /*!40000 ALTER TABLE MOVIE_CRITERIA DISABLE KEYS */; INSERT INTO MOVIE_CRITERIA VALUES (1,'The Matrix','Keanu Reeves, Laurence Fishburne, Carrie-Ann Moss'); INSERT INTO MOVIE_CRITERIA VALUES (2,'The Lord of The Rings','Elijah Wood, Ian Mckellen, Viggo Mortensen'); INSERT INTO MOVIE_CRITERIA VALUES (3,'Inception','Leonardo DiCaprio'); INSERT INTO MOVIE_CRITERIA VALUES (4,'The Shining','Jack Nicholson, Shelley Duvall'); /*!40000 ALTER TABLE MOVIE_CRITERIA ENABLE KEYS */; -- -- Table structure for table `SEQUENCE` -- DROP TABLE IF EXISTS SEQUENCE; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE SEQUENCE ( SEQ_NAME varchar(50) NOT NULL, SEQ_COUNT decimal(38,0) DEFAULT NULL, PRIMARY KEY (SEQ_NAME) ); /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `SEQUENCE` -- /*!40000 ALTER TABLE SEQUENCE DISABLE KEYS */; INSERT INTO SEQUENCE VALUES ('SEQ_GEN',2000); /*!40000 ALTER TABLE SEQUENCE ENABLE KEYS */; -- -- Table structure for table `VOYAGE` -- DROP TABLE IF EXISTS VOYAGE; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE VOYAGE ( ID bigint(20) NOT NULL, voyage_number varchar(255) DEFAULT NULL, PRIMARY KEY (ID) ); /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `VOYAGE` -- /*!40000 ALTER TABLE VOYAGE DISABLE KEYS */; INSERT INTO VOYAGE VALUES (1914,'0100S'); INSERT INTO VOYAGE VALUES (1919,'0200T'); INSERT INTO VOYAGE VALUES (1922,'0300A'); INSERT INTO VOYAGE VALUES (1926,'0400S'); INSERT INTO VOYAGE VALUES (1930,'0301S'); /*!40000 ALTER TABLE VOYAGE ENABLE KEYS */; -- -- Table structure for table `carrier_movement` -- DROP TABLE IF EXISTS carrier_movement; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE carrier_movement ( ID bigint(20) NOT NULL, arrival_time datetime DEFAULT NULL, departure_time datetime DEFAULT NULL, arrival_location_id bigint(20) DEFAULT NULL, departure_location_id bigint(20) DEFAULT NULL, voyage_id bigint(20) DEFAULT NULL, PRIMARY KEY (ID), KEY FK_carrier_movement_departure_location_id (departure_location_id), KEY FK_carrier_movement_voyage_id (voyage_id), KEY FK_carrier_movement_arrival_location_id (arrival_location_id), CONSTRAINT FK_carrier_movement_arrival_location_id FOREIGN KEY (arrival_location_id) REFERENCES LOCATION (ID), CONSTRAINT FK_carrier_movement_departure_location_id FOREIGN KEY (departure_location_id) REFERENCES LOCATION (ID), CONSTRAINT FK_carrier_movement_voyage_id FOREIGN KEY (voyage_id) REFERENCES VOYAGE (ID) ); /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `carrier_movement` -- /*!40000 ALTER TABLE carrier_movement DISABLE KEYS */; INSERT INTO carrier_movement VALUES (1915,'2013-10-03 14:30:00','2013-10-01 12:00:00',1911,1901,1914); INSERT INTO carrier_movement VALUES (1916,'2013-10-06 06:15:00','2013-10-03 21:00:00',1906,1911,1914); INSERT INTO carrier_movement VALUES (1917,'2013-10-12 11:30:00','2013-10-06 11:00:00',1902,1906,1914); INSERT INTO carrier_movement VALUES (1918,'2013-10-23 23:10:00','2013-10-14 12:00:00',1912,1902,1914); INSERT INTO carrier_movement VALUES (1920,'2013-10-24 17:45:00','2013-10-24 07:00:00',1905,1912,1919); INSERT INTO carrier_movement VALUES (1921,'2013-10-25 19:30:00','2013-10-24 21:25:00',1913,1905,1919); INSERT INTO carrier_movement VALUES (1923,'2013-10-31 14:00:00','2013-10-29 03:30:00',1907,1913,1922); INSERT INTO carrier_movement VALUES (1924,'2013-11-01 18:40:00','2013-11-01 15:20:00',1903,1907,1922); INSERT INTO carrier_movement VALUES (1925,'2013-11-02 11:15:00','2013-11-02 09:00:00',1904,1903,1922); INSERT INTO carrier_movement VALUES (1927,'2013-11-06 14:10:00','2013-11-04 05:50:00',1909,1904,1926); INSERT INTO carrier_movement VALUES (1928,'2013-11-22 16:40:00','2013-11-10 21:45:00',1908,1909,1926); INSERT INTO carrier_movement VALUES (1929,'2013-11-28 13:37:00','2013-11-24 07:00:00',1901,1908,1926); INSERT INTO carrier_movement VALUES (1931,'2013-11-05 15:45:00','2013-10-29 03:30:00',1904,1913,1930); /*!40000 ALTER TABLE carrier_movement ENABLE KEYS */; /*!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 */;
CREATE PROCEDURE itemCounts() BEGIN SELECT item_name,item_type,COUNT(*) AS item_count FROM availableItems GROUP BY item_name, item_type ORDER BY item_type,item_name; END
-------------------------------------------------------- -- File created - Wednesday-October-06-2021 -------------------------------------------------------- -------------------------------------------------------- -- DDL for Table AMENITIES -------------------------------------------------------- CREATE TABLE "K9SYED"."AMENITIES" ( "AMENITY_ID" NUMBER(*,0), "AMENITY_NAME" VARCHAR2(225 BYTE), "AMENITY_DESCRIPTION" VARCHAR2(255 BYTE), "AMENITY_PRICE" NUMBER(*,0) ) SEGMENT CREATION DEFERRED PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING TABLESPACE "DBCOURSE" ; -------------------------------------------------------- -- DDL for Index AMENITIES_PK -------------------------------------------------------- CREATE UNIQUE INDEX "K9SYED"."AMENITIES_PK" ON "K9SYED"."AMENITIES" ("AMENITY_ID") PCTFREE 10 INITRANS 2 MAXTRANS 255 NOCOMPRESS LOGGING TABLESPACE "DBCOURSE" ; -------------------------------------------------------- -- Constraints for Table AMENITIES -------------------------------------------------------- ALTER TABLE "K9SYED"."AMENITIES" ADD CONSTRAINT "AMENITIES_PK" PRIMARY KEY ("AMENITY_ID") USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 NOCOMPRESS LOGGING TABLESPACE "DBCOURSE" ENABLE; ALTER TABLE "K9SYED"."AMENITIES" MODIFY ("AMENITY_ID" NOT NULL ENABLE); ALTER TABLE "K9SYED"."AMENITIES" MODIFY ("AMENITY_NAME" NOT NULL ENABLE); ALTER TABLE "K9SYED"."AMENITIES" MODIFY ("AMENITY_DESCRIPTION" NOT NULL ENABLE); ALTER TABLE "K9SYED"."AMENITIES" MODIFY ("AMENITY_PRICE" NOT NULL ENABLE);
DROP TABLE IF EXISTS highlights; CREATE TABLE highlights( id SERIAL PRIMARY KEY, roomid_high INT, title_high CHAR(50), comment_high TEXT ); CREATE INDEX room_idh ON highlights(roomid_high); DROP TABLE IF EXISTS description; CREATE TABLE description( id SERIAL PRIMARY KEY, roomid_des INT, title_des CHAR(50), comment_des TEXT ); CREATE INDEX room_idd ON description(roomid_des); DROP TABLE IF EXISTS amenities; CREATE TABLE amenities( id SERIAL PRIMARY KEY, roomid_a INT, title_a CHAR(50), item_a CHAR(50), description_a TEXT ); CREATE INDEX room_ida ON amenities(roomid_a); DROP TABLE IF EXISTS nightsOfMinimumStayForDateRange; CREATE TABLE nightOfMinimumStayForDateRange( id SERIAL PRIMARY KEY, roomid_night INT, "startDate" CHAR(50), "endDate" CHAR(50), "nightOfMinStay" SMALLINT ); CREATE INDEX room_idn ON nightOfMinimumStayForDateRange(roomid_night); DROP TABLE IF EXISTS rooms; CREATE TABLE rooms( id SERIAL PRIMARY KEY, owner CHAR(30), "ownerPicture_Url" TEXT, "propertyType" TEXT, title TEXT, score SMALLINT, location TEXT, "numberOfGuest" SMALLINT, "numberOfRooms" SMALLINT, "numberBeds" SMALLINT, "numberOfBaths" SMALLINT, "numberOfViews" SMALLINT, "descriptionSummary" TEXT, smoking BOOLEAN, "petSuitable" BOOLEAN, "partiesOrEvents" BOOLEAN, "noSafeForChildrenUnder" SMALLINT, "checkInStartTime" SMALLINT, "checkIntEndTime" SMALLINT, "checkOutTime" SMALLINT, "selfCheckInWithLockBox" BOOLEAN, rules TEXT, "rulestoAcknowledge" TEXT, "cancellationType" SMALLINT, "cancellationSummary" TEXT, "nightsOfStayVary" BOOLEAN, "nightsOfMinimumStay" SMALLINT, "daysFromLastUpdate" SMALLINT );
DROP TABLE IF EXISTS green_tripdata_staging; DROP TABLE IF EXISTS yellow_tripdata_staging; DROP TABLE IF EXISTS uber_trips_staging; DROP TABLE IF EXISTS uber_trips_2015; DROP TABLE IF EXISTS cab_types; DROP TABLE IF EXISTS taxi_zone_lookups; DROP TABLE IF EXISTS fhv_trips; DROP TABLE IF EXISTS trips; CREATE TABLE green_tripdata_staging ( vendor_id varchar(100), lpep_pickup_datetime varchar(100), lpep_dropoff_datetime varchar(100), store_and_fwd_flag varchar(100), rate_code_id varchar(100), pickup_longitude numeric(10), pickup_latitude numeric(10), dropoff_longitude numeric(10), dropoff_latitude numeric(10), passenger_count varchar(100), trip_distance varchar(100), fare_amount varchar(100), extra varchar(100), mta_tax varchar(100), tip_amount varchar(100), tolls_amount varchar(100), ehail_fee varchar(100), improvement_surcharge varchar(100), total_amount varchar(100), payment_type varchar(100), trip_type varchar(100), pickup_location_id varchar(100), dropoff_location_id varchar(100), junk1 varchar(100), junk2 varchar(100) ); CREATE TABLE yellow_tripdata_staging ( vendor_id varchar(100), tpep_pickup_datetime varchar(100), tpep_dropoff_datetime varchar(100), passenger_count varchar(100), trip_distance varchar(100), pickup_longitude numeric(10), pickup_latitude numeric(10), rate_code_id varchar(100), store_and_fwd_flag varchar(100), dropoff_longitude numeric(10), dropoff_latitude numeric(10), payment_type varchar(100), fare_amount varchar(100), extra varchar(100), mta_tax varchar(100), tip_amount varchar(100), tolls_amount varchar(100), improvement_surcharge varchar(100), total_amount varchar(100), pickup_location_id varchar(100), dropoff_location_id varchar(100), junk1 varchar(100), junk2 varchar(100) ); CREATE TABLE uber_trips_staging ( pickup_datetime timestamp, pickup_latitude numeric(10), pickup_longitude numeric(10), base_code varchar(100) ); CREATE TABLE uber_trips_2015 ( dispatching_base_num varchar(100), pickup_datetime timestamp, affiliated_base_num varchar(100), location_id integer, nyct2010_ntacode varchar(100) ); CREATE TABLE taxi_zone_lookups ( location_id integer, borough varchar(100), zone varchar(100), service_zone varchar(100), nyct2010_ntacode varchar(100) ); CREATE TABLE fhv_trips ( dispatching_base_num varchar(100), pickup_datetime timestamp, dropoff_datetime timestamp, pickup_location_id integer, dropoff_location_id integer ); CREATE TABLE cab_types ( type varchar(100) ); INSERT INTO cab_types (type) SELECT 'yellow'; INSERT INTO cab_types (type) SELECT 'green'; INSERT INTO cab_types (type) SELECT 'uber'; CREATE TABLE trips ( cab_type_id integer, vendor_id varchar(100), pickup_datetime timestamp, dropoff_datetime timestamp, store_and_fwd_flag char(1), rate_code_id integer, pickup_longitude numeric(10), pickup_latitude numeric(10), dropoff_longitude numeric(10), dropoff_latitude numeric(10), passenger_count integer, trip_distance numeric(10), fare_amount numeric(10), extra numeric(10), mta_tax numeric(10), tip_amount numeric(10), tolls_amount numeric(10), ehail_fee numeric(10), improvement_surcharge numeric(10), total_amount numeric(10), payment_type varchar(100), trip_type integer, pickup_nyct2010_gid integer, dropoff_nyct2010_gid integer, pickup_location_id integer, dropoff_location_id integer );
ALTER TABLE Movies add foreign key(GenreId) references Genres(Id);
CREATE TABLE users ( id INTEGER PRIMARY KEY, username TEXT, password TEXT); CREATE TABLE messages ( message_id INTEGER, dialogue_id INTEGER, from_id INTEGER, body TEXT, t_sent DATETIME); CREATE TABLE dialogues ( --relation! from_id INTEGER, to_id INTEGER, dialogue_id INTEGER, --shlould be a unique the same for the pair num_messages INTEGER, last_updated DATETIME); --days ago --datetime in format yyyy-MM-dd HH:mm:ss --after, when showing messages selecting them from 2 dialogues and sort by date --КОСТИЛІ INSERT INTO users (id,username,password) VALUES(0,'',''); INSERT INTO dialogues (from_id,to_id,dialogue_id,num_messages,last_updated) VALUES(-1,-1,0,-1,'0000-00-00 00:00:00'); INSERT INTO messages (message_id, dialogue_id, from_id, body, t_sent) VALUES(0,-1,-1,-1,'0000-00-00 00:00:00'); INSERT INTO users (id,username,password) VALUES(1,'wolterlw','ILovePy'); INSERT INTO users (id,username,password) VALUES(2,'eugene_r','ILoveJs'); INSERT INTO users (id,username,password) VALUES(3,'denbko_l','1234567'); INSERT INTO dialogues (from_id,to_id,dialogue_id,num_messages,last_updated) VALUES(1,2,1,0,'2016-04-25 18:45:00'); INSERT INTO dialogues (from_id,to_id,dialogue_id,num_messages,last_updated) VALUES(2,1,1,0,'2016-04-25 18:45:00'); INSERT INTO messages (message_id,dialogue_id,from_id,body, t_sent) VALUES(1,1,1,'Freaking SQL','2016-04-25 18:45:00'); INSERT INTO messages (message_id,dialogue_id,from_id,body, t_sent) VALUES(2,1,2,'Ture','2016-04-25 18:45:20'); /* INSERT INTO dialogues (user1_id,user2_id) VALUES(0,1); INSERT INTO dialogues (user1_id,user2_id) VALUES(0,2); INSERT INTO messages (from_id,to_id,message_body) VALUES(0,1,'When is my frontend ready?'); INSERT INTO messages (from_id,to_id,message_body) VALUES(2,0,'Did U make Ur Math. Stat. already?'); SELECT * FROM users; SELECT username, password FROM users WHERE id = 1; SELECT message_body FROM messages WHERE from_id = 0; SELECT message_body FROM messages WHERE from_id = 0 */
CREATE DEFINER=`root`@`localhost` PROCEDURE `updatePH`(IN typedEmailID VARCHAR(50),IN PH varchar(50)) BEGIN update userdetails set ProfessionalHeadline=PH where EmailID=typedEmailID; SELECT ProfessionalHeadline from userdetails where EmailID= typedEmailID; END
-- phpMyAdmin SQL Dump -- version 4.8.2 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: 15-Ago-2018 às 17:21 -- Versão do servidor: 10.1.34-MariaDB -- PHP Version: 7.2.8 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: `pfc18` -- -- -------------------------------------------------------- -- -- Estrutura da tabela `atuador` -- CREATE TABLE `atuador` ( `id_atuador` int(11) NOT NULL, `tipo` varchar(45) DEFAULT NULL, `estado` varchar(45) DEFAULT NULL, `descricao` varchar(100) DEFAULT NULL, `id_comodo` int(11) DEFAULT NULL, `id_dispositivo` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `comodos` -- CREATE TABLE `comodos` ( `id_comodo` int(11) NOT NULL, `descricao` varchar(100) DEFAULT NULL, `id_local` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `dispositivo` -- CREATE TABLE `dispositivo` ( `id_dispositivo` int(11) NOT NULL, `descricao` varchar(100) DEFAULT NULL, `id_comodo` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `local` -- CREATE TABLE `local` ( `id_local` int(11) NOT NULL, `descricao` varchar(100) DEFAULT NULL, `latitude` decimal(10,8) DEFAULT NULL, `longitude` decimal(11,8) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `usuario` -- CREATE TABLE `usuario` ( `id_usuario` int(11) NOT NULL, `senha` varchar(10) DEFAULT NULL, `nome` varchar(100) DEFAULT NULL, `email` varchar(50) DEFAULT NULL, `sexo` varchar(20) DEFAULT NULL, `dta_nascimento` date DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `usuario_has_local` -- CREATE TABLE `usuario_has_local` ( `id_local` int(11) DEFAULT NULL, `id_usuario` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Indexes for dumped tables -- -- -- Indexes for table `atuador` -- ALTER TABLE `atuador` ADD PRIMARY KEY (`id_atuador`), ADD KEY `id_comodo_atuador` (`id_comodo`), ADD KEY `id_dispositivo` (`id_dispositivo`); -- -- Indexes for table `comodos` -- ALTER TABLE `comodos` ADD PRIMARY KEY (`id_comodo`), ADD KEY `id_local` (`id_local`); -- -- Indexes for table `dispositivo` -- ALTER TABLE `dispositivo` ADD PRIMARY KEY (`id_dispositivo`), ADD KEY `idcomodo` (`id_comodo`); -- -- Indexes for table `local` -- ALTER TABLE `local` ADD PRIMARY KEY (`id_local`); -- -- Indexes for table `usuario` -- ALTER TABLE `usuario` ADD PRIMARY KEY (`id_usuario`); -- -- Indexes for table `usuario_has_local` -- ALTER TABLE `usuario_has_local` ADD KEY `idlocal` (`id_local`), ADD KEY `idusuario` (`id_usuario`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `atuador` -- ALTER TABLE `atuador` MODIFY `id_atuador` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `comodos` -- ALTER TABLE `comodos` MODIFY `id_comodo` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `dispositivo` -- ALTER TABLE `dispositivo` MODIFY `id_dispositivo` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `local` -- ALTER TABLE `local` MODIFY `id_local` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `usuario` -- ALTER TABLE `usuario` MODIFY `id_usuario` int(11) NOT NULL AUTO_INCREMENT; -- -- Constraints for dumped tables -- -- -- Limitadores para a tabela `atuador` -- ALTER TABLE `atuador` ADD CONSTRAINT `id_comodo_atuador` FOREIGN KEY (`id_comodo`) REFERENCES `comodos` (`id_comodo`), ADD CONSTRAINT `id_dispositivo` FOREIGN KEY (`id_dispositivo`) REFERENCES `dispositivo` (`id_dispositivo`); -- -- Limitadores para a tabela `comodos` -- ALTER TABLE `comodos` ADD CONSTRAINT `id_local` FOREIGN KEY (`id_local`) REFERENCES `local` (`id_local`); -- -- Limitadores para a tabela `dispositivo` -- ALTER TABLE `dispositivo` ADD CONSTRAINT `idcomodo` FOREIGN KEY (`id_comodo`) REFERENCES `comodos` (`id_comodo`); -- -- Limitadores para a tabela `usuario_has_local` -- ALTER TABLE `usuario_has_local` ADD CONSTRAINT `idlocal` FOREIGN KEY (`id_local`) REFERENCES `local` (`id_local`), ADD CONSTRAINT `idusuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`); 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 */;
select * from mc_fil_filme A where exists ( select count(*), fil_titulo_original /*, fil_titulo */ from mc_fil_filme B where A.fil_titulo_original = B.fil_titulo_original /*and A.fil_titulo = B.fil_titulo*/ group by fil_titulo_original /*, fil_titulo*/ having count(*) > 1) order by A.fil_titulo;
CREATE TABLE emails (id INT,subject character(20),"from" character(20), "to" CHARACTER (20), timestamp timestamp); INSERT INTO emails VALUES (2, 'Big Sur', 'sarah@g.com', 'thomas@g.com', '2018-01-02 16:30:01'), (3, 'Yosemite', 'thomas@g.com', 'zach@g.com', '2018-01-02 16:35:04'), (4, 'Running', ' jill@g.com', 'zach@g.com', '2018-01-03 08:12:45'), (5, ' Yosemite', 'zach@g.com', ' thomas@g.com', '2018-01-03 14:02:01'), (6, 'Yosemite', 'thomas@g.com', 'zach@g.com', ' 2018-01-03 15:01:05'); SELECT * FROM emails ; SELECT * FROM EMAILS A JOIN EMAILS B ON b.subject = a.subject AND a."to" = b."from" AND a."from" = b."to" WHERE a."to" = 'zach@g.com' GROUP BY a.ID a.subject; SELECT"to"FROM emails; ALTER TABLE emails ADD COLUMN dat date; ALTER TABLE emails ADD COLUMN tim time; ALTER TABLE emails DROP COLUMN time; UPDATE emails SET dat=timestamp::date, tim=timestamp::time; SELECT * FROM emails WHERE "from" = 'zach@g.com' or "to"= 'zach@g.com'; SELECT A.ID, MIN (B.TIMESTAMP - A.TIMESTAMP) AS TIME_TO_RESPOND FROM EMAILS A JOIN EMAILS B ON B.SUBJECT = A.SUBJECT AND A."to" = B."from" AND A."from" = B."to" AND A.TIMESTAMP > B.TIMESTAMP WHERE A."to" = 'zach@g.com' GROUP BY A.ID;
-- Quantos episodios cada diretor dirigiu? select distinct count(director), director from data group by director;
--Do some exploratory data analysis SELECT * FROM arvindr12.dummy_users; SELECT * FROM arvindr12.dummy_events; --let's look at the types of events and how often they occur SELECT COUNT(event_type), event_type FROM arvindr12.dummy_events GROUP BY event_type; --how many check ins per user? SELECT COUNT(event_type), user_id FROM arvindr12.dummy_events WHERE event_type = 'check_in' GROUP BY user_id; --what is the minimum number of check ins? SELECT min(t.total) FROM (SELECT COUNT(event_type) as total, user_id FROM arvindr12.dummy_events WHERE event_type = 'check_in' GROUP BY user_id) as t; --what is the max number of check ins? SELECT max(t.total) FROM (SELECT COUNT(event_type) as total, user_id FROM arvindr12.dummy_events WHERE event_type = 'check_in' GROUP BY user_id) as t; -- Let's make a histogram with bucket size 5 --the bucket(number_of_checkins) represents the number of times a user has checked in --the count(number_of_users) is the number of users that have checked in that number of times SELECT floor((t.total)/5)*5 AS number_of_checkins, COUNT(t.user_id) AS number_of_users FROM (SELECT COUNT(event_type) AS total, user_id FROM arvindr12.dummy_events WHERE event_type = 'check_in' GROUP BY user_id) AS t GROUP BY floor((t.total)/5)*5 ORDER BY number_of_checkins;
CREATE DATABASE rmm_telegram; CREATE USER 'rmm_ai'@'localhost' IDENTIFIED BY 'rmm_ai'; GRANT ALL ON rmm_telegram.* TO 'rmm_ai'@'localhost'; USE rmm_telegram; CREATE TABLE messages( message_id INT, message TEXT, sender_id INT, reply_to_msg_id INT, time TIMESTAMP, primary key(message_id) ); CREATE TABLE users( user_id INT, phone varchar(15), scam BOOL, verified BOOL, firstname VARCHAR(50), lastname VARCHAR(50), username VARCHAR(100), is_bot BOOL ); CREATE TABLE entity( proc_msg_id INT, message TEXT, brand TEXT, brand_count INT, models TEXT, models_count INT, tools TEXT, tools_count INT, issues TEXT, issues_group TEXT, issues_count INT, primary key(proc_msg_id) ); CREATE TABLE entity_key( proc_msg_id INT, message_id INT ); SHOW TABLES; /* ALTER TABLE messages ADD FOREIGN KEY (sender_id) REFERENCES users(user_id); */ /* ALTER TABLE messages ADD PRIMARY KEY (message_id);*/ ALTER TABLE entity_key ADD PRIMARY KEY (message_id); /* DELETE FROM messages WHERE message_id > 0; DELETE FROM users WHERE user_id > 95276708; DELETE FROM entity_key WHERE proc_msg_id >0; */ # For each database: ALTER DATABASE rmm_telegram CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci; # For each table: ALTER TABLE messages CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; ALTER TABLE users CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; ALTER TABLE entity CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; # For each column: ALTER TABLE messages CHANGE message message TEXT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; ALTER TABLE entity CHANGE message message TEXT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; ALTER TABLE users CHANGE firstname firstname VARCHAR(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; ALTER TABLE users CHANGE lastname lastname VARCHAR(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; ALTER TABLE users CHANGE username username VARCHAR(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; SHOW VARIABLES WHERE Variable_name LIKE 'character\_set\_%' OR Variable_name LIKE 'collation%';
create database IF NOT EXISTS marketplace; use marketplace; drop table if exists inventory; create table inventory ( id integer NOT NULL AUTO_INCREMENT, itemName varchar(50) NOT NULL, itemPrice float, itemDescription varchar(50), itemSupplier varchar(50) NOT NULL DEFAULT 'Factory', quantity integer, primary key (id) );
DROP database if exists bamazon; create database bamazon; use bamazon ; create table products( item_id INT AUTO_INCREMENT NOT NULL, product_name VARCHAR (20) NOT NULL, department_name VARCHAR (20), price DECIMAL(10,2) NOT NULL, stock_quantity INT (10), PRIMARY KEY (item_id) ); insert into products (product_name, department_name, price, stock_quantity) values( 'Banana', 'Food', 2, 10); insert into products (product_name, department_name, price, stock_quantity) values( 'Mighty Muggs', 'Toys', 5, 10); insert into products (product_name, department_name, price, stock_quantity) values( 'iPhone', 'Electronics', 100, 2); insert into products (product_name, department_name, price, stock_quantity) values( 'Assam Tea', 'Food', 20, 3); insert into products (product_name, department_name, price, stock_quantity) values( 'Swiss Bell', 'Decor', 25, 2); insert into products (product_name, department_name, price, stock_quantity) values( 'Patio Furniture', 'Decor', 150, 2); insert into products (product_name, department_name, price, stock_quantity) values( 'Dog Food', 'Pet', 15, 10); insert into products (product_name, department_name, price, stock_quantity) values( 'Powerbank', 'Electronics', 175, 12); insert into products (product_name, department_name, price, stock_quantity) values( 'Cookies', 'Food', 2, 30); insert into products (product_name, department_name, price, stock_quantity) values( 'Eggs', 'Food', 4, 50); select * from products
CREATE TABLE `mgs_php_db`.`users` ( `id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(100) NOT NULL, `lastname` VARCHAR(100) NOT NULL, `login` VARCHAR(100) NOT NULL, `pass_hash` VARCHAR(100) NOT NULL, `avatar` INT NOT NULL, `datatime_reg` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE = InnoDB; CREATE TABLE `mgs_php_db`.`comments` ( `id` INT NOT NULL AUTO_INCREMENT, `id_game` INT NOT NULL, `id_user` INT NOT NULL, `datatime_write` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, `name_comment` VARCHAR(100) NOT NULL, `text_comment` TEXT NOT NULL, `likes` INT NOT NULL, `dislikes` INT NOT NULL, `is_positive` BOOLEAN NOT NULL, INDEX `id_game_index` (`id_game`), INDEX `id_user_index` (`id_user`), PRIMARY KEY (`id`) ) ENGINE = InnoDB; CREATE TABLE `mgs_php_db`.`game_tags` ( `id` INT NOT NULL AUTO_INCREMENT, `id_game` INT NOT NULL, `id_tags` INT NOT NULL, INDEX `id_game_index` (`id_game`), INDEX `id_tags_index` (`id_tags`), PRIMARY KEY (`id`) ) ENGINE = InnoDB; CREATE TABLE `mgs_php_db`.`tags` ( `id` INT NOT NULL AUTO_INCREMENT, `tag` VARCHAR(100) NOT NULL, `description` TEXT NOT NULL, PRIMARY KEY (`id`) ) ENGINE = InnoDB; CREATE TABLE `mgs_php_db`.`system_requare` ( `id` INT NOT NULL AUTO_INCREMENT, `id_game` INT NOT NULL, `os` VARCHAR(75) NOT NULL, `cpu` VARCHAR(75) NOT NULL, `ram` VARCHAR(75) NOT NULL, `memory` VARCHAR(75) NOT NULL, `videocard` VARCHAR(75) NOT NULL, `directx` VARCHAR(75) NOT NULL, `soundsys` VARCHAR(75) NOT NULL, INDEX `id_game_index` (`id_game`), PRIMARY KEY (`id`) ) ENGINE = InnoDB; CREATE TABLE `mgs_php_db`.`game_genres` ( `id` INT NOT NULL AUTO_INCREMENT, `id_game` INT NOT NULL, `id_genre` INT NOT NULL, INDEX `id_game_index` (`id_game`), INDEX `id_genre_index` (`id_genre`), PRIMARY KEY (`id`) ) ENGINE = InnoDB; CREATE TABLE `mgs_php_db`.`game_subtitles_lang` ( `id` INT NOT NULL AUTO_INCREMENT, `id_game` INT NOT NULL, `id_lang` INT NOT NULL, INDEX `id_game_index` (`id_game`), INDEX `id_lang_index` (`id_lang`), PRIMARY KEY (`id`) ) ENGINE = InnoDB; CREATE TABLE `mgs_php_db`.`game_voice_lang` ( `id` INT NOT NULL AUTO_INCREMENT, `id_game` INT NOT NULL, `id_lang` INT NOT NULL, INDEX `id_game_index` (`id_game`), INDEX `id_lang_index` (`id_lang`), PRIMARY KEY (`id`) ) ENGINE = InnoDB; CREATE TABLE `mgs_php_db`.`game_text_lang` ( `id` INT NOT NULL AUTO_INCREMENT, `id_game` INT NOT NULL, `id_lang` INT NOT NULL, INDEX `id_game_index` (`id_game`), INDEX `id_lang_index` (`id_lang`), PRIMARY KEY (`id`) ) ENGINE = InnoDB; CREATE TABLE `mgs_php_db`.`langs` ( `id` INT NOT NULL AUTO_INCREMENT, `lang` VARCHAR(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE = InnoDB; CREATE TABLE `mgs_php_db`.`genres` ( `id` INT NOT NULL AUTO_INCREMENT, `genre` VARCHAR(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE = InnoDB; CREATE TABLE `mgs_php_db`.`companies_publish` ( `id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(100) NOT NULL, `description` TEXT NOT NULL, `year_create` DATE NOT NULL, PRIMARY KEY (`id`) ) ENGINE = InnoDB; CREATE TABLE `mgs_php_db`.`companies_create` ( `id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(100) NOT NULL, `description` TEXT NOT NULL, `year_create` DATE NOT NULL, PRIMARY KEY (`id`) ) ENGINE = InnoDB; CREATE TABLE `mgs_php_db`.`games` ( `id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(100) NOT NULL, `description` TEXT NOT NULL, `date_relize` DATE NOT NULL, `id_company_creator` INT NOT NULL, `id_company_publisher` INT NOT NULL, `is_tablet` BOOLEAN NOT NULL, `datatime_add` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, `user_add` INT NOT NULL, INDEX `id_company_creator_index` (`id_company_creator`), INDEX `id_company_publisher_index` (`id_company_publisher`), INDEX `user_add_index` (`user_add`), PRIMARY KEY (`id`) ) ENGINE = InnoDB;
# phpMyAdmin MySQL-Dump # version 2.2.2 # http://phpwizard.net/phpMyAdmin/ # http://phpmyadmin.sourceforge.net/ (download page) # # Host: localhost # Erstellungszeit: 10. März 2002 um 17:04 # Server Version: 3.23.39 # PHP Version: 4.1.1 # Datenbank : `dmerce_gt_immo` # -------------------------------------------------------- # # Tabellenstruktur für Tabelle `ObjectPicture` # CREATE TABLE ObjectPicture ( ID int(11) NOT NULL default '0', CreatedDateTime double(16,6) NOT NULL default '0.000000', CreatedBy int(11) NOT NULL default '0', ChangedDateTime double(16,6) NOT NULL default '0.000000', ChangedBy int(11) NOT NULL default '0', active int(1) NOT NULL default '1', Name varchar(255) NOT NULL default '', Picture varchar(255) NOT NULL default '', ObjectID int(11) NOT NULL default '0', Description text NOT NULL ) TYPE=MyISAM; # # Daten für Tabelle `ObjectPicture` # INSERT INTO ObjectPicture VALUES (1, '1015429415.390000', 1, '1015429467.730000', 1, 1, 'Blick auf die Strasse', '14197.jpg', 1, 'fsadfsadf\r\nsda\r\nf\r\ndsafdas'); INSERT INTO ObjectPicture VALUES (2, '1015429431.040000', 1, '1015429456.810000', 1, 1, 'Ihr Konforenzraum', '14131.jpg', 1, 'Sehr groß wie sie sehen !'); INSERT INTO ObjectPicture VALUES (3, '1015504288.210000', 1, '1015504288.210000', 1, 1, 'Ansicht Hof', 'house09.jpg', 2, 'Optisch ansprechende Fassade mit neuem Klinker und Fenstern.'); INSERT INTO ObjectPicture VALUES (4, '1015515979.800000', 1, '1015607294.130000', 1, 1, 'Vor dem Umbau', 'house09.jpg', 3, 'Ein früher Eindruck der Immobilie'); INSERT INTO ObjectPicture VALUES (5, '1015579018.030000', 1, '1015579018.030000', 1, 1, 'Ansicht von den Mitbewohnern', 'bully2.jpg', 5, 'Nette Leute im Haus, aktive Lebensgemeinschaft');
create or replace PACKAGE pack_attendance_lists IS PROCEDURE add_attendance_list ( v_name IN VARCHAR, v_type IN VARCHAR, v_week IN INTEGER, v_out_id out INTEGER ); PROCEDURE get_attendance_lists ( v_week IN VARCHAR, v_type IN VARCHAR, out_lists OUT SYS_REFCURSOR ); END pack_attendance_lists; create or replace PACKAGE BODY pack_attendance_lists IS PROCEDURE add_attendance_list ( v_name IN VARCHAR, v_type IN VARCHAR, v_week IN INTEGER, v_out_id OUT INTEGER ) IS BEGIN INSERT INTO attendance_lists VALUES ( NULL, v_name, v_type, v_week ); SELECT MAX(id_attendance_list) INTO v_out_id FROM attendance_lists; pack_attendances.add_attendance(307,211,v_out_id); END add_attendance_list; PROCEDURE get_attendance_lists ( v_week IN VARCHAR, v_type IN VARCHAR, out_lists OUT SYS_REFCURSOR ) AS BEGIN OPEN out_lists FOR SELECT id_attendance_list, name_attendance, type, week FROM attendance_lists WHERE type = v_type AND week = v_week; END get_attendance_lists; END pack_attendance_lists; create or replace PACKAGE pack_attendances IS PROCEDURE add_attendance ( v_id_class IN Integer, v_id_teacher IN Integer, v_id_attend IN Integer ); PROCEDURE get_attendances_studentss( -- v_id_attendance_list IN Number, -- v_out OUT Number, out_lists OUT SYS_REFCURSOR ); END pack_attendances; create or replace PACKAGE BODY pack_attendances IS PROCEDURE add_attendance ( v_id_class IN Integer, v_id_teacher IN Integer, v_id_attend IN Integer ) IS BEGIN INSERT INTO attendances VALUES ( NULL, (select id_classroom from classrooms where id_classroom = v_id_class), (select id_teacher from teachers where id_teacher = v_id_teacher), (select id_attendance_list from attendance_lists where id_attendance_list = v_id_attend) ); END add_attendance; PROCEDURE get_attendances_studentss ( out_lists OUT SYS_REFCURSOR ) AS BEGIN OPEN out_lists FOR SELECT id, id_attendace, ID_STUDENT, grade, detail FROM attends_students; END get_attendances_studentss; END pack_attendances; create or replace PACKAGE pack_attendances_students IS PROCEDURE update_attendances_students ( v_attendance_list_id IN INTEGER, v_identity_number IN VARCHAR, v_grade IN INTEGER, v_detail IN VARCHAR ); PROCEDURE add_attendances_students ( v_identity_number IN VARCHAR, v_attendance_list_name IN VARCHAR, v_grade IN INTEGER, v_detail IN VARCHAR ); PROCEDURE get_attendances_studentss ( v_id_attendance_list IN NUMBER, out_lists OUT SYS_REFCURSOR ); PROCEDURE add_all_students_by_group ( v_id_attedance_list IN INTEGER, v_group_name IN VARCHAR ); PROCEDURE add_student_all_parameter_trig ( v_group_name IN VARCHAR, v_id_attendance IN INTEGER ); END pack_attendances_students; create or replace PACKAGE BODY pack_attendances_students IS PROCEDURE update_attendances_students ( v_attendance_list_id IN INTEGER, v_identity_number IN VARCHAR, v_grade IN INTEGER, v_detail IN VARCHAR ) IS BEGIN UPDATE attends_students SET grade = v_grade, detail = v_detail WHERE id_attendace = ( SELECT id_attendace FROM attendances WHERE id_attendance_list = v_attendance_list_id ) AND id_student = ( SELECT id_student FROM students WHERE identity_number = v_identity_number ); END update_attendances_students; ------------------------------------------------------------------------------------- PROCEDURE add_attendances_students ( v_identity_number IN VARCHAR, v_attendance_list_name IN VARCHAR, v_grade IN INTEGER, v_detail IN VARCHAR ) IS BEGIN INSERT INTO attends_students VALUES ( NULL, ( SELECT id_attendace FROM attendances WHERE id_attendance_list = ( SELECT id_attendance_list FROM attendance_lists WHERE name_attendance = v_attendance_list_name ) ), ( SELECT id_student FROM students WHERE identity_number = v_identity_number ), v_grade, v_detail ); END add_attendances_students; --------------------------------------------------------------------------------- PROCEDURE get_attendances_studentss ( v_id_attendance_list IN NUMBER, out_lists OUT SYS_REFCURSOR ) AS BEGIN OPEN out_lists FOR SELECT id, id_attendace, id_student, grade, detail FROM attends_students WHERE id_attendace = ( SELECT id_attendace FROM attendances WHERE id_attendance_list = v_id_attendance_list ); END get_attendances_studentss; --------------------------------------- PROCEDURE add_all_students_by_group ( v_id_attedance_list IN INTEGER, v_group_name IN VARCHAR ) IS v_id_attendance INTEGER; v_id_group INTEGER; v_id_student INTEGER; v_exists INTEGER; CURSOR c1 IS SELECT id_student FROM students WHERE id_group = v_id_group; BEGIN pack_groups.get_group(v_group_name, v_id_group); SELECT id_attendace INTO v_id_attendance FROM attendances WHERE id_attendance_list = v_id_attedance_list; OPEN c1; LOOP v_exists := 0; FETCH c1 INTO v_id_student; EXIT WHEN c1%notfound OR c1%notfound IS NULL; pack_students.exist_student_on_attendance(v_id_student, v_id_attendance, v_exists); IF v_exists = 0 THEN INSERT INTO attends_students VALUES ( NULL, v_id_attendance, v_id_student, 0, 'p' ); END IF; END LOOP; CLOSE c1; END add_all_students_by_group; -------------------------------------------------------------------- PROCEDURE add_student_all_parameter_trig ( v_group_name IN VARCHAR, v_id_attendance IN INTEGER ) IS BEGIN INSERT INTO aaaaa VALUES ( NULL, v_group_name, v_id_attendance ); END add_student_all_parameter_trig; END pack_attendances_students; create or replace PACKAGE pack_classrooms IS PROCEDURE add_classroom ( v_name IN VARCHAR ); END pack_classrooms; create or replace PACKAGE BODY pack_classrooms IS PROCEDURE add_classroom ( v_name IN VARCHAR ) IS BEGIN INSERT INTO classrooms VALUES ( NULL, v_name ); END add_classroom; END pack_classrooms; create or replace PACKAGE pack_groups IS PROCEDURE add_group ( v_name IN VARCHAR ); PROCEDURE get_group ( v_name IN VARCHAR, out_id OUT INTEGER ); PROCEDURE get_groupById ( v_id IN INTEGER, out_name_group OUT VARCHAR ); FUNCTION get_allgroups RETURN SYS_REFCURSOR; PROCEDURE get_groups ( out_groups OUT SYS_REFCURSOR ); END pack_groups; create or replace PACKAGE BODY pack_groups IS PROCEDURE add_group ( v_name IN VARCHAR ) IS BEGIN INSERT INTO groups VALUES ( NULL, v_name ); END add_group; PROCEDURE get_group ( v_name IN VARCHAR, out_id OUT INTEGER ) IS BEGIN SELECT id_group INTO out_id FROM groups WHERE name_group = v_name; END get_group; FUNCTION get_allgroups RETURN SYS_REFCURSOR AS l_rc SYS_REFCURSOR; BEGIN OPEN l_rc FOR SELECT id_group, name_group FROM groups; RETURN l_rc; END get_allgroups; PROCEDURE get_groupById ( v_id IN INTEGER, out_name_group OUT VARCHAR ) iS BEGIN SELECT name_group INTO out_name_group FROM groups WHERE id_group = v_id; END get_groupById; PROCEDURE get_groups ( out_groups OUT SYS_REFCURSOR ) AS BEGIN OPEN out_groups FOR SELECT id_group, name_group FROM groups; END get_groups; END pack_groups; create or replace PACKAGE pack_groups_attend_lists IS PROCEDURE add_groups_attend_list ( v_id_group IN INTEGER, v_id_attendance_list IN INTEGER ); PROCEDURE get_groups_attend_list_by_id ( v_id IN INTEGER, out_lists OUT SYS_REFCURSOR ); -- PROCEDURE get_allGroups_byAttendList ( -- v_id_attendance_list in INTEGER, -- out_array_id_groups OUT INTEGER -- ); -- END pack_groups_attend_lists; create or replace PACKAGE BODY pack_groups_attend_lists IS PROCEDURE add_groups_attend_list ( v_id_group IN INTEGER, v_id_attendance_list IN INTEGER ) IS BEGIN INSERT INTO groups_attend_lists VALUES ( NULL, v_id_group, v_id_attendance_list ); END add_groups_attend_list; PROCEDURE get_groups_attend_list_by_id ( v_id IN INTEGER, out_lists OUT SYS_REFCURSOR ) AS BEGIN OPEN out_lists FOR SELECT id_group, id_attendance_list FROM groups_attend_lists WHERE id_attendance_list = v_id; END get_groups_attend_list_by_id; END pack_groups_attend_lists; create or replace PACKAGE pack_students IS PROCEDURE add_student ( v_name IN VARCHAR, v_indentity_number IN VARCHAR, v_group_name IN VARCHAR ); PROCEDURE get_all_students_by_group ( v_id_group IN VARCHAR, out_lists OUT SYS_REFCURSOR ); PROCEDURE find_student_on_attendance ( v_id_attendance IN INTEGER, v_identity_number IN VARCHAR, v_id OUT INTEGER ); PROCEDURE get_student_by_id ( v_id IN INTEGER, out_lists OUT SYS_REFCURSOR ); PROCEDURE exist_student_on_attendance ( v_id_student IN INTEGER, v_id_attendance IN INTEGER, v_out_id OUT INTEGER ); END pack_students; create or replace PACKAGE BODY pack_students IS PROCEDURE add_student ( v_name IN VARCHAR, v_indentity_number IN VARCHAR, v_group_name IN VARCHAR ) IS BEGIN INSERT INTO students VALUES ( NULL, v_name, v_indentity_number, ( SELECT id_group FROM groups WHERE name_group = v_group_name ) ); END add_student; PROCEDURE get_all_students_by_group ( v_id_group IN VARCHAR, out_lists OUT SYS_REFCURSOR ) AS BEGIN OPEN out_lists FOR SELECT id_student, name_student, identity_number FROM students WHERE id_group = v_id_group; END get_all_students_by_group; PROCEDURE get_student_by_id ( v_id IN INTEGER, out_lists OUT SYS_REFCURSOR ) AS BEGIN OPEN out_lists FOR SELECT id_student, name_student, identity_number, id_group FROM students WHERE id_student = v_id; END get_student_by_id; PROCEDURE find_student_on_attendance ( v_id_attendance IN INTEGER, v_identity_number IN VARCHAR, v_id OUT INTEGER ) IS BEGIN SELECT id INTO v_id FROM attends_students WHERE id_student = ( SELECT id_student FROM students WHERE identity_number = v_identity_number ) AND id_attendace = ( SELECT id_attendace FROM attendances WHERE id_attendance_list = v_id_attendance ); EXCEPTION WHEN no_data_found THEN v_id := 0; END find_student_on_attendance; PROCEDURE exist_student_on_attendance ( v_id_student IN INTEGER, v_id_attendance IN INTEGER, v_out_id out INTEGER ) IS BEGIN SELECT id INTO v_out_id FROM attends_students WHERE id_student = v_id_student AND id_attendace = v_id_attendance; EXCEPTION WHEN no_data_found THEN v_out_id := 0; END exist_student_on_attendance; END pack_students; create or replace PACKAGE pack_teachers IS PROCEDURE add_teacher ( v_name IN VARCHAR ); END pack_teachers; create or replace PACKAGE BODY pack_teachers IS PROCEDURE add_teacher ( v_name IN VARCHAR ) IS BEGIN INSERT INTO teachers VALUES ( NULL, v_name ); END add_teacher; END pack_teachers;
-- 为商品表添加分类的ID alter TABLE p39_goods add COLUMN promote_price DECIMAL(10,2) not null DEFAULT '0.00' comment '促销价格'; alter TABLE p39_goods add COLUMN promote_start_date DATETIME not null comment '促销开始时间'; alter TABLE p39_goods add COLUMN promote_end_date DATETIME not null comment '促销结束时间'; alter TABLE p39_goods add COLUMN is_new enum('是','否') not null DEFAULT '否' comment '是否新品'; alter TABLE p39_goods add COLUMN is_hot enum('是','否') not null DEFAULT '否' comment '是否热卖'; alter TABLE p39_goods add COLUMN is_best enum('是','否') not null DEFAULT '否' comment '是否精品'; alter TABLE p39_goods add index promote_price(promote_price); alter TABLE p39_goods add index promote_start_date(promote_start_date); alter TABLE p39_goods add index promote_end_date(promote_end_date); alter TABLE p39_goods add index is_new(is_new); alter TABLE p39_goods add index is_hot(is_hot); alter TABLE p39_goods add index is_best(is_best);
-- ---------------------------- -- Table structure for orders -- ---------------------------- DROP TABLE IF EXISTS "public"."users"; CREATE TABLE "public"."users" ( "id" SERIAL, "name" VARCHAR(70), "password" VARCHAR(999), "token" VARCHAR(999), "email" VARCHAR(70) UNIQUE, "created_at" TIMESTAMP DEFAULT NOW(), "updated_at" TIMESTAMP DEFAULT NOW() ); ALTER TABLE "public"."users" OWNER TO "atzgywhtayemui"; -- ---------------------------- -- Primary Key for table orders -- ---------------------------- ALTER TABLE "public"."users" ADD CONSTRAINT "user_id_pkey" PRIMARY KEY ("id");
INSERT INTO cs421g24.receiptdrugs (rid, duid, quantity) VALUES(1, 66, 1); INSERT INTO cs421g24.receiptdrugs (rid, duid, quantity) VALUES(1, 14, 1); INSERT INTO cs421g24.receiptdrugs (rid, duid, quantity) VALUES(1, 85, 1); INSERT INTO cs421g24.receiptdrugs (rid, duid, quantity) VALUES(2, 14, 1); INSERT INTO cs421g24.receiptdrugs (rid, duid, quantity) VALUES(2, 18, 1); INSERT INTO cs421g24.receiptdrugs (rid, duid, quantity) VALUES(2, 19, 1); INSERT INTO cs421g24.receiptdrugs (rid, duid, quantity) VALUES(2, 41, 1); INSERT INTO cs421g24.receiptdrugs (rid, duid, quantity) VALUES(2, 46, 1); INSERT INTO cs421g24.receiptdrugs (rid, duid, quantity) VALUES(2, 69, 1); INSERT INTO cs421g24.receiptdrugs (rid, duid, quantity) VALUES(2, 76, 1); INSERT INTO cs421g24.receiptdrugs (rid, duid, quantity) VALUES(3, 25, 1); INSERT INTO cs421g24.receiptdrugs (rid, duid, quantity) VALUES(3, 33, 1); INSERT INTO cs421g24.receiptdrugs (rid, duid, quantity) VALUES(3, 37, 1); INSERT INTO cs421g24.receiptdrugs (rid, duid, quantity) VALUES(3, 50, 1); INSERT INTO cs421g24.receiptdrugs (rid, duid, quantity) VALUES(3, 51, 1); INSERT INTO cs421g24.receiptdrugs (rid, duid, quantity) VALUES(4, 25, 1); INSERT INTO cs421g24.receiptdrugs (rid, duid, quantity) VALUES(4, 33, 1); INSERT INTO cs421g24.receiptdrugs (rid, duid, quantity) VALUES(4, 37, 1); INSERT INTO cs421g24.receiptdrugs (rid, duid, quantity) VALUES(4, 50, 1); INSERT INTO cs421g24.receiptdrugs (rid, duid, quantity) VALUES(4, 51, 1); INSERT INTO cs421g24.receiptdrugs (rid, duid, quantity) VALUES(5, 1, 1); INSERT INTO cs421g24.receiptdrugs (rid, duid, quantity) VALUES(5, 9, 1); INSERT INTO cs421g24.receiptdrugs (rid, duid, quantity) VALUES(5, 38, 1); INSERT INTO cs421g24.receiptdrugs (rid, duid, quantity) VALUES(5, 56, 1); INSERT INTO cs421g24.receiptdrugs (rid, duid, quantity) VALUES(6, 1, 1); INSERT INTO cs421g24.receiptdrugs (rid, duid, quantity) VALUES(6, 9, 1); INSERT INTO cs421g24.receiptdrugs (rid, duid, quantity) VALUES(6, 38, 1); INSERT INTO cs421g24.receiptdrugs (rid, duid, quantity) VALUES(6, 56, 1); INSERT INTO cs421g24.receiptdrugs (rid, duid, quantity) VALUES(7, 62, 2);
-- -- Database: `docdb` -- create database IF NOT EXISTS docdb; use docdb; -- -------------------------------------------------------- -- -- Table structure for table `documents` -- CREATE TABLE IF NOT EXISTS `documents` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(200) NOT NULL, `description` text NOT NULL, `filename` varchar(200) NOT NULL, `content` mediumblob NOT NULL, `content_type` varchar(255) NOT NULL, `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=34 ; --
-- MySQL Workbench Forward Engineering SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL,ALLOW_INVALID_DATES'; -- ----------------------------------------------------- -- Schema cadastro -- ----------------------------------------------------- -- ----------------------------------------------------- -- Schema cadastro -- ----------------------------------------------------- CREATE SCHEMA IF NOT EXISTS `cadastro` DEFAULT CHARACTER SET utf8 ; USE `cadastro` ; -- ----------------------------------------------------- -- Table `cadastro`.`genero` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `cadastro`.`genero` ( `id` INT NOT NULL AUTO_INCREMENT, `descricao` VARCHAR(45) NOT NULL, PRIMARY KEY (`id`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `cadastro`.`aluno` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `cadastro`.`aluno` ( `id` INT NOT NULL AUTO_INCREMENT, `nome` VARCHAR(30) NOT NULL, `sobrenome` VARCHAR(45) NOT NULL, `cpf` VARCHAR(11) NOT NULL, `nascimento` DATE NOT NULL, `telefone` VARCHAR(11) NULL, `email` VARCHAR(254) NULL, `genero_id` INT NOT NULL, PRIMARY KEY (`id`), INDEX `fk_aluno_genero_idx` (`genero_id` ASC), CONSTRAINT `fk_aluno_genero` FOREIGN KEY (`genero_id`) REFERENCES `cadastro`.`genero` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; SET SQL_MODE=@OLD_SQL_MODE; SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS; SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
-- Create a table in a database on a MySQL server -- Database is passed to mysql as an argument, don't create the table if it already exists CREATE TABLE IF NOT EXISTS first_table (id INT, name VARCHAR(256));
CREATE VIEW top_5_by_genre_by-rev AS SELECT category.name, sum(payment.amount) as 'Top Five Genres By Gross Revenue' FROM category JOIN film_category ON category.category_id = film_category.category_id JOIN inventory ON film_category.film_id = inventory.film_id JOIN rental ON rental.inventory_id = inventory.inventory_id JOIN payment ON payment.rental_id = rental.rental_id GROUP BY name ORDER BY SUM(payment.amount) DESC LIMIT 5;
CREATE Procedure sp_get_TaxAbstract(@TaxID int, @TaxType int) As Begin Select Tax_Description, CS_TaxCode, Case @TaxType When 2 Then ISNULL(Tax.CST_Percentage, 0) Else ISNULL(Tax.Percentage, 0) End 'TaxRate', Case isnull(Tax.GSTFlag,0) When 0 Then (Case @TaxType When 2 then 'Outstation' ELSE 'Local' End) Else (Case @TaxType When 2 Then 'Inter State' ELSE 'Intra State' End) End 'TaxType', --isnull(EffectiveFrom,'') as EffectiveFrom EffectiveFrom From Tax Where Tax_Code = @TaxID End
/* Name : spErrorHandler Object Type: STORED PROCEDURE Dependency : */ use BIGGYM; drop procedure if exists spErrorHandler; delimiter $$ create procedure spErrorHandler(out ReturnCode int, out SqlErrorCode int, out SqlStateCode int, out SqlErrorMsg varchar(512)) begin -- Variable Initialisation .. set ReturnCode = 0; set SqlErrorCode = 0; set SqlStateCode = 0; set SqlErrorMsg = '-'; -- Get sql error diagnostics .. get DIAGNOSTICS CONDITION 1 @SqlState = RETURNED_SQLSTATE, @ErrCode = MYSQL_ERRNO, @Text = MESSAGE_TEXT; -- Assign for output .. if (@ErrCode > 0) then set ReturnCode = -1; set SqlErrorCode = @ErrCode; set SqlStateCode = @SqlState; set SqlErrorMsg = @Text; end if; end$$ delimiter ; /* Sample Usage: call spErrorHandler (@returnCode, @errorCode, @stateCode, @errorMsg); select @returnCode, @errorCode, @stateCode, @errorMsg; */
SELECT Companies.CompanyName, EmployeeHistory.PositionName, EmployeeHistory.StartDate, EmployeeHistory.EndDate FROM ((EmployeeHistory INNER JOIN Companies ON EmployeeHistory.CompanyID = Companies.CompanyID) INNER JOIN Individuals ON EmployeeHistory.IndividualID = Individuals.IndividualID) WHERE employeehistory.IndividualID = 2;
create or replace package github_issues_labels as /** Interface to Github issues labels API * @author Morten Egan (github.com/morten-egan) * @project OracleGit * @version 0.1.0 */ /** List all labels for this repository * @author Morten Egan * @param git_account The account that owns the repository * @param repos_name The name of the repository */ function list_repos_labels ( git_account varchar2 , repos_name varchar2 ) return github.call_result; /** Get a single label * @author Morten Egan * @param git_account The account that owns the repository * @param repos_name The name of the repository * @param label The name of the label to get */ function get_label ( git_account varchar2 , repos_name varchar2 , label varchar2 ) return github.call_result; /** Create a label * @author Morten Egan * @param git_account The account that owns the repository * @param repos_name The name of the repository * @param label The name of the label * @param color A 6 character hex code, without the leading #, identifying the color. */ procedure create_label ( git_account varchar2 , repos_name varchar2 , label varchar2 , color varchar2 ); /** Update a label * @author Morten Egan * @param git_account The account that owns the repository * @param repos_name The name of the repository * @param label The name of the label * @param color A 6 character hex code, without the leading #, identifying the color. */ procedure update_label ( git_account varchar2 , repos_name varchar2 , label varchar2 , color varchar2 ); /** Delete a label * @author Morten Egan * @param git_account The account that owns the repository * @param repos_name The name of the repository * @param label The name of the label */ procedure delete_label ( git_account varchar2 , repos_name varchar2 , label varchar2 ); /** List labels on an issue * @author Morten Egan * @param git_account The account that owns the repository * @param repos_name The name of the repository * @param issue_id The ID of the issue */ function list_issue_labels ( git_account varchar2 , repos_name varchar2 , issue_id number ) return github.call_result; /** Add labels to an issue * @author Morten Egan * @param git_account The account that owns the repository * @param repos_name The name of the repository * @param issue_id The ID of the issue * @param labels A list of labels */ procedure add_labels_to_issue ( git_account varchar2 , repos_name varchar2 , issue_id number , labels json_list ); /** Remove a label from an issue * @author Morten Egan * @param git_account The account that owns the repository * @param repos_name The name of the repository * @param issue_id The ID of the issue * @param label Name of label */ procedure remove_label_from_issue ( git_account varchar2 , repos_name varchar2 , issue_id number , label varchar2 ); /** Replace all labels for an issue * @author Morten Egan * @param git_account The account that owns the repository * @param repos_name The name of the repository * @param issue_id The ID of the issue * @param labels A list of labels */ procedure replace_all_labels_issue ( git_account varchar2 , repos_name varchar2 , issue_id number , labels json_list ); /** Remove all labels from an issue * @author Morten Egan * @param git_account The account that owns the repository * @param repos_name The name of the repository * @param issue_id The ID of the issue */ procedure remove_labels_issue ( git_account varchar2 , repos_name varchar2 , issue_id number ); /** Get labels for every issue in a milestone * @author Morten Egan * @param git_account The account that owns the repository * @param repos_name The name of the repository * @param milestone_id The id of the milestone */ function labels_from_milestone ( git_account varchar2 , repos_name varchar2 , milestone_id number ) return github.call_result; end github_issues_labels; /
-- MySQL dump 10.13 Distrib 8.0.13, for Win64 (x86_64) -- -- Host: localhost Database: tienda -- ------------------------------------------------------ -- Server version 8.0.13 /*!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 */; 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 `cliente` -- DROP TABLE IF EXISTS `cliente`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `cliente` ( `IDCLIENTE` int(11) NOT NULL, `NOMBRE` varchar(50) COLLATE utf8_spanish_ci NOT NULL, `DIRECCION` varchar(50) COLLATE utf8_spanish_ci DEFAULT NULL, `POBLACION` varchar(50) COLLATE utf8_spanish_ci DEFAULT NULL, `TELEF` varchar(9) COLLATE utf8_spanish_ci DEFAULT NULL, `NIF` varchar(9) COLLATE utf8_spanish_ci DEFAULT NULL, PRIMARY KEY (`IDCLIENTE`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cliente` -- LOCK TABLES `cliente` WRITE; /*!40000 ALTER TABLE `cliente` DISABLE KEYS */; INSERT INTO `cliente` VALUES (1,'Hotel Astoria, S.A.','Plza. Rodrigo Botet, 5','Valencia','963326588','A28031650'),(2,'Hotel Ciudad de Valencia','Av. del Puerto, 214','Valencia','963674521','A46302524'),(3,'Francisco Lopez Serrano','C/Cuenca, 68','Valencia','963234217','24354274K'),(4,'Javier Monforte','Plaza Salamero 14','Zaragoza','669604539','b99276990'),(5,'Ruben notivol','Avda Goya','Zaragoza','625789625','b28964539'); /*!40000 ALTER TABLE `cliente` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `producto` -- DROP TABLE IF EXISTS `producto`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `producto` ( `IDPRODUCTO` int(11) NOT NULL, `DESCRIPCION` varchar(50) COLLATE utf8_spanish_ci NOT NULL, `STOCKACTUAL` int(11) DEFAULT NULL, `STOCKMINIMO` int(11) DEFAULT NULL, `PVP` int(11) DEFAULT NULL, PRIMARY KEY (`IDPRODUCTO`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `producto` -- LOCK TABLES `producto` WRITE; /*!40000 ALTER TABLE `producto` DISABLE KEYS */; INSERT INTO `producto` VALUES (1,'Plato llano',800,200,22),(2,'Plato hondo grande',600,100,6),(3,'Plato llano pequeño',600,100,11),(4,'Copas de agua',200,50,12),(5,'Copas de vino',200,50,12),(6,'Mantel algodon Blanco',190,50,15),(7,'Mantel algodon Verde',150,50,5),(8,'Bol hondo 22cm',100,25,12); /*!40000 ALTER TABLE `producto` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `venta` -- DROP TABLE IF EXISTS `venta`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `venta` ( `IDVENTA` int(11) NOT NULL, `FECHAVENTA` date NOT NULL, `IDCLIENTE` int(11) DEFAULT NULL, `IDPRODUCTO` int(11) DEFAULT NULL, `CANTIDAD` int(11) DEFAULT NULL, PRIMARY KEY (`IDVENTA`), KEY `PRODUCTO_fk` (`IDPRODUCTO`), KEY `CLIENTE_fk` (`IDCLIENTE`), CONSTRAINT `CLIENTE_fk` FOREIGN KEY (`IDCLIENTE`) REFERENCES `cliente` (`idcliente`), CONSTRAINT `PRODUCTO_fk` FOREIGN KEY (`IDPRODUCTO`) REFERENCES `producto` (`idproducto`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `venta` -- LOCK TABLES `venta` WRITE; /*!40000 ALTER TABLE `venta` DISABLE KEYS */; INSERT INTO `venta` VALUES (1,'2018-08-25',1,6,60),(2,'2018-08-25',1,7,50),(3,'2018-08-25',1,4,2),(4,'2018-08-25',2,6,100),(5,'2018-08-25',2,7,50),(6,'2018-09-01',3,6,40),(7,'2018-09-01',3,7,40),(8,'2018-09-01',3,4,4),(9,'2018-09-01',3,5,4),(10,'2018-09-01',3,1,5),(11,'2018-11-11',1,1,1),(12,'2018-12-25',1,2,25),(13,'2018-12-25',2,2,2),(14,'2018-11-11',2,5,5),(15,'2018-12-20',1,6,3),(16,'2018-12-25',2,5,18),(17,'2018-12-01',4,5,10); /*!40000 ALTER TABLE `venta` ENABLE KEYS */; UNLOCK TABLES; /*!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 2018-12-02 15:28:57
CREATE TABLE TESTUSER( id int primary key, username varchar(255) );
USE fil_rouge_test; #------------------------------------------------------------ # INSERTION DE DONNEES #------------------------------------------------------------ INSERT INTO fournisseur (nom_fournisseur, prenom_fournisseur, telephone_fournisseur, email_fournisseur, adresse_fournisseur) VALUES ("LAFORET", "thibaut", "03-44-96-12-36", "laforet@outlook.fr", "78 Place du paradis"), ("STARK", "john", "06-48-75-51-49", "stark@outlook.fr", "28 avenue du prix"); -- commercial, client, fournisseur, rubrique, sous rubrique, produit, livraison, commande INSERT INTO commercial (nom_commercial, prenom_commercial, telephone_commercial, adresse_commercial, email_commercial) VALUES ("MARTIN", "léo", "01-58-79-65-80", "Compiègne, 117 rue de Paris, 60200", "martin@outlook.fr"), ("PETIT", "jules", "06-75-10-08-16", "Amiens, 11 rue du général leclerc, 80000", "petit@outlook.fr"), ("BARBIER", "eden", "09-92-18-27-98", "Ribécourt, 144 rue d'Aristide Briand, 60170", "barbier@outlook.fr"); INSERT INTO client (nom_client, prenom_client, telephone_client, email_client, adresse_client, adresse_facturation_client, adresse_livraison_client, coeff_client, id_commercial) VALUES ("ROBERT", "camille", "03-44-79-65-80", "robert@outlook.fr", "41 rue Jobin 13003 Marseille", "41 rue Jobin 13003 Marseille", "41 rue Jobin 13003 Marseille", 5, 1), ("SIMON", "chloé", "06-75-35-87-12", "simon@outlook.fr", "19 rue des Augustins 33000 Bordeaux", "19 rue des Augustins 33000 Bordeaux", "19 rue des Augustins 33000 Bordeaux", 10, 1), ("FOURNIER", "hugo", "03-44-01-01-14", "fournier@outlook.fr", "Marseille 13003 Marseille", "Marseille 13003 Marseille", "Marseille 13003 Marseille", 5, 2); INSERT INTO rubrique (nom_rubrique) VALUES ("Tout venant"); INSERT INTO sous_rubrique (nom_sous_rubrique, id_rubrique) VALUES ("Livre", 1), ("Vidéo", 1); INSERT INTO produit (description_court_produit, description_long_produit, prix_ht_produit, photo_produit, quantite_produit, tva, id_fournisseur, id_sous_rubrique) VALUES ("Le sorceleur tome 1", "His cognitis Gallus ut serpens adpetitus telo vel saxo iamque spes extremas opperiens et succurrens saluti suae quavis ratione colligi omnes iussit armatos et cum starent attoniti, districta dentium acie stridens adeste inquit viri fortes mihi periclitanti vobiscum.", 42, '<img src="https://fakeimg.pl/250x100/">', 5, 22.5, 1, 1), ("Kaamelott intégral", "Advenit post multos Scudilo Scutariorum tribunus velamento subagrestis ingenii persuasionis opifex callidus. qui eum adulabili sermone seriis admixto solus omnium proficisci pellexit vultu ", 80 , '<img src="https://fakeimg.pl/250x100/">', 8, 22.5, 1, 1), ("Originals intégral", "si quisquam, ille sapiens fuit. Quo modo, ut alia omittam, mortem filii tulit! memineram Paulum, videram Galum, sed hi in pueris, Cato in perfecto et spectato viro.", 12, '<img src="https://fakeimg.pl/250x100/">', 22, 22.5, 2, 1), ("Super", "Thalassius vero ea tempestate praefectus praetorio praesens ipse quoque adrogantis ingenii, considerans incitationem eius ad multorum augeri discrimina, non ma", 9, '<img src="https://fakeimg.pl/250x100/">', 1, 22.5, 2, 1); INSERT INTO commande (date_commande, date_facturation, adresse_livraison, adresse_facturation, remise, reglement, etat_commande, id_client) VALUES ("2015/10/28", "2015/10/28", NULL, NULL, 5, 0, "En cours de livraison", 1), ("2015/11/28", "2015/11/28", NULL, NULL, 5, 0, "En cours de livraison", 2), ("2015/12/22", "2015/11/22", NULL, NULL, 5, 1, "Livré", 3); INSERT INTO livraison (date_livraison, id_commande) VALUES ("2015/10/28", 1), ("2016/08/09", 2), ("2018/07/12", 3); INSERT INTO Commande_Produit (id_commande, id_produit, prix_total, quantite) VALUES (1, 4, 50, 7), (2, 3, 50, 7), (3, 3, 50, 7); INSERT INTO Livraison_Produit (id_livraison, id_produit, quantite) VALUES (1, 1, 5), (1, 3, 5), (3, 2, 5);
CREATE TABLE CITY( CITY_ID int(10) NOT NULL AUTO_INCREMENT, NAME varchar(100) NOT NULL, PRIMARY KEY ( CITY_ID ) ); CREATE TABLE USERS( USER_ID int(10) NOT NULL AUTO_INCREMENT, LOGIN varchar(100) NOT NULL, EMAIL varchar(255), CITY_ID int(10), PRIMARY KEY ( USER_ID ) );
--DROP de la BD, por si se quieren reiniciar los datos. DROP TABLE PARTICIPACION; DROP TABLE ACCION; DROP TABLE PROYECTO; DROP TABLE COLABORACION; DROP TABLE SOCIO; DROP TABLE TRABAJADOR CASCADE CONSTRAINT; DROP TABLE ONG; -- ONG (codigo, nombre, email, telf, provincia, campo, responsable) CREATE TABLE ONG ( codigo CHAR(3), nombre VARCHAR(30) NOT NULL, email VARCHAR(30) NULL, telf NUMBER(9) NULL, provincia VARCHAR(20) NULL, campo VARCHAR(40) NULL, responsable CHAR(9) NOT NULL, CONSTRAINT ong_pk PRIMARY KEY(codigo) --ON DELETE CASCADE --ON UPDATE CASCADE ); -- TRABAJADOR (dni, nombre, ong, fechaingreso, esvoluntario, nacimiento, profesion, horas, -- sueldo) CREATE TABLE TRABAJADOR ( dni CHAR(9), nombre VARCHAR(40) NOT NULL, ong CHAR(3) NOT NULL, fechaingreso DATE NULL, esvoluntario CHAR(1) NOT NULL, nacimiento DATE NULL, profesion VARCHAR(20) NULL, horas NUMBER(3,1) NULL, sueldo NUMBER(6,1) NULL, CONSTRAINT trabajador_pk PRIMARY KEY(dni), CONSTRAINT trabajador_fk_ong FOREIGN KEY(ong) REFERENCES ONG(codigo), CONSTRAINT trabajador_rangovoluntario CHECK (esvoluntario IN ('S','N')), CONSTRAINT trabajador_sueldovoluntario CHECK ((esvoluntario ='S' AND sueldo=0) OR (esvoluntario='N' AND sueldo>0)), CONSTRAINT trabajador_fechascorrectas CHECK (nacimiento < fechaingreso), CONSTRAINT trabajador_horas CHECK (horas>0) --ON DELETE CASCADE --ON UPDATE CASCADE ); --Añadimos la fk a ong, ahora que ya esta creada la tabla trabajador ALTER TABLE ONG ADD CONSTRAINT ong_fk_tabajador FOREIGN KEY(responsable) REFERENCES TRABAJADOR(dni); --Añadimos la restriccion para que cada ong tenga un único responsable ALTER TABLE ONG ADD CONSTRAINT unico_responsable UNIQUE (responsable); -- SOCIO (dni, nombre) CREATE TABLE SOCIO ( dni CHAR(9), nombre VARCHAR(30) NOT NULL, CONSTRAINT socio_pk PRIMARY KEY(dni) --ON DELETE CASCADE --ON UPDATE CASCADE ); -- COLABORACION (ong, socio, fechaalta, cuota) CREATE TABLE COLABORACION ( ong CHAR(3), socio CHAR(9), fechaalta DATE NULL, cuota NUMBER(4,1) NULL, CONSTRAINT colaboracion_pk PRIMARY KEY(ong, socio), CONSTRAINT colaboracion_fk_ong FOREIGN KEY(ong) REFERENCES ONG(codigo), CONSTRAINT colaboracion_fk_socio FOREIGN KEY(socio) REFERENCES SOCIO(dni), CONSTRAINT colaboracion_cuota CHECK (cuota>0) --ON DELETE CASCADE --ON UPDATE CASCADE ); -- PROYECTO (ong, idproyecto, objetivo, pais, zona, numbeneficiarios) CREATE TABLE PROYECTO ( ong CHAR(3), idproyecto CHAR(2), objetivo VARCHAR(40) NULL, pais VARCHAR(20) NULL, zona VARCHAR(20) NULL, numbeneficiarios NUMBER(4,1) NULL, CONSTRAINT proyecto_pk PRIMARY KEY(ong, idproyecto), CONSTRAINT proyecto_fk_ong FOREIGN KEY(ong) REFERENCES ONG(codigo), CONSTRAINT proyecto_numbeneficiarios CHECK (numbeneficiarios>0) --ON DELETE CASCADE --ON UPDATE CASCADE ); -- ACCION (ong, idproyecto, idaccion, descripcion) CREATE TABLE ACCION ( ong CHAR(3), idproyecto CHAR(2), idaccion CHAR(5), descripcion VARCHAR(50) NULL, CONSTRAINT accion_pk PRIMARY KEY(ong, idproyecto, idaccion), CONSTRAINT accion_fk_ong FOREIGN KEY(ong) REFERENCES ONG(codigo), CONSTRAINT accion_fk_proyecto FOREIGN KEY(ong, idproyecto) REFERENCES PROYECTO(ong, idproyecto) --ON DELETE CASCADE --ON UPDATE CASCADE ); -- PARTICIPACION (ong, idproyecto, idaccion, trabajador) CREATE TABLE PARTICIPACION ( ong CHAR(3), idproyecto CHAR(2), idaccion CHAR(5), trabajador CHAR(9), CONSTRAINT participacion_pk PRIMARY KEY(ong, idproyecto, idaccion, trabajador), CONSTRAINT participacion_fk_ong FOREIGN KEY(ong) REFERENCES ONG(codigo), CONSTRAINT participacion_fk_idproyecto FOREIGN KEY(ong, idproyecto) REFERENCES PROYECTO(ong, idproyecto), CONSTRAINT participacion_fk_idaccion FOREIGN KEY(ong, idproyecto, idaccion) REFERENCES ACCION(ong, idproyecto, idaccion), CONSTRAINT participacion_fk_trabajador FOREIGN KEY(trabajador) REFERENCES TRABAJADOR(dni) --ON DELETE NO ACTION --ON UPDATE NO ACTION ); -- Desactivamos la clave ajena trabajador para poder hacer las inserciones -- sin problemas y evitando el problema de un ciclo referencial entre --ong y trabajador ALTER TABLE ONG DISABLE CONSTRAINT ong_fk_tabajador; -- ONG (codigo, nombre, email, telf, provincia, campo, responsable) INSERT INTO ONG (codigo, nombre, email, telf, provincia, campo, responsable) VALUES ('O01', 'MEDICOS SIN FRONTERAS', 'medicossinfronteras@ong.com', 964730362, 'Castellon', 'asistencia sanitaria', '90929946V'); INSERT INTO ONG (codigo, nombre, email, telf, provincia, campo, responsable) VALUES ('O02', 'OXFAM INTERNATIONAL', 'oxfaminternational@ong.com', 986730362, 'Pontevedra', 'pobreza', '43201623P'); INSERT INTO ONG (codigo, nombre, email, telf, provincia, campo, responsable) VALUES ('O03', 'BRAC', 'brac@ong.com', 958730362, 'Sevilla', 'desarrollo', '64225506C'); INSERT INTO ONG (codigo, nombre, email, telf, provincia, campo, responsable) VALUES ('O04', 'THE WIKIMEDIA FOUNDATION', 'thewikimediafoundation@ong.com', 949730362, 'Vizcaya', 'conocimiento', '22060512A'); INSERT INTO ONG (codigo, nombre, email, telf, provincia, campo, responsable) VALUES ('O05', 'ACUMEN FUND', 'acumenfund@ong.com', 945730362, 'Alava', 'desarrollo', '97425834G'); INSERT INTO ONG (codigo, nombre, email, telf, provincia, campo, responsable) VALUES ('O06', 'DANISH REFUGEE COUNCIL', 'danishrefugeecouncil@ong.com', 923730362, 'Salamanca', 'ayuda humanitaria', '51130653Y'); INSERT INTO ONG (codigo, nombre, email, telf, provincia, campo, responsable) VALUES ('O07', 'PARTNERS IN HEALTH', 'partnersinhealth@ong.com', 977730362, 'Tarragona', 'asistencia sanitaria', '23037540E'); INSERT INTO ONG (codigo, nombre, email, telf, provincia, campo, responsable) VALUES ('O08', 'CERES', 'ceres@ong.com', 938730362, 'Barcelona', 'medio ambiente', '35518940B'); INSERT INTO ONG (codigo, nombre, email, telf, provincia, campo, responsable) VALUES ('O09', 'CARE INTERNATIONAL', 'careinternational@ong.com', 968730362, 'Murcia', 'ayuda humanitaria', '86439637L'); INSERT INTO ONG (codigo, nombre, email, telf, provincia, campo, responsable) VALUES ('O10', 'MERCY CORPS', 'mercycorps@ong.com', 987730362, 'Leon', 'ayuda humanitaria', '67618541B'); COMMIT; -- TRABAJADOR (dni, nombre, ong, fechaingreso, esvoluntario, nacimiento, profesion, horas, sueldo) --Responsables INSERT INTO TRABAJADOR (dni, nombre, ong, fechaingreso, esvoluntario, nacimiento, profesion, horas, sueldo) VALUES ('90929946V', 'Pepe Perez Martinez', 'O01', TO_DATE('28/02/1999', 'dd/mm/yyyy'), 'N', TO_DATE('10/08/1970', 'dd/mm/yyyy'), 'arquitecto', 30, 2000); INSERT INTO TRABAJADOR (dni, nombre, ong, fechaingreso, esvoluntario, nacimiento, profesion, horas, sueldo) VALUES ('43201623P', 'Jose Maria Lozano Cañizares', 'O02', TO_DATE('02/05/2001', 'dd/mm/yyyy'), 'N', TO_DATE('19/01/1981', 'dd/mm/yyyy'), 'veterinario', 25, 1700); INSERT INTO TRABAJADOR (dni, nombre, ong, fechaingreso, esvoluntario, nacimiento, profesion, horas, sueldo) VALUES ('64225506C', 'Maria Teresa Salamanca Torrao', 'O03', TO_DATE('30/07/1997', 'dd/mm/yyyy'), 'N', TO_DATE('04/03/1962', 'dd/mm/yyyy'), 'abogado', 10, 2500); INSERT INTO TRABAJADOR (dni, nombre, ong, fechaingreso, esvoluntario, nacimiento, profesion, horas, sueldo) VALUES ('22060512A', 'Antonio Ruiz Hidalgo', 'O04', TO_DATE('22/04/1998', 'dd/mm/yyyy'), 'N', TO_DATE('21/11/1971', 'dd/mm/yyyy'), 'escritor', 36, 2300); INSERT INTO TRABAJADOR (dni, nombre, ong, fechaingreso, esvoluntario, nacimiento, profesion, horas, sueldo) VALUES ('97425834G', 'Maria Del Monte Fernandez Castillo', 'O05', TO_DATE('13/10/1989', 'dd/mm/yyyy'), 'N', TO_DATE('10/08/1970', 'dd/mm/yyyy'), 'periodista', 26, 1850); INSERT INTO TRABAJADOR (dni, nombre, ong, fechaingreso, esvoluntario, nacimiento, profesion, horas, sueldo) VALUES ('51130653Y', 'Rocio Salvadora Peña', 'O06', TO_DATE('12/09/1984', 'dd/mm/yyyy'), 'N', TO_DATE('27/04/1956', 'dd/mm/yyyy'), 'arquitecto', 18, 1500); INSERT INTO TRABAJADOR (dni, nombre, ong, fechaingreso, esvoluntario, nacimiento, profesion, horas, sueldo) VALUES ('23037540E', 'Carmen Lomana De Los Santos', 'O07', TO_DATE('13/06/1992', 'dd/mm/yyyy'), 'N', TO_DATE('17/10/1962', 'dd/mm/yyyy'), 'actriz', 28, 2800); INSERT INTO TRABAJADOR (dni, nombre, ong, fechaingreso, esvoluntario, nacimiento, profesion, horas, sueldo) VALUES ('35518940B', 'Jose Antoño Perez Fulgencio', 'O08', TO_DATE('26/04/2013', 'dd/mm/yyyy'), 'N', TO_DATE('10/08/1970', 'dd/mm/yyyy'), 'cocinero', 15, 1400); INSERT INTO TRABAJADOR (dni, nombre, ong, fechaingreso, esvoluntario, nacimiento, profesion, horas, sueldo) VALUES ('86439637L', 'Belen Lopez Lopez', 'O09', TO_DATE('23/06/1995', 'dd/mm/yyyy'), 'N', TO_DATE('05/05/1973', 'dd/mm/yyyy'), 'albañil', 29, 1400); INSERT INTO TRABAJADOR (dni, nombre, ong, fechaingreso, esvoluntario, nacimiento, profesion, horas, sueldo) VALUES ('67618541B', 'Eduardo Sierra Belmonte', 'O10', TO_DATE('13/10/2014', 'dd/mm/yyyy'), 'N', TO_DATE('28/02/1986', 'dd/mm/yyyy'), 'informatico', 32, 3000); --Resto de trabajadores INSERT INTO TRABAJADOR (dni, nombre, ong, fechaingreso, esvoluntario, nacimiento, profesion, horas, sueldo) VALUES ('11376993S', 'Pedro Luis Sanchez Hidalgo', 'O01', TO_DATE('12/09/2015', 'dd/mm/yyyy'), 'N', TO_DATE('11/09/1972', 'dd/mm/yyyy'), 'arquitecto', 37, 3300); INSERT INTO TRABAJADOR (dni, nombre, ong, fechaingreso, esvoluntario, nacimiento, profesion, horas, sueldo) VALUES ('98344693R', 'Maria Jesus Fernandez Costa', 'O01', TO_DATE('12/05/2013', 'dd/mm/yyyy'), 'N', TO_DATE('25/08/1989', 'dd/mm/yyyy'), 'dentista', 12, 900); INSERT INTO TRABAJADOR (dni, nombre, ong, fechaingreso, esvoluntario, nacimiento, profesion, horas, sueldo) VALUES ('97285751A', 'Victor Almansa Jimenez', 'O01', TO_DATE('12/04/2005', 'dd/mm/yyyy'), 'N', TO_DATE('11/09/1976', 'dd/mm/yyyy'), 'futbolista', 14, 1000); INSERT INTO TRABAJADOR (dni, nombre, ong, fechaingreso, esvoluntario, nacimiento, profesion, horas, sueldo) VALUES ('98742638P', 'Antonio Martinez Menarguez', 'O04', TO_DATE('27/12/2003', 'dd/mm/yyyy'), 'S', TO_DATE('10/09/1989', 'dd/mm/yyyy'), 'informatico', 5, 0); INSERT INTO TRABAJADOR (dni, nombre, ong, fechaingreso, esvoluntario, nacimiento, profesion, horas, sueldo) VALUES ('87454153C', 'David Nortes Madrid', 'O10', TO_DATE('05/04/2008', 'dd/mm/yyyy'), 'S', TO_DATE('10/03/1980', 'dd/mm/yyyy'), 'barrendero', 3, 0); INSERT INTO TRABAJADOR (dni, nombre, ong, fechaingreso, esvoluntario, nacimiento, profesion, horas, sueldo) VALUES ('88692703S', 'Jose Teron Lopez', 'O05', TO_DATE('19/06/2000', 'dd/mm/yyyy'), 'N', TO_DATE('10/10/1970', 'dd/mm/yyyy'), 'abogado', 20, 1000); INSERT INTO TRABAJADOR (dni, nombre, ong, fechaingreso, esvoluntario, nacimiento, profesion, horas, sueldo) VALUES ('35469075Q', 'Javier Sanchez Rodriguez', 'O08', TO_DATE('12/10/1980', 'dd/mm/yyyy'), 'S', TO_DATE('20/01/1960', 'dd/mm/yyyy'), 'notario', 5, 0); INSERT INTO TRABAJADOR (dni, nombre, ong, fechaingreso, esvoluntario, nacimiento, profesion, horas, sueldo) VALUES ('44814049N', 'Maria Gomez Lorenzo', 'O02', TO_DATE('26/05/1999', 'dd/mm/yyyy'), 'S', TO_DATE('13/07/1988', 'dd/mm/yyyy'), 'repartidor', 10, 0); INSERT INTO TRABAJADOR (dni, nombre, ong, fechaingreso, esvoluntario, nacimiento, profesion, horas, sueldo) VALUES ('24971685G', 'Lorena Garcia Marin', 'O03', TO_DATE('09/10/2005', 'dd/mm/yyyy'), 'N', TO_DATE('29/08/1975', 'dd/mm/yyyy'), 'profesor', 15, 700); INSERT INTO TRABAJADOR (dni, nombre, ong, fechaingreso, esvoluntario, nacimiento, profesion, horas, sueldo) VALUES ('71295094G', 'Pedro Lopez Ballester', 'O07', TO_DATE('30/12/2001', 'dd/mm/yyyy'), 'N', TO_DATE('08/10/1985', 'dd/mm/yyyy'), 'atleta', 15, 700); INSERT INTO TRABAJADOR (dni, nombre, ong, fechaingreso, esvoluntario, nacimiento, profesion, horas, sueldo) VALUES ('83548716A', 'Laura Godoy Moreno', 'O06', TO_DATE('14/04/1984', 'dd/mm/yyyy'), 'S', TO_DATE('11/11/1960', 'dd/mm/yyyy'), 'contable', 4, 0); INSERT INTO TRABAJADOR (dni, nombre, ong, fechaingreso, esvoluntario, nacimiento, profesion, horas, sueldo) VALUES ('31913327S', 'Arturo Serrano Navas', 'O05', TO_DATE('04/10/1990', 'dd/mm/yyyy'), 'S', TO_DATE('11/11/1979', 'dd/mm/yyyy'), 'abogado', 2, 0); INSERT INTO TRABAJADOR (dni, nombre, ong, fechaingreso, esvoluntario, nacimiento, profesion, horas, sueldo) VALUES ('73710346E', 'Sara Lopez Fernandez', 'O10', TO_DATE('24/02/2004', 'dd/mm/yyyy'), 'S', TO_DATE('26/01/1979', 'dd/mm/yyyy'), 'contable', 7, 0); INSERT INTO TRABAJADOR (dni, nombre, ong, fechaingreso, esvoluntario, nacimiento, profesion, horas, sueldo) VALUES ('27012870W', 'Enrique Perez Roldan', 'O02', TO_DATE('04/10/2000', 'dd/mm/yyyy'), 'S', TO_DATE('05/03/1973', 'dd/mm/yyyy'), 'jardinero', 6, 0); INSERT INTO TRABAJADOR (dni, nombre, ong, fechaingreso, esvoluntario, nacimiento, profesion, horas, sueldo) VALUES ('65772743Q', 'Raul Roldan Fandiño', 'O04', TO_DATE('06/11/1999', 'dd/mm/yyyy'), 'N', TO_DATE('17/01/1975', 'dd/mm/yyyy'), 'mimo', 40, 2000); COMMIT; --Reactivamos la clave ajena trabajador una vez insertados los datos. ALTER TABLE ONG ENABLE CONSTRAINT ong_fk_tabajador; -- SOCIO (dni, nombre) INSERT INTO SOCIO (dni, nombre) VALUES ('65772743Q', 'Raul Roldan Fandiño'); INSERT INTO SOCIO (dni, nombre) VALUES ('52837421C', 'Julio Guillamon Fornes'); INSERT INTO SOCIO (dni, nombre) VALUES ('24338549P', 'Concepcion Velasco Criado'); INSERT INTO SOCIO (dni, nombre) VALUES ('33083395Y', 'Antonia Hernan Queralt'); INSERT INTO SOCIO (dni, nombre) VALUES ('33450672P', 'Francisca Mejia Sanguino'); INSERT INTO SOCIO (dni, nombre) VALUES ('18046019X', 'Eva Parraga Rosas'); INSERT INTO SOCIO (dni, nombre) VALUES ('53723858F', 'Albert Perez Monje'); INSERT INTO SOCIO (dni, nombre) VALUES ('23553298F', 'Adrian Muñoz Calatayud'); INSERT INTO SOCIO (dni, nombre) VALUES ('44048986M', 'Mariano Quiles de los Rios'); INSERT INTO SOCIO (dni, nombre) VALUES ('35334097W', 'Ismael Ibañez Lluch'); INSERT INTO SOCIO (dni, nombre) VALUES ('26758712W', 'Adrian Jarque Marquez'); INSERT INTO SOCIO (dni, nombre) VALUES ('63735745M', 'Maria Teresa Belda Guardiola'); INSERT INTO SOCIO (dni, nombre) VALUES ('96221688P', 'Carmen Gongora Salgado'); INSERT INTO SOCIO (dni, nombre) VALUES ('37412388C', 'Aitor Ayllon Sanjuan'); INSERT INTO SOCIO (dni, nombre) VALUES ('89116783T', 'Alejandro Bastida Ramos'); INSERT INTO SOCIO (dni, nombre) VALUES ('12692795R', 'Mario Berenguer Leyva'); INSERT INTO SOCIO (dni, nombre) VALUES ('65233400G', 'Jose Carlos Paz Cardoso'); INSERT INTO SOCIO (dni, nombre) VALUES ('73786870N', 'Samuel Morante Tinoco'); INSERT INTO SOCIO (dni, nombre) VALUES ('58792660X', 'Juan Hussain Teixeira'); INSERT INTO SOCIO (dni, nombre) VALUES ('78815166E', 'Carlos Nicolau Cardoso'); INSERT INTO SOCIO (dni, nombre) VALUES ('46364223N', 'Santiago Moya Pardo'); INSERT INTO SOCIO (dni, nombre) VALUES ('29346993B', 'Gonzalo Bustamante Quilez'); INSERT INTO SOCIO (dni, nombre) VALUES ('65896087A', 'Rafael Nicolau Rozas'); INSERT INTO SOCIO (dni, nombre) VALUES ('43687995P', 'Daniel Cabrero Amoros'); INSERT INTO SOCIO (dni, nombre) VALUES ('91677090C', 'Mariano Alguacil Galisteo'); INSERT INTO SOCIO (dni, nombre) VALUES ('53927862N', 'Mario Esteban Cespedes'); INSERT INTO SOCIO (dni, nombre) VALUES ('91015380N', 'Jose Angel Casanova Sala'); INSERT INTO SOCIO (dni, nombre) VALUES ('56999932H', 'Luis Miguel Chinea Comino'); INSERT INTO SOCIO (dni, nombre) VALUES ('79065140R', 'Fernando Real Collado'); INSERT INTO SOCIO (dni, nombre) VALUES ('19652585K', 'Antonio Marcos Rangel'); INSERT INTO SOCIO (dni, nombre) VALUES ('83548716A', 'Laura Godoy Moreno'); INSERT INTO SOCIO (dni, nombre) VALUES ('31913327S', 'Arturo Serrano Navas'); INSERT INTO SOCIO (dni, nombre) VALUES ('73710346E', 'Sara Lopez Fernandez'); INSERT INTO SOCIO (dni, nombre) VALUES ('27012870W', 'Enrique Perez Roldan'); COMMIT; -- COLABORACION (ong, socio, fechaalta, cuota) INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O01', '83548716A', TO_DATE('21/09/2013', 'dd/mm/yyyy'), 143); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O02', '83548716A', TO_DATE('21/09/2012', 'dd/mm/yyyy'), 153); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O09', '31913327S', TO_DATE('12/10/2013', 'dd/mm/yyyy'), 342); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O10', '31913327S', TO_DATE('12/03/2010', 'dd/mm/yyyy'), 243); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O02', '73710346E', TO_DATE('01/05/1999', 'dd/mm/yyyy'), 312); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O03', '73710346E', TO_DATE('04/01/2000', 'dd/mm/yyyy'), 124); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O08', '27012870W', TO_DATE('29/09/1998', 'dd/mm/yyyy'), 251); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O09', '27012870W', TO_DATE('31/01/2010', 'dd/mm/yyyy'), 80); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O10', '65772743Q', TO_DATE('12/06/2010', 'dd/mm/yyyy'), 432); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O01', '65772743Q', TO_DATE('21/09/2015', 'dd/mm/yyyy'), 103); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O02', '65772743Q', TO_DATE('08/03/2006', 'dd/mm/yyyy'), 200); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O03', '65772743Q', TO_DATE('17/12/2000', 'dd/mm/yyyy'), 50); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O02', '52837421C', TO_DATE('10/12/2015', 'dd/mm/yyyy'), 15); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O03', '24338549P', TO_DATE('16/10/2015', 'dd/mm/yyyy'), 153); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O01', '33083395Y', TO_DATE('07/12/2014', 'dd/mm/yyyy'), 392); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O03', '33450672P', TO_DATE('22/03/2013', 'dd/mm/yyyy'), 168); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O08', '18046019X', TO_DATE('18/05/2014', 'dd/mm/yyyy'), 703); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O02', '53723858F', TO_DATE('09/03/2013', 'dd/mm/yyyy'), 556); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O07', '23553298F', TO_DATE('05/06/2015', 'dd/mm/yyyy'), 166); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O07', '44048986M', TO_DATE('20/12/2011', 'dd/mm/yyyy'), 24); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O01', '35334097W', TO_DATE('05/05/2011', 'dd/mm/yyyy'), 571); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O10', '26758712W', TO_DATE('30/09/2011', 'dd/mm/yyyy'), 73); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O03', '63735745M', TO_DATE('17/03/2012', 'dd/mm/yyyy'), 908); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O06', '96221688P', TO_DATE('19/02/2015', 'dd/mm/yyyy'), 473); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O07', '37412388C', TO_DATE('30/12/2014', 'dd/mm/yyyy'), 240); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O01', '89116783T', TO_DATE('26/05/2014', 'dd/mm/yyyy'), 513); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O05', '12692795R', TO_DATE('13/06/2012', 'dd/mm/yyyy'), 846); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O08', '65233400G', TO_DATE('24/07/2014', 'dd/mm/yyyy'), 653); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O10', '73786870N', TO_DATE('27/12/2014', 'dd/mm/yyyy'), 515); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O05', '58792660X', TO_DATE('07/08/2015', 'dd/mm/yyyy'), 948); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O10', '78815166E', TO_DATE('15/01/2011', 'dd/mm/yyyy'), 960); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O09', '46364223N', TO_DATE('23/08/2014', 'dd/mm/yyyy'), 498); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O05', '29346993B', TO_DATE('28/12/2011', 'dd/mm/yyyy'), 31); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O10', '65896087A', TO_DATE('07/09/2012', 'dd/mm/yyyy'), 256); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O05', '43687995P', TO_DATE('13/09/2011', 'dd/mm/yyyy'), 317); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O06', '91677090C', TO_DATE('04/04/2012', 'dd/mm/yyyy'), 381); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O10', '53927862N', TO_DATE('26/09/2013', 'dd/mm/yyyy'), 640); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O02', '91015380N', TO_DATE('12/06/2011', 'dd/mm/yyyy'), 954); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O08', '56999932H', TO_DATE('08/08/2015', 'dd/mm/yyyy'), 303); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O03', '79065140R', TO_DATE('09/05/2014', 'dd/mm/yyyy'), 220); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O06', '19652585K', TO_DATE('24/05/2015', 'dd/mm/yyyy'), 229); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O04', '73786870N', TO_DATE('07/06/2011', 'dd/mm/yyyy'), 272); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O03', '33083395Y', TO_DATE('14/12/2013', 'dd/mm/yyyy'), 799); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O05', '65772743Q', TO_DATE('29/08/2015', 'dd/mm/yyyy'), 942); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O01', '53927862N', TO_DATE('20/05/2015', 'dd/mm/yyyy'), 569); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O01', '19652585K', TO_DATE('02/08/2014', 'dd/mm/yyyy'), 868); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O09', '78815166E', TO_DATE('02/09/2015', 'dd/mm/yyyy'), 309); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O01', '96221688P', TO_DATE('13/03/2011', 'dd/mm/yyyy'), 537); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O07', '33083395Y', TO_DATE('22/11/2012', 'dd/mm/yyyy'), 667); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O01', '52837421C', TO_DATE('28/10/2014', 'dd/mm/yyyy'), 515); INSERT INTO COLABORACION (ong, socio, fechaalta, cuota) VALUES('O01', '65896087A', TO_DATE('24/06/2015', 'dd/mm/yyyy'), 765); COMMIT; -- PROYECTO (ong, idproyecto, objetivo, pais, zona, numbeneficiarios) INSERT INTO PROYECTO (ong, idproyecto, objetivo, pais, zona, numbeneficiarios) VALUES('O01', '07', 'Vacunación', 'Zambia', 'Sur', 91); INSERT INTO PROYECTO (ong, idproyecto, objetivo, pais, zona, numbeneficiarios) VALUES('O01', '11', 'Vacunacion', 'Burkina Faso', 'Oeste', 702); INSERT INTO PROYECTO (ong, idproyecto, objetivo, pais, zona, numbeneficiarios) VALUES('O02', '06', 'Hogar para personas sin techo', 'Perú', 'Norte', 675); INSERT INTO PROYECTO (ong, idproyecto, objetivo, pais, zona, numbeneficiarios) VALUES('O02', '12', 'Hogar para personas sin techo', 'Somalia', 'Sur', 703); INSERT INTO PROYECTO (ong, idproyecto, objetivo, pais, zona, numbeneficiarios) VALUES('O03', '08', 'Construir escuelas', 'Ecuador', 'Oeste', 539); INSERT INTO PROYECTO (ong, idproyecto, objetivo, pais, zona, numbeneficiarios) VALUES('O04', '03', 'Investigación historia del pais', 'Angola', 'Sur', 230); INSERT INTO PROYECTO (ong, idproyecto, objetivo, pais, zona, numbeneficiarios) VALUES('O05', '05', 'Construcción de infraestructuras', 'Nigeria', 'Este', 187); INSERT INTO PROYECTO (ong, idproyecto, objetivo, pais, zona, numbeneficiarios) VALUES('O05', '08', 'Construir escuelas', 'Costa Rica', 'Este', 161); INSERT INTO PROYECTO (ong, idproyecto, objetivo, pais, zona, numbeneficiarios) VALUES('O07', '04', 'Construir hospitales', 'Colombia', 'Sur', 635); INSERT INTO PROYECTO (ong, idproyecto, objetivo, pais, zona, numbeneficiarios) VALUES('O06', '10', 'Comida para personas sin recursos', 'Chad', 'Norte', 386); INSERT INTO PROYECTO (ong, idproyecto, objetivo, pais, zona, numbeneficiarios) VALUES('O06', '13', 'Comida para personas sin recursos', 'Nicaragua', 'Oeste', 429); INSERT INTO PROYECTO (ong, idproyecto, objetivo, pais, zona, numbeneficiarios) VALUES('O06', '09', 'Ropa para personas sin recursos', 'Haití', 'Norte', 368); INSERT INTO PROYECTO (ong, idproyecto, objetivo, pais, zona, numbeneficiarios) VALUES('O08', '01', 'Reforestación', 'Brasil', 'Sur', 641); INSERT INTO PROYECTO (ong, idproyecto, objetivo, pais, zona, numbeneficiarios) VALUES('O08', '14', 'Reforestación', 'El Salvador', 'Sur', 622); INSERT INTO PROYECTO (ong, idproyecto, objetivo, pais, zona, numbeneficiarios) VALUES('O09', '09', 'Ropa para personas sin recursos', 'Mali', 'Sur', 533); INSERT INTO PROYECTO (ong, idproyecto, objetivo, pais, zona, numbeneficiarios) VALUES('O09', '02', 'Asitencia en desastres naturales', 'Bolivia', 'Este', 912); INSERT INTO PROYECTO (ong, idproyecto, objetivo, pais, zona, numbeneficiarios) VALUES('O10', '02', 'Asitencia en desastres naturales', 'Ecuador', 'Oeste', 100); INSERT INTO PROYECTO (ong, idproyecto, objetivo, pais, zona, numbeneficiarios) VALUES('O10', '09', 'Ropa para personas sin recursos', 'Paraguay', 'Oeste', 140); INSERT INTO PROYECTO (ong, idproyecto, objetivo, pais, zona, numbeneficiarios) VALUES('O10', '15', 'Asitencia en desastres naturales', 'Nepal', 'Sur', 957); COMMIT; --ACCION (ong, idproyecto, idaccion, descripcion) INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O01', '07', '1', 'Fabricación de las vacunas'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O01', '07', '2', 'Distribución de las vacunas'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O01', '11', '1', 'Fabricación de las vacunas'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O01', '11', '2', 'Distribución de las vacunas'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O01', '07', '3', 'Aplicación de las vacunas'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O02', '06', '1', 'Búsqueda de hogares disponibles'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O02', '06', '2', 'Asignación a las familias'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O02', '12', '1', 'Búsqueda de hogares disponibles'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O02', '12', '2', 'Asignación a las familias'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O03', '08', '1', 'Diseño y conseguir materiales'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O03', '08', '2', 'Construcción'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O04', '03', '1', 'Recabar información'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O04', '03', '2', 'Contraste de fuentes'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O05', '05', '1', 'Diseño y conseguir materiales'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O05', '05', '2', 'Construcción'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O05', '08', '1', 'Diseño y conseguir materiales'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O05', '08', '2', 'Construcción'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O06', '09', '1', 'Recogida de ropa en contenedores especiales'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O06', '09', '2', 'Reparto de las prendas'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O06', '10', '1', 'Recolección de alimentos'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O06', '10', '2', 'Reparto a la población'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O06', '13', '1', 'Recolección de alimentos'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O06', '13', '2', 'Reparto a la población'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O07', '04', '1', 'Diseño y conseguir materiales'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O07', '04', '2', 'Construcción'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O08', '01', '1', 'Conseguir semillas'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O08', '01', '2', 'Plantar semillas'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O08', '14', '1', 'Conseguir semillas'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O08', '14', '2', 'Plantar semillas'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O09', '09', '1', 'Recogida de ropa en contenedores especiales'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O09', '09', '2', 'Reparto de las prendas'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O09', '02', '1', 'Formación equipos y transporte'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O09', '02', '2', 'Asignación de tareas'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O10', '02', '1', 'Formación equipos y transporte'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O10', '02', '2', 'Asignación de tareas'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O10', '09', '1', 'Recogida de ropa en contenedores especiales'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O10', '09', '2', 'Reparto de las prendas'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O10', '15', '1', 'Formación equipos y transporte'); INSERT INTO ACCION (ong, idproyecto, idaccion, descripcion) VALUES('O10', '15', '2', 'Asignación de tareas'); COMMIT; -- PARTICIPACION (ong, idproyecto, idaccion, trabajador) INSERT INTO PARTICIPACION (ong, idproyecto, idaccion, trabajador) VALUES ('O06', '09', '2', '83548716A'); INSERT INTO PARTICIPACION (ong, idproyecto, idaccion, trabajador) VALUES ('O04', '03', '1', '98742638P'); INSERT INTO PARTICIPACION (ong, idproyecto, idaccion, trabajador) VALUES ('O01', '07', '2', '11376993S'); INSERT INTO PARTICIPACION (ong, idproyecto, idaccion, trabajador) VALUES ('O01', '07', '1', '98344693R'); INSERT INTO PARTICIPACION (ong, idproyecto, idaccion, trabajador) VALUES ('O10', '02', '1', '87454153C'); INSERT INTO PARTICIPACION (ong, idproyecto, idaccion, trabajador) VALUES ('O05', '08', '2', '88692703S'); INSERT INTO PARTICIPACION (ong, idproyecto, idaccion, trabajador) VALUES ('O08', '01', '2', '35469075Q'); INSERT INTO PARTICIPACION (ong, idproyecto, idaccion, trabajador) VALUES ('O02', '06', '1', '44814049N'); INSERT INTO PARTICIPACION (ong, idproyecto, idaccion, trabajador) VALUES ('O03', '08', '1', '24971685G'); INSERT INTO PARTICIPACION (ong, idproyecto, idaccion, trabajador) VALUES ('O07', '04', '2', '71295094G'); INSERT INTO PARTICIPACION (ong, idproyecto, idaccion, trabajador) VALUES ('O04', '03', '1', '65772743Q'); INSERT INTO PARTICIPACION (ong, idproyecto, idaccion, trabajador) VALUES ('O04', '03', '2', '65772743Q'); INSERT INTO PARTICIPACION (ong, idproyecto, idaccion, trabajador) VALUES ('O05', '05', '1', '31913327S'); INSERT INTO PARTICIPACION (ong, idproyecto, idaccion, trabajador) VALUES ('O05', '05', '2', '31913327S'); INSERT INTO PARTICIPACION (ong, idproyecto, idaccion, trabajador) VALUES ('O10', '09', '1', '73710346E'); INSERT INTO PARTICIPACION (ong, idproyecto, idaccion, trabajador) VALUES ('O10', '09', '2', '73710346E'); INSERT INTO PARTICIPACION (ong, idproyecto, idaccion, trabajador) VALUES ('O10', '15', '1', '73710346E'); INSERT INTO PARTICIPACION (ong, idproyecto, idaccion, trabajador) VALUES ('O02', '12', '1', '27012870W'); COMMIT;
/* * Initial Schema creation script for Identity Management database. */ /* Create the table for BaseAuthenticationConfiguration objects */ CREATE TABLE BaseAuthenticationConfiguration ( DTYPE varchar(32) not null, UUID varchar(32) not null unique, CREATED_DATE timestamp, DELETED varchar(32), IS_DISABLED boolean, IS_OUT_OF_SYNC boolean, LOCKED boolean, MODIFIED_DATE timestamp, VERSION_NUMBER int8, DISPLAY_NAME varchar(1024), NAME varchar(1024), HOSTNAME varchar(1024), DOMAIN_NAME varchar(1024), PORT varchar(255), PROTOCOL varchar(255), SERVICE_PATH varchar(1024), TRANSPORT_PASSWORD varchar(1024), TRANSPORT_PROJECT varchar(1024), TRANSPORT_USERNAME varchar(1024), BASE_DOMAIN_NAME varchar(1024), GROUP_MEMBERSHIP varchar(1024), MANAGER_ID_VALUE varchar(1024), MANAGER_ID varchar(1024), PASSWORD varchar(1024), SEARCH_SUBTREE boolean, SSL_SET boolean, URI varchar(1024), USER_EMAIL_ADDRESS varchar(1024), USER_ID varchar(1024), USERNAME varchar(1024), USER_SEARCH_BASE varchar(1024), USER_SEARCH_FILTER varchar(1024), ORGANIZATIONS_FK varchar(32), primary key (UUID) ); /* Create the table for Metadata objects */ CREATE TABLE METADATA ( KEY varchar(1024) not null, UUID varchar(32) not null, CREATED_DATE timestamp, DELETED varchar(32), IS_DISABLED boolean, IS_OUT_OF_SYNC boolean, LOCKED boolean, MODIFIED_DATE timestamp, VERSION_NUMBER int8, PUBLIC boolean, VALUE varchar(10240), ORGANIZATIONS_FK varchar(32), primary key (KEY, UUID) ); /* Create the table for Organization objects */ CREATE TABLE ORGANIZATIONS ( UUID varchar(32) not null, CREATED_DATE timestamp, DELETED varchar(32), IS_DISABLED boolean, IS_OUT_OF_SYNC boolean, LOCKED boolean, MODIFIED_DATE timestamp, VERSION_NUMBER int8, DISPLAY_NAME varchar(1024), NAME varchar(1024), DESCRIPTION varchar(2048), ICON_URL varchar(1024), primary key (UUID) ); /* Create table for Trust objects */ CREATE TABLE Trust ( UUID varchar(32) not null, CREATED_DATE timestamp, DELETED varchar(32), IS_DISABLED boolean, IS_OUT_OF_SYNC boolean, LOCKED boolean, MODIFIED_DATE timestamp, VERSION_NUMBER int8, Expiration timestamp, TrusteeOrg varchar(1024), TrusteeUsername varchar(1024), TrustorOrg varchar(1024), TrustorUsername varchar(1024), primary key (UUID) ); /* Create table for Role objects */ CREATE TABLE ROLES ( UUID varchar(32) not null unique, CREATED_DATE timestamp, DELETED varchar(32), IS_DISABLED boolean, IS_OUT_OF_SYNC boolean, LOCKED boolean, MODIFIED_DATE timestamp, VERSION_NUMBER int8, DISPLAY_NAME varchar(1024), NAME varchar(1024), primary key (UUID) ); /* Create table for Group objects */ CREATE TABLE GROUPS ( UUID varchar(32) not null unique, CREATED_DATE timestamp, DELETED varchar(32), IS_DISABLED boolean, IS_OUT_OF_SYNC boolean, LOCKED boolean, MODIFIED_DATE timestamp, VERSION_NUMBER int8, DISPLAY_NAME varchar(1024), NAME varchar(1024), GROUP_INFO varchar(1024), primary key (UUID) ); /* Create join table for Role and Group objects */ CREATE TABLE ROLES_GROUPS ( group_id varchar(32) not null, role_id varchar(32) not null, primary key (role_id, group_id) ); /* Add the foreign key constraints for BaseAuthenticationConfiguration & Organization join column */ alter table BaseAuthenticationConfiguration add constraint FK692AA3ADD36FD973 foreign key (ORGANIZATIONS_FK) references ORGANIZATIONS; /* Add the foreign key constraint for Metadata & Organization join column */ alter table METADATA add constraint FK13D36B2FD36FD973 foreign key (ORGANIZATIONS_FK) references ORGANIZATIONS; /* Add the foreign key constraint for Roles and Groups join table */ alter table ROLES_GROUPS add constraint FKB2FBF9B65D808A0E foreign key (role_id) references ROLES; alter table ROLES_GROUPS add constraint FKB2FBF9B680047BC6 foreign key (group_id) references GROUPS; /* Add the pre-defined Roles */ insert into ROLES (UUID, CREATED_DATE, DELETED, IS_DISABLED, IS_OUT_OF_SYNC, LOCKED, MODIFIED_DATE, VERSION_NUMBER, DISPLAY_NAME, NAME) VALUES ('90ce361047ead1830147ead18f2a0000',CURRENT_TIMESTAMP,null,false,false,true,CURRENT_TIMESTAMP,1,'Service Consumer','SERVICE_CONSUMER'); insert into ROLES (UUID, CREATED_DATE, DELETED, IS_DISABLED, IS_OUT_OF_SYNC, LOCKED, MODIFIED_DATE, VERSION_NUMBER, DISPLAY_NAME, NAME) VALUES ('90ce361047ead1830147ead18f2a0001',CURRENT_TIMESTAMP,null,false,false,true,CURRENT_TIMESTAMP,1,'Consumer Service Administrator','CONSUMER_SERVICE_ADMINISTRATOR'); insert into ROLES (UUID, CREATED_DATE, DELETED, IS_DISABLED, IS_OUT_OF_SYNC, LOCKED, MODIFIED_DATE, VERSION_NUMBER, DISPLAY_NAME, NAME) VALUES ('90ce361047ead1830147ead18f2a0002',CURRENT_TIMESTAMP,null,false,false,true,CURRENT_TIMESTAMP,1,'Service Business Manager','SERVICE_BUSINESS_MANAGER'); insert into ROLES (UUID, CREATED_DATE, DELETED, IS_DISABLED, IS_OUT_OF_SYNC, LOCKED, MODIFIED_DATE, VERSION_NUMBER, DISPLAY_NAME, NAME) VALUES ('90ce361047ead1830147ead18f2a0003',CURRENT_TIMESTAMP,null,false,false,true,CURRENT_TIMESTAMP,1,'Service Designer','SERVICE_DESIGNER'); insert into ROLES (UUID, CREATED_DATE, DELETED, IS_DISABLED, IS_OUT_OF_SYNC, LOCKED, MODIFIED_DATE, VERSION_NUMBER, DISPLAY_NAME, NAME) VALUES ('90ce361047ead1830147ead18f2a0004',CURRENT_TIMESTAMP,null,false,false,true,CURRENT_TIMESTAMP,1,'CSA Admin','CSA_ADMIN'); insert into ROLES (UUID, CREATED_DATE, DELETED, IS_DISABLED, IS_OUT_OF_SYNC, LOCKED, MODIFIED_DATE, VERSION_NUMBER, DISPLAY_NAME, NAME) VALUES ('90ce361047ead1830147ead18f2a0005',CURRENT_TIMESTAMP,null,false,false,true,CURRENT_TIMESTAMP,1,'Resource Supply Manager','RESOURCE_SUPPLY_MANAGER'); insert into ROLES (UUID, CREATED_DATE, DELETED, IS_DISABLED, IS_OUT_OF_SYNC, LOCKED, MODIFIED_DATE, VERSION_NUMBER, DISPLAY_NAME, NAME) VALUES ('90ce361047ead1830147ead18f2a0006',CURRENT_TIMESTAMP,null,false,false,true,CURRENT_TIMESTAMP,1,'Service Operations Manager','SERVICE_OPERATIONS_MANAGER');
CREATE TABLE table1 (entries VARCHAR); INSERT INTO table1 (entries) values ('first entry');
select coalesce( max(dup_created_at), ( select min(dup_created_at) from gha_commits where dup_repo_name = {{repo}} or dup_repo_id = ( select max(id) from gha_repos where name = {{repo}} ) ), ( select min(dup_created_at) from gha_commits ) ) from gha_commits where author_email != '' and ( dup_repo_name = {{repo}} or dup_repo_id = ( select max(id) from gha_repos where name = {{repo}} ) ) ;
--emp table : 사원정보 --dept table : 부서정보 --bonus table: 임시 테이블 --salgrade table:급여 정보 select * from dept; -- 로그인한 계정이 소유한 테이블 확인 select * from tab; -- 테이블 구조 확인 : desc 테이블 이름 desc emp; desc dept; desc salgrade; select * from emp; select * from dept; -- 데이터 검색 질의 select ename,sal, deptno, empno -- 컬럼 이름을 나열 from emp --테이블 이름 ; select deptno from dept; select deptno, dname from dept; -- select의 결과는 새로운 테이블이다 -- 컬럼의 산술연산이 가능하다 . +, -, *,/ mod 함수 이용(나머지) select *from emp; select ename, sal,sal + comm from emp; select ename, sal, sal+500 from emp; select ename, sal, sal-100 from emp; select ename, sal, sal*12 from emp; select ename, sal, sal/2 from emp; -- null 값의 확인 select ename, job, sal, comm, sal*12, sal*12+comm from emp; -- nvl(컬럼명, 기본값): null 값 치환 함수 -- 기본값은 컬럼의 도메인의 자료형과 같아야 한다. select ename, job, sal, nvl(comm,0), sal*12 as sal_1, sal*12+nvl(comm,0) as total from emp; -- DB의 문자열 표현 -> 작은 따옴표를 이용 -- EX) '문자열' -- 문자열을 붙여서 출력하는 연산 -> || select job, ename || ' is a' || job as msg from emp; -- 출력 컬럼의 중복을 제거하고 하나씩만 출력 : DISTINCT select deptno from emp; select distinct deptno from emp; select deptno, job from emp order by deptno; select distinct deptno, job from emp order by deptno;
SET SERVEROUTPUT ON CREATE OR REPLACE PACKAGE BODY pkg_unit_testing IS PROCEDURE prc_test_add_employee IS BEGIN BEGIN pkg_hr_employees.prc_add_employee(380,'Avram','Ana','aana@gmail.com','075604425',TO_DATE('26.01.2017','dd.MM.yyyy'),'IT_PROG',4000,0.35,100,80); DBMS_OUTPUT.PUT_LINE('SUCCES.A fost inserat un rand.'); COMMIT; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('EROARE INSERARE!!'); COMMIT; END; BEGIN pkg_hr_employees.prc_add_employee(100,'Pohariu','Sabina','psabina@gmail.com','0723852990',TO_DATE('12.04.2010','dd.MM.yyyy'),'AD_PRES',6000,0.1,120,50); DBMS_OUTPUT.PUT_LINE('SUCCES.A fost inserat un rand.'); COMMIT; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('EROARE INSERARE!!'); END; BEGIN pkg_hr_employees.prc_add_employee(301,'Panturu',NULL,'pcrina@gmail.com','0712239878',TO_DATE('12.08.2008','dd.MM.yyyy'),'ST_MAN',6000,NULL,148,50); DBMS_OUTPUT.PUT_LINE('SUCCES.A fost inserat un rand.'); COMMIT; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('EROARE INSERARE!!'); END; BEGIN pkg_hr_employees.prc_add_employee(310,'Popa','Crina','pcrina@gmail.com','0752299877',TO_DATE('22.07.2012','dd.MM.yyyy'),'SH_CLERK',3200,0.2,145,90); DBMS_OUTPUT.PUT_LINE('SUCCES.A fost inserat un rand.'); COMMIT; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('EROARE INSERARE!!'); COMMIT; END; BEGIN pkg_hr_employees.prc_add_employee(312,'Popa','Crina','pcrina@gmail.com','0752299877',TO_DATE('22.07.2012','dd.MM.yyyy'),'SH_CLERK',3200,0.2,145,90); DBMS_OUTPUT.PUT_LINE('SUCCES.A fost inserat un rand.'); COMMIT; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('EROARE INSERARE!!'); END; BEGIN pkg_hr_employees.prc_add_employee(314,'Alexandru','Lucian','alucian@gmail.com','0734235849',TO_DATE('22.07.2012','dd.MM.yyyy'),'AD_MCR',3200,0.2,145,90); DBMS_OUTPUT.PUT_LINE('SUCCES.A fost inserat un rand.'); COMMIT; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('EROARE INSERARE!!'); END; BEGIN pkg_hr_employees.prc_add_employee(315,'Popa','Ion','pion@gmail.com','0723847722',TO_DATE('22.07.2012','dd.MM.yyyy'),'AD_MGR',-4000,NULL,100,90); DBMS_OUTPUT.PUT_LINE('SUCCES.A fost inserat un rand.'); COMMIT; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('EROARE INSERARE!!'); END; END prc_test_add_employee; PROCEDURE prc_test_adjust_employee_data IS BEGIN BEGIN pkg_hr_employees.prc_adjust_employee_data(310,'Ionescu','Dan','idan@gmail.com','0723847722',TO_DATE('30.04.2010','dd.MM.yyyy'),'MK_MAN',4000,NULL,100,90); DBMS_OUTPUT.PUT_LINE('SUCCES.A fost actualizat un rand.'); COMMIT; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('EROARE ACTUALIZARE!!'); END; BEGIN pkg_hr_employees.prc_adjust_employee_data(400,'Ionescu','Dan','idan@gmail.com','0723847722',TO_DATE('30.04.2010','dd.MM.yyyy'),'MK_MAN',4000,NULL,100,90); DBMS_OUTPUT.PUT_LINE('SUCCES.A fost actualizat un rand.'); COMMIT; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('EROARE ACTUALIZARE!!'); END; BEGIN pkg_hr_employees.prc_adjust_employee_data(301,'Anton','Ana','aana@gmail.com','0723847722',TO_DATE('30.04.2010','dd.MM.yyyy'),'MK_MAN',4000,NULL,100,90); DBMS_OUTPUT.PUT_LINE('SUCCES.A fost actualizat un rand.'); COMMIT; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('EROARE ACTUALIZARE!!'); END; BEGIN pkg_hr_employees.prc_adjust_employee_data(301,'Anton','Ana','aana@gmail.com','0723847722',TO_DATE('30.04.2010','dd.MM.yyyy'),'AC_MCR',4000,NULL,100,90); DBMS_OUTPUT.PUT_LINE('SUCCES.A fost actualizat un rand.'); COMMIT; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('EROARE ACTUALIZARE!!'); END; BEGIN pkg_hr_employees.prc_adjust_employee_data(301,'Anton','Ana','aana@gmail.com','0723847722',TO_DATE('30.04.2010','dd.MM.yyyy'),'AC_MGR',-2000,NULL,100,90); DBMS_OUTPUT.PUT_LINE('SUCCES.A fost actualizat un rand.'); COMMIT; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('EROARE ACTUALIZARE!!'); END; END prc_test_adjust_employee_data; PROCEDURE prc_test_remove_employee IS BEGIN BEGIN pkg_hr_employees.prc_remove_employee(380); DBMS_OUTPUT.PUT_LINE('SUCCES.A fost sters un rand.'); COMMIT; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('EROARE STERGERE!!'); END; BEGIN pkg_hr_employees.prc_remove_employee(500); DBMS_OUTPUT.PUT_LINE('SUCCES.A fost sters un rand.'); COMMIT; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('EROARE STERGERE!!'); END; END prc_test_remove_employee; PROCEDURE prc_test_add_department IS BEGIN BEGIN pkg_hr_departments.prc_add_department(280,'HR',NULL,1700); DBMS_OUTPUT.PUT_LINE('SUCCES.A fost inserat un rand.'); COMMIT; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('EROARE INSERARE!!'); END; BEGIN pkg_hr_departments.prc_add_department(240,'HR',NULL,1700); DBMS_OUTPUT.PUT_LINE('SUCCES.A fost inserat un rand.'); COMMIT; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('EROARE INSERARE!!'); END; BEGIN pkg_hr_departments.prc_add_department(290,'HR',NULL,2500); DBMS_OUTPUT.PUT_LINE('SUCCES.A fost inserat un rand.'); COMMIT; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('EROARE INSERARE!!'); END; BEGIN pkg_hr_departments.prc_add_department(290,NULL,NULL,2500); DBMS_OUTPUT.PUT_LINE('SUCCES.A fost inserat un rand.'); COMMIT; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('EROARE INSERARE!!'); END; END prc_test_add_department; PROCEDURE prc_test_adjust_dept_data IS BEGIN BEGIN pkg_hr_departments.prc_adjust_department_data(270,'Accounting',NULL,1700); DBMS_OUTPUT.PUT_LINE('SUCCES.A fost actualizat un rand.'); COMMIT; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('EROARE ACTUALIZARE!!'); END; BEGIN pkg_hr_departments.prc_adjust_department_data(300,'Accounting',NULL,1700); DBMS_OUTPUT.PUT_LINE('SUCCES.A fost actualizat un rand.'); COMMIT; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('EROARE ACTUALIZARE!!'); END; BEGIN pkg_hr_departments.prc_adjust_department_data(270,NULL,200,1700); DBMS_OUTPUT.PUT_LINE('SUCCES.A fost actualizat un rand.'); COMMIT; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('EROARE ACTUALIZARE!!'); END; BEGIN pkg_hr_departments.prc_adjust_department_data(270,'Accounting',200,2500); DBMS_OUTPUT.PUT_LINE('SUCCES.A fost actualizat un rand.'); COMMIT; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('EROARE ACTUALIZARE!!'); END; END prc_test_adjust_dept_data ; PROCEDURE prc_test_remove_department IS BEGIN BEGIN pkg_hr_departments.prc_remove_department(240); DBMS_OUTPUT.PUT_LINE('SUCCES.A fost sters un rand.'); COMMIT; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('EROARE STERGERE!!'); END; BEGIN pkg_hr_departments.prc_remove_department(400); DBMS_OUTPUT.PUT_LINE('SUCCES.A fost sters un rand.'); COMMIT; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('EROARE STERGERE!!'); END; END prc_test_remove_department; PROCEDURE prc_order_management_ut IS BEGIN BEGIN pkg_order_management.prc_load_order(2457); DBMS_OUTPUT.PUT_LINE('SUCCES.Comanda a fost incarcata.'); EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('Eroare incarcare comanda.'); END; -- order_id nu exista incarcat in colectie -> exceptie BEGIN pkg_order_management.prc_print_order(2446); DBMS_OUTPUT.PUT_LINE('SUCCES.Comanda a fost printata.'); COMMIT; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('Eroare printare comanda.'); ROLLBACK; END; BEGIN pkg_order_management.prc_load_order(2457); DBMS_OUTPUT.PUT_LINE('SUCCES.Comanda a fost incarcata.'); EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('Eroare incarcare comanda.'); END; BEGIN pkg_order_management.prc_print_order(2457); DBMS_OUTPUT.PUT_LINE('SUCCES.Comanda a fost printata.'); COMMIT; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('Eroare printare comanda.'); ROLLBACK; END; -- colectie neincarcata -> exceptie BEGIN pkg_order_management.prc_print_order(2457); DBMS_OUTPUT.PUT_LINE('SUCCES.Comanda a fost printata.'); COMMIT; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('Eroare printare comanda.'); ROLLBACK; END; -- colectie neincarcata BEGIN pkg_order_management.prc_print_order(null); DBMS_OUTPUT.PUT_LINE('SUCCES.Comenzile au fost printate.'); COMMIT; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('Eroare printare comenzi.'); ROLLBACK; END; BEGIN pkg_order_management.prc_load_order(null); DBMS_OUTPUT.PUT_LINE('SUCCES.Comenzile au fost incarcate.'); EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('Eroare incarcare comenzi.'); END; BEGIN pkg_order_management.prc_print_order(null); DBMS_OUTPUT.PUT_LINE('SUCCES.Comenzile au fost printate.'); COMMIT; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('Eroare printare comenzi.'); ROLLBACK; END; END prc_order_management_ut ; END; /
-- phpMyAdmin SQL Dump -- version 4.7.0 -- https://www.phpmyadmin.net/ -- -- Máy chủ: localhost -- Thời gian đã tạo: Th10 26, 2017 lúc 03:14 PM -- Phiên bản máy phục vụ: 10.1.25-MariaDB -- Phiên bản PHP: 5.6.31 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 */; -- -- Cơ sở dữ liệu: `banhangsieucap` -- CREATE DATABASE IF NOT EXISTS `banhangsieucap` DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci; USE `banhangsieucap`; -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `account` -- CREATE TABLE `account` ( `id` int(11) NOT NULL, `username` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `password` varchar(100) COLLATE utf8_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Đang đổ dữ liệu cho bảng `account` -- INSERT INTO `account` (`id`, `username`, `password`) VALUES (1, 'hieu', '123'); -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `category` -- CREATE TABLE `category` ( `id` int(11) NOT NULL, `name` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `description` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `image` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `priority_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Đang đổ dữ liệu cho bảng `category` -- INSERT INTO `category` (`id`, `name`, `description`, `image`, `priority_id`) VALUES (1, 'sneaker', 'description for sneakre', 'category_sneaker.jpg', 0), (2, 'T-Shirt\r\n', 'Description T-shirt', 'category_tshirt.jpg', 0), (3, 'Shirt', 'Description for Shirt', 'category_shirt.jpg', 0), (4, 'Bottle', 'Description for bottle', 'category_bottle.jpg', 0), (5, 'Headphone', 'Description for headphone', 'category_headphone.jpg', 0), (6, 'jacket', 'Description for jacket', 'category_jacket.jpg', 0); -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `contact` -- CREATE TABLE `contact` ( `id` int(11) NOT NULL, `title1` varchar(200) COLLATE utf8_unicode_ci NOT NULL, `introduction1` varchar(1000) COLLATE utf8_unicode_ci NOT NULL, `introduction2` varchar(1000) COLLATE utf8_unicode_ci NOT NULL, `phone1` varchar(20) COLLATE utf8_unicode_ci NOT NULL, `phone2` varchar(20) COLLATE utf8_unicode_ci NOT NULL, `email` varchar(20) COLLATE utf8_unicode_ci NOT NULL, `slogan` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `facebook` varchar(200) COLLATE utf8_unicode_ci NOT NULL, `youtube` varchar(200) COLLATE utf8_unicode_ci NOT NULL, `googleplus` varchar(200) COLLATE utf8_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Đang đổ dữ liệu cho bảng `contact` -- INSERT INTO `contact` (`id`, `title1`, `introduction1`, `introduction2`, `phone1`, `phone2`, `email`, `slogan`, `facebook`, `youtube`, `googleplus`) VALUES (1, 'B store', 'When goods in started-price and B is the best choice for you!', 'When goods in started-price and B is the best choice for you!', '0938190592', '01203672707', 'hieu@gmail.com', 'test', 'http://facebook.com', 'http://google.com', 'http://googleplus.com'), (2, 'title2', 'intro1\r\n', 'intro2', 'phone 1', 'phone 2 ', 'test', 'This is our life', '', '', ''); -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `product` -- CREATE TABLE `product` ( `id` int(11) NOT NULL, `product_id` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `category_id` int(11) NOT NULL, `name` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `description` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `size` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `parent_image` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `children_image` varchar(200) COLLATE utf8_unicode_ci NOT NULL, `price` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `priority` int(11) NOT NULL, `video_url` varchar(200) COLLATE utf8_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Đang đổ dữ liệu cho bảng `product` -- INSERT INTO `product` (`id`, `product_id`, `category_id`, `name`, `description`, `size`, `parent_image`, `children_image`, `price`, `priority`, `video_url`) VALUES (1, '11', 1, 'product1', 'description for product 1 description for product 1 description for product 1', '40,41,42', 'image.jpg', 'image1.jpg,image2.jpg,image3.jpg', '100,000VND', 1, 'http://youtube.com'), (2, '22', 2, 'product1', 'description for product 1', '40,41,42', 'image.jpg', 'image1.jpg,image2.jpg,image3.jpg', '100,000VND', 1, 'http://google.com'), (3, '33', 1, 'product1', 'description for product 1', '40,41,42', 'image.jpg', 'image1.jpg,image2.jpg,image3.jpg', '100,000VND', 1, ''), (4, '44', 1, 'product1', 'description for product 1', '40,41,42', 'image.jpg', 'image1.jpg,image2.jpg', '100,000VND', 1, ''), (5, '55', 1, 'product1', 'description for product 1', '40,41,42', 'image.jpg', 'image1.jpg,image2.jpg,image3.jpg', '100,000VND', 1, ''), (6, '66', 1, 'product1', 'description for product 1', '40,41,42', 'image.jpg', 'image1.jpg,image2.jpg,image3.jpg', '100,000VND', 1, ''), (7, 'test', 7, '', '', '', '', '', '', 0, ''); -- -- Chỉ mục cho các bảng đã đổ -- -- -- Chỉ mục cho bảng `account` -- ALTER TABLE `account` ADD PRIMARY KEY (`id`); -- -- Chỉ mục cho bảng `category` -- ALTER TABLE `category` ADD PRIMARY KEY (`id`); -- -- Chỉ mục cho bảng `contact` -- ALTER TABLE `contact` ADD PRIMARY KEY (`id`); -- -- Chỉ mục cho bảng `product` -- ALTER TABLE `product` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT cho các bảng đã đổ -- -- -- AUTO_INCREMENT cho bảng `account` -- ALTER TABLE `account` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT cho bảng `category` -- ALTER TABLE `category` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT cho bảng `product` -- ALTER TABLE `product` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;-- -- Cơ sở dữ liệu: `phpmyadmin` -- CREATE DATABASE IF NOT EXISTS `phpmyadmin` DEFAULT CHARACTER SET utf8 COLLATE utf8_bin; USE `phpmyadmin`; -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `pma__bookmark` -- CREATE TABLE `pma__bookmark` ( `id` int(11) NOT NULL, `dbase` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '', `user` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '', `label` varchar(255) CHARACTER SET utf8 NOT NULL DEFAULT '', `query` text COLLATE utf8_bin NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Bookmarks'; -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `pma__central_columns` -- CREATE TABLE `pma__central_columns` ( `db_name` varchar(64) COLLATE utf8_bin NOT NULL, `col_name` varchar(64) COLLATE utf8_bin NOT NULL, `col_type` varchar(64) COLLATE utf8_bin NOT NULL, `col_length` text COLLATE utf8_bin, `col_collation` varchar(64) COLLATE utf8_bin NOT NULL, `col_isNull` tinyint(1) NOT NULL, `col_extra` varchar(255) COLLATE utf8_bin DEFAULT '', `col_default` text COLLATE utf8_bin ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Central list of columns'; -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `pma__column_info` -- CREATE TABLE `pma__column_info` ( `id` int(5) UNSIGNED NOT NULL, `db_name` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `table_name` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `column_name` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `comment` varchar(255) CHARACTER SET utf8 NOT NULL DEFAULT '', `mimetype` varchar(255) CHARACTER SET utf8 NOT NULL DEFAULT '', `transformation` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '', `transformation_options` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '', `input_transformation` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '', `input_transformation_options` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '' ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Column information for phpMyAdmin'; -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `pma__designer_settings` -- CREATE TABLE `pma__designer_settings` ( `username` varchar(64) COLLATE utf8_bin NOT NULL, `settings_data` text COLLATE utf8_bin NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Settings related to Designer'; -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `pma__export_templates` -- CREATE TABLE `pma__export_templates` ( `id` int(5) UNSIGNED NOT NULL, `username` varchar(64) COLLATE utf8_bin NOT NULL, `export_type` varchar(10) COLLATE utf8_bin NOT NULL, `template_name` varchar(64) COLLATE utf8_bin NOT NULL, `template_data` text COLLATE utf8_bin NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Saved export templates'; -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `pma__favorite` -- CREATE TABLE `pma__favorite` ( `username` varchar(64) COLLATE utf8_bin NOT NULL, `tables` text COLLATE utf8_bin NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Favorite tables'; -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `pma__history` -- CREATE TABLE `pma__history` ( `id` bigint(20) UNSIGNED NOT NULL, `username` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `db` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `table` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `timevalue` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `sqlquery` text COLLATE utf8_bin NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='SQL history for phpMyAdmin'; -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `pma__navigationhiding` -- CREATE TABLE `pma__navigationhiding` ( `username` varchar(64) COLLATE utf8_bin NOT NULL, `item_name` varchar(64) COLLATE utf8_bin NOT NULL, `item_type` varchar(64) COLLATE utf8_bin NOT NULL, `db_name` varchar(64) COLLATE utf8_bin NOT NULL, `table_name` varchar(64) COLLATE utf8_bin NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Hidden items of navigation tree'; -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `pma__pdf_pages` -- CREATE TABLE `pma__pdf_pages` ( `db_name` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `page_nr` int(10) UNSIGNED NOT NULL, `page_descr` varchar(50) CHARACTER SET utf8 NOT NULL DEFAULT '' ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='PDF relation pages for phpMyAdmin'; -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `pma__recent` -- CREATE TABLE `pma__recent` ( `username` varchar(64) COLLATE utf8_bin NOT NULL, `tables` text COLLATE utf8_bin NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Recently accessed tables'; -- -- Đang đổ dữ liệu cho bảng `pma__recent` -- INSERT INTO `pma__recent` (`username`, `tables`) VALUES ('root', '[{\"db\":\"banhangsieucap\",\"table\":\"category\"},{\"db\":\"banhangsieucap\",\"table\":\"product\"},{\"db\":\"banhangsieucap\",\"table\":\"contact\"},{\"db\":\"banhangsieucap\",\"table\":\"account\"}]'); -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `pma__relation` -- CREATE TABLE `pma__relation` ( `master_db` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `master_table` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `master_field` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `foreign_db` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `foreign_table` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `foreign_field` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '' ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Relation table'; -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `pma__savedsearches` -- CREATE TABLE `pma__savedsearches` ( `id` int(5) UNSIGNED NOT NULL, `username` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `db_name` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `search_name` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `search_data` text COLLATE utf8_bin NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Saved searches'; -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `pma__table_coords` -- CREATE TABLE `pma__table_coords` ( `db_name` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `table_name` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `pdf_page_number` int(11) NOT NULL DEFAULT '0', `x` float UNSIGNED NOT NULL DEFAULT '0', `y` float UNSIGNED NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Table coordinates for phpMyAdmin PDF output'; -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `pma__table_info` -- CREATE TABLE `pma__table_info` ( `db_name` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `table_name` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '', `display_field` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '' ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Table information for phpMyAdmin'; -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `pma__table_uiprefs` -- CREATE TABLE `pma__table_uiprefs` ( `username` varchar(64) COLLATE utf8_bin NOT NULL, `db_name` varchar(64) COLLATE utf8_bin NOT NULL, `table_name` varchar(64) COLLATE utf8_bin NOT NULL, `prefs` text COLLATE utf8_bin NOT NULL, `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Tables'' UI preferences'; -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `pma__tracking` -- CREATE TABLE `pma__tracking` ( `db_name` varchar(64) COLLATE utf8_bin NOT NULL, `table_name` varchar(64) COLLATE utf8_bin NOT NULL, `version` int(10) UNSIGNED NOT NULL, `date_created` datetime NOT NULL, `date_updated` datetime NOT NULL, `schema_snapshot` text COLLATE utf8_bin NOT NULL, `schema_sql` text COLLATE utf8_bin, `data_sql` longtext COLLATE utf8_bin, `tracking` set('UPDATE','REPLACE','INSERT','DELETE','TRUNCATE','CREATE DATABASE','ALTER DATABASE','DROP DATABASE','CREATE TABLE','ALTER TABLE','RENAME TABLE','DROP TABLE','CREATE INDEX','DROP INDEX','CREATE VIEW','ALTER VIEW','DROP VIEW') COLLATE utf8_bin DEFAULT NULL, `tracking_active` int(1) UNSIGNED NOT NULL DEFAULT '1' ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Database changes tracking for phpMyAdmin'; -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `pma__userconfig` -- CREATE TABLE `pma__userconfig` ( `username` varchar(64) COLLATE utf8_bin NOT NULL, `timevalue` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `config_data` text COLLATE utf8_bin NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='User preferences storage for phpMyAdmin'; -- -- Đang đổ dữ liệu cho bảng `pma__userconfig` -- INSERT INTO `pma__userconfig` (`username`, `timevalue`, `config_data`) VALUES ('root', '2017-10-08 16:12:23', '{\"lang\":\"vi\",\"collation_connection\":\"utf8_unicode_ci\"}'); -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `pma__usergroups` -- CREATE TABLE `pma__usergroups` ( `usergroup` varchar(64) COLLATE utf8_bin NOT NULL, `tab` varchar(64) COLLATE utf8_bin NOT NULL, `allowed` enum('Y','N') COLLATE utf8_bin NOT NULL DEFAULT 'N' ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='User groups with configured menu items'; -- -------------------------------------------------------- -- -- Cấu trúc bảng cho bảng `pma__users` -- CREATE TABLE `pma__users` ( `username` varchar(64) COLLATE utf8_bin NOT NULL, `usergroup` varchar(64) COLLATE utf8_bin NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Users and their assignments to user groups'; -- -- Chỉ mục cho các bảng đã đổ -- -- -- Chỉ mục cho bảng `pma__bookmark` -- ALTER TABLE `pma__bookmark` ADD PRIMARY KEY (`id`); -- -- Chỉ mục cho bảng `pma__central_columns` -- ALTER TABLE `pma__central_columns` ADD PRIMARY KEY (`db_name`,`col_name`); -- -- Chỉ mục cho bảng `pma__column_info` -- ALTER TABLE `pma__column_info` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `db_name` (`db_name`,`table_name`,`column_name`); -- -- Chỉ mục cho bảng `pma__designer_settings` -- ALTER TABLE `pma__designer_settings` ADD PRIMARY KEY (`username`); -- -- Chỉ mục cho bảng `pma__export_templates` -- ALTER TABLE `pma__export_templates` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `u_user_type_template` (`username`,`export_type`,`template_name`); -- -- Chỉ mục cho bảng `pma__favorite` -- ALTER TABLE `pma__favorite` ADD PRIMARY KEY (`username`); -- -- Chỉ mục cho bảng `pma__history` -- ALTER TABLE `pma__history` ADD PRIMARY KEY (`id`), ADD KEY `username` (`username`,`db`,`table`,`timevalue`); -- -- Chỉ mục cho bảng `pma__navigationhiding` -- ALTER TABLE `pma__navigationhiding` ADD PRIMARY KEY (`username`,`item_name`,`item_type`,`db_name`,`table_name`); -- -- Chỉ mục cho bảng `pma__pdf_pages` -- ALTER TABLE `pma__pdf_pages` ADD PRIMARY KEY (`page_nr`), ADD KEY `db_name` (`db_name`); -- -- Chỉ mục cho bảng `pma__recent` -- ALTER TABLE `pma__recent` ADD PRIMARY KEY (`username`); -- -- Chỉ mục cho bảng `pma__relation` -- ALTER TABLE `pma__relation` ADD PRIMARY KEY (`master_db`,`master_table`,`master_field`), ADD KEY `foreign_field` (`foreign_db`,`foreign_table`); -- -- Chỉ mục cho bảng `pma__savedsearches` -- ALTER TABLE `pma__savedsearches` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `u_savedsearches_username_dbname` (`username`,`db_name`,`search_name`); -- -- Chỉ mục cho bảng `pma__table_coords` -- ALTER TABLE `pma__table_coords` ADD PRIMARY KEY (`db_name`,`table_name`,`pdf_page_number`); -- -- Chỉ mục cho bảng `pma__table_info` -- ALTER TABLE `pma__table_info` ADD PRIMARY KEY (`db_name`,`table_name`); -- -- Chỉ mục cho bảng `pma__table_uiprefs` -- ALTER TABLE `pma__table_uiprefs` ADD PRIMARY KEY (`username`,`db_name`,`table_name`); -- -- Chỉ mục cho bảng `pma__tracking` -- ALTER TABLE `pma__tracking` ADD PRIMARY KEY (`db_name`,`table_name`,`version`); -- -- Chỉ mục cho bảng `pma__userconfig` -- ALTER TABLE `pma__userconfig` ADD PRIMARY KEY (`username`); -- -- Chỉ mục cho bảng `pma__usergroups` -- ALTER TABLE `pma__usergroups` ADD PRIMARY KEY (`usergroup`,`tab`,`allowed`); -- -- Chỉ mục cho bảng `pma__users` -- ALTER TABLE `pma__users` ADD PRIMARY KEY (`username`,`usergroup`); -- -- AUTO_INCREMENT cho các bảng đã đổ -- -- -- AUTO_INCREMENT cho bảng `pma__bookmark` -- ALTER TABLE `pma__bookmark` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT cho bảng `pma__column_info` -- ALTER TABLE `pma__column_info` MODIFY `id` int(5) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT cho bảng `pma__export_templates` -- ALTER TABLE `pma__export_templates` MODIFY `id` int(5) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT cho bảng `pma__history` -- ALTER TABLE `pma__history` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT cho bảng `pma__pdf_pages` -- ALTER TABLE `pma__pdf_pages` MODIFY `page_nr` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT cho bảng `pma__savedsearches` -- ALTER TABLE `pma__savedsearches` MODIFY `id` int(5) UNSIGNED NOT NULL AUTO_INCREMENT;-- -- Cơ sở dữ liệu: `test` -- CREATE DATABASE IF NOT EXISTS `test` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci; USE `test`; 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 Database IntroToSQL; Create Table groceries ( ID Integer Primary Key, Name Text, Quantity Integer ); Insert Into Groceries Values (1, 'Bananas', 4); Insert Into Groceries Values (2, 'Peanut Butter', 1); Insert Into Groceries Values (3, 'Dark chocolate bars', 2); Alter Table Groceries Add aisle Integer; Update dbo.groceries Set aisle = 7 Where id = 1 Update dbo.groceries Set aisle = 2 Where id = 2 Update dbo.groceries Set aisle = 2 Where id = 3; Insert Into Groceries Values (4, 'Ice cream', 1, 12); Insert Into Groceries Values (5, 'Cherries', 6, 2); Insert Into Groceries Values (6, 'Chocolate syrup', 1, 4); Select * From Groceries Where aisle > 5 Order by aisle; Select aisle, SUM(quantity) From groceries Group By aisle; --Select * From Groceries Create Table exercise_logs ( id Integer Identity(1,1) Primary Key, type Text, minutes Integer, Calories Integer, heart_rate Integer ); Insert Into exercise_logs (type, minutes, calories, heart_rate) Values ('biking', 30, 100, 110); Insert Into exercise_logs (type, minutes, calories, heart_rate) Values ('biking', 10, 30, 105); Insert Into exercise_logs (type, minutes, calories, heart_rate) Values ('dancing', 15, 200, 120); Select * From exercise_logs Where calories > 50 and minutes < 30 Order by Calories; Create Table drs_favorites ( id Integer Identity(1,1) Primary Key, type Text, reason Text ); Insert Into drs_favorites (type, reason) Values ('biking', 'Improves endurance and flexibility.'); Insert Into drs_favorites (type, reason) Values ('hiking', 'Increases cardiovascular health.'); Insert Into drs_favorites (type, reason) Values ('Skateboarding', 'improves endurance and flexibility.'); SELECT title FROM songs WHERE artist IN ( SELECT name FROM artists WHERE genre = 'Pop'); CREATE TABLE exercise_logs ( id INTEGER Identity(1,1) PRIMARY KEY, ExerciseType TEXT, minutes INTEGER, calories INTEGER, heart_rate INTEGER ); INSERT INTO exercise_logs (ExerciseType, minutes, calories, heart_rate) VALUES ('biking', 30, 115, 110); INSERT INTO exercise_logs (ExerciseType, minutes, calories, heart_rate) VALUES ('biking', 10, 45, 105); INSERT INTO exercise_logs (ExerciseType, minutes, calories, heart_rate) VALUES ('dancing', 15, 200, 120); INSERT INTO exercise_logs (ExerciseType, minutes, calories, heart_rate) VALUES ('dancing', 15, 165, 120); INSERT INTO exercise_logs (ExerciseType, minutes, calories, heart_rate) VALUES ('tree climbing', 30, 70, 90); INSERT INTO exercise_logs (ExerciseType, minutes, calories, heart_rate) VALUES ('tree climbing', 25, 72, 80); INSERT INTO exercise_logs (ExerciseType, minutes, calories, heart_rate) VALUES ('rowing', 30, 70, 90); INSERT INTO exercise_logs (ExerciseType, minutes, calories, heart_rate) VALUES ('hiking', 60, 80, 85); SELECT CAST(ExerciseType AS NVARCHAR(100)) ExerciseType, SUM(Calories) AS Total_Calories FROM exercise_logs GROUP BY CAST(ExerciseType AS NVARCHAR(100)) Having SUM(Calories) > 150; SELECT CAST(ExerciseType AS NVARCHAR(100)) ExerciseType, AVG(Calories) AS Average_Calories FROM exercise_logs GROUP BY CAST(ExerciseType AS NVARCHAR(100)) Having AVG(Calories) > 70; Select CAST(ExerciseType AS NVARCHAR(100)) ExerciseType From exercise_logs Group By CAST(ExerciseType AS NVARCHAR(100)) Having Count(*) >= 2; SELECT Count(*) FROM exercise_logs WHERE heart_rate >= (0.50 * (220-30)) AND heart_rate <= (0.90 * (220-30)); Select heart_rate, exercisetype, Case When heart_rate > 220-30 Then 'Above Max' When heart_rate > (0.90 * (220-30)) Then 'Above Target' When heart_rate > (0.50 * (220-30)) Then 'Within Target' Else 'Below Target' End as 'hr_zone' From exercise_logs; Select count(*), Case When number_grade > 90 Then 'A' When number_grade > 80 Then 'B' When number_grade > 70 Then 'C' Else 'F' End as 'letter_grade' From student_grades Group by letter_grade; CREATE TABLE students ( id INTEGER Identity(1,1) PRIMARY KEY, first_name TEXT, last_name TEXT, email TEXT, phone TEXT, birthdate TEXT ); INSERT INTO students (first_name, last_name, email, phone, birthdate) VALUES ('Peter', 'Rabbit', 'peter@rabbit.com', '555-6666', '2002-06-24'); INSERT INTO students (first_name, last_name, email, phone, birthdate) VALUES ('Alice', 'Wonderland', 'alice@wonderland.com', '555-4444', '2002-07-04'); CREATE TABLE student_grades ( id INTEGER Identity(1,1) PRIMARY KEY, student_id INTEGER, test TEXT, grade INTEGER ); INSERT INTO student_grades (student_id, test, grade) VALUES (1, 'Nutrition', 95); INSERT INTO student_grades (student_id, test, grade) VALUES (2, 'Nutrition', 92); INSERT INTO student_grades (student_id, test, grade) VALUES (1, 'Chemistry', 85); INSERT INTO student_grades (student_id, test, grade) VALUES (2, 'Chemistry', 95); Select * From student_grades, students Where student_grades.student_id = students.id; Select students.first_name, students.last_name, students.email, student_grades.test, student_grades.grade From students Join student_grades On students.id = student_grades.student_id Where grade > 90; CREATE TABLE students ( id INTEGER Identity(1,1) PRIMARY KEY, first_name TEXT, last_name TEXT, email TEXT, phone TEXT, birthdate TEXT ); INSERT INTO students (first_name, last_name, email, phone, birthdate) VALUES ('Peter', 'Rabbit', 'peter@rabbit.com', '555-6666', '2002-06-24'); INSERT INTO students (first_name, last_name, email, phone, birthdate) VALUES ('Alice', 'Wonderland', 'alice@wonderland.com', '555-4444', '2002-07-04'); CREATE TABLE student_grades ( id INTEGER Identity(1,1) PRIMARY KEY, student_id INTEGER, test TEXT, grade INTEGER ); INSERT INTO student_grades (student_id, test, grade) VALUES (1, 'Nutrition', 95); INSERT INTO student_grades (student_id, test, grade) VALUES (2, 'Nutrition', 92); INSERT INTO student_grades (student_id, test, grade) VALUES (1, 'Chemistry', 85); INSERT INTO student_grades (student_id, test, grade) VALUES (2, 'Chemistry', 95); CREATE TABLE student_projects ( id INTEGER Identity(1,1) PRIMARY KEY, student_id INTEGER, title TEXT ); INSERT INTO student_projects (student_id, title) VALUES (1, 'Carrotapault'); Select Students.First_Name, Students.Last_Name, Student_Projects.title From Students Left Outer Join Student_projects On Students.id = student_projects.student_id; Select customers.name, customers.email, orders.item, orders.price From customers Left Outer Join Orders On customers.id = orders.customer_id; Select customers.name, customers.email, SUM(orders.price) as Total From Orders Join Customers On orders.customer_id = customers.id Group by orders.customer_id; CREATE TABLE students ( id INTEGER Identity(1,1) PRIMARY KEY, first_name TEXT, last_name TEXT, email TEXT, phone TEXT, birthdate TEXT, buddy_id INTEGER ); INSERT INTO students VALUES ('Peter', 'Rabbit', 'peter@rabbit.com', '555-6666', '2002-06-24', 2); INSERT INTO students VALUES ('Alice', 'Wonderland', 'alice@wonderland.com', '555-4444', '2002-07-04', 1); INSERT INTO students VALUES ('Aladdin', 'Lampland', 'aladdin@lampland.com', '555-3333', '2001-05-10', 4); INSERT INTO students VALUES ('Simba', 'Kingston', 'simba@kingston.com', '555-1111', '2001-12-24', 3); Select students.first_name, students.last_name, buddies.email From students Join students buddies On students.buddy_id = buddies.id; SELECT movies.title AS Movie_Title, sequel.title AS Sequel_Title FROM movies LEFT OUTER JOIN movies sequel ON movies.sequel_id = sequel.id; CREATE TABLE project_pairs ( id INTEGER Identity(1,1) PRIMARY KEY, project1_id INTEGER, project2_id INTEGER ); INSERT INTO project_pairs (project1_id, project2_id) VALUES(1, 2); INSERT INTO project_pairs (project1_id, project2_id) VALUES(3, 4); CREATE TABLE students ( id INTEGER Identity(1,1) PRIMARY KEY, first_name TEXT, last_name TEXT, email TEXT, phone TEXT, birthdate TEXT ); INSERT INTO students (first_name, last_name, email, phone, birthdate) VALUES ('Peter', 'Rabbit', 'peter@rabbit.com', '555-6666', '2002-06-24'); INSERT INTO students (first_name, last_name, email, phone, birthdate) VALUES ('Alice', 'Wonderland', 'alice@wonderland.com', '555-4444', '2002-07-04'); INSERT INTO students (first_name, last_name, email, phone, birthdate) VALUES ('Aladdin', 'Lampland', 'aladdin@lampland.com', '555-3333', '2001-05-10'); INSERT INTO students (first_name, last_name, email, phone, birthdate) VALUES ('Simba', 'Kingston', 'simba@kingston.com', '555-1111', '2001-12-24'); CREATE TABLE student_projects ( id INTEGER Identity(1,1) PRIMARY KEY, student_id INTEGER, title TEXT ); INSERT INTO student_projects (student_id, title) VALUES (1, 'Carrotapault'); INSERT INTO student_projects (student_id, title) VALUES (2, 'Mad Hattery'); INSERT INTO student_projects (student_id, title) VALUES (3, 'Carpet Physics'); INSERT INTO student_projects (student_id, title) VALUES (4, 'Hyena Habitats'); Select One.Title, Two.title from project_pairs Join student_projects One On project_pairs.project1_id = One.id Join student_projects Two On project_pairs.project2_id = Two.id; Select A.fullname, B.fullname from friends Join persons A On friends.person1_id = A.id Join persons B On friends.person2_id = B.id;
CREATE TABLE Clientes ( id varchar(20), nombre varchar(50), clave varchar(20), direccion varchar(50), email varchar(50), telefono varchar(15), PRIMARY KEY (id) ); CREATE TABLE PCs ( id SERIAL PRIMARY KEY ); CREATE TABLE Empleados ( dni varchar(10), nombre varchar(50), clave varchar(20), direccion varchar(50), email varchar(50), telefono varchar(15), sueldo float CHECK (sueldo >= 0), asistente boolean, reparador boolean, jefe boolean, PRIMARY KEY (dni) ); CREATE TABLE EjemplaresVenta ( pc integer, nombre varchar(20), precio float CHECK (precio >=0), fechaCreacion date NOT NULL, cliente varchar(20) default NULL, empleado varchar(10) default NULL, fechaCompraPc date default NULL, PRIMARY KEY (pc), FOREIGN KEY (pc) REFERENCES PCs (id), FOREIGN KEY (cliente) REFERENCES Clientes(id), FOREIGN KEY (empleado) REFERENCES Empleados(dni) ); CREATE TABLE AReparar ( pc integer, descripcion varchar(200) NOT NULL, cliente varchar(20) NOT NULL, fechaIngreso date NOT NULL, fechaRetirada date default NULL, empleadoIngreso varchar(10) NOT NULL, empleadoRetirada varchar(10) default NULL, PRIMARY KEY (pc), FOREIGN KEY (pc) REFERENCES PCs (id), FOREIGN KEY (cliente) REFERENCES Clientes(id), FOREIGN KEY (empleadoIngreso) REFERENCES Empleados(dni), FOREIGN KEY (empleadoRetirada) REFERENCES Empleados(dni) ); CREATE TABLE Componentes ( nombre varchar(50), marca varchar(20) NOT NULL, precio float CHECK (precio >= 0), descripcion varchar(100), PRIMARY KEY (nombre) ); CREATE TABLE Reparar ( pc integer, empleado varchar(10), componente varchar(50), fecha date, precio float CHECK (precio >= 0), PRIMARY KEY (fecha, empleado, componente, pc), FOREIGN KEY (empleado) REFERENCES Empleados (dni), FOREIGN KEY (componente) REFERENCES Componentes (nombre), FOREIGN KEY (pc) REFERENCES PCs (id) ); CREATE TABLE EjemplaresComponente ( id SERIAL NOT NULL, componente varchar(50) NOT NULL, cliente varchar(20) default NULL, empleado varchar(10) default NULL, fechaTiendaCompraEjemplar date NOT NULL, fechaClienteCompraEjemplar date default NULL, PRIMARY KEY (id, componente), FOREIGN KEY (empleado) REFERENCES Empleados (dni), FOREIGN KEY (cliente) REFERENCES Clientes (id), FOREIGN KEY (componente) REFERENCES Componentes (nombre) ); CREATE TABLE PlacasBase ( componente varchar(50), chipset varchar(20), tamano float, PRIMARY KEY (componente), FOREIGN KEY (componente) REFERENCES Componentes(nombre) ); CREATE TABLE CPUs ( componente varchar(50), sockets varchar(10), cores int, threads int, frecuencia float, tdp float, microarquitectura varchar(50), PRIMARY KEY (componente), FOREIGN KEY (componente) REFERENCES Componentes(nombre) ); CREATE TABLE RAMs ( componente varchar(50), tipoDDR varchar(30), memoria float CHECK ( memoria > 0), frecuencia float CHECK (frecuencia > 0), formato varchar(10), PRIMARY KEY (componente), FOREIGN KEY (componente) REFERENCES Componentes(nombre) ); CREATE TABLE GPUs ( componente varchar(50), nucleos integer CHECK (nucleos > 0), frecuencia float CHECK (frecuencia > 0), procesoFabricacion integer CHECK (procesoFabricacion > 0), PRIMARY KEY (componente), FOREIGN KEY (componente) REFERENCES Componentes(nombre) ); CREATE TABLE DiscosDuros ( componente varchar(50), tipo varchar(10) CHECK (tipo IN ('SSD', 'HDD')), capacidad integer CHECK (capacidad > 0), velocidad float CHECK (velocidad > 0), PRIMARY KEY (componente), FOREIGN KEY (componente) REFERENCES Componentes(nombre) ); CREATE TABLE Alimentacion ( componente varchar(50), potencia float CHECK (potencia > 0), modular boolean, PRIMARY KEY (componente), FOREIGN KEY (componente) REFERENCES Componentes(nombre) ); CREATE TABLE Refrigeracion ( componente varchar(50), tipo varchar(10) CHECK (tipo IN ('CPU', 'GPU', 'Ventilador')), tamano integer CHECK (tamano > 0), PRIMARY KEY (componente), FOREIGN KEY (componente) REFERENCES Componentes(nombre) ); CREATE TABLE Perifericos ( componente varchar(50), tipo varchar(20), PRIMARY KEY (componente), FOREIGN KEY (componente) REFERENCES Componentes(nombre) ); CREATE TABLE Personalizados ( pc integer, nombre varchar(25) NOT NULL, cliente varchar(20) NOT NULL, numVentas integer default 0, placaBase varchar(50) NOT NULL, cpu varchar(50) NOT NULL, gpu varchar(50) NOT NULL, numGPUs integer CHECK (numGPUs >=0 AND numGPUs <5), ram varchar(50) NOT NULL, numRAMs integer CHECK (numRAMs >=0 AND numRAMs <9), discoDuro1 varchar(50) NOT NULL, numDiscoDuro1 integer CHECK (numDiscoDuro1 >=0 AND numDiscoDuro1 < 5), discoDuro2 varchar(50), numDiscoDuro2 integer CHECK (numDiscoDuro2 >=0 AND numDiscoDuro2 < 5), alimentacion varchar(50), refrigeracion1 varchar(50), refrigeracion2 varchar(50), numRefrigeracion2 integer, periferico1 varchar(50), periferico2 varchar(50), periferico3 varchar(50), periferico4 varchar(50), PRIMARY KEY (pc), FOREIGN KEY (pc) REFERENCES PCs(id), FOREIGN KEY (cliente) REFERENCES Clientes(id), FOREIGN KEY (placaBase) REFERENCES PlacasBase(componente), FOREIGN KEY (cpu) REFERENCES CPUs(componente), FOREIGN KEY (gpu) REFERENCES GPUs(componente), FOREIGN KEY (ram) REFERENCES RAMs(componente), FOREIGN KEY (discoDuro1) REFERENCES DiscosDuros(componente), FOREIGN KEY (discoDuro2) REFERENCES DiscosDuros(componente), FOREIGN KEY (alimentacion)REFERENCES Alimentacion(componente), FOREIGN KEY (refrigeracion1) REFERENCES Refrigeracion(componente), FOREIGN KEY (refrigeracion2) REFERENCES Refrigeracion(componente), FOREIGN KEY (periferico1) REFERENCES Perifericos(componente), FOREIGN KEY (periferico2) REFERENCES Perifericos(componente), FOREIGN KEY (periferico3) REFERENCES Perifericos(componente), FOREIGN KEY (periferico4) REFERENCES Perifericos(componente), UNIQUE (cliente,nombre) );
CREATE TABLE IF NOT EXISTS article(id SERIAL PRIMARY KEY, title VARCHAR(1024) NOT NULL);
-- phpMyAdmin SQL Dump -- version 4.0.9 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: Oct 29, 2014 at 09:17 AM -- Server version: 5.6.14 -- PHP Version: 5.5.6 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; 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 utf8 */; -- -- Database: `lr` -- -- -------------------------------------------------------- -- -- Table structure for table `albums` -- CREATE TABLE IF NOT EXISTS `albums` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(50) NOT NULL, `cover` text NOT NULL, `description` text NOT NULL, `createdat` datetime NOT NULL, `updatedat` datetime NOT NULL, `userid` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=9 ; -- -- Dumping data for table `albums` -- INSERT INTO `albums` (`id`, `title`, `cover`, `description`, `createdat`, `updatedat`, `userid`) VALUES (7, 'sumit', '', 'all my pics', '2014-06-11 02:26:02', '2014-06-11 02:26:02', 9), (8, 'deep', '', 'all of her pictures', '2014-06-11 03:25:42', '2014-06-11 03:25:42', 9); -- -------------------------------------------------------- -- -- Table structure for table `groups` -- CREATE TABLE IF NOT EXISTS `groups` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(20) NOT NULL, `permissions` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ; -- -- Dumping data for table `groups` -- INSERT INTO `groups` (`id`, `name`, `permissions`) VALUES (1, 'standard_user', ''), (2, 'Administrator', '{"admin": 1}'), (3, 'Moderator', '{"moderator" : 1}'); -- -------------------------------------------------------- -- -- Table structure for table `images` -- CREATE TABLE IF NOT EXISTS `images` ( `id` int(11) NOT NULL AUTO_INCREMENT, `picture` text NOT NULL, `alt` varchar(25) NOT NULL, `title` varchar(50) NOT NULL, `description` text NOT NULL, `createdat` datetime NOT NULL, `updatedat` datetime NOT NULL, `userid` int(11) NOT NULL, `albumid` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=94 ; -- -- Dumping data for table `images` -- INSERT INTO `images` (`id`, `picture`, `alt`, `title`, `description`, `createdat`, `updatedat`, `userid`, `albumid`) VALUES (75, '5397a6bb602101.33969662.bmp', 'my', 'cake baked', 'my birthday cake', '2014-06-11 02:45:47', '2014-06-11 03:40:58', 9, 7), (76, '5397a765d2a189.17874127.bmp', '', '', '', '2014-06-11 02:48:37', '2014-06-11 02:48:37', 9, 7), (77, '5397a788273e80.61286074.jpg', '', '', '', '2014-06-11 02:49:12', '2014-06-11 02:49:12', 9, 7), (78, '5397b137f1f9c9.09740687.jpg', 'none', 'noe at all', 'none at all', '2014-06-11 03:30:31', '2014-06-12 10:37:38', 9, 8), (79, '5399632c4f7245.03806912.bmp', '', '', '', '2014-06-12 10:22:04', '2014-06-12 10:22:04', 9, 7), (80, '5399632c6953f9.80151162.bmp', '', '', '', '2014-06-12 10:22:04', '2014-06-12 10:22:04', 9, 7), (81, '539964940b52d6.49799129.bmp', 'none', 'key pic', 'key pics', '2014-06-12 10:28:04', '2014-06-12 10:31:38', 9, 7), (82, '539964c19ead50.15380185.bmp', '', '', '', '2014-06-12 10:28:49', '2014-06-12 10:28:49', 9, 7), (83, '5399651c07a478.05208382.bmp', '', '', '', '2014-06-12 10:30:20', '2014-06-12 10:30:20', 9, 7), (84, '539965a7303585.35148943.bmp', '', '', '', '2014-06-12 10:32:39', '2014-06-12 10:32:39', 9, 8), (85, '539965a7332355.28176800.bmp', '', '', '', '2014-06-12 10:32:39', '2014-06-12 10:32:39', 9, 8), (86, '539965b00c21d4.49625422.bmp', '', '', '', '2014-06-12 10:32:48', '2014-06-12 10:32:48', 9, 8), (87, '539965b012b909.10728436.bmp', '', '', '', '2014-06-12 10:32:48', '2014-06-12 10:32:48', 9, 8), (88, '539965b0137478.82477290.bmp', '', '', '', '2014-06-12 10:32:48', '2014-06-12 10:32:48', 9, 8), (89, '539965b01623d1.69074813.bmp', 'none', 'earth pic', 'none at all', '2014-06-12 10:32:48', '2014-06-12 10:38:06', 9, 8), (90, '539965b016df41.16725244.bmp', '', '', '', '2014-06-12 10:32:48', '2014-06-12 10:32:48', 9, 8), (91, '539965b018d337.09200265.bmp', '', '', '', '2014-06-12 10:32:48', '2014-06-12 10:32:48', 9, 8), (92, '539965b0198ea9.05899602.bmp', 'nones s', 'cap pic', 'all the things u need', '2014-06-12 10:32:48', '2014-06-12 10:34:51', 9, 8), (93, '539965b01a8897.08707060.bmp', '', '', '', '2014-06-12 10:32:48', '2014-06-12 10:32:48', 9, 8); -- -------------------------------------------------------- -- -- Table structure for table `options` -- CREATE TABLE IF NOT EXISTS `options` ( `id` int(11) NOT NULL AUTO_INCREMENT, `options` varchar(50) NOT NULL, `can_show` tinyint(1) NOT NULL, `que_id` int(11) NOT NULL, `created_at` datetime NOT NULL, PRIMARY KEY (`id`), KEY `que_id` (`que_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=9 ; -- -- Dumping data for table `options` -- INSERT INTO `options` (`id`, `options`, `can_show`, `que_id`, `created_at`) VALUES (5, 'INC', 1, 2, '2014-10-16 00:00:00'), (6, 'BJP', 1, 2, '2014-10-16 00:00:00'), (7, 'GOOD', 1, 3, '2014-10-17 00:00:00'), (8, 'Bad', 1, 3, '2014-10-17 00:00:00'); -- -------------------------------------------------------- -- -- Table structure for table `question` -- CREATE TABLE IF NOT EXISTS `question` ( `id` int(11) NOT NULL AUTO_INCREMENT, `quest` text NOT NULL, `start_date` datetime NOT NULL, `end_date` datetime NOT NULL, `can_show` tinyint(1) NOT NULL, `is_deleted` tinyint(1) NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ; -- -- Dumping data for table `question` -- INSERT INTO `question` (`id`, `quest`, `start_date`, `end_date`, `can_show`, `is_deleted`, `created_at`, `updated_at`) VALUES (2, 'which party will you vote this time ??', '2014-10-15 00:00:00', '2014-10-17 00:00:00', 1, 0, '2014-10-16 00:00:00', '0000-00-00 00:00:00'), (3, 'Whats your opinion ??', '2014-10-15 00:00:00', '2014-10-18 00:00:00', 1, 0, '2014-10-16 00:00:00', '0000-00-00 00:00:00'); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE IF NOT EXISTS `users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(40) NOT NULL, `password` varchar(64) NOT NULL, `salt` varchar(32) NOT NULL, `name` varchar(50) NOT NULL, `can_login` tinyint(1) NOT NULL, `updated_at` datetime NOT NULL, `created_at` datetime NOT NULL, `group` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=15 ; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `username`, `password`, `salt`, `name`, `can_login`, `updated_at`, `created_at`, `group`) VALUES (12, 'sumit', '7670e716cfef815c5c3bd2288a6988ed2c009f54', '`x±ÙäÝ-Î<šNßÚÖïl¾K¸Š‡vÞûÜmâ', 'Sumit Singh', 1, '0000-00-00 00:00:00', '2014-10-14 09:22:43', 3), (13, 'monu', '2946007dfacaf087f5776eb6a3ddaea35ed0d54e', 'ûLÝþëÆ C ƒl°u°Vòÿ±˜ð¾ŽÙ', 'Monu Kumar', 0, '2014-10-21 03:33:01', '2014-10-21 03:33:01', 1), (14, 'shivi', '1778178dba6ed8ca9f365ecdb89d9ff7845dbb07', ' ÚÀçP¦YŸ–Íč‚¿o<^?ÕÑòߟâM&¦‰ag', 'Shivi Singh', 1, '2014-10-21 03:34:09', '2014-10-21 03:34:09', 1); -- -------------------------------------------------------- -- -- Table structure for table `users_session` -- CREATE TABLE IF NOT EXISTS `users_session` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `hash` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=12 ; -- -- Dumping data for table `users_session` -- INSERT INTO `users_session` (`id`, `user_id`, `hash`) VALUES (5, 5, '1f47f5b274e28498a2c5a9bc353060912c046404'), (6, 6, 'ae82bd5a4658f823ba864ab3ad341d4d472496ca'), (7, 9, '228670928dd66f45d708f49a4d553a0279d849ee'), (8, 10, '376bf4a6c3391143d0298d9cb62c3088776642ef'), (9, 12, 'dbdc5a9b2d9b883fb2e88006f4bf9952c1078293'), (10, 11, 'd63368f7efb22c891261ea4a0b76bae103ecfd95'), (11, 14, '152f4f07793693898ff561f70f5617ffc624547a'); -- -------------------------------------------------------- -- -- Table structure for table `users_to_ques` -- CREATE TABLE IF NOT EXISTS `users_to_ques` ( `id` int(11) NOT NULL AUTO_INCREMENT, `question_id` int(11) NOT NULL, `users_id` int(11) NOT NULL, `option_id` int(11) NOT NULL, `vote_cast_date` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ; -- -- Dumping data for table `users_to_ques` -- INSERT INTO `users_to_ques` (`id`, `question_id`, `users_id`, `option_id`, `vote_cast_date`) VALUES (1, 2, 11, 5, '2014-10-17 10:10:00'), (2, 3, 11, 7, '2014-10-17 10:10:00'), (3, 2, 12, 5, '2014-10-20 04:10:00'), (4, 3, 12, 7, '2014-10-20 04:10:00'); -- -- Constraints for dumped tables -- -- -- Constraints for table `options` -- ALTER TABLE `options` ADD CONSTRAINT `options_ibfk_1` FOREIGN KEY (`que_id`) REFERENCES `question` (`id`); /*!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 */;
select * from Timestamp_test_from;
--Populate table with some schedule data INSERT INTO schedule(user_name, day, start_time, end_time) VALUES ('Elly', '2', '12:00', '3:00'); INSERT INTO schedule(user_name, day, start_time, end_time) VALUES ('Rick', '3', '10:30', '17:00'); INSERT INTO schedule(user_name, day, start_time, end_time) VALUES ('Morty', '6', '9:00', '16:30');
-- phpMyAdmin SQL Dump -- version 4.9.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Feb 18, 2020 at 12:46 PM -- Server version: 10.4.8-MariaDB -- PHP Version: 7.3.11 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: `noti` -- -- -------------------------------------------------------- -- -- Table structure for table `comments` -- CREATE TABLE `comments` ( `id` int(11) NOT NULL, `subject` varchar(255) NOT NULL, `msg` text NOT NULL, `status` smallint(1) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `comments` -- INSERT INTO `comments` (`id`, `subject`, `msg`, `status`) VALUES (6, 'one', '1', 1), (7, 'test', 'test', 1), (8, 'ok', 'ok', 1); -- -- Indexes for dumped tables -- -- -- Indexes for table `comments` -- ALTER TABLE `comments` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `comments` -- ALTER TABLE `comments` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; 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 OR REPLACE PUBLIC SYNONYM veh_endor_pkg FOR orient.veh_endor_pkg;
-- MySQL dump 10.13 Distrib 5.7.17, for Win64 (x86_64) -- -- Host: localhost Database: gameware -- ------------------------------------------------------ -- Server version 5.7.21 /*!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 `aluguel` -- DROP TABLE IF EXISTS `aluguel`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `aluguel` ( `id_aluguel` int(5) NOT NULL AUTO_INCREMENT, `id_cliente` int(5) NOT NULL, `id_funcionario` int(5) NOT NULL, `id_Jogo` int(5) NOT NULL, `data_aluguel` datetime DEFAULT CURRENT_TIMESTAMP, `data_retorno` datetime DEFAULT NULL, `devolvido` tinyint(1) DEFAULT '0', PRIMARY KEY (`id_aluguel`), KEY `id_cliente` (`id_cliente`), KEY `id_funcionario` (`id_funcionario`), KEY `id_Jogo` (`id_Jogo`) ) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `aluguel` -- LOCK TABLES `aluguel` WRITE; /*!40000 ALTER TABLE `aluguel` DISABLE KEYS */; INSERT INTO `aluguel` VALUES (1,4,2,2,'2018-11-17 09:14:01','2018-11-17 09:17:13',1),(2,3,3,1,'2018-11-17 09:17:32','2018-11-17 09:17:37',1),(3,3,4,1,'2018-11-17 10:18:42','2018-11-17 10:32:47',1),(4,3,3,1,'2018-11-17 10:20:51','2018-11-17 10:32:44',1),(5,4,3,2,'2018-11-17 10:33:53','2018-11-17 10:36:54',1),(6,3,5,3,'2018-11-17 10:39:00','2018-11-17 10:39:05',1),(7,4,4,1,'2018-11-17 10:41:45','2018-11-17 10:41:50',1),(8,3,4,4,'2018-11-17 10:49:29','2018-11-17 10:49:35',1),(9,3,2,3,'2018-11-17 10:51:12','2018-11-17 10:51:17',1); /*!40000 ALTER TABLE `aluguel` ENABLE KEYS */; UNLOCK TABLES; /*!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 2018-11-17 10:57:08
ALTER TABLE `billing_contract`.`product_a` ADD COLUMN `billing_frequency` INT(2);
EXECUTE PROCEDURE dba.sui_mensajes ( 800573, 3, "Para inscribirte debes tenes los datos censales completos (foto del DNI, email, y celular)", "Para inscribirte debes tenes los datos censales completos (foto del DNI, email y celular)", 1, 1 ); INSERT INTO par_implem_control (stored_procedure, parametros) VALUES ('ctr_econ_dni_foto', 's,s,s,s'); INSERT INTO par_controles (control, stored_procedure, desc_abreviada, descripcion) VALUES (800573, 'ctr_econ_dni_foto', 'Controla foto del DNI, meail y celular', 'Controla foto del DNI, meail y celular'); INSERT INTO par_cont_x_punto (punto_de_control, control) VALUES (8, 800573); Execute Procedure sp_ConfCont_Cont (8, 800573); { DELETE FROM sga_conf_controles WHERE control = "800573"; DELETE FROM par_cont_x_oper WHERE control = "800573"; DELETE FROM par_cont_x_evento WHERE control = "800573"; DELETE FROM par_cont_x_punto WHERE control = "800573"; DELETE FROM par_controles WHERE control = "800573"; DELETE FROM par_implem_control WHERE stored_procedure = "ctr_econ_dni_foto"; }
# --- !Ups ALTER TABLE account ADD COLUMN date_last_monthly_credit timestamp; # --- !Downs ALTER TABLE account DROP COLUMN date_last_monthly_credit;
CREATE OR REPLACE FORCE VIEW "AEROFRANCE_LIAO"."VIEW_COMMANDEGLOBALE" ("COMGLOBNUM", "FOURNUM", "COMGLOBDATE", "COMGLOBETAT") AS SELECT "COMGLOBNUM","FOURNUM","COMGLOBDATE","COMGLOBETAT" FROM CHEF_GUO.COMMANDEGLOBALE WHERE FOURNUM = 4; CREATE OR REPLACE TRIGGER "AEROFRANCE_LIAO"."PREPARATION_COMGLOB" INSTEAD OF UPDATE ON VIEW_COMMANDEGLOBALE REFERENCING OLD AS A NEW AS N FOR EACH ROW BEGIN if :n.comglobetat = 'en cours de préparation' then ETAT_PREPARATION(:n.comglobnum); end if; END; / ALTER TRIGGER "AEROFRANCE_LIAO"."PREPARATION_COMGLOB" ENABLE;
-- FWM TEAM -- -- History: -- 10-09-14: added location table -- 03-10-14: added technician and client tables -- 19-11-14: tidy up of database -- 04-12-14: ON DELETE CASCADE added to foreign keys DROP SCHEMA IF EXISTS `baiken_fwm_1`; SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; /*!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 */; -- Database: `baiken_fwm_1` CREATE DATABASE IF NOT EXISTS `baiken_fwm_1` DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci; USE `baiken_fwm_1`; -- Table structure for table `project_manager` CREATE TABLE IF NOT EXISTS `project_manager` ( `pm_id` int(11) NOT NULL AUTO_INCREMENT, `pm_comp_name` varchar(50) COLLATE utf8_unicode_ci NOT NULL, `pm_name` varchar(50) COLLATE utf8_unicode_ci NOT NULL, `pm_address` varchar(500) COLLATE utf8_unicode_ci DEFAULT NULL, `pm_phone` varchar(12) COLLATE utf8_unicode_ci NOT NULL, `pm_email` varchar(50) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`pm_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE = utf8_unicode_ci AUTO_INCREMENT=2; -- Table structure for table `project` CREATE TABLE IF NOT EXISTS `project` ( `project_id` int(11) NOT NULL AUTO_INCREMENT, `project_name` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `project_number` varchar(50) COLLATE utf8_unicode_ci NOT NULL, `project_desc` varchar(250) COLLATE utf8_unicode_ci DEFAULT NULL, `project_active` tinyint(1) DEFAULT NULL, `project_visible` tinyint(1) DEFAULT NULL, `pm_id` int(11) NOT NULL COMMENT 'Foreign key => project_manager', `project_is_default` TINYINT(1) DEFAULT 0 NULL, PRIMARY KEY (`project_id`), CONSTRAINT `fk_project_pm` FOREIGN KEY (`pm_id`) REFERENCES `project_manager` (`pm_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE = utf8_unicode_ci AUTO_INCREMENT=1; -- Table structure for table `technician` CREATE TABLE IF NOT EXISTS `technician` ( `technician_id` INT(11) NOT NULL AUTO_INCREMENT, `technician_name` VARCHAR(50) COLLATE utf8_unicode_ci NULL, `technician_phone` VARCHAR(12) COLLATE utf8_unicode_ci NULL, `technician_email` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, `technician_document` varchar(500) COLLATE utf8_unicode_ci NOT NULL, `technician_active` smallint(6) COLLATE utf8_unicode_ci NOT NULL DEFAULT 1, `pm_id` int(11) NOT NULL COMMENT 'Foreign key => project_manager', PRIMARY KEY (`technician_id`), CONSTRAINT `fk_tech_pm` FOREIGN KEY (`pm_id`) REFERENCES `project_manager` (`pm_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE = utf8_unicode_ci AUTO_INCREMENT=1; -- Table structure for table `client` CREATE TABLE IF NOT EXISTS `client` ( `client_id` INT(11) NOT NULL AUTO_INCREMENT, `project_id` int(11) NOT NULL COMMENT 'Foreign key => project', `client_company_name` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, `client_address` varchar(500) COLLATE utf8_unicode_ci DEFAULT NULL, `client_contact_name` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, `client_contact_phone` varchar(12) COLLATE utf8_unicode_ci DEFAULT NULL, `client_contact_email` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`client_id`), CONSTRAINT `fk_client_project` FOREIGN KEY (`project_id`) REFERENCES `project` (`project_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE = utf8_unicode_ci AUTO_INCREMENT=1; -- Table structure for table `facility` CREATE TABLE IF NOT EXISTS `facility` ( `facility_id` int(11) NOT NULL AUTO_INCREMENT, `project_id` int(11) NOT NULL COMMENT 'Foreign key => project', `facility_name` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `facility_address` varchar(250) COLLATE utf8_unicode_ci NOT NULL, `facility_lat` FLOAT(10 , 6 ) COLLATE utf8_unicode_ci NOT NULL, `facility_long` FLOAT(10 , 6 ) COLLATE utf8_unicode_ci NOT NULL, `facility_contact_name` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, `facility_contact_phone` varchar(12) COLLATE utf8_unicode_ci NOT NULL, `facility_contact_email` varchar(50) COLLATE utf8_unicode_ci NOT NULL, `facility_id_num` varchar(25) COLLATE utf8_unicode_ci DEFAULT NULL, `facility_sector` varchar(2) COLLATE utf8_unicode_ci DEFAULT NULL, `facility_sic` varchar(4) COLLATE utf8_unicode_ci DEFAULT NULL, `boundary` varchar(1000) COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`facility_id`), CONSTRAINT `fk_facility_project` FOREIGN KEY (`project_id`) REFERENCES `project` (`project_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE = utf8_unicode_ci AUTO_INCREMENT=1; -- Table structure for table `location` CREATE TABLE IF NOT EXISTS `location` ( `location_id` INT(11) COLLATE utf8_unicode_ci NOT NULL AUTO_INCREMENT, `location_name` VARCHAR(50) COLLATE utf8_unicode_ci NULL, `location_desc` VARCHAR(250) COLLATE utf8_unicode_ci NULL, `location_address` VARCHAR(500) COLLATE utf8_unicode_ci NULL, `location_lat` FLOAT(10 , 6 ) COLLATE utf8_unicode_ci NULL, `location_long` FLOAT(10 , 6 ) COLLATE utf8_unicode_ci NULL, `location_active` tinyint(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT 1, `location_visible` tinyint(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT 1, `location_category` VARCHAR(50) COLLATE utf8_unicode_ci NULL, `project_id` INT(11) NOT NULL COMMENT 'Foreign key => project', PRIMARY KEY (`location_id`), CONSTRAINT `fk_loc_project` FOREIGN KEY (`project_id`) REFERENCES `project` (`project_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE = utf8_unicode_ci AUTO_INCREMENT=1; -- Table structure for table `task` CREATE TABLE IF NOT EXISTS `task` ( `task_id` int(11) NOT NULL AUTO_INCREMENT, `project_id` int(11) NOT NULL COMMENT 'Foreign key => project', `task_name` varchar(50) COLLATE utf8_unicode_ci NOT NULL, `task_deadline` varchar(50) NOT NULL COMMENT 'Completion date to follow', `task_start_date` varchar(50) NULL COMMENT 'Date when the task started', `task_instructions` varchar(500) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'Instructions related to the task', `task_trigger_cal` TINYINT(1) DEFAULT 0 NULL COMMENT 'Boolean value to say that we use a calendar trigger', `task_trigger_cal_value` VARCHAR(50) NULL COMMENT 'Period value of calendar trigger: Daily, Weekly, Bi-weekly, Monthly, Bi-monthly, Quaterly, Semi-annual, Annual', `task_trigger_pm` TINYINT(1) DEFAULT 0 NULL COMMENT 'Boolean value to say that we use a project manager trigger, e.g. when the PM starts himself the task', `task_trigger_ext` TINYINT(1) DEFAULT 0 NULL COMMENT 'Boolean value to say that we use a external trigger', `task_active` tinyint(1) NOT NULL DEFAULT '0', `task_activated` tinyint(1) NOT NULL DEFAULT '0', `task_req_form` TINYINT(1) DEFAULT 0 NULL COMMENT 'Boolean value to say that we use forms', `task_req_field_analyte` TINYINT(1) DEFAULT 0 NULL COMMENT 'Boolean value to say that we collect field data', `task_req_lab_analyte` TINYINT(1) DEFAULT 0 NULL COMMENT 'Boolean value to say that we perform lab analysis', `task_req_service` TINYINT(1) DEFAULT 0 NULL COMMENT 'Boolean value to say that we use third party services', `task_type` VARCHAR(6) NOT NULL DEFAULT 'parent' COMMENT 'Possible values: parent, child', `task_reference_id` int(11) NOT NULL COMMENT 'The id of the parent task when the type is child', PRIMARY KEY (`task_id`), CONSTRAINT `fk_task_project` FOREIGN KEY (`project_id`) REFERENCES `project` (`project_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE = utf8_unicode_ci AUTO_INCREMENT=1; -- Table structure for table `service` CREATE TABLE IF NOT EXISTS `service` ( `service_id` int(11) NOT NULL AUTO_INCREMENT, `pm_id` int(11) NOT NULL COMMENT 'Foreign key => project_manager', `service_type` varchar(30) COLLATE utf8_unicode_ci NOT NULL COMMENT 'contractor or equipment', `service_name` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, `service_url` varchar(50) COLLATE utf8_unicode_ci NOT NULL, `service_address` varchar(500) COLLATE utf8_unicode_ci DEFAULT NULL, `service_contact_name` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, `service_contact_phone` varchar(25) COLLATE utf8_unicode_ci DEFAULT NULL, `service_contact_email` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, `service_active` tinyint(1) NOT NULL, PRIMARY KEY (`service_id`), CONSTRAINT `fk_service_pm` FOREIGN KEY (`pm_id`) REFERENCES `project_manager` (`pm_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE = utf8_unicode_ci AUTO_INCREMENT=1; -- Table structure for table `field_analyte` CREATE TABLE IF NOT EXISTS `field_analyte` ( `field_analyte_id` int(11) NOT NULL AUTO_INCREMENT, `field_analyte_name_unit` varchar(40) COLLATE utf8_unicode_ci NOT NULL, `pm_id` int(11) NOT NULL COMMENT 'Foreign key => project_manager', `analyte_abbrev` VARCHAR( 13 ) NULL DEFAULT NULL, PRIMARY KEY (`field_analyte_id`), UNIQUE INDEX `un_fa` (`field_analyte_name_unit` ASC), CONSTRAINT `fk_field_analyte_pm` FOREIGN KEY (`pm_id`) REFERENCES `project_manager` (`pm_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE = utf8_unicode_ci AUTO_INCREMENT=1; -- Table structure for table `field_analyte_location` CREATE TABLE IF NOT EXISTS `field_analyte_location` ( `field_analyte_location_id` INT(11) NOT NULL AUTO_INCREMENT, `task_id` int(11) NOT NULL, `field_analyte_id` int(11) NOT NULL, `location_id` int(11) NOT NULL, `field_analyte_location_result` VARCHAR(100) NULL, `field_analyte_location_date` VARCHAR(50) NULL, PRIMARY KEY (`field_analyte_location_id`), CONSTRAINT `fk_fsm_task` FOREIGN KEY (`task_id`) REFERENCES `task` (`task_id`) ON DELETE CASCADE, CONSTRAINT `fk_fsm_field_analyte` FOREIGN KEY (`field_analyte_id`) REFERENCES `field_analyte` (`field_analyte_id`) ON DELETE CASCADE, CONSTRAINT `fk_fsm_location` FOREIGN KEY (`location_id`) REFERENCES `location` (`location_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE = utf8_unicode_ci; -- Table structure for table `lab_analyte` CREATE TABLE IF NOT EXISTS `lab_analyte` ( `lab_analyte_id` int(11) NOT NULL AUTO_INCREMENT, `lab_analyte_name` varchar(50) COLLATE utf8_unicode_ci NOT NULL, `pm_id` int(11) NOT NULL COMMENT 'Foreign key => project_manager', `analyte_abbrev` VARCHAR( 13 ) NULL DEFAULT NULL, PRIMARY KEY (`lab_analyte_id`), UNIQUE INDEX `un_la` (`lab_analyte_name` ASC), CONSTRAINT `fk_lab_analyte_pm` FOREIGN KEY (`pm_id`) REFERENCES `project_manager` (`pm_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE = utf8_unicode_ci AUTO_INCREMENT=1; -- Table structure for table `lab_sample_matrix` CREATE TABLE IF NOT EXISTS `lab_sample_matrix` ( `task_id` int(11) NOT NULL, `lab_analyte_id` int(11) NOT NULL, `location_id` int(11) NOT NULL, CONSTRAINT `fk_lsm_task` FOREIGN KEY (`task_id`) REFERENCES `task` (`task_id`) ON DELETE CASCADE, CONSTRAINT `fk_lsm_lab_analyte` FOREIGN KEY (`lab_analyte_id`) REFERENCES `lab_analyte` (`lab_analyte_id`) ON DELETE CASCADE, CONSTRAINT `fk_lsm_location` FOREIGN KEY (`location_id`) REFERENCES `location` (`location_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE = utf8_unicode_ci AUTO_INCREMENT=1; -- Table structure for table `task_coc_info` CREATE TABLE IF NOT EXISTS `task_coc_info` ( `task_coc_id` int(11) NOT NULL AUTO_INCREMENT, `task_id` int(11) NOT NULL, `service_id` int(11) NULL COMMENT 'Lab ID number', `po_number` varchar(25) COLLATE utf8_unicode_ci NOT NULL, `lab_instructions` varchar(1000) COLLATE utf8_unicode_ci NOT NULL, `lab_sample_type` varchar(15) COLLATE utf8_unicode_ci NOT NULL, `lab_sample_tat` varchar(15) COLLATE utf8_unicode_ci NOT NULL, `project_number` varchar(50) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Is project.project_number by DEFAULT but deverges from it if the PM wants to change it', `results_to_name` varchar(25) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Is pm.pm_name by DEFAULT but can changed', `results_to_company` varchar(25) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Is pm.pm_comp_name by DEFAULT but can changed', `results_to_address` varchar(50) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Is pm.pm_address by DEFAULT but can changed', `results_to_phone` varchar(25) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Is pm.pm_phone by DEFAULT but can changed', `results_to_email` varchar(35) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Is pm.pm_email by DEFAULT but can changed', PRIMARY KEY (`task_coc_id`), CONSTRAINT `fk_tci_task` FOREIGN KEY (`task_id`) REFERENCES `task` (`task_id`) ON DELETE CASCADE -- CONSTRAINT `fk_tci_service` FOREIGN KEY (`service_id`) -- REFERENCES `service` (`service_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE = utf8_unicode_ci AUTO_INCREMENT=1; -- Table structure for table `task_field_analyte CREATE TABLE IF NOT EXISTS `task_field_analyte` ( `task_id` int(11) NOT NULL, `field_analyte_id` int(11) NOT NULL, CONSTRAINT `fk_tfa_task` FOREIGN KEY (`task_id`) REFERENCES `task` (`task_id`) ON DELETE CASCADE, CONSTRAINT `fk_tfa_field_analyte` FOREIGN KEY (`field_analyte_id`) REFERENCES `field_analyte` (`field_analyte_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE = utf8_unicode_ci; -- Table structure for table `task_field_data_location CREATE TABLE IF NOT EXISTS `task_field_data_location` ( `task_id` int(11) NOT NULL, `location_id` int(11) NOT NULL, CONSTRAINT `fk_tfdl_task` FOREIGN KEY (`task_id`) REFERENCES `task` (`task_id`) ON DELETE CASCADE, CONSTRAINT `fk_tfdl_location` FOREIGN KEY (`location_id`) REFERENCES `location` (`location_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE = utf8_unicode_ci; -- Table structure for table `task_lab_analyte` CREATE TABLE IF NOT EXISTS `task_lab_analyte` ( `task_id` int(11) NOT NULL, `lab_analyte_id` int(11) NOT NULL, CONSTRAINT `fk_tla_task` FOREIGN KEY (`task_id`) REFERENCES `task` (`task_id`) ON DELETE CASCADE, CONSTRAINT `fk_tla_lab_analyte` FOREIGN KEY (`lab_analyte_id`) REFERENCES `lab_analyte` (`lab_analyte_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE = utf8_unicode_ci; -- Table structure for table `task_lab_data_location` CREATE TABLE IF NOT EXISTS `task_lab_data_location` ( `task_id` int(11) NOT NULL, `location_id` int(11) NOT NULL, CONSTRAINT `fk_tldl_task` FOREIGN KEY (`task_id`) REFERENCES `task` (`task_id`) ON DELETE CASCADE, CONSTRAINT `fk_tldl_location` FOREIGN KEY (`location_id`) REFERENCES `location` (`location_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE = utf8_unicode_ci; -- Table structure for table `task_location CREATE TABLE IF NOT EXISTS `task_location` ( `task_location_id` INT(11) NOT NULL AUTO_INCREMENT, `task_id` int(11) NOT NULL, `location_id` int(11) NOT NULL, `task_location_status` TINYINT(1) DEFAULT 0 NOT NULL COMMENT '0 = not started; 1 = in process; 2 = finished', CONSTRAINT `fk_tl_task` FOREIGN KEY (`task_id`) REFERENCES `task` (`task_id`) ON DELETE CASCADE, CONSTRAINT `fk_tl_location` FOREIGN KEY (`location_id`) REFERENCES `location` (`location_id`) ON DELETE CASCADE, UNIQUE INDEX `un_t_l` (`task_id` ASC, `location_id` ASC), PRIMARY KEY (`task_location_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE = utf8_unicode_ci; -- Table structure for table `task_service` CREATE TABLE IF NOT EXISTS `task_service` ( `task_id` int(11) NOT NULL, `service_id` int(11) NOT NULL, CONSTRAINT `fk_ts_task` FOREIGN KEY (`task_id`) REFERENCES `task` (`task_id`) ON DELETE CASCADE, CONSTRAINT `fk_ts_service` FOREIGN KEY (`service_id`) REFERENCES `service` (`service_id`) ON DELETE CASCADE, UNIQUE INDEX `un_t_s` (`task_id` ASC, `service_id` ASC) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE = utf8_unicode_ci; -- Table structure for table `task_technician` CREATE TABLE IF NOT EXISTS `task_technician` ( `task_id` int(11) NOT NULL, `technician_id` int(11) NOT NULL, `is_lead_tech` tinyint(1) DEFAULT 0, CONSTRAINT `fk_tt_task` FOREIGN KEY (`task_id`) REFERENCES `task` (`task_id`) ON DELETE CASCADE, CONSTRAINT `fk_tt_technician` FOREIGN KEY (`technician_id`) REFERENCES `technician` (`technician_id`) ON DELETE CASCADE, UNIQUE INDEX `un_t_r` (`task_id` ASC, `technician_id` ASC) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE = utf8_unicode_ci; -- Table structure for table `project_field_analyte` CREATE TABLE IF NOT EXISTS `project_field_analyte` ( `project_id` int(11) NOT NULL, `field_analyte_id` int(11) NOT NULL, CONSTRAINT `fk_pfa_project` FOREIGN KEY (`project_id`) REFERENCES `project` (`project_id`) ON DELETE CASCADE, CONSTRAINT `fk_pfa_field_analyte` FOREIGN KEY (`field_analyte_id`) REFERENCES `field_analyte` (`field_analyte_id`) ON DELETE CASCADE, UNIQUE INDEX `un_pfa_p_fa` (`project_id` ASC, `field_analyte_id` ASC) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE = utf8_unicode_ci; -- Table structure for table `project_lab_analyte` CREATE TABLE IF NOT EXISTS `project_lab_analyte` ( `project_id` int(11) NOT NULL, `lab_analyte_id` int(11) NOT NULL, CONSTRAINT `fk_pla_project` FOREIGN KEY (`project_id`) REFERENCES `project` (`project_id`) ON DELETE CASCADE, CONSTRAINT `fk_pla_field_analyte` FOREIGN KEY (`lab_analyte_id`) REFERENCES `lab_analyte` (`lab_analyte_id`) ON DELETE CASCADE, UNIQUE INDEX `un_pla_l_la` (`project_id` ASC, `lab_analyte_id` ASC) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE = utf8_unicode_ci; -- Table structure for table `common_lab_analyte` CREATE TABLE IF NOT EXISTS `common_lab_analyte` ( `common_lab_analyte_id` int(11) NOT NULL AUTO_INCREMENT, `common_lab_analyte_category_name` varchar(25) COLLATE utf8_unicode_ci NOT NULL, `common_lab_analyte_name` varchar(50) COLLATE utf8_unicode_ci NOT NULL, UNIQUE INDEX `un_cla` (`common_lab_analyte_name` ASC), PRIMARY KEY (`common_lab_analyte_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE = utf8_unicode_ci AUTO_INCREMENT=1; -- Table structure for table `common_field_analyte` CREATE TABLE IF NOT EXISTS `common_field_analyte` ( `common_field_analyte_id` int(11) NOT NULL AUTO_INCREMENT, `common_field_analyte_name` varchar(50) COLLATE utf8_unicode_ci NOT NULL, UNIQUE INDEX `un_cfa` (`common_field_analyte_name` ASC), PRIMARY KEY (`common_field_analyte_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE = utf8_unicode_ci AUTO_INCREMENT=1; -- Table structure for table `document` CREATE TABLE IF NOT EXISTS `document` ( `document_id` int(11) NOT NULL AUTO_INCREMENT, `document_content_type` varchar(50) NOT NULL COMMENT 'Store the content type of the document', `document_category` varchar(50) NOT NULL COMMENT 'Is the name of the table/class for which we want a document. Possible values(13-01-14): location, technician', `document_value` varchar(100) NOT NULL COMMENT 'A unique constraint prevent adding the same document as a given type', `document_size` int(11) NOT NULL COMMENT 'File size in Kb', `document_title` varchar(250) NULL DEFAULT 'Caption goes here' COMMENT 'This is the value for a document that is displayed in the HTML as a caption', PRIMARY KEY (`document_id`), UNIQUE INDEX `un_doc_cat_val` (`document_id` ASC, `document_category` ASC, `document_value` ASC) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- Table structure for table `log` CREATE TABLE IF NOT EXISTS `log` ( `log_id` int(11) NOT NULL AUTO_INCREMENT, `log_request_id` varchar(50) NOT NULL, `log_start` varchar(20) NOT NULL, `log_end` varchar(20) NOT NULL COMMENT 'FORMAT: Y-m-d H:i:s', `log_execution_time` float(10,6) NOT NULL COMMENT 'In milliseconds', `log_type` varchar(40) NOT NULL COMMENT 'http_request, controller_method', `log_filter` varchar(100) NOT NULL, PRIMARY KEY (`log_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- Table structure for table `project_service` CREATE TABLE IF NOT EXISTS `project_service` ( `project_id` int(11) NOT NULL, `service_id` int(11) NOT NULL, CONSTRAINT `fk_ps_p` FOREIGN KEY (`project_id`) REFERENCES `project` (`project_id`) ON DELETE CASCADE, CONSTRAINT `fk_ps_s` FOREIGN KEY (`service_id`) REFERENCES `service` (`service_id`) ON DELETE CASCADE, UNIQUE INDEX `un_p_s` (`project_id` ASC, `service_id` ASC) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- Table structure for table `master_lab_analyte` CREATE TABLE IF NOT EXISTS `master_lab_analyte` ( `master_lab_analyte_id` int(11) NOT NULL AUTO_INCREMENT, `master_lab_analyte_category_name` varchar(25) COLLATE utf8_unicode_ci NOT NULL, `master_lab_analyte_name` varchar(50) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`master_lab_analyte_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE = utf8_unicode_ci AUTO_INCREMENT=1; CREATE TABLE IF NOT EXISTS `master_form` ( `form_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `content_type` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, `category` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, `value` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, `size` int(11) DEFAULT NULL, `title` varchar(250) COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`form_id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- Table structure for table `project_form` CREATE TABLE IF NOT EXISTS `project_form` ( `project_id` int(11) NOT NULL, `master_form_id` int(11) DEFAULT NULL, `user_form_id` int(11) DEFAULT NULL, UNIQUE KEY `un_pf_p_uf_mf` (`project_id`,`user_form_id`,`master_form_id`), CONSTRAINT `fk_pf_project` FOREIGN KEY (`project_id`) REFERENCES `project` (`project_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- Table structure for table `user_form` CREATE TABLE IF NOT EXISTS `user_form` ( `form_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `content_type` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, `category` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, `value` varchar(250) COLLATE utf8_unicode_ci DEFAULT NULL, `size` int(10) DEFAULT NULL, `title` varchar(250) COLLATE utf8_unicode_ci DEFAULT NULL, `pm_id` int(11) NOT NULL, PRIMARY KEY (`form_id`), KEY `fk_uf_project_manager` (`pm_id`), CONSTRAINT `fk_uf_project_manager` FOREIGN KEY (`pm_id`) REFERENCES `project_manager` (`pm_id`) ON DELETE CASCADE ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- Table structure for table `task_template_form` CREATE TABLE IF NOT EXISTS `task_template_form`( `task_id` INT(11) NOT NULL, `master_form_id` INT(11), `user_form_id` INT(11), UNIQUE INDEX `un_tf_t_uf_mf` (`task_id`, `master_form_id`, `user_form_id`), CONSTRAINT `fk_tf_task` FOREIGN KEY (`task_id`) REFERENCES `task`(`task_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE = utf8_unicode_ci; -- Table structure for `user_role` CREATE TABLE IF NOT EXISTS `user_role` ( `user_role_id` smallint(2) NOT NULL, `user_role_desc` varchar(100), PRIMARY KEY (`user_role_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE = utf8_unicode_ci; -- Table structure for `user` CREATE TABLE IF NOT EXISTS `user` ( `user_id` int(11) NOT NULL AUTO_INCREMENT, `user_login` varchar(50) COLLATE utf8_unicode_ci NOT NULL, `user_password` varchar(50) COLLATE utf8_unicode_ci NOT NULL, `user_hint` varchar(20) COLLATE utf8_unicode_ci NOT NULL, `user_email` VARCHAR(50) NOT NULL COMMENT 'User email that is unique and must be set', `user_type` varchar(50) NOT NULL COMMENT 'Possible values: pm_id, technician_id, service_id', `user_value` int(11) NOT NULL COMMENT 'ID value corresponding to the user_type', `user_role_id` smallint(2) NOT NULL COMMENT 'Look up the table user_role for details about the roles', `user_session_id` VARCHAR(50) NULL COMMENT 'Hashed session ID', UNIQUE INDEX `un_user_login` (`user_login` ASC), UNIQUE INDEX `un_user_email` (`user_email` ASC), CONSTRAINT `fk_user_role_user` FOREIGN KEY (`user_role_id`) REFERENCES `user_role` (`user_role_id`), PRIMARY KEY (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE = utf8_unicode_ci AUTO_INCREMENT=1; -- Table structure for `lab_analyte_location` CREATE TABLE IF NOT EXISTS `lab_analyte_location` ( `task_id` int(11) NOT NULL, `location_id` int(11) NOT NULL, `lab_analyte_id` int(11) NOT NULL, CONSTRAINT `fk_lal_task` FOREIGN KEY (`task_id`) REFERENCES `task` (`task_id`) ON DELETE CASCADE, CONSTRAINT `fk_lal_location` FOREIGN KEY (`location_id`) REFERENCES `location` (`location_id`) ON DELETE CASCADE, CONSTRAINT `fk_lal_lab_analyte` FOREIGN KEY (`lab_analyte_id`) REFERENCES `lab_analyte` (`lab_analyte_id`) ON DELETE CASCADE, UNIQUE INDEX `un_lal` (`task_id` ASC, `location_id` ASC, `lab_analyte_id`ASC) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; CREATE TABLE IF NOT EXISTS `task_note` ( `task_note_id` int(11) NOT NULL AUTO_INCREMENT, `task_id` int(11) NOT NULL, `task_note_category_type` varchar(25) NOT NULL COMMENT 'Possible values: pm_id, technician_id', `task_note_category_value` int(11) NOT NULL COMMENT 'Represents the value of the object property set in the task_note_category_type', `task_note_value`varchar(500) NULL COMMENT 'The value of the note typed by the user', `task_note_time` TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL, CONSTRAINT `fk_tn_task` FOREIGN KEY (`task_id`) REFERENCES `task` (`task_id`) ON DELETE CASCADE, PRIMARY KEY (`task_note_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1; -- Table structure for `discussion` CREATE TABLE IF NOT EXISTS `discussion` ( `discussion_id` int(11) NOT NULL AUTO_INCREMENT, `task_id` int(11) NOT NULL, `discussion_start_time` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, CONSTRAINT `fk_discussion_task` FOREIGN KEY (`task_id`) REFERENCES `task` (`task_id`) ON DELETE CASCADE, PRIMARY KEY (`discussion_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1; -- Table structure for `discussion_person` CREATE TABLE IF NOT EXISTS `discussion_person` ( `discussion_person_id` int(11) NOT NULL AUTO_INCREMENT, `discussion_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `discussion_person_is_author` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Set to 1 when the person is the one who created the discussion', CONSTRAINT `fk_dp_discussion` FOREIGN KEY (`discussion_id`) REFERENCES `discussion` (`discussion_id`) ON DELETE CASCADE, CONSTRAINT `fk_dp_user` FOREIGN KEY (`user_id`) REFERENCES `user` (`user_id`) ON DELETE CASCADE, PRIMARY KEY (`discussion_person_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1; -- Table structure for `discussion_content` CREATE TABLE IF NOT EXISTS `discussion_content` ( `discussion_content_id` int(11) NOT NULL AUTO_INCREMENT, `discussion_person_id` int(11) NOT NULL, `discussion_content_time` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, `discussion_content_message` varchar(500) NOT NULL COMMENT 'The message sent', CONSTRAINT `fk_dc_discussion_person` FOREIGN KEY (`discussion_person_id`) REFERENCES `discussion_person` (`discussion_person_id`) ON DELETE CASCADE, PRIMARY KEY (`discussion_content_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1; -- Table structure for `task_check_list` CREATE TABLE IF NOT EXISTS `task_check_list` ( `task_check_list_id` int(11) NOT NULL AUTO_INCREMENT, `task_id` int(11) NOT NULL, `task_check_list_complete` TINYINT(1) NOT NULL DEFAULT 0, `task_check_list_detail` varchar(150) NOT NULL, CONSTRAINT `fk_task_cl_task` FOREIGN KEY (`task_id`) REFERENCES `task` (`task_id`) ON DELETE CASCADE, PRIMARY KEY (`task_check_list_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1; -- Dumping data for table `user_role` INSERT INTO `user_role` (`user_role_id`,`user_role_desc`) VALUES (1,'Administrator'), (2,'Project Manager'), (3,'Field Technician'), (4,'Visitor'), (5,'Client'), (6,'Service Provider'); -- Dumping data for table `user` INSERT INTO `user` (`user_id`,`user_login`,`user_password`,`user_hint`,`user_type`,`user_value`,`user_role_id`,`user_session_id`,`user_email`) VALUES (1,'admin','a94a8fe5ccb19ba61c4c0873d391e987982fbbd3g496lJL683','test','administrator_id',0,1,'','bsaiken@fieldworkmanager.com'); /*!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 Procedure sp_update_pending_request (@StockRequestNo int, @ProductCode nvarchar(20), @Quantity Decimal(18,6)) As Update Stock_Request_Detail_Received Set ExcessQuantity = @Quantity - Pending Where Stk_Req_Number = @StockRequestNo And Product_Code = @ProductCode And @Quantity - Pending > 0 Update Stock_Request_Detail_Received Set Pending = Pending - @Quantity Where Stk_Req_Number = @StockRequestNo And Product_Code = @ProductCode Update Stock_Request_Detail_Received Set Pending = 0 Where Stk_Req_Number = @StockRequestNo And Product_Code = @ProductCode And Pending < 0
/* Navicat Premium Data Transfer Source Server : xiaopu_dev Source Server Type : MySQL Source Server Version : 50715 Source Host : 10.25.18.254 Source Database : xiaopu Target Server Type : MySQL Target Server Version : 50715 File Encoding : utf-8 Date: 11/10/2016 18:33:06 PM */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for `award_presens` -- ---------------------------- DROP TABLE IF EXISTS `award_presens`; CREATE TABLE `award_presens` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `real_name` varchar(50) NOT NULL COMMENT '发奖人姓名', `mobile` bigint(11) NOT NULL COMMENT '发奖人手机', `official_name` varchar(50) NOT NULL COMMENT '官方负责人', `official_mobile` bigint(11) NOT NULL COMMENT '负责人手机', `award_cnt` int(11) DEFAULT '0' COMMENT '发奖次数', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `available` tinyint(1) DEFAULT '1' COMMENT '是否启用;0:未启用,1:启用', `remarks` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- ---------------------------- -- Table structure for `dict` -- ---------------------------- DROP TABLE IF EXISTS `dict`; CREATE TABLE `dict` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` int(9) NOT NULL, `value` varchar(1000) NOT NULL, `sort` int(9) NOT NULL DEFAULT '0' COMMENT '排序,越大越靠前', `valid` tinyint(1) NOT NULL DEFAULT '1' COMMENT '0:有效;1:无效', `parent_id` int(11) DEFAULT NULL, `other` varchar(2000) DEFAULT NULL COMMENT '其他,JSON格式存储', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='字典表'; -- ---------------------------- -- Table structure for `invitation_code` -- ---------------------------- DROP TABLE IF EXISTS `invitation_code`; CREATE TABLE `invitation_code` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(10) DEFAULT NULL, `partner_id` int(11) DEFAULT NULL, `user_cnt` int(11) DEFAULT NULL, `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='合伙人邀请码表'; -- ---------------------------- -- Table structure for `partner_group` -- ---------------------------- DROP TABLE IF EXISTS `partner_group`; CREATE TABLE `partner_group` ( `partner_id` int(11) DEFAULT NULL, `group_id` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='社团合伙人对应社团中间表'; -- ---------------------------- -- Table structure for `pk_channel` -- ---------------------------- DROP TABLE IF EXISTS `pk_channel`; CREATE TABLE `pk_channel` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL, `slogan` varchar(255) NOT NULL, `desc` varchar(1000) NOT NULL, `poster_img` varchar(50) DEFAULT NULL, `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1:通用型;2.其他模版待定', `create_id` int(11) DEFAULT NULL COMMENT '非官方频道申请人ID', `create_realname` varchar(255) DEFAULT NULL COMMENT '非官方频道申请人姓名', `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '-1:无效;1:有效;0:待审核', `is_official` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1:官方;0:非官方', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for `pk_prize_result` -- ---------------------------- DROP TABLE IF EXISTS `pk_prize_result`; CREATE TABLE `pk_prize_result` ( `pk_id` int(11) NOT NULL, `code` varchar(36) NOT NULL COMMENT '奖品编码', `prize_name` varchar(255) NOT NULL, `prize_type` tinyint(1) NOT NULL DEFAULT '0', `prize_num` int(5) NOT NULL DEFAULT '0', `challenge_topic_id` int(11) NOT NULL, `challenge_topic_slogan` varchar(255) DEFAULT NULL, `reward_user_id` int(11) NOT NULL COMMENT '得奖者id', `reward_user_nickname` varchar(255) DEFAULT NULL COMMENT '得奖者', `reward_user_realname` varchar(255) DEFAULT NULL COMMENT '得奖者', `reward_user_avatar` varchar(255) DEFAULT NULL COMMENT '得奖者头像', `effective_time` datetime NOT NULL, `expire_time` datetime DEFAULT NULL COMMENT '奖品失效时间', `take_time` datetime NOT NULL, `has_take` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0:未领取;1:领取', PRIMARY KEY (`pk_id`,`reward_user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户最终得到的奖品,奖品发放表'; -- ---------------------------- -- Table structure for `pk_prize_take_log` -- ---------------------------- DROP TABLE IF EXISTS `pk_prize_take_log`; CREATE TABLE `pk_prize_take_log` ( `id` int(11) NOT NULL AUTO_INCREMENT, `award_user_id` int(11) NOT NULL COMMENT '发放奖品的人id', `pk_id` int(11) NOT NULL COMMENT 'PK的ID', `reward_user_id` int(11) NOT NULL COMMENT '得奖人Id', `take_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='预付奖品物资,每增加一个PK,库存出库+1(针对实物类)'; -- ---------------------------- -- Table structure for `pk_result` -- ---------------------------- DROP TABLE IF EXISTS `pk_result`; CREATE TABLE `pk_result` ( `pk_id` int(11) NOT NULL, `challenge_topic_id` int(11) NOT NULL, `reward_user_id` int(11) NOT NULL COMMENT '得奖者id', `reward_user_nickname` varchar(255) DEFAULT NULL COMMENT '得奖者', `reward_user_realname` varchar(255) DEFAULT NULL COMMENT '得奖者', `reward_user_avatar` varchar(255) DEFAULT NULL COMMENT '得奖者头像', `ranking` tinyint(5) NOT NULL DEFAULT '0' COMMENT '排名', `vote_cnt` tinyint(9) NOT NULL DEFAULT '0' COMMENT '投票总数', `is_finish` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否符合pk规则,达到奖励,达不到不奖励;0:未达到奖励指标;1:达到奖励指标', `finish_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '生成结果时间', PRIMARY KEY (`pk_id`,`reward_user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='PK结果表,奖品物资需要计数出库量'; -- ---------------------------- -- Table structure for `pk_vote_result` -- ---------------------------- DROP TABLE IF EXISTS `pk_vote_result`; CREATE TABLE `pk_vote_result` ( `id` int(11) NOT NULL AUTO_INCREMENT, `pk_id` int(11) NOT NULL, `topic_id` int(11) NOT NULL, `topic_slogan` varchar(255) NOT NULL COMMENT '冗余', `creator_id` int(11) NOT NULL COMMENT '参与人员id', `creator_nickname` varchar(255) NOT NULL, `vote_cnt` int(9) NOT NULL DEFAULT '0', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`,`pk_id`,`topic_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- ---------------------------- -- Table structure for `pk_votes` -- ---------------------------- DROP TABLE IF EXISTS `pk_votes`; CREATE TABLE `pk_votes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `pk_id` int(11) NOT NULL, `topic_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `user_nickname` varchar(255) DEFAULT NULL, `user_avatar` varchar(255) DEFAULT NULL, `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1:投;-1:踩', `vote_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`,`pk_id`,`user_id`,`type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='PK投票明细,每PK仅有一次投票(投/踩)插入的同时,更新result表,计算得奖前核实两表数据是否平衡'; -- ---------------------------- -- Table structure for `prizes` -- ---------------------------- DROP TABLE IF EXISTS `prizes`; CREATE TABLE `prizes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL COMMENT '奖品名称', `prize` varchar(4000) NOT NULL COMMENT '奖品以JSON格式保存,目前包含{ 奖励描述、奖品图片等}', `type` tinyint(1) NOT NULL COMMENT '1:现金;2:实物;3:虚拟物品;4:校谱红包', `is_public` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0:对外部公开,即pk奖品由官方提供;1:不对外部公开,即非官方提供奖品;2:校谱专用;其他待定', `available_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '生效时间', `expire_time` datetime NOT NULL COMMENT '失效时间', `creater_id` int(11) NOT NULL, `creater_realname` varchar(255) NOT NULL, `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `has_limit` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1有限制【需要操作库存】;0没限制', `stock_total` int(6) DEFAULT '0' COMMENT '总库存', `stock_out` int(6) DEFAULT '0' COMMENT '已分配出奖品数量', `available` tinyint(4) DEFAULT '0' COMMENT '是否启用;0:不启用,1:启用。', PRIMARY KEY (`id`,`creater_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='奖品物资'; -- ---------------------------- -- Table structure for `prizes_imprest` -- ---------------------------- DROP TABLE IF EXISTS `prizes_imprest`; CREATE TABLE `prizes_imprest` ( `id` int(11) NOT NULL AUTO_INCREMENT, `topic_id` int(11) NOT NULL, `pk_id` int(11) NOT NULL, `prize_id` int(11) DEFAULT NULL, `stock_out` int(6) NOT NULL DEFAULT '0' COMMENT '待分配出奖品数量', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='预占位奖品物资,每增加一个PK,库存出库+1(针对实物类)'; -- ---------------------------- -- Table structure for `recommend_event` -- ---------------------------- DROP TABLE IF EXISTS `recommend_event`; CREATE TABLE `recommend_event` ( `id` int(11) NOT NULL AUTO_INCREMENT, `event_id` int(11) NOT NULL, `organize_id` int(11) NOT NULL, `organize_name` varchar(255) NOT NULL, `event_subject` varchar(255) NOT NULL, `poster_img` varchar(255) NOT NULL, `sort` int(5) NOT NULL DEFAULT '0' COMMENT '越大越靠前', `recommend_time` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='推荐活动表'; -- ---------------------------- -- Table structure for `tipoff` -- ---------------------------- DROP TABLE IF EXISTS `tipoff`; CREATE TABLE `tipoff` ( `id` int(11) NOT NULL AUTO_INCREMENT, `topic_id` int(11) NOT NULL, `desc` varchar(500) NOT NULL, `tipoff_user_id` int(11) NOT NULL, `tipoff_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COMMENT='举报记录'; -- ---------------------------- -- Table structure for `topic_comment` -- ---------------------------- DROP TABLE IF EXISTS `topic_comment`; CREATE TABLE `topic_comment` ( `id` int(11) NOT NULL AUTO_INCREMENT, `topic_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `user_nickname` varchar(60) NOT NULL, `user_avatar_url` varchar(60) DEFAULT NULL COMMENT '用户头像', `comment` varchar(2000) NOT NULL COMMENT '评论,JSON,{url:{[],[]}, desc:""}', `parent_id` int(11) DEFAULT NULL COMMENT '评论引用,暂不实现', `like_cnt` int(6) NOT NULL DEFAULT '0', `action_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='评论'; -- ---------------------------- -- Table structure for `topic_fav` -- ---------------------------- DROP TABLE IF EXISTS `topic_fav`; CREATE TABLE `topic_fav` ( `id` int(11) NOT NULL AUTO_INCREMENT, `topic_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `user_nickname` varchar(255) NOT NULL, `fav_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '收藏时间', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户收藏功能'; -- ---------------------------- -- Table structure for `topic_hot` -- ---------------------------- DROP TABLE IF EXISTS `topic_hot`; CREATE TABLE `topic_hot` ( `topic_id` int(11) NOT NULL, `type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1.运营推荐(置顶)??;0.最热,按照点赞数量', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`topic_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='热门主题,当天数据,100条这里取'; -- ---------------------------- -- Table structure for `topic_like` -- ---------------------------- DROP TABLE IF EXISTS `topic_like`; CREATE TABLE `topic_like` ( `id` int(11) NOT NULL AUTO_INCREMENT, `topic_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `user_nickname` varchar(255) NOT NULL, `like_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '点赞时间', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='点赞无取消点赞功能'; -- ---------------------------- -- Table structure for `topic_new` -- ---------------------------- DROP TABLE IF EXISTS `topic_new`; CREATE TABLE `topic_new` ( `topic_id` int(11) NOT NULL COMMENT '最新话题', `type` tinyint(1) NOT NULL COMMENT '0.按时间最新;1.运营推荐;', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`topic_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='最新主题,前50条这里取,后续数据从主表取得'; -- ---------------------------- -- Table structure for `topic_pk` -- ---------------------------- DROP TABLE IF EXISTS `topic_pk`; CREATE TABLE `topic_pk` ( `id` int(11) NOT NULL AUTO_INCREMENT, `topic_id` int(11) NOT NULL COMMENT '擂主贴ID', `period_type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1:当天;2:当周;3:当月;4:当季;5当年;0:自定义(目前需要大于12小时)', `prize_id` int(11) DEFAULT NULL COMMENT '奖品编号', `start_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '按period计算最后参与时间', `end_time` datetime NOT NULL COMMENT '按period计算最后参与时间', `reward_type` tinyint(1) NOT NULL COMMENT '0:无奖品;1:排名最高者得全部(小额/小件/短期);2:前三得80%(200元以上),第一:60% ,第二:15% ,第三:5%, 其余20%(原则每人均分比例不超过第三的50%,即2.5%)', `rule` varchar(4000) NOT NULL COMMENT '规则说明', `expire_time` datetime DEFAULT NULL COMMENT 'null:奖品无失效时间(主要为现金);奖品失效时间,超过奖品无法领取,依据奖品设置计算', `is_finish` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'PK奖励结果是否完成:0:没完成,1:完成', `further` varchar(4000) DEFAULT NULL COMMENT '扩展字段,JSON格式', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='PK定义表'; -- ---------------------------- -- Table structure for `topic_ranking` -- ---------------------------- DROP TABLE IF EXISTS `topic_ranking`; CREATE TABLE `topic_ranking` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '0:无效;1:有效', `topic_id` int(11) NOT NULL, `vote_cnt` int(11) NOT NULL DEFAULT '0', `type` int(9) NOT NULL DEFAULT '0' COMMENT '1.图文热度排名;2.PK热度排名;3.图文最新排名;4:频道热度排名', `parent_type` int(9) NOT NULL DEFAULT '0' COMMENT 'type=1 or 2(1:日榜;2:周版;3:月榜),type=4(parent_type=具体的频道ID)', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1有效;0过期;每次更新榜单把前期数据设置为过期', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='热门主题,当天数据,100条这里取'; -- ---------------------------- -- Table structure for `topic_tags` -- ---------------------------- DROP TABLE IF EXISTS `topic_tags`; CREATE TABLE `topic_tags` ( `id` int(11) NOT NULL AUTO_INCREMENT, `topic_id` int(11) NOT NULL, `tag_type` tinyint(1) NOT NULL COMMENT '1:社团;2:活动', `target_id` int(11) NOT NULL COMMENT ' 关联对象ID', `target_name` varchar(255) DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '待用字段 1:当前有效', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='topic主表插入JSON同时这里插入明细'; -- ---------------------------- -- Table structure for `topics` -- ---------------------------- DROP TABLE IF EXISTS `topics`; CREATE TABLE `topics` ( `id` int(11) NOT NULL AUTO_INCREMENT, `creator_id` int(11) NOT NULL, `creator_nickname` varchar(255) DEFAULT '无名', `creator_avatar` varchar(255) NOT NULL COMMENT '头像,没有使用默认图标', `school_id` int(11) DEFAULT NULL, `school_name` varchar(255) DEFAULT NULL, `challenge_topic_id` int(11) DEFAULT NULL COMMENT '擂主贴', `is_challenger` tinyint(1) DEFAULT '-1' COMMENT '-1:非PK贴,1:是擂主;0:挑战者;', `challenge_id` int(11) DEFAULT NULL COMMENT '擂主id', `challenge_nickname` varchar(255) DEFAULT NULL COMMENT '擂主昵称', `challenge_avatar` varchar(255) DEFAULT NULL COMMENT '擂主头像', `channel_id` int(11) DEFAULT NULL COMMENT '频道id', `channel_name` varchar(100) DEFAULT NULL COMMENT '频道名称', `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1:图文;2:视频;3:直播;4.其他', `slogan` varchar(100) DEFAULT NULL COMMENT '擂台口号', `content` varchar(4000) NOT NULL COMMENT 'JSON格式存储topic{slogan:"",urls:[{},{}],desc:""}', `recommend` tinyint(1) NOT NULL DEFAULT '0' COMMENT '大于0,表示推荐越大越靠前', `like_cnt` int(9) NOT NULL DEFAULT '0' COMMENT '点赞总数,每个话题,一个人只有一次点赞', `favorite_cnt` int(9) NOT NULL DEFAULT '0' COMMENT '收藏数 ', `comment_cnt` int(9) NOT NULL DEFAULT '0' COMMENT '评论数', `is_official` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0:非官方;1:官方', `is_delete` tinyint(1) NOT NULL DEFAULT '1' COMMENT '0:已删除;1:正常', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '发布时间,long', `update_time` datetime NOT NULL COMMENT '最后更新时间,计数变化需要更新计数时间', `expire_time` datetime DEFAULT NULL COMMENT 'null:无失效时间;(目前仅有PK贴设置失效时间),long', `is_pk` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0不是,1是', `further` varchar(4000) DEFAULT NULL COMMENT '扩展字段,JSON格式', `status` tinyint(1) DEFAULT '1' COMMENT '审核状态。0:待审核,1:审核通过,2:审核未通过', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='内容话题,预期包含图文、短视频、直播一个月前的设置为冷数据,后续实现冷热数据分表'; -- ---------------------------- -- Table structure for `user_invitation_code` -- ---------------------------- DROP TABLE IF EXISTS `user_invitation_code`; CREATE TABLE `user_invitation_code` ( `user_id` int(11) NOT NULL, `invitation_code` varchar(10) DEFAULT NULL, `user_code` varchar(10) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for `user_ranking` -- ---------------------------- DROP TABLE IF EXISTS `user_ranking`; CREATE TABLE `user_ranking` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '0:无效;1:有效', `user_id` int(11) NOT NULL, `user_nickname` varchar(50) DEFAULT NULL, `user_avatar_url` varchar(60) DEFAULT NULL, `vote_cnt` int(11) NOT NULL DEFAULT '0', `type` int(9) NOT NULL DEFAULT '0' COMMENT '1:不服榜,2:达人榜', `parent_type` int(9) NOT NULL DEFAULT '0', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1有效;0过期;每次更新榜单把前期数据设置为过期', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户排名'; DROP TABLE IF EXISTS `event_ranking`; CREATE TABLE `event_ranking` ( `id` int(11) NOT NULL AUTO_INCREMENT, `event_id` int(11) NOT NULL, `topic_cnt` int(11) NOT NULL DEFAULT '0', `type` int(9) NOT NULL DEFAULT '0' COMMENT '1.活动排名', `parent_type` int(9) NOT NULL DEFAULT '0' COMMENT '1:日榜;2:周版;3:月榜', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1有效;0过期;每次更新榜单把前期数据设置为过期', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='活动排名'; ALTER TABLE `partners` ADD COLUMN `sex` TINYINT(1) NULL DEFAULT 1 COMMENT '性别,1:男,2:女' AFTER `real_name`, ADD COLUMN `school_id` INT(11) NULL AFTER `sex`, ADD COLUMN `school_name` VARCHAR(50) NULL AFTER `school_id`, ADD COLUMN `star_rating` TINYINT(1) NULL COMMENT '审核星级,1-5星' AFTER `school_name`, ADD COLUMN `remarks` VARCHAR(255) NULL AFTER `check_time`; SET FOREIGN_KEY_CHECKS = 1;
CREATE VIEW [display].[u_happynow_factor_data_v] AS SELECT --TOP (100) --Dates/Users [display].[u_happynow_factor_data].[sys_updated_on_display_value] AS [sys updated on display value_text], TRY_CONVERT(DATETIME, [display].[u_happynow_factor_data].[sys_updated_on_display_value]) AS [sys updated on display value], [display].[u_happynow_factor_data].[sys_updated_by_display_value] AS [sys updated by display value], [display].[u_happynow_factor_data].[sys_created_on_display_value] AS [sys created on display value_text], TRY_CONVERT(DATETIME, [display].[u_happynow_factor_data].[sys_created_on_display_value]) AS [sys created on display value], [display].[u_happynow_factor_data].[sys_created_by_display_value] AS [sys created by display value], --IDs [display].[u_happynow_factor_data].[sys_id_display_value] AS [sys id display value], --Desc [display].[u_happynow_factor_data].[u_number_display_value] AS [u number display value], [display].[u_happynow_factor_data].[u_factor_id_display_value] AS [u factor id display value], [display].[u_happynow_factor_data].[u_related_feedback_display_value] AS [u related feedback display value], [display].[u_happynow_factor_data].[u_factor_mood_display_value] AS [u factor mood display value], [display].[u_happynow_factor_data].[u_factor_text_display_value] AS [u factor text display value] FROM [display].[u_happynow_factor_data]
UPDATE users SET user_phone = $1,user_name = $2,user_email = $3 WHERE id = $4 RETURNING *;
--Server Tipinde Triggerlar CREATE TABLE dbo.DDLEventData( EventData xml not null, ActionDate Datetime not null default getDate() ) CREATE TRIGGER trg_DDLEventData ON DATABASE FOR CREATE_INDEX,DROP_INDEX AS BEGIN SET NOCOUNT ON INSERT INTO DDLEventData(EventData) VALUES(EVENTDATA()) END CREATE NONCLUSTERED INDEX IX_ContactID ON HumanResources.Employee(JobTitle) SELECT * from DDLEventData
-- 테이블 생성 -- 직원 테이블 create table employee ( seq number primary key, -- 직원번호(PK) name varchar2(10) not null, -- 이름 jumin varchar2(15) not null, -- 주민번호 pw varchar2(20) not null, -- 비밀번호 cellphone varchar2(15) not null, -- 핸드폰 번호 email varchar2(30) not null, -- 이메일 firstDate date not null, -- 입사일 endDate date, -- 퇴사일 payment number, -- 연봉 departmentSeq number not null references department(seq), -- 부서번호(FK) pwHint varchar2(50) not null, -- 비밀번호 힌트 pwAnswer varchar2(50) not null, -- 비밀번호 힌트 정답 gender varchar2(2) not null, -- 성별 phone varchar2(15), -- 담당 전화번호 profilePic varchar2(100), -- 프로필 사진 task varchar2(100), -- 담당 업무 bank varchar2(50), -- 급여 지급 은행 bankAccount varchar2(100), -- 계좌 번호 positionSeq number not null references tblPosition(seq) -- 직급 시퀀스 ); -- 직원 테이블의 시퀀스 생성 create sequence employeeSeq; -- 확인용 select * from employee;
INSERT INTO PERSON VALUES ('ABDURE REHMAN' , 3510258004795 ,'lUMS' ,03009999999 , 'PAKI'); INSERT INTO PERSON VALUES ('ABDURE REHMAN' , 3510258004795 ,'lUMS' ,03009999999 , 'PAKI'); INSERT INTO PERSON VALUES ('ABDURE REHMAN' , 3510258004793 ,'lUMS' ,03054658422, 'PAKI'); INSERT INTO PERSON VALUES ('asif' , 3510258004794 ,'lUMS4' ,03253658452, 'Siri'); INSERT INTO PERSON VALUES ('Bilal' , 3510258004795 ,'lUMS5' ,03253658452, 'ind'); INSERT INTO PERSON VALUES ('abdulla' , 3510258004796 ,'lUMS6' ,06253658452, 'Afghani'); INSERT INTO PERSON VALUES ('azka' , 3510258004797 ,'lUMS7' ,06253658452, 'Afghani'); INSERT INTO PERSON VALUES ('suman' , 3510258004798 ,'lUMS8' ,06253658452, 'Pakii'); INSERT INTO PERSON VALUES ('izza' , 3510258004799 ,'lUMS9' ,06253658452, 'Paki'); INSERT INTO PERSON VALUES ('Manahil' , 3510258004790 ,'lUMS0' ,06253658452, 'Afghani'); INSERT INTO IATA VALUES (0,'PK2'); INSERT INTO IATA VALUES (0,'PK1'); INSERT INTO IATA VALUES (0,'LHR'); INSERT INTO IATA VALUES (0,'KSR'); INSERT INTO IATA VALUES (0,'GWN'); INSERT INTO IATA VALUES (0,'SAI'); INSERT INTO IATA VALUES (0,'NEW'); INSERT INTO IATA VALUES (0,'ENG'); INSERT INTO IATA VALUES (0,'Gie'); INSERT INTO IATA VALUES (0,'OPE'); INSERT INTO FLIGHT_ID VALUES ('PK301' , 'LHR' , 'SAI'); INSERT INTO FLIGHT_ID VALUES ('PK302' , 'PK1' , 'PK2'); INSERT INTO FLIGHT_ID VALUES ('PK303' , 'LHR' , 'GWN'); INSERT INTO FLIGHT_ID VALUES ('PK304' , 'SAI' , 'KSR'); INSERT INTO FLIGHT_ID VALUES ('PK305' , 'LHR' , 'KSR'); INSERT INTO FLIGHT_ID VALUES ('PK306' , 'ENG' , 'KSR'); INSERT INTO FLIGHT_ID VALUES ('PK307' , 'LHR' , 'KSR'); INSERT INTO FLIGHT_ID VALUES ('PK308' , 'OPE' , 'KSR'); INSERT INTO passenger_in_flight VALUES (0 ,1 ,3510258114798); INSERT INTO passenger_in_flight VALUES (0 ,1 ,3510258004798); INSERT INTO passenger_in_flight VALUES (0 ,2 ,3510258004795); INSERT INTO passenger_in_flight VALUES (0 ,3 ,3510258004790); INSERT INTO passenger_in_flight VALUES (0 ,4 ,3510258004795); INSERT INTO passenger_in_flight VALUES (0 ,5 ,3510258004794); INSERT INTO passenger_in_flight VALUES (0 ,6 ,3510258004799); INSERT INTO passenger_in_flight VALUES (0 ,9 ,3510258004795); INSERT INTO passenger_in_flight VALUES (0 ,6 ,3510258004794); INSERT INTO passenger_in_flight VALUES (0 ,7 ,3510258004794); INSERT INTO passenger_in_flight VALUES (0 ,8 ,3510258004794); INSERT INTO flights_in_process VALUES (0, 'PK301' ,'01:00:00','05:00:00','2018-11-07 00:00:00' ,'Thunder' , 1300 ); INSERT INTO flights_in_process VALUES (0, 'PK301' ,'03:00:00','04:00:00','2018-11-10 00:00:00' ,'1-Thunder' , 1200 ); INSERT INTO flights_in_process VALUES (0, 'PK302' ,'10:00:00','05:30:00','2018-11-08 00:00:00' ,'2-Thunder' , 1500 ); INSERT INTO flights_in_process VALUES (0, 'PK303' ,'01:20:00','10:20:00','2018-11-09 00:00:00' ,'3-Thunder' , 1600 ); INSERT INTO flights_in_process VALUES (0, 'PK304' ,'06:20:00','10:20:00','2018-12-09 00:00:00' ,'JFthunder' , 2600 ); INSERT INTO flights_in_process VALUES (0, 'PK305' ,'05:20:00','11:20:00','2018-12-19 00:00:00' ,'F-Thunder' , 3600 ); INSERT INTO flights_in_process VALUES (0, 'PK306' ,'04:20:00','12:20:00','2018-12-29 00:00:00' ,'G-Thunder' , 4600 ); INSERT INTO flights_in_process VALUES (0, 'PK307' ,'03:20:00','13:20:00','2018-12-19 00:00:00' ,'H-Thunder' , 5600 ); INSERT INTO flights_in_process VALUES (0, 'PK308' ,'02:20:00','14:20:00','2018-11-09 00:00:00' ,'3-Thunder' , 1600 ); -- CREATE VIEW FLIGHT_DETAILS_F as -- SELECT f.flight_number, f.flight_id_t, x.a_A, x.d_A ,f.a_t ,f.d_t , f.date_f ,f.fare from flights_in_process as f , FLIGHT_ID as x -- where f.flight_id_t =x.id; -- SELECT * from -- (SELECT * FROM FLIGHT_DETAILS_F where a_A ='KSR' and d_a='LHR') as temp -- where temp.date_f BETWEEN "2018-11-07" AND "2018-12-19";
ALTER TABLE `cards` DROP COLUMN `service`; ALTER TABLE `cards` ADD `discount` INT NOT NULL DEFAULT '0' AFTER `type`; ALTER TABLE `cards` ADD `pass` ENUM('0','1','3','6') NOT NULL DEFAULT '0' AFTER `discount`;
-- phpMyAdmin SQL Dump -- version 5.0.2 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1:3306 -- Generation Time: Oct 13, 2021 at 02:59 PM -- Server version: 5.7.31 -- PHP Version: 7.3.21 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; 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: `bddrh` -- -- -------------------------------------------------------- -- -- Table structure for table `contrat` -- DROP TABLE IF EXISTS `contrat`; CREATE TABLE IF NOT EXISTS `contrat` ( `id` int(11) NOT NULL, `dateDébut` date NOT NULL, `dateFin` date DEFAULT NULL, `idSal` varchar(11) NOT NULL, `idPoste` int(11) NOT NULL, `idService` varchar(11) NOT NULL, PRIMARY KEY (`id`), KEY `idPoste` (`idPoste`), KEY `idService` (`idService`), KEY `idSal` (`idSal`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `contrat` -- INSERT INTO `contrat` (`id`, `dateDébut`, `dateFin`, `idSal`, `idPoste`, `idService`) VALUES (1977102, '1977-03-15', '1985-03-01', '148A12', 1, 'B01'), (1985076, '1985-03-01', '2002-09-15', '148A12', 3, 'F01'), (2000098, '2000-09-01', '2010-10-10', '156A12', 4, 'G01'), (2002181, '2002-09-15', NULL, '148A12', 2, 'F01'), (2008045, '2008-05-05', '2008-10-17', '196A12', 1, 'E21'), (2008111, '2008-10-17', NULL, '196A12', 1, 'E21'), (2010065, '2010-10-10', NULL, '156A12', 5, 'G01'); -- -------------------------------------------------------- -- -- Table structure for table `poste` -- DROP TABLE IF EXISTS `poste`; CREATE TABLE IF NOT EXISTS `poste` ( `id` int(11) NOT NULL, `libelle` varchar(25) NOT NULL, `caracteristique` varchar(35) NOT NULL, `indice` int(25) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `poste` -- INSERT INTO `poste` (`id`, `libelle`, `caracteristique`, `indice`) VALUES (1, 'Magasinier', 'magasinier en reserve ', 385), (2, 'Responsable informatique ', 'Gestion équipe de 2 à 3 personnes ', 455), (3, 'Informaticien', 'Maintenance technique ', 395), (4, 'Hôtesse de caisse ', 'Rotation horaire et week-end', 365), (5, 'Chargé d\'équipe', 'Manage de 10 hôte de caisse ', 430), (6, 'Commercial ', 'Poste en Rayon ', 400); -- -------------------------------------------------------- -- -- Table structure for table `salarie` -- DROP TABLE IF EXISTS `salarie`; CREATE TABLE IF NOT EXISTS `salarie` ( `id` varchar(11) NOT NULL, `numSecu` varchar(25) NOT NULL, `nom` varchar(25) NOT NULL, `prenom` varchar(25) NOT NULL, `dateNaiss` date NOT NULL, `dateEmbauche` date NOT NULL, `tel` int(11) NOT NULL, `mail` varchar(25) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `salarie` -- INSERT INTO `salarie` (`id`, `numSecu`, `nom`, `prenom`, `dateNaiss`, `dateEmbauche`, `tel`, `mail`) VALUES ('148A12', '1520814168026', 'MARTIN', 'Pierre', '1952-08-05', '1977-03-15', 3815050, 'pierre.martin@proxim.fr'), ('156A12', '2671154395023', 'ESTEN', 'Solène', '1967-11-18', '2000-09-01', 30552202, 'solene.esten@proxim.fr'), ('196A12', '2820388485089', 'BENARBIA', 'Samia', '1982-03-28', '2008-05-05', 647425522, 'samia.benerbia@proxim.fr'); -- -------------------------------------------------------- -- -- Table structure for table `service` -- DROP TABLE IF EXISTS `service`; CREATE TABLE IF NOT EXISTS `service` ( `id` varchar(3) NOT NULL, `libelle` varchar(25) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `service` -- INSERT INTO `service` (`id`, `libelle`) VALUES ('A00', 'Direction générale'), ('B01', 'Approvisionnement'), ('C01', 'Comptabilité'), ('D11', 'Boucherie'), ('E01', 'Epicerie '), ('E11', 'Produits frais'), ('E21', 'Electroménager'), ('E31', 'Animalerie et jardin'), ('F01', 'Informatique'), ('F02', 'Ressources humaines'), ('G01', 'Caisse '); -- -- Constraints for dumped tables -- -- -- Constraints for table `contrat` -- ALTER TABLE `contrat` ADD CONSTRAINT `contrat_ibfk_1` FOREIGN KEY (`idPoste`) REFERENCES `poste` (`id`), ADD CONSTRAINT `contrat_ibfk_2` FOREIGN KEY (`idService`) REFERENCES `service` (`id`), ADD CONSTRAINT `contrat_ibfk_3` FOREIGN KEY (`idSal`) REFERENCES `salarie` (`id`); 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 OR REPLACE FUNCTION wxhf_get_CRM_spec(ip_serv_id VARCHAR2, attr_hood VARCHAR2, dep VARCHAR2 DEFAULT 'CUR') RETURN VARCHAR2 AS ret VARCHAR2(400); BEGIN IF nvl(dep, 'CUR') = 'CUR' THEN IF (is_number(attr_hood) = 1) THEN SELECT attr_val INTO ret FROM (SELECT attr_val FROM LS65_CRM1.p_serv_attr_t@to_crm p WHERE p.serv_id =ip_serv_id and p.attr_type_id = attr_hood ORDER BY agreement_id DESC, state) WHERE rownum = 1; ELSE SELECT attr_val INTO ret FROM (SELECT attr_val FROM LS65_CRM1.p_serv_attr_t@to_crm p WHERE p.serv_id =ip_serv_id and p.attr_type = attr_hood ORDER BY agreement_id DESC, state) WHERE rownum = 1; END IF; ELSE IF (is_number(attr_hood) = 1) THEN SELECT attr_val INTO ret FROM (SELECT attr_val FROM LS65_CRM1.h_p_serv_attr@to_crm p WHERE p.serv_id =ip_serv_id and p.attr_type_id = attr_hood ORDER BY agreement_id DESC, state) WHERE rownum = 1; ELSE SELECT attr_val INTO ret FROM (SELECT attr_val FROM LS65_CRM1.h_p_serv_attr@to_crm p WHERE p.serv_id =ip_serv_id and p.attr_type = attr_hood ORDER BY agreement_id DESC, state) WHERE rownum = 1; END IF; END IF; return ret; exception when others then return sqlerrm; END; /