sql
stringlengths 6
1.05M
|
---|
CREATE TABLE ENCRYPTED_TRANSACTION (ENCODED_PAYLOAD LONGVARBINARY NOT NULL, HASH LONGVARBINARY NOT NULL, TIMESTAMP BIGINT, PRIMARY KEY (HASH))
|
ALTER TABLE KV_RECORD ADD COLUMN BUSINESS_KEY VARCHAR(100);
COMMENT ON COLUMN KV_RECORD.BUSINESS_KEY IS '业务流水号';
|
print '
Generating property resolution function...'
IF OBJECT_ID('[orm_meta].[resolve_properties]', 'IF') IS NOT NULL
DROP FUNCTION [orm_meta].[resolve_properties]
go
IF TYPE_ID('[orm_meta].[identities]') IS NULL
-- DROP TYPE [orm_meta].[identities]
-- go
CREATE TYPE [orm_meta].[identities] AS TABLE(
guid uniqueidentifier NOT NULL,
PRIMARY KEY CLUSTERED ( [guid] ASC )
WITH (IGNORE_DUP_KEY = OFF)
)
GO
CREATE FUNCTION [orm_meta].[resolve_properties]
(
@template_guids identities readonly
)
RETURNS TABLE
AS
RETURN
(
with
scoped_templates as
(
select distinct
tree.template_guid as in_scope_template_guid
from @template_guids as t
cross apply [orm_meta].[template_tree](t.guid) as tree
)
, current_scoped_template_properties as
(
select
p.template_guid as affected_template_guid
, p.name as property_name
, p.datatype_guid as datatype_guid
, p.is_extended
, p.no_history
, p.signature
from scoped_templates as s
inner join [orm_meta].[properties] as p
on p.template_guid = s.in_scope_template_guid
)
, template_inheritance as
(
select distinct
s.in_scope_template_guid
, isnull(inherit.parent_template_guid, s.in_scope_template_guid) as source_guid --isnull allows us to make templates with no inheritance to be their own source
, DENSE_RANK() over ( partition by s.in_scope_template_guid
order by case supers.echelon
when 0 then 32000
else inherit.ordinal
end
, supers.echelon desc
) as inherit_rank
from scoped_templates as s
cross apply [orm_meta].[super_templates](s.in_scope_template_guid) as supers
left join [orm_meta].[inheritance] as inherit
on supers.template_guid = inherit.parent_template_guid
)
, all_inherited_properties as
(
select
p.property_guid as masked_property_guid
, p.template_guid as masked_template_guid
, p.name as masked_name
, p.datatype_guid as masked_datatype_guid
, p.is_extended as masked_is_extended
, p.no_history as masked_no_history
, p.signature as masked_signature
, case when isnull(p.is_extended,0) = 0 then 1
else 0
end as is_base
, i.in_scope_template_guid
, i.inherit_rank
from template_inheritance as i
inner join [orm_meta].[properties] as p
on p.template_guid = i.source_guid
)
, in_scoped_template_overrides as
( -- Overridden properties
select distinct
p.in_scope_template_guid as top_most_in_scope_guid
, p.masked_name as top_most_property_name
, min(p.inherit_rank) as top_most_inherit_rank
from all_inherited_properties as p
where isnull(p.masked_is_extended,0) = 0 -- Only include base properties
group by p.in_scope_template_guid, p.masked_name
having sum(p.is_base) > 0 -- ANY parent property can force base properties
)
, in_scoped_template_nonoverrides as
(
select p.in_scope_template_guid as top_most_in_scope_guid
, p.masked_name as top_most_property_name
, max(p.inherit_rank) as top_most_inherit_rank
from all_inherited_properties as p
left join in_scoped_template_overrides as o
on p.in_scope_template_guid = o.top_most_in_scope_guid
and p.masked_name = o.top_most_property_name
where o.top_most_in_scope_guid is null
and p.masked_template_guid = p.in_scope_template_guid
group by p.in_scope_template_guid, p.masked_name
)
, fully_scoped_mask as
(
select
aip.in_scope_template_guid as template_guid
, isto.top_most_property_name as property_name
, AIP.in_scope_template_guid
, aip.masked_property_guid
, aip.masked_template_guid
, aip.masked_name
, aip.masked_datatype_guid
, aip.masked_is_extended
, aip.masked_no_history
, aip.masked_signature
from all_inherited_properties as aip
inner join (select top_most_in_scope_guid, top_most_property_name, top_most_inherit_rank
from in_scoped_template_nonoverrides
union all
select top_most_in_scope_guid, top_most_property_name, top_most_inherit_rank
from in_scoped_template_overrides) as isto
on aip.in_scope_template_guid = isto.top_most_in_scope_guid
and aip.masked_name = isto.top_most_property_name
and aip.inherit_rank = isto.top_most_inherit_rank
inner join [orm_meta].[templates] as t
on aip.masked_template_guid = t.template_guid
inner join [orm_meta].[templates] as it
on aip.in_scope_template_guid = it.template_guid
)
select
fsm.in_scope_template_guid as scoped_template_guid -- we need this as a breadcrumb
, fsm.masked_property_guid
, fsm.masked_template_guid
, fsm.masked_name
, fsm.masked_datatype_guid
, fsm.masked_is_extended
, fsm.masked_no_history
, fsm.masked_signature
, p.property_guid as current_property_guid
, p.template_guid as current_template_guid
, p.name as current_name
, p.datatype_guid as current_datatype_guid
, p.is_extended as current_is_extended
, p.no_history as current_no_history
, p.signature as current_signature
from fully_scoped_mask as fsm
left join [orm_meta].[properties] as p
on fsm.template_guid = p.template_guid
and fsm.property_name = p.name
)
GO
|
with base as (
select *
from {{ ref('stg_zendesk__ticket_comment_tmp') }}
),
fields as (
select
/*
The below macro is used to generate the correct SQL for package staging models. It takes a list of columns
that are expected/needed (staging_columns from dbt_zendesk_source/models/tmp/) and compares it with columns
in the source (source_columns from dbt_zendesk_source/macros/).
For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).
*/
{{
fivetran_utils.fill_staging_columns(
source_columns=adapter.get_columns_in_relation(ref('stg_zendesk__ticket_comment_tmp')),
staging_columns=get_ticket_comment_columns()
)
}}
from base
),
final as (
select
id as ticket_comment_id,
_fivetran_synced,
body,
created as created_at,
public as is_public,
ticket_id,
user_id,
facebook_comment as is_facebook_comment,
tweet as is_tweet,
voice_comment as is_voice_comment
from fields
)
select *
from final
|
<filename>aws-test/tests/aws_backup_plan/test-turbot-query.sql
select akas
from aws.aws_backup_plan
where backup_plan_id = '{{ output.id.value }}'; |
update ACT_GE_PROPERTY set VALUE_ = '6.5.0.2' where NAME_ = 'variable.schema.version';
|
-- phpMyAdmin SQL Dump
-- version 4.2.7.1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: 2015-11-10 08:13:00
-- 服务器版本: 5.6.20
-- PHP Version: 5.5.15
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: `wemall`
--
-- --------------------------------------------------------
--
-- 表的结构 `wemall_addon_card_config`
--
CREATE TABLE IF NOT EXISTS `wemall_addon_card_config` (
`id` int(10) unsigned NOT NULL,
`notify_url` text NOT NULL,
`about_url` text NOT NULL,
`address` text NOT NULL,
`tel` text NOT NULL,
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- 转存表中的数据 `wemall_addon_card_config`
--
INSERT INTO `wemall_addon_card_config` (`id`, `notify_url`, `about_url`, `address`, `tel`, `time`) VALUES
(1, '#', '#', '河南郑州', '10086', '2015-11-10 03:58:23');
-- --------------------------------------------------------
--
-- 表的结构 `wemall_ads`
--
CREATE TABLE IF NOT EXISTS `wemall_ads` (
`id` int(10) unsigned NOT NULL,
`name` text NOT NULL,
`sub` text NOT NULL,
`file_id` int(11) NOT NULL,
`url` text NOT NULL,
`remark` text NOT NULL,
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;
--
-- 转存表中的数据 `wemall_ads`
--
INSERT INTO `wemall_ads` (`id`, `name`, `sub`, `file_id`, `url`, `remark`, `time`) VALUES
(1, '1', '', 7, '', '1', '2015-11-06 06:58:06'),
(2, '2', '', 6, '', '1', '2015-11-06 06:58:20'),
(3, '3', '', 5, '', '1', '2015-11-06 06:58:30'),
(4, '4', '', 4, '', '1', '2015-11-06 06:58:41'),
(5, '5', '', 3, '', '1', '2015-11-06 06:58:50'),
(6, '7', '', 2, '', '1', '2015-11-06 06:58:57');
-- --------------------------------------------------------
--
-- 表的结构 `wemall_alipay`
--
CREATE TABLE IF NOT EXISTS `wemall_alipay` (
`id` int(11) NOT NULL,
`alipayname` varchar(100) DEFAULT NULL COMMENT '支付宝名称',
`partner` varchar(100) DEFAULT NULL COMMENT '合作身份者id',
`key` varchar(100) DEFAULT NULL COMMENT '安全检验码',
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- 转存表中的数据 `wemall_alipay`
--
INSERT INTO `wemall_alipay` (`id`, `alipayname`, `partner`, `key`, `time`) VALUES
(1, '', '', '', '2015-11-06 09:23:05');
-- --------------------------------------------------------
--
-- 表的结构 `wemall_analysis`
--
CREATE TABLE IF NOT EXISTS `wemall_analysis` (
`id` int(10) unsigned NOT NULL,
`orders` int(11) NOT NULL,
`trades` float NOT NULL,
`registers` int(11) NOT NULL,
`users` int(11) NOT NULL,
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `wemall_artical`
--
CREATE TABLE IF NOT EXISTS `wemall_artical` (
`id` int(10) unsigned NOT NULL,
`title` text NOT NULL,
`file_id` int(11) NOT NULL,
`author` text NOT NULL,
`sub` text NOT NULL,
`content` text NOT NULL,
`remark` text NOT NULL,
`visiter` int(11) NOT NULL,
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `wemall_auth_group`
--
CREATE TABLE IF NOT EXISTS `wemall_auth_group` (
`id` mediumint(8) unsigned NOT NULL,
`title` char(100) NOT NULL DEFAULT '',
`status` tinyint(1) NOT NULL DEFAULT '1',
`rules` text NOT NULL,
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- 转存表中的数据 `wemall_auth_group`
--
INSERT INTO `wemall_auth_group` (`id`, `title`, `status`, `rules`, `time`) VALUES
(1, '超级管理员', 1, '1', '2015-11-06 03:46:17');
-- --------------------------------------------------------
--
-- 表的结构 `wemall_auth_group_access`
--
CREATE TABLE IF NOT EXISTS `wemall_auth_group_access` (
`id` int(10) unsigned NOT NULL,
`uid` int(11) NOT NULL,
`group_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- 转存表中的数据 `wemall_auth_group_access`
--
INSERT INTO `wemall_auth_group_access` (`id`, `uid`, `group_id`) VALUES
(1, 1, 1);
-- --------------------------------------------------------
--
-- 表的结构 `wemall_auth_rule`
--
CREATE TABLE IF NOT EXISTS `wemall_auth_rule` (
`id` mediumint(8) unsigned NOT NULL,
`name` char(80) NOT NULL DEFAULT '',
`title` char(20) NOT NULL DEFAULT '',
`type` int(11) NOT NULL,
`status` tinyint(1) NOT NULL DEFAULT '1',
`condition` char(100) NOT NULL DEFAULT '',
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=59 ;
--
-- 转存表中的数据 `wemall_auth_rule`
--
INSERT INTO `wemall_auth_rule` (`id`, `name`, `title`, `type`, `status`, `condition`, `time`) VALUES
(1, 'Admin/Index/index', '系统首页', 1, 1, '', '2015-10-13 21:51:29'),
(2, 'Admin/Index/userChart', '用户分析', 1, 1, '', '2015-10-18 02:19:06'),
(3, 'Admin/Config/shopSet', '商城设置', 1, 1, '', '2015-10-14 10:15:02'),
(4, 'Admin/Config/addressSet', '地址设置', 1, 1, '', '2015-10-14 06:03:58'),
(5, 'Admin/Config/tplSet', '模板设置', 1, 1, '', '2015-10-14 06:04:24'),
(6, 'Admin/Config/alipaySet', '支付宝设置', 1, 1, '', '2015-10-14 06:04:46'),
(7, 'Admin/Config/wxPrintSet', '微信打印机设置', 1, 1, '', '2015-10-14 06:05:04'),
(8, 'Admin/Config/smsSet', '短信验证设置', 1, 1, '', '2015-10-14 06:05:26'),
(9, 'Admin/Config/wxTplMsgSet', '微信模板消息设置', 1, 1, '', '2015-10-14 06:05:45'),
(10, 'Admin/Weixin/wxSet', '微信设置', 1, 1, '', '2015-10-14 06:07:56'),
(11, 'Admin/Weixin/wxMenuSet', '微信菜单设置', 1, 1, '', '2015-10-14 06:08:13'),
(12, 'Admin/Weixin/wxReplySet', '自定义回复设置', 1, 1, '', '2015-10-14 06:08:26'),
(13, 'Admin/Shop/ads', '广告管理', 1, 1, '', '2015-10-14 06:08:44'),
(14, 'Admin/Shop/menu', '菜单管理', 1, 1, '', '2015-10-14 06:09:00'),
(15, 'Admin/Shop/product', '商品管理', 1, 1, '', '2015-10-14 06:09:15'),
(16, 'Admin/Order/order', '订单管理', 1, 1, '', '2015-10-14 06:09:41'),
(17, 'Admin/Trade/trade', '财务管理', 1, 1, '', '2015-10-14 06:09:59'),
(18, 'Admin/User/authGroup', '用户组管理', 1, 1, '', '2015-10-14 06:10:16'),
(19, 'Admin/Addon/addon', '插件管理', 1, 1, '', '2015-10-14 06:11:01'),
(20, 'Admin/User/authRule', '权限管理', 1, 1, '', '2015-10-14 06:10:16'),
(21, 'Admin/User/user', '用户管理', 1, 1, '', '2015-10-14 10:18:46'),
(22, 'Admin/Config/addProvince', '添加省份', 1, 1, '', '2015-10-14 10:19:00'),
(23, 'Admin/Config/modifyProvince', '修改省份', 1, 1, '', '2015-10-14 06:03:58'),
(24, 'Admin/Config/delProvince', '删除省份', 1, 1, '', '2015-10-14 06:03:58'),
(25, 'Admin/Config/addCity', '添加城市', 1, 1, '', '2015-10-14 06:03:58'),
(26, 'Admin/Config/city', '城市管理', 1, 1, '', '2015-10-14 10:19:56'),
(27, 'Admin/Config/delCity', '删除城市', 1, 1, '', '2015-10-14 06:03:58'),
(28, 'Admin/Config/modifyCity', '修改城市', 1, 1, '', '2015-10-14 06:03:58'),
(29, 'Admin/File/imageUploader', '图片管理', 1, 1, '', '2015-10-14 10:20:12'),
(30, 'Admin/File/delImage', '删除图片', 1, 1, '', '2015-10-14 10:20:18'),
(31, 'Admin/File/uploadImage', '上传图片', 1, 1, '', '2015-10-14 10:20:24'),
(32, 'Admin/Shop/addMenu', '添加菜单', 1, 1, '', '2015-10-14 06:08:44'),
(33, 'Admin/Shop/modifyMenu', '修改菜单', 1, 1, '', '2015-10-14 06:08:44'),
(34, 'Admin/Shop/delMenu', '删除菜单', 1, 1, '', '2015-10-14 06:08:44'),
(35, 'Admin/Shop/addProduct', '添加商品', 1, 1, '', '2015-10-14 06:08:44'),
(36, 'Admin/Shop/modifyProduct', '修改商品', 1, 1, '', '2015-10-14 06:08:44'),
(37, 'Admin/Shop/updateProduct', '更新商品', 1, 1, '', '2015-10-18 03:09:21'),
(38, 'Admin/Shop/delProduct', '删除商品', 1, 1, '', '2015-10-14 10:21:04'),
(39, 'Admin/Shop/addAds', '添加广告', 1, 1, '', '2015-10-14 10:21:11'),
(40, 'Admin/Shop/modifyAds', '修改广告', 1, 1, '', '2015-10-14 10:21:17'),
(41, 'Admin/Shop/delAds', '删除广告', 1, 1, '', '2015-10-14 10:21:23'),
(42, 'Admin/User/login', '用户登录', 1, 1, '', '2015-10-14 10:21:31'),
(43, 'Admin/User/logout', '用户注销', 1, 1, '', '2015-10-14 10:21:37'),
(44, 'Admin/User/delUser', '删除用户', 1, 1, '', '2015-10-14 10:21:43'),
(45, 'Admin/User/addUser', '添加用户', 1, 1, '', '2015-10-14 10:21:48'),
(46, 'Admin/User/modifyUser', '修改用户', 1, 1, '', '2015-10-14 10:21:54'),
(47, 'Admin/User/addAuthGroup', '添加用户组', 1, 1, '', '2015-10-14 10:22:00'),
(48, 'Admin/User/modifyAuthGroup', '修改用户组', 1, 1, '', '2015-10-14 10:22:09'),
(49, 'Admin/User/delAuthGroup', '删除用户组', 1, 1, '', '2015-10-14 10:22:14'),
(50, 'Admin/Base/getNotify', '系统通知', 1, 1, '', '2015-10-18 02:16:38'),
(51, 'Admin/Addon/addonShop', '插件商店', 1, 1, '', '2015-10-14 06:11:01'),
(52, 'Admin/Index/orderChart', '订单分析', 1, 1, '', '2015-10-18 02:19:17'),
(53, 'Admin/Index/productChart', '商品分析', 1, 1, '', '2015-10-18 02:19:35'),
(54, 'Admin/Shop/comment', '评论管理', 1, 1, '', '2015-10-14 10:21:23'),
(55, 'Admin/Shop/productSearch', '商品搜索', 1, 1, '', '2015-10-18 02:21:13'),
(56, 'Admin/Order/search', '订单搜索', 1, 1, '', '2015-10-18 02:24:07'),
(57, 'Admin/Shop/delComment', '删除评论', 1, 1, '', '2015-10-14 10:21:23'),
(58, 'Admin/Order/update', '订单操作', 1, 1, '', '2015-10-18 03:00:46');
-- --------------------------------------------------------
--
-- 表的结构 `wemall_comment`
--
CREATE TABLE IF NOT EXISTS `wemall_comment` (
`id` int(10) unsigned NOT NULL,
`product_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`name` text NOT NULL,
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `wemall_config`
--
CREATE TABLE IF NOT EXISTS `wemall_config` (
`id` int(10) unsigned NOT NULL,
`name` text NOT NULL,
`notification` text NOT NULL,
`reminder` text NOT NULL,
`tel` text NOT NULL,
`address` text NOT NULL,
`freight` float NOT NULL,
`full` int(11) NOT NULL COMMENT '满',
`discount` int(11) NOT NULL COMMENT '减',
`delivery_time` text NOT NULL,
`theme` text NOT NULL,
`qrcode` text NOT NULL,
`oauth` tinyint(1) NOT NULL,
`oauth_debug` int(1) NOT NULL,
`balance_payment` tinyint(1) NOT NULL,
`wechat_payment` tinyint(1) NOT NULL,
`alipay_payment` tinyint(1) NOT NULL,
`cool_payment` tinyint(1) NOT NULL,
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- 转存表中的数据 `wemall_config`
--
INSERT INTO `wemall_config` (`id`, `name`, `notification`, `reminder`, `tel`, `address`, `freight`, `full`, `discount`, `delivery_time`, `theme`, `qrcode`, `oauth`, `oauth_debug`, `balance_payment`, `wechat_payment`, `alipay_payment`, `cool_payment`, `time`) VALUES
(1, 'wemall商城', '欢迎来到wemall商城!', '您的订单我们将在约定的时间送达,谢谢!收货时间在15:30~17:30时间段内,请留意您的手机。', '10086', '河南省郑州市', 0, 20, 2, '10:30-11:30,14:30-15:30,16:00-17:00,15:30-17:30', 'default', 'https://mp.weixin.qq.com/cgi-bin/showqrcode?ticket=gQHD7zoAAAAAAAAAASxodHRwOi8vd2VpeGluLnFxLmNvbS9xL0lramZuV0xsX2ZhQUljSzJ4V0JtAAIEVpV7VQMEAAAAAA%3D%3D', 1, 1, 1, 1, 1, 1, '2015-11-03 03:49:10');
-- --------------------------------------------------------
--
-- 表的结构 `wemall_contact`
--
CREATE TABLE IF NOT EXISTS `wemall_contact` (
`id` int(10) unsigned NOT NULL,
`user_id` int(11) NOT NULL,
`name` text NOT NULL,
`phone` text NOT NULL,
`province` text,
`city` text,
`district` text,
`address` text NOT NULL,
`postcode` text,
`default` tinyint(1) NOT NULL,
`remark` text,
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `wemall_file`
--
CREATE TABLE IF NOT EXISTS `wemall_file` (
`id` int(10) unsigned NOT NULL,
`name` text NOT NULL,
`ext` text NOT NULL,
`type` text NOT NULL,
`savename` text NOT NULL,
`savepath` text NOT NULL,
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=30 ;
--
-- 转存表中的数据 `wemall_file`
--
INSERT INTO `wemall_file` (`id`, `name`, `ext`, `type`, `savename`, `savepath`, `time`) VALUES
(1, '55e6b902cef38.jpg', 'jpg', 'image/jpeg', '56149e72a10c4.jpg', '2015-10-07/', '2015-10-07 04:24:18'),
(2, '5615e26f54d75.jpg', 'jpg', 'image/jpeg', '563c4f4336719.jpg', '2015-11-06/', '2015-11-06 06:57:07'),
(3, '5615ea4fd93f4.jpg', 'jpg', 'image/jpeg', '563c4f433762a.jpg', '2015-11-06/', '2015-11-06 06:57:07'),
(4, '5615eaa90c582.jpg', 'jpg', 'image/jpeg', '563c4f4337c28.jpg', '2015-11-06/', '2015-11-06 06:57:07'),
(5, '5615eaa90d34c.jpg', 'jpg', 'image/jpeg', '563c4f4338996.jpg', '2015-11-06/', '2015-11-06 06:57:07'),
(6, '5615eaa90dfad.jpg', 'jpg', 'image/jpeg', '563c4f4339b2d.jpg', '2015-11-06/', '2015-11-06 06:57:07'),
(7, '5615eaa90e804.jpg', 'jpg', 'image/jpeg', '563c4f433ab12.jpg', '2015-11-06/', '2015-11-06 06:57:07'),
(9, '1-370x370-1420.jpg', 'jpg', 'image/jpeg', '563c52adac85f.jpg', '2015-11-06/', '2015-11-06 07:11:41'),
(10, '1-370x370-5844-4KHF8KDU.jpg', 'jpg', 'image/jpeg', '563c52bb4b7eb.jpg', '2015-11-06/', '2015-11-06 07:11:55'),
(11, '1-370x370-5985-9KPFBWR1.jpg', 'jpg', 'image/jpeg', '563c52bb4bced.jpg', '2015-11-06/', '2015-11-06 07:11:55'),
(12, '1-370x370-6486-BXPDCPCU.jpg', 'jpg', 'image/jpeg', '563c540523c16.jpg', '2015-11-06/', '2015-11-06 07:17:25'),
(13, '1-370x370-5942-KCHKPX9K.jpg', 'jpg', 'image/jpeg', '563c540524b9c.jpg', '2015-11-06/', '2015-11-06 07:17:25'),
(14, '1-370x370-4394-3YU37TSK.jpg', 'jpg', 'image/jpeg', '563c54052539a.jpg', '2015-11-06/', '2015-11-06 07:17:25'),
(15, '1-370x370-3265-PU41F9AB.jpg', 'jpg', 'image/jpeg', '563c540525aca.jpg', '2015-11-06/', '2015-11-06 07:17:25'),
(16, '1-370x370-4854-4TC46UPX.jpg', 'jpg', 'image/jpeg', '563c5405260d0.jpg', '2015-11-06/', '2015-11-06 07:17:25'),
(17, '1-370x370-6423-YSDU6WA6.jpg', 'jpg', 'image/jpeg', '563c540526487.jpg', '2015-11-06/', '2015-11-06 07:17:25'),
(18, '55fa7cf5d3c70.jpg', 'jpg', 'image/jpeg', '563c61f936dbd.jpg', '2015-11-06/', '2015-11-06 08:16:57'),
(19, '55fa79e11089e.png', 'png', 'image/jpeg', '563c61f937aff.png', '2015-11-06/', '2015-11-06 08:16:57'),
(20, '55fa76b46c708.png', 'png', 'image/jpeg', '563c61f938112.png', '2015-11-06/', '2015-11-06 08:16:57'),
(21, '55fa763dbe297.png', 'png', 'image/jpeg', '563c61f9385ba.png', '2015-11-06/', '2015-11-06 08:16:57'),
(22, '55fa76266b041.png', 'png', 'image/jpeg', '563c61f938931.png', '2015-11-06/', '2015-11-06 08:16:57'),
(23, '55fa759ae7a02.png', 'png', 'image/jpeg', '563c61f938cac.png', '2015-11-06/', '2015-11-06 08:16:57'),
(24, '55fa73efc80f0.png', 'png', 'image/jpeg', '563c61f939289.png', '2015-11-06/', '2015-11-06 08:16:57'),
(25, '55fa737d985f2.png', 'png', 'image/jpeg', '563c61f9395ed.png', '2015-11-06/', '2015-11-06 08:16:57'),
(26, '563885a8a6b84.jpg', 'jpg', 'image/jpeg', '563c61f93985d.jpg', '2015-11-06/', '2015-11-06 08:16:57'),
(27, '1417595621584.jpg', 'jpg', 'image/jpeg', '563c68eff3721.jpg', '2015-11-06/', '2015-11-06 08:46:40'),
(28, '1417597271905.jpg', 'jpg', 'image/jpeg', '563c695de2403.jpg', '2015-11-06/', '2015-11-06 08:48:29'),
(29, '1434268044104.jpg', 'jpg', 'image/jpeg', '563c695de2cbe.jpg', '2015-11-06/', '2015-11-06 08:48:29');
-- --------------------------------------------------------
--
-- 表的结构 `wemall_loc_city`
--
CREATE TABLE IF NOT EXISTS `wemall_loc_city` (
`id` int(10) unsigned NOT NULL,
`province_id` int(11) NOT NULL,
`name` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- 转存表中的数据 `wemall_loc_city`
--
INSERT INTO `wemall_loc_city` (`id`, `province_id`, `name`) VALUES
(1, 1, '郑州市');
-- --------------------------------------------------------
--
-- 表的结构 `wemall_loc_district`
--
CREATE TABLE IF NOT EXISTS `wemall_loc_district` (
`id` int(10) unsigned NOT NULL,
`province_id` int(11) NOT NULL,
`city_id` int(11) NOT NULL,
`name` text NOT NULL,
`zipcode` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `wemall_loc_province`
--
CREATE TABLE IF NOT EXISTS `wemall_loc_province` (
`id` int(10) unsigned NOT NULL,
`name` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- 转存表中的数据 `wemall_loc_province`
--
INSERT INTO `wemall_loc_province` (`id`, `name`) VALUES
(1, '河南省');
-- --------------------------------------------------------
--
-- 表的结构 `wemall_log`
--
CREATE TABLE IF NOT EXISTS `wemall_log` (
`id` int(10) unsigned NOT NULL,
`user_id` int(11) NOT NULL,
`type` int(11) NOT NULL,
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`product_id` int(11) NOT NULL,
`order_id` int(11) NOT NULL,
`name` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `wemall_menu`
--
CREATE TABLE IF NOT EXISTS `wemall_menu` (
`id` int(11) unsigned NOT NULL,
`name` text NOT NULL,
`pid` int(11) NOT NULL,
`file_id` int(11) NOT NULL,
`remark` text NOT NULL,
`rank` int(11) NOT NULL,
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;
--
-- 转存表中的数据 `wemall_menu`
--
INSERT INTO `wemall_menu` (`id`, `name`, `pid`, `file_id`, `remark`, `rank`, `time`) VALUES
(1, '水果', 0, 0, '', 0, '2015-11-06 07:00:08'),
(2, '生鲜', 0, 0, '', 0, '2015-11-06 08:05:39'),
(3, '外卖', 0, 0, '', 0, '2015-11-06 08:06:06'),
(4, '超市', 0, 0, '', 0, '2015-11-06 08:06:11'),
(5, '社区', 0, 0, '', 0, '2015-11-06 07:01:11');
-- --------------------------------------------------------
--
-- 表的结构 `wemall_order`
--
CREATE TABLE IF NOT EXISTS `wemall_order` (
`id` int(10) unsigned NOT NULL,
`user_id` int(11) NOT NULL,
`contact_id` int(11) NOT NULL,
`orderid` text NOT NULL,
`totalprice` text NOT NULL,
`payment` text NOT NULL,
`pay_status` int(11) NOT NULL,
`delivery_time` text NOT NULL,
`freight` float NOT NULL,
`discount` int(11) NOT NULL,
`remark` text,
`status` int(11) NOT NULL COMMENT '0:未处理,1:已发货,-2:退货中,-3:退货完成,-4:申请退货,-1:交易取消,2:交易完成',
`time` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `wemall_order_detail`
--
CREATE TABLE IF NOT EXISTS `wemall_order_detail` (
`id` int(10) unsigned NOT NULL,
`order_id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
`file_id` int(11) NOT NULL,
`name` text NOT NULL,
`attr` text NOT NULL,
`num` int(11) NOT NULL,
`price` text NOT NULL,
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `wemall_product`
--
CREATE TABLE IF NOT EXISTS `wemall_product` (
`id` int(10) unsigned NOT NULL,
`menu_id` int(11) NOT NULL,
`name` text NOT NULL,
`price` text NOT NULL,
`score` float NOT NULL,
`attrs` text NOT NULL,
`albums` text NOT NULL,
`store` int(11) NOT NULL,
`sales` int(11) NOT NULL,
`visiter` int(11) NOT NULL,
`file_id` int(11) NOT NULL,
`detail` text NOT NULL,
`status` int(11) NOT NULL COMMENT '0:售罄,-1:下架,1:出售',
`recommend` int(11) NOT NULL,
`remark` text NOT NULL,
`rank` int(11) NOT NULL,
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=22 ;
--
-- 转存表中的数据 `wemall_product`
--
INSERT INTO `wemall_product` (`id`, `menu_id`, `name`, `price`, `score`, `attrs`, `albums`, `store`, `sales`, `visiter`, `file_id`, `detail`, `status`, `recommend`, `remark`, `rank`, `time`) VALUES
(1, 1, '橙子', '12', 12, '', '', 0, 0, 2, 10, '', 1, 0, '', 0, '2015-11-06 07:48:11'),
(2, 1, '香蕉', '12', 12, '', '', 0, 0, 1, 9, '', 1, 0, '', 0, '2015-11-10 05:13:01'),
(3, 1, '苹果', '12', 12, '', '', 0, 1, 12, 11, '', 1, 1, '', 0, '2015-11-09 15:51:46'),
(4, 1, '香梨', '12', 12, '', '', 0, 0, 0, 17, '', 1, 0, '', 0, '2015-11-06 07:17:39'),
(5, 1, '葡萄', '12', 12, '', '', 0, 0, 0, 16, '', 1, 0, '', 0, '2015-11-06 07:18:02'),
(6, 1, '菠萝', '12', 12, '', '', 0, 0, 0, 15, '', 1, 0, '', 0, '2015-11-06 07:18:18'),
(7, 1, '火龙果', '12', 12, '', '', 0, 0, 2, 14, '', 1, 0, '', 0, '2015-11-06 09:38:49'),
(8, 1, '奇异果', '12', 12, '', '', 0, 0, 0, 13, '', 1, 0, '', 0, '2015-11-06 07:18:57'),
(9, 1, '蓝莓', '12', 12, '', '', 0, 0, 1, 12, '', 1, 0, '', 0, '2015-11-06 08:01:53'),
(10, 2, '清蒸鲈鱼', '12', 12, '', '', 0, 0, 0, 24, '', 1, 0, '', 0, '2015-11-06 08:17:37'),
(11, 2, '香辣大闸蟹', '12', 12, '', '', 0, 0, 0, 18, '', 1, 0, '', 0, '2015-11-06 08:19:07'),
(12, 2, '大米饽饽嫩羊肉', '12', 12, '', '', 0, 0, 1, 26, '', 1, 0, '', 0, '2015-11-06 08:21:04'),
(13, 2, '蘸汁菠菜', '12', 12, '', '', 0, 0, 0, 25, '', 1, 0, '', 0, '2015-11-06 08:20:46'),
(14, 2, '手抓羊排', '12', 12, '', '', 0, 0, 0, 23, '', 1, 0, '', 0, '2015-11-06 08:21:29'),
(15, 2, '美汁活鲍', '12', 12, '', '', 0, 0, 0, 22, '', 1, 0, '', 0, '2015-11-06 08:22:13'),
(16, 2, '香辣花甲', '12', 12, '', '', 0, 0, 0, 20, '', 1, 0, '', 0, '2015-11-06 08:23:29'),
(17, 2, '香辣蛏子', '12', 12, '', '', 0, 0, 0, 19, '', 1, 0, '', 0, '2015-11-06 08:27:19'),
(18, 2, '清蒸黄花鱼', '12', 12, '', '', 0, 0, 0, 21, '', 1, 0, '', 0, '2015-11-06 08:29:37'),
(19, 3, '红烧排骨', '12', 12, '', '', 0, 0, 1, 27, '', 1, 0, '', 0, '2015-11-06 08:46:58'),
(20, 3, '京酱肉丝', '12', 12, '', '', 0, 0, 1, 29, '', 1, 0, '', 0, '2015-11-10 02:56:34'),
(21, 3, '肉末茄子', '12', 12, '', '', 0, 0, 0, 28, '', 1, 0, '', 0, '2015-11-10 02:58:03');
-- --------------------------------------------------------
--
-- 表的结构 `wemall_sms`
--
CREATE TABLE IF NOT EXISTS `wemall_sms` (
`id` int(10) unsigned NOT NULL,
`user` text NOT NULL,
`pass` text NOT NULL,
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- 转存表中的数据 `wemall_sms`
--
INSERT INTO `wemall_sms` (`id`, `user`, `pass`, `time`) VALUES
(1, '1', '1', '2015-11-06 03:57:15');
-- --------------------------------------------------------
--
-- 表的结构 `wemall_trade`
--
CREATE TABLE IF NOT EXISTS `wemall_trade` (
`id` int(10) unsigned NOT NULL,
`tradeid` text NOT NULL,
`user_id` int(11) NOT NULL,
`money` float NOT NULL,
`payment` text NOT NULL,
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `wemall_user`
--
CREATE TABLE IF NOT EXISTS `wemall_user` (
`id` int(10) unsigned NOT NULL,
`openid` text NOT NULL,
`username` text NOT NULL,
`phone` text NOT NULL,
`password` text NOT NULL,
`token` text,
`avater` text NOT NULL,
`sex` tinyint(4) NOT NULL COMMENT '1:男,2女',
`city` text NOT NULL,
`province` text NOT NULL,
`country` text NOT NULL,
`language` text NOT NULL,
`subscribe` tinyint(1) NOT NULL,
`money` float NOT NULL,
`score` float NOT NULL,
`status` int(11) NOT NULL,
`lastip` text NOT NULL,
`ctime` text NOT NULL,
`buy_num` int(11) NOT NULL,
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
--
-- 转存表中的数据 `wemall_user`
--
INSERT INTO `wemall_user` (`id`, `openid`, `username`, `phone`, `password`, `token`, `avater`, `sex`, `city`, `province`, `country`, `language`, `subscribe`, `money`, `score`, `status`, `lastip`, `ctime`, `buy_num`, `time`) VALUES
(1, '', 'admin', '', '2<PASSWORD>', '', '', 0, '', '', '', '', 0, 0, 0, 0, '', '', 0, '2015-11-06 03:50:57'),
(2, 'oojFxs4s3PSZVjL-X5UpFPhNfG0c', 'better', '', '21232f297a57a5a743894a0e4a801fc3', '', 'http://wx.qlogo.cn/mmopen/KMt8YcxoTr7iaBlsovicVoDriciaLBcQtic7D4IyETkKusiasVicTJq5s2PianSUeg9HuVjGXQQQ9Pz07vyrdE7lMQ1EGw/0', 0, '', '', '', '', 0, 12.3, 144, 1, '0.0.0.0', '2015-10-19 12:40:19', 73, '2015-11-09 15:51:46');
-- --------------------------------------------------------
--
-- 表的结构 `wemall_user_favorites`
--
CREATE TABLE IF NOT EXISTS `wemall_user_favorites` (
`id` int(11) NOT NULL,
`product_id` text NOT NULL,
`user_id` int(11) NOT NULL,
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- 表的结构 `wemall_wx_config`
--
CREATE TABLE IF NOT EXISTS `wemall_wx_config` (
`id` int(5) NOT NULL,
`token` text NOT NULL,
`appid` text NOT NULL,
`appsecret` text NOT NULL,
`encodingaeskey` text NOT NULL,
`switch` int(11) NOT NULL,
`mchid` text NOT NULL,
`key` text NOT NULL,
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- 转存表中的数据 `wemall_wx_config`
--
INSERT INTO `wemall_wx_config` (`id`, `token`, `appid`, `appsecret`, `encodingaeskey`, `switch`, `mchid`, `key`, `time`) VALUES
(1, '', '', '', '', 0, '', '', '2015-11-06 09:23:58');
-- --------------------------------------------------------
--
-- 表的结构 `wemall_wx_menu`
--
CREATE TABLE IF NOT EXISTS `wemall_wx_menu` (
`id` int(5) NOT NULL,
`type` text,
`name` text NOT NULL,
`key` text NOT NULL,
`url` text NOT NULL,
`pid` int(5) NOT NULL DEFAULT '0',
`rank` text NOT NULL,
`status` tinyint(1) NOT NULL,
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
--
-- 转存表中的数据 `wemall_wx_menu`
--
INSERT INTO `wemall_wx_menu` (`id`, `type`, `name`, `key`, `url`, `pid`, `rank`, `status`, `time`) VALUES
(1, 'view', '商业版', '', 'http://1.inuoer.com/wemall/App/Index/index', 0, '', 0, '2015-11-06 09:25:17'),
(2, 'view', '分销版', '', 'http://1.inuoer.com/wfx/App/Shop/index', 0, '', 0, '2015-11-06 09:25:28'),
(3, 'click', 'QQ客服', 'qqkf', '', 0, '', 0, '2015-11-06 09:25:40');
-- --------------------------------------------------------
--
-- 表的结构 `wemall_wx_print`
--
CREATE TABLE IF NOT EXISTS `wemall_wx_print` (
`id` int(11) NOT NULL,
`apikey` varchar(100) DEFAULT NULL COMMENT 'apikey',
`mkey` varchar(100) DEFAULT NULL COMMENT '秘钥',
`partner` varchar(100) DEFAULT NULL COMMENT '用户id',
`machine_code` varchar(100) DEFAULT NULL COMMENT '机器码',
`switch` int(11) NOT NULL,
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- 转存表中的数据 `wemall_wx_print`
--
INSERT INTO `wemall_wx_print` (`id`, `apikey`, `mkey`, `partner`, `machine_code`, `switch`, `time`) VALUES
(1, '1', '1', '1', '1', 0, '2015-11-06 03:57:11');
-- --------------------------------------------------------
--
-- 表的结构 `wemall_wx_reply`
--
CREATE TABLE IF NOT EXISTS `wemall_wx_reply` (
`id` int(10) unsigned NOT NULL,
`type` text NOT NULL,
`title` text NOT NULL,
`description` text NOT NULL,
`file_id` int(11) NOT NULL,
`url` text NOT NULL,
`key` text NOT NULL,
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
--
-- 转存表中的数据 `wemall_wx_reply`
--
INSERT INTO `wemall_wx_reply` (`id`, `type`, `title`, `description`, `file_id`, `url`, `key`, `time`) VALUES
(1, 'text', '恭喜你加入WeMall,欢迎体验WeMall商业版,WeMall分销版和WeMall开源版。WeMall商业版更新,速度提升30%,致力于打造世界上最快,体验最好的微商城。客服QQ:2034210985', '', 0, '', 'subscribe', '2015-11-06 09:26:02'),
(2, 'news', '欢迎来到商业版wemall商城', '欢迎来到商业版wemall商城', 1, 'http://1.inuoer.com/3/App/Index/index', '商城', '2015-11-06 09:26:36');
-- --------------------------------------------------------
--
-- 表的结构 `wemall_wx_tplmsg`
--
CREATE TABLE IF NOT EXISTS `wemall_wx_tplmsg` (
`id` int(10) unsigned NOT NULL,
`template_id_short` text NOT NULL,
`template_id` text NOT NULL,
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
--
-- 转存表中的数据 `wemall_wx_tplmsg`
--
INSERT INTO `wemall_wx_tplmsg` (`id`, `template_id_short`, `template_id`, `time`) VALUES
(1, 'OPENTM201785396', '2fXIC52dOVv9NXPbpBN7O9C9W5N5qT28G6OuzVilUt4', '2015-11-06 09:23:20'),
(2, 'OPENTM201285651', 'l4P2fDh8yxG8a3NR-ROzcIuxR-FKvpawFe4Bh3drLd0', '2015-11-06 09:23:20');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `wemall_addon_card_config`
--
ALTER TABLE `wemall_addon_card_config`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `wemall_ads`
--
ALTER TABLE `wemall_ads`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `wemall_alipay`
--
ALTER TABLE `wemall_alipay`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `wemall_analysis`
--
ALTER TABLE `wemall_analysis`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `wemall_artical`
--
ALTER TABLE `wemall_artical`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `wemall_auth_group`
--
ALTER TABLE `wemall_auth_group`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `wemall_auth_group_access`
--
ALTER TABLE `wemall_auth_group_access`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `wemall_auth_rule`
--
ALTER TABLE `wemall_auth_rule`
ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `name` (`name`);
--
-- Indexes for table `wemall_comment`
--
ALTER TABLE `wemall_comment`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `wemall_config`
--
ALTER TABLE `wemall_config`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `wemall_contact`
--
ALTER TABLE `wemall_contact`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `wemall_file`
--
ALTER TABLE `wemall_file`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `wemall_loc_city`
--
ALTER TABLE `wemall_loc_city`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `wemall_loc_district`
--
ALTER TABLE `wemall_loc_district`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `wemall_loc_province`
--
ALTER TABLE `wemall_loc_province`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `wemall_log`
--
ALTER TABLE `wemall_log`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `wemall_menu`
--
ALTER TABLE `wemall_menu`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `wemall_order`
--
ALTER TABLE `wemall_order`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `wemall_order_detail`
--
ALTER TABLE `wemall_order_detail`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `wemall_product`
--
ALTER TABLE `wemall_product`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `wemall_sms`
--
ALTER TABLE `wemall_sms`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `wemall_trade`
--
ALTER TABLE `wemall_trade`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `wemall_user`
--
ALTER TABLE `wemall_user`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `wemall_user_favorites`
--
ALTER TABLE `wemall_user_favorites`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `wemall_wx_config`
--
ALTER TABLE `wemall_wx_config`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `wemall_wx_menu`
--
ALTER TABLE `wemall_wx_menu`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `wemall_wx_print`
--
ALTER TABLE `wemall_wx_print`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `wemall_wx_reply`
--
ALTER TABLE `wemall_wx_reply`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `wemall_wx_tplmsg`
--
ALTER TABLE `wemall_wx_tplmsg`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `wemall_addon_card_config`
--
ALTER TABLE `wemall_addon_card_config`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `wemall_ads`
--
ALTER TABLE `wemall_ads`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=7;
--
-- AUTO_INCREMENT for table `wemall_alipay`
--
ALTER TABLE `wemall_alipay`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `wemall_analysis`
--
ALTER TABLE `wemall_analysis`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wemall_artical`
--
ALTER TABLE `wemall_artical`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wemall_auth_group`
--
ALTER TABLE `wemall_auth_group`
MODIFY `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `wemall_auth_group_access`
--
ALTER TABLE `wemall_auth_group_access`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `wemall_auth_rule`
--
ALTER TABLE `wemall_auth_rule`
MODIFY `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=59;
--
-- AUTO_INCREMENT for table `wemall_comment`
--
ALTER TABLE `wemall_comment`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wemall_config`
--
ALTER TABLE `wemall_config`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `wemall_contact`
--
ALTER TABLE `wemall_contact`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wemall_file`
--
ALTER TABLE `wemall_file`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=30;
--
-- AUTO_INCREMENT for table `wemall_loc_city`
--
ALTER TABLE `wemall_loc_city`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `wemall_loc_district`
--
ALTER TABLE `wemall_loc_district`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wemall_loc_province`
--
ALTER TABLE `wemall_loc_province`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `wemall_log`
--
ALTER TABLE `wemall_log`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wemall_menu`
--
ALTER TABLE `wemall_menu`
MODIFY `id` int(11) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `wemall_order`
--
ALTER TABLE `wemall_order`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wemall_order_detail`
--
ALTER TABLE `wemall_order_detail`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wemall_product`
--
ALTER TABLE `wemall_product`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=22;
--
-- AUTO_INCREMENT for table `wemall_sms`
--
ALTER TABLE `wemall_sms`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `wemall_trade`
--
ALTER TABLE `wemall_trade`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wemall_user`
--
ALTER TABLE `wemall_user`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `wemall_user_favorites`
--
ALTER TABLE `wemall_user_favorites`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wemall_wx_config`
--
ALTER TABLE `wemall_wx_config`
MODIFY `id` int(5) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `wemall_wx_menu`
--
ALTER TABLE `wemall_wx_menu`
MODIFY `id` int(5) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `wemall_wx_print`
--
ALTER TABLE `wemall_wx_print`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `wemall_wx_reply`
--
ALTER TABLE `wemall_wx_reply`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `wemall_wx_tplmsg`
--
ALTER TABLE `wemall_wx_tplmsg`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
<reponame>knocknote/sqlboiler
SELECT "c".*, "d".* FROM cats as c, dogs as d RIGHT JOIN dogs d on d.cat_id = cats.id; |
--------------------------------------------------------------------------------
-- Registry --------------------------------------------------------------------
--------------------------------------------------------------------------------
CREATE OR REPLACE VIEW Registry
AS
SELECT * FROM registry.registry(GetRegRoot('kernel'))
UNION ALL
SELECT * FROM registry.registry(GetRegRoot(current_username()));
GRANT ALL ON Registry TO administrator;
--------------------------------------------------------------------------------
-- RegistryEx ------------------------------------------------------------------
--------------------------------------------------------------------------------
CREATE OR REPLACE VIEW RegistryEx
AS
SELECT * FROM registry.registry_ex(GetRegRoot('kernel'))
UNION ALL
SELECT * FROM registry.registry_ex(GetRegRoot(current_username()));
GRANT ALL ON RegistryEx TO administrator;
--------------------------------------------------------------------------------
-- RegistryKey -----------------------------------------------------------------
--------------------------------------------------------------------------------
CREATE OR REPLACE VIEW RegistryKey
AS
SELECT * FROM registry.registry_key(GetRegRoot('kernel'))
UNION ALL
SELECT * FROM registry.registry_key(GetRegRoot(current_username()));
GRANT ALL ON RegistryKey TO administrator;
--------------------------------------------------------------------------------
-- RegistryValue ---------------------------------------------------------------
--------------------------------------------------------------------------------
CREATE OR REPLACE VIEW RegistryValue
AS
SELECT * FROM registry.registry_value(GetRegRoot('kernel'))
UNION ALL
SELECT * FROM registry.registry_value(GetRegRoot(current_username()));
GRANT ALL ON RegistryValue TO administrator;
--------------------------------------------------------------------------------
-- RegistryValueEx -------------------------------------------------------------
--------------------------------------------------------------------------------
CREATE OR REPLACE VIEW RegistryValueEx
AS
SELECT * FROM registry.registry_value_ex(GetRegRoot('kernel'))
UNION ALL
SELECT * FROM registry.registry_value_ex(GetRegRoot(current_username()));
GRANT ALL ON RegistryValueEx TO administrator;
|
/*
Navicat MySQL Data Transfer
Source Server : funam
Source Server Version : 80018
Source Host : localhost:3306
Source Database : homestead
Target Server Type : MYSQL
Target Server Version : 80018
File Encoding : 65001
Date: 2020-03-17 10:16:05
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for categories
-- ----------------------------
DROP TABLE IF EXISTS `categories`;
CREATE TABLE `categories` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- ----------------------------
-- Records of categories
-- ----------------------------
INSERT INTO `categories` VALUES ('1', 'aut', 'Ratione sint sit labore voluptates quis mollitia. Ut sit quia velit error quaerat sed et.', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `categories` VALUES ('2', 'nulla', 'Ratione culpa qui eos ea earum id. Et quod qui natus cum.', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `categories` VALUES ('3', 'dolorum', 'Esse in est nostrum. Adipisci minima recusandae aut quisquam maxime.', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `categories` VALUES ('4', 'sequi', 'Impedit eos rem placeat quibusdam eveniet non eum. Omnis consequuntur excepturi provident tempore fugit quisquam est.', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `categories` VALUES ('5', 'nobis', 'Vel ipsam eligendi est et enim ad placeat.', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `categories` VALUES ('6', 'nobis', 'Fugiat ipsa libero rerum esse minus ut libero. Est blanditiis ratione modi veniam.', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `categories` VALUES ('7', 'fugiat', 'Ab nihil ea et fugiat explicabo molestiae.', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `categories` VALUES ('8', 'voluptatem', 'Atque quibusdam incidunt possimus quia sint minima ut.', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `categories` VALUES ('9', 'expedita', 'Voluptatem tempora harum dicta dolor et.', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `categories` VALUES ('10', 'vel', 'Fuga magnam itaque sit aut illum. Quis sit odio harum atque iure ipsa.', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `categories` VALUES ('11', 'doloremque', 'Laborum voluptatem quas sit. Facilis non qui itaque neque qui quam ea.', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `categories` VALUES ('12', 'eos', 'Ea ut sunt eaque sequi. Eos aut qui quia iure quibusdam.', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `categories` VALUES ('13', 'aspernatur', 'Vel omnis eligendi quam repellat aperiam aspernatur. Recusandae consequatur magnam animi soluta asperiores non.', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `categories` VALUES ('14', 'ut', 'Dolorum quia similique quos a blanditiis. Est eum voluptas rerum repellat corporis mollitia dolor.', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `categories` VALUES ('15', 'qui', 'Enim quae in id quis ea. Repudiandae ut eius et ipsam voluptatem.', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `categories` VALUES ('16', 'aut', 'Quibusdam quibusdam omnis unde nobis.', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `categories` VALUES ('17', 'dolorem', 'Corporis id saepe explicabo et eos praesentium alias.', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `categories` VALUES ('18', 'aut', 'Eum voluptates officiis ducimus quas quae a. Dicta voluptas dolores soluta cupiditate occaecati accusamus nesciunt vitae.', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `categories` VALUES ('19', 'molestiae', 'Nostrum et architecto sed voluptas.', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `categories` VALUES ('20', 'tempora', 'Aut iure omnis culpa provident ut nisi numquam commodi. Laboriosam quia magnam deserunt velit eligendi magnam voluptatem.', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `categories` VALUES ('21', 'reiciendis', 'Rem accusamus consequatur est dicta quasi. Incidunt eius beatae fugiat pariatur illum ut consectetur.', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `categories` VALUES ('22', 'optio', 'Et possimus ut voluptates assumenda consequatur.', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `categories` VALUES ('23', 'aperiam', 'Ad voluptatem non sit qui quibusdam vel.', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `categories` VALUES ('24', 'voluptatem', 'Culpa cumque quis ea voluptas ut vel. Magnam illum cum recusandae ducimus voluptates quis.', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `categories` VALUES ('25', 'molestias', 'Doloribus facilis voluptate iste eaque natus sed consequatur unde.', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `categories` VALUES ('26', 'nemo', 'Eos voluptate et quod omnis totam ab. Ad natus consequuntur asperiores magni.', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `categories` VALUES ('27', 'sit', 'Vel veniam quos ut aut minus.', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `categories` VALUES ('28', 'sapiente', 'Expedita quo ad quo et perferendis asperiores nemo nostrum. Dolores dolorem aut consequatur ut.', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `categories` VALUES ('29', 'amet', 'Rem et delectus praesentium temporibus.', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `categories` VALUES ('30', 'excepturi', 'Est et sequi accusantium est perferendis.', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
-- ----------------------------
-- Table structure for category_product
-- ----------------------------
DROP TABLE IF EXISTS `category_product`;
CREATE TABLE `category_product` (
`category_id` int(10) unsigned NOT NULL,
`product_id` int(10) unsigned NOT NULL,
KEY `category_product_category_id_foreign` (`category_id`),
KEY `category_product_product_id_foreign` (`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- ----------------------------
-- Records of category_product
-- ----------------------------
INSERT INTO `category_product` VALUES ('3', '1');
INSERT INTO `category_product` VALUES ('18', '1');
INSERT INTO `category_product` VALUES ('1', '2');
INSERT INTO `category_product` VALUES ('2', '2');
INSERT INTO `category_product` VALUES ('6', '2');
INSERT INTO `category_product` VALUES ('22', '2');
INSERT INTO `category_product` VALUES ('26', '2');
INSERT INTO `category_product` VALUES ('3', '3');
INSERT INTO `category_product` VALUES ('10', '3');
INSERT INTO `category_product` VALUES ('11', '3');
INSERT INTO `category_product` VALUES ('28', '3');
INSERT INTO `category_product` VALUES ('20', '4');
INSERT INTO `category_product` VALUES ('23', '4');
INSERT INTO `category_product` VALUES ('14', '5');
INSERT INTO `category_product` VALUES ('28', '5');
INSERT INTO `category_product` VALUES ('2', '6');
INSERT INTO `category_product` VALUES ('5', '6');
INSERT INTO `category_product` VALUES ('12', '6');
INSERT INTO `category_product` VALUES ('19', '6');
INSERT INTO `category_product` VALUES ('5', '7');
INSERT INTO `category_product` VALUES ('13', '7');
INSERT INTO `category_product` VALUES ('15', '7');
INSERT INTO `category_product` VALUES ('5', '8');
INSERT INTO `category_product` VALUES ('9', '8');
INSERT INTO `category_product` VALUES ('16', '8');
INSERT INTO `category_product` VALUES ('19', '8');
INSERT INTO `category_product` VALUES ('22', '8');
INSERT INTO `category_product` VALUES ('5', '9');
INSERT INTO `category_product` VALUES ('14', '9');
INSERT INTO `category_product` VALUES ('22', '9');
INSERT INTO `category_product` VALUES ('23', '9');
INSERT INTO `category_product` VALUES ('28', '9');
INSERT INTO `category_product` VALUES ('14', '10');
INSERT INTO `category_product` VALUES ('9', '11');
INSERT INTO `category_product` VALUES ('11', '11');
INSERT INTO `category_product` VALUES ('24', '11');
INSERT INTO `category_product` VALUES ('7', '12');
INSERT INTO `category_product` VALUES ('13', '12');
INSERT INTO `category_product` VALUES ('16', '12');
INSERT INTO `category_product` VALUES ('14', '13');
INSERT INTO `category_product` VALUES ('15', '13');
INSERT INTO `category_product` VALUES ('18', '13');
INSERT INTO `category_product` VALUES ('20', '13');
INSERT INTO `category_product` VALUES ('22', '13');
INSERT INTO `category_product` VALUES ('1', '14');
INSERT INTO `category_product` VALUES ('3', '14');
INSERT INTO `category_product` VALUES ('7', '14');
INSERT INTO `category_product` VALUES ('27', '14');
INSERT INTO `category_product` VALUES ('1', '15');
INSERT INTO `category_product` VALUES ('2', '16');
INSERT INTO `category_product` VALUES ('13', '16');
INSERT INTO `category_product` VALUES ('17', '16');
INSERT INTO `category_product` VALUES ('1', '17');
INSERT INTO `category_product` VALUES ('12', '17');
INSERT INTO `category_product` VALUES ('2', '18');
INSERT INTO `category_product` VALUES ('3', '18');
INSERT INTO `category_product` VALUES ('5', '18');
INSERT INTO `category_product` VALUES ('23', '18');
INSERT INTO `category_product` VALUES ('2', '19');
INSERT INTO `category_product` VALUES ('12', '19');
INSERT INTO `category_product` VALUES ('13', '19');
INSERT INTO `category_product` VALUES ('15', '19');
INSERT INTO `category_product` VALUES ('9', '20');
INSERT INTO `category_product` VALUES ('17', '20');
INSERT INTO `category_product` VALUES ('18', '20');
INSERT INTO `category_product` VALUES ('24', '20');
INSERT INTO `category_product` VALUES ('28', '20');
INSERT INTO `category_product` VALUES ('5', '21');
INSERT INTO `category_product` VALUES ('6', '21');
INSERT INTO `category_product` VALUES ('23', '22');
INSERT INTO `category_product` VALUES ('29', '23');
INSERT INTO `category_product` VALUES ('15', '24');
INSERT INTO `category_product` VALUES ('9', '25');
INSERT INTO `category_product` VALUES ('20', '25');
INSERT INTO `category_product` VALUES ('27', '25');
INSERT INTO `category_product` VALUES ('2', '26');
INSERT INTO `category_product` VALUES ('16', '26');
INSERT INTO `category_product` VALUES ('23', '26');
INSERT INTO `category_product` VALUES ('28', '26');
INSERT INTO `category_product` VALUES ('11', '27');
INSERT INTO `category_product` VALUES ('14', '27');
INSERT INTO `category_product` VALUES ('15', '27');
INSERT INTO `category_product` VALUES ('24', '27');
INSERT INTO `category_product` VALUES ('29', '27');
INSERT INTO `category_product` VALUES ('13', '28');
INSERT INTO `category_product` VALUES ('3', '29');
INSERT INTO `category_product` VALUES ('4', '29');
INSERT INTO `category_product` VALUES ('14', '29');
INSERT INTO `category_product` VALUES ('17', '29');
INSERT INTO `category_product` VALUES ('29', '29');
INSERT INTO `category_product` VALUES ('15', '30');
INSERT INTO `category_product` VALUES ('20', '30');
INSERT INTO `category_product` VALUES ('18', '31');
INSERT INTO `category_product` VALUES ('3', '32');
INSERT INTO `category_product` VALUES ('9', '33');
INSERT INTO `category_product` VALUES ('10', '33');
INSERT INTO `category_product` VALUES ('13', '33');
INSERT INTO `category_product` VALUES ('10', '34');
INSERT INTO `category_product` VALUES ('2', '35');
INSERT INTO `category_product` VALUES ('29', '35');
INSERT INTO `category_product` VALUES ('30', '36');
INSERT INTO `category_product` VALUES ('22', '37');
INSERT INTO `category_product` VALUES ('24', '37');
INSERT INTO `category_product` VALUES ('3', '38');
INSERT INTO `category_product` VALUES ('6', '38');
INSERT INTO `category_product` VALUES ('21', '39');
INSERT INTO `category_product` VALUES ('6', '40');
INSERT INTO `category_product` VALUES ('8', '40');
INSERT INTO `category_product` VALUES ('11', '40');
INSERT INTO `category_product` VALUES ('18', '40');
INSERT INTO `category_product` VALUES ('1', '41');
INSERT INTO `category_product` VALUES ('3', '41');
INSERT INTO `category_product` VALUES ('17', '41');
INSERT INTO `category_product` VALUES ('24', '41');
INSERT INTO `category_product` VALUES ('27', '41');
INSERT INTO `category_product` VALUES ('29', '42');
INSERT INTO `category_product` VALUES ('11', '43');
INSERT INTO `category_product` VALUES ('13', '43');
INSERT INTO `category_product` VALUES ('18', '43');
INSERT INTO `category_product` VALUES ('12', '44');
INSERT INTO `category_product` VALUES ('19', '44');
INSERT INTO `category_product` VALUES ('17', '45');
INSERT INTO `category_product` VALUES ('29', '45');
INSERT INTO `category_product` VALUES ('7', '46');
INSERT INTO `category_product` VALUES ('8', '46');
INSERT INTO `category_product` VALUES ('15', '47');
INSERT INTO `category_product` VALUES ('16', '47');
INSERT INTO `category_product` VALUES ('5', '48');
INSERT INTO `category_product` VALUES ('12', '48');
INSERT INTO `category_product` VALUES ('24', '48');
INSERT INTO `category_product` VALUES ('5', '49');
INSERT INTO `category_product` VALUES ('7', '49');
INSERT INTO `category_product` VALUES ('8', '49');
INSERT INTO `category_product` VALUES ('15', '49');
INSERT INTO `category_product` VALUES ('24', '49');
INSERT INTO `category_product` VALUES ('16', '50');
INSERT INTO `category_product` VALUES ('26', '50');
INSERT INTO `category_product` VALUES ('11', '51');
INSERT INTO `category_product` VALUES ('19', '51');
INSERT INTO `category_product` VALUES ('25', '51');
INSERT INTO `category_product` VALUES ('26', '51');
INSERT INTO `category_product` VALUES ('30', '51');
INSERT INTO `category_product` VALUES ('11', '52');
INSERT INTO `category_product` VALUES ('21', '52');
INSERT INTO `category_product` VALUES ('8', '53');
INSERT INTO `category_product` VALUES ('11', '53');
INSERT INTO `category_product` VALUES ('15', '53');
INSERT INTO `category_product` VALUES ('18', '53');
INSERT INTO `category_product` VALUES ('26', '53');
INSERT INTO `category_product` VALUES ('8', '54');
INSERT INTO `category_product` VALUES ('10', '54');
INSERT INTO `category_product` VALUES ('29', '54');
INSERT INTO `category_product` VALUES ('10', '55');
INSERT INTO `category_product` VALUES ('12', '55');
INSERT INTO `category_product` VALUES ('13', '55');
INSERT INTO `category_product` VALUES ('18', '55');
INSERT INTO `category_product` VALUES ('24', '55');
INSERT INTO `category_product` VALUES ('9', '56');
INSERT INTO `category_product` VALUES ('12', '56');
INSERT INTO `category_product` VALUES ('27', '56');
INSERT INTO `category_product` VALUES ('4', '57');
INSERT INTO `category_product` VALUES ('5', '57');
INSERT INTO `category_product` VALUES ('12', '57');
INSERT INTO `category_product` VALUES ('17', '57');
INSERT INTO `category_product` VALUES ('25', '57');
INSERT INTO `category_product` VALUES ('14', '58');
INSERT INTO `category_product` VALUES ('19', '58');
INSERT INTO `category_product` VALUES ('20', '58');
INSERT INTO `category_product` VALUES ('22', '58');
INSERT INTO `category_product` VALUES ('8', '59');
INSERT INTO `category_product` VALUES ('9', '59');
INSERT INTO `category_product` VALUES ('17', '59');
INSERT INTO `category_product` VALUES ('21', '59');
INSERT INTO `category_product` VALUES ('25', '59');
INSERT INTO `category_product` VALUES ('16', '60');
INSERT INTO `category_product` VALUES ('9', '61');
INSERT INTO `category_product` VALUES ('20', '61');
INSERT INTO `category_product` VALUES ('22', '61');
INSERT INTO `category_product` VALUES ('25', '61');
INSERT INTO `category_product` VALUES ('5', '62');
INSERT INTO `category_product` VALUES ('22', '62');
INSERT INTO `category_product` VALUES ('5', '63');
INSERT INTO `category_product` VALUES ('11', '63');
INSERT INTO `category_product` VALUES ('14', '63');
INSERT INTO `category_product` VALUES ('18', '63');
INSERT INTO `category_product` VALUES ('24', '63');
INSERT INTO `category_product` VALUES ('21', '64');
INSERT INTO `category_product` VALUES ('24', '64');
INSERT INTO `category_product` VALUES ('1', '65');
INSERT INTO `category_product` VALUES ('8', '65');
INSERT INTO `category_product` VALUES ('9', '65');
INSERT INTO `category_product` VALUES ('3', '66');
INSERT INTO `category_product` VALUES ('5', '66');
INSERT INTO `category_product` VALUES ('16', '66');
INSERT INTO `category_product` VALUES ('17', '66');
INSERT INTO `category_product` VALUES ('1', '67');
INSERT INTO `category_product` VALUES ('25', '67');
INSERT INTO `category_product` VALUES ('3', '68');
INSERT INTO `category_product` VALUES ('1', '69');
INSERT INTO `category_product` VALUES ('13', '69');
INSERT INTO `category_product` VALUES ('18', '69');
INSERT INTO `category_product` VALUES ('25', '69');
INSERT INTO `category_product` VALUES ('12', '70');
INSERT INTO `category_product` VALUES ('13', '70');
INSERT INTO `category_product` VALUES ('14', '70');
INSERT INTO `category_product` VALUES ('27', '70');
INSERT INTO `category_product` VALUES ('15', '71');
INSERT INTO `category_product` VALUES ('16', '71');
INSERT INTO `category_product` VALUES ('18', '71');
INSERT INTO `category_product` VALUES ('20', '71');
INSERT INTO `category_product` VALUES ('28', '71');
INSERT INTO `category_product` VALUES ('18', '72');
INSERT INTO `category_product` VALUES ('22', '72');
INSERT INTO `category_product` VALUES ('28', '72');
INSERT INTO `category_product` VALUES ('29', '72');
INSERT INTO `category_product` VALUES ('4', '73');
INSERT INTO `category_product` VALUES ('9', '73');
INSERT INTO `category_product` VALUES ('19', '73');
INSERT INTO `category_product` VALUES ('12', '74');
INSERT INTO `category_product` VALUES ('13', '74');
INSERT INTO `category_product` VALUES ('24', '75');
INSERT INTO `category_product` VALUES ('25', '75');
INSERT INTO `category_product` VALUES ('29', '75');
INSERT INTO `category_product` VALUES ('30', '75');
INSERT INTO `category_product` VALUES ('2', '76');
INSERT INTO `category_product` VALUES ('13', '76');
INSERT INTO `category_product` VALUES ('18', '76');
INSERT INTO `category_product` VALUES ('24', '76');
INSERT INTO `category_product` VALUES ('29', '76');
INSERT INTO `category_product` VALUES ('2', '77');
INSERT INTO `category_product` VALUES ('4', '77');
INSERT INTO `category_product` VALUES ('10', '77');
INSERT INTO `category_product` VALUES ('12', '77');
INSERT INTO `category_product` VALUES ('25', '77');
INSERT INTO `category_product` VALUES ('2', '78');
INSERT INTO `category_product` VALUES ('6', '78');
INSERT INTO `category_product` VALUES ('19', '78');
INSERT INTO `category_product` VALUES ('28', '78');
INSERT INTO `category_product` VALUES ('1', '79');
INSERT INTO `category_product` VALUES ('10', '79');
INSERT INTO `category_product` VALUES ('26', '79');
INSERT INTO `category_product` VALUES ('29', '80');
INSERT INTO `category_product` VALUES ('30', '80');
INSERT INTO `category_product` VALUES ('21', '81');
INSERT INTO `category_product` VALUES ('8', '82');
INSERT INTO `category_product` VALUES ('26', '82');
INSERT INTO `category_product` VALUES ('11', '83');
INSERT INTO `category_product` VALUES ('27', '83');
INSERT INTO `category_product` VALUES ('20', '84');
INSERT INTO `category_product` VALUES ('10', '85');
INSERT INTO `category_product` VALUES ('11', '85');
INSERT INTO `category_product` VALUES ('25', '85');
INSERT INTO `category_product` VALUES ('26', '85');
INSERT INTO `category_product` VALUES ('29', '85');
INSERT INTO `category_product` VALUES ('22', '86');
INSERT INTO `category_product` VALUES ('7', '87');
INSERT INTO `category_product` VALUES ('14', '88');
INSERT INTO `category_product` VALUES ('2', '89');
INSERT INTO `category_product` VALUES ('20', '89');
INSERT INTO `category_product` VALUES ('22', '89');
INSERT INTO `category_product` VALUES ('28', '89');
INSERT INTO `category_product` VALUES ('5', '90');
INSERT INTO `category_product` VALUES ('9', '90');
INSERT INTO `category_product` VALUES ('18', '90');
INSERT INTO `category_product` VALUES ('23', '90');
INSERT INTO `category_product` VALUES ('28', '90');
INSERT INTO `category_product` VALUES ('9', '91');
INSERT INTO `category_product` VALUES ('13', '91');
INSERT INTO `category_product` VALUES ('15', '91');
INSERT INTO `category_product` VALUES ('16', '91');
INSERT INTO `category_product` VALUES ('20', '91');
INSERT INTO `category_product` VALUES ('3', '92');
INSERT INTO `category_product` VALUES ('4', '92');
INSERT INTO `category_product` VALUES ('13', '92');
INSERT INTO `category_product` VALUES ('23', '92');
INSERT INTO `category_product` VALUES ('11', '93');
INSERT INTO `category_product` VALUES ('15', '93');
INSERT INTO `category_product` VALUES ('12', '94');
INSERT INTO `category_product` VALUES ('28', '94');
INSERT INTO `category_product` VALUES ('4', '95');
INSERT INTO `category_product` VALUES ('24', '95');
INSERT INTO `category_product` VALUES ('16', '96');
INSERT INTO `category_product` VALUES ('21', '96');
INSERT INTO `category_product` VALUES ('29', '96');
INSERT INTO `category_product` VALUES ('4', '97');
INSERT INTO `category_product` VALUES ('11', '97');
INSERT INTO `category_product` VALUES ('18', '97');
INSERT INTO `category_product` VALUES ('7', '98');
INSERT INTO `category_product` VALUES ('1', '99');
INSERT INTO `category_product` VALUES ('26', '99');
INSERT INTO `category_product` VALUES ('29', '99');
INSERT INTO `category_product` VALUES ('30', '99');
INSERT INTO `category_product` VALUES ('23', '100');
INSERT INTO `category_product` VALUES ('25', '100');
-- ----------------------------
-- Table structure for failed_jobs
-- ----------------------------
DROP TABLE IF EXISTS `failed_jobs`;
CREATE TABLE `failed_jobs` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`connection` text COLLATE utf8mb4_unicode_ci NOT NULL,
`queue` text COLLATE utf8mb4_unicode_ci NOT NULL,
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- ----------------------------
-- Records of failed_jobs
-- ----------------------------
-- ----------------------------
-- Table structure for migrations
-- ----------------------------
DROP TABLE IF EXISTS `migrations`;
CREATE TABLE `migrations` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`migration` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- ----------------------------
-- Records of migrations
-- ----------------------------
INSERT INTO `migrations` VALUES ('15', '2014_10_12_000000_create_users_table', '1');
INSERT INTO `migrations` VALUES ('16', '2014_10_12_100000_create_password_resets_table', '1');
INSERT INTO `migrations` VALUES ('17', '2019_08_19_000000_create_failed_jobs_table', '1');
INSERT INTO `migrations` VALUES ('18', '2020_01_24_182236_create_products_table', '1');
INSERT INTO `migrations` VALUES ('19', '2020_01_24_182403_create_transactions_table', '1');
INSERT INTO `migrations` VALUES ('20', '2020_01_24_182428_create_categories_table', '1');
INSERT INTO `migrations` VALUES ('21', '2020_01_27_173034_category_product_table', '1');
-- ----------------------------
-- Table structure for password_resets
-- ----------------------------
DROP TABLE IF EXISTS `password_resets`;
CREATE TABLE `password_resets` (
`email` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
KEY `password_resets_email_index` (`email`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- ----------------------------
-- Records of password_resets
-- ----------------------------
-- ----------------------------
-- Table structure for products
-- ----------------------------
DROP TABLE IF EXISTS `products`;
CREATE TABLE `products` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`description` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL,
`name` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL,
`quantity` int(10) unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`status` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'no disponible',
`image` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL,
`seller_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `products_seller_id_foreign` (`seller_id`)
) ENGINE=MyISAM AUTO_INCREMENT=101 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- ----------------------------
-- Records of products
-- ----------------------------
INSERT INTO `products` VALUES ('1', 'Ex eos aut rem nisi nisi.', 'enim', '1', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'uno.jpg', '9');
INSERT INTO `products` VALUES ('2', 'Dolorum voluptatum minus ratione blanditiis et. Nostrum ullam qui aspernatur modi.', 'nobis', '10', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'tres.jpg', '5');
INSERT INTO `products` VALUES ('3', 'Blanditiis ipsam sit eveniet nisi. Provident necessitatibus cum deserunt tempore voluptas molestiae est beatae.', 'culpa', '9', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'dos,jpg', '10');
INSERT INTO `products` VALUES ('4', 'Nobis cupiditate molestiae earum saepe.', 'adipisci', '9', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'uno.jpg', '8');
INSERT INTO `products` VALUES ('5', 'Consequatur voluptas quia enim provident. Aspernatur facere ut earum sit iure corrupti distinctio.', 'consectetur', '7', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'dos,jpg', '7');
INSERT INTO `products` VALUES ('6', 'Earum excepturi et asperiores consequatur et cupiditate commodi.', 'voluptatem', '1', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'uno.jpg', '1');
INSERT INTO `products` VALUES ('7', 'Et fugit tempora et id expedita natus eligendi.', 'deleniti', '4', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'dos,jpg', '13');
INSERT INTO `products` VALUES ('8', 'Officiis aut in dolorum blanditiis ut id pariatur aut.', 'provident', '5', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'tres.jpg', '10');
INSERT INTO `products` VALUES ('9', 'Atque quisquam tempore voluptate hic architecto. Cumque repudiandae et vitae cum.', 'ut', '1', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'dos,jpg', '14');
INSERT INTO `products` VALUES ('10', 'Quia reiciendis id quis laboriosam.', 'quia', '7', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'uno.jpg', '4');
INSERT INTO `products` VALUES ('11', 'Labore eius ut sed neque provident sed consequatur. Minus necessitatibus qui optio libero provident iure.', 'ea', '8', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'uno.jpg', '5');
INSERT INTO `products` VALUES ('12', 'Animi nihil velit accusantium assumenda cupiditate ut. Ut molestiae similique optio et fugit.', 'quae', '9', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'uno.jpg', '10');
INSERT INTO `products` VALUES ('13', 'Placeat doloremque quo illum ut nam omnis.', 'voluptas', '8', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'dos,jpg', '3');
INSERT INTO `products` VALUES ('14', 'Similique deserunt dicta qui voluptatem quam. Illum excepturi aut quia dignissimos dolores veniam illum consequuntur.', 'velit', '6', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'uno.jpg', '7');
INSERT INTO `products` VALUES ('15', 'Id assumenda asperiores quia facilis illum eaque. Accusamus ut nam voluptas ut laboriosam ut aut doloremque.', 'illo', '7', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'dos,jpg', '3');
INSERT INTO `products` VALUES ('16', 'Qui voluptas ratione voluptatibus ea fuga. Impedit magni iusto non et.', 'enim', '8', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'uno.jpg', '3');
INSERT INTO `products` VALUES ('17', 'Est voluptatem magnam eos eum dolorem.', 'tenetur', '6', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'uno.jpg', '20');
INSERT INTO `products` VALUES ('18', 'Quisquam in nostrum soluta ducimus.', 'eaque', '3', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'uno.jpg', '5');
INSERT INTO `products` VALUES ('19', 'Nulla ut rerum dolor sed reiciendis veritatis. Iure assumenda necessitatibus nihil cupiditate animi quia fugit.', 'aliquam', '8', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'dos,jpg', '10');
INSERT INTO `products` VALUES ('20', 'Sed voluptatem numquam possimus enim. Exercitationem quo labore hic aut quis.', 'odio', '9', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'uno.jpg', '11');
INSERT INTO `products` VALUES ('21', 'Unde quos magni aut. Qui a laboriosam suscipit.', 'dolores', '8', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'tres.jpg', '18');
INSERT INTO `products` VALUES ('22', 'Voluptatum dignissimos nihil et dolores.', 'voluptas', '2', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'uno.jpg', '2');
INSERT INTO `products` VALUES ('23', 'Neque eos eum nobis impedit quod consequatur fugiat.', 'accusamus', '8', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'uno.jpg', '13');
INSERT INTO `products` VALUES ('24', 'Cum dolorem qui doloribus ipsum provident officia. Officia earum aut minima ut consequatur autem inventore.', 'assumenda', '5', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'uno.jpg', '8');
INSERT INTO `products` VALUES ('25', 'Molestiae omnis excepturi amet culpa. Temporibus temporibus cupiditate tempore dolore rerum.', 'voluptatem', '6', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'uno.jpg', '14');
INSERT INTO `products` VALUES ('26', 'Pariatur ea ratione voluptatem aspernatur possimus.', 'dolorem', '8', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'tres.jpg', '17');
INSERT INTO `products` VALUES ('27', 'Mollitia aut molestiae eos neque. Perferendis sint pariatur veritatis expedita nemo ratione consequatur.', 'nemo', '5', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'uno.jpg', '14');
INSERT INTO `products` VALUES ('28', 'Veritatis est et consequatur fugiat non. Voluptatem ducimus dolor quo non.', 'est', '6', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'tres.jpg', '2');
INSERT INTO `products` VALUES ('29', 'Amet consequatur ipsum eligendi nihil.', 'qui', '10', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'dos,jpg', '5');
INSERT INTO `products` VALUES ('30', 'Accusamus voluptas amet enim occaecati velit ut officiis amet. Est dolor maiores accusamus quidem nulla.', 'veniam', '4', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'dos,jpg', '1');
INSERT INTO `products` VALUES ('31', 'Maxime accusamus non voluptatem amet voluptatem.', 'voluptate', '2', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'tres.jpg', '9');
INSERT INTO `products` VALUES ('32', 'Reiciendis quis quibusdam quas fugiat soluta et. Illum ipsam alias consectetur dolorum sit libero quia.', 'eos', '10', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'tres.jpg', '14');
INSERT INTO `products` VALUES ('33', 'Voluptatem laborum minima autem distinctio omnis dicta deserunt ut.', 'inventore', '10', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'uno.jpg', '9');
INSERT INTO `products` VALUES ('34', 'Saepe occaecati est qui. Esse atque minus ex nesciunt excepturi culpa.', 'et', '7', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'uno.jpg', '15');
INSERT INTO `products` VALUES ('35', 'Harum aut ea amet unde earum. Suscipit a nihil reiciendis animi amet architecto.', 'sit', '3', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'dos,jpg', '18');
INSERT INTO `products` VALUES ('36', 'Omnis accusantium excepturi qui ut. Sed voluptatem iusto est quia et molestias debitis.', 'natus', '9', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'tres.jpg', '4');
INSERT INTO `products` VALUES ('37', 'Doloremque quis molestiae perspiciatis ex praesentium laborum. Exercitationem quis dolor quas nisi iusto sit nihil.', 'ea', '9', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'uno.jpg', '1');
INSERT INTO `products` VALUES ('38', 'Enim dolores nihil consequatur et rem quia et. Qui optio tempore autem.', 'et', '5', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'tres.jpg', '15');
INSERT INTO `products` VALUES ('39', 'Quos sunt fugiat velit at.', 'animi', '4', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'tres.jpg', '14');
INSERT INTO `products` VALUES ('40', 'Sed magni asperiores molestiae qui aut ea. Quos illo laborum rerum.', 'ut', '5', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'dos,jpg', '18');
INSERT INTO `products` VALUES ('41', 'Et quibusdam ad dicta non facere. Suscipit exercitationem qui impedit fugiat corrupti iste.', 'deleniti', '6', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'tres.jpg', '6');
INSERT INTO `products` VALUES ('42', 'Doloribus et modi tempora aut nam ullam.', 'in', '3', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'tres.jpg', '12');
INSERT INTO `products` VALUES ('43', 'At officia nobis et nostrum libero dolorum ea.', 'pariatur', '1', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'dos,jpg', '1');
INSERT INTO `products` VALUES ('44', 'Id similique sit et perspiciatis est officia odit minus. Doloribus ad corrupti aut vitae non nostrum.', 'nisi', '10', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'uno.jpg', '14');
INSERT INTO `products` VALUES ('45', 'Eaque animi ducimus recusandae dolores autem laboriosam.', 'adipisci', '1', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'uno.jpg', '8');
INSERT INTO `products` VALUES ('46', 'Labore fugit ex magni ut.', 'quae', '9', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'tres.jpg', '3');
INSERT INTO `products` VALUES ('47', 'In natus qui rerum laborum in rerum.', 'assumenda', '1', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'tres.jpg', '8');
INSERT INTO `products` VALUES ('48', 'Voluptatem totam quam facere. Sit esse nisi velit eaque omnis iste velit ut.', 'quia', '1', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'dos,jpg', '11');
INSERT INTO `products` VALUES ('49', 'Itaque repellendus quae sit ut ut animi quos. Omnis nihil incidunt dolorem.', 'sunt', '3', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'uno.jpg', '12');
INSERT INTO `products` VALUES ('50', 'Molestiae enim perspiciatis perferendis et a eligendi dolorem facere.', 'labore', '7', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'dos,jpg', '12');
INSERT INTO `products` VALUES ('51', 'Non et eligendi ullam et ad dolorem assumenda.', 'harum', '5', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'uno.jpg', '14');
INSERT INTO `products` VALUES ('52', 'Et dolorem commodi quas velit aliquid nihil. Dolorum laboriosam et doloremque.', 'quia', '1', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'dos,jpg', '18');
INSERT INTO `products` VALUES ('53', 'In facere ullam culpa debitis maiores. Quas maxime laudantium quidem dolorem excepturi.', 'aut', '3', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'tres.jpg', '18');
INSERT INTO `products` VALUES ('54', 'Sint et labore ratione dolor.', 'doloribus', '2', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'tres.jpg', '9');
INSERT INTO `products` VALUES ('55', 'Illo dolorem laborum sint ut sint eveniet. Ex iure accusantium et molestiae aperiam debitis.', 'molestiae', '9', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'uno.jpg', '15');
INSERT INTO `products` VALUES ('56', 'Sit officia eius iste ex quia commodi. Aliquid ipsam aliquid et sapiente aperiam necessitatibus qui.', 'voluptatum', '3', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'dos,jpg', '2');
INSERT INTO `products` VALUES ('57', 'Corporis voluptatem iste ea minus. Error sed doloribus in necessitatibus nihil occaecati ea.', 'quidem', '2', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'uno.jpg', '13');
INSERT INTO `products` VALUES ('58', 'Quia laboriosam voluptatem ut recusandae. Autem eos incidunt sed dolores.', 'repellendus', '9', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'dos,jpg', '2');
INSERT INTO `products` VALUES ('59', 'Et et est ratione atque. Mollitia est aut velit sit labore voluptatem.', 'illum', '2', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'dos,jpg', '5');
INSERT INTO `products` VALUES ('60', 'Esse vel quibusdam architecto labore fuga quam architecto. Ullam recusandae impedit nihil ullam maiores temporibus consequatur.', 'accusantium', '10', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'tres.jpg', '4');
INSERT INTO `products` VALUES ('61', 'Ipsam hic sit provident aliquam excepturi doloremque.', 'suscipit', '10', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'dos,jpg', '4');
INSERT INTO `products` VALUES ('62', 'Labore perspiciatis laudantium delectus quis est explicabo neque.', 'voluptas', '5', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'tres.jpg', '2');
INSERT INTO `products` VALUES ('63', 'Fuga et velit eos blanditiis ipsum sunt. In ut corrupti qui deleniti.', 'ullam', '5', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'tres.jpg', '1');
INSERT INTO `products` VALUES ('64', 'Aut est dolorum amet tempora.', 'ea', '2', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'dos,jpg', '16');
INSERT INTO `products` VALUES ('65', 'Et enim nihil aut libero consequatur nisi dolores earum. Quis laboriosam et at cupiditate blanditiis.', 'error', '10', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'dos,jpg', '8');
INSERT INTO `products` VALUES ('66', 'Blanditiis quaerat quia ad. Veniam saepe magnam et ut amet minima.', 'quia', '5', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'uno.jpg', '18');
INSERT INTO `products` VALUES ('67', 'Fuga vel sapiente et eum.', 'consectetur', '3', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'uno.jpg', '12');
INSERT INTO `products` VALUES ('68', 'Libero laborum accusantium est maiores assumenda aut totam.', 'ut', '9', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'dos,jpg', '18');
INSERT INTO `products` VALUES ('69', 'Ipsam officiis eum voluptas.', 'et', '9', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'dos,jpg', '19');
INSERT INTO `products` VALUES ('70', 'Ipsum molestiae eveniet hic omnis autem itaque. Est ullam qui deserunt eos laudantium aspernatur.', 'nisi', '6', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'dos,jpg', '12');
INSERT INTO `products` VALUES ('71', 'Necessitatibus similique est aperiam dolores cupiditate.', 'quos', '6', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'uno.jpg', '4');
INSERT INTO `products` VALUES ('72', 'Est autem adipisci ut in illum laborum.', 'pariatur', '9', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'dos,jpg', '8');
INSERT INTO `products` VALUES ('73', 'Aut sint itaque et cum asperiores. Harum necessitatibus est unde.', 'corrupti', '7', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'uno.jpg', '16');
INSERT INTO `products` VALUES ('74', 'Id numquam et quo accusantium reiciendis exercitationem magni.', 'beatae', '9', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'uno.jpg', '3');
INSERT INTO `products` VALUES ('75', 'Sint neque aut numquam qui et esse. Distinctio est aut quo similique.', 'reiciendis', '10', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'uno.jpg', '14');
INSERT INTO `products` VALUES ('76', 'Ut maxime suscipit qui nobis sed corporis placeat.', 'ipsam', '3', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'tres.jpg', '8');
INSERT INTO `products` VALUES ('77', 'Et quo perspiciatis quia explicabo voluptatem accusamus. Ab sapiente est dolorum magni recusandae rerum earum.', 'dicta', '9', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'uno.jpg', '20');
INSERT INTO `products` VALUES ('78', 'Quo et est ipsum tempore amet aperiam.', 'itaque', '4', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'uno.jpg', '20');
INSERT INTO `products` VALUES ('79', 'Harum qui aut culpa minus voluptate.', 'laudantium', '10', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'uno.jpg', '11');
INSERT INTO `products` VALUES ('80', 'Quisquam dolor officiis quo. Quo eum omnis quos nemo quia omnis.', 'optio', '10', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'dos,jpg', '10');
INSERT INTO `products` VALUES ('81', 'Ipsam quis debitis nihil quas. Suscipit et et qui consequatur quia.', 'aut', '10', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'tres.jpg', '2');
INSERT INTO `products` VALUES ('82', 'Quod vel consequatur dolore est aut.', 'fugiat', '2', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'tres.jpg', '6');
INSERT INTO `products` VALUES ('83', 'Fuga repudiandae molestiae aut consequatur eum harum occaecati maiores. Perferendis quos eos saepe aut iure saepe.', 'natus', '5', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'tres.jpg', '11');
INSERT INTO `products` VALUES ('84', 'Reiciendis accusantium nemo dolorem tempore omnis. Cum quaerat aperiam distinctio atque.', 'et', '10', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'uno.jpg', '15');
INSERT INTO `products` VALUES ('85', 'Molestias qui sint asperiores reprehenderit nam sint et. Exercitationem perferendis ut rerum nemo vel saepe sapiente.', 'excepturi', '2', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'dos,jpg', '15');
INSERT INTO `products` VALUES ('86', 'Maxime et deserunt aut et.', 'sunt', '8', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'tres.jpg', '9');
INSERT INTO `products` VALUES ('87', 'Inventore expedita ab odit esse eveniet tempora.', 'voluptate', '5', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'dos,jpg', '18');
INSERT INTO `products` VALUES ('88', 'Provident aut quidem illo. Esse quos modi consectetur eveniet cumque.', 'in', '2', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'tres.jpg', '7');
INSERT INTO `products` VALUES ('89', 'Et excepturi soluta eos.', 'quis', '7', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'dos,jpg', '4');
INSERT INTO `products` VALUES ('90', 'Voluptatem numquam temporibus dicta autem quam minima. Quos maiores dicta quam sit.', 'eum', '2', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'uno.jpg', '10');
INSERT INTO `products` VALUES ('91', 'Unde eos id cum et ea.', 'rem', '1', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'dos,jpg', '18');
INSERT INTO `products` VALUES ('92', 'Qui accusantium corrupti sunt rerum. Nisi quas aut voluptates dolores consequuntur quia.', 'voluptates', '6', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'tres.jpg', '7');
INSERT INTO `products` VALUES ('93', 'Sit autem quisquam doloremque aperiam consectetur quia optio. Sed eligendi deleniti ipsum.', 'deleniti', '7', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'tres.jpg', '8');
INSERT INTO `products` VALUES ('94', 'Ipsa sit totam odit veniam.', 'qui', '4', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'tres.jpg', '20');
INSERT INTO `products` VALUES ('95', 'Sunt et nam similique et quo molestiae distinctio. Aut dolorum excepturi non atque eum recusandae.', 'ratione', '8', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'tres.jpg', '10');
INSERT INTO `products` VALUES ('96', 'Repellat veniam quis sit architecto perferendis voluptatem. Enim quisquam rem est sed molestiae illo porro.', 'omnis', '1', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'tres.jpg', '5');
INSERT INTO `products` VALUES ('97', 'Dolorum perferendis et cumque harum quas eveniet illum. Cupiditate qui quisquam alias pariatur minus et voluptatibus.', 'ex', '2', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'tres.jpg', '20');
INSERT INTO `products` VALUES ('98', 'Pariatur non corporis maiores cupiditate.', 'quia', '4', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'dos,jpg', '20');
INSERT INTO `products` VALUES ('99', 'Et unde optio molestiae et rerum sint.', 'tempore', '6', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'disponible', 'uno.jpg', '1');
INSERT INTO `products` VALUES ('100', 'Molestiae nam eum sit esse dolorum. Explicabo ea vero quo itaque.', 'quod', '7', '2020-02-18 20:09:28', '2020-02-18 20:09:28', 'no disponible', 'tres.jpg', '7');
-- ----------------------------
-- Table structure for transactions
-- ----------------------------
DROP TABLE IF EXISTS `transactions`;
CREATE TABLE `transactions` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`quantity` int(10) unsigned NOT NULL,
`buyer_id` int(10) unsigned NOT NULL,
`product_id` int(10) unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `transactions_buyer_id_foreign` (`buyer_id`),
KEY `transactions_product_id_foreign` (`product_id`)
) ENGINE=MyISAM AUTO_INCREMENT=101 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- ----------------------------
-- Records of transactions
-- ----------------------------
INSERT INTO `transactions` VALUES ('1', '2', '7', '97', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('2', '1', '10', '93', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('3', '1', '8', '70', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('4', '3', '20', '59', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('5', '2', '1', '57', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('6', '3', '9', '64', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('7', '2', '6', '57', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('8', '1', '9', '94', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('9', '1', '16', '76', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('10', '1', '9', '26', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('11', '1', '18', '94', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('12', '1', '13', '41', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('13', '1', '17', '34', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('14', '3', '10', '40', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('15', '1', '14', '38', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('16', '3', '12', '69', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('17', '3', '13', '82', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('18', '3', '2', '14', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('19', '1', '9', '92', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('20', '2', '17', '44', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('21', '2', '7', '11', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('22', '3', '13', '27', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('23', '3', '6', '72', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('24', '2', '4', '33', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('25', '3', '15', '65', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('26', '3', '8', '83', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('27', '2', '19', '7', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('28', '1', '17', '18', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('29', '3', '20', '47', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('30', '3', '11', '10', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('31', '1', '17', '47', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('32', '2', '3', '18', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('33', '3', '17', '16', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('34', '2', '20', '18', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('35', '1', '6', '77', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('36', '2', '1', '50', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('37', '2', '3', '26', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('38', '1', '1', '60', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('39', '3', '13', '56', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('40', '3', '3', '70', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('41', '3', '10', '37', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('42', '2', '12', '41', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('43', '1', '4', '69', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('44', '2', '10', '16', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('45', '3', '15', '82', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('46', '2', '18', '75', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('47', '1', '2', '90', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('48', '2', '16', '66', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('49', '1', '2', '57', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('50', '3', '20', '8', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('51', '1', '18', '58', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('52', '3', '10', '23', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('53', '1', '7', '79', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('54', '3', '9', '96', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('55', '3', '1', '28', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('56', '2', '16', '12', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('57', '1', '9', '21', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('58', '2', '5', '91', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('59', '3', '9', '72', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('60', '1', '19', '6', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('61', '1', '1', '39', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('62', '2', '7', '51', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('63', '1', '17', '6', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('64', '3', '11', '56', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('65', '3', '8', '73', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('66', '2', '8', '97', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('67', '2', '1', '48', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('68', '1', '1', '91', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('69', '3', '3', '7', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('70', '3', '16', '63', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('71', '2', '19', '42', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('72', '1', '15', '20', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('73', '1', '1', '82', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('74', '2', '10', '73', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('75', '2', '5', '56', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('76', '1', '10', '10', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('77', '2', '1', '83', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('78', '2', '1', '16', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('79', '3', '1', '80', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('80', '3', '15', '100', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('81', '3', '8', '61', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('82', '2', '1', '19', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('83', '1', '19', '33', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('84', '1', '13', '28', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('85', '2', '11', '41', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('86', '2', '9', '77', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('87', '1', '4', '47', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('88', '2', '16', '69', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('89', '2', '11', '69', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('90', '1', '20', '82', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('91', '3', '12', '76', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('92', '2', '9', '14', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('93', '1', '5', '75', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('94', '1', '16', '83', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('95', '1', '13', '55', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('96', '3', '10', '27', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('97', '3', '13', '42', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('98', '2', '8', '5', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('99', '1', '12', '91', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
INSERT INTO `transactions` VALUES ('100', '3', '5', '79', '2020-02-18 20:09:29', '2020-02-18 20:09:29');
-- ----------------------------
-- Table structure for users
-- ----------------------------
DROP TABLE IF EXISTS `users`;
CREATE TABLE `users` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`verified` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0',
`verification_token` varchar(190) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`admin` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'false',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `users_email_unique` (`email`)
) ENGINE=MyISAM AUTO_INCREMENT=39 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- ----------------------------
-- Records of users
-- ----------------------------
INSERT INTO `users` VALUES ('1', '<NAME>', '<EMAIL>', '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', 'cMHhCcWrLT', '0', 'dgH5xrSCC5fAzZImC6fjPklemUg3K2eGVnDqQqp3', 'true', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `users` VALUES ('2', '<NAME>', '<EMAIL>', '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', 'vk91Az2ggU', '0', '6J86wOBmQJJ6aQY4qmPkTKxSn8AuSg7oR8Zu4g6e', 'false', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `users` VALUES ('3', '<NAME>', '<EMAIL>', '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', 'd7ajJU254g', '0', 'E8gyeTfIVF5WuxCJq4bgGrbnXxJ1UoEx2U1pG3PO', 'false', '2020-02-18 20:09:28', '2020-02-25 16:57:05');
INSERT INTO `users` VALUES ('4', 'hessuca5', '<EMAIL>', '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', 'zuUOBhomwZ', '1', null, 'true', '2020-02-18 20:09:28', '2020-02-26 16:07:08');
INSERT INTO `users` VALUES ('5', '<NAME>', '<EMAIL>', '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', 'NHU24AL7fB', '1', null, 'true', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `users` VALUES ('6', '<NAME>', '<EMAIL>', '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', 'eeB5t9zWno', '0', 'ayoZltNAYPwOO9DXwqs5eKHC2UgSmV1xDwgUIlk3', 'false', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `users` VALUES ('7', '<NAME>', '<EMAIL>', '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', 'rXllBnWMV3', '1', null, 'false', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `users` VALUES ('8', '<NAME>', '<EMAIL>', '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', 'fEtAUPAhY5', '1', null, 'false', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `users` VALUES ('9', 'Prof. <NAME>', '<EMAIL>', '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', 'HwByTDLUxH', '1', null, 'false', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `users` VALUES ('10', '<NAME>', '<EMAIL>', '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', 'N9BiFGIeKL', '0', 'zgO6RMbbzNfPsTQwbJ44TgzCKvw8sTRzhANFxpKq', 'false', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `users` VALUES ('11', 'Prof. <NAME>', '<EMAIL>', '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', 'h3T24BIZIO', '0', 'gFC2TSE2gWR8QwTzNCPf8b5ayHc3bmzPb5vJFvYt', 'true', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `users` VALUES ('12', '<NAME>', '<EMAIL>', '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', '6CxgHyfz15', '1', null, 'false', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `users` VALUES ('13', '<NAME>', '<EMAIL>', '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', '5jpmfdshd6', '1', null, 'false', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `users` VALUES ('14', '<NAME>', '<EMAIL>', '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', '2gHqDtiN1i', '1', null, 'false', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `users` VALUES ('15', '<NAME>.', '<EMAIL>', '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', 'K7scEM5f4W', '1', null, 'true', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `users` VALUES ('16', '<NAME>', '<EMAIL>', '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', '7ayzOPNSjv', '0', 'afZqRkFgDivKxfhUSPcx0kMwUP9EeeBtINg5MpYT', 'true', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `users` VALUES ('17', '<NAME>', '<EMAIL>', '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', 'FTy2AWNO5u', '1', null, 'true', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `users` VALUES ('18', '<NAME>', '<EMAIL>', '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', '81imtZU2bc', '0', '2Ghf1IwMOzDemblAI4eCFNBI6yQ3dqY5AM6iwYsb', 'false', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `users` VALUES ('19', '<NAME>', '<EMAIL>', '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', 'lMsIeAvjLz', '1', null, 'false', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `users` VALUES ('20', '<NAME>', '<EMAIL>', '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', 'odp2R3loLL', '0', 'znL6ChWr1zisMPmdubsMXFx11zlhXzvXsZafYov6', 'true', '2020-02-18 20:09:28', '2020-02-18 20:09:28');
INSERT INTO `users` VALUES ('21', 'test', 'tset', 'test', null, '0', null, 'false', '2020-02-25 17:56:44', '2020-02-25 17:56:44');
INSERT INTO `users` VALUES ('22', 'd', '<EMAIL>', '$2y$10$InmdM8ZlzQzMCuEqdc4dmOJmN8N6OFGbl7ZXKb31ewI32iCgEAkba', null, '0', 'rXnJdRhCntkHuQ1kCq5STJf2Cg6eN71r0hmQhf1e', 'false', '2020-02-25 18:28:52', '2020-02-26 17:43:45');
INSERT INTO `users` VALUES ('23', 'asf', '<EMAIL>', <PASSWORD>$10$OIGf3/f9ClJZgb3ky4UjAeTe9GEO.y6D1OtinbNflxGZ6yMAXcune', null, '0', 'WMs89jRwjXzdtgCFx8XlEWPvsHbK14WDKkBFT3G8', 'false', '2020-02-25 19:50:59', '2020-02-25 19:50:59');
INSERT INTO `users` VALUES ('24', 'asf', '<EMAIL>', <PASSWORD>$yGL0A<PASSWORD>mOzqmdiCvYZuNOsvx.8<PASSWORD>7Zm3HtP8JzfcY<PASSWORD>0<PASSWORD>', null, '0', 'Pzp83WBaREmLZ3fiRl1I8nDa2WSMOYLdXU2geLFE', 'false', '2020-02-25 19:53:20', '2020-02-25 19:53:20');
INSERT INTO `users` VALUES ('25', 'asf', '<EMAIL>', <PASSWORD>J<PASSWORD>Ik<PASSWORD>/<PASSWORD>s<PASSWORD>', null, '0', '8MxW2GJ9nNWBLyejUCHr8pBqbgPxbb6dsT1Ji5Ha', 'false', '2020-02-25 19:53:47', '2020-02-25 19:53:47');
INSERT INTO `users` VALUES ('26', 'jessica', '<EMAIL>', '$2y$10$zGAsnvXD8eWb1XICdolDxOAZpsGMEVUW6Z787wAO/UIFvz7Jxw21S', null, '0', 'Ben4eaIf1IfhmdjDb2LBbMJpxd4HPG0Jfx0NvSwH', 'false', '2020-02-26 15:45:07', '2020-02-26 15:45:07');
INSERT INTO `users` VALUES ('27', 'freded', '<EMAIL>', '$2y$10$C.d6lhCM1PCQQ/4U92Jb.O8anc1nhkEq4BHMUV9s886JindXGOscK', null, '0', '2yGPLNtRWLiali6cGU0HsSVrI72gkjt7WB9cCyUt', 'false', '2020-02-26 18:08:18', '2020-02-26 18:08:18');
INSERT INTO `users` VALUES ('28', 'fredded', '<EMAIL>', '$2y$10$DzgowBPosg2GMToI8d23H.mv4J.Gwg0k2bEhZutfWWVbeRYQacBdG', null, '0', 'E5qnIg9tRxFhdRpTKtaD12WUuCUlZWAdM5jCWyit', 'false', '2020-02-26 18:08:37', '2020-02-26 18:08:37');
INSERT INTO `users` VALUES ('29', 'fredesrick', '<EMAIL>', '$2y$10$KI4EFiVeAgRUSpGqlDyjlOIj.KLy5h6tS2FaRbrdPT0lns51mEE3i', null, '0', 'JXaE7AoOhkPx0kAAVD5SnjdN3Ki8OpqweOOEopfJ', 'false', '2020-02-26 18:08:49', '2020-02-26 18:08:49');
INSERT INTO `users` VALUES ('30', 'freddeds', '<EMAIL>', '$2y$10$ow1g06.rQXgMLcfai6xW2.AcGCk8IsUrF5ypmPqu5jSksRHXraeJW', null, '0', '96S4imDRJxXmK4lW0zbJjo1f1GxprZhXw8B65Ubz', 'false', '2020-02-26 18:09:00', '2020-02-26 18:09:00');
INSERT INTO `users` VALUES ('31', 'fredsdeds', '<EMAIL>', '$2y$10$zhpSniXGHeVVIzwtXH063OfqtTfyIbzHnMbkh6aUd4i36wrHUN0wq', null, '0', 'TxhGwECpPPi4mBub7GGJYUEFop5Thfo6BCH0OFnB', 'false', '2020-02-26 18:11:20', '2020-02-26 18:11:20');
INSERT INTO `users` VALUES ('32', 'fredsssesrick', '<EMAIL>', <PASSWORD>y$10$cti4jC140KNhKdXYZbF6F.WoDdxdNdpO/aMqO3I/Ahn3ENtcQJdcO', null, '0', 'SCijeMVCnw9ic3RQnHRM6x25pRc0VjWwHIvjOLNP', 'false', '2020-02-26 18:11:27', '2020-02-26 18:11:27');
INSERT INTO `users` VALUES ('33', 'fredsdedsrrr', '<EMAIL>', '$2y$10$HmJyPi13LYBR.mH2Pfz8/eA3E/ItB4kxoHpqsGZQVxgTwjS27TkQK', null, '0', 'FkA4bveDqNQO5vCYfsV0x0k4x22pie5GFDa53vzs', 'false', '2020-02-26 18:16:05', '2020-02-26 18:16:05');
INSERT INTO `users` VALUES ('34', 'pedro', '<EMAIL>', '$2y$10$Y4ZVAQ5OqMgIyi1AigeSC.25R7P2mBb7uuj2u.eqBZ7isqXEb9TYy', null, '0', 'zxy80eTzPeDPU8YQh9hBUG9aDYhq58w2tzVO4ulZ', 'false', '2020-02-26 18:17:24', '2020-02-26 18:17:24');
INSERT INTO `users` VALUES ('35', 'pedro', '<EMAIL>', '$2y$10$BvvNufUofCP4ZKYubj3n.epiBq0bDFTlZfcEbKE7QqWdPfnhm1Rae', null, '0', 'S0QfacyMiuvoz2bkp2YD14s4OcHVmjtOmTcUOy13', 'false', '2020-02-26 18:18:41', '2020-02-26 18:18:41');
INSERT INTO `users` VALUES ('36', 'pedro', '<EMAIL>', '$2y$10$2rDgS1Ey8U.C6pZ/EUaN7OJE8GsGQrgB55P.0IScFLzGPYwtXVPXS', null, '0', 'oqGSZXMVKUe56mB7Un4dgP1SKtJBckOaH2Ga9Vd1', 'false', '2020-02-26 18:19:37', '2020-02-26 18:19:37');
INSERT INTO `users` VALUES ('37', 'pessdro', '<EMAIL>', <PASSWORD>', null, '0', '6VUsF5FmcSQ8e4TQwQfhSxTx8Xz7S0aai1kWGvoE', 'false', '2020-02-26 18:29:57', '2020-02-26 18:29:57');
INSERT INTO `users` VALUES ('38', 'pessdro', '<EMAIL>', <PASSWORD>g.<PASSWORD>', null, '0', 'o0uuTJM6lbPfU9bzI1Rrwt8DDfxZcJUxgWti9cej', 'false', '2020-02-26 18:31:17', '2020-02-26 18:31:17');
|
<gh_stars>0
-- phpMyAdmin SQL Dump
-- version 5.0.4
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Mar 11, 2021 at 03:50 AM
-- Server version: 10.4.17-MariaDB
-- PHP Version: 7.4.15
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: `projectstudenv2`
--
-- --------------------------------------------------------
--
-- Table structure for table `appoint`
--
CREATE TABLE `appoint` (
`appoint_id` int(255) NOT NULL,
`project_id` int(15) NOT NULL,
`appoint_date_start` datetime NOT NULL,
`appoint_date_end` datetime NOT NULL,
`apooint_minute` int(3) NOT NULL,
`appoint_comment` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`teacher_id` int(15) NOT NULL,
`appoint_status` int(2) NOT NULL,
`recorder` int(15) NOT NULL,
`appoint_recorder` datetime NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `appoint`
--
INSERT INTO `appoint` (`appoint_id`, `project_id`, `appoint_date_start`, `appoint_date_end`, `apooint_minute`, `appoint_comment`, `teacher_id`, `appoint_status`, `recorder`, `appoint_recorder`) VALUES
(3, 2222, '2021-01-13 14:57:00', '2021-01-13 18:03:00', 0, 'dfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdf', 1, 3, 11221, '2021-01-22 14:57:30'),
(4, 1111, '2021-01-29 19:59:00', '2021-01-29 19:05:00', 0, 'sdsdsd', 1, 4, 11221, '2021-01-22 14:59:09'),
(5, 2222, '2021-01-13 14:57:00', '2021-01-13 18:03:00', 0, 'dfdfdfdfdfddfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdffdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdfdf', 1, 2, 11221, '2021-01-22 14:57:30'),
(6, 2222, '2021-01-22 22:46:00', '2021-01-22 23:46:00', 0, 'กก\r\nกก\r\nหกกห\r\nหกหก\r\n', 1, 3, 11221, '2021-01-22 18:46:51'),
(7, 2222, '2021-01-23 22:00:00', '2021-01-23 22:30:00', 0, '2222', 1, 3, 11221, '2021-01-23 19:38:29'),
(8, 2222, '2021-01-23 22:00:00', '2021-01-23 22:10:00', 0, '222', 1, 3, 11221, '2021-01-23 19:40:50'),
(9, 2222, '2021-01-14 14:50:00', '2021-01-14 15:00:00', 0, 'rrwrwrwrwrrw', 1, 4, 11221, '2021-01-23 19:45:54'),
(10, 2222, '2021-01-30 12:50:00', '2021-01-30 13:00:00', 0, 'wewewewe', 2, 2, 11221, '2021-01-23 19:47:31'),
(11, 2222, '2021-01-29 02:25:00', '2021-01-29 03:24:00', 59, 'xxxxxxxxxxxxx', 2, 2, 11221, '2021-01-24 08:14:19'),
(12, 2222, '2021-01-09 04:54:00', '2021-01-09 05:27:00', 33, 'Oooooo', 1, 2, 11221, '2021-01-24 10:36:35'),
(13, 2222, '2021-01-29 19:02:00', '2021-01-29 19:22:00', 20, 'หหดหดหด', 1, 2, 11221, '2021-01-24 15:57:34'),
(14, 2222, '2021-01-29 19:02:00', '2021-01-29 19:22:00', 20, 'หหดหดหด', 1, 6, 11221, '2021-01-24 15:57:34'),
(15, 59033031, '2021-01-28 19:30:00', '2021-01-28 20:29:00', 59, 'หหหหหห', 2, 4, 594235001, '2021-01-24 20:30:35'),
(16, 59033031, '2021-01-16 22:20:00', '2021-01-16 22:50:00', 20, 'ok', 2, 5, 594235001, '2021-01-25 21:06:43'),
(17, 2222, '2021-01-24 14:52:00', '2021-01-24 15:00:00', 8, 'Oooooo', 1, 2, 11221, '2021-01-24 10:36:35'),
(18, 2222, '2021-03-25 14:52:00', '2021-03-25 15:17:00', 8, 'Oooooo', 1, 2, 11221, '2021-01-24 10:36:35'),
(19, 2222, '2021-01-06 17:52:00', '2021-01-06 18:12:00', 8, 'Oooooo', 1, 3, 11221, '2021-01-24 10:36:35'),
(20, 59033031, '2021-01-30 09:30:00', '2021-01-30 10:00:00', 15, 'zszszszss', 2, 4, 594235001, '2021-01-29 10:25:22'),
(21, 59033031, '2021-02-27 14:28:00', '2021-02-27 14:48:00', 20, 'aaaa', 2, 2, 594235001, '2021-02-02 22:28:19'),
(23, 2222, '2021-03-10 22:16:00', '2021-03-10 22:36:00', 20, '', 1, 3, 11221, '2021-03-10 22:08:11');
-- --------------------------------------------------------
--
-- Table structure for table `appoint_status`
--
CREATE TABLE `appoint_status` (
`appoint_status_id` int(2) NOT NULL,
`appoint_status_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`appoint_status_class` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`color_calendar` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`ionic_icon` varchar(255) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `appoint_status`
--
INSERT INTO `appoint_status` (`appoint_status_id`, `appoint_status_name`, `appoint_status_class`, `color_calendar`, `ionic_icon`) VALUES
(1, 'รอยืนยัน', 'warning text-dark', 'Orange', 'time-outline'),
(2, 'ยืนยัน', 'success', 'Blue', 'checkmark-circle-outline'),
(3, 'ยกเลิก', 'light text-dark', 'Orange', 'close-circle-outline'),
(4, 'เสร็จสิ้น', 'primary', 'Green', 'checkmark-done-circle-outline'),
(5, 'เปลี่ยน', 'info', 'red', 'shuffle-outline'),
(6, 'ผิดนัด', 'danger', 'Orange', 'close-circle-outline');
-- --------------------------------------------------------
--
-- Table structure for table `com05`
--
CREATE TABLE `com05` (
`com05_id` int(255) NOT NULL,
`appoint_id` int(255) NOT NULL,
`project_id` int(15) NOT NULL,
`comment_teacher` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`comment_assign` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`score` int(11) NOT NULL,
`meet_check` int(2) NOT NULL,
`teacher_id` int(15) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `com05`
--
INSERT INTO `com05` (`com05_id`, `appoint_id`, `project_id`, `comment_teacher`, `comment_assign`, `score`, `meet_check`, `teacher_id`) VALUES
(1, 3, 2222, 'comment_teacher varchar(255)', 'comment_assign varchar(255)', 2, 2, 1),
(2, 3, 59033031, 'comment_teacher varchar(255) comment_teacher varchar(255)comment_teacher varchar(255)', 'comment_assign varchar(255) comment_assign varchar(255) comment_assign varchar(255) comment_assign varchar(255)', 2, 1, 1),
(6, 3, 59033031, 'comment_teacher varchar(255) comment_teacher varchar(255)comment_teacher varchar(255)', 'comment_assign varchar(255) comment_assign varchar(255) comment_assign varchar(255) comment_assign varchar(255)', 4, 2, 1),
(7, 18, 2222, '111', '222', 2, 1, 1);
-- --------------------------------------------------------
--
-- Table structure for table `filee`
--
CREATE TABLE `filee` (
`file_id` int(255) NOT NULL,
`project_id` int(255) NOT NULL,
`file_type` int(255) NOT NULL,
`file_link` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`file_apporve` int(2) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `filee`
--
INSERT INTO `filee` (`file_id`, `project_id`, `file_type`, `file_link`, `file_apporve`) VALUES
(23, 2222, 1, 'https://www.google.com/', 1),
(24, 2222, 1, 'https://www.google.com/', 1),
(25, 2222, 3, 'https://www.google.com/2233', 1),
(26, 2222, 3, 'https://www.google.com/22', 2),
(28, 2222, 3, 'https://www.google.com/22', 1),
(30, 2222, 3, 'https://www.youtube.com/', 1),
(32, 59033031, 1, 'https://www.google.com/', 1),
(33, 59033032, 3, 'https://stackoverflow.com/questions/24975043/rollback-uncommitted-changes-in-github-desktop-or-github-for-windows', 1);
-- --------------------------------------------------------
--
-- Table structure for table `file_apporve`
--
CREATE TABLE `file_apporve` (
`apporve_id` int(2) NOT NULL,
`apporve_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `file_apporve`
--
INSERT INTO `file_apporve` (`apporve_id`, `apporve_name`) VALUES
(1, 'รอยืนยัน'),
(2, 'ยืนยันแล้ว');
-- --------------------------------------------------------
--
-- Table structure for table `file_type`
--
CREATE TABLE `file_type` (
`file_type_id` int(11) NOT NULL,
`file_type_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`file_type_icon` varchar(255) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `file_type`
--
INSERT INTO `file_type` (`file_type_id`, `file_type_name`, `file_type_icon`) VALUES
(1, 'COM-01', 'far fa-star'),
(3, 'COM-04', 'far fa-paper-plane');
-- --------------------------------------------------------
--
-- Table structure for table `items`
--
CREATE TABLE `items` (
`id` int(11) NOT NULL,
`code` varchar(50) DEFAULT NULL,
`name` varchar(255) NOT NULL,
`price` double NOT NULL,
`units` varchar(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `items`
--
INSERT INTO `items` (`id`, `code`, `name`, `price`, `units`) VALUES
(1, 'B10', 'HP C4844A BLACK (10)', 1300, 'ตลับ'),
(2, 'C11', 'HP C4836A CYAN (11)', 1220, 'ตลับ'),
(3, 'Y11', 'HP C4838A YELLOW (11)', 1220, 'ตลับ'),
(4, 'C920XL', 'HP CD972A CYAN (920XL)', 450, 'ตลับ'),
(5, 'B920XL', 'HP CD975A BLACK (920XL)', 930, 'ตลับ'),
(6, 'TZ631', 'BROTHER TZ 631', 800, 'ตลับ'),
(7, 'LQ2190', 'EPSON LQ 2190', 550, 'ตลับ'),
(8, 'LQ300', 'EPSON LQ 300+', 180, 'ตลับ'),
(9, 'L800LC', 'EPSON L800 L-CYAN', 470, 'ขวด'),
(10, 'L800LM', 'EPSON L800 L-MAGEN', 470, 'ขวด');
-- --------------------------------------------------------
--
-- Table structure for table `major`
--
CREATE TABLE `major` (
`student_major_id` int(2) NOT NULL,
`student_major_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `major`
--
INSERT INTO `major` (`student_major_id`, `student_major_name`) VALUES
(1, 'เทคโนโลยีสารสนเทศ'),
(2, 'cs');
-- --------------------------------------------------------
--
-- Table structure for table `meet_check`
--
CREATE TABLE `meet_check` (
`meet_check_id` int(2) NOT NULL,
`meet_check_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `meet_check`
--
INSERT INTO `meet_check` (`meet_check_id`, `meet_check_name`) VALUES
(1, 'มาตามนัด'),
(2, 'มาสาย');
-- --------------------------------------------------------
--
-- Table structure for table `notifications_student`
--
CREATE TABLE `notifications_student` (
`notifications_id` int(11) NOT NULL,
`notifications_sender` int(11) NOT NULL,
`notifications_recipient` int(11) NOT NULL,
`notifications_message` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`notifications_date` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `notifications_teacher`
--
CREATE TABLE `notifications_teacher` (
`notifications_id` int(255) NOT NULL,
`notifications_sender` int(15) NOT NULL,
`notifications_project` int(15) NOT NULL,
`notifications_message` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`notifications_date` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `notification_stu`
--
CREATE TABLE `notification_stu` (
`notification_id` int(255) NOT NULL,
`notification_teacher` int(15) NOT NULL,
`notification_action` varchar(255) NOT NULL,
`notification_appoint_date` datetime NOT NULL,
`notification_date` datetime NOT NULL DEFAULT current_timestamp(),
`notification_project` int(15) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `notification_stu`
--
INSERT INTO `notification_stu` (`notification_id`, `notification_teacher`, `notification_action`, `notification_appoint_date`, `notification_date`, `notification_project`) VALUES
(1, 1, 'ยืนยัน', '2021-02-16 23:16:14', '2021-02-14 23:17:21', 59033031),
(2, 1, 'ยืนยัน', '2021-02-16 23:16:14', '2021-02-14 23:17:45', 59033031),
(3, 1, 'ยืนยัน', '2021-02-16 23:16:14', '2021-02-14 23:20:00', 59033031);
-- --------------------------------------------------------
--
-- Table structure for table `pr`
--
CREATE TABLE `pr` (
`pr_id` int(11) NOT NULL,
`pr_header` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`pr_content` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`pr_record` int(10) NOT NULL,
`pr_date` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `pr`
--
INSERT INTO `pr` (`pr_id`, `pr_header`, `pr_content`, `pr_record`, `pr_date`) VALUES
(1, 'ทดสอบ', 'ทดสอบบบบบออ', 330004, '2021-03-04 09:17:50'),
(2, 'ทดสอบ', 'ทดสอบบบบบออ', 330004, '2021-03-04 09:17:50'),
(3, 'ทดสอบ', 'ทดสอบบบบบออ', 330004, '2021-03-04 09:17:50');
-- --------------------------------------------------------
--
-- Table structure for table `project`
--
CREATE TABLE `project` (
`project_id` int(15) NOT NULL,
`project_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`project_type` int(2) NOT NULL,
`project_adviser1` int(15) NOT NULL,
`project_adviser2` int(15) NOT NULL,
`project_status` int(2) NOT NULL DEFAULT 1,
`project_record` int(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `project`
--
INSERT INTO `project` (`project_id`, `project_name`, `project_type`, `project_adviser1`, `project_adviser2`, `project_status`, `project_record`) VALUES
(1111, 'รอปรับปรุงข้อมูล', 1, 1111, 3, 3, 1),
(2222, 'dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd', 2, 1, 3, 1, 1),
(5588, 'ระบบไฟฟ้าพลังงานหมุนเวียน', 2, 2, 4, 3, 1),
(55478, 'ssdsd', 1, 1, 2, 2, 1),
(59033031, 'ระบบค้นหาช่างภาพ', 1, 1, 2, 1, 1),
(59033032, 'ระบบค้นหาช่างภาพ', 1, 4, 1, 2, 1);
-- --------------------------------------------------------
--
-- Table structure for table `project_status`
--
CREATE TABLE `project_status` (
`project_status_id` int(2) NOT NULL,
`project_status_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`project_status_class` varchar(255) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `project_status`
--
INSERT INTO `project_status` (`project_status_id`, `project_status_name`, `project_status_class`) VALUES
(1, 'ดำเนินการ', 'warning text-dark'),
(2, 'เสร็จสิ้น', 'success'),
(3, 'ยกเลิก', 'danger');
-- --------------------------------------------------------
--
-- Table structure for table `project_type`
--
CREATE TABLE `project_type` (
`project_type_id` int(2) NOT NULL,
`project_type_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `project_type`
--
INSERT INTO `project_type` (`project_type_id`, `project_type_name`) VALUES
(1, 'ระบบ'),
(2, 'วิจัย'),
(3, 'อเนมิชั่น'),
(4, 'IOT');
-- --------------------------------------------------------
--
-- Table structure for table `score`
--
CREATE TABLE `score` (
`score_id` int(11) NOT NULL,
`score_score` int(3) NOT NULL,
`score_detail` varchar(255) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `score`
--
INSERT INTO `score` (`score_id`, `score_score`, `score_detail`) VALUES
(1, 1, 'aaa'),
(2, 2, 'aalla'),
(3, 3, 'aasdsda'),
(4, 4, 'asdsdaa'),
(5, 5, 'aasdsa');
-- --------------------------------------------------------
--
-- Table structure for table `student`
--
CREATE TABLE `student` (
`student_id` int(15) NOT NULL,
`student_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`student_major` int(2) NOT NULL,
`student_phone` varchar(15) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0000000000',
`student_email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`student_password` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`student_photo` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'https://i.ibb.co/BVcPqGJ/profile-picture-2qq.jpg',
`student_project` int(15) NOT NULL DEFAULT 1111,
`student_type` int(2) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `student`
--
INSERT INTO `student` (`student_id`, `student_name`, `student_major`, `student_phone`, `student_email`, `student_password`, `student_photo`, `student_project`, `student_type`) VALUES
(12, '', 1, '1414141', '<EMAIL>', '', 'student_photo', 59033031, 1),
(59, 'ดานิยาน พร้อมมูล', 1, '0821414145', '<EMAIL>', '<PASSWORD>', '', 59033032, 1),
(1111, 's<NAME>', 1, '74747474', '<EMAIL>', 'aaa', 'student_photo', 59033031, 1),
(9999, 'อาจารย์ที่ปรึกษาโครงงาน', 1, '11111111', '1sss@ddd', 'c8c605999f3d8352d7bb792cf3fdb25b', 'student_photo', 59033031, 1),
(11221, 's<NAME>', 1, '44144qq', '<EMAIL>', '698d51a19d8a121ce581499d7b701668', 'https://i.ibb.co/BVcPqGJ/profile-picture-2qq.jpg', 2222, 2),
(574235001, 'นายสมพร สุวรรณมณี', 1, '0000000000', '<EMAIL>', '1ee1c9b2ba5aa6960ec85aed77bae1d5', '', 2222, 1),
(574235002, 'นายแดง ชัยศรี', 1, '0000000000', '<EMAIL>', 'cbcd536ec5742ce3c7e35bb7153438e2', '', 5588, 1),
(574235003, 'นางสาวกิตติยา ทองมณี', 1, '0000000000', '<EMAIL>', '5b862d22b22489b132b362e406f401b6', '', 2222, 1),
(574235004, 'นางสาววิภาวัลย์ ทองดี', 2, '0000000000', '<EMAIL>', '2b5d646dd5c3cead9b057948aee8f692', '', 2222, 1),
(574235005, 'นายสมศักดิ์ นบดินบดี', 1, '0000000000', '<EMAIL>', 'a2f30c39b40205308756fd95a10cdd22', '', 5588, 1),
(574235006, 'นายวราชิต บางลาง', 2, '0000000000', '', 'd06dce656e2fd9dc1b0b0d1249795438', 'https://i.ibb.co/BVcPqGJ/profile-picture-2qq.jpg', 2222, 1),
(574235007, 'นายกิตติศักดิ์ กมลา', 2, '0000000000', '', '430d3aa9b23700417ea9b78e2a62e5fa', 'https://i.ibb.co/BVcPqGJ/profile-picture-2qq.jpg', 2222, 1),
(574235008, 'นางสาวพรภิมล พฤษภา', 1, '0000000000', '<EMAIL>', '0e3a9a806f2100a14197841c813c535c', '', 2222, 1),
(594235001, 'กชกร จ่าวิสูตร', 1, '0811555532', '<EMAIL>', '698d51a19d8a121ce581499d7b701668', 'https://i.ibb.co/ZJHGHvx/594235001.jpg', 59033031, 1),
(594235002, 'ขวัญทิพย์ สส', 1, '0824364892', '<EMAIL>', '698d51a19d8a121ce581499d7b701668', 'https://i.ibb.co/HFB65Yz/asa.png', 55478, 1),
(594235008, 'ดานิยาน พร้อมมูล', 1, '0869624129', '<EMAIL>', 'b0baee9d279d34fa1dfd71aadb908c3f', 'https://i.ibb.co/HFB65Yz/asa.png', 2222, 1),
(594235033, 'สุพิชญา เส้งหวัด', 1, '081154417117', '<EMAIL>', '698d51a19d8a121ce581499d7b701668', 'https://i.ibb.co/1fcKRpT/594235033001.jpg', 59033031, 1);
-- --------------------------------------------------------
--
-- Table structure for table `student_active`
--
CREATE TABLE `student_active` (
`active_id` int(2) NOT NULL,
`active_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `student_active`
--
INSERT INTO `student_active` (`active_id`, `active_name`) VALUES
(1, 'ปกติ'),
(2, 'ปิดการใช้งาน');
-- --------------------------------------------------------
--
-- Table structure for table `subject_day`
--
CREATE TABLE `subject_day` (
`day_id` int(2) NOT NULL,
`day_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `subject_day`
--
INSERT INTO `subject_day` (`day_id`, `day_name`) VALUES
(1, 'จันทร์'),
(2, 'อังคาร'),
(3, 'พุธ'),
(4, 'พฤหัสบดี'),
(5, 'ศุกร์');
-- --------------------------------------------------------
--
-- Table structure for table `subject_hash_project`
--
CREATE TABLE `subject_hash_project` (
`sp_id` int(20) NOT NULL,
`sp_subject_id` varchar(15) COLLATE utf8_unicode_ci NOT NULL,
`sp_project_id` int(15) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `subject_hash_project`
--
INSERT INTO `subject_hash_project` (`sp_id`, `sp_subject_id`, `sp_project_id`) VALUES
(42, '7ZxTlc', 2222),
(43, 'u3BDNX', 59033032),
(44, 'u3BDNX', 59033031),
(45, 'u3BDNX', 2222),
(46, '7ZxTlc', 59033032),
(47, '7ZxTlc', 59033031),
(59, '7ZxTlc', 55478);
-- --------------------------------------------------------
--
-- Table structure for table `subject_hash_student`
--
CREATE TABLE `subject_hash_student` (
`ss_id` int(20) NOT NULL,
`ss_subject_id` varchar(15) COLLATE utf8_unicode_ci NOT NULL,
`ss_student_id` int(15) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `subject_hash_student`
--
INSERT INTO `subject_hash_student` (`ss_id`, `ss_subject_id`, `ss_student_id`) VALUES
(3, 'u3BDNX', 594235001),
(15, '7ZxTlc', 594235001),
(16, '7ZxTlc', 594235033),
(22, '7ZxTlc', 594235008),
(23, '7ZxTlc', 594235002),
(26, '40ooP7', 574235001),
(27, '40ooP7', 574235002),
(28, '40ooP7', 574235003),
(29, '40ooP7', 574235004),
(30, '40ooP7', 574235005),
(33, '40ooP7', 574235008),
(34, 'u3BDNX', 574235001);
-- --------------------------------------------------------
--
-- Table structure for table `subject_project`
--
CREATE TABLE `subject_project` (
`subject_id` varchar(15) COLLATE utf8_unicode_ci NOT NULL,
`subject_id2` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
`subject_classroom` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`subject_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`subject_semester` varchar(3) COLLATE utf8_unicode_ci NOT NULL,
`subject_year` int(5) NOT NULL,
`subject_sec` varchar(5) COLLATE utf8_unicode_ci NOT NULL,
`subject_day` int(2) NOT NULL,
`subject_teacher` int(10) NOT NULL,
`subject_record` datetime NOT NULL DEFAULT current_timestamp(),
`subject_time_start` time NOT NULL,
`subject_time_end` time NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `subject_project`
--
INSERT INTO `subject_project` (`subject_id`, `subject_id2`, `subject_classroom`, `subject_name`, `subject_semester`, `subject_year`, `subject_sec`, `subject_day`, `subject_teacher`, `subject_record`, `subject_time_start`, `subject_time_end`) VALUES
('40ooP7', '3434', 'afdzdvz', 'sdsdscsvsf', '4', 4444, 'sgsfg', 2, 1, '2021-03-10 21:16:58', '23:19:00', '01:21:00'),
('7ZxTlc', 'qqq', '1', 'qqqq', '1', 1, '1', 1, 1, '2021-02-07 11:39:29', '00:00:00', '00:00:00'),
('k4CC66', '4122250', 'cgcnnnny41', 'hjcxvxbxbxb', '1', 23, '04', 2, 1, '2021-03-10 21:15:32', '00:00:00', '13:15:00'),
('u3BDNX', 'ada22', 'sdsdxssxa', 'ddd', '', 2564, '1', 1, 1, '2021-02-07 11:37:33', '00:00:00', '00:00:00');
-- --------------------------------------------------------
--
-- Table structure for table `tbl_info`
--
CREATE TABLE `tbl_info` (
`id` int(11) NOT NULL,
`names` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`descriptionf` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `tbl_info`
--
INSERT INTO `tbl_info` (`id`, `names`, `descriptionf`, `email`, `date`) VALUES
(1, 'ddddd', 'B', 'C', '2021-01-24 08:21:35'),
(2, 'ddddd', 'student', '<EMAIL>', '2021-01-24 08:22:10'),
(3, 'ddddd', 'พร้อมมูล', 'ww@el', '2021-01-24 08:22:10');
-- --------------------------------------------------------
--
-- Table structure for table `teacher`
--
CREATE TABLE `teacher` (
`teacher_id` int(10) NOT NULL,
`teacher_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`teacher_email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`teacher_password` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`teacher_photo` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'https://i.ibb.co/HFB65Yz/asa.png',
`teacher_type` int(1) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `teacher`
--
INSERT INTO `teacher` (`teacher_id`, `teacher_name`, `teacher_email`, `teacher_password`, `teacher_photo`, `teacher_type`) VALUES
(1, 'ผศ.ทองมณี สุวรรณภาลัย', 'bbbbbb11@rrr', '<PASSWORD>', 'https://i.ibb.co/HFB65Yz/asa.png', 2),
(2, 'ผศ.ปรวิศ สิทธกร', 'bbbbbb', '<PASSWORD>', 'https://i.ibb.co/HFB65Yz/asa.png', 1),
(3, 'ไม่มีอาจารย์ที่ปรึกษาร่วม', '<PASSWORD>', '', '', 2),
(4, 'ผศ.แสงดาว ฉายแสง', 'bbbbbb', '<PASSWORD>', 'https://i.ibb.co/HFB65Yz/asa.png', 2),
(1111, 'รอปรับปรุงข้อมูล', 'รอปรับปรุงข้อมูล', '', '', 1),
(330002, 'สมศักดิ์ ศรีสะอาด', 'somsak@ss', '<PASSWORD>', 'https://i.ibb.co/HFB65Yz/asa.png', 1),
(330004, 'สมรักษ์ คำสิงห์', 'somsak@ss', '<PASSWORD>', 'https://i.ibb.co/HFB65Yz/asa.png', 3);
-- --------------------------------------------------------
--
-- Table structure for table `teacher_type`
--
CREATE TABLE `teacher_type` (
`teacher_type_id` int(5) NOT NULL,
`teacher_type_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `teacher_type`
--
INSERT INTO `teacher_type` (`teacher_type_id`, `teacher_type_name`) VALUES
(1, 'อาจารย์'),
(2, 'อาจารย์ประจำวิชา'),
(3, 'ผู้ดูแลระบบ');
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`id` int(11) NOT NULL,
`username` varchar(255) NOT NULL,
`password` varchar(255) NOT NULL,
`telephone` varchar(25) NOT NULL,
`email` varchar(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `username`, `password`, `telephone`, `email`) VALUES
(594235002, 'daniyan', '11111', '0936681712', '<EMAIL>');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `appoint`
--
ALTER TABLE `appoint`
ADD PRIMARY KEY (`appoint_id`),
ADD KEY `project_id` (`project_id`),
ADD KEY `recorder` (`recorder`),
ADD KEY `teacher_id` (`teacher_id`),
ADD KEY `appoint_status` (`appoint_status`);
--
-- Indexes for table `appoint_status`
--
ALTER TABLE `appoint_status`
ADD PRIMARY KEY (`appoint_status_id`);
--
-- Indexes for table `com05`
--
ALTER TABLE `com05`
ADD PRIMARY KEY (`com05_id`),
ADD KEY `appoint_id` (`appoint_id`),
ADD KEY `project_id` (`project_id`),
ADD KEY `teacher_id` (`teacher_id`),
ADD KEY `score` (`score`),
ADD KEY `meet_check` (`meet_check`);
--
-- Indexes for table `filee`
--
ALTER TABLE `filee`
ADD PRIMARY KEY (`file_id`),
ADD KEY `file_type` (`file_type`),
ADD KEY `project_id` (`project_id`),
ADD KEY `file_apporve` (`file_apporve`);
--
-- Indexes for table `file_apporve`
--
ALTER TABLE `file_apporve`
ADD PRIMARY KEY (`apporve_id`);
--
-- Indexes for table `file_type`
--
ALTER TABLE `file_type`
ADD PRIMARY KEY (`file_type_id`);
--
-- Indexes for table `items`
--
ALTER TABLE `items`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `major`
--
ALTER TABLE `major`
ADD PRIMARY KEY (`student_major_id`);
--
-- Indexes for table `meet_check`
--
ALTER TABLE `meet_check`
ADD PRIMARY KEY (`meet_check_id`);
--
-- Indexes for table `notifications_student`
--
ALTER TABLE `notifications_student`
ADD PRIMARY KEY (`notifications_id`),
ADD KEY `notifications_sender` (`notifications_sender`),
ADD KEY `notifications_recipient` (`notifications_recipient`);
--
-- Indexes for table `notifications_teacher`
--
ALTER TABLE `notifications_teacher`
ADD PRIMARY KEY (`notifications_id`),
ADD KEY `notifications_project` (`notifications_project`),
ADD KEY `notifications_sender` (`notifications_sender`);
--
-- Indexes for table `notification_stu`
--
ALTER TABLE `notification_stu`
ADD PRIMARY KEY (`notification_id`),
ADD KEY `notification_project` (`notification_project`),
ADD KEY `notification_teacher` (`notification_teacher`);
--
-- Indexes for table `pr`
--
ALTER TABLE `pr`
ADD PRIMARY KEY (`pr_id`),
ADD KEY `pr_record` (`pr_record`);
--
-- Indexes for table `project`
--
ALTER TABLE `project`
ADD PRIMARY KEY (`project_id`),
ADD KEY `project_type` (`project_type`),
ADD KEY `project_status` (`project_status`),
ADD KEY `project_adviser1` (`project_adviser1`),
ADD KEY `project_adviser2` (`project_adviser2`),
ADD KEY `project_record` (`project_record`);
--
-- Indexes for table `project_status`
--
ALTER TABLE `project_status`
ADD PRIMARY KEY (`project_status_id`);
--
-- Indexes for table `project_type`
--
ALTER TABLE `project_type`
ADD PRIMARY KEY (`project_type_id`);
--
-- Indexes for table `score`
--
ALTER TABLE `score`
ADD PRIMARY KEY (`score_id`);
--
-- Indexes for table `student`
--
ALTER TABLE `student`
ADD PRIMARY KEY (`student_id`),
ADD KEY `student_major` (`student_major`),
ADD KEY `student_project` (`student_project`),
ADD KEY `student_type` (`student_type`);
--
-- Indexes for table `student_active`
--
ALTER TABLE `student_active`
ADD PRIMARY KEY (`active_id`);
--
-- Indexes for table `subject_day`
--
ALTER TABLE `subject_day`
ADD PRIMARY KEY (`day_id`);
--
-- Indexes for table `subject_hash_project`
--
ALTER TABLE `subject_hash_project`
ADD PRIMARY KEY (`sp_id`),
ADD KEY `sp_project_id` (`sp_project_id`),
ADD KEY `sp_subject_id` (`sp_subject_id`);
--
-- Indexes for table `subject_hash_student`
--
ALTER TABLE `subject_hash_student`
ADD PRIMARY KEY (`ss_id`),
ADD KEY `ss_subject_id` (`ss_subject_id`),
ADD KEY `ss_student_id` (`ss_student_id`);
--
-- Indexes for table `subject_project`
--
ALTER TABLE `subject_project`
ADD PRIMARY KEY (`subject_id`),
ADD KEY `subject_teacher` (`subject_teacher`),
ADD KEY `subject_day` (`subject_day`);
--
-- Indexes for table `tbl_info`
--
ALTER TABLE `tbl_info`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `teacher`
--
ALTER TABLE `teacher`
ADD PRIMARY KEY (`teacher_id`),
ADD KEY `teacher_type` (`teacher_type`);
--
-- Indexes for table `teacher_type`
--
ALTER TABLE `teacher_type`
ADD PRIMARY KEY (`teacher_type_id`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `appoint`
--
ALTER TABLE `appoint`
MODIFY `appoint_id` int(255) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=24;
--
-- AUTO_INCREMENT for table `com05`
--
ALTER TABLE `com05`
MODIFY `com05_id` int(255) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT for table `filee`
--
ALTER TABLE `filee`
MODIFY `file_id` int(255) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34;
--
-- AUTO_INCREMENT for table `items`
--
ALTER TABLE `items`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;
--
-- AUTO_INCREMENT for table `notifications_student`
--
ALTER TABLE `notifications_student`
MODIFY `notifications_id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `notifications_teacher`
--
ALTER TABLE `notifications_teacher`
MODIFY `notifications_id` int(255) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `notification_stu`
--
ALTER TABLE `notification_stu`
MODIFY `notification_id` int(255) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `pr`
--
ALTER TABLE `pr`
MODIFY `pr_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `subject_hash_project`
--
ALTER TABLE `subject_hash_project`
MODIFY `sp_id` int(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=61;
--
-- AUTO_INCREMENT for table `subject_hash_student`
--
ALTER TABLE `subject_hash_student`
MODIFY `ss_id` int(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=35;
--
-- AUTO_INCREMENT for table `tbl_info`
--
ALTER TABLE `tbl_info`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=594235003;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `appoint`
--
ALTER TABLE `appoint`
ADD CONSTRAINT `appoint_ibfk_1` FOREIGN KEY (`project_id`) REFERENCES `project` (`project_id`),
ADD CONSTRAINT `appoint_ibfk_2` FOREIGN KEY (`recorder`) REFERENCES `student` (`student_id`),
ADD CONSTRAINT `appoint_ibfk_3` FOREIGN KEY (`teacher_id`) REFERENCES `teacher` (`teacher_id`),
ADD CONSTRAINT `appoint_ibfk_4` FOREIGN KEY (`appoint_status`) REFERENCES `appoint_status` (`appoint_status_id`);
--
-- Constraints for table `com05`
--
ALTER TABLE `com05`
ADD CONSTRAINT `com05_ibfk_1` FOREIGN KEY (`appoint_id`) REFERENCES `appoint` (`appoint_id`),
ADD CONSTRAINT `com05_ibfk_2` FOREIGN KEY (`project_id`) REFERENCES `project` (`project_id`),
ADD CONSTRAINT `com05_ibfk_3` FOREIGN KEY (`teacher_id`) REFERENCES `teacher` (`teacher_id`),
ADD CONSTRAINT `com05_ibfk_4` FOREIGN KEY (`score`) REFERENCES `score` (`score_id`),
ADD CONSTRAINT `com05_ibfk_5` FOREIGN KEY (`meet_check`) REFERENCES `meet_check` (`meet_check_id`);
--
-- Constraints for table `filee`
--
ALTER TABLE `filee`
ADD CONSTRAINT `filee_ibfk_1` FOREIGN KEY (`file_type`) REFERENCES `file_type` (`file_type_id`),
ADD CONSTRAINT `filee_ibfk_2` FOREIGN KEY (`project_id`) REFERENCES `project` (`project_id`),
ADD CONSTRAINT `filee_ibfk_3` FOREIGN KEY (`file_apporve`) REFERENCES `file_apporve` (`apporve_id`);
--
-- Constraints for table `notifications_student`
--
ALTER TABLE `notifications_student`
ADD CONSTRAINT `notifications_student_ibfk_1` FOREIGN KEY (`notifications_sender`) REFERENCES `student` (`student_id`),
ADD CONSTRAINT `notifications_student_ibfk_2` FOREIGN KEY (`notifications_recipient`) REFERENCES `teacher` (`teacher_id`);
--
-- Constraints for table `notifications_teacher`
--
ALTER TABLE `notifications_teacher`
ADD CONSTRAINT `notifications_teacher_ibfk_1` FOREIGN KEY (`notifications_project`) REFERENCES `project` (`project_id`),
ADD CONSTRAINT `notifications_teacher_ibfk_2` FOREIGN KEY (`notifications_sender`) REFERENCES `teacher` (`teacher_id`);
--
-- Constraints for table `notification_stu`
--
ALTER TABLE `notification_stu`
ADD CONSTRAINT `notification_stu_ibfk_1` FOREIGN KEY (`notification_project`) REFERENCES `project` (`project_id`),
ADD CONSTRAINT `notification_stu_ibfk_2` FOREIGN KEY (`notification_teacher`) REFERENCES `teacher` (`teacher_id`);
--
-- Constraints for table `pr`
--
ALTER TABLE `pr`
ADD CONSTRAINT `pr_ibfk_1` FOREIGN KEY (`pr_record`) REFERENCES `teacher` (`teacher_id`);
--
-- Constraints for table `project`
--
ALTER TABLE `project`
ADD CONSTRAINT `project_ibfk_1` FOREIGN KEY (`project_type`) REFERENCES `project_type` (`project_type_id`),
ADD CONSTRAINT `project_ibfk_2` FOREIGN KEY (`project_status`) REFERENCES `project_status` (`project_status_id`),
ADD CONSTRAINT `project_ibfk_3` FOREIGN KEY (`project_adviser1`) REFERENCES `teacher` (`teacher_id`),
ADD CONSTRAINT `project_ibfk_4` FOREIGN KEY (`project_adviser2`) REFERENCES `teacher` (`teacher_id`),
ADD CONSTRAINT `project_ibfk_5` FOREIGN KEY (`project_record`) REFERENCES `teacher` (`teacher_id`);
--
-- Constraints for table `student`
--
ALTER TABLE `student`
ADD CONSTRAINT `student_ibfk_1` FOREIGN KEY (`student_major`) REFERENCES `major` (`student_major_id`),
ADD CONSTRAINT `student_ibfk_2` FOREIGN KEY (`student_project`) REFERENCES `project` (`project_id`),
ADD CONSTRAINT `student_ibfk_3` FOREIGN KEY (`student_type`) REFERENCES `student_active` (`active_id`);
--
-- Constraints for table `subject_hash_project`
--
ALTER TABLE `subject_hash_project`
ADD CONSTRAINT `subject_hash_project_ibfk_1` FOREIGN KEY (`sp_project_id`) REFERENCES `project` (`project_id`);
--
-- Constraints for table `subject_hash_student`
--
ALTER TABLE `subject_hash_student`
ADD CONSTRAINT `subject_hash_student_ibfk_1` FOREIGN KEY (`ss_subject_id`) REFERENCES `subject_project` (`subject_id`),
ADD CONSTRAINT `subject_hash_student_ibfk_2` FOREIGN KEY (`ss_student_id`) REFERENCES `student` (`student_id`);
--
-- Constraints for table `subject_project`
--
ALTER TABLE `subject_project`
ADD CONSTRAINT `subject_project_ibfk_1` FOREIGN KEY (`subject_teacher`) REFERENCES `teacher` (`teacher_id`),
ADD CONSTRAINT `subject_project_ibfk_2` FOREIGN KEY (`subject_day`) REFERENCES `subject_day` (`day_id`);
--
-- Constraints for table `teacher`
--
ALTER TABLE `teacher`
ADD CONSTRAINT `teacher_ibfk_1` FOREIGN KEY (`teacher_type`) REFERENCES `teacher_type` (`teacher_type_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 */;
|
<reponame>gregth-dev/symbnb
-- phpMyAdmin SQL Dump
-- version 4.9.2
-- https://www.phpmyadmin.net/
--
-- Hôte : 127.0.0.1:3306
-- Généré le : sam. 13 juin 2020 à 16:01
-- Version du serveur : 8.0.18
-- Version de PHP : 7.4.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 */;
--
-- Base de données : `gregorythorel_symbnb`
--
-- --------------------------------------------------------
--
-- Structure de la table `ad`
--
DROP TABLE IF EXISTS `ad`;
CREATE TABLE IF NOT EXISTS `ad` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`price` double NOT NULL,
`introduction` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`cover_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`rooms` int(11) NOT NULL,
`slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`author_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `IDX_77E0ED58F675F31B` (`author_id`)
) ENGINE=InnoDB AUTO_INCREMENT=824 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Déchargement des données de la table `ad`
--
INSERT INTO `ad` (`id`, `title`, `price`, `introduction`, `content`, `cover_image`, `rooms`, `slug`, `author_id`) VALUES
(792, 'Provident recusandae cum exercitationem voluptas est est.', 132, 'Dolore nostrum at et facilis alias unde dolorem iure. Quia dolore a omnis recusandae aliquid sint. Quam id quo iusto quos molestiae.', 'Ea consequatur est sunt. Possimus dolor animi dolore id. Animi quidem consequuntur voluptatem esse beatae sint quia iusto. Quo nihil sed amet molestiae commodi explicabo ullam similique. Quod nam tempora non incidunt quaerat maxime tempore. Maxime est facilis inventore dolorem. Et rerum voluptate et facilis quaerat eveniet. Totam optio quibusdam consequuntur voluptates voluptas natus qui et.', 'https://picsum.photos/1000/350?random=1', 5, 'provident-recusandae-cum-exercitationem-voluptas-est-est', 168),
(793, 'Fugiat dolores corporis maxime ducimus.', 101, 'Sapiente qui blanditiis rem dolorem ut amet quidem. Sed ut tenetur minima fugit. Autem modi omnis corrupti ullam laudantium unde.', 'Consequuntur ducimus modi eum vero atque. Et voluptate et distinctio nihil. Assumenda illum delectus eum. Est voluptate impedit autem. Ad dolores nam nobis dolores voluptas repudiandae. Natus temporibus ut perferendis eum reprehenderit molestiae. Ipsa molestias similique odit et accusamus placeat ipsam. Cupiditate rerum quibusdam quas dolores fuga facilis voluptas. Culpa non autem qui voluptatem vel et.', 'https://picsum.photos/1000/350?random=2', 3, 'fugiat-dolores-corporis-maxime-ducimus-quae-vero', 169),
(794, 'Rerum ut id consequatur aut.', 130, 'Eum eaque tenetur omnis aut voluptates. Dolores vero sint rem fugiat fugit accusamus.', 'Reiciendis ratione ut ea enim. Cum id aut provident praesentium animi quos voluptatem. Et non deserunt distinctio quia consequatur consequatur. Architecto repudiandae ullam eligendi et veritatis. A quia saepe velit aut enim ut voluptatibus dolore. Esse culpa dolor omnis quasi possimus. Veniam doloribus fuga ut. Nemo tenetur atque officiis id facilis labore. Est id consequatur nihil autem laboriosam voluptate suscipit. Architecto ut omnis quod facere aut molestias temporibus quis.', 'https://picsum.photos/1000/350?random=3', 1, 'rerum-ut-id-consequatur-aut', 175),
(795, 'Placeat eaque non vitae voluptatum molestias.', 42, 'Nesciunt reiciendis architecto id et rerum provident. Non aut sit quisquam ea culpa. Autem voluptas sit qui aut laboriosam.', 'Modi ipsa quos numquam asperiores nam. Beatae ab iure ut iusto sint quia quidem. Enim nemo facilis praesentium magnam. Itaque inventore nostrum et maxime cupiditate. Et qui pariatur harum alias sit minus. Et dolore ad et vel eius. Molestias officiis velit et et eos quo culpa. Dolore qui aliquid voluptas et. Sit suscipit illo rerum. Quis a quod omnis animi consequatur architecto aliquid. Omnis atque ut illum molestiae nobis. Aut et inventore et. Repellat qui error in ut exercitationem dolores minus. Quia quaerat sint est beatae.', 'https://picsum.photos/1000/350?random=4', 5, 'placeat-eaque-non-vitae-voluptatum-molestias', 170),
(796, 'Ratione blanditiis accusantium enim quia temporibus.', 71, 'Sint quis recusandae et voluptatem reiciendis in vero. Deserunt quisquam cum illum maiores.', 'Explicabo beatae rerum earum quam rerum. Aliquid id illum impedit qui harum. Deserunt corporis et ex ut nihil aut fugiat ut. Enim maiores accusamus non sed. Sit aut fugit voluptas atque ut. Commodi sunt sed officia laborum nemo ducimus aperiam quia. Voluptatem quibusdam sed sit porro eaque aliquid. Fugit natus porro impedit autem voluptatem. Et deserunt magni eum nam voluptate eveniet asperiores dolorem. Tempore vero sint est quisquam dicta ipsa iure est. Sit nemo recusandae voluptatum enim beatae. Ratione modi atque laudantium blanditiis et.', 'https://picsum.photos/1000/350?random=5', 5, 'ratione-blanditiis-accusantium-enim-quia-temporibus', 176),
(797, 'Aut nisi doloribus omnis pariatur corporis.', 99, 'Modi similique aut facilis dolorem laborum dolor maiores. Voluptas assumenda a voluptatem est aut vel.', 'Veritatis dolorem quis sint voluptas vero. Velit quaerat dolor harum dolore. Deleniti sapiente iure soluta sed voluptas. Et et esse ex totam vel velit earum dicta. Sint enim voluptatum asperiores pariatur unde voluptate. Deserunt deserunt non et suscipit sed iure animi. Veniam quis ut hic quo. Error illo repudiandae non dolorem rerum et nemo.', 'https://picsum.photos/1000/350?random=6', 5, 'aut-nisi-doloribus-omnis-pariatur-corporis', 170),
(798, 'Modi labore ipsa tempora sit.', 48, 'Maiores dolores sunt hic repudiandae ut quaerat aspernatur. Doloribus quos autem sapiente.', 'Omnis consequuntur debitis nisi natus doloribus aut esse. Magni autem ut asperiores commodi. Corrupti perspiciatis et maxime autem molestiae qui nulla vel. Odit consequatur odio perferendis quaerat. Architecto voluptatum veritatis sed sed qui rerum sit. Quod cumque blanditiis tenetur sint tempora. Veritatis aperiam nostrum sed similique. Esse alias veritatis voluptatem id dolor voluptatum maiores. Voluptatem in a facere ipsum excepturi. Perferendis in veritatis doloremque eos id iste id. Quia commodi molestiae earum voluptatibus soluta ducimus qui. Alias maiores dolorem magnam id nostrum repudiandae.', 'https://picsum.photos/1000/350?random=7', 4, 'modi-labore-ipsa-tempora-sit', 171),
(799, 'Architecto dolore nulla molestiae qui autem tempore ea.', 85, 'Sit id omnis hic aspernatur. Rerum blanditiis itaque beatae voluptatibus molestiae.', 'Amet doloremque autem alias dolore officia nemo non. Possimus quia quas quia non itaque. Expedita placeat delectus non alias in dolores enim. Aut quo sequi distinctio. Omnis sapiente repellat perspiciatis ut. Occaecati nemo ex incidunt quo qui aut. Sit tempora tempore culpa aspernatur quo.', 'https://picsum.photos/1000/350?random=8', 5, 'architecto-dolore-nulla-molestiae-qui-autem-tempore-ea', 177),
(800, 'Facilis voluptas exercitationem maiores et dolorem.', 80, 'Voluptate dolor dolorem ut vitae sequi quo. Voluptas nesciunt nihil voluptas. Sunt nobis assumenda repellendus minus iste voluptas aperiam.', 'Nam modi soluta sed aut tempore pariatur et. Molestiae blanditiis omnis eius maiores explicabo veritatis vel. Atque neque repellat nemo quod et in. Veritatis consectetur itaque ipsa distinctio minus voluptatem velit quo. Quia quidem voluptatum quam earum expedita. Omnis laboriosam occaecati dolorem laudantium et sint iusto molestiae. Officiis est magnam qui minima qui. Quos corporis fugit maxime nihil perspiciatis pariatur unde non. Omnis consectetur vero perspiciatis iste accusantium. Distinctio modi eos rerum beatae minima quae.', 'https://picsum.photos/1000/350?random=9', 3, 'facilis-voluptas-exercitationem-maiores-et-dolorem', 172),
(801, 'Magnam architecto suscipit inventore.', 83, 'Rerum iusto voluptatem explicabo a ipsum velit harum perferendis. Voluptates repellendus et libero vel voluptatem. Voluptas quia rerum repudiandae sit enim perferendis fuga.', 'Et omnis et soluta ut voluptatem. Voluptatem aspernatur sint commodi voluptas. Odit expedita aut blanditiis ipsum aut doloribus. Laboriosam aut fugit illum totam nobis. Ab libero similique quia unde iusto maiores illum. Deserunt ullam ipsa illo quas reprehenderit. Aliquam sed soluta est. Aperiam placeat voluptates corrupti quo corporis ipsum inventore libero. Quis eos et qui eum magni nesciunt et totam. Aut impedit minima et qui quis voluptatem. Omnis aperiam vero omnis accusamus. Dolor tempore accusantium necessitatibus nesciunt labore sed est vel.', 'https://picsum.photos/1000/350?random=10', 2, 'magnam-architecto-suscipit-inventore', 168),
(802, 'Architecto vitae id omnis dolore labore consectetur ipsam.', 134, 'Amet eum tempore ea velit dolorum. Ipsa necessitatibus consequuntur odio. Et facilis est eum sint aspernatur deleniti et.', 'Nostrum perspiciatis quaerat sit magni quam excepturi distinctio. Nemo maxime quos voluptas quaerat similique officia sint. Tempore et numquam consequatur molestiae autem accusantium quia. Qui fugiat vel enim occaecati libero. Sequi tempora dolores est ex. Vero dolores totam a et velit cum atque id. Nulla eos quo porro voluptas. Eum illo illum velit dolores nobis corporis optio. Aut temporibus et doloribus. Libero reiciendis excepturi veniam non consequatur aut. Quia aut quibusdam optio repudiandae aut. Et nihil quaerat accusamus dolor dignissimos ad placeat.', 'https://picsum.photos/1000/350?random=11', 4, 'architecto-vitae-id-omnis-dolore-labore-consectetur-ipsam', 175),
(803, 'Corporis sit sed deserunt qui.', 61, 'Voluptatibus qui voluptatem aut eius. Dicta qui aliquam consequuntur consequatur. Modi rem quibusdam qui odio quasi ratione.', 'Reprehenderit sed distinctio est itaque quia. Aliquid modi ut voluptas rem adipisci accusantium. Velit facere et dolorum et quam nulla ab quia. Minima provident fugit et velit non nulla enim. Tempore placeat vel laudantium laboriosam. Autem non voluptatum repellat ducimus aliquam ullam ab. Molestias quia animi voluptatum ea. Quia reiciendis voluptatum similique optio consequuntur. Nisi exercitationem hic dignissimos voluptatem eos. Est fuga et dolore. Veritatis enim enim et totam excepturi ab. Perferendis itaque itaque voluptatibus ducimus voluptatem harum. Praesentium aperiam perspiciatis eligendi aut labore.', 'https://picsum.photos/1000/350?random=12', 4, 'corporis-sit-sed-deserunt-qui', 171),
(804, 'Est est quod necessitatibus labore veritatis illo.', 117, 'Voluptatem delectus et hic tenetur incidunt pariatur veritatis. Voluptatum totam ea eum accusantium.', 'Quibusdam natus ut fugit mollitia et eum asperiores. Incidunt magnam reiciendis qui aut. Fuga nulla sint autem sit in numquam ducimus. Adipisci eos impedit officiis et ipsa. Magnam facilis laboriosam quia sequi dolores et exercitationem. Sed perspiciatis vero iure quidem itaque reprehenderit modi. Non sint aut asperiores consequatur harum veritatis reprehenderit consequuntur. Esse enim omnis a et.', 'https://picsum.photos/1000/350?random=13', 2, 'est-est-quod-necessitatibus-labore-veritatis-illo', 174),
(805, 'Qui commodi dolor eaque nisi non quo.', 68, 'Pariatur dolorum accusamus necessitatibus quo voluptate quo. In ipsam consectetur eligendi voluptas voluptas aspernatur consectetur.', 'Magnam ut assumenda corrupti corrupti voluptate perferendis ut. Quis commodi libero sint quia enim aut quia assumenda. Eligendi voluptatem sit voluptas quas est ut. A facilis commodi quibusdam ut qui non iure. Nihil blanditiis quis reiciendis quam. Ducimus ut nostrum vel id doloribus. Tempora sed temporibus voluptate pariatur. Enim libero omnis voluptas nostrum. Nobis omnis commodi consequatur expedita consequuntur. Aspernatur vel fugiat consequatur placeat neque omnis voluptatem facere.', 'https://picsum.photos/1000/350?random=14', 4, 'qui-commodi-dolor-eaque-nisi-non-quo', 174),
(806, 'Qui adipisci reiciendis non rem ut necessitatibus.', 125, 'Et quidem dolores possimus delectus et. Exercitationem animi accusantium aperiam vitae ullam eaque. At magni provident tempora expedita et.', 'Minus incidunt molestiae cumque numquam. Voluptas doloremque ad incidunt consectetur illum doloremque et possimus. Voluptatem nesciunt velit non quia. Illum rem nam occaecati et. Ea quae repellendus eos tempora. Laboriosam facilis perferendis qui at aliquam molestias. Sint rerum in facilis corrupti voluptatem. Illum voluptatum sed quod dolore et. Reiciendis voluptatibus ea sed fugit qui perspiciatis iusto et.', 'https://picsum.photos/1000/350?random=15', 3, 'qui-adipisci-reiciendis-non-rem-ut-necessitatibus', 175),
(807, 'Quidem est tenetur sit corrupti nihil ipsam.', 53, 'Necessitatibus nihil hic laboriosam. Autem qui fugit provident optio.', 'Totam expedita in debitis dicta labore dolores. Eum consequatur praesentium aut et ratione. Praesentium tempore maiores molestias natus sunt voluptatum nihil. Natus numquam delectus sunt fugiat. Dolores sed in et laborum alias. Molestiae ut ut enim. Eaque accusamus harum eligendi quod sint qui blanditiis libero. Veritatis quis vel enim explicabo. Accusantium quaerat et officiis voluptate doloremque nam. Et vero eligendi omnis voluptatem animi iure consequuntur.', 'https://picsum.photos/1000/350?random=16', 2, 'quidem-est-tenetur-sit-corrupti-nihil-ipsam', 177),
(808, 'Optio unde cum voluptatem quisquam laudantium alias occaecati.', 80, 'Possimus itaque dolore facilis temporibus. Optio fugit autem totam veritatis quasi est voluptatibus ab. Non nihil nemo delectus non culpa alias.', 'Eius odio cumque officia aut at. Dolorem nobis nam velit voluptatibus reiciendis perspiciatis accusantium. Officiis distinctio nulla ullam vel ullam cum. Non voluptas veniam eius quod optio. Aut perferendis voluptatem vitae repellat illum laboriosam. Beatae et suscipit distinctio est sed voluptates voluptatum. Qui veritatis ducimus quidem. Est sapiente velit magni pariatur maxime ut et.', 'https://picsum.photos/1000/350?random=17', 3, 'optio-unde-cum-voluptatem-quisquam-laudantium-alias-occaecati', 175),
(809, 'Nobis aperiam eaque omnis consequatur quasi aut minima.', 138, 'Est pariatur laudantium omnis in maiores. Vel ipsum ut neque consequatur. Ut provident est accusamus repellat dolores ut.', 'Expedita enim tempore quam rem praesentium qui fugit dolorem. Aut qui vel fuga ipsam quia qui voluptatum. Voluptatem et harum autem officiis corrupti. Aut molestias voluptas rerum accusantium suscipit omnis. Aperiam sed et quia non ipsa esse. Amet facere sunt qui. Accusamus quia cum itaque non officiis est vitae recusandae. Odit harum et maxime ea. Consequatur doloribus facere hic qui maxime. Aut omnis sunt eos sint eaque. Sunt culpa ducimus beatae nam qui sit repellendus. Enim unde cum deserunt nisi.', 'https://picsum.photos/1000/350?random=18', 5, 'nobis-aperiam-eaque-omnis-consequatur-quasi-aut-minima', 168),
(810, 'Eum suscipit id minus at cum voluptate sequi.', 148, 'Cupiditate consequatur doloremque ea officiis aut ad laboriosam. In eum illo velit tempora non.', 'Et dolor expedita non occaecati expedita vel. Est sit esse animi veritatis eum sit officia. Officia possimus praesentium explicabo modi. Velit necessitatibus quidem id reiciendis reiciendis qui voluptate qui. Est odit quis rerum esse odit nihil. Placeat qui omnis aut debitis consequatur. A a qui autem natus quasi. Sit ea et est corrupti et. Cupiditate nihil quis dolores. Quis cupiditate non consequuntur error et eum.', 'https://picsum.photos/1000/350?random=19', 2, 'eum-suscipit-id-minus-at-cum-voluptate-sequi', 176),
(811, 'Molestias est voluptatem quam vel itaque aut.', 123, 'Culpa hic quia mollitia cum ea rerum. Est occaecati accusamus qui explicabo iste sequi excepturi nulla. Quia aliquid iure quas ex maiores.', 'Hic consequatur cumque laudantium quasi ut necessitatibus exercitationem. Nostrum eveniet velit deleniti ad. Consequuntur quia consequuntur eius ipsam. Quo enim laudantium sed at. Placeat ea omnis minus minus. Consequatur eveniet labore eum quas sunt vero. Rerum aliquid velit nam nobis tempora. Excepturi id tenetur est omnis incidunt commodi nihil. Soluta sit molestiae doloribus molestiae aut dolores deserunt officia.', 'https://picsum.photos/1000/350?random=20', 3, 'molestias-est-voluptatem-quam-vel-itaque-aut', 168),
(812, 'Itaque qui eius rerum unde sit qui cumque.', 131, 'Veniam molestiae est commodi sed. Officia porro quae recusandae aspernatur tempora earum dolor. Eum id earum aliquid quos aliquam qui adipisci.', 'Quia aut consectetur nemo qui. Quam corrupti placeat omnis quos ut. Dicta voluptates eveniet et omnis quo. Ut suscipit tempore exercitationem iure molestiae et ab. Qui quidem perferendis nam velit quia nobis. Id repudiandae iure nihil est modi rerum. Suscipit fuga iste voluptatem nostrum rerum enim. Maiores voluptatem ut repellat debitis. Architecto eum accusamus voluptas architecto exercitationem dolores. Qui architecto nesciunt incidunt sint aut et est. Modi natus provident quidem qui. At non dignissimos magni animi. Dolor culpa quibusdam voluptate.', 'https://picsum.photos/1000/350?random=21', 3, 'itaque-qui-eius-rerum-unde-sit-qui-cumque', 175),
(813, 'Magni ut nam ipsam voluptatem ea illum.', 93, 'Perspiciatis sint explicabo hic rerum. Nisi quisquam adipisci laborum.', 'Sed minus sit quasi est est. Perferendis dolor et aut cupiditate rerum reiciendis. Sit ducimus sequi nihil sed reiciendis officiis. Dolores consequuntur vero similique quidem sint maiores et. Ut et aut enim fugit iure deleniti. Magni quidem enim voluptatem molestiae sapiente omnis voluptatem. Beatae officiis reiciendis corporis debitis nemo sed enim. Rerum voluptates molestias necessitatibus nemo aut eum. Fuga quia dicta aperiam adipisci ab perspiciatis. Doloribus dolorem maxime quia sed. Nobis illo et est dolorum. Odit laudantium consectetur et in ducimus consequatur magni. Odit quo non consequatur provident. In fugit nam fugit alias dolores esse.', 'https://picsum.photos/1000/350?random=22', 2, 'magni-ut-nam-ipsam-voluptatem-ea-illum', 177),
(814, 'Explicabo et quidem saepe aut.', 139, 'Est expedita praesentium quidem rerum fugiat dignissimos aut. Rerum asperiores ex optio amet. Facere eos blanditiis itaque adipisci ullam.', 'Eius omnis nulla ut distinctio et omnis quo. Accusantium amet laborum recusandae saepe natus hic. Sequi nesciunt odio ratione velit amet consequuntur consectetur. Dolor est aut dolorem soluta omnis ipsum cum. Et id iste similique voluptatem ut alias ut. Quo id non impedit. Eos quisquam excepturi quia provident consequuntur quia.', 'https://picsum.photos/1000/350?random=23', 2, 'explicabo-et-quidem-saepe-aut', 171),
(815, 'Rerum aut error velit aut ipsam iste.', 79, 'Facilis atque non aliquid facere mollitia optio. Exercitationem rerum beatae soluta tempore nihil velit inventore.', 'Est quia ad nulla dolor illum. Aut autem dolores dolores repellendus voluptatibus sit voluptas libero. Quos qui commodi et velit ipsam omnis. Exercitationem velit vitae deserunt repudiandae recusandae eligendi. Odio dolor perferendis debitis et. Ut minima tempora velit illo optio aspernatur nemo autem. Sunt deserunt ipsam iste non. Est nostrum repellat temporibus quia harum. Quam magnam vel nemo reiciendis accusantium maxime suscipit. Qui ut dolorum quis itaque quidem voluptatem placeat odit. Magnam minus labore voluptas beatae. Modi et est eligendi. Magni et non totam nesciunt.', 'https://picsum.photos/1000/350?random=24', 3, 'rerum-aut-error-velit-aut-ipsam-iste', 170),
(816, 'Numquam earum quia eos ex.', 141, 'Qui dolor sint ut laboriosam qui. Est ut velit et aut qui voluptatem aliquid.', 'Earum culpa laudantium doloremque et eveniet. Similique quos odit suscipit facere sint doloribus sint. Et consequatur iusto ea non. Ullam quod velit placeat non. Qui animi culpa temporibus alias tempora. Itaque nesciunt reiciendis autem dolores quis dignissimos facilis. Omnis non vel magnam.', 'https://picsum.photos/1000/350?random=25', 3, 'numquam-earum-quia-eos-ex', 177),
(817, 'Error et et adipisci itaque repellendus.', 111, 'Iusto fugit id sequi sapiente et dolore sit. Odio sequi velit magnam qui sint et natus sed. Hic quaerat assumenda impedit at voluptatibus eligendi vel et.', 'Voluptatem consectetur fugiat eos illum velit vero et repudiandae. Alias et esse fugit praesentium dolores. Distinctio sed nihil et dolor. Voluptate libero voluptatem commodi delectus. Iusto error autem sequi fugiat incidunt ratione totam. Quaerat soluta et et non qui sequi. Aut culpa sit consectetur ipsam deserunt. Autem aut quas dolorem quia architecto. Accusamus perferendis quaerat esse.', 'https://picsum.photos/1000/350?random=26', 5, 'error-et-et-adipisci-itaque-repellendus', 176),
(818, 'Earum voluptatem sed doloribus.', 42, 'Doloribus aspernatur rerum accusamus ad. Et et eveniet sint dignissimos quaerat ut pariatur.', 'Qui ipsa porro minima in velit ut. Assumenda nam tempore eius enim consequatur. Quia est exercitationem recusandae consequatur eos deleniti voluptas. Necessitatibus quos et autem iusto consequatur molestias. Amet eos aut ut ducimus. Explicabo atque sit harum tempore explicabo cumque. Aliquid eos maxime voluptatibus. Accusamus est ea nam earum facilis. Quae ea ipsum minus veritatis quos earum provident. Delectus culpa minima atque non iure et. Accusamus nulla dolorum eos rem velit aliquam dolorem. Aut temporibus quas iure non et a aliquam.', 'https://picsum.photos/1000/350?random=27', 3, 'earum-voluptatem-sed-doloribus', 175),
(820, 'Rerum repudiandae et iure.', 134, 'Nobis id omnis explicabo ipsam quidem perferendis eligendi atque. Illum recusandae voluptas est autem et autem. Ut est illum veritatis aut itaque non.', 'Culpa sapiente at voluptatem impedit voluptatem. Assumenda modi esse aliquam doloribus. Enim hic occaecati voluptatum. Commodi sunt culpa dolore excepturi et sed dolor. Omnis eos quaerat facere eligendi ipsam vel reiciendis nostrum. Deserunt illum et occaecati tempore dolor. Consequatur placeat fugiat qui in illum provident. Voluptatum vitae ad dignissimos nostrum dolores. Ipsum illum dolorem blanditiis. Atque omnis error voluptatem officiis.', 'https://picsum.photos/1000/350?random=29', 4, 'rerum-repudiandae-et-iure', 170),
(821, 'Tempora est harum corrupti reprehenderit.', 58, 'Rerum qui voluptatem nihil exercitationem. Autem ea asperiores aut omnis.', 'Dolorem totam veniam incidunt ut sunt. Sed officia vero deserunt accusantium corporis adipisci. Laboriosam commodi doloremque mollitia autem ullam culpa saepe. Distinctio ipsa velit rerum ipsam. Vel nulla id error ut laborum deleniti. Porro ut et voluptatibus. Quis similique reiciendis culpa odio qui est repellendus aut. Optio voluptas esse sunt quia odit placeat. Sunt placeat quia sit ut cum.', 'https://picsum.photos/1000/350?random=30', 1, 'tempora-est-harum-corrupti-reprehenderit', 172),
(823, 'Nouvelle annonce', 150, 'Une description courte de ma nouvelle annonce', 'Une description un peu plus longue de ma nouvelle annonce après modification des fichiers css !!!', 'https://picsum.photos/1000/350?random=156', 3, 'nouvelle-annonce', 167);
-- --------------------------------------------------------
--
-- Structure de la table `booking`
--
DROP TABLE IF EXISTS `booking`;
CREATE TABLE IF NOT EXISTS `booking` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`booker_id` int(11) NOT NULL,
`ad_id` int(11) NOT NULL,
`start_date` datetime NOT NULL,
`end_date` datetime NOT NULL,
`created_at` datetime NOT NULL,
`amount` double NOT NULL,
`comment` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`id`),
KEY `IDX_E00CEDDE8B7E4006` (`booker_id`),
KEY `IDX_E00CEDDE4F34D596` (`ad_id`)
) ENGINE=InnoDB AUTO_INCREMENT=274 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Déchargement des données de la table `booking`
--
INSERT INTO `booking` (`id`, `booker_id`, `ad_id`, `start_date`, `end_date`, `created_at`, `amount`, `comment`) VALUES
(184, 167, 793, '2020-03-25 00:00:00', '2020-04-04 00:00:00', '2019-12-19 13:20:47', 1010, 'Neque at qui quibusdam voluptas. Occaecati dignissimos dolores corrupti veritatis voluptate a et et. Facere et nulla aperiam dolor dolores et. Beatae quas doloribus est minima. Asperiores id soluta corrupti et.'),
(185, 175, 792, '2020-05-29 22:49:02', '2020-06-04 22:49:02', '2020-05-23 09:55:48', 792, 'Et non suscipit pariatur ex. Repellat aspernatur architecto velit qui. Id est est et consequatur ex quaerat. Hic voluptate dolor est excepturi. Doloribus incidunt quae animi tempora.'),
(186, 174, 792, '2020-06-06 22:58:08', '2020-06-12 22:58:08', '2019-12-18 17:05:50', 792, 'Iusto est accusamus eum distinctio illo. Autem voluptas deserunt voluptatem fuga illo. Deserunt magni est laudantium voluptatem enim deserunt. Quia voluptates ab animi deserunt assumenda delectus recusandae.'),
(187, 169, 793, '2020-04-02 07:20:19', '2020-04-09 07:20:19', '2020-02-27 22:47:28', 707, 'Rerum autem dolores adipisci perferendis quod. Inventore voluptatem et voluptates quae. Ut aut quia at ut necessitatibus quibusdam. Voluptates rem rem accusantium corrupti.'),
(188, 175, 793, '2020-05-06 11:41:28', '2020-05-15 11:41:28', '2020-02-23 06:20:15', 909, 'Quasi aut ea sint necessitatibus molestias qui nostrum qui. Similique facere pariatur iste harum sit omnis. Dolorem ab ut recusandae saepe ut aut molestiae.'),
(189, 174, 793, '2020-05-08 03:20:49', '2020-05-11 03:20:49', '2020-03-02 15:29:22', 303, 'Aspernatur aspernatur deserunt voluptas iure autem quia est. Veniam voluptate beatae necessitatibus enim aut. Molestias ipsa delectus nemo aut. Similique delectus laboriosam voluptas at.'),
(190, 173, 794, '2020-05-24 20:15:20', '2020-06-02 20:15:20', '2020-02-18 22:29:04', 1170, 'A vel quo amet harum. Consectetur aliquid sit dicta distinctio eaque. Ex quis ipsam harum ab omnis soluta maxime.'),
(191, 175, 794, '2020-05-24 12:03:13', '2020-06-02 12:03:13', '2020-04-14 06:16:33', 1170, 'Ab et officia voluptas unde eius. Officiis consequatur qui in provident. Cum est blanditiis dolor a sequi porro. Praesentium necessitatibus accusamus illum sit est et harum.'),
(192, 176, 794, '2020-05-24 04:36:25', '2020-06-02 04:36:25', '2020-03-17 06:22:40', 1170, 'Consequatur et est ut nobis quae dolorem qui. Magni quia veritatis cum quo quis placeat. Ut quia neque tempora id ex.'),
(193, 177, 794, '2020-04-16 06:09:44', '2020-04-26 06:09:44', '2020-03-25 03:59:45', 1300, 'Minus necessitatibus deleniti non et totam ut. Natus omnis cum sunt debitis optio unde ex atque. Et assumenda pariatur sapiente ut sint.'),
(194, 173, 795, '2020-05-20 22:57:49', '2020-05-30 22:57:49', '2020-01-25 00:22:20', 420, 'Et voluptatem velit ab sapiente quos numquam. Quia iure commodi error consequatur. Error rem reprehenderit id quaerat hic.'),
(195, 168, 795, '2020-04-05 14:13:04', '2020-04-11 14:13:04', '2019-12-28 13:50:56', 252, 'Fugit voluptatum voluptate magnam praesentium et consequatur. Dolore qui consequuntur consequuntur impedit molestiae. Sed animi vitae possimus optio ut officiis ut. Enim et ab aspernatur in. Explicabo eos fuga neque itaque neque.'),
(196, 168, 795, '2020-03-13 10:09:40', '2020-03-20 10:09:40', '2020-04-26 11:42:50', 294, 'Dolor ut nihil quaerat voluptate architecto laborum est autem. Pariatur cum accusamus debitis placeat.'),
(197, 169, 795, '2020-05-02 13:58:45', '2020-05-06 13:58:45', '2020-06-06 18:51:05', 168, 'Odit quo est ut blanditiis maxime repellat sed cupiditate. Aut consectetur rem voluptas quaerat assumenda inventore. Fugiat culpa et delectus fugit voluptas incidunt.'),
(198, 169, 796, '2020-03-31 02:25:59', '2020-04-08 02:25:59', '2020-05-11 00:00:29', 568, 'Id totam itaque repellendus et laboriosam pariatur mollitia mollitia. Ut recusandae nobis placeat sunt explicabo quia cum. Sit nostrum iusto porro reprehenderit iste aliquam consequuntur.'),
(199, 171, 796, '2020-03-12 18:01:14', '2020-03-20 18:01:14', '2020-05-29 19:21:06', 568, 'In facere ipsam quia sed tempore voluptates illum. Minus vel ut sequi beatae officia officiis iusto ducimus.'),
(200, 168, 797, '2020-05-12 05:23:03', '2020-05-17 05:23:03', '2020-03-13 07:16:50', 495, 'Libero id in fuga dolor vel. Dicta quae aut harum veniam vitae enim ut. Officiis sint neque id numquam et necessitatibus tempora.'),
(201, 173, 797, '2020-06-08 13:28:36', '2020-06-13 13:28:36', '2020-02-03 17:45:15', 495, 'Sed alias voluptatem pariatur. Quaerat perferendis eligendi sequi.'),
(202, 174, 798, '2020-03-23 15:23:20', '2020-03-29 15:23:20', '2020-03-27 07:32:01', 288, 'Officia molestias qui fugiat nostrum animi. Vitae laborum ipsa quisquam temporibus.'),
(203, 176, 798, '2020-03-30 20:52:21', '2020-04-07 20:52:21', '2020-01-26 00:09:57', 384, 'Harum officiis aliquid natus soluta qui ut eius. Laborum ut corporis accusamus quaerat repellendus temporibus totam. Suscipit ipsam ut nihil ex temporibus. Sunt nostrum nulla iusto iste nihil.'),
(204, 176, 798, '2020-03-27 20:09:24', '2020-04-05 20:09:24', '2020-03-30 13:19:29', 432, 'Qui earum quis sed aut. Et quaerat temporibus dolorum. Excepturi ad saepe doloremque aut.'),
(205, 176, 798, '2020-06-01 13:57:48', '2020-06-06 13:57:48', '2020-02-27 19:54:07', 240, 'Incidunt voluptates eum eaque eum deserunt repellendus. Magnam ab nostrum adipisci magni a nihil molestias. Animi praesentium beatae nostrum ex repudiandae voluptatibus necessitatibus.'),
(206, 173, 798, '2020-06-07 01:20:18', '2020-06-14 01:20:18', '2020-01-13 06:38:04', 336, 'Veniam quis iste quisquam nihil veniam porro labore. Eos ab ipsum corrupti unde. Earum sint voluptate sit repellat expedita facilis.'),
(207, 169, 799, '2020-04-07 20:46:48', '2020-04-12 20:46:48', '2020-02-03 16:05:10', 425, 'Tempora ut impedit error ullam veritatis eveniet ut. Incidunt voluptate ipsa quod officia voluptates. Magnam minima aperiam quisquam ipsum qui sed.'),
(208, 174, 801, '2020-06-09 16:36:19', '2020-06-12 16:36:19', '2020-03-06 14:46:06', 249, 'Numquam sequi placeat commodi aut quia autem architecto. Voluptas velit molestiae eveniet ut aperiam non. Ut dolor necessitatibus fuga quis est consequatur distinctio.'),
(209, 169, 801, '2020-04-06 22:15:07', '2020-04-14 22:15:07', '2020-03-23 13:34:39', 664, 'Autem vitae molestiae fuga. Est officia repellendus sapiente pariatur modi. Aut quia dolorem provident itaque. Reprehenderit dignissimos quia illo voluptatem quia qui.'),
(210, 170, 802, '2020-05-13 10:46:10', '2020-05-22 10:46:10', '2020-04-12 04:59:18', 1206, 'Voluptatem nulla et eum debitis esse eius. Neque quia est numquam sapiente. Sequi repellat voluptates vel iure praesentium. Expedita ipsa repellat porro rerum sed voluptas.'),
(211, 174, 802, '2020-04-15 20:07:42', '2020-04-21 20:07:42', '2020-01-13 02:36:36', 804, 'Quis maiores est non dolor consectetur sint rerum. Maxime repudiandae tempora nemo magnam quae expedita. Vel enim illo odio animi suscipit occaecati harum. Sunt et expedita quia quis omnis sint.'),
(212, 174, 803, '2020-04-19 15:19:12', '2020-04-25 15:19:12', '2020-03-16 09:21:24', 366, 'Ut consequatur commodi quis quaerat est dolorem dolorum sapiente. Quidem perferendis fuga temporibus. Aut repudiandae fugit ut. Dolorem harum quae sequi voluptate ad.'),
(213, 175, 803, '2020-05-14 09:15:09', '2020-05-17 09:15:09', '2020-06-04 23:16:09', 183, 'Facilis et explicabo enim sed corrupti. Doloremque aut voluptates et et deleniti. Et alias deleniti inventore illo velit omnis. Sunt quisquam id et.'),
(214, 176, 804, '2020-05-23 08:54:20', '2020-05-28 08:54:20', '2020-03-04 01:19:52', 585, 'Delectus natus quo voluptatem quae sunt. Nemo quas praesentium reiciendis occaecati quia officia. Officia quam nam aliquam odit.'),
(215, 168, 804, '2020-04-09 12:24:54', '2020-04-13 12:24:54', '2020-03-09 19:15:10', 468, 'Necessitatibus labore non praesentium voluptatem voluptatem voluptatem deserunt facilis. Rerum velit fugit qui ut aliquam.'),
(216, 175, 804, '2020-04-04 05:20:46', '2020-04-09 05:20:46', '2020-04-20 11:23:51', 585, 'Distinctio odit nesciunt amet. Sunt molestias fuga consectetur incidunt et asperiores laudantium. Eum deleniti et quasi. Culpa eius maiores recusandae omnis omnis.'),
(217, 173, 804, '2020-05-29 05:42:15', '2020-06-06 05:42:15', '2020-04-06 06:54:07', 936, 'Sunt facilis voluptatem a eveniet dolores ratione. Et ea excepturi et iusto perferendis et. Facilis vitae qui animi ullam id iste qui. Sed dolores quos aut.'),
(218, 176, 805, '2020-04-10 11:18:50', '2020-04-14 11:18:50', '2020-01-11 02:37:42', 272, 'Saepe ipsum laboriosam earum id eos qui. Tenetur maiores voluptatum eos quis cum. Odio aut minima et mollitia voluptatum numquam.'),
(219, 170, 805, '2020-05-30 12:15:35', '2020-06-05 12:15:35', '2020-01-13 17:31:36', 408, 'Repellat iusto minus ut repellendus aut distinctio dolorem quia. Eius animi excepturi quisquam sunt molestias. Nulla voluptatem perspiciatis quam excepturi officiis ipsa tenetur. Ullam corporis labore possimus adipisci sed voluptatem suscipit cumque.'),
(220, 173, 805, '2020-04-02 05:24:32', '2020-04-06 05:24:32', '2020-02-02 21:50:43', 272, 'Et id ipsam ipsam nemo qui impedit. Alias est sint nesciunt et assumenda aliquam magni. Eos esse qui exercitationem quasi error facilis aspernatur nobis. Aliquid dicta magni atque voluptas eius explicabo quia vel.'),
(221, 168, 805, '2020-05-15 11:26:23', '2020-05-21 11:26:23', '2020-04-26 14:57:39', 408, 'Laudantium aut alias officiis voluptatibus eius. Nam qui ut delectus culpa omnis. Optio assumenda sed inventore iste velit numquam.'),
(222, 173, 805, '2020-05-10 08:23:11', '2020-05-18 08:23:11', '2020-05-29 01:47:21', 544, 'Excepturi possimus suscipit qui quos quasi. Ut vero eius labore sed atque neque. Officia deserunt sint dicta et architecto natus temporibus.'),
(223, 169, 805, '2020-04-19 21:57:25', '2020-04-25 21:57:25', '2020-05-09 19:53:47', 408, 'Autem dolor tempore dolor alias blanditiis velit ratione et. Magni perferendis et asperiores quisquam.'),
(224, 173, 805, '2020-03-23 05:30:14', '2020-03-26 05:30:14', '2020-01-04 08:47:17', 204, 'In quia et ipsam cum aut. Debitis modi adipisci qui iste quia officia. Tempora quia illum delectus voluptatum non. Laboriosam illo ab in est assumenda amet officiis.'),
(225, 168, 805, '2020-05-21 18:10:05', '2020-05-25 18:10:05', '2020-03-22 17:17:36', 272, 'Quia eveniet et ut dolorem accusantium. Sint saepe magni quia ut. Deserunt soluta dolores voluptates facere ad. Ut cum deserunt quas.'),
(226, 175, 806, '2020-03-17 21:04:40', '2020-03-21 21:04:40', '2020-01-07 19:23:35', 500, 'Sit numquam voluptatem vitae quo maxime est. Sed assumenda unde recusandae. Debitis temporibus fugit et eos eos omnis aut nihil.'),
(227, 175, 806, '2020-06-05 00:27:08', '2020-06-08 00:27:08', '2020-01-08 10:00:34', 375, 'Neque blanditiis voluptate voluptatem nulla recusandae dolor possimus. Ipsum quam aperiam aut voluptatem alias est. Consequuntur dolorem voluptates eligendi provident quia dolorem.'),
(228, 173, 807, '2020-04-11 08:55:32', '2020-04-19 08:55:32', '2020-06-03 03:20:36', 424, 'Sunt hic autem illo et. Sunt accusantium sit quas veritatis doloribus placeat illum cupiditate. At enim cupiditate aut laboriosam ut.'),
(229, 171, 807, '2020-04-17 04:52:13', '2020-04-21 04:52:13', '2020-02-23 14:08:47', 212, 'Magnam officia voluptate quos corporis aliquam sit. Velit nulla est voluptates et sit et omnis. Qui quo deserunt suscipit eum pariatur.'),
(230, 171, 807, '2020-04-24 07:02:04', '2020-04-28 07:02:04', '2020-04-16 02:45:04', 212, 'Cumque facere neque modi tempora pariatur architecto ducimus quo. Nam eaque voluptas voluptatem aspernatur quia explicabo. Consequatur sint molestiae odio tempora quod. Quaerat voluptatem ut impedit iste animi voluptatum.'),
(231, 169, 807, '2020-05-28 12:48:58', '2020-06-03 12:48:58', '2019-12-11 11:39:24', 318, 'Natus fugit optio eligendi ullam velit repellat. Et amet ut magni expedita laborum consequuntur aut.'),
(232, 176, 807, '2020-05-19 05:09:24', '2020-05-23 05:09:24', '2020-02-14 17:56:12', 212, 'Reprehenderit ea eligendi tenetur laboriosam excepturi. Maxime quia debitis exercitationem odit vel possimus. Est laborum architecto quia sint occaecati numquam quis.'),
(233, 176, 808, '2020-05-08 04:31:41', '2020-05-18 04:31:41', '2020-06-08 22:56:53', 800, 'Tenetur nesciunt doloremque optio architecto. Fugit quia dolorum sunt animi est reprehenderit. Odit ut temporibus minima quae. Qui voluptatibus quis porro culpa modi velit ut.'),
(234, 174, 808, '2020-03-27 03:59:28', '2020-03-31 03:59:28', '2020-05-18 07:30:01', 320, 'Consequuntur fugiat odit est nemo deleniti fugit velit quis. Ut id delectus voluptatem voluptatibus voluptatem quis magnam. Voluptatem quia laudantium unde id. Dicta laborum animi animi consequatur reiciendis quis nisi perspiciatis.'),
(235, 171, 809, '2020-06-06 00:38:52', '2020-06-11 00:38:52', '2020-01-14 00:48:50', 690, 'Est optio officia earum voluptas ut eos. Dignissimos odio officiis cumque sit.'),
(236, 171, 809, '2020-04-10 12:41:44', '2020-04-20 12:41:44', '2020-02-28 05:17:58', 1380, 'Quibusdam magnam facere qui quo odit. Eum necessitatibus in quis accusantium ut. Et laboriosam molestias qui veniam nihil omnis. Nam eum ipsa distinctio culpa.'),
(237, 175, 809, '2020-03-24 22:53:42', '2020-04-02 22:53:42', '2020-02-18 13:46:49', 1242, 'Minus molestiae rerum dolore accusamus. Distinctio modi reiciendis porro voluptates voluptas ullam rerum. Ut labore at aut vero. Enim quia voluptatibus velit ad. Aliquam repellat dicta sunt rerum voluptatibus aliquid.'),
(238, 173, 809, '2020-04-03 12:55:58', '2020-04-06 12:55:58', '2019-12-25 19:41:45', 414, 'Pariatur aut praesentium et consequatur. Fuga dolorem nesciunt doloribus corrupti. Saepe sit dolorum quam odit adipisci soluta. Voluptas repellat possimus saepe consequatur praesentium aut.'),
(239, 170, 809, '2020-03-29 11:16:52', '2020-04-07 11:16:52', '2020-05-10 05:18:02', 1242, 'Qui ipsam veniam iusto sunt ut natus. Et dolorum consequatur dignissimos aut. Et nobis non dolore tenetur nisi facilis nemo. Cum velit maiores vero eum cum accusantium eos aut.'),
(240, 168, 809, '2020-05-30 12:47:52', '2020-06-06 12:47:52', '2020-04-10 02:35:28', 966, 'Et nihil minus quae expedita enim numquam repudiandae. Laboriosam quasi tenetur quia reiciendis. Consequuntur suscipit vitae vero temporibus quisquam et quibusdam earum. Illo nemo a at repellendus quae itaque.'),
(241, 171, 810, '2020-05-24 10:31:59', '2020-05-31 10:31:59', '2019-12-24 03:10:19', 1036, 'Similique quas voluptas ut. Laudantium amet libero omnis reprehenderit. Autem laudantium explicabo molestias dolor id eos eum.'),
(242, 174, 811, '2020-06-10 09:32:36', '2020-06-19 09:32:36', '2020-04-18 09:37:02', 1107, 'Deserunt quibusdam qui ratione ipsum qui non in. Consequuntur eius fuga voluptas ratione veritatis eaque. Voluptate voluptatem doloremque veniam porro. Autem eos soluta et dolorem ut ea odio.'),
(243, 176, 811, '2020-04-28 02:01:48', '2020-05-02 02:01:48', '2020-05-10 18:12:30', 492, 'Sed soluta eos molestiae illo a. Et rerum sit necessitatibus est eos ipsam eligendi. Eius illo molestiae officiis.'),
(244, 169, 811, '2020-03-26 18:50:29', '2020-04-05 18:50:29', '2020-05-17 12:41:01', 1230, 'Consequuntur reprehenderit itaque est expedita. Deserunt quia alias doloremque officia. Dolorem suscipit aliquid aut impedit odio.'),
(245, 174, 811, '2020-03-28 22:32:02', '2020-04-03 22:32:02', '2020-05-13 15:21:58', 738, 'Magni quas est vitae. Unde ut unde exercitationem ullam dolor culpa aspernatur.'),
(246, 176, 812, '2020-04-10 05:01:04', '2020-04-16 05:01:04', '2020-02-02 03:53:16', 786, 'Magni ipsum sequi est libero possimus. Sed doloremque dolorem sint. Id dolore incidunt possimus eum soluta modi et. Quis odit molestiae eius ea ad sunt sit. Accusamus et sit cumque dolorem.'),
(247, 168, 812, '2020-05-09 12:23:15', '2020-05-13 12:23:15', '2020-02-08 10:40:02', 524, 'Inventore odio eos atque. Rerum asperiores et deleniti consequatur. Optio ipsam rem magnam recusandae qui.'),
(248, 171, 812, '2020-05-20 23:39:00', '2020-05-30 23:39:00', '2020-06-07 00:34:30', 1310, 'Amet deserunt sequi dolores nemo. Accusantium illum deserunt similique recusandae. Quas assumenda esse ab qui magnam quaerat.'),
(249, 175, 813, '2020-06-07 18:33:25', '2020-06-15 18:33:25', '2020-01-21 02:29:52', 744, 'Veritatis minima in alias aspernatur totam. Ut magnam sed doloribus consequatur. Tempore id facilis suscipit nihil facere nulla asperiores et. Architecto consequatur nisi ducimus accusamus similique optio totam quos. Adipisci nostrum cupiditate mollitia accusantium.'),
(250, 171, 814, '2020-03-13 00:05:13', '2020-03-20 00:05:13', '2020-01-12 16:44:44', 973, 'Laborum sed ipsa sint expedita. Eligendi sit eligendi modi nemo ducimus. Omnis a quo consequatur velit consequuntur cumque id. Voluptatem at expedita odit vitae quasi.'),
(251, 176, 815, '2020-04-30 16:54:33', '2020-05-03 16:54:33', '2020-01-02 11:06:57', 237, 'Incidunt provident adipisci enim optio est porro vero numquam. Facilis fugiat ad quo molestiae. Voluptatem omnis ratione et iure tempora. Similique quibusdam quia voluptatem ullam velit ullam provident.'),
(252, 175, 815, '2020-04-22 23:28:51', '2020-04-25 23:28:51', '2020-01-30 08:28:17', 237, 'Modi accusamus ipsum exercitationem voluptate veniam. Sunt quasi dolorem commodi beatae. Excepturi ab quod qui odit. Quaerat culpa in incidunt asperiores dolorem.'),
(253, 168, 815, '2020-04-24 14:37:28', '2020-04-28 14:37:28', '2020-02-21 19:49:50', 316, 'Voluptatum sit repudiandae laboriosam voluptates sequi accusamus autem consequuntur. Beatae corrupti nulla esse. Natus eaque repellendus vitae in eaque. Omnis sit possimus sed temporibus qui nostrum.'),
(254, 177, 815, '2020-03-23 22:43:23', '2020-03-27 22:43:23', '2020-05-08 19:53:02', 316, 'Sit ut suscipit expedita soluta molestias iste. Dolorem odit exercitationem iusto eius ipsa. Nam quia officiis illum qui nostrum.'),
(255, 172, 815, '2020-05-17 17:48:04', '2020-05-25 17:48:04', '2020-02-24 04:42:45', 632, 'Fugiat autem eum perferendis et aliquid a. Occaecati commodi voluptas repudiandae quo. Voluptate doloremque nesciunt ut eum accusantium repellat ab.'),
(256, 170, 815, '2020-03-21 09:03:52', '2020-03-29 09:03:52', '2020-04-01 09:50:17', 632, 'Aperiam sunt a voluptas nobis voluptatem maxime dolorum. Quibusdam eos minima ut velit quasi quasi placeat excepturi. Sit minus quaerat voluptate rerum sapiente ipsa. Eius qui fuga quae vero consequatur repellendus.'),
(257, 171, 815, '2020-04-14 16:35:13', '2020-04-18 16:35:13', '2020-05-03 15:54:23', 316, 'Recusandae amet quisquam qui repudiandae sapiente non ea id. Et qui magnam excepturi maiores unde. Autem repudiandae voluptatem distinctio magnam.'),
(258, 176, 815, '2020-04-25 09:48:42', '2020-04-28 09:48:42', '2020-02-08 20:38:34', 237, 'Omnis quibusdam adipisci laudantium sunt inventore soluta. Sint quisquam aut et et exercitationem temporibus possimus. In voluptatem labore dolores a aperiam et aut.'),
(259, 168, 816, '2020-04-17 19:13:07', '2020-04-20 19:13:07', '2020-03-15 09:00:26', 423, 'Quae magnam voluptas et quis maxime quis incidunt. Ut omnis quam placeat architecto eos distinctio quisquam. Aut qui consectetur magni magni non adipisci dolor rerum.'),
(260, 170, 816, '2020-05-28 08:28:47', '2020-06-05 08:28:47', '2020-03-01 11:06:45', 1128, 'Reprehenderit sed voluptatem ex fugiat sit. Odio quisquam et sint. Autem alias error labore laudantium omnis alias cupiditate. Facere deleniti aliquid quis ut ullam.'),
(261, 175, 816, '2020-04-24 22:07:49', '2020-04-29 22:07:49', '2020-05-30 01:46:48', 705, 'Ut inventore quos unde possimus dolorem laboriosam non. Ut in voluptas et expedita qui minus numquam accusamus. Ea sint eos distinctio amet accusamus.'),
(262, 169, 817, '2020-05-09 17:47:54', '2020-05-17 17:47:54', '2020-05-12 10:48:50', 888, 'Similique tenetur ut esse amet distinctio placeat est. Inventore dolore soluta maiores velit. Enim soluta sint sit et non et facere delectus. Labore omnis et et.'),
(263, 173, 817, '2020-04-21 21:56:00', '2020-04-26 21:56:00', '2020-01-09 00:57:27', 555, 'Culpa fugiat nesciunt ea qui voluptas. Vel unde quis tempora cumque alias et dicta. Quis ullam est porro eius occaecati optio et. Accusamus est suscipit atque sapiente eius rerum doloribus. Aliquid at eius quis ut.'),
(264, 175, 818, '2020-04-13 11:47:17', '2020-04-22 11:47:17', '2020-04-12 08:37:00', 378, 'Quibusdam perferendis qui consequatur sit dolorem id non. Voluptatem beatae dolor iure reprehenderit corrupti aliquam. Fuga suscipit aut temporibus quo. Cum ipsam labore nobis cupiditate id id.'),
(265, 176, 818, '2020-05-21 06:37:47', '2020-05-28 06:37:47', '2020-05-08 20:01:11', 294, 'Praesentium itaque et reprehenderit provident et. Inventore eum ipsa reiciendis velit adipisci facere. Asperiores sint vel et aut iure veritatis nam. Nihil iusto quo ab.'),
(266, 175, 820, '2020-05-20 03:22:15', '2020-05-24 03:22:15', '2020-04-25 20:59:18', 536, 'Placeat saepe animi corporis. Perspiciatis quisquam nulla dolor adipisci ipsam consequatur exercitationem qui. Quo est laudantium explicabo rerum et.'),
(267, 174, 820, '2020-03-22 17:27:01', '2020-03-30 17:27:01', '2020-05-15 01:53:53', 1072, 'Ut omnis suscipit voluptatum voluptas. Voluptates est voluptatem aut est blanditiis quis velit. Perspiciatis et dolores laudantium sit numquam adipisci. Molestias vel voluptate reiciendis et.'),
(268, 177, 820, '2020-05-24 11:56:43', '2020-05-27 11:56:43', '2020-02-27 05:37:39', 402, 'Debitis velit laboriosam laboriosam ipsa omnis porro. Culpa magni qui et porro. Unde rerum nemo quisquam quo. Eos impedit quia ratione libero excepturi soluta.'),
(269, 170, 821, '2020-04-12 16:22:08', '2020-04-21 16:22:08', '2019-12-29 22:33:21', 522, 'Quia et et consequuntur. Dolore quia eum assumenda sed inventore molestiae a. Est et praesentium cupiditate ratione in.'),
(270, 171, 821, '2020-04-26 16:35:35', '2020-04-29 16:35:35', '2020-03-26 03:25:01', 174, 'Possimus at totam totam culpa. Vel maiores corporis soluta id molestiae a. Dolorem optio ipsum dolor distinctio. Qui ullam velit quaerat. Iusto quo rerum corporis dolorem repudiandae vel.'),
(271, 176, 821, '2020-05-17 01:09:01', '2020-05-20 01:09:01', '2020-01-16 09:33:14', 174, 'Aspernatur expedita nam qui iusto. Distinctio aperiam ut qui earum.'),
(272, 167, 794, '2020-06-10 15:23:52', '2019-06-18 15:23:52', '2020-06-10 17:23:57', 1040, NULL);
-- --------------------------------------------------------
--
-- Structure de la table `comment`
--
DROP TABLE IF EXISTS `comment`;
CREATE TABLE IF NOT EXISTS `comment` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`ad_id` int(11) NOT NULL,
`author_id` int(11) NOT NULL,
`created_at` datetime NOT NULL,
`rating` int(11) NOT NULL,
`content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
KEY `IDX_9474526C4F34D596` (`ad_id`),
KEY `IDX_9474<PASSWORD>` (`author_id`)
) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Déchargement des données de la table `comment`
--
INSERT INTO `comment` (`id`, `ad_id`, `author_id`, `created_at`, `rating`, `content`) VALUES
(2, 792, 168, '2020-06-10 15:02:34', 2, 'Reprehenderit itaque dolorem quis temporibus doloribus sequi voluptatem illo. Quaerat occaecati eligendi consectetur quis nam rerum modi. Velit rerum officia sunt quia autem reiciendis'),
(4, 794, 175, '2020-06-10 15:02:34', 3, 'Non sunt voluptatem ut enim aut odit. Ea temporibus ratione rem voluptates velit et omnis. Qui culpa voluptate minima dicta omnis accusantium qui.'),
(5, 794, 176, '2020-06-10 15:02:34', 3, 'Asperiores voluptatem blanditiis incidunt. Enim necessitatibus qui rem quia doloremque illum. Dolorem sunt veniam velit eaque possimus reiciendis. Laborum libero aut vero impedit et vel.'),
(6, 794, 177, '2020-06-10 15:02:34', 1, 'Repellat sit rerum neque et magnam. Eius maxime aut enim. Nulla eligendi ea suscipit quo distinctio voluptas beatae. Laborum mollitia et maiores ipsa quaerat est ut. Ut tempore quisquam voluptas error.'),
(7, 795, 168, '2020-06-10 15:02:34', 2, 'Et sunt nemo vero aut quos. Asperiores rerum corporis a consequuntur. Qui nihil qui nesciunt voluptas cumque numquam est ut. Non tenetur nemo sint vel quos aperiam voluptatem.'),
(8, 795, 169, '2020-06-10 15:02:34', 2, 'Qui aut temporibus non. Voluptatem pariatur id nihil non odit est sequi harum. Ab voluptas quae sed laudantium animi velit est.'),
(9, 796, 171, '2020-06-10 15:02:34', 1, 'Est incidunt harum ut incidunt. In quos harum quisquam voluptatem eveniet. Aut vero autem dolorum iste. Voluptatibus mollitia quia laborum vel non voluptates.'),
(10, 798, 176, '2020-06-10 15:02:34', 2, 'Saepe laborum magni tempore rerum quisquam. Animi quia minima id ipsam. Ratione neque possimus repellat similique nemo aliquam a.'),
(11, 798, 176, '2020-06-10 15:02:34', 3, 'Omnis laborum nostrum suscipit consequatur aperiam animi sint. Porro dolores voluptatem dolor quidem aliquid sint. Assumenda ipsa nam consequatur libero mollitia qui perferendis minima.'),
(12, 799, 169, '2020-06-10 15:02:34', 2, 'Nemo dolorem fuga blanditiis facere quis necessitatibus sequi. Rerum voluptatum dolor quae eos et consequatur. Natus dolorem vero soluta velit. Cumque facilis pariatur voluptas sequi possimus labore consequatur.'),
(13, 801, 174, '2020-06-10 15:02:34', 4, 'Omnis vel maxime eligendi laboriosam facere ipsa quibusdam. Voluptatem et soluta aut sit sed. Fuga et sed quia sunt. Beatae mollitia eaque sed quaerat.'),
(14, 801, 169, '2020-06-10 15:02:34', 2, 'Accusantium perferendis omnis vel minima magni. Dolore consectetur voluptatum necessitatibus omnis aut ut eveniet ad. Pariatur at molestiae ut nesciunt dolorem dignissimos eius.'),
(15, 804, 168, '2020-06-10 15:02:34', 4, 'Soluta aliquam fugiat fugiat minus sed veniam. Deleniti non quis explicabo ullam doloremque. Distinctio iusto dolores non nulla et impedit. Odit voluptate esse sed consectetur vel eum et.'),
(16, 805, 176, '2020-06-10 15:02:34', 3, 'Ullam porro voluptatum omnis sit unde cum est. Corporis blanditiis dicta et quibusdam.'),
(17, 805, 173, '2020-06-10 15:02:34', 3, 'Earum occaecati explicabo sunt ipsam. Fugit voluptatem dignissimos maiores et eos voluptatem molestiae. Sed corrupti odit sed provident deserunt consequuntur consequatur. Voluptatem necessitatibus rerum quia soluta.'),
(18, 805, 168, '2020-06-10 15:02:34', 5, 'Cumque aperiam expedita rerum vel voluptatem velit natus. Quas voluptas non dignissimos delectus maxime ea. Dolores quibusdam et optio nemo.'),
(19, 805, 173, '2020-06-10 15:02:34', 3, 'Eum cupiditate velit aut porro corporis. Et quam sapiente dolor aut rerum eos. Quam officia autem distinctio eaque nam corrupti.'),
(20, 805, 168, '2020-06-10 15:02:34', 4, 'Et error omnis autem inventore. Sunt repellendus architecto repudiandae vel sit consequuntur. Iure ratione magnam et in maxime repellat. Temporibus veritatis asperiores aperiam expedita consequatur.'),
(21, 807, 173, '2020-06-10 15:02:34', 2, 'Debitis aliquid quia qui ut ea. Ipsum nihil consequatur molestiae vitae est. Corporis sed eum aut soluta quae eligendi et. Adipisci totam sequi quod ipsa dolore qui. Natus non dolores et assumenda dolores omnis.'),
(22, 807, 171, '2020-06-10 15:02:34', 3, 'Deserunt magni et sit sit eius mollitia sed. Explicabo sit illo aut recusandae. Consequatur vel quo mollitia excepturi eius. Labore rem et ea quia corporis sequi.'),
(23, 807, 176, '2020-06-10 15:02:34', 4, 'Ea dolorem ducimus voluptatem. Modi nesciunt natus eum quia dolorum alias eos. Nulla quidem aut voluptate voluptatem quam.'),
(24, 809, 171, '2020-06-10 15:02:34', 3, 'Sint minus autem tenetur veritatis saepe. Iure consequuntur adipisci fugit fugiat ex illum exercitationem voluptatem. Vel ex consequuntur perferendis et maxime.'),
(25, 809, 175, '2020-06-10 15:02:34', 4, 'Possimus sapiente dignissimos dicta ut cumque quibusdam molestiae. Autem laboriosam quae qui quia voluptatem ipsa voluptatem. Qui et est hic sit ad aut vitae. Ratione aut at non quis.'),
(26, 809, 173, '2020-06-10 15:02:34', 5, 'Quis sed eum velit et voluptas facere repudiandae aut. Iure quo commodi quas quia dolor. Quae perferendis et omnis possimus consectetur expedita aut eius.'),
(27, 809, 168, '2020-06-10 15:02:34', 2, 'Voluptas quo error praesentium dolorem culpa aut aut. Non dicta inventore ipsa. Nobis fugiat vero ipsum saepe explicabo.'),
(28, 811, 174, '2020-06-10 15:02:34', 4, 'Rerum quia dolorem sint iure. Esse nihil quos exercitationem vel dolorem asperiores. Velit labore soluta aperiam voluptas illo. Vel ipsa sunt perspiciatis cum incidunt quae.'),
(29, 812, 168, '2020-06-10 15:02:34', 5, 'Quam laboriosam rerum accusantium dolores et. Sed est non natus dolores aut delectus. Tenetur labore repellat aut dolor. Placeat omnis dolorum quisquam modi assumenda et eveniet fugit.'),
(30, 814, 171, '2020-06-10 15:02:34', 1, 'Et est aut odit et quas. Vel tenetur delectus harum quaerat. Voluptatem autem quo corrupti mollitia blanditiis nulla. Ipsum nihil nesciunt dolorum et.'),
(31, 815, 168, '2020-06-10 15:02:34', 5, 'Facere ex id quas aut repellendus. Quam facere consequatur nulla dolor. Magni et velit illum id numquam nostrum.'),
(32, 815, 177, '2020-06-10 15:02:34', 1, 'Quia et accusamus nostrum quia. Cumque distinctio distinctio sit ut non. Quibusdam aliquam numquam repellat at.'),
(33, 815, 172, '2020-06-10 15:02:34', 1, 'Aut omnis necessitatibus qui. Inventore quia officia vel voluptate sequi magnam omnis ducimus. Ea culpa impedit dicta explicabo officia omnis eos.'),
(34, 815, 170, '2020-06-10 15:02:34', 1, 'Sit delectus et qui omnis voluptate voluptas at. Officia omnis maiores aut tempora et. Ipsum sit sapiente sed quae nulla debitis.'),
(35, 815, 171, '2020-06-10 15:02:34', 4, 'Rem dolorem vel quia. Non expedita sed porro laborum et. Reprehenderit atque iusto ad quis tenetur cumque. Adipisci neque est ex nihil voluptatibus ut.'),
(36, 815, 176, '2020-06-10 15:02:34', 2, 'Et nihil fuga nam fugit ullam aliquid sunt. Quam molestiae nisi voluptas. Molestias veritatis dolores eum ipsa quidem quia autem et.'),
(37, 816, 168, '2020-06-10 15:02:34', 5, 'Eligendi rerum ipsa qui quia consectetur consequatur laboriosam. Consequatur possimus distinctio quaerat perferendis id itaque ut. Minus fuga corporis aut doloribus esse nostrum ipsam quidem. Eos tenetur consequatur quidem est sit unde.'),
(38, 816, 170, '2020-06-10 15:02:34', 4, 'Officiis suscipit rerum nisi maiores unde. Aperiam unde earum rerum illo expedita.'),
(39, 816, 175, '2020-06-10 15:02:34', 1, 'Aut perferendis adipisci nihil iure recusandae tenetur atque neque. Aperiam vel tenetur vel qui rerum qui qui. Quia nostrum omnis incidunt enim dolores.'),
(40, 817, 169, '2020-06-10 15:02:34', 3, 'Necessitatibus odit sed nihil rerum quo ea. Voluptatibus vero quia sit doloremque quasi aliquid sed. Exercitationem consequuntur non neque. Praesentium natus qui sed quasi.'),
(41, 817, 173, '2020-06-10 15:02:34', 4, 'Fuga repellendus ducimus et animi cumque nostrum vero. At ipsa nobis nemo aut. Enim eligendi ipsam dolor voluptas.'),
(42, 818, 175, '2020-06-10 15:02:34', 2, 'Aut repudiandae dolor enim sapiente. Et voluptatem qui sit magni sit. Impedit suscipit placeat magnam iusto consequuntur ducimus. Consequatur praesentium libero tempore minima sint.'),
(43, 820, 175, '2020-06-10 15:02:34', 5, 'Placeat labore excepturi ut rerum perferendis aperiam. Commodi dolores natus vel a ab voluptatem alias.'),
(49, 794, 167, '2020-06-11 00:04:05', 4, 'Vraiment cool !!'),
(50, 793, 167, '2020-06-13 01:03:57', 4, 'Super !!!!');
-- --------------------------------------------------------
--
-- Structure de la table `image`
--
DROP TABLE IF EXISTS `image`;
CREATE TABLE IF NOT EXISTS `image` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`ad_id` int(11) NOT NULL,
`url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`caption` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
KEY `IDX_C53D045F4F34D596` (`ad_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2264 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Déchargement des données de la table `image`
--
INSERT INTO `image` (`id`, `ad_id`, `url`, `caption`) VALUES
(2167, 792, 'https://picsum.photos/200/300?random=1', 'Recusandae.'),
(2168, 792, 'https://picsum.photos/200/300?random=2', 'Nobis.'),
(2169, 793, 'https://picsum.photos/200/300?random=1', 'Quasi.'),
(2171, 793, 'https://picsum.photos/200/300?random=3', 'Ipsa in.'),
(2173, 794, 'https://picsum.photos/200/300?random=1', 'Nam.'),
(2174, 794, 'https://picsum.photos/200/300?random=2', 'Perspiciatis tenetur.'),
(2175, 795, 'https://picsum.photos/200/300?random=1', 'Itaque earum.'),
(2176, 795, 'https://picsum.photos/200/300?random=2', 'Corporis ut.'),
(2177, 795, 'https://picsum.photos/200/300?random=3', 'Sequi.'),
(2178, 796, 'https://picsum.photos/200/300?random=1', 'Sit.'),
(2179, 796, 'https://picsum.photos/200/300?random=2', 'Qui temporibus.'),
(2180, 796, 'https://picsum.photos/200/300?random=3', 'Quis non.'),
(2181, 797, 'https://picsum.photos/200/300?random=1', 'Eos qui.'),
(2182, 797, 'https://picsum.photos/200/300?random=2', 'Non necessitatibus.'),
(2183, 798, 'https://picsum.photos/200/300?random=1', 'Quisquam.'),
(2184, 798, 'https://picsum.photos/200/300?random=2', 'Unde.'),
(2185, 798, 'https://picsum.photos/200/300?random=3', 'Totam nam.'),
(2186, 799, 'https://picsum.photos/200/300?random=1', 'Est perferendis.'),
(2187, 799, 'https://picsum.photos/200/300?random=2', 'Placeat.'),
(2188, 799, 'https://picsum.photos/200/300?random=3', 'Explicabo.'),
(2189, 800, 'https://picsum.photos/200/300?random=1', 'Ex.'),
(2190, 800, 'https://picsum.photos/200/300?random=2', 'Exercitationem.'),
(2191, 800, 'https://picsum.photos/200/300?random=3', 'Maxime.'),
(2192, 800, 'https://picsum.photos/200/300?random=4', 'Illo.'),
(2193, 801, 'https://picsum.photos/200/300?random=1', 'Sunt.'),
(2194, 801, 'https://picsum.photos/200/300?random=2', 'Officia consequatur.'),
(2195, 802, 'https://picsum.photos/200/300?random=1', 'Praesentium.'),
(2196, 802, 'https://picsum.photos/200/300?random=2', 'Sint eos.'),
(2197, 802, 'https://picsum.photos/200/300?random=3', 'Culpa.'),
(2198, 803, 'https://picsum.photos/200/300?random=1', 'Quam explicabo.'),
(2199, 803, 'https://picsum.photos/200/300?random=2', 'In ut.'),
(2200, 803, 'https://picsum.photos/200/300?random=3', 'Et.'),
(2201, 804, 'https://picsum.photos/200/300?random=1', 'Repellat atque.'),
(2202, 804, 'https://picsum.photos/200/300?random=2', 'Enim exercitationem.'),
(2203, 805, 'https://picsum.photos/200/300?random=1', 'Nisi.'),
(2204, 805, 'https://picsum.photos/200/300?random=2', 'Excepturi.'),
(2205, 805, 'https://picsum.photos/200/300?random=3', 'Fugiat.'),
(2206, 805, 'https://picsum.photos/200/300?random=4', 'Sit qui.'),
(2207, 806, 'https://picsum.photos/200/300?random=1', 'Dolorem.'),
(2208, 806, 'https://picsum.photos/200/300?random=2', 'Repudiandae dicta.'),
(2209, 806, 'https://picsum.photos/200/300?random=3', 'Reprehenderit.'),
(2210, 806, 'https://picsum.photos/200/300?random=4', 'Nam.'),
(2211, 807, 'https://picsum.photos/200/300?random=1', 'Aliquid aut.'),
(2212, 807, 'https://picsum.photos/200/300?random=2', 'Pariatur.'),
(2213, 808, 'https://picsum.photos/200/300?random=1', 'Est.'),
(2214, 808, 'https://picsum.photos/200/300?random=2', 'Sint.'),
(2215, 808, 'https://picsum.photos/200/300?random=3', 'Accusamus.'),
(2216, 808, 'https://picsum.photos/200/300?random=4', 'Ab.'),
(2217, 809, 'https://picsum.photos/200/300?random=1', 'At.'),
(2218, 809, 'https://picsum.photos/200/300?random=2', 'Minima.'),
(2219, 809, 'https://picsum.photos/200/300?random=3', 'Nesciunt ut.'),
(2220, 810, 'https://picsum.photos/200/300?random=1', 'Aut.'),
(2221, 810, 'https://picsum.photos/200/300?random=2', 'Aut.'),
(2222, 810, 'https://picsum.photos/200/300?random=3', 'Autem qui.'),
(2223, 811, 'https://picsum.photos/200/300?random=1', 'Sunt dolorum.'),
(2224, 811, 'https://picsum.photos/200/300?random=2', 'Voluptate.'),
(2225, 811, 'https://picsum.photos/200/300?random=3', 'Et.'),
(2226, 811, 'https://picsum.photos/200/300?random=4', 'Consequatur quae.'),
(2227, 812, 'https://picsum.photos/200/300?random=1', 'Ipsum.'),
(2228, 812, 'https://picsum.photos/200/300?random=2', 'Reprehenderit.'),
(2229, 812, 'https://picsum.photos/200/300?random=3', 'Aut.'),
(2230, 812, 'https://picsum.photos/200/300?random=4', 'Et.'),
(2231, 812, 'https://picsum.photos/200/300?random=5', 'Ut.'),
(2232, 813, 'https://picsum.photos/200/300?random=1', 'Molestiae.'),
(2233, 813, 'https://picsum.photos/200/300?random=2', 'Id.'),
(2234, 814, 'https://picsum.photos/200/300?random=1', 'Molestiae.'),
(2235, 814, 'https://picsum.photos/200/300?random=2', 'Magnam.'),
(2236, 814, 'https://picsum.photos/200/300?random=3', 'Autem iste.'),
(2237, 815, 'https://picsum.photos/200/300?random=1', 'Cupiditate.'),
(2238, 815, 'https://picsum.photos/200/300?random=2', 'Dicta nihil.'),
(2239, 815, 'https://picsum.photos/200/300?random=3', 'Excepturi ratione.'),
(2240, 816, 'https://picsum.photos/200/300?random=1', 'Cupiditate suscipit.'),
(2241, 816, 'https://picsum.photos/200/300?random=2', 'Placeat.'),
(2242, 817, 'https://picsum.photos/200/300?random=1', 'Reprehenderit.'),
(2243, 817, 'https://picsum.photos/200/300?random=2', 'Quia ut.'),
(2244, 817, 'https://picsum.photos/200/300?random=3', 'Ut.'),
(2245, 817, 'https://picsum.photos/200/300?random=4', 'Dignissimos.'),
(2246, 818, 'https://picsum.photos/200/300?random=1', 'Facere.'),
(2247, 818, 'https://picsum.photos/200/300?random=2', 'Error.'),
(2248, 818, 'https://picsum.photos/200/300?random=3', 'Quibusdam perferendis.'),
(2252, 820, 'https://picsum.photos/200/300?random=1', 'Sit.'),
(2253, 820, 'https://picsum.photos/200/300?random=2', 'Aliquid cupiditate.'),
(2254, 820, 'https://picsum.photos/200/300?random=3', 'Est.'),
(2255, 820, 'https://picsum.photos/200/300?random=4', 'Aut.'),
(2256, 820, 'https://picsum.photos/200/300?random=5', 'Eaque veniam.'),
(2257, 821, 'https://picsum.photos/200/300?random=1', 'Voluptate neque.'),
(2258, 821, 'https://picsum.photos/200/300?random=2', 'Omnis id.'),
(2259, 821, 'https://picsum.photos/200/300?random=3', 'Qui.'),
(2260, 821, 'https://picsum.photos/200/300?random=4', 'Beatae sed.'),
(2261, 823, 'https://picsum.photos/1000/350?random=38', 'Vu de la chambre'),
(2262, 823, 'https://picsum.photos/1000/350?random=65', 'Vu du balcon');
-- --------------------------------------------------------
--
-- Structure de la table `migration_versions`
--
DROP TABLE IF EXISTS `migration_versions`;
CREATE TABLE IF NOT EXISTS `migration_versions` (
`version` varchar(14) COLLATE utf8mb4_unicode_ci NOT NULL,
`executed_at` datetime NOT NULL COMMENT '(DC2Type:datetime_immutable)',
PRIMARY KEY (`version`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Déchargement des données de la table `migration_versions`
--
INSERT INTO `migration_versions` (`version`, `executed_at`) VALUES
('20200607010715', '2020-06-07 01:09:01'),
('20200607011118', '2020-06-07 01:11:26'),
('20200607020517', '2020-06-07 02:06:24'),
('20200608081536', '2020-06-08 08:15:49'),
('20200608082350', '2020-06-08 08:24:00'),
('20200609084652', '2020-06-09 08:47:27'),
('20200609131828', '2020-06-09 13:18:42'),
('20200609135622', '2020-06-09 13:56:37'),
('20200610125449', '2020-06-10 12:55:02');
-- --------------------------------------------------------
--
-- Structure de la table `role`
--
DROP TABLE IF EXISTS `role`;
CREATE TABLE IF NOT EXISTS `role` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Déchargement des données de la table `role`
--
INSERT INTO `role` (`id`, `title`) VALUES
(4, 'ROLE_ADMIN');
-- --------------------------------------------------------
--
-- Structure de la table `role_user`
--
DROP TABLE IF EXISTS `role_user`;
CREATE TABLE IF NOT EXISTS `role_user` (
`role_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`role_id`,`user_id`),
KEY `IDX_332CA4DDD60322AC` (`role_id`),
KEY `IDX_332CA4DDA76ED395` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Déchargement des données de la table `role_user`
--
INSERT INTO `role_user` (`role_id`, `user_id`) VALUES
(4, 167);
-- --------------------------------------------------------
--
-- Structure de la table `user`
--
DROP TABLE IF EXISTS `user`;
CREATE TABLE IF NOT EXISTS `user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`first_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`last_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`picture` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`hash` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`introduction` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=178 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Déchargement des données de la table `user`
--
INSERT INTO `user` (`id`, `first_name`, `last_name`, `email`, `picture`, `hash`, `introduction`, `description`, `slug`) VALUES
(167, 'Greg', 'Thorel', '<EMAIL>', 'https://randomuser.me/api/portraits/men/55.jpg', '$2y$13$LMmc2aPSeSwfJEvkoEFCouozCiGwoE0s/FWxEgxLS5IolodVk.HZO', 'Nulla voluptatibus dicta voluptatum.', 'Placeat dicta dolorum consequatur. Enim laboriosam omnis facere veritatis ipsam. Accusantium harum dolorum rerum voluptate reprehenderit excepturi. Aut quae explicabo ab deserunt temporibus aut quasi. Vel corporis autem eius dolorum eveniet et. Sit accusamus omnis qui voluptatem quo dolore cupiditate.', 'greg-thorel'),
(168, 'Ellis', 'Bogan', '<EMAIL>', 'https://randomuser.me/api/portraits/men/76.jpg', '$2y$13$S/aKGqMRSgMUtPlwuFY.6eFMtI2Jp3SyUzbd2EGsZJetgC8pbn.YK', 'Velit repellat qui perspiciatis porro dolores sint.', 'Eum rem nulla cupiditate qui sint esse. Animi et voluptatem eum nemo magnam vitae cupiditate. Voluptatibus architecto perferendis suscipit accusamus beatae omnis. Reprehenderit quia aliquid officia perferendis. Facilis eum aperiam rerum autem quasi illo.', 'ellis-bogan'),
(169, 'Corbin', 'Predovic', '<EMAIL>', 'https://randomuser.me/api/portraits/men/56.jpg', '$2y$13$e527XPLv1RFtCQSmiJ2aEe2Fry/BHtTZNxAibu9bARtl6vyZ54sZq', 'Omnis doloremque fuga natus maiores nisi.', 'Repellendus placeat facilis ut inventore. Repellat enim sint porro est est perferendis. Asperiores repellendus voluptas provident vel officiis vero quod. Esse accusamus non inventore et sed animi.', 'corbin-predovic'),
(170, 'Missouri', 'Collins', '<EMAIL>', 'https://randomuser.me/api/portraits/women/66.jpg', '$2y$13$4NeW9yXw5PpQW8hShYfxHOWRNqh7XjX4bnPucbumH3uSwZtUr70Si', 'Veniam ad omnis facere eos.', 'Corrupti occaecati aut omnis nam assumenda nihil laboriosam. Quia fuga minima quae aut. Ut sint facilis dolor eum eius voluptatibus eos. Recusandae quis harum quod perspiciatis ipsam soluta consequatur. Nobis consequatur et quas autem. Eos impedit sunt quia porro.', 'missouri-collins'),
(171, 'Elisabeth', 'Bruen', '<EMAIL>', 'https://randomuser.me/api/portraits/women/36.jpg', '$2y$13$ypQXtO5.Faibg0cCDIX.KO/JsePJ7ARC0ck6Rl2ixRBOhuszRNAXK', 'Cum quis quasi consequatur qui dolorem a harum id.', 'Ut aut itaque rerum eum velit sit quaerat natus. Dolor rem expedita expedita deleniti ut. Rerum in aliquam voluptatem reiciendis. Libero alias excepturi a nisi. Dolorem possimus aut ad laborum odio minus. Porro asperiores eligendi aut deserunt. Explicabo saepe consequatur corporis esse eligendi doloribus.', 'elisabeth-bruen'),
(172, 'Wilburn', 'Schiller', '<EMAIL>', 'https://randomuser.me/api/portraits/men/2.jpg', '$2y$13$TG8A12cNmnaq6qYHqlZCmerPl/d/qJ7/ponK6DVjPHeD5WUSZ67cy', 'Debitis id dolorem repudiandae voluptas repellat.', 'Voluptatibus repudiandae quia ipsa. Magnam quidem recusandae eaque quas aut. Explicabo quia hic est temporibus ut omnis voluptatem. Delectus natus consequuntur corrupti voluptatibus. Illo soluta est eum consequuntur. Et modi voluptatibus explicabo rerum aliquam saepe provident.', 'wilburn-schiller'),
(173, 'Reuben', 'Trantow', '<EMAIL>', 'https://randomuser.me/api/portraits/men/53.jpg', '$2y$13$oYa0K2oS9cT/85vdxkJPIOFwkGEdMCt/ViTjuPDST7iTYJ2WUb3Rq', 'Voluptatibus quae ut sed.', 'Rem deserunt pariatur animi autem. Quae harum ut voluptatem. Aut iure et illo ea vel cumque repellat. Quis consequuntur exercitationem magni cumque est.', 'reuben-trantow'),
(174, 'Edwina', 'Kuhlman', '<EMAIL>', 'https://randomuser.me/api/portraits/women/57.jpg', '$2y$13$HzKePDFQ5ZU9KqYoqvoRYOtObOdVXtbVX2nWalPRLVCFJlhU1NA9e', 'Dicta consequatur ratione atque rerum alias.', 'Ducimus consectetur nihil ipsam ut perferendis dicta. Consectetur vero quas eum iure asperiores iusto. Quas a non doloribus incidunt hic. Repudiandae eos aspernatur consectetur sed labore ipsa minima. Perferendis expedita suscipit expedita officia consectetur tempora nam.', 'edwina-kuhlman'),
(175, 'Liza', 'Leuschke', '<EMAIL>', 'https://randomuser.me/api/portraits/women/7.jpg', '$2y$13$1h2JsP/CjAOW.HG9VgJeWODLIX4Ker7wDd.2TRnmolQe55l8wymMe', 'Non sed nobis et recusandae.', 'Eaque omnis nam necessitatibus aliquam consequatur corrupti ut. Quia corrupti sed ut commodi natus. Laborum suscipit consectetur fugit eligendi. Eius sed neque commodi aut. Ipsa explicabo laborum dolorem aliquam illum itaque corrupti quos. Repudiandae occaecati voluptatem eos autem error quos fugiat cumque. Ea veritatis veniam et autem accusamus quo cumque.', 'liza-leuschke'),
(176, 'Dixie', 'Yost', '<EMAIL>', 'https://randomuser.me/api/portraits/women/7.jpg', '$2y$13$vcemUB34/49xqgmyfc.GW.6KTykKqfY/CR49RyJrwL6P/Kj0ye8U2', 'Adipisci illum explicabo quidem.', 'Nesciunt laborum aperiam at ut et labore eaque. Explicabo reprehenderit atque repellat ex similique reiciendis. Non inventore officia expedita architecto rerum eos unde eos. Inventore consequatur molestiae perferendis perspiciatis illum et. Eaque optio recusandae enim et. Voluptatem rerum est et et.', 'dixie-yost'),
(177, 'Jessy', 'Blick', '<EMAIL>', 'https://randomuser.me/api/portraits/men/63.jpg', '$2y$13$nsH.mjaA0MbCKqPv1ftcr.lDK2KBOBGttUrtRNDjbw7x5QZOiHuAC', 'Eum id veniam eos dolores est maxime.', 'Vel autem ut repellat incidunt accusamus eos. Deserunt aut veritatis alias et esse. Dolorem quod quibusdam id qui autem. Amet qui reiciendis quia fuga quo quo. Qui maxime soluta et neque nihil accusamus. Qui sequi asperiores similique sunt ut veniam.', 'jessy-blick');
--
-- Contraintes pour les tables déchargées
--
--
-- Contraintes pour la table `ad`
--
ALTER TABLE `ad`
ADD CONSTRAINT `FK_77E0ED58F675F31B` FOREIGN KEY (`author_id`) REFERENCES `user` (`id`);
--
-- Contraintes pour la table `booking`
--
ALTER TABLE `booking`
ADD CONSTRAINT `FK_E00CEDDE4F34D596` FOREIGN KEY (`ad_id`) REFERENCES `ad` (`id`),
ADD CONSTRAINT `FK_E00CEDDE8B7E4006` FOREIGN KEY (`booker_id`) REFERENCES `user` (`id`);
--
-- Contraintes pour la table `comment`
--
ALTER TABLE `comment`
ADD CONSTRAINT `FK_9474526C4F34D596` FOREIGN KEY (`ad_id`) REFERENCES `ad` (`id`),
ADD CONSTRAINT `FK_9474526CF675F31B` FOREIGN KEY (`author_id`) REFERENCES `user` (`id`);
--
-- Contraintes pour la table `image`
--
ALTER TABLE `image`
ADD CONSTRAINT `FK_C53D045F4F34D596` FOREIGN KEY (`ad_id`) REFERENCES `ad` (`id`);
--
-- Contraintes pour la table `role_user`
--
ALTER TABLE `role_user`
ADD CONSTRAINT `FK_332CA4DDA76ED395` FOREIGN KEY (`user_id`) REFERENCES `user` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `FK_332CA4DDD60322AC` FOREIGN KEY (`role_id`) REFERENCES `role` (`id`) ON DELETE CASCADE;
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 */;
|
/*
Navicat MySQL Data Transfer
Source Server : local_computer
Source Server Version : 50505
Source Host : 127.0.0.1:3306
Source Database : diaryerror
Target Server Type : MYSQL
Target Server Version : 50505
File Encoding : 65001
Date: 2021-07-06 07:09:43
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `peserta`
-- ----------------------------
DROP TABLE IF EXISTS `peserta`;
CREATE TABLE `peserta` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`nama_lengkap` varchar(50) DEFAULT NULL,
`umur` varchar(50) DEFAULT NULL,
`email` varchar(50) DEFAULT NULL,
`gender` varchar(50) DEFAULT NULL,
`alamat` varchar(50) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=103 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of peserta
-- ----------------------------
INSERT INTO `peserta` VALUES ('1', 'Massimiliano', 'Rawsthorn', '<EMAIL>', 'Genderfluid', '02472 Kingsford Point');
INSERT INTO `peserta` VALUES ('2', 'Turner', 'Keat', '<EMAIL>', 'Genderfluid', '77857 Red Cloud Crossing');
INSERT INTO `peserta` VALUES ('3', 'Mariam', 'Titford', '<EMAIL>', 'Bigender', '93692 Moland Court');
INSERT INTO `peserta` VALUES ('4', 'Darcey', 'Clemonts', '<EMAIL>', 'Agender', '97 Roth Court');
INSERT INTO `peserta` VALUES ('6', 'Grange', 'Sawday', '<EMAIL>', 'Polygender', '154 Esker Crossing');
INSERT INTO `peserta` VALUES ('7', 'Cristin', 'Wasiel', '<EMAIL>', 'Female', '6010 Graceland Pass');
INSERT INTO `peserta` VALUES ('8', 'Marthena', 'Lowes', '<EMAIL>', 'Non-binary', '950 Golf View Pass');
INSERT INTO `peserta` VALUES ('9', 'Cyndi', 'Grancher', '<EMAIL>', 'Genderqueer', '0218 Morningstar Drive');
INSERT INTO `peserta` VALUES ('10', 'Jessika', 'Starsmeare', '<EMAIL>', 'Genderfluid', '46 Service Park');
INSERT INTO `peserta` VALUES ('11', 'Edita', 'Currum', '<EMAIL>', 'Non-binary', '06 Lerdahl Court');
INSERT INTO `peserta` VALUES ('12', 'Joyann', 'Avo', '<EMAIL>', 'Non-binary', '41239 Eastwood Alley');
INSERT INTO `peserta` VALUES ('14', 'Julita', 'Preddle', '<EMAIL>', 'Female', '2721 Ridgeway Pass');
INSERT INTO `peserta` VALUES ('15', 'Kris', 'Sabine', '<EMAIL>', 'Genderfluid', '552 Hermina Hill');
INSERT INTO `peserta` VALUES ('16', 'Sissie', 'Winslet', '<EMAIL>', 'Bigender', '621 Bluestem Avenue');
INSERT INTO `peserta` VALUES ('17', 'Arleyne', 'Rathke', '<EMAIL>', 'Genderqueer', '33 Del Sol Junction');
INSERT INTO `peserta` VALUES ('18', 'Udell', 'Stopford', '<EMAIL>', 'Female', '2346 Main Hill');
INSERT INTO `peserta` VALUES ('19', 'Zonnya', 'Claibourn', '<EMAIL>', 'Female', '35220 Harbort Trail');
INSERT INTO `peserta` VALUES ('20', 'Miltie', 'Hammersley', '<EMAIL>', 'Bigender', '2 4th Parkway');
INSERT INTO `peserta` VALUES ('21', 'Nadya', 'Wallbutton', '<EMAIL>', 'Non-binary', '6 Logan Terrace');
INSERT INTO `peserta` VALUES ('22', 'Terence', 'Luca', '<EMAIL>', 'Male', '48365 Judy Court');
INSERT INTO `peserta` VALUES ('23', 'Gusta', 'Wilcockes', '<EMAIL>', 'Female', '25384 Rusk Crossing');
INSERT INTO `peserta` VALUES ('24', 'Yasmin', 'Lage', '<EMAIL>', 'Male', '86 Saint Paul Parkway');
INSERT INTO `peserta` VALUES ('25', 'Charlena', 'Beels', '<EMAIL>', 'Polygender', '075 Judy Circle');
INSERT INTO `peserta` VALUES ('26', 'Jake', 'Matysik', '<EMAIL>', 'Agender', '1 Moland Drive');
INSERT INTO `peserta` VALUES ('27', 'Em', 'Gauch', '<EMAIL>', 'Bigender', '209 Sugar Trail');
INSERT INTO `peserta` VALUES ('28', 'Jarrid', 'Lidgely', '<EMAIL>', 'Genderfluid', '72999 David Road');
INSERT INTO `peserta` VALUES ('29', 'Ardine', 'Doe', '<EMAIL>', 'Genderqueer', '681 Forest Place');
INSERT INTO `peserta` VALUES ('31', 'Bridie', 'McNirlan', '<EMAIL>', 'Male', '390 Ridge Oak Trail');
INSERT INTO `peserta` VALUES ('32', 'Estelle', 'Veque', '<EMAIL>', 'Bigender', '7 Bayside Parkway');
INSERT INTO `peserta` VALUES ('33', 'Stephannie', 'Camamill', '<EMAIL>', 'Polygender', '9 Superior Crossing');
INSERT INTO `peserta` VALUES ('34', 'Dani', 'Odeson', '<EMAIL>', 'Genderqueer', '15 Killdeer Court');
INSERT INTO `peserta` VALUES ('35', 'Casi', 'McPeice', '<EMAIL>', 'Genderqueer', '0 Sullivan Street');
INSERT INTO `peserta` VALUES ('36', 'Katheryn', 'Attride', '<EMAIL>', 'Genderfluid', '52679 Dovetail Terrace');
INSERT INTO `peserta` VALUES ('37', 'Gabriella', 'Backes', '<EMAIL>', 'Female', '4 Novick Avenue');
INSERT INTO `peserta` VALUES ('38', 'Bryana', 'Kundt', '<EMAIL>', 'Genderqueer', '91277 Eliot Drive');
INSERT INTO `peserta` VALUES ('39', 'Kate', 'Sange', '<EMAIL>', 'Agender', '472 South Parkway');
INSERT INTO `peserta` VALUES ('40', 'Saundra', 'Biddell', '<EMAIL>', 'Male', '2159 Superior Circle');
INSERT INTO `peserta` VALUES ('41', 'Elli', 'Sturman', '<EMAIL>', 'Genderqueer', '32193 Golf Road');
INSERT INTO `peserta` VALUES ('43', 'Erasmus', 'Elvish', '<EMAIL>', 'Genderfluid', '2 Crescent Oaks Plaza');
INSERT INTO `peserta` VALUES ('44', 'Othilia', 'Krystek', '<EMAIL>', 'Bigender', '6635 Petterle Avenue');
INSERT INTO `peserta` VALUES ('45', 'Peirce', 'Corsar', '<EMAIL>', 'Non-binary', '537 Utah Park');
INSERT INTO `peserta` VALUES ('46', 'Eal', 'Eakins', '<EMAIL>', 'Female', '2 Maryland Point');
INSERT INTO `peserta` VALUES ('47', 'Nisse', 'Gye', '<EMAIL>', 'Agender', '689 Northwestern Junction');
INSERT INTO `peserta` VALUES ('48', 'Romona', 'Rottger', '<EMAIL>', 'Female', '728 Holmberg Drive');
INSERT INTO `peserta` VALUES ('49', 'Joyan', 'Wedderburn', '<EMAIL>', 'Female', '201 Lerdahl Center');
INSERT INTO `peserta` VALUES ('50', 'Malena', 'Juhruke', '<EMAIL>', 'Female', '8 Bashford Road');
INSERT INTO `peserta` VALUES ('51', 'Dusty', 'Edbrooke', '<EMAIL>', 'Genderfluid', '16 Eliot Hill');
INSERT INTO `peserta` VALUES ('52', 'Sherman', 'Rouchy', '<EMAIL>', 'Agender', '46 Eastlawn Parkway');
INSERT INTO `peserta` VALUES ('53', 'Karlan', 'Shorrock', '<EMAIL>', 'Bigender', '72 Village Green Crossing');
INSERT INTO `peserta` VALUES ('54', 'Marsh', 'Labrone', '<EMAIL>', 'Polygender', '1868 Bellgrove Drive');
INSERT INTO `peserta` VALUES ('55', 'Yanaton', 'Northen', '<EMAIL>', 'Bigender', '60890 Carioca Road');
INSERT INTO `peserta` VALUES ('56', 'Oswald', 'Lapley', '<EMAIL>', 'Male', '18123 Veith Trail');
INSERT INTO `peserta` VALUES ('57', 'Carry', 'Verdun', '<EMAIL>', 'Bigender', '5 Prentice Place');
INSERT INTO `peserta` VALUES ('58', 'Clifford', 'Pester', '<EMAIL>', 'Genderfluid', '2 Banding Center');
INSERT INTO `peserta` VALUES ('59', 'Augustus', 'Ledekker', '<EMAIL>', 'Genderqueer', '4 Victoria Place');
INSERT INTO `peserta` VALUES ('60', 'Tucky', 'Fippe', '<EMAIL>', 'Female', '71 Reindahl Center');
INSERT INTO `peserta` VALUES ('61', 'Daven', 'Oganian', '<EMAIL>', 'Agender', '1741 Glacier Hill Center');
INSERT INTO `peserta` VALUES ('62', 'Ulrick', 'Morley', '<EMAIL>', 'Non-binary', '535 Hayes Junction');
INSERT INTO `peserta` VALUES ('63', 'Odo', '<NAME>', '<EMAIL>', 'Bigender', '9 Thierer Parkway');
INSERT INTO `peserta` VALUES ('64', 'Berkley', 'Cleugher', '<EMAIL>', 'Agender', '63420 Bobwhite Park');
INSERT INTO `peserta` VALUES ('65', 'Carlye', 'Earwaker', 'ce<EMAIL>', 'Male', '47673 Comanche Street');
INSERT INTO `peserta` VALUES ('66', 'Beverly', 'Costock', '<EMAIL>', 'Female', '219 Moose Circle');
INSERT INTO `peserta` VALUES ('67', 'Fedora', 'Swaffer', '<EMAIL>', 'Genderqueer', '964 Straubel Point');
INSERT INTO `peserta` VALUES ('68', 'Laughton', 'Gorges', '<EMAIL>', 'Agender', '7074 Waubesa Way');
INSERT INTO `peserta` VALUES ('69', 'Brittany', 'Sinson', '<EMAIL>', 'Female', '5 Steensland Hill');
INSERT INTO `peserta` VALUES ('70', 'Salem', 'Tunnacliffe', '<EMAIL>', 'Agender', '9 Northfield Road');
INSERT INTO `peserta` VALUES ('71', 'Manda', 'Murrum', '<EMAIL>', 'Male', '46093 Merrick Place');
INSERT INTO `peserta` VALUES ('73', 'Ethe', 'Alban', '<EMAIL>', 'Male', '232 Sauthoff Way');
INSERT INTO `peserta` VALUES ('75', 'Garvin', 'Brissard', '<EMAIL>', 'Genderfluid', '756 Basil Pass');
INSERT INTO `peserta` VALUES ('76', 'Wenona', 'Bracchi', '<EMAIL>', 'Bigender', '83596 Warner Court');
INSERT INTO `peserta` VALUES ('77', 'Halley', 'Kilner', '<EMAIL>', 'Non-binary', '16309 Meadow Ridge Trail');
INSERT INTO `peserta` VALUES ('78', 'Killie', 'Cornillot', '<EMAIL>', 'Male', '09 Daystar Center');
INSERT INTO `peserta` VALUES ('79', 'Leroy', 'Heister', '<EMAIL>', 'Genderfluid', '279 Loftsgordon Drive');
INSERT INTO `peserta` VALUES ('80', 'Laverna', 'Sambles', '<EMAIL>', 'Genderqueer', '6370 Red Cloud Park');
INSERT INTO `peserta` VALUES ('81', 'Frederik', 'Blanchard', '<EMAIL>', 'Agender', '8 Vahlen Hill');
INSERT INTO `peserta` VALUES ('82', 'Frannie', 'Brun', '<EMAIL>', 'Genderqueer', '5 Bunker Hill Place');
INSERT INTO `peserta` VALUES ('83', 'Gallard', 'Kieran', '<EMAIL>', 'Bigender', '0868 Cottonwood Junction');
INSERT INTO `peserta` VALUES ('84', 'Stanfield', 'Sivell', '<EMAIL>', 'Bigender', '2676 Nevada Terrace');
INSERT INTO `peserta` VALUES ('85', 'Renate', 'Kilgour', '<EMAIL>', 'Polygender', '0 Memorial Terrace');
INSERT INTO `peserta` VALUES ('86', 'Malinde', 'Wiggam', '<EMAIL>', 'Genderfluid', '650 Cambridge Center');
INSERT INTO `peserta` VALUES ('87', 'Cherice', 'McGowan', '<EMAIL>', 'Agender', '9 Starling Terrace');
INSERT INTO `peserta` VALUES ('88', 'Devin', 'Spencock', '<EMAIL>', 'Genderfluid', '2489 Corry Crossing');
INSERT INTO `peserta` VALUES ('89', 'Giraud', 'Pizzie', '<EMAIL>', 'Agender', '25 Fordem Circle');
INSERT INTO `peserta` VALUES ('91', 'Ellette', 'Coniff', '<EMAIL>', 'Female', '16 Vahlen Way');
INSERT INTO `peserta` VALUES ('92', 'Janey', 'Olivella', '<EMAIL>', 'Genderqueer', '3705 Corscot Road');
INSERT INTO `peserta` VALUES ('93', 'Shep', 'Walczak', '<EMAIL>', 'Female', '2666 Donald Road');
INSERT INTO `peserta` VALUES ('94', 'Emalia', 'Rookesby', '<EMAIL>', 'Male', '28104 Warner Pass');
INSERT INTO `peserta` VALUES ('95', 'Celinka', 'Kyd', '<EMAIL>', 'Agender', '9279 Claremont Center');
INSERT INTO `peserta` VALUES ('96', 'Barry', 'Hovert', '<EMAIL>', 'Non-binary', '20 Park Meadow Drive');
INSERT INTO `peserta` VALUES ('97', 'Matilde', 'Cholmondeley', '<EMAIL>', 'Genderqueer', '5746 Westerfield Hill');
INSERT INTO `peserta` VALUES ('98', 'Devlen', 'Wetherhead', '<EMAIL>', 'Bigender', '35 Meadow Valley Center');
INSERT INTO `peserta` VALUES ('99', 'Kenyon', 'Harmstone', '<EMAIL>', 'Genderfluid', '88905 Evergreen Junction');
INSERT INTO `peserta` VALUES ('100', 'Ray', 'Schonfelder', '<EMAIL>', 'Female', '751 Lakewood Point');
INSERT INTO `peserta` VALUES ('101', 'josep', '34', '<EMAIL>', 'laki-laki', null);
INSERT INTO `peserta` VALUES ('102', 'dilan', '90', '<EMAIL>', 'laki-laki', null);
|
USE roadtriphero_db;
INSERT INTO userProfiles (name, email, photoUrl, uid)
VALUES
("<NAME>", "<EMAIL>","https://lh6.googleusercontent.com/-tWzI4YjzO3s/AAAAAAAAAAI/AAAAAAAAAAA/ACHi3rdBMT-zdNB-nisgQn9JKiv68AIa6w/photo.jpg","YdjZ3AYozbMTrgtIzvfAFpfsrvA3"),
("<NAME>", "<EMAIL>","https://lh3.googleusercontent.com/-PfgjZxrCznI/AAAAAAAAAAI/AAAAAAAAAAA/ACHi3reksljVxRhgSbEhkRWcrdKNwPGNOg/photo.jpg","YN7epRjQX8S0DdDJDvFU3A4eqiN2"),
("<NAME>", "<EMAIL>","https://lh3.googleusercontent.com/-yKfrxPXbBsA/AAAAAAAAAAI/AAAAAAAAACk/ZWBYVHGLRe4/photo.jpg","sUT5cnwz3He8kEo3NHksK6osX0J2"),
("<NAME>", "<EMAIL>","https://lh5.googleusercontent.com/-EZWXMslf2Rw/AAAAAAAAAAI/AAAAAAAAAAA/ACHi3rcmbEqhZz8LOwwQdWtOgliajB4CKg/photo.jpg","it0N11NspBQEtzKOvVxVaIIp9c63"),
("Guest", "<EMAIL>","http://bbo.co.nz/cms/wp-content/uploads/Generic-Avatar-Male.jpg","guest"),
("<NAME>", "<EMAIL>","https://lh5.googleusercontent.com/-FFUq2tPSHrE/AAAAAAAAAAI/AAAAAAAAAAA/ACHi3rdbP0PYzhEQ3NGEoOyAKgH7U6vIEw/photo.jpg","abV446ObDaVx7Ql2w5xEyou7Jfm2") |
create or replace package register
authid CURRENT_USER
as
-- Note: The license is defined in root of the git repository
-- Assertion number
c_assert_error_number pls_integer := -20000;
c_error number := 2;
c_warn number := 4;
c_info number := 8;
c_debug number := 16;
c_trace number := 32;
procedure enter(
p_module varchar2,
p_name01 IN VARCHAR2 DEFAULT NULL,
p_value01 IN VARCHAR2 DEFAULT NULL,
p_name02 IN VARCHAR2 DEFAULT NULL,
p_value02 IN VARCHAR2 DEFAULT NULL,
p_name03 IN VARCHAR2 DEFAULT NULL,
p_value03 IN VARCHAR2 DEFAULT NULL,
p_name04 IN VARCHAR2 DEFAULT NULL,
p_value04 IN VARCHAR2 DEFAULT NULL,
p_name05 IN VARCHAR2 DEFAULT NULL,
p_value05 IN VARCHAR2 DEFAULT NULL,
p_name06 IN VARCHAR2 DEFAULT NULL,
p_value06 IN VARCHAR2 DEFAULT NULL,
p_name07 IN VARCHAR2 DEFAULT NULL,
p_value07 IN VARCHAR2 DEFAULT NULL,
p_name08 IN VARCHAR2 DEFAULT NULL,
p_value08 IN VARCHAR2 DEFAULT NULL,
p_name09 IN VARCHAR2 DEFAULT NULL,
p_value09 IN VARCHAR2 DEFAULT NULL,
p_name10 IN VARCHAR2 DEFAULT NULL,
p_value10 IN VARCHAR2 DEFAULT NULL,
p_action varchar2 default null,
p_extra clob default null
);
procedure set_action(p_action varchar2);
procedure assert(
p_condition in boolean,
p_msg in varchar2);
procedure exit(p_module varchar2 default null);
procedure error(p_text varchar2);
procedure warn(p_text varchar2);
procedure info(p_text varchar2);
procedure debug(p_text varchar2);
procedure trace(p_text varchar2);
-- to be used in 'when others then'
procedure unhandled_exception(
p_text varchar2 default null,
p_level integer default c_error);
-- to be used in specific exception handling
procedure exception_exit(
p_text varchar2 default null,
p_level integer default c_info);
procedure emit_dbms_output(
p_text in clob,
p_level in integer default c_info);
procedure emit_apex_debug(
p_text in varchar2,
p_level in integer);
procedure emit(
p_text in varchar2 default null,
p_level in integer default c_info,
p_extra in clob default null);
procedure emit_helper(
p_text varchar2 default null,
p_level integer default c_info,
p_module varchar2 default 'n/a',
p_action varchar2 default null,
p_extra clob default null);
-- note this affects all users; disable in production
procedure dbms_output_enable;
procedure dbms_output_disable;
-- note this affects all users; disable in production
procedure set_dbms_output_level(p_level integer);
function get_dbms_output_level return integer;
function compiler_flags_status return varchar2;
end register;
/
|
-- MySQL dump 10.13 Distrib 5.7.17, for Win64 (x86_64)
--
-- Host: localhost Database: leerbd_2
-- ------------------------------------------------------
-- Server version 5.7.17-log
/*!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 `auth_group`
--
DROP TABLE IF EXISTS `auth_group`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auth_group` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(80) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `auth_group`
--
LOCK TABLES `auth_group` WRITE;
/*!40000 ALTER TABLE `auth_group` DISABLE KEYS */;
/*!40000 ALTER TABLE `auth_group` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `auth_group_permissions`
--
DROP TABLE IF EXISTS `auth_group_permissions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auth_group_permissions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`group_id` int(11) NOT NULL,
`permission_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `auth_group_permissions_group_id_0cd325b0_uniq` (`group_id`,`permission_id`),
KEY `auth_group_permissi_permission_id_84c5c92e_fk_auth_permission_id` (`permission_id`),
CONSTRAINT `auth_group_permissi_permission_id_84c5c92e_fk_auth_permission_id` FOREIGN KEY (`permission_id`) REFERENCES `auth_permission` (`id`),
CONSTRAINT `auth_group_permissions_group_id_b120cbf9_fk_auth_group_id` FOREIGN KEY (`group_id`) REFERENCES `auth_group` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `auth_group_permissions`
--
LOCK TABLES `auth_group_permissions` WRITE;
/*!40000 ALTER TABLE `auth_group_permissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `auth_group_permissions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `auth_permission`
--
DROP TABLE IF EXISTS `auth_permission`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auth_permission` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`content_type_id` int(11) NOT NULL,
`codename` varchar(100) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `auth_permission_content_type_id_01ab375a_uniq` (`content_type_id`,`codename`),
CONSTRAINT `auth_permissi_content_type_id_2f476e4b_fk_django_content_type_id` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=82 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `auth_permission`
--
LOCK TABLES `auth_permission` WRITE;
/*!40000 ALTER TABLE `auth_permission` DISABLE KEYS */;
INSERT INTO `auth_permission` VALUES (1,'Can add log entry',1,'add_logentry'),(2,'Can change log entry',1,'change_logentry'),(3,'Can delete log entry',1,'delete_logentry'),(4,'Can add permission',2,'add_permission'),(5,'Can change permission',2,'change_permission'),(6,'Can delete permission',2,'delete_permission'),(7,'Can add group',3,'add_group'),(8,'Can change group',3,'change_group'),(9,'Can delete group',3,'delete_group'),(10,'Can add user',4,'add_user'),(11,'Can change user',4,'change_user'),(12,'Can delete user',4,'delete_user'),(13,'Can add content type',5,'add_contenttype'),(14,'Can change content type',5,'change_contenttype'),(15,'Can delete content type',5,'delete_contenttype'),(16,'Can add session',6,'add_session'),(17,'Can change session',6,'change_session'),(18,'Can delete session',6,'delete_session'),(19,'Can add area',7,'add_area'),(20,'Can change area',7,'change_area'),(21,'Can delete area',7,'delete_area'),(22,'Can add ceco',8,'add_ceco'),(23,'Can change ceco',8,'change_ceco'),(24,'Can delete ceco',8,'delete_ceco'),(25,'Can add mdte',9,'add_mdte'),(26,'Can change mdte',9,'change_mdte'),(27,'Can delete mdte',9,'delete_mdte'),(28,'Can add ctta',10,'add_ctta'),(29,'Can change ctta',10,'change_ctta'),(30,'Can delete ctta',10,'delete_ctta'),(31,'Can add ctto',11,'add_ctto'),(32,'Can change ctto',11,'change_ctto'),(33,'Can delete ctto',11,'delete_ctto'),(34,'Can add edp',12,'add_edp'),(35,'Can change edp',12,'change_edp'),(36,'Can delete edp',12,'delete_edp'),(37,'Can add odc',13,'add_odc'),(38,'Can change odc',13,'change_odc'),(39,'Can delete odc',13,'delete_odc'),(40,'Can add monedas',14,'add_monedas'),(41,'Can change monedas',14,'change_monedas'),(42,'Can delete monedas',14,'delete_monedas'),(43,'Can add persona',15,'add_persona'),(44,'Can change persona',15,'change_persona'),(45,'Can delete persona',15,'delete_persona'),(46,'Can add question',16,'add_question'),(47,'Can change question',16,'change_question'),(48,'Can delete question',16,'delete_question'),(49,'Can add choice',17,'add_choice'),(50,'Can change choice',17,'change_choice'),(51,'Can delete choice',17,'delete_choice'),(52,'Can add item odc',18,'add_itemodc'),(53,'Can change item odc',18,'change_itemodc'),(54,'Can delete item odc',18,'delete_itemodc'),(55,'Can add duenoceco',19,'add_duenoceco'),(56,'Can change duenoceco',19,'change_duenoceco'),(57,'Can delete duenoceco',19,'delete_duenoceco'),(58,'Can add item ctto',20,'add_itemctto'),(59,'Can change item ctto',20,'change_itemctto'),(60,'Can delete item ctto',20,'delete_itemctto'),(61,'Can add personal proyecto',21,'add_personalproyecto'),(62,'Can change personal proyecto',21,'change_personalproyecto'),(63,'Can delete personal proyecto',21,'delete_personalproyecto'),(64,'Can add personal ctta',22,'add_personalctta'),(65,'Can change personal ctta',22,'change_personalctta'),(66,'Can delete personal ctta',22,'delete_personalctta'),(67,'Can add reprentantes',23,'add_reprentantes'),(68,'Can change reprentantes',23,'change_reprentantes'),(69,'Can delete reprentantes',23,'delete_reprentantes'),(70,'Can add coord ctto',24,'add_coordctto'),(71,'Can change coord ctto',24,'change_coordctto'),(72,'Can delete coord ctto',24,'delete_coordctto'),(73,'Can add aportes ctto',25,'add_aportesctto'),(74,'Can change aportes ctto',25,'change_aportesctto'),(75,'Can delete aportes ctto',25,'delete_aportesctto'),(76,'Can add multas per clave ctto',26,'add_multasperclavectto'),(77,'Can change multas per clave ctto',26,'change_multasperclavectto'),(78,'Can delete multas per clave ctto',26,'delete_multasperclavectto'),(79,'Can add personal admin proyecto',27,'add_personaladminproyecto'),(80,'Can change personal admin proyecto',27,'change_personaladminproyecto'),(81,'Can delete personal admin proyecto',27,'delete_personaladminproyecto');
/*!40000 ALTER TABLE `auth_permission` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `auth_user`
--
DROP TABLE IF EXISTS `auth_user`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auth_user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`password` varchar(128) NOT NULL,
`last_login` datetime(6) DEFAULT NULL,
`is_superuser` tinyint(1) NOT NULL,
`username` varchar(30) NOT NULL,
`first_name` varchar(30) NOT NULL,
`last_name` varchar(30) NOT NULL,
`email` varchar(254) NOT NULL,
`is_staff` tinyint(1) NOT NULL,
`is_active` tinyint(1) NOT NULL,
`date_joined` datetime(6) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `username` (`username`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `auth_user`
--
LOCK TABLES `auth_user` WRITE;
/*!40000 ALTER TABLE `auth_user` DISABLE KEYS */;
INSERT INTO `auth_user` VALUES (1,'pbkdf2_sha256$24000$wpuFAbrSYi86$++ajCnWWugZ+XF7gODvE4fuStDE4+kK4+/+w6CwY0pI=','2017-07-12 15:29:01.684366',1,'admin','','','<EMAIL>',1,1,'2016-09-19 20:49:31.862503'),(2,'pbkdf2_sha256$24000$03dlyfKhXCVY$//3QCHAgT70v0c6L7m6QyGQZ3HosUxP1aVaOEm3x38Y=','2016-10-09 00:47:54.196679',0,'Alejandro','','','',1,1,'2016-10-08 23:35:45.000000'),(3,'pbkdf2_sha256$24000$fdNEiyfM7SDW$mn5y4SnVxosoIv/TEW3lkNA/j9CaU3XskGwgakPZ08I=',NULL,0,'Alejandro2','','','',0,1,'2016-10-09 00:43:30.547730');
/*!40000 ALTER TABLE `auth_user` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `auth_user_groups`
--
DROP TABLE IF EXISTS `auth_user_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auth_user_groups` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`group_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `auth_user_groups_user_id_94350c0c_uniq` (`user_id`,`group_id`),
KEY `auth_user_groups_group_id_97559544_fk_auth_group_id` (`group_id`),
CONSTRAINT `auth_user_groups_group_id_97559544_fk_auth_group_id` FOREIGN KEY (`group_id`) REFERENCES `auth_group` (`id`),
CONSTRAINT `auth_user_groups_user_id_6a12ed8b_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `auth_user_groups`
--
LOCK TABLES `auth_user_groups` WRITE;
/*!40000 ALTER TABLE `auth_user_groups` DISABLE KEYS */;
/*!40000 ALTER TABLE `auth_user_groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `auth_user_user_permissions`
--
DROP TABLE IF EXISTS `auth_user_user_permissions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auth_user_user_permissions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`permission_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `auth_user_user_permissions_user_id_14a6b632_uniq` (`user_id`,`permission_id`),
KEY `auth_user_user_perm_permission_id_1fbb5f2c_fk_auth_permission_id` (`permission_id`),
CONSTRAINT `auth_user_user_perm_permission_id_1fbb5f2c_fk_auth_permission_id` FOREIGN KEY (`permission_id`) REFERENCES `auth_permission` (`id`),
CONSTRAINT `auth_user_user_permissions_user_id_a95ead1b_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `auth_user_user_permissions`
--
LOCK TABLES `auth_user_user_permissions` WRITE;
/*!40000 ALTER TABLE `auth_user_user_permissions` DISABLE KEYS */;
INSERT INTO `auth_user_user_permissions` VALUES (4,2,31),(1,2,32),(2,2,33),(5,2,46),(6,2,47),(3,2,48);
/*!40000 ALTER TABLE `auth_user_user_permissions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `django_admin_log`
--
DROP TABLE IF EXISTS `django_admin_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `django_admin_log` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`action_time` datetime(6) NOT NULL,
`object_id` longtext,
`object_repr` varchar(200) NOT NULL,
`action_flag` smallint(5) unsigned NOT NULL,
`change_message` longtext NOT NULL,
`content_type_id` int(11) DEFAULT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `django_admin__content_type_id_c4bce8eb_fk_django_content_type_id` (`content_type_id`),
KEY `django_admin_log_user_id_c564eba6_fk_auth_user_id` (`user_id`),
CONSTRAINT `django_admin__content_type_id_c4bce8eb_fk_django_content_type_id` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`),
CONSTRAINT `django_admin_log_user_id_c564eba6_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2359 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `django_admin_log`
--
LOCK TABLES `django_admin_log` WRITE;
/*!40000 ALTER TABLE `django_admin_log` DISABLE KEYS */;
INSERT INTO `django_admin_log` VALUES (1,'2016-09-19 20:51:58.416451','473','SC-257',2,'Modificado/a NumCtto.',11,1),(2,'2016-09-19 20:55:23.169231','601','SMC ARQUITECTOS',1,'Añadido.',10,1),(3,'2016-09-19 21:00:13.085477','597','SC-278',1,'Añadido.',11,1),(4,'2016-09-19 21:04:41.906383','598','SC-279',1,'Añadido.',11,1),(5,'2016-09-19 21:06:03.205896','598','SC-279',2,'Modificado/a LocalCtto, TerrenCtto y SeguroCtto.',11,1),(6,'2016-09-19 21:08:58.876122','597','SC-278',2,'Modificado/a SeguroCtto.',11,1),(7,'2016-09-19 21:09:07.138107','598','SC-279',2,'Modificado/a SeguroCtto.',11,1),(8,'2016-09-19 21:15:12.262539','1','USD',1,'Añadido.',14,1),(9,'2016-09-19 21:16:06.749744','2','UF',1,'Añadido.',14,1),(10,'2016-09-19 21:16:29.017322','3','CLP$',1,'Añadido.',14,1),(11,'2016-09-19 21:17:10.209154','4','EUR',1,'Añadido.',14,1),(12,'2016-09-19 21:17:38.617025','5','CAD',1,'Añadido.',14,1),(13,'2016-09-19 21:46:27.069423','602','HOTEL PLAZA EL BOSQUE',1,'Añadido.',10,1),(14,'2016-09-19 21:46:37.071829','590','OS2016-074',2,'Modificado/a DescCtto, MonedaCtto, ValorCtto, IdCtta, FechIniCtto, FechTerCtto, IdCecoCtto y TerrenCtto.',11,1),(15,'2016-09-19 23:44:52.607718','603','ELECTRODHARMA ENERGY CONSULTING SPA',1,'Añadido.',10,1),(16,'2016-09-19 23:46:45.185349','599','OS2016-081',1,'Añadido.',11,1),(17,'2016-09-19 23:53:38.559066','604','INSTITUTO PORTALES',1,'Añadido.',10,1),(18,'2016-09-19 23:55:26.235918','600','OS2016-082',1,'Añadido.',11,1),(19,'2016-09-19 23:56:05.115219','597','SC-278',2,'Modificado/a EstCtto.',11,1),(20,'2016-09-19 23:56:23.167071','493','SC-277',2,'Modificado/a EstCtto.',11,1),(21,'2016-09-19 23:56:23.169669','492','SC-276',2,'Modificado/a EstCtto.',11,1),(22,'2016-09-25 13:56:43.366854','601','SC288',1,'Añadido.',11,1),(23,'2016-09-25 14:17:07.658310','601','SC-288',2,'Modificado/a NumCtto.',11,1),(24,'2016-09-25 14:18:08.396537','547','OS2016-031',2,'Modificado/a TipoServ.',11,1),(25,'2016-09-25 14:56:24.010224','450','SC-207',2,'Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-207 EDP 01\" edp.',11,1),(26,'2016-09-25 15:07:01.308727','450','SC-207',2,'Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-207 EDP 02\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-207 EDP 03\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-207 EDP 04\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-207 EDP 05\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-207 EDP 06\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-207 EDP 07\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-207 EDP 08\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-207 EDP 09\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-207 EDP 10\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-207 EDP 11\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-207 EDP 12\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-207 EDP 13\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-207 EDP 14\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-207 EDP 15\" edp.',11,1),(27,'2016-09-25 15:21:27.814212','450','SC-207',2,'Modificados ObservEDP para \"SC-207 EDP 15\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-207 EDP 16\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-207 EDP 17\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-207 EDP 18\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-207 EDP 19\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-207 EDP 20\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-207 EDP 21\" edp.',11,1),(28,'2016-09-25 15:22:05.864962','514','OCM2016-02',2,'Modificado/a ObservCtto.',11,1),(29,'2016-09-25 15:22:05.870412','448','SC-104',2,'Modificado/a ObservCtto.',11,1),(30,'2016-09-25 15:43:54.614378','451','SC-214',2,'Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-214 EDP 01\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-214 EDP 02\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-214 EDP 03\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-214 EDP 04\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-214 EDP 05\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-214 EDP 06\" edp. Modificados PeriodEDP, PeriodEDPTer, PresenEDP y AprobEDP para \"SC-214 EDP 07\" edp. Modificados PeriodEDP, PeriodEDPTer, PresenEDP y AprobEDP para \"SC-214 EDP 08\" edp. Modificados PeriodEDP, PeriodEDPTer, PresenEDP y AprobEDP para \"SC-214 EDP 09\" edp. Modificados PeriodEDP, PeriodEDPTer, PresenEDP y AprobEDP para \"SC-214 EDP 10\" edp.',11,1),(31,'2016-09-25 15:52:55.722800','452','SC-215',2,'Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-215 EDP 01\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-215 EDP 02\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-215 EDP 03\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-215 EDP 04\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-215 EDP 05\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-215 EDP 06\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-215 EDP 07\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-215 EDP 08\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-215 EDP 09\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-215 EDP 10\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-215 EDP 11\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-215 EDP 12\" edp. Modificados PeriodEDP, PeriodEDPTer, PresenEDP y AprobEDP para \"SC-215 EDP 13\" edp.',11,1),(32,'2016-09-25 15:57:27.600981','452','SC-215',2,'Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-215 EDP 14\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-215 EDP 15\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-215 EDP 16\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-215 EDP 17\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-215 EDP 18\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-215 EDP 19\" edp.',11,1),(33,'2016-09-25 16:08:15.458698','453','SC-216',2,'Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-216 EDP 01\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-216 EDP 02\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-216 EDP 03\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-216 EDP 04\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-216 EDP 05\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-216 EDP 06\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-216 EDP 07\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-216 EDP 08\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-216 EDP 09\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-216 EDP 10\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-216 EDP 11\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-216 EDP 12\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-216 EDP 13\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-216 EDP 14\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-216 EDP 15\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-216 EDP 16\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-216 EDP 17\" edp.',11,1),(34,'2016-09-25 16:22:45.825456','454','SC-220',2,'Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-220 EDP 01\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-220 EDP 02\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-220 EDP 03\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-220 EDP 04\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-220 EDP 05\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-220 EDP 06\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-220 EDP 07\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-220 EDP 08\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-220 EDP 09\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-220 EDP 10\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-220 EDP 11\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-220 EDP 12\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-220 EDP 13\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-220 EDP 14\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-220 EDP 15\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-220 EDP 16\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-220 EDP 17\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-220 EDP 18\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-220 EDP 19\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-220 EDP 20\" edp.',11,1),(35,'2016-09-25 16:31:56.104326','455','SC-222',2,'Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-222 EDP 01\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-222 EDP 02\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-222 EDP 03\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-222 EDP 04\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-222 EDP 05\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-222 EDP 06\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-222 EDP 07\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-222 EDP 08\" edp. Modificados PeriodEDP, PeriodEDPTer, PresenEDP y AprobEDP para \"SC-222 EDP 10\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-222 EDP 11\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-222 EDP 12\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-222 EDP 13\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-222 EDP 14\" edp.',11,1),(36,'2016-09-25 16:45:31.536612','456','SC-224',2,'Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-224 EDP 01\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-224 EDP 02\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-224 EDP 03\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-224 EDP 04\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-224 EDP 05\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-224 EDP 06\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-224 EDP 07\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-224 EDP 08\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-224 EDP 09\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-224 EDP 10\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-224 EDP 11\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-224 EDP 12\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-224 EDP 13\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-224 EDP 14\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-224 EDP 15\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-224 EDP 16\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-224 EDP 17\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-224 EDP 18\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-224 EDP 19\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-224 EDP 20\" edp.',11,1),(37,'2016-09-25 17:01:32.940208','459','SC-233',2,'Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-233 EDP 01\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-233 EDP 02\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-233 EDP 03\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-233 EDP 04\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-233 EDP 05\" edp. Modificados PeriodEDP, PeriodEDPTer, PresenEDP y AprobEDP para \"SC-233 EDP 06\" edp. Modificados PeriodEDPTer, PresenEDP, AprobEDP y ObservEDP para \"SC-233 EDP 07\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-233 EDP 08\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-233 EDP 09\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-233 EDP 10\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-233 EDP 11\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-233 EDP 12\" edp. Modificados PeriodEDP, PeriodEDPTer, PresenEDP, AprobEDP y ObservEDP para \"SC-233 EDP 13\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-233 EDP 14\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-233 EDP 15\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-233 EDP 16\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-233 EDP 17\" edp.',11,1),(38,'2016-09-25 17:03:29.748584','460','SC-235',2,'Modificados PeriodEDP, PeriodEDPTer, PresenEDP y AprobEDP para \"SC-235 EDP 01\" edp.',11,1),(39,'2016-09-25 17:17:08.350512','461','SC-237',2,'Modificados PeriodEDPTer para \"SC-237 EDP 01\" edp. Modificados PeriodEDPTer para \"SC-237 EDP 02\" edp. Modificados PeriodEDPTer para \"SC-237 EDP 03\" edp. Modificados PeriodEDPTer para \"SC-237 EDP 04\" edp. Modificados PeriodEDPTer para \"SC-237 EDP 05\" edp. Modificados PeriodEDP, PeriodEDPTer y ObservEDP para \"SC-237 EDP 06\" edp. Modificados PeriodEDPTer para \"SC-237 EDP 07\" edp. Modificados PeriodEDPTer para \"SC-237 EDP 08\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-237 EDP 09\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-237 EDP 10\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-237 EDP 11\" edp.',11,1),(40,'2016-09-25 17:28:05.710055','463','SC-242',2,'Modificados PeriodEDPTer para \"SC-242 EDP 01\" edp. Modificados PeriodEDPTer para \"SC-242 EDP 02\" edp. Modificados PeriodEDPTer para \"SC-242 EDP 03\" edp. Modificados PeriodEDPTer para \"SC-242 EDP 04\" edp. Modificados PeriodEDPTer para \"SC-242 EDP 05\" edp. Modificados PeriodEDPTer para \"SC-242 EDP 06\" edp. Modificados PeriodEDPTer para \"SC-242 EDP 07\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-242 EDP 08\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-242 EDP 09\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-242 EDP 10\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-242 EDP 11\" edp.',11,1),(41,'2016-09-25 17:34:01.172605','468','SC-249',2,'Modificados PeriodEDPTer para \"SC-249 EDP 01\" edp. Modificados PeriodEDPTer para \"SC-249 EDP 02\" edp. Modificados PeriodEDP, PeriodEDPTer, PresenEDP, AprobEDP y ObservEDP para \"SC-249 EDP 05\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-249 EDP 06\" edp.',11,1),(42,'2016-09-25 17:38:22.664043','470','SC-252',2,'Modificados PeriodEDPTer para \"SC-252 EDP 01\" edp. Modificados PeriodEDPTer para \"SC-252 EDP 02\" edp. Modificados PeriodEDPTer para \"SC-252 EDP 03\" edp. Modificados PeriodEDPTer para \"SC-252 EDP 04\" edp. Modificados PeriodEDPTer para \"SC-252 EDP 05\" edp. Modificados PeriodEDPTer para \"SC-252 EDP 06\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-252 EDP 07\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-252 EDP 08\" edp.',11,1),(43,'2016-09-25 17:42:40.924327','471','SC-253',2,'Modificados PeriodEDPTer para \"SC-253 EDP 01\" edp. Modificados PeriodEDPTer para \"SC-253 EDP 02\" edp. Modificados PeriodEDPTer para \"SC-253 EDP 03\" edp. Modificados PeriodEDPTer para \"SC-253 EDP 04\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-253 EDP 05\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-253 EDP 06\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-253 EDP 07\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-253 EDP 08\" edp.',11,1),(44,'2016-09-25 17:48:43.696886','472','SC-256',2,'Añadido/a \"SC-256 EDP 01\" edp.',11,1),(45,'2016-09-25 18:54:04.592822','473','SC-257',2,'Modificados PeriodEDP, PeriodEDPTer, PresenEDP y AprobEDP para \"SC-257 EDP 01\" edp.',11,1),(46,'2016-09-25 18:59:35.570959','474','SC-258',2,'Modificados PeriodEDPTer para \"SC-258 EDP 01\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-258 EDP 02\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-258 EDP 03\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-258 EDP 04\" edp.',11,1),(47,'2016-09-25 19:01:44.599005','475','SC-259',2,'Modificados PeriodEDP, PeriodEDPTer, PresenEDP y AprobEDP para \"SC-259 EDP 01\" edp.',11,1),(48,'2016-09-25 19:03:15.805471','477','SC-261',2,'Modificados PeriodEDPTer para \"SC-261 EDP 01\" edp. Modificados PeriodEDPTer para \"SC-261 EDP 02\" edp. Modificados PeriodEDPTer para \"SC-261 EDP 03\" edp. Modificados PeriodEDPTer para \"SC-261 EDP 04\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-261 EDP 05\" edp.',11,1),(49,'2016-09-25 19:06:31.267611','477','SC-261',2,'Modificados PresenEDP y AprobEDP para \"SC-261 EDP 02\" edp. Modificados PresenEDP y AprobEDP para \"SC-261 EDP 03\" edp. Modificados PresenEDP y AprobEDP para \"SC-261 EDP 04\" edp.',11,1),(50,'2016-09-25 19:09:02.638288','480','SC-264',2,'Modificados PeriodEDP, PeriodEDPTer, PresenEDP y AprobEDP para \"SC-264 EDP 01\" edp.',11,1),(51,'2016-09-25 19:16:43.012508','482','SC-266',2,'Modificados PeriodEDPTer para \"SC-266 EDP 01\" edp.',11,1),(52,'2016-09-25 19:17:20.273379','483','SC-267',2,'Modificado/a DescCtto.',11,1),(53,'2016-09-25 19:20:24.300011','493','SC-277',2,'Añadido/a \"SC-277 EDP 01\" edp.',11,1),(54,'2016-09-25 19:44:06.263076','582','OS2016-066',2,'Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"OS2016-066 EDP 01\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"OS2016-066 EDP 02\" edp.',11,1),(55,'2016-09-25 19:48:27.232347','577','OS2016-061',2,'Añadido/a \"OS2016-061 EDP 01\" edp.',11,1),(56,'2016-09-25 19:50:48.302840','577','OS2016-061',2,'Añadido/a \"OS2016-061 EDP 02\" edp. Modificados PresenEDP y AprobEDP para \"OS2016-061 EDP 01\" edp.',11,1),(57,'2016-09-25 19:51:20.382552','581','OS2016-065',2,'Modificado/a ObservCtto.',11,1),(58,'2016-09-25 19:51:20.384684','580','OS2016-064',2,'Modificado/a ObservCtto.',11,1),(59,'2016-09-25 19:51:20.387819','579','OS2016-063',2,'Modificado/a ObservCtto.',11,1),(60,'2016-09-25 19:59:17.268767','569','OS2016-053',2,'Añadido/a \"OS2016-053 EDP 01\" edp. Añadido/a \"OS2016-053 EDP 02\" edp. Añadido/a \"OS2016-053 EDP 03\" edp.',11,1),(61,'2016-09-25 20:16:17.260269','566','OS2016-050',2,'Añadido/a \"OS2016-050 EDP 01\" edp. Añadido/a \"OS2016-050 EDP 01\" edp.',11,1),(62,'2016-09-25 20:17:07.502010','575','OS2016-059',2,'Modificado/a ObservCtto.',11,1),(63,'2016-09-25 20:17:07.505910','574','OS2016-058',2,'Modificado/a ObservCtto.',11,1),(64,'2016-09-25 20:17:07.508967','570','OS2016-054',2,'Modificado/a ObservCtto.',11,1),(65,'2016-09-25 20:17:07.511715','568','OS2016-052',2,'Modificado/a ObservCtto.',11,1),(66,'2016-09-25 20:19:07.815114','565','OS2016-049',2,'Añadido/a \"OS2016-049 EDP 01\" edp.',11,1),(67,'2016-09-25 20:21:37.070963','555','OS2016-039',2,'Modificados PeriodEDP, PeriodEDPTer, Estado, PresenEDP y AprobEDP para \"OS2016-039 EDP 01\" edp.',11,1),(68,'2016-09-25 20:26:50.355178','554','OS2016-038',2,'Modificados PeriodEDP, PeriodEDPTer, Estado, PresenEDP y AprobEDP para \"OS2016-038 EDP 01\" edp. Modificados PeriodEDPTer, Estado, PresenEDP y AprobEDP para \"OS2016-038 EDP 02\" edp. Modificados PeriodEDPTer, Estado, PresenEDP y AprobEDP para \"OS2016-038 EDP 03\" edp.',11,1),(69,'2016-09-25 20:30:18.799010','553','OS2016-037',2,'Añadido/a \"OS2016-037 EDP 01\" edp. Añadido/a \"OS2016-037 EDP 02\" edp.',11,1),(70,'2016-09-25 20:30:43.950348','553','OS2016-037',2,'Modificado/a ObservCtto.',11,1),(71,'2016-09-25 20:30:48.542121','553','OS2016-037',2,'Modificado/a ObservCtto.',11,1),(72,'2016-09-25 20:32:40.523129','564','OS2016-048',2,'Modificado/a ObservCtto.',11,1),(73,'2016-09-25 20:32:40.526448','563','OS2016-047',2,'Modificado/a ObservCtto.',11,1),(74,'2016-09-25 20:32:40.528994','561','OS2016-045',2,'Modificado/a ObservCtto.',11,1),(75,'2016-09-25 20:32:40.532479','560','OS2016-044',2,'Modificado/a ObservCtto.',11,1),(76,'2016-09-25 20:32:40.534654','557','OS2016-041',2,'Modificado/a ObservCtto.',11,1),(77,'2016-09-25 20:33:27.548676','551','OS2016-035',2,'Modificado/a ObservCtto.',11,1),(78,'2016-09-25 20:37:50.868739','540','OS2016-024',2,'Añadido/a \"OS2016-024 EDP 01\" edp.',11,1),(79,'2016-09-25 20:39:29.346324','538','OS2016-022',2,'Modificado/a ObservCtto.',11,1),(80,'2016-09-25 20:44:33.569204','535','OS2016-019',2,'Modificados PeriodEDPTer y Estado para \"OS2016-019 EDP 01\" edp. Modificados PeriodEDPTer, Estado, PresenEDP y AprobEDP para \"OS2016-019 EDP 02\" edp. Modificados PeriodEDPTer, Estado, PresenEDP y AprobEDP para \"OS2016-019 EDP 03\" edp. Modificados PeriodEDPTer, Estado, PresenEDP y AprobEDP para \"OS2016-019 EDP 04\" edp.',11,1),(81,'2016-09-25 20:47:08.526919','526','OS2016-010',2,'Modificados PeriodEDP y PeriodEDPTer para \"OS2016-010 EDP 01\" edp. Modificados PeriodEDP y PeriodEDPTer para \"OS2016-010 EDP 02\" edp.',11,1),(82,'2016-09-25 20:48:23.554885','525','OS2016-009',2,'Modificados PeriodEDP y PeriodEDPTer para \"OS2016-009 EDP 01\" edp.',11,1),(83,'2016-09-25 20:57:29.713467','520','OS-2016-004',2,'Modificados PeriodEDPTer para \"OS-2016-004 EDP 01\" edp. Modificados PeriodEDPTer para \"OS-2016-004 EDP 02\" edp. Modificados PeriodEDPTer para \"OS-2016-004 EDP 03\" edp. Modificados PeriodEDPTer para \"OS-2016-004 EDP 04\" edp. Modificados PeriodEDPTer, Estado, PresenEDP y AprobEDP para \"OS-2016-004 EDP 05\" edp. Modificados PeriodEDPTer, Estado, PresenEDP y AprobEDP para \"OS-2016-004 EDP 06\" edp. Modificados PeriodEDPTer, Estado, PresenEDP y AprobEDP para \"OS-2016-004 EDP 07\" edp. Modificados PeriodEDPTer, Estado, PresenEDP y AprobEDP para \"OS-2016-004 EDP 08\" edp.',11,1),(84,'2016-09-25 21:00:19.151343','519','OS-2016-003',2,'Modificados PeriodEDPTer para \"OS-2016-003 EDP 01\" edp. Modificados PeriodEDPTer para \"OS-2016-003 EDP 02\" edp. Modificados PeriodEDPTer para \"OS-2016-003 EDP 03\" edp. Modificados PeriodEDPTer para \"OS-2016-003 EDP 04\" edp. Modificados PeriodEDPTer, Estado, PresenEDP y AprobEDP para \"OS-2016-003 EDP 05\" edp. Modificados PeriodEDPTer, Estado, PresenEDP y AprobEDP para \"OS-2016-003 EDP 06\" edp.',11,1),(85,'2016-09-25 21:03:00.209533','518','OS-2016-002',2,'Modificados PeriodEDPTer y Estado para \"OS-2016-002 EDP 01\" edp.',11,1),(86,'2016-09-25 21:09:22.021232','496','OS-2011-057',2,'Modificados PeriodEDP, PeriodEDPTer y ObservEDP para \"OS-2011-057 EDP 50\" edp. Modificados PeriodEDPTer para \"OS-2011-057 EDP 51\" edp. Modificados PeriodEDPTer para \"OS-2011-057 EDP 52\" edp. Modificados PeriodEDPTer para \"OS-2011-057 EDP 53\" edp. Modificados PeriodEDPTer para \"OS-2011-057 EDP 54\" edp. Modificados PeriodEDPTer para \"OS-2011-057 EDP 55\" edp. Modificados PeriodEDPTer para \"OS-2011-057 EDP 56\" edp. Modificados PeriodEDPTer y Estado para \"OS-2011-057 EDP 57\" edp. Modificados PeriodEDPTer, Estado, PresenEDP y AprobEDP para \"OS-2011-057 EDP 58\" edp. Modificados Estado, FactEDP, PresenEDP y AprobEDP para \"OS-2011-057 EDP 59\" edp. Modificados PeriodEDPTer, Estado, FactEDP, PresenEDP y AprobEDP para \"OS-2011-057 EDP 60\" edp.',11,1),(87,'2016-09-25 21:15:33.984658','508','OS-2011-036',2,'Modificado/a FechIniCtto. Modificados PeriodEDP y PeriodEDPTer para \"OS-2011-036 EDP 01\" edp. Modificados PeriodEDPTer para \"OS-2011-036 EDP 02\" edp. Modificados PeriodEDPTer para \"OS-2011-036 EDP 03\" edp. Modificados PeriodEDPTer para \"OS-2011-036 EDP 04\" edp. Modificados PeriodEDPTer y Estado para \"OS-2011-036 EDP 05\" edp. Modificados PeriodEDPTer, Estado, PresenEDP y AprobEDP para \"OS-2011-036 EDP 06\" edp. Modificados PeriodEDPTer, Estado, PresenEDP y AprobEDP para \"OS-2011-036 EDP 07\" edp. Modificados PeriodEDPTer, Estado, PresenEDP y AprobEDP para \"OS-2011-036 EDP 08\" edp.',11,1),(88,'2016-09-25 21:33:35.930318','601','SC-288',3,'',11,1),(89,'2016-09-25 21:55:19.121718','574','OS2016-058',2,'Añadido/a \"ODC 01\" odc.',11,1),(90,'2016-09-25 22:12:42.556489','562','OS2016-046',2,'Añadido/a \"ODC 01\" odc.',11,1),(91,'2016-09-25 22:19:34.871111','562','OS2016-046',2,'Añadido/a \"ODC 01\" odc. Modificados DescripODC para \"ODC 01\" odc.',11,1),(92,'2016-09-25 22:25:16.475552','512','CV-2016-001',2,'Modificados PeriodEDPTer para \"CV-2016-001 EDP 01\" edp. Modificados PeriodEDPTer para \"CV-2016-001 EDP 02\" edp. Modificados PeriodEDPTer para \"CV-2016-001 EDP 03\" edp. Modificados PeriodEDPTer para \"CV-2016-001 EDP 04\" edp. Modificados PeriodEDPTer, Estado, PresenEDP y AprobEDP para \"CV-2016-001 EDP 05\" edp. Modificados PeriodEDPTer, Estado, PresenEDP y AprobEDP para \"CV-2016-001 EDP 06\" edp. Modificados PeriodEDPTer, Estado, PresenEDP y AprobEDP para \"CV-2016-001 EDP 07\" edp. Modificados PeriodEDPTer, Estado, PresenEDP y AprobEDP para \"CV-2016-001 EDP 08\" edp.',11,1),(93,'2016-09-25 22:38:56.600659','563','OS2016-047',2,'Añadido/a \"ODC 01\" odc.',11,1),(94,'2016-09-25 22:44:12.178950','538','OS2016-022',2,'Añadido/a \"ODC 01\" odc.',11,1),(95,'2016-09-25 23:02:05.559212','600','OS2016-082',2,'Modificado/a EstCtto.',11,1),(96,'2016-09-25 23:02:05.563910','599','OS2016-081',2,'Modificado/a EstCtto.',11,1),(97,'2016-09-26 00:01:39.717868','461','SC-237',2,'Modificados FechT_ODC para \"ODC 02\" odc.',11,1),(98,'2016-09-26 00:02:10.371414','453','SC-216',2,'Modificados FechT_ODC para \"ODC 03\" odc.',11,1),(99,'2016-09-26 00:07:17.889891','483','SC-267',2,'Modificado/a FechIniCtto y FechTerCtto.',11,1),(100,'2016-09-26 00:07:28.120901','484','SC-268',2,'No ha cambiado ningún campo.',11,1),(101,'2016-09-26 00:07:50.423370','484','SC-268',2,'Modificado/a FechIniCtto y FechTerCtto.',11,1),(102,'2016-09-26 00:08:10.620216','484','SC-268',2,'Modificado/a FechTerCtto.',11,1),(103,'2016-09-26 00:10:47.201500','496','OS-2011-057',2,'Modificados FechT_ODC para \"ODC 05\" odc.',11,1),(104,'2016-09-26 00:13:15.161042','520','OS-2016-004',2,'Modificados FechT_ODC para \"ODC 02\" odc.',11,1),(105,'2016-09-26 00:15:27.185906','520','OS-2016-004',2,'Añadido/a \"ODC 02\" odc. Modificados NumODC, FechT_ODC y ValorODC para \"ODC 01\" odc.',11,1),(106,'2016-09-26 00:17:25.618925','554','OS2016-038',2,'Modificado/a FechTerCtto.',11,1),(107,'2016-09-28 01:20:25.244424','5','CAD',2,'Modificado/a ValorMoneda y FechMoneda.',14,1),(108,'2016-09-28 01:20:50.082120','4','EUR',2,'Modificado/a ValorMoneda y FechMoneda.',14,1),(109,'2016-09-28 01:21:27.794391','2','UF',2,'Modificado/a FechMoneda.',14,1),(110,'2016-09-28 08:34:41.014206','482','SC-266',2,'Añadido/a \"SC-266 EDP 02\" edp. Modificados PeriodEDPTer y Estado para \"SC-266 EDP 01\" edp.',11,1),(111,'2016-09-29 02:38:39.472211','496','OS-2011-057',2,'Modificados PeriodEDPTer para \"OS-2011-057 EDP 59\" edp.',11,1),(112,'2016-10-01 13:49:38.515757','569','OS2016-053',2,'Modificados FactEDP para \"OS2016-053 EDP 03\" edp.',11,1),(113,'2016-10-01 14:07:42.440357','551','OS2016-035',2,'Añadido/a \"OS2016-035 EDP 01\" edp. Añadido/a \"OS2016-035 EDP 02\" edp. Añadido/a \"OS2016-035 EDP 03\" edp.',11,1),(114,'2016-10-01 14:10:28.103164','470','SC-252',2,'Añadido/a \"SC-252 EDP 08\" edp. Modificados Estado para \"SC-252 EDP 08\" edp.',11,1),(115,'2016-10-01 14:14:40.480183','470','SC-252',2,'Modificados PresenEDP y AprobEDP para \"SC-252 EDP 01\" edp. Modificados PresenEDP y AprobEDP para \"SC-252 EDP 02\" edp. Modificados PresenEDP y AprobEDP para \"SC-252 EDP 03\" edp. Modificados PresenEDP y AprobEDP para \"SC-252 EDP 04\" edp. Modificados PresenEDP y AprobEDP para \"SC-252 EDP 05\" edp. Modificados Estado, PresenEDP y AprobEDP para \"SC-252 EDP 06\" edp. Modificados Estado para \"SC-252 EDP 07\" edp. Modificados PresenEDP y AprobEDP para \"SC-252 EDP 08\" edp.',11,1),(116,'2016-10-01 14:22:38.214052','479','SC-263',2,'Añadido/a \"SC-263 EDP 01\" edp.',11,1),(117,'2016-10-01 14:33:11.337519','574','OS2016-058',2,'Añadido/a \"OS2016-058 EDP 01\" edp.',11,1),(118,'2016-10-01 14:37:34.891940','474','SC-258',2,'Añadido/a \"SC-258 EDP 05\" edp.',11,1),(119,'2016-10-01 14:40:28.325636','476','SC-260',2,'Añadido/a \"SC-260 EDP 01\" edp.',11,1),(120,'2016-10-01 14:48:35.838449','594','OS2016-078',2,'Añadido/a \"OS2016-078 EDP 01\" edp. Añadido/a \"OS2016-078 EDP 02\" edp. Añadido/a \"OS2016-078 EDP 03\" edp.',11,1),(121,'2016-10-01 14:51:12.217446','561','OS2016-045',2,'Añadido/a \"ODC 01\" odc.',11,1),(122,'2016-10-01 14:52:31.689592','561','OS2016-045',2,'Modificados FechSolOdc y FechAppOdc para \"ODC 01\" odc.',11,1),(123,'2016-10-01 16:43:16.316013','493','SC-277',2,'Modificados PeriodEDPTer, PersNoLocal, PersHombres, PersMujeres y PersHHTotales para \"SC-277 EDP 01\" edp.',11,1),(124,'2016-10-08 18:36:03.383238','554','OS2016-038',2,'Añadido/a \"OS2016-038 EDP 01\" edp.',11,1),(125,'2016-10-08 18:45:13.891731','467','SC-248',2,'Añadido/a \"SC-248 EDP 07\" edp. Modificados PeriodEDPTer, PresenEDP y AprobEDP para \"SC-248 EDP 06\" edp.',11,1),(126,'2016-10-08 18:52:16.193748','463','SC-242',2,'Añadido/a \"SC-242 EDP 12\" edp. Modificados Estado y FactEDP para \"SC-242 EDP 11\" edp.',11,1),(127,'2016-10-08 19:01:52.764796','557','OS2016-041',2,'Añadido/a \"OS2016-041 EDP 01\" edp. Añadido/a \"OS2016-041 EDP 02\" edp.',11,1),(128,'2016-10-08 19:08:25.993697','492','SC-276',2,'Añadido/a \"SC-276 EDP 01\" edp.',11,1),(129,'2016-10-08 19:18:43.085739','492','SC-276',2,'No ha cambiado ningún campo.',11,1),(130,'2016-10-08 19:59:46.585398','483','SC-267',2,'Añadido/a \"SC-267 EDP 02\" edp. Añadido/a \"SC-267 EDP 03\" edp. Modificados PeriodEDP, PeriodEDPTer y FactEDP para \"SC-267 EDP 01\" edp.',11,1),(131,'2016-10-08 20:13:49.821120','484','SC-268',2,'Añadido/a \"SC-268 EDP 02\" edp. Añadido/a \"SC-268 EDP 03\" edp.',11,1),(132,'2016-10-08 23:28:26.588434','1','Question object',1,'Añadido.',16,1),(133,'2016-10-08 23:31:13.953990','2','Question object',1,'Añadido.',16,1),(134,'2016-10-08 23:32:57.087329','3','Question object',1,'Añadido.',16,1),(135,'2016-10-08 23:33:28.588399','4','Question object',1,'Añadido.',16,1),(136,'2016-10-08 23:34:02.286810','5','Question object',1,'Añadido.',16,1),(137,'2016-10-08 23:34:38.311249','6','Question object',1,'Añadido.',16,1),(138,'2016-10-08 23:35:45.846814','2','Alejandro',1,'Añadido.',4,1),(139,'2016-10-08 23:35:53.198842','6','Question object',2,'Modificado/a author.',16,1),(140,'2016-10-08 23:36:21.744742','7','Question object',1,'Añadido.',16,1),(141,'2016-10-08 23:38:35.225885','8','Question object',1,'Añadido.',16,1),(142,'2016-10-08 23:45:43.006098','9','Question object',1,'Añadido.',16,1),(143,'2016-10-08 23:46:01.570210','9','Question object',2,'No ha cambiado ningún campo.',16,1),(144,'2016-10-08 23:46:30.009809','10','Question object',1,'Añadido.',16,1),(145,'2016-10-08 23:47:50.327714','11','Question object',1,'Añadido.',16,1),(146,'2016-10-08 23:49:01.472432','12','Question object',1,'Añadido.',16,1),(147,'2016-10-08 23:49:12.933479','12','Question object',2,'Modificado/a author.',16,1),(148,'2016-10-08 23:49:18.482983','12','Question object',2,'Modificado/a author.',16,1),(149,'2016-10-08 23:49:24.388215','11','Question object',2,'No ha cambiado ningún campo.',16,1),(150,'2016-10-08 23:49:44.647749','13','Question object',1,'Añadido.',16,1),(151,'2016-10-08 23:50:45.041389','14','Question object',1,'Añadido.',16,1),(152,'2016-10-08 23:52:02.906020','15','Question object',1,'Añadido.',16,1),(153,'2016-10-08 23:53:07.681135','16','Question object',1,'Añadido.',16,1),(154,'2016-10-08 23:56:13.933268','17','Question object',1,'Añadido.',16,1),(155,'2016-10-08 23:57:30.643081','18','Question object',1,'Añadido.',16,1),(156,'2016-10-08 23:58:28.358880','19','Question object',1,'Añadido.',16,1),(157,'2016-10-09 00:05:46.592062','20','Question object',1,'Añadido.',16,1),(158,'2016-10-09 00:09:02.230004','21','Question object',1,'Añadido.',16,1),(159,'2016-10-09 00:23:23.009597','22','Question object',1,'Añadido.',16,1),(160,'2016-10-09 00:35:40.696908','23','Question object',1,'Añadido.',16,1),(161,'2016-10-09 00:43:30.610301','3','Alejandro2',1,'Añadido.',4,1),(162,'2016-10-09 00:45:05.135551','2','Alejandro',2,'Modificado/a is_staff.',4,1),(163,'2016-10-09 00:47:27.492265','2','Alejandro',2,'Modificado/a user_permissions.',4,1),(164,'2016-10-09 00:48:25.275104','24','Question object',1,'Añadido.',16,2),(165,'2016-10-09 01:55:02.119206','25','Question object',1,'Añadido.',16,2),(166,'2016-10-09 01:55:25.536538','25','Question object',2,'Modificado/a slug.',16,2),(167,'2016-10-09 01:55:41.471330','25','Question object',2,'No ha cambiado ningún campo.',16,2),(168,'2016-10-09 02:23:45.487346','26','Question object',1,'Añadido.',16,2),(169,'2016-10-09 02:24:03.857544','26','Question object',2,'No ha cambiado ningún campo.',16,2),(170,'2016-10-09 02:24:53.582572','26','Question object',2,'No ha cambiado ningún campo.',16,2),(171,'2016-10-09 02:25:05.293724','26','Question object',2,'Modificado/a slug.',16,2),(172,'2016-10-09 02:25:27.015717','26','Question object',2,'Modificado/a pub_date.',16,2),(173,'2016-10-09 02:33:43.253395','26','Question object',2,'No ha cambiado ningún campo.',16,2),(174,'2016-10-09 10:32:29.701092','5','CAD',2,'Modificado/a ValorMoneda y FechMoneda.',14,1),(175,'2016-10-09 10:32:54.660282','4','EUR',2,'Modificado/a ValorMoneda y FechMoneda.',14,1),(176,'2016-10-09 10:33:31.032269','2','UF',2,'Modificado/a FechMoneda.',14,1),(177,'2016-10-09 11:59:37.743067','530','OS2016-014',2,'Modificado/a NumCtto.',11,1),(178,'2016-10-09 11:59:52.346536','534','OS2016-018',2,'Modificado/a NumCtto.',11,1),(179,'2016-10-09 12:00:15.256017','533','OS2016-017',2,'Modificado/a NumCtto.',11,1),(180,'2016-10-09 12:00:27.675146','532','OS2016-016',2,'Modificado/a NumCtto.',11,1),(181,'2016-10-09 12:00:37.031809','531','OS2016-015',2,'Modificado/a NumCtto.',11,1),(182,'2016-10-09 12:05:34.526626','520','OS2016-004',2,'Modificado/a NumCtto.',11,1),(183,'2016-10-09 12:05:47.780476','518','OS2016-002',2,'Modificado/a NumCtto.',11,1),(184,'2016-10-09 12:05:57.867178','519','OS2016-003',2,'Modificado/a NumCtto.',11,1),(185,'2016-10-09 12:06:10.743075','511','OS2013-111',2,'Modificado/a NumCtto.',11,1),(186,'2016-10-09 12:06:18.428981','510','OS2012-102',2,'Modificado/a NumCtto.',11,1),(187,'2016-10-09 12:06:28.044488','509','OS2011-055',2,'Modificado/a NumCtto.',11,1),(188,'2016-10-09 12:06:35.113068','508','OS2011-036',2,'Modificado/a NumCtto.',11,1),(189,'2016-10-09 12:06:41.718086','507','OS2010-023',2,'Modificado/a NumCtto.',11,1),(190,'2016-10-09 12:06:49.366053','506','OS2015-183',2,'Modificado/a NumCtto.',11,1),(191,'2016-10-09 12:06:56.183514','505','OS2015-175',2,'Modificado/a NumCtto.',11,1),(192,'2016-10-09 12:07:01.607052','504','OS2015-065',2,'Modificado/a NumCtto.',11,1),(193,'2016-10-09 12:07:07.796199','503','OS2014-170',2,'Modificado/a NumCtto.',11,1),(194,'2016-10-09 12:07:14.485623','502','OS2014-168',2,'Modificado/a NumCtto.',11,1),(195,'2016-10-09 12:07:20.668365','501','OS2013-144',2,'Modificado/a NumCtto.',11,1),(196,'2016-10-09 12:07:27.091973','500','OS2013-131',2,'Modificado/a NumCtto.',11,1),(197,'2016-10-09 12:07:32.795458','499','OS2013-125',2,'Modificado/a NumCtto.',11,1),(198,'2016-10-09 12:07:39.302512','498','OS2013-078',2,'Modificado/a NumCtto.',11,1),(199,'2016-10-09 12:07:45.170834','497','OS2012-065',2,'Modificado/a NumCtto.',11,1),(200,'2016-10-09 12:07:51.727913','496','OS2011-057',2,'Modificado/a NumCtto.',11,1),(201,'2016-10-09 12:07:57.881644','495','OS2010-010',2,'Modificado/a NumCtto.',11,1),(202,'2016-10-09 22:31:10.161984','520','OS2016-004',2,'Modificados ValorODC y ObservOdc para \"ODC 01\" odc.',11,1),(203,'2016-10-09 22:31:29.319249','520','OS2016-004',2,'No ha cambiado ningún campo.',11,1),(204,'2016-10-09 22:32:19.680397','512','CV2016-001',2,'Modificado/a NumCtto.',11,1),(205,'2016-10-10 02:14:13.243640','492','SC-276',2,'Modificado/a ValorCtto.',11,1),(206,'2016-10-10 02:40:04.243239','597','SC-278',2,'Modificado/a LocalCtto.',11,1),(207,'2016-10-10 02:40:44.047069','515','OCM2016-03',2,'Modificado/a LocalCtto.',11,1),(208,'2016-10-10 03:55:33.889892','26','Question object',3,'',16,1),(209,'2016-10-10 03:55:33.901913','25','Question object',3,'',16,1),(210,'2016-10-10 03:55:33.903097','24','Question object',3,'',16,1),(211,'2016-10-10 03:55:33.904090','23','Question object',3,'',16,1),(212,'2016-10-10 03:55:33.905090','22','Question object',3,'',16,1),(213,'2016-10-10 03:55:33.906058','21','Question object',3,'',16,1),(214,'2016-10-10 03:55:33.906907','20','Question object',3,'',16,1),(215,'2016-10-10 03:55:33.907706','19','Question object',3,'',16,1),(216,'2016-10-10 03:55:33.908544','18','Question object',3,'',16,1),(217,'2016-10-10 03:55:33.909495','17','Question object',3,'',16,1),(218,'2016-10-10 03:55:33.910450','16','Question object',3,'',16,1),(219,'2016-10-10 03:55:33.911396','15','Question object',3,'',16,1),(220,'2016-10-10 03:55:33.912251','14','Question object',3,'',16,1),(221,'2016-10-10 03:55:33.913261','13','Question object',3,'',16,1),(222,'2016-10-10 03:55:33.914076','12','Question object',3,'',16,1),(223,'2016-10-10 03:55:33.914909','11','Question object',3,'',16,1),(224,'2016-10-10 03:55:33.915760','10','Question object',3,'',16,1),(225,'2016-10-10 03:55:33.916547','9','Question object',3,'',16,1),(226,'2016-10-10 03:55:33.917333','8','Question object',3,'',16,1),(227,'2016-10-10 03:55:33.918068','7','Question object',3,'',16,1),(228,'2016-10-10 03:55:33.918821','6','Question object',3,'',16,1),(229,'2016-10-10 03:55:33.919565','5','Question object',3,'',16,1),(230,'2016-10-10 04:01:17.470835','27','Question object',1,'Añadido.',16,1),(231,'2016-10-10 04:01:29.624211','27','Question object',2,'Modificado/a status.',16,1),(232,'2016-10-10 04:03:24.894563','28','Question object',1,'Añadido.',16,1),(233,'2016-10-10 04:09:11.786726','598','SC-279',2,'No ha cambiado ningún campo.',11,1),(234,'2016-10-10 04:09:24.555622','597','SC-278',2,'No ha cambiado ningún campo.',11,1),(235,'2016-10-10 04:09:34.204591','515','OCM2016-03',2,'Modificado/a LocalCtto.',11,1),(236,'2016-10-10 04:09:44.736676','514','OCM2016-02',2,'Modificado/a LocalCtto.',11,1),(237,'2016-10-10 04:10:03.486646','494','C-010',2,'Modificado/a LocalCtto.',11,1),(238,'2016-10-10 04:10:17.712194','493','SC-277',2,'Modificado/a LocalCtto.',11,1),(239,'2016-10-10 04:10:29.028083','492','SC-276',2,'Modificado/a LocalCtto.',11,1),(240,'2016-10-10 04:10:40.216821','491','SC-275',2,'Modificado/a LocalCtto.',11,1),(241,'2016-10-10 04:10:52.261210','490','SC-274',2,'Modificado/a LocalCtto.',11,1),(242,'2016-10-10 04:11:12.401522','489','SC-273',2,'Modificado/a LocalCtto.',11,1),(243,'2016-10-10 04:11:21.602303','488','SC-272',2,'Modificado/a LocalCtto.',11,1),(244,'2016-10-10 04:11:31.200996','487','SC-271',2,'Modificado/a LocalCtto.',11,1),(245,'2016-10-10 04:11:47.708804','486','SC-270',2,'Modificado/a LocalCtto.',11,1),(246,'2016-10-10 04:11:57.416222','486','SC-270',2,'No ha cambiado ningún campo.',11,1),(247,'2016-10-10 04:12:07.210752','485','SC-269',2,'Modificado/a LocalCtto.',11,1),(248,'2016-10-10 04:12:18.284424','484','SC-268',2,'Modificado/a LocalCtto.',11,1),(249,'2016-10-10 04:12:27.073394','483','SC-267',2,'Modificado/a LocalCtto.',11,1),(250,'2016-10-10 04:12:43.237709','482','SC-266',2,'Modificado/a LocalCtto.',11,1),(251,'2016-10-10 04:13:02.590377','481','SC-265',2,'Modificado/a LocalCtto.',11,1),(252,'2016-10-10 04:13:09.966251','480','SC-264',2,'Modificado/a LocalCtto.',11,1),(253,'2016-10-10 04:13:22.974537','479','SC-263',2,'Modificado/a LocalCtto.',11,1),(254,'2016-10-10 04:13:40.684618','478','SC-262',2,'Modificado/a LocalCtto.',11,1),(255,'2016-10-10 04:13:49.232179','477','SC-261',2,'Modificado/a LocalCtto.',11,1),(256,'2016-10-10 04:13:57.744521','476','SC-260',2,'Modificado/a LocalCtto.',11,1),(257,'2016-10-10 04:14:25.484387','475','SC-259',2,'Modificado/a LocalCtto.',11,1),(258,'2016-10-10 04:14:39.025336','474','SC-258',2,'Modificado/a LocalCtto.',11,1),(259,'2016-10-10 04:14:49.460548','473','SC-257',2,'Modificado/a LocalCtto.',11,1),(260,'2016-10-10 04:14:58.316841','472','SC-256',2,'Modificado/a LocalCtto.',11,1),(261,'2016-10-10 04:15:13.696760','471','SC-253',2,'Modificado/a LocalCtto.',11,1),(262,'2016-10-10 04:15:22.775932','470','SC-252',2,'Modificado/a LocalCtto.',11,1),(263,'2016-10-10 04:15:38.120787','469','SC-250',2,'Modificado/a LocalCtto.',11,1),(264,'2016-10-10 04:16:00.179240','468','SC-249',2,'Modificado/a LocalCtto.',11,1),(265,'2016-10-10 04:16:10.740415','467','SC-248',2,'Modificado/a LocalCtto.',11,1),(266,'2016-10-10 04:16:23.053667','466','SC-247',2,'Modificado/a LocalCtto.',11,1),(267,'2016-10-10 04:16:34.391738','465','SC-245',2,'Modificado/a LocalCtto.',11,1),(268,'2016-10-10 04:16:53.634804','464','SC-244',2,'Modificado/a LocalCtto.',11,1),(269,'2016-10-10 04:17:05.589249','463','SC-242',2,'Modificado/a LocalCtto.',11,1),(270,'2016-10-10 04:17:17.811759','462','SC-241',2,'Modificado/a LocalCtto.',11,1),(271,'2016-10-10 04:17:30.720847','461','SC-237',2,'Modificado/a LocalCtto.',11,1),(272,'2016-10-10 04:17:38.790211','460','SC-235',2,'Modificado/a LocalCtto.',11,1),(273,'2016-10-10 04:17:50.310509','459','SC-233',2,'Modificado/a LocalCtto.',11,1),(274,'2016-10-10 04:18:00.720288','457','SC-228',2,'Modificado/a LocalCtto.',11,1),(275,'2016-10-10 04:18:18.184391','456','SC-224',2,'Modificado/a LocalCtto.',11,1),(276,'2016-10-10 04:18:26.079980','455','SC-222',2,'Modificado/a LocalCtto.',11,1),(277,'2016-10-10 04:18:33.879098','454','SC-220',2,'Modificado/a LocalCtto.',11,1),(278,'2016-10-10 04:18:48.110813','453','SC-216',2,'Modificado/a LocalCtto.',11,1),(279,'2016-10-10 04:19:00.799165','452','SC-215',2,'Modificado/a LocalCtto.',11,1),(280,'2016-10-10 04:19:11.790380','451','SC-214',2,'Modificado/a LocalCtto.',11,1),(281,'2016-10-10 04:19:22.736537','451','SC-214',2,'No ha cambiado ningún campo.',11,1),(282,'2016-10-10 04:19:30.779687','450','SC-207',2,'Modificado/a LocalCtto.',11,1),(283,'2016-10-10 04:19:39.816475','448','SC-104',2,'Modificado/a LocalCtto.',11,1),(284,'2016-10-10 04:19:53.965810','512','CV2016-001',2,'Modificado/a LocalCtto.',11,1),(285,'2016-10-10 04:20:22.331443','513','OC (NXXXX)',2,'Modificado/a LocalCtto.',11,1),(286,'2016-10-10 04:20:46.793766','600','OS2016-082',2,'Modificado/a LocalCtto.',11,1),(287,'2016-10-10 04:20:56.062265','599','OS2016-081',2,'Modificado/a LocalCtto.',11,1),(288,'2016-10-10 04:21:07.197043','596','OS2016-080',2,'Modificado/a LocalCtto.',11,1),(289,'2016-10-10 04:21:17.436928','595','OS2016-079',2,'Modificado/a LocalCtto.',11,1),(290,'2016-10-10 04:21:26.867338','594','OS2016-078',2,'Modificado/a LocalCtto.',11,1),(291,'2016-10-10 04:21:37.846511','593','OS2016-077',2,'Modificado/a LocalCtto.',11,1),(292,'2016-10-10 04:21:48.464077','592','OS2016-076',2,'Modificado/a LocalCtto.',11,1),(293,'2016-10-10 04:22:05.120277','591','OS2016-075',2,'Modificado/a LocalCtto.',11,1),(294,'2016-10-10 04:22:17.630305','590','OS2016-074',2,'Modificado/a LocalCtto.',11,1),(295,'2016-10-10 04:22:26.837556','589','OS2016-073',2,'Modificado/a LocalCtto.',11,1),(296,'2016-10-10 04:22:39.530729','588','OS2016-072',2,'Modificado/a LocalCtto.',11,1),(297,'2016-10-10 04:22:49.446927','587','OS2016-071',2,'Modificado/a LocalCtto.',11,1),(298,'2016-10-10 04:23:00.834735','586','OS2016-070',2,'Modificado/a LocalCtto.',11,1),(299,'2016-10-10 04:23:13.025157','585','OS2016-069',2,'Modificado/a LocalCtto.',11,1),(300,'2016-10-10 04:23:26.523289','584','OS2016-068',2,'Modificado/a LocalCtto.',11,1),(301,'2016-10-10 04:23:34.982620','583','OS2016-067',2,'Modificado/a LocalCtto.',11,1),(302,'2016-10-10 04:23:46.599053','581','OS2016-065',2,'Modificado/a LocalCtto.',11,1),(303,'2016-10-10 04:24:10.790325','582','OS2016-066',2,'Modificado/a LocalCtto.',11,1),(304,'2016-10-10 04:24:29.831690','580','OS2016-064',2,'Modificado/a LocalCtto.',11,1),(305,'2016-10-10 04:24:37.562425','579','OS2016-063',2,'Modificado/a LocalCtto.',11,1),(306,'2016-10-10 04:24:51.185325','578','OS2016-062',2,'Modificado/a LocalCtto.',11,1),(307,'2016-10-10 04:25:05.270338','577','OS2016-061',2,'Modificado/a LocalCtto.',11,1),(308,'2016-10-10 04:25:12.925866','575','OS2016-059',2,'Modificado/a LocalCtto.',11,1),(309,'2016-10-10 04:25:24.217137','574','OS2016-058',2,'Modificado/a LocalCtto.',11,1),(310,'2016-10-10 04:25:32.673421','573','OS2016-057',2,'Modificado/a LocalCtto.',11,1),(311,'2016-10-10 04:25:47.076194','572','OS2016-056',2,'Modificado/a LocalCtto.',11,1),(312,'2016-10-10 04:25:58.375051','571','OS2016-055',2,'Modificado/a LocalCtto.',11,1),(313,'2016-10-10 04:26:13.527972','570','OS2016-054',2,'Modificado/a LocalCtto.',11,1),(314,'2016-10-10 04:26:38.748347','569','OS2016-053',2,'Modificado/a LocalCtto.',11,1),(315,'2016-10-10 04:26:48.933723','568','OS2016-052',2,'Modificado/a LocalCtto.',11,1),(316,'2016-10-10 04:26:59.365318','567','OS2016-051',2,'Modificado/a LocalCtto.',11,1),(317,'2016-10-10 04:27:09.416735','566','OS2016-050',2,'Modificado/a LocalCtto.',11,1),(318,'2016-10-10 04:27:16.014574','565','OS2016-049',2,'Modificado/a LocalCtto.',11,1),(319,'2016-10-10 04:27:23.604879','563','OS2016-047',2,'Modificado/a LocalCtto.',11,1),(320,'2016-10-10 04:27:36.854519','562','OS2016-046',2,'Modificado/a LocalCtto.',11,1),(321,'2016-10-10 04:27:47.568183','561','OS2016-045',2,'Modificado/a LocalCtto.',11,1),(322,'2016-10-10 04:28:02.274921','560','OS2016-044',2,'Modificado/a LocalCtto.',11,1),(323,'2016-10-10 04:28:13.322755','559','OS2016-043',2,'Modificado/a LocalCtto.',11,1),(324,'2016-10-10 04:28:19.254272','558','OS2016-042',2,'Modificado/a LocalCtto.',11,1),(325,'2016-10-10 04:28:32.232327','557','OS2016-041',2,'Modificado/a LocalCtto.',11,1),(326,'2016-10-10 04:28:39.486682','556','OS2016-040',2,'Modificado/a LocalCtto.',11,1),(327,'2016-10-10 04:28:53.636469','555','OS2016-039',2,'Modificado/a LocalCtto.',11,1),(328,'2016-10-10 04:29:19.209153','551','OS2016-035',2,'Modificado/a LocalCtto.',11,1),(329,'2016-10-10 04:29:29.489864','550','OS2016-034',2,'Modificado/a LocalCtto.',11,1),(330,'2016-10-10 04:29:36.964142','549','OS2016-033',2,'Modificado/a LocalCtto.',11,1),(331,'2016-10-10 04:29:49.718559','548','OS2016-032',2,'Modificado/a LocalCtto.',11,1),(332,'2016-10-10 04:30:00.173062','547','OS2016-031',2,'Modificado/a LocalCtto.',11,1),(333,'2016-10-10 04:30:11.567998','545','OS2016-029',2,'Modificado/a LocalCtto.',11,1),(334,'2016-10-10 04:30:21.100817','542','OS2016-026',2,'Modificado/a LocalCtto.',11,1),(335,'2016-10-10 04:30:34.336573','541','OS2016-025',2,'Modificado/a LocalCtto.',11,1),(336,'2016-10-10 04:30:47.243505','540','OS2016-024',2,'Modificado/a LocalCtto.',11,1),(337,'2016-10-10 04:31:01.166968','538','OS2016-022',2,'Modificado/a LocalCtto.',11,1),(338,'2016-10-10 04:31:08.661533','537','OS2016-021',2,'Modificado/a LocalCtto.',11,1),(339,'2016-10-10 04:31:17.035235','536','OS2016-020',2,'Modificado/a LocalCtto.',11,1),(340,'2016-10-10 04:31:27.726028','535','OS2016-019',2,'Modificado/a LocalCtto.',11,1),(341,'2016-10-10 04:31:34.480092','533','OS2016-017',2,'Modificado/a LocalCtto.',11,1),(342,'2016-10-10 04:31:45.547460','532','OS2016-016',2,'Modificado/a LocalCtto.',11,1),(343,'2016-10-10 04:31:53.572984','531','OS2016-015',2,'Modificado/a LocalCtto.',11,1),(344,'2016-10-10 04:32:02.488963','529','OS2016-013',2,'Modificado/a LocalCtto.',11,1),(345,'2016-10-10 04:32:11.226795','528','OS2016-012',2,'Modificado/a LocalCtto.',11,1),(346,'2016-10-10 04:32:27.742114','527','OS2016-011',2,'Modificado/a LocalCtto.',11,1),(347,'2016-10-10 04:32:37.207445','526','OS2016-010',2,'Modificado/a LocalCtto.',11,1),(348,'2016-10-10 04:32:49.090576','525','OS2016-009',2,'Modificado/a LocalCtto.',11,1),(349,'2016-10-10 04:33:05.890354','524','OS2016-008',2,'Modificado/a LocalCtto.',11,1),(350,'2016-10-10 04:33:11.945467','521','OS2016-005',2,'Modificado/a LocalCtto.',11,1),(351,'2016-10-10 04:33:19.236268','520','OS2016-004',2,'Modificado/a LocalCtto.',11,1),(352,'2016-10-10 04:33:28.421310','519','OS2016-003',2,'Modificado/a LocalCtto.',11,1),(353,'2016-10-10 04:33:36.563103','518','OS2016-002',2,'Modificado/a LocalCtto.',11,1),(354,'2016-10-10 04:33:43.630028','517','OS2016-001',2,'Modificado/a LocalCtto.',11,1),(355,'2016-10-10 04:33:52.831772','516','OCM2016-01',2,'Modificado/a LocalCtto.',11,1),(356,'2016-10-10 04:34:01.429674','511','OS2013-111',2,'Modificado/a LocalCtto.',11,1),(357,'2016-10-10 04:34:07.032309','510','OS2012-102',2,'Modificado/a LocalCtto.',11,1),(358,'2016-10-10 04:34:20.052988','509','OS2011-055',2,'Modificado/a LocalCtto.',11,1),(359,'2016-10-10 04:34:27.860193','508','OS2011-036',2,'Modificado/a LocalCtto.',11,1),(360,'2016-10-10 04:34:34.481165','507','OS2010-023',2,'Modificado/a LocalCtto.',11,1),(361,'2016-10-10 04:34:42.042762','506','OS2015-183',2,'Modificado/a LocalCtto.',11,1),(362,'2016-10-10 04:34:56.845159','505','OS2015-175',2,'Modificado/a LocalCtto.',11,1),(363,'2016-10-10 04:35:05.873584','504','OS2015-065',2,'Modificado/a LocalCtto.',11,1),(364,'2016-10-10 04:35:11.825057','503','OS2014-170',2,'Modificado/a LocalCtto.',11,1),(365,'2016-10-10 04:35:22.838669','502','OS2014-168',2,'Modificado/a LocalCtto.',11,1),(366,'2016-10-10 04:35:49.694830','501','OS2013-144',2,'Modificado/a LocalCtto.',11,1),(367,'2016-10-10 04:35:56.083498','500','OS2013-131',2,'Modificado/a LocalCtto.',11,1),(368,'2016-10-10 04:36:20.495795','499','OS2013-125',2,'Modificado/a LocalCtto.',11,1),(369,'2016-10-10 04:36:40.399930','498','OS2013-078',2,'Modificado/a LocalCtto.',11,1),(370,'2016-10-10 04:36:50.926099','497','OS2012-065',2,'Modificado/a LocalCtto.',11,1),(371,'2016-10-10 04:36:58.627374','496','OS2011-057',2,'Modificado/a LocalCtto.',11,1),(372,'2016-10-10 04:37:06.291956','495','OS2010-010',2,'Modificado/a LocalCtto.',11,1),(373,'2016-10-16 19:21:12.034665','554','OS2016-038',2,'Modificado/a LocalCtto. Modificados NumEDP para \"OS2016-038 EDP 04\" edp.',11,1),(374,'2016-10-16 19:23:11.161372','467','SC-248',2,'Modificados ObservEDP para \"SC-248 EDP 07\" edp.',11,1),(375,'2016-10-16 19:27:58.006570','605','<NAME>',1,'Añadido.',10,1),(376,'2016-10-16 19:30:43.776868','601','OS2016-083',1,'Añadido.',11,1),(377,'2016-10-16 19:48:33.766142','574','OS2016-058',2,'Añadido/a \"OS2016-058 EDP 02\" edp.',11,1),(378,'2016-10-16 19:53:03.275832','454','SC-220',2,'Añadido/a \"SC-220 EDP 21\" edp.',11,1),(379,'2016-10-16 19:54:43.463631','593','OS2016-077',2,'Añadido/a \"OS2016-077 EDP 01\" edp.',11,1),(380,'2016-10-16 19:55:34.132189','593','OS2016-077',2,'Modificados Estado, PresenEDP y AprobEDP para \"OS2016-077 EDP 01\" edp.',11,1),(381,'2016-10-16 19:59:06.377691','589','OS2016-073',2,'Añadido/a \"ODC 01\" odc.',11,1),(382,'2016-10-16 20:03:21.252261','589','OS2016-073',2,'Modificado/a FechTerCtto. Añadido/a \"OS2016-073 EDP 01\" edp.',11,1),(383,'2016-10-16 20:06:54.587277','563','OS2016-047',2,'Añadido/a \"OS2016-047 EDP 01\" edp.',11,1),(384,'2016-10-16 20:08:28.123363','563','OS2016-047',2,'Añadido/a \"OS2016-047 EDP 02\" edp.',11,1),(385,'2016-10-16 20:13:11.973094','473','SC-257',2,'Añadido/a \"SC-257 EDP 02\" edp. Añadido/a \"SC-257 EDP 03\" edp.',11,1),(386,'2016-10-16 20:21:36.150054','508','OS2014-036',2,'Modificado/a NumCtto. Añadido/a \"OS2014-036 EDP 09\" edp. Añadido/a \"OS2014-036 EDP 10\" edp.',11,1),(387,'2016-10-16 20:26:35.734004','606','<NAME>',1,'Añadido.',10,1),(388,'2016-10-16 20:29:15.127374','602','OS2016-083',1,'Añadido.',11,1),(389,'2016-10-16 20:29:21.618672','602','OS2016-083',2,'No ha cambiado ningún campo.',11,1),(390,'2016-10-16 20:33:03.259242','460','SC-235',2,'Añadido/a \"SC-235 EDP 02\" edp.',11,1),(391,'2016-10-16 20:47:32.825712','454','SC-220',2,'Modificados Estado y FactEDP para \"SC-220 EDP 21\" edp.',11,1),(392,'2016-10-16 20:50:20.939872','479','SC-263',2,'Modificados Estado y FactEDP para \"SC-263 EDP 01\" edp.',11,1),(393,'2016-10-16 20:53:22.043366','467','SC-248',2,'Modificados Estado y FactEDP para \"SC-248 EDP 07\" edp.',11,1),(394,'2016-10-16 20:56:26.568164','554','OS2016-038',2,'Modificados Estado y FactEDP para \"OS2016-038 EDP 04\" edp.',11,1),(395,'2016-10-16 20:58:44.195790','471','SC-253',2,'Modificados Estado y FactEDP para \"SC-253 EDP 08\" edp.',11,1),(396,'2016-10-16 21:01:49.867212','470','SC-252',2,'Modificados NumEDP, Estado y FactEDP para \"SC-252 EDP 09\" edp.',11,1),(397,'2016-10-16 21:04:29.485439','463','SC-242',2,'Modificados Estado y FactEDP para \"SC-242 EDP 12\" edp.',11,1),(398,'2016-10-16 21:11:36.361609','540','OS2016-024',2,'Modificados FactEDP para \"OS2016-024 EDP 01\" edp.',11,1),(399,'2016-10-16 21:42:09.363346','602','OS2016-083',2,'No ha cambiado ningún campo.',11,1),(400,'2016-10-16 21:50:39.573286','602','OS2016-084',2,'Modificado/a NumCtto.',11,1),(401,'2016-10-16 21:53:13.325193','601','OS2016-083',2,'Modificado/a ValorCtto y AdjudicCtto.',11,1),(402,'2016-10-16 22:00:23.137992','601','OS2016-083',2,'Modificado/a TerrenCtto y SeguroCtto.',11,1),(403,'2016-10-16 22:05:43.763309','601','OS2016-083',2,'Modificado/a AjusteCom.',11,1),(404,'2016-10-16 22:10:47.503414','601','OS2016-083',2,'Modificado/a AjusteCom.',11,1),(405,'2016-10-16 22:14:25.475101','601','OS2016-083',2,'Modificado/a AjusteCom y AjustValEDP.',11,1),(406,'2016-10-16 22:29:22.413803','602','OS2016-084',2,'Modificado/a AdjudicCtto.',11,1),(407,'2016-10-16 22:30:55.466134','602','OS2016-084',2,'Modificado/a AjusteCom y AjustValEDP.',11,1),(408,'2016-10-17 01:12:15.888514','603','SC-280',1,'Añadido.',11,1),(409,'2016-10-17 01:13:56.264799','604','SC-281',1,'Añadido.',11,1),(410,'2016-10-17 01:14:48.522795','603','SC-280',2,'Modificado/a TipoServ.',11,1),(411,'2016-10-17 01:15:01.112223','603','SC-280',2,'No ha cambiado ningún campo.',11,1),(412,'2016-10-17 01:15:53.234760','604','SC-281',2,'Modificado/a TipoServ.',11,1),(413,'2016-10-17 01:20:04.352124','605','SC-282',1,'Añadido.',11,1),(414,'2016-10-17 01:20:11.098000','604','SC-281',2,'Modificado/a FechTerCtto.',11,1),(415,'2016-10-17 01:20:17.642074','603','SC-280',2,'Modificado/a FechTerCtto.',11,1),(416,'2016-10-17 02:28:54.019550','557','OS2016-041',2,'Modificado/a EstCtto.',11,1),(417,'2016-10-17 02:29:05.032738','560','OS2016-044',2,'Modificado/a EstCtto.',11,1),(418,'2016-10-17 02:33:00.350159','602','OS2016-084',2,'Modificado/a EstCtto.',11,1),(419,'2016-10-17 02:33:00.353328','596','OS2016-080',2,'Modificado/a EstCtto.',11,1),(420,'2016-10-17 02:33:00.356570','595','OS2016-079',2,'Modificado/a EstCtto.',11,1),(421,'2016-10-17 02:36:00.360229','576','OS2016-060',2,'Modificado/a LocalCtto.',11,1),(422,'2016-10-17 02:36:24.125104','564','OS2016-048',2,'Modificado/a LocalCtto.',11,1),(423,'2016-10-17 02:36:36.036990','553','OS2016-037',2,'Modificado/a LocalCtto.',11,1),(424,'2016-10-17 02:36:54.255171','552','OS2016-036',2,'Modificado/a LocalCtto.',11,1),(425,'2016-10-17 02:37:14.617620','546','OS2016-030',2,'Modificado/a LocalCtto.',11,1),(426,'2016-10-17 02:37:34.609456','544','OS2016-028',2,'Modificado/a LocalCtto.',11,1),(427,'2016-10-17 02:37:45.243875','543','OS2016-027',2,'Modificado/a LocalCtto.',11,1),(428,'2016-10-17 02:37:57.976365','539','OS2016-023',2,'Modificado/a LocalCtto.',11,1),(429,'2016-10-17 02:38:13.957969','534','OS2016-018',2,'Modificado/a LocalCtto.',11,1),(430,'2016-10-17 02:38:22.999362','530','OS2016-014',2,'Modificado/a LocalCtto.',11,1),(431,'2016-10-17 02:38:42.062685','523','OS2016-007',2,'Modificado/a LocalCtto.',11,1),(432,'2016-10-17 02:38:54.681056','522','OS2016-006',2,'Modificado/a LocalCtto.',11,1),(433,'2016-10-17 02:39:24.409954','458','SC-232',2,'Modificado/a LocalCtto.',11,1),(434,'2016-10-17 02:39:34.919515','449','SC-184',2,'Modificado/a LocalCtto.',11,1),(435,'2016-10-17 02:40:24.153664','554','OS2016-038',2,'Modificado/a LocalCtto.',11,1),(436,'2016-10-17 02:43:38.033041','571','OS2016-055',2,'Modificado/a FechTerCtto.',11,1),(437,'2016-10-17 02:48:51.393520','559','OS2016-043',2,'Modificado/a FechTerCtto.',11,1),(438,'2016-10-17 02:49:09.427263','558','OS2016-042',2,'Modificado/a FechTerCtto.',11,1),(439,'2016-10-17 02:50:07.246909','550','OS2016-034',2,'Modificado/a ObservCtto.',11,1),(440,'2016-10-17 02:50:48.596802','550','OS2016-034',2,'Modificado/a FechTerCtto.',11,1),(441,'2016-10-17 02:52:32.895030','472','SC-256',2,'Modificado/a EstCtto.',11,1),(442,'2016-10-17 02:53:28.684754','561','OS2016-045',2,'Modificado/a EstCtto.',11,1),(443,'2016-11-01 18:37:17.762553','607','<NAME>',1,'Añadido.',10,1),(444,'2016-11-01 18:42:06.069961','606','OS2016-085',1,'Añadido.',11,1),(445,'2016-11-01 18:48:01.949054','607','OS2016-086',1,'Añadido.',11,1),(446,'2016-11-01 18:51:08.705268','608','<NAME>',1,'Añadido.',10,1),(447,'2016-11-01 18:55:15.638422','608','OS2016-087',1,'Añadido.',11,1),(448,'2016-11-01 18:58:29.806838','609','AXESAT CHILE S.A.',1,'Añadido.',10,1),(449,'2016-11-01 19:02:12.549023','609','OS2016-088',1,'Añadido.',11,1),(450,'2016-11-01 19:05:30.141524','610','CONTROL DE PLAGAS HIDALGO Y RODRÍGUEZ LTDA.',1,'Añadido.',10,1),(451,'2016-11-01 19:08:18.070382','610','OS2016-089',1,'Añadido.',11,1),(452,'2016-11-01 19:21:02.363055','540','OS2016-024',2,'Añadido/a \"ODC 01\" odc.',11,1),(453,'2016-11-01 19:24:53.108114','577','OS2016-061',2,'Añadido/a \"ODC 01\" odc.',11,1),(454,'2016-11-01 19:35:26.074504','519','OS2016-003',2,'Añadido/a \"OS2016-003 EDP 07\" edp. Añadido/a \"OS2016-003 EDP 08\" edp. Modificados Estado para \"OS2016-003 EDP 06\" edp.',11,1),(455,'2016-11-01 19:39:19.507111','579','OS2016-063',2,'Añadido/a \"ODC 01\" odc.',11,1),(456,'2016-11-01 19:45:53.525395','598','SC-279',2,'Añadido/a \"SC-279 EDP 01\" edp.',11,1),(457,'2016-11-01 19:54:46.013090','472','SC-256',2,'Añadido/a \"SC-256 EDP 02\" edp.',11,1),(458,'2016-11-01 19:59:44.807492','540','OS2016-024',2,'Añadido/a \"OS2016-024 EDP 02\" edp.',11,1),(459,'2016-11-01 20:08:01.537480','450','SC-207',2,'Añadido/a \"SC-207 EDP 22\" edp. Añadido/a \"SC-207 EDP 23\" edp. Añadido/a \"SC-207 EDP 24\" edp.',11,1),(460,'2016-11-01 20:12:23.865196','479','SC-263',2,'Añadido/a \"SC-263 EDP 02\" edp.',11,1),(461,'2016-11-01 20:59:56.408216','555','OS2016-039',2,'Añadido/a \"OS2016-039 EDP 02\" edp. Añadido/a \"OS2016-039 EDP 03\" edp. Modificados FactEDP para \"OS2016-039 EDP 01\" edp.',11,1),(462,'2016-11-01 21:04:56.907845','459','SC-233',2,'Añadido/a \"SC-233 EDP 18\" edp.',11,1),(463,'2016-11-01 21:07:28.316466','459','SC-233',2,'No ha cambiado ningún campo.',11,1),(464,'2016-11-01 21:11:44.062672','480','SC-264',2,'Añadido/a \"SC-264 EDP 02\" edp.',11,1),(465,'2016-11-01 21:14:16.690796','452','SC-215',2,'Añadido/a \"SC-215 EDP 20\" edp.',11,1),(466,'2016-11-01 21:16:45.773423','553','OS2016-037',2,'Añadido/a \"OS2016-037 EDP 03\" edp.',11,1),(467,'2016-11-01 21:19:49.670811','477','SC-261',2,'Añadido/a \"SC-261 EDP 06\" edp. Modificados Estado y FactEDP para \"SC-261 EDP 05\" edp.',11,1),(468,'2016-11-01 21:21:34.711136','451','SC-214',2,'Añadido/a \"SC-214 EDP 11\" edp.',11,1),(469,'2016-11-01 21:24:10.514573','551','OS2016-035',2,'Añadido/a \"OS2016-035 EDP 04\" edp. Modificados Estado y FactEDP para \"OS2016-035 EDP 03\" edp.',11,1),(470,'2016-11-01 23:45:47.534417','606','OS2016-085',2,'Modificado/a DescCtto.',11,1),(471,'2016-11-01 23:47:18.511129','608','OS2016-087',2,'Modificado/a EstCtto.',11,1),(472,'2016-11-01 23:47:18.513635','605','SC-282',2,'Modificado/a EstCtto.',11,1),(473,'2016-11-01 23:47:18.515874','604','SC-281',2,'Modificado/a EstCtto.',11,1),(474,'2016-11-01 23:49:24.682511','602','OS2016-084',2,'Modificado/a EstCtto.',11,1),(475,'2016-11-01 23:49:24.685400','599','OS2016-081',2,'Modificado/a EstCtto.',11,1),(476,'2016-11-01 23:50:52.784654','553','OS2016-037',2,'Modificado/a DescCtto.',11,1),(477,'2016-11-01 23:51:42.323347','569','OS2016-053',2,'Modificado/a DescCtto.',11,1),(478,'2016-11-01 23:52:45.020877','540','OS2016-024',2,'Modificado/a DescCtto.',11,1),(479,'2016-11-01 23:53:22.209000','525','OS2016-009',2,'Modificado/a EstCtto y ObservCtto.',11,1),(480,'2016-11-01 23:54:19.387393','482','SC-266',2,'Modificado/a ObservCtto.',11,1),(481,'2016-11-01 23:55:06.357271','479','SC-263',2,'Modificado/a EstCtto.',11,1),(482,'2016-11-01 23:55:06.360146','475','SC-259',2,'Modificado/a ObservCtto.',11,1),(483,'2016-11-01 23:56:33.327392','607','OS2016-086',2,'Modificado/a DescCtto.',11,1),(484,'2016-11-01 23:57:34.150708','556','OS2016-040',2,'Modificado/a DescCtto.',11,1),(485,'2016-11-02 00:01:50.317523','576','OS2016-060',2,'Modificado/a DescCtto.',11,1),(486,'2016-11-02 00:02:08.069363','546','OS2016-030',2,'Modificado/a DescCtto.',11,1),(487,'2016-11-02 00:02:15.317195','546','OS2016-030',2,'Modificado/a DescCtto.',11,1),(488,'2016-11-02 00:02:39.989606','539','OS2016-023',2,'Modificado/a DescCtto.',11,1),(489,'2016-11-02 00:02:52.817840','530','OS2016-014',2,'Modificado/a DescCtto.',11,1),(490,'2016-11-02 00:11:27.382715','611','SERVICIOS E INVERSIONES PRAMAR LTDA ( GEOBIOTA )',1,'Añadido.',10,1),(491,'2016-11-02 00:11:43.441450','481','SC-265',2,'Modificado/a IdCtta.',11,1),(492,'2016-11-02 00:12:09.527626','481','SC-265',2,'Modificado/a EstCtto.',11,1),(493,'2016-11-06 22:35:18.247720','481','SC-265',2,'Modificado/a ValorCtto, FechIniCtto, FechTerCtto, FechSolCtto y FechAppCtto.',11,1),(494,'2016-11-06 22:44:35.365279','611','SC-284',1,'Añadido.',11,1),(495,'2016-11-06 22:47:55.221633','612','SC-285',1,'Añadido.',11,1),(496,'2016-11-06 23:16:13.074495','461','SC-237',2,'Modificado/a IdCecoCtto.',11,1),(497,'2016-11-07 00:49:45.278820','479','SC-263',2,'Modificados FechSolOdc y FechAppOdc para \"ODC 01\" odc.',11,1),(498,'2016-11-07 01:26:31.048975','482','SC-266',2,'Modificado/a FechSolCtto y FechAppCtto.',11,1),(499,'2016-11-07 01:27:59.363653','483','SC-267',2,'Modificado/a FechSolCtto y FechAppCtto.',11,1),(500,'2016-11-07 01:28:22.581344','484','SC-268',2,'Modificado/a FechSolCtto y FechAppCtto.',11,1),(501,'2016-11-07 01:32:05.535691','485','SC-269',2,'Modificado/a FechSolCtto y FechAppCtto.',11,1),(502,'2016-11-07 01:32:40.348072','486','SC-270',2,'Modificado/a FechSolCtto y FechAppCtto.',11,1),(503,'2016-11-07 01:33:00.497998','487','SC-271',2,'Modificado/a FechSolCtto y FechAppCtto.',11,1),(504,'2016-11-07 01:33:34.631929','488','SC-272',2,'Modificado/a FechSolCtto y FechAppCtto.',11,1),(505,'2016-11-07 01:33:52.610205','489','SC-273',2,'Modificado/a FechSolCtto y FechAppCtto.',11,1),(506,'2016-11-07 01:34:16.933237','490','SC-274',2,'Modificado/a FechSolCtto y FechAppCtto.',11,1),(507,'2016-11-07 01:34:38.378136','491','SC-275',2,'Modificado/a FechSolCtto y FechAppCtto.',11,1),(508,'2016-11-07 01:35:55.802991','492','SC-276',2,'Modificado/a FechSolCtto y FechAppCtto.',11,1),(509,'2016-11-07 01:36:49.797978','493','SC-277',2,'Modificado/a FechSolCtto y FechAppCtto.',11,1),(510,'2016-11-07 01:37:57.720271','598','SC-279',2,'Modificado/a FechSolCtto y FechAppCtto.',11,1),(511,'2016-11-07 01:38:42.855228','603','SC-280',2,'Modificado/a FechSolCtto.',11,1),(512,'2016-11-07 01:38:58.281382','604','SC-281',2,'Modificado/a FechSolCtto.',11,1),(513,'2016-11-07 01:39:21.708360','605','SC-282',2,'Modificado/a FechSolCtto.',11,1),(514,'2016-11-07 02:50:58.261676','5','CAD',2,'Modificado/a ValorMoneda y FechMoneda.',14,1),(515,'2016-11-07 02:51:34.669055','4','EUR',2,'Modificado/a ValorMoneda y FechMoneda.',14,1),(516,'2016-11-07 02:52:15.779161','2','UF',2,'Modificado/a ValorMoneda y FechMoneda.',14,1),(517,'2016-11-10 01:18:39.862805','519','OS2016-003',2,'Modificados ValorODC para \"ODC 04\" odc.',11,1),(518,'2016-11-10 01:20:51.674631','593','OS2016-077',2,'Modificado/a ValorCtto.',11,1),(519,'2016-11-10 01:48:26.821328','460','SC-235',2,'Añadido/a \"SC-235 EDP 03\" edp.',11,1),(520,'2016-11-10 02:14:00.009664','479','SC-263',2,'Añadido/a \"SC-263 EDP 03\" edp.',11,1),(521,'2016-11-10 02:23:45.453322','469','SC-250',2,'Añadido/a \"SC-250 EDP 01\" edp.',11,1),(522,'2016-11-10 03:10:12.121163','482','SC-266',2,'Añadido/a \"SC-266 EDP 03\" edp.',11,1),(523,'2016-11-10 03:27:18.011589','459','SC-233',2,'Modificados ValorODC para \"ODC 02\" odc.',11,1),(524,'2016-11-14 02:46:01.487250','460','SC-235',2,'Añadido/a \"ODC 01\" odc.',11,1),(525,'2016-11-15 00:22:08.920257','450','SC-207',2,'Modificado/a AjusteCom y AjustNumEDP.',11,1),(526,'2016-11-15 00:31:35.714195','452','SC-215',2,'Modificado/a AjustNumEDP.',11,1),(527,'2016-11-15 00:32:28.494339','451','SC-214',2,'Modificado/a AjustNumEDP.',11,1),(528,'2016-11-15 00:53:25.279902','451','SC-214',2,'Modificado/a AjustNumEDP.',11,1),(529,'2016-11-15 00:54:11.408162','452','SC-215',2,'Modificado/a AjustNumEDP.',11,1),(530,'2016-11-15 01:10:11.678674','454','SC-220',2,'Modificado/a AjusteCom.',11,1),(531,'2016-11-15 01:53:05.032980','455','SC-222',2,'Modificado/a AjusteCom y AjustValEDP.',11,1),(532,'2016-11-15 01:57:24.010230','456','SC-224',2,'Modificado/a AjusteCom.',11,1),(533,'2016-11-15 02:10:56.128504','459','SC-233',2,'Modificado/a AjusteCom y AjustValEDP.',11,1),(534,'2016-11-15 02:11:48.134761','459','SC-233',2,'No ha cambiado ningún campo.',11,1),(535,'2016-11-17 00:14:58.552798','461','SC-237',2,'Modificado/a AjusteCom.',11,1),(536,'2016-11-17 00:27:00.026741','463','SC-242',2,'Modificado/a AjusteCom.',11,1),(537,'2016-11-21 08:41:30.389747','608','OS2016-087',2,'Añadido/a \"OS2016-087 EDP 01\" edp.',11,1),(538,'2016-11-21 08:45:41.793299','477','SC-261',2,'Añadido/a \"SC-261 EDP 07\" edp.',11,1),(539,'2016-11-21 08:55:21.132349','564','OS2016-048',2,'Añadido/a \"OS2016-048 EDP 01\" edp. Añadido/a \"OS2016-048 EDP 02\" edp. Añadido/a \"OS2016-048 EDP 03\" edp. Añadido/a \"OS2016-048 EDP 04\" edp.',11,1),(540,'2016-11-21 09:03:12.420225','561','OS2016-045',2,'Añadido/a \"OS2016-045 EDP 01\" edp. Añadido/a \"OS2016-045 EDP 02\" edp. Añadido/a \"OS2016-045 EDP 03\" edp.',11,1),(541,'2016-11-21 09:06:38.448182','474','SC-258',2,'Añadido/a \"SC-258 EDP 06\" edp.',11,1),(542,'2016-11-21 09:13:21.309471','456','SC-224',2,'Añadido/a \"SC-224 EDP 21\" edp. Añadido/a \"SC-224 EDP 22\" edp.',11,1),(543,'2016-11-21 09:17:25.189844','454','SC-220',2,'Añadido/a \"SC-220 EDP 22\" edp.',11,1),(544,'2016-11-21 09:26:53.936137','463','SC-242',2,'Añadido/a \"SC-242 EDP 13\" edp. Añadido/a \"ODC 01\" odc.',11,1),(545,'2016-11-21 09:30:54.736498','599','OS2016-081',2,'Añadido/a \"OS2016-081 EDP 01\" edp.',11,1),(546,'2016-11-21 09:35:57.533693','594','OS2016-078',2,'Añadido/a \"ODC 01\" odc.',11,1),(547,'2016-11-21 09:38:53.392409','537','OS2016-021',2,'Añadido/a \"ODC 01\" odc.',11,1),(548,'2016-11-21 09:42:53.901806','554','OS2016-038',2,'Añadido/a \"OS2016-038 EDP 05\" edp.',11,1),(549,'2016-11-21 09:48:08.032583','612','<NAME>',1,'Añadido.',10,1),(550,'2016-11-21 09:51:12.441908','613','OS2016-091',1,'Añadido.',11,1),(551,'2016-11-21 09:55:53.336586','551','OS2016-035',2,'Añadido/a \"OS2016-035 EDP 05\" edp.',11,1),(552,'2016-11-21 10:05:13.008606','613','PHIBRAND',1,'Añadido.',10,1),(553,'2016-11-21 10:08:08.248023','614','OS2016-093',1,'Añadido.',11,1),(554,'2016-11-21 10:11:28.505330','614','UNIVERSITY OF BRITISH COLUMBIA',1,'Añadido.',10,1),(555,'2016-11-21 10:13:51.895689','615','OS2016-094',1,'Añadido.',11,1),(556,'2016-11-21 10:14:30.686765','614','OS2016-093',2,'Modificado/a EstCtto.',11,1),(557,'2016-11-21 10:15:08.287963','613','OS2016-091',2,'Modificado/a EstCtto.',11,1),(558,'2016-11-21 10:37:38.168273','616','SC-293',1,'Añadido.',11,1),(559,'2016-11-21 10:39:28.908758','617','SC-294',1,'Añadido.',11,1),(560,'2016-11-21 10:41:31.968171','618','SC-295',1,'Añadido.',11,1),(561,'2016-11-21 10:43:01.279291','616','SC-293',2,'Modificado/a ValorCtto.',11,1),(562,'2016-11-21 10:43:38.154022','617','SC-294',2,'Modificado/a ValorCtto.',11,1),(563,'2016-11-21 10:43:52.465130','618','SC-295',2,'No ha cambiado ningún campo.',11,1),(564,'2016-11-21 10:44:06.956286','618','SC-295',2,'Modificado/a ValorCtto.',11,1),(565,'2016-11-21 10:44:43.472614','616','SC-293',2,'Modificado/a DescCtto.',11,1),(566,'2016-11-21 10:45:00.519626','618','SC-295',2,'Modificado/a DescCtto.',11,1),(567,'2016-11-21 10:45:09.932839','617','SC-294',2,'Modificado/a DescCtto.',11,1),(568,'2016-11-22 09:50:27.980447','580','OS2016-064',2,'Añadido/a \"OS2016-064 EDP 01\" edp.',11,1),(569,'2016-11-22 09:53:29.239999','583','OS2016-067',2,'Añadido/a \"OS2016-067 EDP 01\" edp.',11,1),(570,'2016-11-22 09:59:31.339990','461','SC-237',2,'Añadido/a \"SC-237 EDP 12\" edp.',11,1),(571,'2016-11-22 10:03:45.980258','512','CV2016-001',2,'Añadido/a \"CV2016-001 EDP 09\" edp.',11,1),(572,'2016-11-22 10:08:00.006444','602','OS2016-084',2,'Añadido/a \"ODC 01\" odc.',11,1),(573,'2016-11-22 10:14:31.421967','480','SC-264',2,'Añadido/a \"SC-264 EDP 03\" edp.',11,1),(574,'2016-11-22 10:18:19.429290','615','DK Sistemas de Exhibición',1,'Añadido.',10,1),(575,'2016-11-22 10:20:28.904209','619','OS2016-095',1,'Añadido.',11,1),(576,'2016-11-22 10:24:59.467081','616','Corporación para el Desarrollo de la Region de Atacama',1,'Añadido.',10,1),(577,'2016-11-22 10:26:57.590978','620','OS2016-096',1,'Añadido.',11,1),(578,'2016-11-22 10:33:29.528205','508','OS2014-036',2,'Añadido/a \"ODC 08\" odc.',11,1),(579,'2016-11-22 10:38:43.201694','617','Comercial Agroveterinaria del Maipo',1,'Añadido.',10,1),(580,'2016-11-22 10:40:52.227634','621','OS-2016-092',1,'Añadido.',11,1),(581,'2016-11-22 10:41:41.820201','621','OS2016-092',2,'Modificado/a NumCtto.',11,1),(582,'2016-11-22 10:44:59.136140','621','OS2016-092',2,'Añadido/a \"OS2016-092 EDP 01\" edp.',11,1),(583,'2016-11-23 03:05:22.775035','562','OS2016-046',2,'Modificado/a EstCtto.',11,1),(584,'2016-11-23 03:09:11.759267','464','SC-244',2,'Modificado/a EstCtto.',11,1),(585,'2016-11-23 03:09:22.825003','467','SC-248',2,'Modificado/a EstCtto.',11,1),(586,'2016-11-23 03:09:22.828522','465','SC-245',2,'Modificado/a EstCtto.',11,1),(587,'2016-11-24 00:58:20.755632','2','UF',2,'Modificado/a ValorMoneda y FechMoneda.',14,1),(588,'2016-11-24 00:59:00.951522','4','EUR',2,'Modificado/a ValorMoneda y FechMoneda.',14,1),(589,'2016-11-24 00:59:31.507536','5','CAD',2,'Modificado/a ValorMoneda y FechMoneda.',14,1),(590,'2016-11-24 01:11:15.406507','621','OS2016-092',2,'Modificado/a EstCtto.',11,1),(591,'2016-11-24 01:11:15.410012','620','OS2016-096',2,'Modificado/a EstCtto.',11,1),(592,'2016-11-24 01:11:15.413219','619','OS2016-095',2,'Modificado/a EstCtto.',11,1),(593,'2016-11-24 01:11:15.415446','615','OS2016-094',2,'Modificado/a EstCtto.',11,1),(594,'2016-11-24 01:11:15.417807','614','OS2016-093',2,'Modificado/a EstCtto.',11,1),(595,'2016-11-24 01:11:15.420158','613','OS2016-091',2,'Modificado/a EstCtto.',11,1),(596,'2016-11-24 01:11:15.422570','603','SC-280',2,'Modificado/a EstCtto.',11,1),(597,'2016-11-24 01:13:23.270278','597','SC-278',2,'Modificado/a EstCtto.',11,1),(598,'2016-11-24 01:13:23.273616','590','OS2016-074',2,'Modificado/a EstCtto y ObservCtto.',11,1),(599,'2016-11-24 01:13:23.276488','492','SC-276',2,'Modificado/a EstCtto.',11,1),(600,'2016-11-24 01:15:06.399420','491','SC-275',2,'Modificado/a EstCtto.',11,1),(601,'2016-11-24 01:15:06.403858','490','SC-274',2,'Modificado/a EstCtto.',11,1),(602,'2016-11-24 01:15:06.406410','489','SC-273',2,'Modificado/a EstCtto.',11,1),(603,'2016-11-24 01:15:06.408871','488','SC-272',2,'Modificado/a EstCtto.',11,1),(604,'2016-11-24 01:15:06.410951','487','SC-271',2,'Modificado/a EstCtto.',11,1),(605,'2016-11-24 01:15:06.413134','485','SC-269',2,'Modificado/a EstCtto.',11,1),(606,'2016-11-24 01:15:36.833750','526','OS2016-010',2,'Modificado/a EstCtto.',11,1),(607,'2016-11-24 01:50:24.392344','531','OS2016-015',2,'Añadido/a \"OS2016-015 EDP 01\" edp.',11,1),(608,'2016-11-24 01:52:16.533168','533','OS2016-017',2,'Añadido/a \"OS2016-017 EDP 01\" edp.',11,1),(609,'2016-11-24 01:53:30.431932','536','OS2016-020',2,'Añadido/a \"OS2016-020 EDP 01\" edp.',11,1),(610,'2016-11-24 01:56:37.237009','547','OS2016-031',2,'Añadido/a \"OS2016-031 EDP 01\" edp.',11,1),(611,'2016-11-24 01:57:49.639731','548','OS2016-032',2,'Añadido/a \"OS2016-032 EDP 01\" edp.',11,1),(612,'2016-11-24 02:00:00.841889','568','OS2016-052',2,'Añadido/a \"OS2016-052 EDP 01\" edp.',11,1),(613,'2016-11-24 02:01:46.250202','573','OS2016-057',2,'Añadido/a \"OS2016-057 EDP 01\" edp.',11,1),(614,'2016-11-24 02:09:22.154071','514','OCM2016-02',2,'Añadido/a \"OCM2016-02 EDP 02\" edp. Modificados PeriodEDP y PeriodEDPTer para \"OCM2016-02 EDP 01\" edp.',11,1),(615,'2016-11-24 02:10:32.367689','514','OCM2016-02',2,'Añadido/a \"OCM2016-02 EDP 03\" edp.',11,1),(616,'2016-11-24 02:12:22.517935','514','OCM2016-02',2,'Añadido/a \"OCM2016-02 EDP 04\" edp.',11,1),(617,'2016-11-24 02:31:10.781157','584','OS2016-068',2,'Añadido/a \"OS2016-068 EDP 01\" edp. Añadido/a \"OS2016-068 EDP 02\" edp. Añadido/a \"OS2016-068 EDP 03\" edp. Añadido/a \"OS2016-068 EDP 04\" edp.',11,1),(618,'2016-11-24 02:35:40.210440','585','OS2016-069',2,'Añadido/a \"OS2016-069 EDP 01\" edp. Añadido/a \"OS2016-069 EDP 02\" edp. Añadido/a \"OS2016-069 EDP 03\" edp. Añadido/a \"OS2016-069 EDP 04\" edp.',11,1),(619,'2016-11-24 02:41:05.117738','587','OS2016-071',2,'Añadido/a \"OS2016-071 EDP 01\" edp. Añadido/a \"OS2016-071 EDP 02\" edp. Añadido/a \"OS2016-071 EDP 03\" edp. Añadido/a \"OS2016-071 EDP 04\" edp.',11,1),(620,'2016-11-24 02:47:08.936662','586','OS2016-070',2,'Añadido/a \"OS2016-070 EDP 01\" edp. Añadido/a \"OS2016-070 EDP 02\" edp. Añadido/a \"OS2016-070 EDP 03\" edp. Añadido/a \"OS2016-070 EDP 04\" edp.',11,1),(621,'2016-11-24 02:48:17.739374','587','OS2016-071',2,'Modificados ValEDP para \"OS2016-071 EDP 01\" edp. Modificados ValEDP para \"OS2016-071 EDP 02\" edp. Modificados ValEDP para \"OS2016-071 EDP 03\" edp. Modificados ValEDP para \"OS2016-071 EDP 04\" edp.',11,1),(622,'2016-11-24 02:51:09.508784','588','OS2016-072',2,'Añadido/a \"OS2016-072 EDP 01\" edp. Añadido/a \"OS2016-072 EDP 02\" edp. Añadido/a \"OS2016-072 EDP 03\" edp. Añadido/a \"OS2016-072 EDP 04\" edp.',11,1),(623,'2016-11-24 03:02:38.374328','541','OS2016-025',2,'Modificado/a FechIniCtto y FechTerCtto. Añadido/a \"OS2016-025 EDP 01\" edp.',11,1),(624,'2016-11-24 03:10:54.434686','562','OS2016-046',2,'Añadido/a \"OS2016-046 EDP 01\" edp.',11,1),(625,'2016-11-24 03:13:29.106083','525','OS2016-009',2,'Modificados FactEDP para \"OS2016-009 EDP 01\" edp.',11,1),(626,'2016-11-24 04:18:24.686915','538','OS2016-022',2,'Modificado/a IdCtta.',11,1),(627,'2016-11-24 04:23:53.139579','574','OS2016-058',2,'Añadido/a \"OS2016-058 EDP 03\" edp. Añadido/a \"OS2016-058 EDP 04\" edp.',11,1),(628,'2016-11-24 04:27:02.280327','577','OS2016-061',2,'Añadido/a \"OS2016-061 EDP 03\" edp. Modificados FactEDP para \"OS2016-061 EDP 01\" edp. Modificados FactEDP para \"OS2016-061 EDP 02\" edp.',11,1),(629,'2016-11-24 04:30:34.949331','580','OS2016-064',2,'Añadido/a \"OS2016-064 EDP 02\" edp.',11,1),(630,'2016-11-24 04:35:40.307824','579','OS2016-063',2,'Añadido/a \"OS2016-063 EDP 01\" edp.',11,1),(631,'2016-11-24 04:39:57.986356','582','OS2016-066',2,'Añadido/a \"OS2016-066 EDP 03\" edp.',11,1),(632,'2016-11-24 04:42:36.176486','577','OS2016-061',2,'No ha cambiado ningún campo.',11,1),(633,'2016-11-24 04:55:29.078544','577','OS2016-061',2,'No ha cambiado ningún campo.',11,1),(634,'2016-11-24 04:56:54.239097','600','OS2016-082',2,'Añadido/a \"OS2016-082 EDP 01\" edp.',11,1),(635,'2016-11-24 09:39:46.659114','568','OS2016-052',2,'Modificado/a EstCtto.',11,1),(636,'2016-11-24 09:40:06.151343','569','OS2016-053',2,'Modificado/a EstCtto.',11,1),(637,'2016-11-24 09:47:16.196792','570','OS2016-054',2,'Añadido/a \"OS2016-054 EDP 01\" edp.',11,1),(638,'2016-11-24 09:50:11.394346','618','CAPACITACIÓN GLOBALGATE LTDA',1,'Añadido.',10,1),(639,'2016-11-24 09:50:47.857033','582','OS2016-066',2,'Modificado/a EstCtto.',11,1),(640,'2016-11-24 09:51:13.653668','482','SC-266',2,'Modificado/a EstCtto.',11,1),(641,'2016-11-28 09:33:15.057866','496','OS2011-057',2,'Añadido/a \"OS2011-057 EDP 61\" edp.',11,1),(642,'2016-11-28 09:35:16.778341','496','OS2011-057',2,'Añadido/a \"OS2011-057 EDP 62\" edp.',11,1),(643,'2016-11-28 09:44:06.573339','470','SC-252',2,'Añadido/a \"SC-252 EDP 10\" edp. Modificados RetEDP para \"SC-252 EDP 09\" edp.',11,1),(644,'2016-11-28 09:48:22.712378','535','OS2016-019',2,'Añadido/a \"OS2016-019 EDP 05\" edp.',11,1),(645,'2016-11-28 09:48:37.453815','460','SC-235',2,'No ha cambiado ningún campo.',11,1),(646,'2016-11-28 09:55:21.289014','476','SC-260',2,'Añadido/a \"SC-260 EDP 02\" edp. Modificados FactEDP para \"SC-260 EDP 01\" edp.',11,1),(647,'2016-11-28 09:58:02.727807','460','SC-235',2,'Añadido/a \"SC-235 EDP 04\" edp.',11,1),(648,'2016-11-28 10:00:40.209282','474','SC-258',2,'Añadido/a \"SC-258 EDP 07\" edp.',11,1),(649,'2016-11-28 10:04:31.027505','619','CDO Consulting Group',1,'Añadido.',10,1),(650,'2016-11-28 10:07:36.212433','622','OS2016-097',1,'Añadido.',11,1),(651,'2016-11-28 10:11:26.773487','613','OS2016-091',2,'Añadido/a \"ODC 01\" odc.',11,1),(652,'2016-11-28 10:17:24.268798','598','SC-279',2,'Añadido/a \"SC-279 EDP 02\" edp.',11,1),(653,'2016-11-28 10:21:42.006340','519','OS2016-003',2,'Añadido/a \"ODC 06\" odc.',11,1),(654,'2016-11-28 10:23:49.208320','520','OS2016-004',2,'Añadido/a \"OS2016-004 EDP 09\" edp.',11,1),(655,'2016-11-28 10:30:48.170391','594','OS2016-078',2,'Añadido/a \"OS2016-078 EDP 04\" edp.',11,1),(656,'2016-12-04 01:02:09.660301','601','OS2016-083',2,'Añadido/a \"OS2016-083 EDP 01\" edp.',11,1),(657,'2016-12-04 01:07:01.403398','618','SC-296',2,'Modificado/a NumCtto.',11,1),(658,'2016-12-04 01:09:47.484847','618','SC-297',2,'Modificado/a NumCtto.',11,1),(659,'2016-12-04 01:14:04.025178','620','ANGELA ACEVEDO',1,'Añadido.',10,1),(660,'2016-12-04 01:16:47.530944','623','SC-295',1,'Añadido.',11,1),(661,'2016-12-04 01:28:09.489043','566','OS2016-050',2,'Modificados NumEDP para \"OS2016-050 EDP 02\" edp.',11,1),(662,'2016-12-04 01:30:15.471864','566','OS2016-050',2,'Añadido/a \"OS2016-050 EDP 03\" edp.',11,1),(663,'2016-12-04 01:32:08.652126','566','OS2016-050',2,'Añadido/a \"OS2016-050 EDP 04\" edp. Añadido/a \"OS2016-050 EDP 05\" edp.',11,1),(664,'2016-12-04 03:31:45.212414','538','OS2016-022',2,'No ha cambiado ningún campo.',11,1),(665,'2016-12-04 11:29:45.846126','538','OS2016-022',2,'Añadido/a \"OS2016-022 EDP 01\" edp. Añadido/a \"OS2016-022 EDP 02\" edp. Añadido/a \"OS2016-022 EDP 03\" edp. Añadido/a \"OS2016-022 EDP 04\" edp.',11,1),(666,'2016-12-04 11:33:15.693784','512','CV2016-001',2,'Añadido/a \"CV2016-001 EDP 10\" edp.',11,1),(667,'2016-12-04 11:41:25.675352','591','OS2016-075',2,'Añadido/a \"ODC 01\" odc.',11,1),(668,'2016-12-04 11:44:21.073924','591','OS2016-075',2,'Añadido/a \"OS2016-075 EDP 01\" edp.',11,1),(669,'2016-12-04 11:57:26.496190','615','OS2016-094',2,'Modificado/a MonedaCtto, ValorCtto, EstCtto y FechSolCtto.',11,1),(670,'2016-12-04 12:01:25.778591','621','METSO MINERALS INDUSTRIES(EEUU)',1,'Añadido.',10,1),(671,'2016-12-04 12:03:22.313645','624','OS2016-098',1,'Añadido.',11,1),(672,'2016-12-04 12:19:41.908883','473','SC-257',2,'Añadido/a \"SC-257 EDP 04\" edp. Añadido/a \"SC-257 EDP 05\" edp. Añadido/a \"ODC 01\" odc.',11,1),(673,'2016-12-04 12:27:46.483150','622','OS2016-097',2,'Añadido/a \"OS2016-097 EDP 01\" edp.',11,1),(674,'2016-12-04 12:33:51.369286','470','SC-252',2,'Añadido/a \"SC-252 EDP 11\" edp.',11,1),(675,'2016-12-04 12:39:32.045532','622','SOCIEDAD INVERSIONES ATACAMA S&H LTDA',1,'Añadido.',10,1),(676,'2016-12-04 12:44:57.871635','625','OS2016-101',1,'Añadido.',11,1),(677,'2016-12-04 13:25:14.986454','555','OS2016-039',2,'Modificado/a FechTerCtto. Añadido/a \"OS2016-039 EDP 04\" edp. Añadido/a \"ODC 01\" odc.',11,1),(678,'2016-12-04 13:30:51.025700','459','SC-233',2,'Añadido/a \"SC-233 EDP 19\" edp.',11,1),(679,'2016-12-04 13:35:33.764559','454','SC-220',2,'Añadido/a \"SC-220 EDP 23\" edp.',11,1),(680,'2016-12-04 13:36:09.151584','454','SC-220',2,'No ha cambiado ningún campo.',11,1),(681,'2016-12-04 13:39:38.452650','452','SC-215',2,'Añadido/a \"SC-215 EDP 21\" edp. Añadido/a \"SC-215 EDP 22\" edp. Modificados Estado y FactEDP para \"SC-215 EDP 20\" edp.',11,1),(682,'2016-12-04 16:17:12.339184','626','SC-286A',1,'Añadido.',11,1),(683,'2016-12-04 16:21:54.296466','627','SC-287',1,'Añadido.',11,1),(684,'2016-12-04 16:24:16.222888','628','SC-288',1,'Añadido.',11,1),(685,'2016-12-04 16:26:08.491543','629','SC-289',1,'Añadido.',11,1),(686,'2016-12-04 16:27:47.213630','630','SC-290',1,'Añadido.',11,1),(687,'2016-12-04 16:29:26.581865','627','SC-287',2,'Modificado/a TipoServ y ObservCtto.',11,1),(688,'2016-12-04 16:30:15.972620','628','SC-288',2,'Modificado/a TipoServ y ObservCtto.',11,1),(689,'2016-12-04 16:30:39.424411','629','SC-289',2,'Modificado/a FechIniCtto, FechTerCtto y ObservCtto.',11,1),(690,'2016-12-04 16:31:36.028982','630','SC-290',2,'Modificado/a TipoServ y ObservCtto.',11,1),(691,'2016-12-04 16:33:51.896274','631','SC-291',1,'Añadido.',11,1),(692,'2016-12-04 16:35:25.504377','632','SC-292',1,'Añadido.',11,1),(693,'2016-12-04 16:37:50.388812','629','SC-289',2,'No ha cambiado ningún campo.',11,1),(694,'2016-12-04 16:41:00.228286','633','SC-296',1,'Añadido.',11,1),(695,'2016-12-04 16:45:59.910938','627','SC-287',2,'Modificado/a ValorCtto.',11,1),(696,'2016-12-04 16:48:27.453300','627','SC-287',2,'Modificado/a AjusteCom, AjustNumEDP, AjustValEDP y AdjudicCtto.',11,1),(697,'2016-12-04 16:48:56.468082','628','SC-288',2,'Modificado/a ValorCtto, AjusteCom, AjustNumEDP, AjustValEDP y AdjudicCtto.',11,1),(698,'2016-12-04 16:49:53.258738','629','SC-289',2,'Modificado/a ValorCtto, EstCtto, TipoServ, AjusteCom, AjustNumEDP, AjustValEDP y AdjudicCtto.',11,1),(699,'2016-12-04 16:50:15.636418','631','SC-291',2,'Modificado/a ValorCtto, AjusteCom, AjustNumEDP, AjustValEDP y AdjudicCtto.',11,1),(700,'2016-12-04 16:50:41.587997','632','SC-292',2,'Modificado/a ValorCtto, AjusteCom, AjustNumEDP, AjustValEDP y AdjudicCtto.',11,1),(701,'2016-12-04 16:51:15.163033','633','SC-296',2,'Modificado/a ValorCtto, AjusteCom, AjustNumEDP, AjustValEDP y AdjudicCtto.',11,1),(702,'2016-12-04 16:52:19.399196','630','SC-290',2,'Modificado/a ValorCtto, EstCtto, AjusteCom, AjustNumEDP, AjustValEDP y AdjudicCtto.',11,1),(703,'2016-12-04 16:59:28.866184','613','OS2016-091',2,'Modificado/a DescCtto.',11,1),(704,'2016-12-04 16:59:43.856323','621','OS2016-092',2,'Modificado/a DescCtto.',11,1),(705,'2016-12-04 17:00:04.545680','619','OS2016-095',2,'Modificado/a DescCtto.',11,1),(706,'2016-12-04 17:00:20.481687','620','OS2016-096',2,'Modificado/a DescCtto.',11,1),(707,'2016-12-04 17:00:37.465960','622','OS2016-097',2,'Modificado/a DescCtto.',11,1),(708,'2016-12-04 18:06:45.270231','633','SC-296',2,'Modificado/a FechTerCtto.',11,1),(709,'2016-12-04 18:06:45.272869','624','OS2016-098',2,'Modificado/a FechTerCtto.',11,1),(710,'2016-12-04 18:06:45.275098','623','SC-295',2,'Modificado/a FechTerCtto.',11,1),(711,'2016-12-04 18:16:07.925467','583','OS2016-067',2,'Modificado/a EstCtto.',11,1),(712,'2016-12-04 18:16:07.929490','555','OS2016-039',2,'Modificado/a EstCtto.',11,1),(713,'2016-12-04 18:16:07.932236','554','OS2016-038',2,'Modificado/a EstCtto.',11,1),(714,'2016-12-04 19:42:37.248344','603','SC-280',2,'Modificado/a TerrenCtto, SeguroCtto y ObservCtto.',11,1),(715,'2016-12-04 19:43:01.047776','604','SC-281',2,'Modificado/a TerrenCtto, SeguroCtto y ObservCtto.',11,1),(716,'2016-12-04 19:43:26.085291','605','SC-282',2,'Modificado/a TerrenCtto y SeguroCtto.',11,1),(717,'2016-12-04 19:43:54.015264','627','SC-287',2,'Modificado/a TerrenCtto, SeguroCtto y ObservCtto.',11,1),(718,'2016-12-04 19:44:31.644707','628','SC-288',2,'Modificado/a TerrenCtto y SeguroCtto.',11,1),(719,'2016-12-04 19:44:45.697326','629','SC-289',2,'Modificado/a TerrenCtto y SeguroCtto.',11,1),(720,'2016-12-04 19:45:00.718436','630','SC-290',2,'Modificado/a TerrenCtto y SeguroCtto.',11,1),(721,'2016-12-04 19:45:15.565190','631','SC-291',2,'Modificado/a TerrenCtto y SeguroCtto.',11,1),(722,'2016-12-04 19:45:31.147761','632','SC-292',2,'Modificado/a TerrenCtto y SeguroCtto.',11,1),(723,'2016-12-04 19:45:45.110559','633','SC-296',2,'Modificado/a TerrenCtto y SeguroCtto.',11,1),(724,'2016-12-04 20:52:25.470985','530','OS2016-014',2,'Modificado/a IdMandante y TipoServ.',11,1),(725,'2016-12-04 20:52:48.831293','534','OS2016-018',2,'Modificado/a IdMandante y TipoServ.',11,1),(726,'2016-12-04 20:54:12.275465','539','OS2016-023',2,'Modificado/a IdMandante, Carpeta, TipoServ, TerrenCtto y SeguroCtto.',11,1),(727,'2016-12-04 20:54:33.453372','546','OS2016-030',2,'Modificado/a IdMandante, TipoServ, TerrenCtto y SeguroCtto.',11,1),(728,'2016-12-04 20:54:58.063189','576','OS2016-060',2,'Modificado/a IdMandante, Carpeta, TipoServ, TerrenCtto y SeguroCtto.',11,1),(729,'2016-12-04 20:55:29.385425','458','SC-232',2,'Modificado/a Carpeta, TipoServ y SeguroCtto.',11,1),(730,'2016-12-05 02:33:37.559310','593','OS2016-077',2,'Modificado/a EstCtto.',11,1),(731,'2016-12-05 02:34:26.239505','606','OS2016-085',2,'Modificado/a EstCtto.',11,1),(732,'2016-12-07 02:26:45.339876','626','SC-286A',2,'Modificado/a ValorCtto.',11,1),(733,'2016-12-07 02:31:23.173446','634','SC-286B',1,'Añadido.',11,1),(734,'2016-12-07 02:39:55.862456','623','CAPACITACIÓN Y ASESORÍAS EMPRENDEJOVEN',1,'Añadido.',10,1),(735,'2016-12-07 02:49:05.329948','635','CV2016-002',1,'Añadido. Añadido/a \"CV2016-002 EDP 01\" edp.',11,1),(736,'2016-12-07 02:54:51.659931','624','FUNDACIÓN CHILE',1,'Añadido.',10,1),(737,'2016-12-07 03:04:41.959905','625','FUNDACIÓN CHILE',1,'Añadido.',10,1),(738,'2016-12-07 03:07:40.848636','636','CV2016-003',1,'Añadido.',11,1),(739,'2016-12-07 03:08:46.646209','636','CV2016-003',2,'Añadido/a \"CV2016-003 EDP 01\" edp.',11,1),(740,'2016-12-07 03:24:24.116551','636','CV2016-003',2,'Añadido/a \"CV2016-003 EDP 02\" edp.',11,1),(741,'2016-12-07 03:29:18.333887','626','MUNICIPALIDAD DE VALLENAR',1,'Añadido.',10,1),(742,'2016-12-07 03:31:36.928780','637','CV2016-004',1,'Añadido.',11,1),(743,'2016-12-07 03:33:12.281842','637','CV2016-004',2,'Añadido/a \"CV2016-004 EDP 01\" edp.',11,1),(744,'2016-12-07 03:36:11.939335','627','MUNICIPALIDAD DEL CARMEN',1,'Añadido.',10,1),(745,'2016-12-07 03:37:27.199329','638','CV2016-005',1,'Añadido.',11,1),(746,'2016-12-07 03:38:20.510868','638','CV2016-005',2,'Modificado/a DescCtto.',11,1),(747,'2016-12-07 03:41:05.624372','638','CV2016-005',2,'Añadido/a \"CV2016-005 EDP 01\" edp.',11,1),(748,'2016-12-07 03:41:29.393292','636','CV2016-003',2,'Modificado/a EstCtto.',11,1),(749,'2016-12-07 03:48:26.040003','628','MUNICIPALIDAD DE HUASCO',1,'Añadido.',10,1),(750,'2016-12-07 03:50:10.930654','639','CV2016-006',1,'Añadido.',11,1),(751,'2016-12-07 03:52:07.260850','639','CV2016-006',2,'Añadido/a \"CV2016-006 EDP 01\" edp.',11,1),(752,'2016-12-07 09:52:52.972831','639','CV2016-006',2,'Modificado/a DescCtto.',11,1),(753,'2016-12-07 10:01:31.349254','640','CV2016-007',1,'Añadido.',11,1),(754,'2016-12-07 10:03:44.832602','640','CV2016-007',2,'Añadido/a \"CV2016-007 EDP 01\" edp.',11,1),(755,'2016-12-07 10:09:06.638347','641','CV2016-008',1,'Añadido.',11,1),(756,'2016-12-07 10:10:41.489319','641','CV2016-008',2,'Modificado/a ObservCtto.',11,1),(757,'2016-12-07 10:15:03.428100','642','CV2016-009',1,'Añadido.',11,1),(758,'2016-12-07 10:17:23.872480','642','CV2016-009',2,'Añadido/a \"CV2016-009 EDP 01\" edp.',11,1),(759,'2016-12-07 10:17:34.424217','641','CV2016-008',2,'Modificado/a EstCtto.',11,1),(760,'2016-12-07 10:18:12.743290','624','OS2016-098',2,'Modificado/a EstCtto.',11,1),(761,'2016-12-07 10:18:12.746341','623','SC-295',2,'Modificado/a EstCtto.',11,1),(762,'2016-12-07 10:18:37.320611','622','OS2016-097',2,'Modificado/a EstCtto.',11,1),(763,'2016-12-07 10:22:49.416217','638','CV2016-005',2,'Modificado/a MonedaCtto.',11,1),(764,'2016-12-07 10:28:45.453457','638','CV2016-005',2,'Modificados AprobEDP para \"CV2016-005 EDP 01\" edp.',11,1),(765,'2016-12-07 10:31:03.174689','638','CV2016-005',2,'No ha cambiado ningún campo.',11,1),(766,'2016-12-07 10:31:43.679602','638','CV2016-005',2,'No ha cambiado ningún campo.',11,1),(767,'2016-12-07 10:32:16.771895','638','CV2016-005',2,'No ha cambiado ningún campo.',11,1),(768,'2016-12-07 10:33:14.495904','638','CV2016-005',2,'Modificado/a ValorCtto.',11,1),(769,'2016-12-08 18:08:42.458080','642','CV2016-009',2,'Modificado/a AdjudicCtto.',11,1),(770,'2016-12-09 14:34:06.245074','449','SC-184',2,'Modificados ValorODC para \"ODC 01\" odc.',11,1),(771,'2016-12-09 14:38:30.961461','579','ODC 07',2,'Modificado/a ValorODC.',13,1),(772,'2016-12-09 14:39:30.418322','454','SC-220',2,'Modificados ValorODC para \"ODC 01\" odc.',11,1),(773,'2016-12-09 14:40:50.602102','520','OS2016-004',2,'Modificados ValorODC para \"ODC 01\" odc.',11,1),(774,'2016-12-11 23:47:52.064142','626','SC-286A',2,'Añadido/a \"SC-286A EDP 01\" edp.',11,1),(775,'2016-12-11 23:54:39.763113','450','SC-207',2,'Añadido/a \"SC-207 EDP 25\" edp. Añadido/a \"SC-207 EDP 26\" edp.',11,1),(776,'2016-12-11 23:58:53.938848','602','OS2016-084',2,'Añadido/a \"OS2016-084 EDP 01\" edp.',11,1),(777,'2016-12-12 00:04:19.592441','460','SC-235',2,'Añadido/a \"SC-235 EDP 05\" edp. Añadido/a \"SC-235 EDP 06\" edp.',11,1),(778,'2016-12-12 00:29:39.922714','557','OS2016-041',2,'Añadido/a \"ODC 01\" odc. Añadido/a \"ODC 02\" odc.',11,1),(779,'2016-12-19 00:48:56.864305','553','OS2016-037',2,'Añadido/a \"ODC 01\" odc.',11,1),(780,'2016-12-19 00:49:30.956061','553','OS2016-037',2,'Modificados DescripODC para \"ODC 01\" odc.',11,1),(781,'2016-12-19 00:52:16.687097','553','OS2016-037',2,'Añadido/a \"OS2016-037 EDP 04\" edp.',11,1),(782,'2016-12-19 00:53:27.222390','553','OS2016-037',2,'Añadido/a \"OS2016-037 EDP 05\" edp.',11,1),(783,'2016-12-19 01:01:56.975392','519','OS2016-003',2,'Añadido/a \"OS2016-003 EDP 09\" edp. Añadido/a \"OS2016-003 EDP 10\" edp.',11,1),(784,'2016-12-19 01:06:20.731288','512','CV2016-001',2,'Añadido/a \"CV2016-001 EDP 11\" edp.',11,1),(785,'2016-12-19 01:08:03.850622','512','CV2016-001',2,'Añadido/a \"CV2016-001 EDP 12\" edp.',11,1),(786,'2016-12-19 01:11:12.284689','477','SC-261',2,'Añadido/a \"SC-261 EDP 08\" edp.',11,1),(787,'2016-12-19 01:11:51.038368','477','SC-261',2,'No ha cambiado ningún campo.',11,1),(788,'2016-12-19 01:16:04.126843','577','OS2016-061',2,'Añadido/a \"ODC 02\" odc.',11,1),(789,'2016-12-19 01:30:07.350311','471','SC-253',2,'Añadido/a \"SC-253 EDP 09\" edp. Añadido/a \"SC-253 EDP 10\" edp. Añadido/a \"SC-253 EDP 11\" edp. Añadido/a \"SC-253 EDP 12\" edp. Añadido/a \"ODC 01\" odc.',11,1),(790,'2016-12-19 01:39:21.400490','629','NEXO ASESORIA GESTION CULTURAL',1,'Añadido.',10,1),(791,'2016-12-19 01:40:53.603455','643','OS2016-105',1,'Añadido.',11,1),(792,'2016-12-19 01:45:18.881159','463','SC-242',2,'Añadido/a \"SC-242 EDP 14\" edp.',11,1),(793,'2016-12-19 01:55:29.496633','574','OS2016-058',2,'Añadido/a \"ODC 02\" odc. Añadido/a \"ODC 03\" odc.',11,1),(794,'2016-12-19 01:58:14.788354','577','OS2016-061',2,'Añadido/a \"OS2016-061 EDP 04\" edp.',11,1),(795,'2016-12-19 02:03:42.280276','508','OS2014-036',2,'Añadido/a \"OS2014-036 EDP 11\" edp. Añadido/a \"OS2014-036 EDP 12\" edp.',11,1),(796,'2016-12-19 02:05:54.794784','630','SIPCOM',1,'Añadido.',10,1),(797,'2016-12-19 02:07:21.213157','644','OS2016-102',1,'Añadido.',11,1),(798,'2016-12-19 10:30:18.378026','644','OS2016-102',2,'Modificado/a EstCtto.',11,1),(799,'2016-12-20 11:17:24.220151','602','OS2016-084',2,'Modificados ValEDP para \"OS2016-084 EDP 01\" edp.',11,1),(800,'2016-12-21 09:28:47.818940','621','OS2016-092',2,'Modificados ValEDP y ObservEDP para \"OS2016-092 EDP 01\" edp.',11,1),(801,'2016-12-21 09:38:21.046159','637','CV2016-004',2,'Modificados ValEDP, DevAntEDP y ObservEDP para \"CV2016-004 EDP 01\" edp.',11,1),(802,'2016-12-21 09:41:11.765183','638','CV2016-005',2,'Modificados ValEDP, DevAntEDP y ObservEDP para \"CV2016-005 EDP 01\" edp.',11,1),(803,'2016-12-21 09:42:17.665761','639','CV2016-006',2,'Modificados ValEDP, DevRet y ObservEDP para \"CV2016-006 EDP 01\" edp.',11,1),(804,'2016-12-21 09:44:12.434951','640','CV2016-007',2,'Modificados ValEDP y DevAntEDP para \"CV2016-007 EDP 01\" edp.',11,1),(805,'2016-12-21 09:47:03.460743','642','CV2016-009',2,'Modificados ValEDP y DevAntEDP para \"CV2016-009 EDP 01\" edp.',11,1),(806,'2016-12-21 09:48:02.846327','642','CV2016-009',2,'Modificados ObservEDP para \"CV2016-009 EDP 01\" edp.',11,1),(807,'2016-12-21 09:49:58.776051','621','OS2016-092',2,'Modificados ObservEDP para \"OS2016-092 EDP 01\" edp.',11,1),(808,'2016-12-21 09:54:31.406782','614','OS2016-093',2,'Añadido/a \"OS2016-093 EDP 01\" edp.',11,1),(809,'2016-12-21 10:05:12.678901','520','OS2016-004',2,'Añadido/a \"OS2016-004 EDP 10\" edp. Añadido/a \"OS2016-004 EDP 11\" edp.',11,1),(810,'2016-12-21 10:08:09.563071','551','OS2016-035',2,'Añadido/a \"OS2016-035 EDP 06\" edp.',11,1),(811,'2016-12-21 10:11:17.714093','479','SC-263',2,'Añadido/a \"SC-263 EDP 04\" edp.',11,1),(812,'2016-12-21 10:14:48.897218','479','SC-263',2,'Añadido/a \"ODC 02\" odc. Modificados IdCecoODC para \"ODC 01\" odc.',11,1),(813,'2016-12-21 10:21:57.004897','479','SC-263',2,'Añadido/a \"ODC 03\" odc.',11,1),(814,'2016-12-21 10:24:13.536543','551','OS2016-035',2,'Añadido/a \"OS2016-035 EDP 07\" edp.',11,1),(815,'2016-12-21 10:32:11.144265','564','OS2016-048',2,'Añadido/a \"OS2016-048 EDP 05\" edp. Añadido/a \"OS2016-048 EDP 06\" edp.',11,1),(816,'2016-12-21 10:38:56.330727','460','SC-235',2,'Modificados ValEDP y DevAntEDP para \"SC-235 EDP 05\" edp. Modificados ValEDP y DevAntEDP para \"SC-235 EDP 06\" edp.',11,1),(817,'2016-12-21 10:45:06.199253','626','SC-286A',2,'Modificado/a ValorCtto. Añadido/a \"SC-286A EDP 02\" edp.',11,1),(818,'2016-12-21 10:54:20.392128','634','SC-286B',2,'Añadido/a \"SC-286B EDP 01\" edp. Añadido/a \"SC-286B EDP 02\" edp.',11,1),(819,'2016-12-21 10:57:44.044807','634','SC-286B',2,'Modificado/a ValorCtto y EstCtto.',11,1),(820,'2016-12-21 10:57:58.706401','626','SC-286A',2,'Modificado/a EstCtto.',11,1),(821,'2016-12-21 11:06:34.542596','564','OS2016-048',2,'Modificado/a ValorCtto.',11,1),(822,'2016-12-22 02:33:15.056511','623','SC-295',2,'Añadido/a \"SC-295 EDP 01\" edp. Añadido/a \"SC-295 EDP 02\" edp.',11,1),(823,'2016-12-22 02:37:05.533116','566','OS2016-050',2,'Añadido/a \"OS2016-050 EDP 06\" edp.',11,1),(824,'2016-12-22 02:39:26.634535','452','SC-215',2,'Añadido/a \"SC-215 EDP 23\" edp.',11,1),(825,'2016-12-22 02:42:59.789518','555','OS2016-039',2,'Añadido/a \"ODC 02\" odc.',11,1),(826,'2016-12-22 02:47:48.319512','555','OS2016-039',2,'Añadido/a \"OS2016-039 EDP 05\" edp. Modificados PresenEDP y AprobEDP para \"OS2016-039 EDP 04\" edp.',11,1),(827,'2016-12-22 03:00:12.365624','519','OS2016-003',2,'Añadido/a \"OS2016-003 EDP 11\" edp.',11,1),(828,'2016-12-22 03:03:02.351299','519','OS2016-003',2,'Añadido/a \"OS2016-003 EDP 12\" edp.',11,1),(829,'2016-12-22 03:06:35.161048','645','OS2016-103',1,'Añadido.',11,1),(830,'2016-12-22 03:08:22.058677','645','OS2016-103',2,'Añadido/a \"OS2016-103 EDP 01\" edp.',11,1),(831,'2016-12-22 03:11:49.538972','602','OS2016-084',2,'Añadido/a \"OS2016-084 EDP 02\" edp.',11,1),(832,'2016-12-22 03:19:37.745939','450','SC-207',2,'Añadido/a \"SC-207 EDP 27\" edp. Añadido/a \"SC-207 EDP 28\" edp.',11,1),(833,'2016-12-22 03:22:55.432475','473','SC-257',2,'Añadido/a \"SC-257 EDP 06\" edp.',11,1),(834,'2016-12-22 03:31:46.499901','459','SC-233',2,'Añadido/a \"SC-233 EDP 20\" edp. Modificados ValEDP y DevAntEDP para \"SC-233 EDP 18\" edp.',11,1),(835,'2016-12-22 03:36:07.219436','559','OS2016-043',2,'Modificado/a ValorCtto. Añadido/a \"OS2016-043 EDP 01\" edp.',11,1),(836,'2016-12-22 03:38:50.534877','577','OS2016-061',2,'Añadido/a \"OS2016-061 EDP 05\" edp.',11,1),(837,'2016-12-22 03:41:47.586820','577','OS2016-061',2,'Añadido/a \"OS2016-061 EDP 06\" edp.',11,1),(838,'2016-12-22 03:45:44.351335','540','OS2016-024',2,'Añadido/a \"OS2016-024 EDP 03\" edp. Añadido/a \"OS2016-024 EDP 04\" edp.',11,1),(839,'2016-12-22 03:57:40.452185','631','SALINAS & BELTRAN-GALINDO',1,'Añadido.',10,1),(840,'2016-12-22 03:59:04.352572','646','OS2016-108',1,'Añadido.',11,1),(841,'2016-12-22 04:03:08.848400','558','OS2016-042',2,'Modificado/a MonedaCtto, ValorCtto, EstCtto, FechIniCtto, FechTerCtto, FechSolCtto y FechAppCtto.',11,1),(842,'2016-12-22 04:10:00.566232','632','ATACAMA GESTION E INOVACION',1,'Añadido.',10,1),(843,'2016-12-22 04:11:48.352439','647','OS2016-106',1,'Añadido.',11,1),(844,'2016-12-22 04:19:35.815239','461','SC-237',2,'Añadido/a \"SC-237 EDP 13\" edp. Añadido/a \"SC-237 EDP 14\" edp. Añadido/a \"SC-237 EDP 15\" edp.',11,1),(845,'2016-12-22 04:22:21.083825','454','SC-220',2,'Añadido/a \"SC-220 EDP 24\" edp.',11,1),(846,'2016-12-22 04:29:26.642127','456','SC-224',2,'Añadido/a \"SC-224 EDP 23\" edp. Añadido/a \"SC-224 EDP 24\" edp.',11,1),(847,'2016-12-22 04:35:01.203723','594','OS2016-078',2,'Añadido/a \"OS2016-078 EDP 05\" edp. Añadido/a \"OS2016-078 EDP 06\" edp. Añadido/a \"OS2016-078 EDP 07\" edp.',11,1),(848,'2016-12-22 04:40:28.127149','496','OS2011-057',2,'Añadido/a \"OS2011-057 EDP 63\" edp. Añadido/a \"OS2011-057 EDP 64\" edp.',11,1),(849,'2016-12-22 04:44:41.786176','581','OS2016-065',2,'Añadido/a \"OS2016-065 EDP 01\" edp. Añadido/a \"OS2016-065 EDP 02\" edp.',11,1),(850,'2016-12-22 04:50:02.301336','601','OS2016-083',2,'Añadido/a \"OS2016-083 EDP 02\" edp. Modificados ValEDP y DevAntEDP para \"OS2016-083 EDP 01\" edp.',11,1),(851,'2016-12-22 04:54:07.472433','488','SC-272',2,'Añadido/a \"SC-272 EDP 01\" edp.',11,1),(852,'2016-12-22 04:54:40.946781','488','SC-272',2,'Añadido/a \"SC-272 EDP 01\" edp.',11,1),(853,'2016-12-22 04:57:57.795469','557','OS2016-041',2,'Añadido/a \"OS2016-041 EDP 03\" edp.',11,1),(854,'2016-12-22 05:01:31.379420','490','SC-274',2,'Añadido/a \"SC-274 EDP 01\" edp.',11,1),(855,'2016-12-22 10:41:48.540020','470','SC-252',2,'Modificados RetEDP para \"SC-252 EDP 11\" edp.',11,1),(856,'2016-12-22 10:59:56.691519','492','SC-276',2,'Añadido/a \"SC-276 EDP 02\" edp. Añadido/a \"SC-276 EDP 03\" edp. Añadido/a \"SC-276 EDP 04\" edp.',11,1),(857,'2016-12-22 11:12:48.159159','453','SC-216',2,'Añadido/a \"SC-216 EDP 18\" edp.',11,1),(858,'2016-12-22 11:17:05.074231','468','SC-249',2,'Añadido/a \"SC-249 EDP 07\" edp.',11,1),(859,'2016-12-22 11:23:01.946455','474','SC-258',2,'No ha cambiado ningún campo.',11,1),(860,'2016-12-23 09:51:13.487006','639','CV2016-006',2,'Modificados DevAntEDP y DevRet para \"CV2016-006 EDP 01\" edp.',11,1),(861,'2016-12-23 10:01:21.757376','559','OS2016-043',2,'Modificado/a MonedaCtto.',11,1),(862,'2016-12-23 10:07:09.678352','480','SC-264',2,'Modificados DevAntEDP y RetEDP para \"SC-264 EDP 02\" edp.',11,1),(863,'2017-01-02 22:26:56.059699','647','OS2016-106',2,'Añadido/a \"OS2016-106 EDP 01\" edp.',11,1),(864,'2017-01-02 22:30:23.037559','525','OS2016-009',2,'Añadido/a \"OS2016-009 EDP 02\" edp.',11,1),(865,'2017-01-02 22:33:37.007627','474','SC-258',2,'Añadido/a \"SC-258 EDP 08\" edp.',11,1),(866,'2017-01-02 22:35:44.439426','474','SC-258',2,'Añadido/a \"SC-258 EDP 09\" edp. Modificados RetEDP para \"SC-258 EDP 08\" edp.',11,1),(867,'2017-01-02 22:39:50.662936','475','SC-259',2,'Añadido/a \"ODC 01\" odc.',11,1),(868,'2017-01-02 22:41:47.642462','475','SC-259',2,'Añadido/a \"SC-259 EDP 02\" edp.',11,1),(869,'2017-01-02 22:45:58.516428','472','SC-256',2,'Añadido/a \"SC-256 EDP 03\" edp. Añadido/a \"ODC 01\" odc.',11,1),(870,'2017-01-02 22:49:20.146050','609','OS2016-088',2,'Añadido/a \"OS2016-088 EDP 01\" edp. Añadido/a \"OS2016-088 EDP 02\" edp.',11,1),(871,'2017-01-02 22:53:43.933735','600','OS2016-082',2,'Añadido/a \"OS2016-082 EDP 02\" edp. Modificados ValEDP y DevAntEDP para \"OS2016-082 EDP 01\" edp.',11,1),(872,'2017-01-02 22:56:27.292699','538','OS2016-022',2,'Añadido/a \"OS2016-022 EDP 05\" edp.',11,1),(873,'2017-01-02 22:57:33.940596','538','OS2016-022',2,'Añadido/a \"OS2016-022 EDP 06\" edp.',11,1),(874,'2017-01-02 23:00:35.176241','633','GCF INGENIEROS',1,'Añadido.',10,1),(875,'2017-01-02 23:03:47.668461','648','OS2016-109',1,'Añadido.',11,1),(876,'2017-01-02 23:06:39.329099','613','OS2016-091',2,'Añadido/a \"ODC 02\" odc.',11,1),(877,'2017-01-03 00:18:28.736475','452','SC-215',2,'Modificado/a AjusteCom.',11,1),(878,'2017-01-03 00:23:54.671445','468','SC-249',2,'Añadido/a \"ODC 01\" odc.',11,1),(879,'2017-01-03 00:25:49.726932','566','OS2016-050',2,'Modificado/a ValorCtto.',11,1),(880,'2017-01-06 11:03:28.581699','643','OS2016-105',2,'Añadido/a \"OS2016-105 EDP 01\" edp.',11,1),(881,'2017-01-06 11:04:37.479372','614','OS2016-093',2,'Modificados DevAntEDP para \"OS2016-093 EDP 01\" edp.',11,1),(882,'2017-01-07 13:15:12.439488','634','SC-286B',2,'Modificados ValEDP para \"SC-286B EDP 01\" edp.',11,1),(883,'2017-01-07 13:19:07.393495','482','SC-266',2,'Añadido/a \"SC-266 EDP 04\" edp.',11,1),(884,'2017-01-07 13:21:39.222890','634','SC-286B',2,'Modificado/a LocalCtto.',11,1),(885,'2017-01-07 13:21:57.555853','633','SC-296',2,'Modificado/a LocalCtto.',11,1),(886,'2017-01-07 13:22:49.299808','620','OS2016-096',2,'Modificado/a LocalCtto.',11,1),(887,'2017-01-07 13:25:27.480013','621','OS2016-092',2,'Modificado/a LocalCtto.',11,1),(888,'2017-01-07 13:25:58.014123','625','OS2016-101',2,'Modificado/a LocalCtto.',11,1),(889,'2017-01-07 13:29:53.206343','635','CV2016-002',2,'Modificado/a LocalCtto.',11,1),(890,'2017-01-07 13:30:33.545652','636','CV2016-003',2,'Modificado/a ObservCtto.',11,1),(891,'2017-01-07 13:30:41.564772','637','CV2016-004',2,'Modificado/a LocalCtto.',11,1),(892,'2017-01-07 13:30:50.398908','638','CV2016-005',2,'Modificado/a LocalCtto.',11,1),(893,'2017-01-07 13:30:58.211131','639','CV2016-006',2,'Modificado/a LocalCtto.',11,1),(894,'2017-01-07 13:31:16.074612','640','CV2016-007',2,'Modificado/a LocalCtto.',11,1),(895,'2017-01-07 13:31:22.758885','642','CV2016-009',2,'Modificado/a LocalCtto.',11,1),(896,'2017-01-07 13:33:28.862397','626','SC-286A',2,'Modificado/a IdCecoCtto.',11,1),(897,'2017-01-07 13:33:41.479994','634','SC-286B',2,'Modificado/a IdCecoCtto.',11,1),(898,'2017-01-16 08:50:47.609996','634','FINNING CHILE S.A',1,'Añadido.',10,1),(899,'2017-01-16 08:56:32.480731','649','SC-300',1,'Añadido.',11,1),(900,'2017-01-16 09:00:25.762968','635','<NAME>',1,'Añadido.',10,1),(901,'2017-01-16 09:05:02.570567','650','SC-299',1,'Añadido.',11,1),(902,'2017-01-16 09:13:08.797705','557','OS2016-041',2,'Añadido/a \"ODC 03\" odc.',11,1),(903,'2017-01-16 09:15:53.920092','558','OS2016-042',2,'Añadido/a \"OS2016-042 EDP 01\" edp.',11,1),(904,'2017-01-16 09:20:01.557769','463','SC-242',2,'Añadido/a \"SC-242 EDP 15\" edp. Modificados RetEDP para \"SC-242 EDP 14\" edp.',11,1),(905,'2017-01-16 09:24:20.718176','636','CIENCIAS ATMOSFERICA APLICADAS',1,'Añadido.',10,1),(906,'2017-01-16 09:28:00.073956','651','OS2017-002',1,'Añadido.',11,1),(907,'2017-01-16 09:30:24.591925','597','SC-278',2,'Añadido/a \"SC-278 EDP 01\" edp.',11,1),(908,'2017-01-23 00:42:12.816957','650','SC-299',2,'Modificado/a EstCtto.',11,1),(909,'2017-01-23 00:42:12.820269','649','SC-300',2,'Modificado/a EstCtto.',11,1),(910,'2017-01-23 00:42:12.822750','644','OS2016-102',2,'Modificado/a EstCtto.',11,1),(911,'2017-01-23 00:42:12.825553','643','OS2016-105',2,'Modificado/a EstCtto.',11,1),(912,'2017-01-23 00:42:12.828212','633','SC-296',2,'Modificado/a EstCtto.',11,1),(913,'2017-01-23 00:43:29.991667','612','SC-285',2,'Modificado/a EstCtto.',11,1),(914,'2017-01-23 00:43:29.994570','605','SC-282',2,'Modificado/a EstCtto.',11,1),(915,'2017-01-23 00:43:29.997039','604','SC-281',2,'Modificado/a EstCtto.',11,1),(916,'2017-01-23 00:49:08.479615','652','OS2017-003',1,'Añadido.',11,1),(917,'2017-01-23 09:10:11.412646','491','SC-275',2,'Añadido/a \"SC-275 EDP 01\" edp.',11,1),(918,'2017-01-23 09:16:25.758679','637','DELFINA LÓPEZ ESPEJO',1,'Añadido.',10,1),(919,'2017-01-23 09:18:47.644070','653','OS2017-001',1,'Añadido.',11,1),(920,'2017-01-23 09:19:06.396834','653','OS2017-001',2,'Modificado/a DescCtto.',11,1),(921,'2017-01-23 09:22:15.297983','653','OS2017-001',2,'Modificado/a FechIniCtto y FechSolCtto. Añadido/a \"OS2017-001 EDP 01\" edp.',11,1),(922,'2017-01-23 09:27:25.798138','654','OS2017-004',1,'Añadido.',11,1),(923,'2017-01-23 09:33:04.050387','627','SC-287',2,'Modificado/a ValorCtto, IdCtta, EstCtto, FechSolCtto, FechAppCtto y ObservCtto.',11,1),(924,'2017-01-23 09:38:44.209425','612','SC-285',2,'Modificado/a ValorCtto y FechAppCtto.',11,1),(925,'2017-01-23 09:45:54.161899','496','OS2011-057',2,'Modificado/a EstCtto.',11,1),(926,'2017-01-23 09:45:54.166350','518','OS2016-002',2,'Modificado/a EstCtto.',11,1),(927,'2017-01-23 09:46:17.720983','519','OS2016-003',2,'Modificado/a EstCtto.',11,1),(928,'2017-01-23 09:47:14.210102','542','OS2016-026',2,'Modificado/a EstCtto.',11,1),(929,'2017-01-23 09:47:42.847079','570','OS2016-054',2,'Modificado/a EstCtto.',11,1),(930,'2017-01-23 09:48:14.816752','610','OS2016-089',2,'Modificado/a EstCtto.',11,1),(931,'2017-01-23 09:48:14.821504','647','OS2016-106',2,'Modificado/a EstCtto.',11,1),(932,'2017-01-23 09:48:47.794125','614','OS2016-093',2,'Modificado/a EstCtto.',11,1),(933,'2017-01-23 09:48:47.797102','619','OS2016-095',2,'Modificado/a EstCtto.',11,1),(934,'2017-01-23 09:48:47.799669','620','OS2016-096',2,'Modificado/a EstCtto.',11,1),(935,'2017-01-23 09:48:54.470844','621','OS2016-092',2,'Modificado/a EstCtto.',11,1),(936,'2017-01-23 09:50:16.582581','451','SC-214',2,'Modificado/a EstCtto.',11,1),(937,'2017-01-23 09:50:16.585432','453','SC-216',2,'Modificado/a EstCtto.',11,1),(938,'2017-01-23 09:50:16.588514','455','SC-222',2,'Modificado/a EstCtto.',11,1),(939,'2017-01-23 09:50:16.591324','461','SC-237',2,'Modificado/a EstCtto.',11,1),(940,'2017-01-23 09:50:59.581419','476','SC-260',2,'Modificado/a EstCtto.',11,1),(941,'2017-02-06 02:22:26.539155','638','Piteau Associates Chile SpA',1,'Añadido.',10,1),(942,'2017-02-06 02:23:23.088002','605','SC-282',2,'Modificado/a ValorCtto, IdCtta, FechIniCtto, FechTerCtto, AjustNumEDP y FechAppCtto.',11,1),(943,'2017-02-06 02:30:37.728444','477','SC-261',2,'Añadido/a \"ODC 01\" odc.',11,1),(944,'2017-02-06 02:35:18.829825','477','SC-261',2,'Añadido/a \"SC-261 EDP 09\" edp.',11,1),(945,'2017-02-06 02:36:15.262350','605','SC-282',2,'Modificado/a IdCecoCtto.',11,1),(946,'2017-02-06 02:37:50.154055','639','TRACTEBEL ENG',1,'Añadido.',10,1),(947,'2017-02-06 02:40:54.605285','630','SC-290',2,'Modificado/a ValorCtto, IdCtta, EstCtto, FechIniCtto, FechTerCtto, CordCtto, FechSolCtto, FechAppCtto y ObservCtto.',11,1),(948,'2017-02-06 02:43:41.323070','627','SC-287',2,'Modificado/a FechIniCtto, FechTerCtto y ObservCtto.',11,1),(949,'2017-02-06 02:57:40.729269','535','OS2016-019',2,'Añadido/a \"OS2016-019 EDP 06\" edp.',11,1),(950,'2017-02-06 03:08:14.408028','655','SC-304',1,'Añadido.',11,1),(951,'2017-02-06 03:11:24.054745','640','The Bridge Comunicaciones',1,'Añadido.',10,1),(952,'2017-02-06 03:13:31.738592','656','OS2016-107',1,'Añadido.',11,1),(953,'2017-02-06 03:18:19.331853','452','SC-215',2,'Añadido/a \"ODC 02\" odc.',11,1),(954,'2017-02-06 03:24:12.869590','480','SC-264',2,'Añadido/a \"SC-264 EDP 04\" edp.',11,1),(955,'2017-02-06 03:28:26.817160','623','SC-295',2,'Añadido/a \"SC-295 EDP 03\" edp.',11,1),(956,'2017-02-06 03:31:23.850192','641','CONSULTORA VALLENORTE',1,'Añadido.',10,1),(957,'2017-02-06 03:36:37.384420','657','OS2017-005',1,'Añadido.',11,1),(958,'2017-02-06 03:38:30.725651','562','OS2016-046',2,'Modificados NumODC para \"ODC 02\" odc.',11,1),(959,'2017-02-06 03:41:44.100026','562','OS2016-046',2,'Añadido/a \"ODC 03\" odc.',11,1),(960,'2017-02-06 03:43:10.325354','562','OS2016-046',2,'Añadido/a \"ODC 04\" odc.',11,1),(961,'2017-02-06 03:45:17.885655','459','SC-233',2,'Añadido/a \"ODC 03\" odc.',11,1),(962,'2017-02-06 03:48:34.593276','520','OS2016-004',2,'Añadido/a \"ODC 03\" odc.',11,1),(963,'2017-02-06 03:54:02.855979','604','SC-281',2,'Modificado/a MonedaCtto, ValorCtto, IdCtta, EstCtto, FechIniCtto, FechTerCtto, IdCecoCtto, AjustNumEDP, FechAppCtto y ObservCtto.',11,1),(964,'2017-02-06 03:58:16.610150','623','SC-295',2,'Añadido/a \"ODC 01\" odc.',11,1),(965,'2017-02-06 09:59:59.581373','657','OS2017-005',2,'Modificado/a DescCtto y EstCtto.',11,1),(966,'2017-02-06 10:00:19.414871','651','OS2017-002',2,'Modificado/a EstCtto.',11,1),(967,'2017-02-06 10:01:01.214173','654','OS2017-004',2,'Modificado/a EstCtto.',11,1),(968,'2017-02-06 10:01:01.217518','653','OS2017-001',2,'Modificado/a EstCtto.',11,1),(969,'2017-02-06 10:01:01.220220','652','OS2017-003',2,'Modificado/a EstCtto.',11,1),(970,'2017-02-06 10:05:09.110940','493','SC-277',2,'Modificado/a ObservCtto.',11,1),(971,'2017-02-06 10:05:09.114378','480','SC-264',2,'Modificado/a EstCtto y ObservCtto.',11,1),(972,'2017-02-06 10:06:25.897726','450','SC-207',2,'Modificado/a ObservCtto.',11,1),(973,'2017-02-06 10:07:48.448664','627','SC-287',2,'Modificado/a EstCtto.',11,1),(974,'2017-02-06 10:07:48.451877','597','SC-278',2,'Modificado/a EstCtto.',11,1),(975,'2017-02-06 10:07:48.454541','489','SC-273',2,'Modificado/a EstCtto.',11,1),(976,'2017-02-06 10:07:48.457001','488','SC-272',2,'Modificado/a EstCtto.',11,1),(977,'2017-02-06 10:21:39.871449','642','DORGAMBIDE LTDA',1,'Añadido.',10,1),(978,'2017-02-06 10:22:43.717118','612','SC-285',2,'Modificado/a ValorCtto y IdCtta.',11,1),(979,'2017-02-06 10:26:33.123773','5','CAD',2,'Modificado/a ValorMoneda y FechMoneda.',14,1),(980,'2017-02-06 10:27:17.919655','4','EUR',2,'Modificado/a ValorMoneda y FechMoneda.',14,1),(981,'2017-02-06 10:28:01.991100','2','UF',2,'Modificado/a ValorMoneda y FechMoneda.',14,1),(982,'2017-02-12 20:26:16.988943','459','SC-233',2,'Añadido/a \"SC-233 EDP 21\" edp.',11,1),(983,'2017-02-12 20:34:19.384635','560','OS2016-044',2,'Añadido/a \"ODC 01\" odc.',11,1),(984,'2017-02-12 20:37:46.822098','560','OS2016-044',2,'Añadido/a \"OS2016-044 EDP 01\" edp.',11,1),(985,'2017-02-12 20:39:41.132418','560','OS2016-044',2,'Añadido/a \"OS2016-044 EDP 02\" edp.',11,1),(986,'2017-02-12 20:43:30.458031','550','OS2016-034',2,'Añadido/a \"OS2016-034 EDP 01\" edp.',11,1),(987,'2017-02-12 20:45:56.611094','550','OS2016-034',2,'Añadido/a \"OS2016-034 EDP 02\" edp. Modificados PresenEDP y AprobEDP para \"OS2016-034 EDP 01\" edp.',11,1),(988,'2017-02-12 20:49:07.233160','550','OS2016-034',2,'Añadido/a \"ODC 01\" odc.',11,1),(989,'2017-02-12 20:56:44.582472','598','SC-279',2,'Añadido/a \"SC-279 EDP 03\" edp. Añadido/a \"SC-279 EDP 04\" edp.',11,1),(990,'2017-02-12 21:00:53.296060','562','OS2016-046',2,'Añadido/a \"OS2016-046 EDP 02\" edp.',11,1),(991,'2017-02-12 21:03:06.545598','520','OS2016-004',2,'Añadido/a \"OS2016-004 EDP 12\" edp.',11,1),(992,'2017-02-12 21:05:30.198148','477','SC-261',2,'Añadido/a \"SC-261 EDP 10\" edp.',11,1),(993,'2017-02-12 21:07:53.203196','656','OS2016-107',2,'Añadido/a \"OS2016-107 EDP 01\" edp.',11,1),(994,'2017-02-12 21:11:20.617644','613','OS2016-091',2,'Añadido/a \"ODC 03\" odc.',11,1),(995,'2017-02-12 21:36:14.708916','643','Len y Asociados Ingenieros Consultores Ltda',1,'Añadido.',10,1),(996,'2017-02-12 21:40:30.478085','631','SC-291',2,'Modificado/a ValorCtto, IdCtta, EstCtto, FechIniCtto, FechTerCtto, FechSolCtto, FechAppCtto y ObservCtto.',11,1),(997,'2017-02-12 21:45:29.746467','644','KUNZA CONSULTORES S.A.',1,'Añadido.',10,1),(998,'2017-02-12 21:49:47.781933','658','SC-307',1,'Añadido.',11,1),(999,'2017-02-12 21:53:43.692027','452','SC-215',2,'Añadido/a \"SC-215 EDP 24\" edp.',11,1),(1000,'2017-02-12 21:54:03.754917','636','CV2016-003',2,'No ha cambiado ningún campo.',11,1),(1001,'2017-02-12 21:58:01.699510','508','OS2014-036',2,'Añadido/a \"OS2014-036 EDP 13\" edp.',11,1),(1002,'2017-02-12 22:03:45.936445','650','SC-299',2,'Modificado/a MonedaCtto y ValorCtto. Añadido/a \"SC-299 EDP 01\" edp.',11,1),(1003,'2017-02-20 09:44:20.321670','540','OS2016-024',2,'Añadido/a \"OS2016-024 EDP 05\" edp.',11,1),(1004,'2017-02-20 09:47:00.083577','609','OS2016-088',2,'Añadido/a \"OS2016-088 EDP 03\" edp.',11,1),(1005,'2017-02-20 09:50:27.263618','473','SC-257',2,'Añadido/a \"SC-257 EDP 07\" edp.',11,1),(1006,'2017-02-20 09:55:20.070340','645','<NAME>',1,'Añadido.',10,1),(1007,'2017-02-20 09:58:37.266116','659','OS2017-007',1,'Añadido.',11,1),(1008,'2017-02-20 10:03:12.189418','553','OS2016-037',2,'Añadido/a \"ODC 02\" odc.',11,1),(1009,'2017-02-20 10:03:51.987297','659','OS2017-007',2,'Modificado/a ObservCtto.',11,1),(1010,'2017-02-20 10:10:43.989858','655','SC-304',2,'Añadido/a \"SC-304 EDP 01\" edp.',11,1),(1011,'2017-02-20 10:21:12.500945','646','JML INTERNATIONAL BUSINESS AND FINANCIAL CONSULTANTS LLC',1,'Añadido.',10,1),(1012,'2017-02-20 10:28:48.072903','660','SC-307',1,'Añadido.',11,1),(1013,'2017-02-20 10:31:00.843703','660','SC-307',2,'Modificado/a ObservCtto.',11,1),(1014,'2017-02-20 10:35:11.958192','660','SC-307',2,'Añadido/a \"SC-307 EDP 01\" edp.',11,1),(1015,'2017-02-20 10:35:40.908218','660','SC-306',2,'Modificado/a NumCtto.',11,1),(1016,'2017-02-20 10:35:53.779165','660','SC-306',2,'Modificado/a EstCtto.',11,1),(1017,'2017-02-20 10:41:22.593511','603','SC-280',2,'Modificado/a ValorCtto, IdCtta, EstCtto, FechIniCtto, FechTerCtto, IdCecoCtto, AjustNumEDP, LocalCtto y FechAppCtto.',11,1),(1018,'2017-02-20 10:42:53.595604','603','SC-280',2,'Modificado/a ObservCtto.',11,1),(1019,'2017-02-27 09:22:26.833342','647','<NAME>',1,'Añadido.',10,1),(1020,'2017-02-27 09:49:44.936331','456','SC-224',2,'Añadido/a \"ODC 03\" odc.',11,1),(1021,'2017-02-27 09:54:26.730461','661','OS2017-009',1,'Añadido.',11,1),(1022,'2017-02-27 09:58:24.291649','654','OS2017-004',2,'Añadido/a \"ODC 01\" odc.',11,1),(1023,'2017-02-27 10:03:52.203653','487','SC-271',2,'Añadido/a \"SC-271 EDP 01\" edp.',11,1),(1024,'2017-02-27 10:07:26.878802','659','OS2017-007',2,'Modificado/a FechIniCtto. Añadido/a \"OS2017-007 EDP 01\" edp.',11,1),(1025,'2017-02-27 10:10:28.626349','623','SC-295',2,'Añadido/a \"SC-295 EDP 04\" edp.',11,1),(1026,'2017-02-27 10:14:21.154431','648','MIN<NAME>',1,'Añadido.',10,1),(1027,'2017-02-27 10:17:36.411419','662','OS2017-010',1,'Añadido.',11,1),(1028,'2017-02-27 10:20:56.569331','535','OS2016-019',2,'Añadido/a \"ODC 02\" odc.',11,1),(1029,'2017-02-27 10:22:58.050901','535','OS2016-019',2,'Añadido/a \"OS2016-019 EDP 07\" edp.',11,1),(1030,'2017-02-27 10:35:14.739616','649','SERVICIOS INDUSTRIALES WARNER SPA',1,'Añadido.',10,1),(1031,'2017-02-27 10:38:03.258004','611','SC-284',2,'Modificado/a ValorCtto, IdCtta, EstCtto, FechIniCtto, FechTerCtto, IdCecoCtto, AdjudicCtto, FechAppCtto y ObservCtto.',11,1),(1032,'2017-02-27 10:38:28.236033','611','SC-284',2,'Modificado/a ObservCtto.',11,1),(1033,'2017-02-27 10:45:44.918660','663','SC-309',1,'Añadido.',11,1),(1034,'2017-02-27 10:57:48.522528','460','SC-235',2,'Añadido/a \"SC-235 EDP 07\" edp.',11,1),(1035,'2017-03-03 10:02:08.613199','52','685 Engineering',2,'Modificado/a NomArea y CodArea.',7,1),(1036,'2017-03-03 10:02:42.421686','51','684 SERA',2,'Modificado/a NomArea y CodArea.',7,1),(1037,'2017-03-03 10:06:05.974584','46','683 Legal',2,'Modificado/a CodArea.',7,1),(1038,'2017-03-03 10:07:07.132964','43','682 Administration',2,'Modificado/a NomArea y CodArea.',7,1),(1039,'2017-03-03 10:07:55.844327','41','681 Project Team',2,'Modificado/a NomArea y CodArea.',7,1),(1040,'2017-03-03 10:10:06.347572','53','687 Operations and t',1,'Añadido.',7,1),(1041,'2017-03-03 10:10:42.192868','54','688 Management',1,'Añadido.',7,1),(1042,'2017-03-03 10:24:06.953827','208','51-11-3351',2,'Modificado/a CodCeco, NomCeco y Budget.',8,1),(1043,'2017-03-03 10:27:50.741700','208','51-11-3350',2,'Modificado/a CodCeco, NomCeco y Budget.',8,1),(1044,'2017-03-03 10:29:02.050318','207','51-11-3351',2,'Modificado/a CodCeco, NomCeco y Budget.',8,1),(1045,'2017-03-03 10:29:45.418531','207','51-11-3351',2,'Modificado/a NomCeco.',8,1),(1046,'2017-03-03 10:32:15.949775','205','51-11-3347',2,'Modificado/a NomCeco.',8,1),(1047,'2017-03-03 10:33:15.646462','204','51-11-3346',2,'Modificado/a NomCeco y Budget.',8,1),(1048,'2017-03-03 10:34:26.488275','203','51-11-3344',2,'Modificado/a NomCeco y Budget.',8,1),(1049,'2017-03-03 10:36:41.565575','202','51-11-3331',2,'Modificado/a IdAreas, NomCeco y Budget.',8,1),(1050,'2017-03-03 10:39:38.802629','201','51-11-3356',2,'Modificado/a IdAreas, CodCeco, NomCeco y Budget.',8,1),(1051,'2017-03-03 10:41:13.926535','199','51-11-3343',2,'Modificado/a IdAreas, NomCeco y Budget.',8,1),(1052,'2017-03-03 10:41:58.819416','198','51-11-3342',2,'Modificado/a IdAreas, NomCeco y Budget.',8,1),(1053,'2017-03-03 10:43:10.059222','197','51-11-3341',2,'Modificado/a IdAreas, NomCeco y Budget.',8,1),(1054,'2017-03-03 10:45:10.801438','195','51-11-3341',2,'Modificado/a NomCeco.',8,1),(1055,'2017-03-03 10:47:31.981495','193','51-11-3353',2,'Modificado/a IdAreas, CodCeco, NomCeco y Budget.',8,1),(1056,'2017-03-03 10:50:56.608081','192','51-11-3354',2,'Modificado/a IdAreas, CodCeco, NomCeco y Budget.',8,1),(1057,'2017-03-03 10:51:52.339332','191','51-11-3332',2,'Modificado/a Budget.',8,1),(1058,'2017-03-03 10:55:10.509734','189','51-11-3355',2,'Modificado/a IdAreas, CodCeco, NomCeco y Budget.',8,1),(1059,'2017-03-03 10:56:57.027855','188','51-11-3324',2,'Modificado/a IdAreas, NomCeco y Budget.',8,1),(1060,'2017-03-03 10:57:39.791157','186','51-11-3340',2,'Modificado/a Budget.',8,1),(1061,'2017-03-03 10:57:57.447631','186','51-11-3340',2,'Modificado/a NomCeco.',8,1),(1062,'2017-03-03 10:58:34.416455','185','51-11-3339',2,'Modificado/a NomCeco y Budget.',8,1),(1063,'2017-03-03 10:58:59.821015','184','51-11-3338',2,'Modificado/a NomCeco y Budget.',8,1),(1064,'2017-03-03 10:59:56.906669','183','51-11-3337',2,'Modificado/a NomCeco y Budget.',8,1),(1065,'2017-03-03 11:00:45.870150','181','51-11-3336',2,'Modificado/a NomCeco.',8,1),(1066,'2017-03-03 11:02:09.298695','180','51-11-3052',2,'Modificado/a IdAreas, NomCeco y Budget.',8,1),(1067,'2017-03-03 11:02:51.628250','180','51-11-3052',2,'Modificado/a NomCeco.',8,1),(1068,'2017-03-03 11:04:49.282188','178','51-11-3329',2,'Modificado/a NomCeco.',8,1),(1069,'2017-03-03 11:05:32.872408','177','51-11-3328',2,'Modificado/a NomCeco.',8,1),(1070,'2017-03-03 11:05:54.201461','176','51-11-3323',2,'Modificado/a NomCeco.',8,1),(1071,'2017-03-03 11:06:52.391819','175','51-11-3322',2,'Modificado/a NomCeco.',8,1),(1072,'2017-03-03 11:07:12.063249','174','51-11-3321',2,'Modificado/a NomCeco.',8,1),(1073,'2017-03-03 11:07:30.013409','173','51-11-3317',2,'Modificado/a NomCeco.',8,1),(1074,'2017-03-03 11:08:06.182474','172','51-11-3316',2,'Modificado/a NomCeco.',8,1),(1075,'2017-03-03 11:09:15.049619','170','51-11-3315',2,'Modificado/a NomCeco y Budget.',8,1),(1076,'2017-03-03 11:10:15.527439','169','51-11-3314',2,'Modificado/a IdAreas, NomCeco y Budget.',8,1),(1077,'2017-03-03 11:10:43.383211','170','51-11-3315',2,'Modificado/a NomCeco.',8,1),(1078,'2017-03-03 11:11:11.884301','167','51-11-3309',2,'Modificado/a NomCeco y Budget.',8,1),(1079,'2017-03-03 11:11:43.092990','167','51-11-3309',2,'Modificado/a NomCeco.',8,1),(1080,'2017-03-03 11:12:33.662066','164','51-11-3305',2,'Modificado/a Budget.',8,1),(1081,'2017-03-03 11:12:57.852925','164','51-11-3305',2,'Modificado/a NomCeco.',8,1),(1082,'2017-03-03 11:13:28.421015','165','51-11-3306',2,'Modificado/a NomCeco y Budget.',8,1),(1083,'2017-03-03 11:14:28.950441','163','51-11-3304',2,'Modificado/a IdAreas, NomCeco y Budget.',8,1),(1084,'2017-03-03 11:15:23.883731','164','51-11-3305',2,'Modificado/a IdAreas.',8,1),(1085,'2017-03-03 11:15:43.298163','167','51-11-3309',2,'Modificado/a IdAreas.',8,1),(1086,'2017-03-03 11:16:24.756184','165','51-11-3306',2,'Modificado/a IdAreas.',8,1),(1087,'2017-03-03 11:17:07.437234','162','51-11-3303',2,'Modificado/a IdAreas, NomCeco y Budget.',8,1),(1088,'2017-03-03 11:17:19.552927','163','51-11-3304',2,'Modificado/a NomCeco.',8,1),(1089,'2017-03-03 11:18:25.391768','161','51-11-3302',2,'Modificado/a IdAreas, NomCeco y Budget.',8,1),(1090,'2017-03-03 11:19:10.575910','159','51-11-3301',2,'Modificado/a NomCeco y Budget.',8,1),(1091,'2017-03-03 11:19:54.934453','159','51-11-3301',2,'Modificado/a NomCeco.',8,1),(1092,'2017-03-03 11:20:58.080251','209','51-11-3352',1,'Añadido.',8,1),(1093,'2017-03-03 11:23:22.928735','210','51-11-3345',1,'Añadido.',8,1),(1094,'2017-03-03 11:24:13.492571','50','684 Borrar_CSR',2,'Modificado/a NomArea.',7,1),(1095,'2017-03-03 11:24:39.246701','49','684 Borrar_Communi',2,'Modificado/a NomArea.',7,1),(1096,'2017-03-03 11:24:58.574250','48','683 Borrar_Mine',2,'Modificado/a NomArea.',7,1),(1097,'2017-03-03 11:25:16.638518','47','683 Borrar_Metallur',2,'Modificado/a NomArea.',7,1),(1098,'2017-03-03 11:25:32.325140','45','683 borrar_Geology',2,'Modificado/a NomArea.',7,1),(1099,'2017-03-03 11:25:40.482089','47','683 borrar_Metallur',2,'Modificado/a NomArea.',7,1),(1100,'2017-03-03 11:25:48.087976','49','684 borrar_Communi',2,'Modificado/a NomArea.',7,1),(1101,'2017-03-03 11:25:55.389325','50','684 borrar_CSR',2,'Modificado/a NomArea.',7,1),(1102,'2017-03-03 11:26:03.388892','48','683 borrar_Mine',2,'Modificado/a NomArea.',7,1),(1103,'2017-03-03 11:26:32.843744','44','683 borrar_Engineer',2,'Modificado/a NomArea.',7,1),(1104,'2017-03-03 11:27:04.546782','42','682 borrar_Gen Exp',2,'Modificado/a NomArea.',7,1),(1105,'2017-03-05 22:02:12.980704','207','51-11-3351',2,'Modificado/a NomCeco y Budget.',8,1),(1106,'2017-03-05 22:07:54.901501','205','_1-11-3347',2,'Modificado/a CodCeco.',8,1),(1107,'2017-03-05 22:09:41.700077','195','_1-11-3341',2,'Modificado/a CodCeco.',8,1),(1108,'2017-03-05 22:11:26.232956','181','_1-11-3336',2,'Modificado/a CodCeco.',8,1),(1109,'2017-03-05 22:11:57.281864','178','_1-11-3329',2,'Modificado/a CodCeco.',8,1),(1110,'2017-03-05 22:12:17.237778','177','_1-11-3328',2,'Modificado/a CodCeco.',8,1),(1111,'2017-03-05 22:12:32.178610','176','_1-11-3323',2,'Modificado/a CodCeco.',8,1),(1112,'2017-03-05 22:12:58.663415','175','_1-11-3322',2,'Modificado/a CodCeco.',8,1),(1113,'2017-03-05 22:13:10.295449','174','_1-11-3321',2,'Modificado/a CodCeco.',8,1),(1114,'2017-03-05 22:13:21.409948','173','_1-11-3317',2,'Modificado/a CodCeco.',8,1),(1115,'2017-03-05 22:13:41.170817','172','_1-11-3316',2,'Modificado/a CodCeco.',8,1),(1116,'2017-03-05 22:15:11.478234','166','_1-11-3308',2,'Modificado/a CodCeco y NomCeco.',8,1),(1117,'2017-03-05 22:33:25.669389','655','SC-304',2,'Modificado/a IdCecoCtto.',11,1),(1118,'2017-03-05 22:33:25.673918','650','SC-299',2,'Modificado/a IdCecoCtto.',11,1),(1119,'2017-03-05 22:33:25.677628','633','SC-296',2,'Modificado/a IdCecoCtto.',11,1),(1120,'2017-03-05 22:35:53.701813','623','SC-295',2,'Modificado/a IdCecoCtto.',11,1),(1121,'2017-03-05 22:35:53.708111','631','SC-291',2,'Modificado/a IdCecoCtto.',11,1),(1122,'2017-03-05 22:35:53.719449','630','SC-290',2,'Modificado/a IdCecoCtto.',11,1),(1123,'2017-03-05 22:35:53.723588','629','SC-289',2,'Modificado/a IdCecoCtto.',11,1),(1124,'2017-03-05 22:35:53.726146','628','SC-288',2,'Modificado/a IdCecoCtto.',11,1),(1125,'2017-03-05 22:35:53.729767','627','SC-287',2,'Modificado/a IdCecoCtto.',11,1),(1126,'2017-03-05 22:35:53.732366','634','SC-286B',2,'Modificado/a IdCecoCtto.',11,1),(1127,'2017-03-05 22:35:53.736422','626','SC-286A',2,'Modificado/a IdCecoCtto.',11,1),(1128,'2017-03-05 22:41:01.700670','611','SC-284',2,'Modificado/a IdCecoCtto.',11,1),(1129,'2017-03-05 22:41:01.703680','493','SC-277',2,'Modificado/a IdCecoCtto.',11,1),(1130,'2017-03-05 22:41:01.707505','482','SC-266',2,'Modificado/a IdCecoCtto.',11,1),(1131,'2017-03-05 22:41:01.710369','480','SC-264',2,'Modificado/a IdCecoCtto.',11,1),(1132,'2017-03-05 22:44:33.772997','473','SC-257',2,'Modificado/a IdCecoCtto.',11,1),(1133,'2017-03-05 22:44:33.776815','472','SC-256',2,'Modificado/a IdCecoCtto.',11,1),(1134,'2017-03-05 22:46:12.690423','469','SC-250',2,'Modificado/a IdCecoCtto.',11,1),(1135,'2017-03-05 22:46:12.695126','467','SC-248',2,'Modificado/a IdCecoCtto.',11,1),(1136,'2017-03-05 22:51:00.063687','456','SC-224',2,'Modificado/a IdCecoCtto.',11,1),(1137,'2017-03-05 22:51:00.067955','455','SC-222',2,'Modificado/a IdCecoCtto.',11,1),(1138,'2017-03-05 22:51:00.073529','453','SC-216',2,'Modificado/a IdCecoCtto.',11,1),(1139,'2017-03-05 22:51:00.091890','515','OCM2016-03',2,'Modificado/a IdCecoCtto.',11,1),(1140,'2017-03-05 22:51:00.096127','494','C-010',2,'Modificado/a IdCecoCtto.',11,1),(1141,'2017-03-05 22:57:32.903144','652','OS2017-003',2,'Modificado/a IdCecoCtto.',11,1),(1142,'2017-03-05 22:57:32.907704','648','OS2016-109',2,'Modificado/a IdCecoCtto.',11,1),(1143,'2017-03-05 22:57:32.911821','624','OS2016-098',2,'Modificado/a IdCecoCtto.',11,1),(1144,'2017-03-05 22:57:32.915524','620','OS2016-096',2,'Modificado/a IdCecoCtto.',11,1),(1145,'2017-03-05 23:01:48.271468','615','OS2016-094',2,'Modificado/a IdCecoCtto.',11,1),(1146,'2017-03-05 23:01:48.276380','602','OS2016-084',2,'Modificado/a IdCecoCtto.',11,1),(1147,'2017-03-05 23:01:48.281185','592','OS2016-076',2,'Modificado/a IdCecoCtto.',11,1),(1148,'2017-03-05 23:01:48.285447','590','OS2016-074',2,'Modificado/a IdCecoCtto.',11,1),(1149,'2017-03-05 23:06:14.733177','583','OS2016-067',2,'Modificado/a IdCecoCtto.',11,1),(1150,'2017-03-05 23:06:14.736220','582','OS2016-066',2,'Modificado/a IdCecoCtto.',11,1),(1151,'2017-03-05 23:06:14.740263','581','OS2016-065',2,'Modificado/a IdCecoCtto.',11,1),(1152,'2017-03-05 23:06:14.743928','580','OS2016-064',2,'Modificado/a IdCecoCtto.',11,1),(1153,'2017-03-05 23:07:31.127328','579','OS2016-063',2,'Modificado/a IdCecoCtto.',11,1),(1154,'2017-03-05 23:07:31.130560','578','OS2016-062',2,'Modificado/a IdCecoCtto.',11,1),(1155,'2017-03-05 23:10:46.274908','569','OS2016-053',2,'Modificado/a IdCecoCtto.',11,1),(1156,'2017-03-05 23:10:46.279619','568','OS2016-052',2,'Modificado/a IdCecoCtto.',11,1),(1157,'2017-03-05 23:10:46.283775','567','OS2016-051',2,'Modificado/a IdCecoCtto.',11,1),(1158,'2017-03-05 23:10:46.287770','566','OS2016-050',2,'Modificado/a IdCecoCtto.',11,1),(1159,'2017-03-05 23:10:46.290542','565','OS2016-049',2,'Modificado/a IdCecoCtto.',11,1),(1160,'2017-03-05 23:10:46.292809','564','OS2016-048',2,'Modificado/a IdCecoCtto.',11,1),(1161,'2017-03-05 23:10:46.296591','560','OS2016-044',2,'Modificado/a IdCecoCtto.',11,1),(1162,'2017-03-05 23:10:46.300486','555','OS2016-039',2,'Modificado/a IdCecoCtto.',11,1),(1163,'2017-03-05 23:10:46.304864','553','OS2016-037',2,'Modificado/a IdCecoCtto.',11,1),(1164,'2017-03-05 23:10:46.307919','552','OS2016-036',2,'Modificado/a IdCecoCtto.',11,1),(1165,'2017-03-05 23:10:46.311186','551','OS2016-035',2,'Modificado/a IdCecoCtto.',11,1),(1166,'2017-03-05 23:10:46.314835','550','OS2016-034',2,'Modificado/a IdCecoCtto.',11,1),(1167,'2017-03-05 23:13:55.145934','547','OS2016-031',2,'Modificado/a IdCecoCtto.',11,1),(1168,'2017-03-05 23:13:55.149197','544','OS2016-028',2,'Modificado/a IdCecoCtto.',11,1),(1169,'2017-03-05 23:13:55.152065','542','OS2016-026',2,'Modificado/a IdCecoCtto.',11,1),(1170,'2017-03-05 23:13:55.154382','541','OS2016-025',2,'Modificado/a IdCecoCtto.',11,1),(1171,'2017-03-05 23:13:55.156610','540','OS2016-024',2,'Modificado/a IdCecoCtto.',11,1),(1172,'2017-03-05 23:13:55.158884','538','OS2016-022',2,'Modificado/a IdCecoCtto.',11,1),(1173,'2017-03-05 23:13:55.161454','537','OS2016-021',2,'Modificado/a IdCecoCtto.',11,1),(1174,'2017-03-05 23:17:39.397901','526','OS2016-010',2,'Modificado/a IdCecoCtto.',11,1),(1175,'2017-03-05 23:17:39.401683','525','OS2016-009',2,'Modificado/a IdCecoCtto.',11,1),(1176,'2017-03-05 23:17:39.405005','517','OS2016-001',2,'Modificado/a IdCecoCtto.',11,1),(1177,'2017-03-05 23:18:58.756150','516','OCM2016-01',2,'Modificado/a IdCecoCtto.',11,1),(1178,'2017-03-06 00:14:46.473481','641','CV2016-008',2,'Modificado/a TipoServ.',11,1),(1179,'2017-03-19 03:17:36.573557','664','SC-450',2,'Modificado/a TipoServ.',11,1),(1180,'2017-03-19 03:17:50.404748','664','SC-450',2,'Modificado/a DescCtto.',11,1),(1181,'2017-03-19 11:58:43.044923','661','OS2017-009',2,'Modificado/a MonedaCtto.',11,1),(1182,'2017-03-19 11:58:43.047934','659','OS2017-007',2,'Modificado/a MonedaCtto.',11,1),(1183,'2017-03-19 11:58:43.050413','657','OS2017-005',2,'Modificado/a MonedaCtto.',11,1),(1184,'2017-03-19 11:58:43.052812','654','OS2017-004',2,'Modificado/a MonedaCtto.',11,1),(1185,'2017-03-19 11:58:43.055050','653','OS2017-001',2,'Modificado/a MonedaCtto.',11,1),(1186,'2017-03-19 11:58:43.057295','651','OS2017-002',2,'Modificado/a MonedaCtto.',11,1),(1187,'2017-03-19 11:59:14.479576','650','SC-299',2,'Modificado/a MonedaCtto.',11,1),(1188,'2017-03-19 11:59:14.482561','647','OS2016-106',2,'Modificado/a MonedaCtto.',11,1),(1189,'2017-03-19 11:59:14.487183','645','OS2016-103',2,'Modificado/a MonedaCtto.',11,1),(1190,'2017-03-19 11:59:14.490094','643','OS2016-105',2,'Modificado/a MonedaCtto.',11,1),(1191,'2017-03-19 11:59:14.492430','642','CV2016-009',2,'Modificado/a MonedaCtto.',11,1),(1192,'2017-03-19 11:59:14.495405','641','CV2016-008',2,'Modificado/a MonedaCtto.',11,1),(1193,'2017-03-19 11:59:14.498046','640','CV2016-007',2,'Modificado/a MonedaCtto.',11,1),(1194,'2017-03-19 11:59:14.500951','639','CV2016-006',2,'Modificado/a MonedaCtto.',11,1),(1195,'2017-03-19 11:59:14.503717','638','CV2016-005',2,'Modificado/a MonedaCtto.',11,1),(1196,'2017-03-19 11:59:14.506417','637','CV2016-004',2,'Modificado/a MonedaCtto.',11,1),(1197,'2017-03-19 11:59:14.508844','636','CV2016-003',2,'Modificado/a MonedaCtto.',11,1),(1198,'2017-03-19 11:59:14.511139','635','CV2016-002',2,'Modificado/a MonedaCtto.',11,1),(1199,'2017-03-19 11:59:14.513304','633','SC-296',2,'Modificado/a MonedaCtto.',11,1),(1200,'2017-03-19 11:59:14.515445','632','SC-292',2,'Modificado/a MonedaCtto.',11,1),(1201,'2017-03-19 11:59:14.518906','631','SC-291',2,'Modificado/a MonedaCtto.',11,1),(1202,'2017-03-19 11:59:14.521360','630','SC-290',2,'Modificado/a MonedaCtto.',11,1),(1203,'2017-03-19 11:59:14.523655','629','SC-289',2,'Modificado/a MonedaCtto.',11,1),(1204,'2017-03-19 11:59:14.525850','628','SC-288',2,'Modificado/a MonedaCtto.',11,1),(1205,'2017-03-19 11:59:14.530316','627','SC-287',2,'Modificado/a MonedaCtto.',11,1),(1206,'2017-03-19 11:59:14.532777','626','SC-286A',2,'Modificado/a MonedaCtto.',11,1),(1207,'2017-03-19 11:59:43.455951','625','OS2016-101',2,'Modificado/a MonedaCtto.',11,1),(1208,'2017-03-19 11:59:43.460131','623','SC-295',2,'Modificado/a MonedaCtto.',11,1),(1209,'2017-03-19 11:59:43.463175','621','OS2016-092',2,'Modificado/a MonedaCtto.',11,1),(1210,'2017-03-19 11:59:43.465800','620','OS2016-096',2,'Modificado/a MonedaCtto.',11,1),(1211,'2017-03-19 11:59:43.468263','619','OS2016-095',2,'Modificado/a MonedaCtto.',11,1),(1212,'2017-03-19 11:59:43.470695','618','SC-297',2,'Modificado/a MonedaCtto.',11,1),(1213,'2017-03-19 11:59:43.473056','617','SC-294',2,'Modificado/a MonedaCtto.',11,1),(1214,'2017-03-19 11:59:43.475800','616','SC-293',2,'Modificado/a MonedaCtto.',11,1),(1215,'2017-03-19 11:59:43.478886','614','OS2016-093',2,'Modificado/a MonedaCtto.',11,1),(1216,'2017-03-19 11:59:43.481145','613','OS2016-091',2,'Modificado/a MonedaCtto.',11,1),(1217,'2017-03-19 11:59:43.483441','612','SC-285',2,'Modificado/a MonedaCtto.',11,1),(1218,'2017-03-19 11:59:43.485609','611','SC-284',2,'Modificado/a MonedaCtto.',11,1),(1219,'2017-03-19 11:59:43.487773','610','OS2016-089',2,'Modificado/a MonedaCtto.',11,1),(1220,'2017-03-19 11:59:43.490190','608','OS2016-087',2,'Modificado/a MonedaCtto.',11,1),(1221,'2017-03-19 11:59:43.493107','607','OS2016-086',2,'Modificado/a MonedaCtto.',11,1),(1222,'2017-03-19 11:59:43.495917','604','SC-281',2,'Modificado/a MonedaCtto.',11,1),(1223,'2017-03-19 11:59:43.498164','603','SC-280',2,'Modificado/a MonedaCtto.',11,1),(1224,'2017-03-19 11:59:43.500288','601','OS2016-083',2,'Modificado/a MonedaCtto.',11,1),(1225,'2017-03-19 11:59:43.502543','600','OS2016-082',2,'Modificado/a MonedaCtto.',11,1),(1226,'2017-03-19 11:59:43.504841','598','SC-279',2,'Modificado/a MonedaCtto.',11,1),(1227,'2017-03-19 12:00:11.817362','597','SC-278',2,'Modificado/a MonedaCtto.',11,1),(1228,'2017-03-19 12:00:11.820476','596','OS2016-080',2,'Modificado/a MonedaCtto.',11,1),(1229,'2017-03-19 12:00:11.822865','595','OS2016-079',2,'Modificado/a MonedaCtto.',11,1),(1230,'2017-03-19 12:00:11.827270','592','OS2016-076',2,'Modificado/a MonedaCtto.',11,1),(1231,'2017-03-19 12:00:11.830210','590','OS2016-074',2,'Modificado/a MonedaCtto.',11,1),(1232,'2017-03-19 12:00:11.832680','586','OS2016-070',2,'Modificado/a MonedaCtto.',11,1),(1233,'2017-03-19 12:00:11.835616','579','OS2016-063',2,'Modificado/a MonedaCtto.',11,1),(1234,'2017-03-19 12:00:11.838394','577','OS2016-061',2,'Modificado/a MonedaCtto.',11,1),(1235,'2017-03-19 12:00:11.840784','575','OS2016-059',2,'Modificado/a MonedaCtto.',11,1),(1236,'2017-03-19 12:00:11.842987','574','OS2016-058',2,'Modificado/a MonedaCtto.',11,1),(1237,'2017-03-19 12:00:11.862729','573','OS2016-057',2,'Modificado/a MonedaCtto.',11,1),(1238,'2017-03-19 12:00:11.865701','571','OS2016-055',2,'Modificado/a MonedaCtto.',11,1),(1239,'2017-03-19 12:00:11.869339','570','OS2016-054',2,'Modificado/a MonedaCtto.',11,1),(1240,'2017-03-19 12:00:11.872668','567','OS2016-051',2,'Modificado/a MonedaCtto.',11,1),(1241,'2017-03-19 12:00:11.875195','566','OS2016-050',2,'Modificado/a MonedaCtto.',11,1),(1242,'2017-03-19 12:00:11.877916','565','OS2016-049',2,'Modificado/a MonedaCtto.',11,1),(1243,'2017-03-19 12:00:11.880144','564','OS2016-048',2,'Modificado/a MonedaCtto.',11,1),(1244,'2017-03-19 12:00:11.883171','563','OS2016-047',2,'Modificado/a MonedaCtto.',11,1),(1245,'2017-03-19 12:00:11.886245','562','OS2016-046',2,'Modificado/a MonedaCtto.',11,1),(1246,'2017-03-19 12:00:11.888826','561','OS2016-045',2,'Modificado/a MonedaCtto.',11,1),(1247,'2017-03-19 12:00:39.592840','560','OS2016-044',2,'Modificado/a MonedaCtto.',11,1),(1248,'2017-03-19 12:00:39.595969','556','OS2016-040',2,'Modificado/a MonedaCtto.',11,1),(1249,'2017-03-19 12:00:39.598438','554','OS2016-038',2,'Modificado/a MonedaCtto.',11,1),(1250,'2017-03-19 12:00:39.601413','550','OS2016-034',2,'Modificado/a MonedaCtto.',11,1),(1251,'2017-03-19 12:00:39.604179','549','OS2016-033',2,'Modificado/a MonedaCtto.',11,1),(1252,'2017-03-19 12:00:39.606935','548','OS2016-032',2,'Modificado/a MonedaCtto.',11,1),(1253,'2017-03-19 12:00:39.610611','547','OS2016-031',2,'Modificado/a MonedaCtto.',11,1),(1254,'2017-03-19 12:00:39.612948','544','OS2016-028',2,'Modificado/a MonedaCtto.',11,1),(1255,'2017-03-19 12:00:39.615295','540','OS2016-024',2,'Modificado/a MonedaCtto.',11,1),(1256,'2017-03-19 12:00:39.617743','538','OS2016-022',2,'Modificado/a MonedaCtto.',11,1),(1257,'2017-03-19 12:00:39.620186','537','OS2016-021',2,'Modificado/a MonedaCtto.',11,1),(1258,'2017-03-19 12:00:39.622380','536','OS2016-020',2,'Modificado/a MonedaCtto.',11,1),(1259,'2017-03-19 12:00:39.624645','535','OS2016-019',2,'Modificado/a MonedaCtto.',11,1),(1260,'2017-03-19 12:00:39.627727','533','OS2016-017',2,'Modificado/a MonedaCtto.',11,1),(1261,'2017-03-19 12:00:39.630418','530','OS2016-014',2,'Modificado/a MonedaCtto.',11,1),(1262,'2017-03-19 12:00:39.632631','529','OS2016-013',2,'Modificado/a MonedaCtto.',11,1),(1263,'2017-03-19 12:00:39.634938','527','OS2016-011',2,'Modificado/a MonedaCtto.',11,1),(1264,'2017-03-19 12:00:39.637089','524','OS2016-008',2,'Modificado/a MonedaCtto.',11,1),(1265,'2017-03-19 12:00:39.639535','523','OS2016-007',2,'Modificado/a MonedaCtto.',11,1),(1266,'2017-03-19 12:00:39.642551','522','OS2016-006',2,'Modificado/a MonedaCtto.',11,1),(1267,'2017-03-19 12:01:10.710481','521','OS2016-005',2,'Modificado/a MonedaCtto.',11,1),(1268,'2017-03-19 12:01:10.712964','519','OS2016-003',2,'Modificado/a MonedaCtto.',11,1),(1269,'2017-03-19 12:01:10.715448','512','CV2016-001',2,'Modificado/a MonedaCtto.',11,1),(1270,'2017-03-19 12:01:10.719405','511','OS2013-111',2,'Modificado/a MonedaCtto.',11,1),(1271,'2017-03-19 12:01:10.722424','510','OS2012-102',2,'Modificado/a MonedaCtto.',11,1),(1272,'2017-03-19 12:01:10.724667','509','OS2011-055',2,'Modificado/a MonedaCtto.',11,1),(1273,'2017-03-19 12:01:10.727193','507','OS2010-023',2,'Modificado/a MonedaCtto.',11,1),(1274,'2017-03-19 12:01:10.729380','506','OS2015-183',2,'Modificado/a MonedaCtto.',11,1),(1275,'2017-03-19 12:01:10.731436','505','OS2015-175',2,'Modificado/a MonedaCtto.',11,1),(1276,'2017-03-19 12:01:10.733949','504','OS2015-065',2,'Modificado/a MonedaCtto.',11,1),(1277,'2017-03-19 12:01:10.736915','503','OS2014-170',2,'Modificado/a MonedaCtto.',11,1),(1278,'2017-03-19 12:01:10.739378','501','OS2013-144',2,'Modificado/a MonedaCtto.',11,1),(1279,'2017-03-19 12:01:10.741479','500','OS2013-131',2,'Modificado/a MonedaCtto.',11,1),(1280,'2017-03-19 12:01:10.743572','499','OS2013-125',2,'Modificado/a MonedaCtto.',11,1),(1281,'2017-03-19 12:01:10.745723','497','OS2012-065',2,'Modificado/a MonedaCtto.',11,1),(1282,'2017-03-19 12:01:10.747770','492','SC-276',2,'Modificado/a MonedaCtto.',11,1),(1283,'2017-03-19 12:01:10.749936','480','SC-264',2,'Modificado/a MonedaCtto.',11,1),(1284,'2017-03-19 12:01:10.753813','478','SC-262',2,'Modificado/a MonedaCtto.',11,1),(1285,'2017-03-19 12:01:10.756136','477','SC-261',2,'Modificado/a MonedaCtto.',11,1),(1286,'2017-03-19 12:01:10.758176','474','SC-258',2,'Modificado/a MonedaCtto.',11,1),(1287,'2017-03-19 12:01:36.159669','473','SC-257',2,'Modificado/a MonedaCtto.',11,1),(1288,'2017-03-19 12:01:36.162905','472','SC-256',2,'Modificado/a MonedaCtto.',11,1),(1289,'2017-03-19 12:01:36.165483','471','SC-253',2,'Modificado/a MonedaCtto.',11,1),(1290,'2017-03-19 12:01:36.167541','470','SC-252',2,'Modificado/a MonedaCtto.',11,1),(1291,'2017-03-19 12:01:36.169656','464','SC-244',2,'Modificado/a MonedaCtto.',11,1),(1292,'2017-03-19 12:01:36.171791','461','SC-237',2,'Modificado/a MonedaCtto.',11,1),(1293,'2017-03-19 12:01:36.175076','457','SC-228',2,'Modificado/a MonedaCtto.',11,1),(1294,'2017-03-19 12:01:36.177860','456','SC-224',2,'Modificado/a MonedaCtto.',11,1),(1295,'2017-03-19 12:01:36.180059','455','SC-222',2,'Modificado/a MonedaCtto.',11,1),(1296,'2017-03-19 12:01:36.182513','454','SC-220',2,'Modificado/a MonedaCtto.',11,1),(1297,'2017-03-19 12:01:36.184686','451','SC-214',2,'Modificado/a MonedaCtto.',11,1),(1298,'2017-03-19 12:01:36.186748','450','SC-207',2,'Modificado/a MonedaCtto.',11,1),(1299,'2017-03-19 12:01:36.189025','449','SC-184',2,'Modificado/a MonedaCtto.',11,1),(1300,'2017-03-19 12:02:35.509512','3','CLP',2,'Modificado/a NomMoneda.',14,1),(1301,'2017-03-19 12:23:41.979399','622','OS2016-097',2,'Modificado/a SeguroCtto.',11,1),(1302,'2017-03-19 12:23:41.982400','621','OS2016-092',2,'Modificado/a SeguroCtto.',11,1),(1303,'2017-03-19 12:23:41.985897','620','OS2016-096',2,'Modificado/a SeguroCtto.',11,1),(1304,'2017-03-19 12:23:41.989590','619','OS2016-095',2,'Modificado/a SeguroCtto.',11,1),(1305,'2017-03-19 12:23:41.992245','615','OS2016-094',2,'Modificado/a SeguroCtto.',11,1),(1306,'2017-03-19 12:23:41.994879','602','OS2016-084',2,'Modificado/a SeguroCtto.',11,1),(1307,'2017-03-19 12:23:41.997158','601','OS2016-083',2,'Modificado/a SeguroCtto.',11,1),(1308,'2017-03-19 12:23:41.999647','600','OS2016-082',2,'Modificado/a SeguroCtto.',11,1),(1309,'2017-03-19 12:23:42.003582','599','OS2016-081',2,'Modificado/a SeguroCtto.',11,1),(1310,'2017-03-19 12:23:42.007187','597','SC-278',2,'Modificado/a SeguroCtto.',11,1),(1311,'2017-03-19 12:23:42.010031','596','OS2016-080',2,'Modificado/a SeguroCtto.',11,1),(1312,'2017-03-19 12:23:42.012586','595','OS2016-079',2,'Modificado/a SeguroCtto.',11,1),(1313,'2017-03-19 12:23:42.015030','594','OS2016-078',2,'Modificado/a SeguroCtto.',11,1),(1314,'2017-03-19 12:23:42.017549','593','OS2016-077',2,'Modificado/a SeguroCtto.',11,1),(1315,'2017-03-19 12:23:42.021096','592','OS2016-076',2,'Modificado/a SeguroCtto.',11,1),(1316,'2017-03-19 12:23:42.023805','591','OS2016-075',2,'Modificado/a SeguroCtto.',11,1),(1317,'2017-03-19 12:23:42.026523','590','OS2016-074',2,'Modificado/a SeguroCtto.',11,1),(1318,'2017-03-19 12:23:42.029122','589','OS2016-073',2,'Modificado/a SeguroCtto.',11,1),(1319,'2017-03-19 12:23:42.031751','588','OS2016-072',2,'Modificado/a SeguroCtto.',11,1),(1320,'2017-03-19 12:23:42.034459','587','OS2016-071',2,'Modificado/a SeguroCtto.',11,1),(1321,'2017-03-19 12:24:51.619678','653','OS2017-001',2,'Modificado/a SeguroCtto.',11,1),(1322,'2017-03-19 12:24:51.623616','626','SC-286A',2,'Modificado/a SeguroCtto.',11,1),(1323,'2017-03-19 12:24:51.626582','624','OS2016-098',2,'Modificado/a SeguroCtto.',11,1),(1324,'2017-03-19 12:24:51.628928','623','SC-295',2,'Modificado/a SeguroCtto.',11,1),(1325,'2017-03-19 12:25:22.100038','586','OS2016-070',2,'Modificado/a SeguroCtto.',11,1),(1326,'2017-03-19 12:25:22.103337','585','OS2016-069',2,'Modificado/a SeguroCtto.',11,1),(1327,'2017-03-19 12:25:22.106292','584','OS2016-068',2,'Modificado/a SeguroCtto.',11,1),(1328,'2017-03-19 12:25:22.108905','583','OS2016-067',2,'Modificado/a SeguroCtto.',11,1),(1329,'2017-03-19 12:25:22.111134','582','OS2016-066',2,'Modificado/a SeguroCtto.',11,1),(1330,'2017-03-19 12:25:22.114274','581','OS2016-065',2,'Modificado/a SeguroCtto.',11,1),(1331,'2017-03-19 12:25:22.117105','580','OS2016-064',2,'Modificado/a SeguroCtto.',11,1),(1332,'2017-03-19 12:25:22.119711','579','OS2016-063',2,'Modificado/a SeguroCtto.',11,1),(1333,'2017-03-19 12:25:22.122158','578','OS2016-062',2,'Modificado/a SeguroCtto.',11,1),(1334,'2017-03-19 12:25:22.124522','577','OS2016-061',2,'Modificado/a SeguroCtto.',11,1),(1335,'2017-03-19 12:25:22.126969','575','OS2016-059',2,'Modificado/a SeguroCtto.',11,1),(1336,'2017-03-19 12:25:22.130388','573','OS2016-057',2,'Modificado/a SeguroCtto.',11,1),(1337,'2017-03-19 12:25:22.133111','572','OS2016-056',2,'Modificado/a SeguroCtto.',11,1),(1338,'2017-03-19 12:25:22.135418','571','OS2016-055',2,'Modificado/a SeguroCtto.',11,1),(1339,'2017-03-19 12:25:22.138032','570','OS2016-054',2,'Modificado/a SeguroCtto.',11,1),(1340,'2017-03-19 12:25:22.140530','568','OS2016-052',2,'Modificado/a SeguroCtto.',11,1),(1341,'2017-03-19 12:25:22.143390','567','OS2016-051',2,'Modificado/a SeguroCtto.',11,1),(1342,'2017-03-19 12:25:22.146251','566','OS2016-050',2,'Modificado/a SeguroCtto.',11,1),(1343,'2017-03-19 12:25:22.149290','565','OS2016-049',2,'Modificado/a SeguroCtto.',11,1),(1344,'2017-03-19 12:25:22.151959','564','OS2016-048',2,'Modificado/a SeguroCtto.',11,1),(1345,'2017-03-19 12:26:17.776044','563','OS2016-047',2,'Modificado/a SeguroCtto.',11,1),(1346,'2017-03-19 12:26:17.779743','560','OS2016-044',2,'Modificado/a SeguroCtto.',11,1),(1347,'2017-03-19 12:26:17.783004','559','OS2016-043',2,'Modificado/a SeguroCtto.',11,1),(1348,'2017-03-19 12:26:17.786060','558','OS2016-042',2,'Modificado/a SeguroCtto.',11,1),(1349,'2017-03-19 12:26:17.870999','556','OS2016-040',2,'Modificado/a SeguroCtto.',11,1),(1350,'2017-03-19 12:26:17.875381','555','OS2016-039',2,'Modificado/a SeguroCtto.',11,1),(1351,'2017-03-19 12:26:17.878350','554','OS2016-038',2,'Modificado/a SeguroCtto.',11,1),(1352,'2017-03-19 12:26:17.901515','553','OS2016-037',2,'Modificado/a SeguroCtto.',11,1),(1353,'2017-03-19 12:26:17.904959','552','OS2016-036',2,'Modificado/a SeguroCtto.',11,1),(1354,'2017-03-19 12:26:17.908689','551','OS2016-035',2,'Modificado/a SeguroCtto.',11,1),(1355,'2017-03-19 12:26:17.911786','550','OS2016-034',2,'Modificado/a SeguroCtto.',11,1),(1356,'2017-03-19 12:26:17.915515','549','OS2016-033',2,'Modificado/a SeguroCtto.',11,1),(1357,'2017-03-19 12:26:17.918771','548','OS2016-032',2,'Modificado/a SeguroCtto.',11,1),(1358,'2017-03-19 12:26:17.921412','547','OS2016-031',2,'Modificado/a SeguroCtto.',11,1),(1359,'2017-03-19 12:26:17.923894','545','OS2016-029',2,'Modificado/a SeguroCtto.',11,1),(1360,'2017-03-19 12:26:17.926386','544','OS2016-028',2,'Modificado/a SeguroCtto.',11,1),(1361,'2017-03-19 12:26:17.930893','543','OS2016-027',2,'Modificado/a SeguroCtto.',11,1),(1362,'2017-03-19 12:26:17.934611','542','OS2016-026',2,'Modificado/a SeguroCtto.',11,1),(1363,'2017-03-19 12:26:17.937286','541','OS2016-025',2,'Modificado/a SeguroCtto.',11,1),(1364,'2017-03-19 12:26:17.940158','540','OS2016-024',2,'Modificado/a SeguroCtto.',11,1),(1365,'2017-03-19 12:26:49.133338','538','OS2016-022',2,'Modificado/a SeguroCtto.',11,1),(1366,'2017-03-19 12:26:49.136854','537','OS2016-021',2,'Modificado/a SeguroCtto.',11,1),(1367,'2017-03-19 12:26:49.141532','536','OS2016-020',2,'Modificado/a SeguroCtto.',11,1),(1368,'2017-03-19 12:26:49.144895','535','OS2016-019',2,'Modificado/a SeguroCtto.',11,1),(1369,'2017-03-19 12:26:49.148258','534','OS2016-018',2,'Modificado/a SeguroCtto.',11,1),(1370,'2017-03-19 12:26:49.151720','533','OS2016-017',2,'Modificado/a SeguroCtto.',11,1),(1371,'2017-03-19 12:26:49.155235','532','OS2016-016',2,'Modificado/a SeguroCtto.',11,1),(1372,'2017-03-19 12:26:49.158696','531','OS2016-015',2,'Modificado/a SeguroCtto.',11,1),(1373,'2017-03-19 12:26:49.161999','530','OS2016-014',2,'Modificado/a SeguroCtto.',11,1),(1374,'2017-03-19 12:26:49.164697','529','OS2016-013',2,'Modificado/a SeguroCtto.',11,1),(1375,'2017-03-19 12:26:49.167285','528','OS2016-012',2,'Modificado/a SeguroCtto.',11,1),(1376,'2017-03-19 12:26:49.169638','527','OS2016-011',2,'Modificado/a SeguroCtto.',11,1),(1377,'2017-03-19 12:26:49.173020','526','OS2016-010',2,'Modificado/a SeguroCtto.',11,1),(1378,'2017-03-19 12:26:49.175872','525','OS2016-009',2,'Modificado/a SeguroCtto.',11,1),(1379,'2017-03-19 12:26:49.178508','524','OS2016-008',2,'Modificado/a SeguroCtto.',11,1),(1380,'2017-03-19 12:26:49.180873','523','OS2016-007',2,'Modificado/a SeguroCtto.',11,1),(1381,'2017-03-19 12:26:49.183437','522','OS2016-006',2,'Modificado/a SeguroCtto.',11,1),(1382,'2017-03-19 12:26:49.186204','521','OS2016-005',2,'Modificado/a SeguroCtto.',11,1),(1383,'2017-03-19 12:26:49.189326','520','OS2016-004',2,'Modificado/a SeguroCtto.',11,1),(1384,'2017-03-19 12:26:49.192594','517','OS2016-001',2,'Modificado/a SeguroCtto.',11,1),(1385,'2017-03-19 12:27:13.199180','516','OCM2016-01',2,'Modificado/a SeguroCtto.',11,1),(1386,'2017-03-19 12:27:13.202201','515','OCM2016-03',2,'Modificado/a SeguroCtto.',11,1),(1387,'2017-03-19 12:27:13.204977','514','OCM2016-02',2,'Modificado/a SeguroCtto.',11,1),(1388,'2017-03-19 12:27:13.207985','513','OC (NXXXX)',2,'Modificado/a SeguroCtto.',11,1),(1389,'2017-03-19 12:27:13.210774','512','CV2016-001',2,'Modificado/a SeguroCtto.',11,1),(1390,'2017-03-19 12:27:13.214437','511','OS2013-111',2,'Modificado/a SeguroCtto.',11,1),(1391,'2017-03-19 12:27:13.217294','510','OS2012-102',2,'Modificado/a SeguroCtto.',11,1),(1392,'2017-03-19 12:27:13.219778','509','OS2011-055',2,'Modificado/a SeguroCtto.',11,1),(1393,'2017-03-19 12:27:13.222426','507','OS2010-023',2,'Modificado/a SeguroCtto.',11,1),(1394,'2017-03-19 12:27:13.224733','506','OS2015-183',2,'Modificado/a SeguroCtto.',11,1),(1395,'2017-03-19 12:27:13.227847','504','OS2015-065',2,'Modificado/a SeguroCtto.',11,1),(1396,'2017-03-19 12:27:13.232064','503','OS2014-170',2,'Modificado/a SeguroCtto.',11,1),(1397,'2017-03-19 12:27:13.234808','502','OS2014-168',2,'Modificado/a SeguroCtto.',11,1),(1398,'2017-03-19 12:27:13.237961','499','OS2013-125',2,'Modificado/a SeguroCtto.',11,1),(1399,'2017-03-19 12:27:13.240528','495','OS2010-010',2,'Modificado/a SeguroCtto.',11,1),(1400,'2017-03-19 12:27:13.242992','492','SC-276',2,'Modificado/a SeguroCtto.',11,1),(1401,'2017-03-19 12:27:13.245555','491','SC-275',2,'Modificado/a SeguroCtto.',11,1),(1402,'2017-03-19 12:27:13.249207','490','SC-274',2,'Modificado/a SeguroCtto.',11,1),(1403,'2017-03-19 12:27:13.252352','489','SC-273',2,'Modificado/a SeguroCtto.',11,1),(1404,'2017-03-19 12:27:13.254765','488','SC-272',2,'Modificado/a SeguroCtto.',11,1),(1405,'2017-03-19 12:27:35.263434','487','SC-271',2,'Modificado/a SeguroCtto.',11,1),(1406,'2017-03-19 12:27:35.265914','486','SC-270',2,'Modificado/a SeguroCtto.',11,1),(1407,'2017-03-19 12:27:35.268982','485','SC-269',2,'Modificado/a SeguroCtto.',11,1),(1408,'2017-03-19 12:27:35.271792','484','SC-268',2,'Modificado/a SeguroCtto.',11,1),(1409,'2017-03-19 12:27:35.274262','483','SC-267',2,'Modificado/a SeguroCtto.',11,1),(1410,'2017-03-19 12:27:35.276473','482','SC-266',2,'Modificado/a SeguroCtto.',11,1),(1411,'2017-03-19 12:27:35.278721','480','SC-264',2,'Modificado/a SeguroCtto.',11,1),(1412,'2017-03-19 12:27:35.281101','478','SC-262',2,'Modificado/a SeguroCtto.',11,1),(1413,'2017-03-19 12:27:35.283310','473','SC-257',2,'Modificado/a SeguroCtto.',11,1),(1414,'2017-03-19 12:27:35.286195','469','SC-250',2,'Modificado/a SeguroCtto.',11,1),(1415,'2017-03-19 12:27:35.289668','468','SC-249',2,'Modificado/a SeguroCtto.',11,1),(1416,'2017-03-19 12:27:35.292328','467','SC-248',2,'Modificado/a SeguroCtto.',11,1),(1417,'2017-03-19 12:27:35.294575','465','SC-245',2,'Modificado/a SeguroCtto.',11,1),(1418,'2017-03-19 12:27:35.306482','464','SC-244',2,'Modificado/a SeguroCtto.',11,1),(1419,'2017-03-19 12:27:35.309002','460','SC-235',2,'Modificado/a SeguroCtto.',11,1),(1420,'2017-03-19 12:27:35.311208','459','SC-233',2,'Modificado/a SeguroCtto.',11,1),(1421,'2017-03-19 12:27:35.313496','456','SC-224',2,'Modificado/a SeguroCtto.',11,1),(1422,'2017-03-19 12:27:35.316006','455','SC-222',2,'Modificado/a SeguroCtto.',11,1),(1423,'2017-03-19 12:27:35.318512','452','SC-215',2,'Modificado/a SeguroCtto.',11,1),(1424,'2017-03-19 12:27:35.321873','451','SC-214',2,'Modificado/a SeguroCtto.',11,1),(1425,'2017-03-19 12:28:48.448751','448','SC-104',2,'Modificado/a SeguroCtto.',11,1),(1426,'2017-03-19 12:28:48.451864','598','SC-279',2,'Modificado/a SeguroCtto.',11,1),(1427,'2017-03-19 12:28:48.454773','574','OS2016-058',2,'Modificado/a SeguroCtto.',11,1),(1428,'2017-03-19 12:28:48.458682','569','OS2016-053',2,'Modificado/a SeguroCtto.',11,1),(1429,'2017-03-19 12:28:48.461711','562','OS2016-046',2,'Modificado/a SeguroCtto.',11,1),(1430,'2017-03-19 12:28:48.464482','561','OS2016-045',2,'Modificado/a SeguroCtto.',11,1),(1431,'2017-03-19 12:28:48.467165','557','OS2016-041',2,'Modificado/a SeguroCtto.',11,1),(1432,'2017-03-19 12:28:48.469811','519','OS2016-003',2,'Modificado/a SeguroCtto.',11,1),(1433,'2017-03-19 12:28:48.472876','518','OS2016-002',2,'Modificado/a SeguroCtto.',11,1),(1434,'2017-03-19 12:28:48.475784','508','OS2014-036',2,'Modificado/a SeguroCtto.',11,1),(1435,'2017-03-19 12:28:48.478317','505','OS2015-175',2,'Modificado/a SeguroCtto.',11,1),(1436,'2017-03-19 12:28:48.480722','501','OS2013-144',2,'Modificado/a SeguroCtto.',11,1),(1437,'2017-03-19 12:28:48.483230','500','OS2013-131',2,'Modificado/a SeguroCtto.',11,1),(1438,'2017-03-19 12:28:48.485788','498','OS2013-078',2,'Modificado/a SeguroCtto.',11,1),(1439,'2017-03-19 12:28:48.488317','497','OS2012-065',2,'Modificado/a SeguroCtto.',11,1),(1440,'2017-03-19 12:28:48.491473','496','OS2011-057',2,'Modificado/a SeguroCtto.',11,1),(1441,'2017-03-19 12:28:48.494024','494','C-010',2,'Modificado/a SeguroCtto.',11,1),(1442,'2017-03-19 12:28:48.496259','493','SC-277',2,'Modificado/a SeguroCtto.',11,1),(1443,'2017-03-19 12:28:48.498917','481','SC-265',2,'Modificado/a SeguroCtto.',11,1),(1444,'2017-03-19 12:28:48.501378','479','SC-263',2,'Modificado/a SeguroCtto.',11,1),(1445,'2017-03-19 12:29:47.627624','477','SC-261',2,'Modificado/a SeguroCtto.',11,1),(1446,'2017-03-19 12:29:47.640258','476','SC-260',2,'Modificado/a SeguroCtto.',11,1),(1447,'2017-03-19 12:29:47.644070','475','SC-259',2,'Modificado/a SeguroCtto.',11,1),(1448,'2017-03-19 12:29:47.647075','474','SC-258',2,'Modificado/a SeguroCtto.',11,1),(1449,'2017-03-19 12:29:47.649914','472','SC-256',2,'Modificado/a SeguroCtto.',11,1),(1450,'2017-03-19 12:29:47.668762','471','SC-253',2,'Modificado/a SeguroCtto.',11,1),(1451,'2017-03-19 12:29:47.673526','470','SC-252',2,'Modificado/a SeguroCtto.',11,1),(1452,'2017-03-19 12:29:47.676957','466','SC-247',2,'Modificado/a SeguroCtto.',11,1),(1453,'2017-03-19 12:29:47.679619','463','SC-242',2,'Modificado/a SeguroCtto.',11,1),(1454,'2017-03-19 12:29:47.681975','462','SC-241',2,'Modificado/a SeguroCtto.',11,1),(1455,'2017-03-19 12:29:47.684344','461','SC-237',2,'Modificado/a SeguroCtto.',11,1),(1456,'2017-03-19 12:29:47.686918','457','SC-228',2,'Modificado/a SeguroCtto.',11,1),(1457,'2017-03-19 12:29:47.689974','454','SC-220',2,'Modificado/a SeguroCtto.',11,1),(1458,'2017-03-19 12:29:47.692902','453','SC-216',2,'Modificado/a SeguroCtto.',11,1),(1459,'2017-03-19 12:29:47.695217','450','SC-207',2,'Modificado/a SeguroCtto.',11,1),(1460,'2017-03-19 12:29:47.698122','449','SC-184',2,'Modificado/a SeguroCtto.',11,1),(1461,'2017-03-19 15:33:12.636662','21','NUEVAUNION SPA',1,'Añadido.',9,1),(1462,'2017-03-19 15:33:36.760671','21','NUEVAUNION SPA',2,'Modificado/a RutMandte.',9,1),(1463,'2017-03-19 15:37:02.312649','664','SC-450',2,'Modificado/a IdMandante.',11,1),(1464,'2017-03-19 15:37:02.315828','663','SC-309',2,'Modificado/a IdMandante.',11,1),(1465,'2017-03-19 15:37:02.318831','662','OS2017-010',2,'Modificado/a IdMandante.',11,1),(1466,'2017-03-19 15:37:02.321433','661','OS2017-009',2,'Modificado/a IdMandante.',11,1),(1467,'2017-03-19 15:37:02.324142','659','OS2017-007',2,'Modificado/a IdMandante.',11,1),(1468,'2017-03-19 15:37:02.326401','658','SC-307',2,'Modificado/a IdMandante.',11,1),(1469,'2017-03-19 15:37:02.328863','657','OS2017-005',2,'Modificado/a IdMandante.',11,1),(1470,'2017-03-19 15:37:02.331201','656','OS2016-107',2,'Modificado/a IdMandante.',11,1),(1471,'2017-03-19 15:37:02.333467','655','SC-304',2,'Modificado/a IdMandante.',11,1),(1472,'2017-03-19 15:37:02.335664','654','OS2017-004',2,'Modificado/a IdMandante.',11,1),(1473,'2017-03-19 15:37:02.337954','653','OS2017-001',2,'Modificado/a IdMandante.',11,1),(1474,'2017-03-19 15:37:02.340499','652','OS2017-003',2,'Modificado/a IdMandante.',11,1),(1475,'2017-03-19 15:37:02.342741','650','SC-299',2,'Modificado/a IdMandante.',11,1),(1476,'2017-03-19 15:37:02.344852','649','SC-300',2,'Modificado/a IdMandante.',11,1),(1477,'2017-03-19 15:37:02.346998','648','OS2016-109',2,'Modificado/a IdMandante.',11,1),(1478,'2017-03-19 15:37:02.349434','646','OS2016-108',2,'Modificado/a IdMandante.',11,1),(1479,'2017-03-19 15:38:56.694736','660','SC-306',2,'Modificado/a IdMandante.',11,1),(1480,'2017-03-19 15:38:56.698395','623','SC-295',2,'Modificado/a IdMandante.',11,1),(1481,'2017-03-19 15:38:56.701505','632','SC-292',2,'Modificado/a IdMandante.',11,1),(1482,'2017-03-19 15:38:56.704364','631','SC-291',2,'Modificado/a IdMandante.',11,1),(1483,'2017-03-19 15:38:56.707041','630','SC-290',2,'Modificado/a IdMandante.',11,1),(1484,'2017-03-19 15:38:56.709624','629','SC-289',2,'Modificado/a IdMandante.',11,1),(1485,'2017-03-19 15:38:56.712291','628','SC-288',2,'Modificado/a IdMandante.',11,1),(1486,'2017-03-19 15:38:56.714569','627','SC-287',2,'Modificado/a IdMandante.',11,1),(1487,'2017-03-19 15:38:56.716706','634','SC-286B',2,'Modificado/a IdMandante.',11,1),(1488,'2017-03-19 15:38:56.719157','626','SC-286A',2,'Modificado/a IdMandante.',11,1),(1489,'2017-03-19 15:39:53.888814','598','SC-279',2,'Modificado/a IdMandante.',11,1),(1490,'2017-03-19 15:39:53.892030','493','SC-277',2,'Modificado/a IdMandante.',11,1),(1491,'2017-03-19 15:39:53.894753','492','SC-276',2,'Modificado/a IdMandante.',11,1),(1492,'2017-03-19 15:39:53.897370','491','SC-275',2,'Modificado/a IdMandante.',11,1),(1493,'2017-03-19 15:39:53.899974','490','SC-274',2,'Modificado/a IdMandante.',11,1),(1494,'2017-03-19 15:39:53.911919','489','SC-273',2,'Modificado/a IdMandante.',11,1),(1495,'2017-03-19 15:39:53.915134','488','SC-272',2,'Modificado/a IdMandante.',11,1),(1496,'2017-03-19 15:39:53.917878','487','SC-271',2,'Modificado/a IdMandante.',11,1),(1497,'2017-03-19 15:39:53.920666','486','SC-270',2,'Modificado/a IdMandante.',11,1),(1498,'2017-03-19 15:39:53.923054','485','SC-269',2,'Modificado/a IdMandante.',11,1),(1499,'2017-03-19 15:39:53.925500','484','SC-268',2,'Modificado/a IdMandante.',11,1),(1500,'2017-03-19 15:39:53.927813','483','SC-267',2,'Modificado/a IdMandante.',11,1),(1501,'2017-03-19 15:39:53.930141','482','SC-266',2,'Modificado/a IdMandante.',11,1),(1502,'2017-03-19 15:39:53.932652','481','SC-265',2,'Modificado/a IdMandante.',11,1),(1503,'2017-03-19 15:41:03.097541','480','SC-264',2,'Modificado/a IdMandante.',11,1),(1504,'2017-03-19 15:41:03.101017','479','SC-263',2,'Modificado/a IdMandante.',11,1),(1505,'2017-03-19 15:41:03.104003','478','SC-262',2,'Modificado/a IdMandante.',11,1),(1506,'2017-03-19 15:41:03.107214','477','SC-261',2,'Modificado/a IdMandante.',11,1),(1507,'2017-03-19 15:41:03.110056','476','SC-260',2,'Modificado/a IdMandante.',11,1),(1508,'2017-03-19 15:41:03.112844','475','SC-259',2,'Modificado/a IdMandante.',11,1),(1509,'2017-03-19 15:41:03.115356','474','SC-258',2,'Modificado/a IdMandante.',11,1),(1510,'2017-03-19 15:41:03.117914','473','SC-257',2,'Modificado/a IdMandante.',11,1),(1511,'2017-03-19 15:41:03.120382','472','SC-256',2,'Modificado/a IdMandante.',11,1),(1512,'2017-03-19 15:41:03.123104','471','SC-253',2,'Modificado/a IdMandante.',11,1),(1513,'2017-03-19 15:41:03.125870','470','SC-252',2,'Modificado/a IdMandante.',11,1),(1514,'2017-03-19 15:41:03.128349','468','SC-249',2,'Modificado/a IdMandante.',11,1),(1515,'2017-03-19 15:41:03.130674','467','SC-248',2,'Modificado/a IdMandante.',11,1),(1516,'2017-03-19 15:41:03.133679','466','SC-247',2,'Modificado/a IdMandante.',11,1),(1517,'2017-03-19 15:41:03.136341','463','SC-242',2,'Modificado/a IdMandante.',11,1),(1518,'2017-03-19 15:41:03.139793','461','SC-237',2,'Modificado/a IdMandante.',11,1),(1519,'2017-03-19 15:42:14.956528','460','SC-235',2,'Modificado/a IdMandante.',11,1),(1520,'2017-03-19 15:42:14.959727','457','SC-228',2,'Modificado/a IdMandante.',11,1),(1521,'2017-03-19 15:42:14.962722','456','SC-224',2,'Modificado/a IdMandante.',11,1),(1522,'2017-03-19 15:42:14.965386','455','SC-222',2,'Modificado/a IdMandante.',11,1),(1523,'2017-03-19 15:42:14.967961','454','SC-220',2,'Modificado/a IdMandante.',11,1),(1524,'2017-03-19 15:42:14.970427','453','SC-216',2,'Modificado/a IdMandante.',11,1),(1525,'2017-03-19 15:42:14.972709','452','SC-215',2,'Modificado/a IdMandante.',11,1),(1526,'2017-03-19 15:42:14.975373','451','SC-214',2,'Modificado/a IdMandante.',11,1),(1527,'2017-03-19 15:42:14.978643','450','SC-207',2,'Modificado/a IdMandante.',11,1),(1528,'2017-03-19 15:42:14.981277','448','SC-104',2,'Modificado/a IdMandante.',11,1),(1529,'2017-03-19 15:43:01.588685','647','OS2016-106',2,'Modificado/a IdMandante.',11,1),(1530,'2017-03-19 15:43:01.592545','643','OS2016-105',2,'Modificado/a IdMandante.',11,1),(1531,'2017-03-19 15:43:01.595522','645','OS2016-103',2,'Modificado/a IdMandante.',11,1),(1532,'2017-03-19 15:43:01.598752','644','OS2016-102',2,'Modificado/a IdMandante.',11,1),(1533,'2017-03-19 15:43:01.601357','625','OS2016-101',2,'Modificado/a IdMandante.',11,1),(1534,'2017-03-19 15:43:01.603988','624','OS2016-098',2,'Modificado/a IdMandante.',11,1),(1535,'2017-03-19 15:43:01.606497','622','OS2016-097',2,'Modificado/a IdMandante.',11,1),(1536,'2017-03-19 15:43:01.609351','620','OS2016-096',2,'Modificado/a IdMandante.',11,1),(1537,'2017-03-19 15:43:01.611894','619','OS2016-095',2,'Modificado/a IdMandante.',11,1),(1538,'2017-03-19 15:43:01.614322','615','OS2016-094',2,'Modificado/a IdMandante.',11,1),(1539,'2017-03-19 15:43:01.616752','614','OS2016-093',2,'Modificado/a IdMandante.',11,1),(1540,'2017-03-19 15:43:01.619512','621','OS2016-092',2,'Modificado/a IdMandante.',11,1),(1541,'2017-03-19 15:43:01.622321','613','OS2016-091',2,'Modificado/a IdMandante.',11,1),(1542,'2017-03-19 15:43:01.624903','610','OS2016-089',2,'Modificado/a IdMandante.',11,1),(1543,'2017-03-19 15:43:01.627453','609','OS2016-088',2,'Modificado/a IdMandante.',11,1),(1544,'2017-03-19 15:43:01.630048','608','OS2016-087',2,'Modificado/a IdMandante.',11,1),(1545,'2017-03-19 15:44:05.311100','607','OS2016-086',2,'Modificado/a IdMandante.',11,1),(1546,'2017-03-19 15:44:05.314384','606','OS2016-085',2,'Modificado/a IdMandante.',11,1),(1547,'2017-03-19 15:44:05.317580','602','OS2016-084',2,'Modificado/a IdMandante.',11,1),(1548,'2017-03-19 15:44:05.320598','601','OS2016-083',2,'Modificado/a IdMandante.',11,1),(1549,'2017-03-19 15:44:05.323372','600','OS2016-082',2,'Modificado/a IdMandante.',11,1),(1550,'2017-03-19 15:44:05.326226','599','OS2016-081',2,'Modificado/a IdMandante.',11,1),(1551,'2017-03-19 15:44:05.329687','596','OS2016-080',2,'Modificado/a IdMandante.',11,1),(1552,'2017-03-19 15:44:05.332890','595','OS2016-079',2,'Modificado/a IdMandante.',11,1),(1553,'2017-03-19 15:44:05.336125','593','OS2016-077',2,'Modificado/a IdMandante.',11,1),(1554,'2017-03-19 15:44:05.339661','592','OS2016-076',2,'Modificado/a IdMandante.',11,1),(1555,'2017-03-19 15:44:05.342670','591','OS2016-075',2,'Modificado/a IdMandante.',11,1),(1556,'2017-03-19 15:44:05.345539','590','OS2016-074',2,'Modificado/a IdMandante.',11,1),(1557,'2017-03-19 15:44:05.348240','589','OS2016-073',2,'Modificado/a IdMandante.',11,1),(1558,'2017-03-19 15:44:05.350871','588','OS2016-072',2,'Modificado/a IdMandante.',11,1),(1559,'2017-03-19 15:44:05.353249','587','OS2016-071',2,'Modificado/a IdMandante.',11,1),(1560,'2017-03-19 15:44:05.356218','586','OS2016-070',2,'Modificado/a IdMandante.',11,1),(1561,'2017-03-19 15:44:05.358933','585','OS2016-069',2,'Modificado/a IdMandante.',11,1),(1562,'2017-03-19 15:44:05.361388','584','OS2016-068',2,'Modificado/a IdMandante.',11,1),(1563,'2017-03-19 15:44:05.364293','583','OS2016-067',2,'Modificado/a IdMandante.',11,1),(1564,'2017-03-19 15:44:51.510137','582','OS2016-066',2,'Modificado/a IdMandante.',11,1),(1565,'2017-03-19 15:44:51.513344','581','OS2016-065',2,'Modificado/a IdMandante.',11,1),(1566,'2017-03-19 15:44:51.516467','580','OS2016-064',2,'Modificado/a IdMandante.',11,1),(1567,'2017-03-19 15:44:51.519640','579','OS2016-063',2,'Modificado/a IdMandante.',11,1),(1568,'2017-03-19 15:44:51.522859','578','OS2016-062',2,'Modificado/a IdMandante.',11,1),(1569,'2017-03-19 15:44:51.526133','577','OS2016-061',2,'Modificado/a IdMandante.',11,1),(1570,'2017-03-19 15:44:51.529342','576','OS2016-060',2,'Modificado/a IdMandante.',11,1),(1571,'2017-03-19 15:44:51.531883','575','OS2016-059',2,'Modificado/a IdMandante.',11,1),(1572,'2017-03-19 15:44:51.534275','574','OS2016-058',2,'Modificado/a IdMandante.',11,1),(1573,'2017-03-19 15:44:51.536771','573','OS2016-057',2,'Modificado/a IdMandante.',11,1),(1574,'2017-03-19 15:44:51.539392','572','OS2016-056',2,'Modificado/a IdMandante.',11,1),(1575,'2017-03-19 15:44:51.541993','571','OS2016-055',2,'Modificado/a IdMandante.',11,1),(1576,'2017-03-19 15:44:51.544690','570','OS2016-054',2,'Modificado/a IdMandante.',11,1),(1577,'2017-03-19 15:44:51.547193','569','OS2016-053',2,'Modificado/a IdMandante.',11,1),(1578,'2017-03-19 15:44:51.549661','568','OS2016-052',2,'Modificado/a IdMandante.',11,1),(1579,'2017-03-19 15:44:51.552071','567','OS2016-051',2,'Modificado/a IdMandante.',11,1),(1580,'2017-03-19 15:44:51.554859','566','OS2016-050',2,'Modificado/a IdMandante.',11,1),(1581,'2017-03-19 15:44:51.557958','565','OS2016-049',2,'Modificado/a IdMandante.',11,1),(1582,'2017-03-19 15:44:51.560404','564','OS2016-048',2,'Modificado/a IdMandante.',11,1),(1583,'2017-03-19 15:44:51.562803','563','OS2016-047',2,'Modificado/a IdMandante.',11,1),(1584,'2017-03-19 15:45:41.233760','562','OS2016-046',2,'Modificado/a IdMandante.',11,1),(1585,'2017-03-19 15:45:41.237185','561','OS2016-045',2,'Modificado/a IdMandante.',11,1),(1586,'2017-03-19 15:45:41.240101','560','OS2016-044',2,'Modificado/a IdMandante.',11,1),(1587,'2017-03-19 15:45:41.242933','559','OS2016-043',2,'Modificado/a IdMandante.',11,1),(1588,'2017-03-19 15:45:41.264667','558','OS2016-042',2,'Modificado/a IdMandante.',11,1),(1589,'2017-03-19 15:45:41.268586','557','OS2016-041',2,'Modificado/a IdMandante.',11,1),(1590,'2017-03-19 15:45:41.271813','556','OS2016-040',2,'Modificado/a IdMandante.',11,1),(1591,'2017-03-19 15:45:41.274569','555','OS2016-039',2,'Modificado/a IdMandante.',11,1),(1592,'2017-03-19 15:45:41.277477','554','OS2016-038',2,'Modificado/a IdMandante.',11,1),(1593,'2017-03-19 15:45:41.290837','553','OS2016-037',2,'Modificado/a IdMandante.',11,1),(1594,'2017-03-19 15:45:41.293795','552','OS2016-036',2,'Modificado/a IdMandante.',11,1),(1595,'2017-03-19 15:45:41.296703','551','OS2016-035',2,'Modificado/a IdMandante.',11,1),(1596,'2017-03-19 15:45:41.299430','550','OS2016-034',2,'Modificado/a IdMandante.',11,1),(1597,'2017-03-19 15:45:41.302584','549','OS2016-033',2,'Modificado/a IdMandante.',11,1),(1598,'2017-03-19 15:45:41.305424','548','OS2016-032',2,'Modificado/a IdMandante.',11,1),(1599,'2017-03-19 15:45:41.307958','547','OS2016-031',2,'Modificado/a IdMandante.',11,1),(1600,'2017-03-19 15:45:41.310629','546','OS2016-030',2,'Modificado/a IdMandante.',11,1),(1601,'2017-03-19 15:45:41.313669','545','OS2016-029',2,'Modificado/a IdMandante.',11,1),(1602,'2017-03-19 15:45:41.315972','544','OS2016-028',2,'Modificado/a IdMandante.',11,1),(1603,'2017-03-19 15:45:41.318515','543','OS2016-027',2,'Modificado/a IdMandante.',11,1),(1604,'2017-03-19 15:46:38.200206','542','OS2016-026',2,'Modificado/a IdMandante.',11,1),(1605,'2017-03-19 15:46:38.203662','541','OS2016-025',2,'Modificado/a IdMandante.',11,1),(1606,'2017-03-19 15:46:38.206571','540','OS2016-024',2,'Modificado/a IdMandante.',11,1),(1607,'2017-03-19 15:46:38.209224','539','OS2016-023',2,'Modificado/a IdMandante.',11,1),(1608,'2017-03-19 15:46:38.211832','538','OS2016-022',2,'Modificado/a IdMandante.',11,1),(1609,'2017-03-19 15:46:38.215516','537','OS2016-021',2,'Modificado/a IdMandante.',11,1),(1610,'2017-03-19 15:46:38.218348','536','OS2016-020',2,'Modificado/a IdMandante.',11,1),(1611,'2017-03-19 15:46:38.220965','535','OS2016-019',2,'Modificado/a IdMandante.',11,1),(1612,'2017-03-19 15:46:38.223264','534','OS2016-018',2,'Modificado/a IdMandante.',11,1),(1613,'2017-03-19 15:46:38.225766','533','OS2016-017',2,'Modificado/a IdMandante.',11,1),(1614,'2017-03-19 15:46:38.228597','532','OS2016-016',2,'Modificado/a IdMandante.',11,1),(1615,'2017-03-19 15:46:38.231059','531','OS2016-015',2,'Modificado/a IdMandante.',11,1),(1616,'2017-03-19 15:46:38.233448','530','OS2016-014',2,'Modificado/a IdMandante.',11,1),(1617,'2017-03-19 15:46:38.236759','529','OS2016-013',2,'Modificado/a IdMandante.',11,1),(1618,'2017-03-19 15:46:38.239629','528','OS2016-012',2,'Modificado/a IdMandante.',11,1),(1619,'2017-03-19 15:46:38.242085','527','OS2016-011',2,'Modificado/a IdMandante.',11,1),(1620,'2017-03-19 15:46:38.244631','526','OS2016-010',2,'Modificado/a IdMandante.',11,1),(1621,'2017-03-19 15:46:38.247029','525','OS2016-009',2,'Modificado/a IdMandante.',11,1),(1622,'2017-03-19 15:46:38.250108','524','OS2016-008',2,'Modificado/a IdMandante.',11,1),(1623,'2017-03-19 15:46:38.253284','523','OS2016-007',2,'Modificado/a IdMandante.',11,1),(1624,'2017-03-19 15:47:18.870496','522','OS2016-006',2,'Modificado/a IdMandante.',11,1),(1625,'2017-03-19 15:47:18.873856','521','OS2016-005',2,'Modificado/a IdMandante.',11,1),(1626,'2017-03-19 15:47:18.876863','520','OS2016-004',2,'Modificado/a IdMandante.',11,1),(1627,'2017-03-19 15:47:18.879926','519','OS2016-003',2,'Modificado/a IdMandante.',11,1),(1628,'2017-03-19 15:47:18.882901','518','OS2016-002',2,'Modificado/a IdMandante.',11,1),(1629,'2017-03-19 15:47:18.885609','517','OS2016-001',2,'Modificado/a IdMandante.',11,1),(1630,'2017-03-19 15:47:18.888387','506','OS2015-183',2,'Modificado/a IdMandante.',11,1),(1631,'2017-03-19 15:47:18.890864','505','OS2015-175',2,'Modificado/a IdMandante.',11,1),(1632,'2017-03-19 15:47:18.893211','504','OS2015-065',2,'Modificado/a IdMandante.',11,1),(1633,'2017-03-19 15:47:18.895761','503','OS2014-170',2,'Modificado/a IdMandante.',11,1),(1634,'2017-03-19 15:47:18.898589','502','OS2014-168',2,'Modificado/a IdMandante.',11,1),(1635,'2017-03-19 15:47:18.901075','508','OS2014-036',2,'Modificado/a IdMandante.',11,1),(1636,'2017-03-19 15:47:18.903510','501','OS2013-144',2,'Modificado/a IdMandante.',11,1),(1637,'2017-03-19 15:47:18.906036','500','OS2013-131',2,'Modificado/a IdMandante.',11,1),(1638,'2017-03-19 15:47:18.908649','499','OS2013-125',2,'Modificado/a IdMandante.',11,1),(1639,'2017-03-19 15:47:18.911106','511','OS2013-111',2,'Modificado/a IdMandante.',11,1),(1640,'2017-03-19 15:47:18.914453','498','OS2013-078',2,'Modificado/a IdMandante.',11,1),(1641,'2017-03-19 15:47:18.916904','510','OS2012-102',2,'Modificado/a IdMandante.',11,1),(1642,'2017-03-19 15:47:18.919345','497','OS2012-065',2,'Modificado/a IdMandante.',11,1),(1643,'2017-03-19 15:47:18.921787','496','OS2011-057',2,'Modificado/a IdMandante.',11,1),(1644,'2017-03-19 15:48:11.858722','509','OS2011-055',2,'Modificado/a IdMandante.',11,1),(1645,'2017-03-19 15:48:11.862852','507','OS2010-023',2,'Modificado/a IdMandante.',11,1),(1646,'2017-03-19 15:48:11.866093','495','OS2010-010',2,'Modificado/a IdMandante.',11,1),(1647,'2017-03-19 15:48:11.868925','514','OCM2016-02',2,'Modificado/a IdMandante.',11,1),(1648,'2017-03-19 15:48:11.881229','642','CV2016-009',2,'Modificado/a IdMandante.',11,1),(1649,'2017-03-19 15:48:11.884303','641','CV2016-008',2,'Modificado/a IdMandante.',11,1),(1650,'2017-03-19 15:48:11.887600','640','CV2016-007',2,'Modificado/a IdMandante.',11,1),(1651,'2017-03-19 15:48:11.890448','639','CV2016-006',2,'Modificado/a IdMandante.',11,1),(1652,'2017-03-19 15:48:11.893710','638','CV2016-005',2,'Modificado/a IdMandante.',11,1),(1653,'2017-03-19 15:48:11.896455','637','CV2016-004',2,'Modificado/a IdMandante.',11,1),(1654,'2017-03-19 15:48:11.898937','636','CV2016-003',2,'Modificado/a IdMandante.',11,1),(1655,'2017-03-19 15:48:11.901961','635','CV2016-002',2,'Modificado/a IdMandante.',11,1),(1656,'2017-03-19 15:48:11.904301','512','CV2016-001',2,'Modificado/a IdMandante.',11,1),(1657,'2017-03-19 15:48:11.906727','494','C-010',2,'Modificado/a IdMandante.',11,1),(1658,'2017-03-19 15:53:51.528704','18','CORREDOR SPA',3,'',9,1),(1659,'2017-03-27 03:20:53.142045','555','OS2016-039',2,'Modificado/a EstCtto y ObservCtto.',11,1),(1660,'2017-04-10 14:08:13.473417','523','SERVITERRA',2,'Modificado/a DirCtta y RutCtta.',10,1),(1661,'2017-04-11 01:45:05.728726','1','<NAME>',1,'Añadido.',19,1),(1662,'2017-04-11 01:46:42.218260','2','<NAME>',1,'Añadido.',19,1),(1663,'2017-04-11 01:47:02.129213','3','<NAME>',1,'Añadido.',19,1),(1664,'2017-04-11 01:48:20.502582','4','<NAME>',1,'Añadido.',19,1),(1665,'2017-04-11 01:48:39.064620','5','<NAME>',1,'Añadido.',19,1),(1666,'2017-04-11 01:49:06.250375','6','<NAME>',1,'Añadido.',19,1),(1667,'2017-04-11 01:50:29.998002','7','<NAME>',1,'Añadido.',19,1),(1668,'2017-04-11 01:50:52.523635','8','<NAME>',1,'Añadido.',19,1),(1669,'2017-04-11 01:51:19.013555','9','<NAME>',1,'Añadido.',19,1),(1670,'2017-04-11 01:51:38.884350','10','<NAME>',1,'Añadido.',19,1),(1671,'2017-04-11 01:52:00.801418','11','<NAME>',1,'Añadido.',19,1),(1672,'2017-04-11 01:58:52.771981','164','51-11-3305 IT Licensing , IT Services_',2,'Modificado/a IdDueno.',8,1),(1673,'2017-04-11 02:17:43.595419','191','51-11-3332 borrar Mine Planning external design',2,'Modificado/a NomCeco.',8,1),(1674,'2017-04-11 02:18:05.097890','191','51-11-3332 borrar_Mine Planning external design',2,'Modificado/a NomCeco.',8,1),(1675,'2017-04-11 02:21:38.242061','158','- ',2,'Modificado/a IdCeco.',8,1),(1676,'2017-04-11 02:21:38.245546','160','- ',2,'Modificado/a IdCeco.',8,1),(1677,'2017-04-11 02:21:38.248110','168','- ',2,'Modificado/a IdCeco.',8,1),(1678,'2017-04-11 02:21:38.251695','171','- ',2,'Modificado/a IdCeco.',8,1),(1679,'2017-04-11 02:21:38.254424','179','- ',2,'Modificado/a IdCeco.',8,1),(1680,'2017-04-11 02:21:38.256840','182','- ',2,'Modificado/a IdCeco.',8,1),(1681,'2017-04-11 02:21:38.259256','187','- ',2,'Modificado/a IdCeco.',8,1),(1682,'2017-04-11 02:21:38.261868','190','- ',2,'Modificado/a IdCeco.',8,1),(1683,'2017-04-11 02:21:38.264489','194','- ',2,'Modificado/a IdCeco.',8,1),(1684,'2017-04-11 02:21:38.267418','196','- ',2,'Modificado/a IdCeco.',8,1),(1685,'2017-04-11 02:21:38.269822','200','- ',2,'Modificado/a IdCeco.',8,1),(1686,'2017-04-11 02:21:38.271844','206','- ',2,'Modificado/a IdCeco.',8,1),(1687,'2017-04-11 02:21:38.274000','157','00-00-0000 N.A',2,'Modificado/a IdCeco.',8,1),(1688,'2017-04-11 02:21:38.275990','180','51-11-3052 Geology_',2,'Modificado/a IdCeco.',8,1),(1689,'2017-04-11 02:21:38.278215','159','51-11-3301 Project Team_',2,'Modificado/a IdCeco.',8,1),(1690,'2017-04-11 02:21:38.280182','161','51-11-3302 General Expenses_',2,'Modificado/a IdCeco.',8,1),(1691,'2017-04-11 02:21:38.282791','162','51-11-3303 Travel international_',2,'Modificado/a IdCeco.',8,1),(1692,'2017-04-11 02:21:38.285474','163','51-11-3304 Travel Domestic_',2,'Modificado/a IdCeco.',8,1),(1693,'2017-04-11 02:21:38.287638','164','51-11-3305 IT Licensing , IT Services_',2,'Modificado/a IdCeco.',8,1),(1694,'2017-04-11 02:21:38.289811','165','51-11-3306 Santiago Office_',2,'Modificado/a IdCeco.',8,1),(1695,'2017-04-11 02:21:38.291977','167','51-11-3309 Corporate charges_',2,'Modificado/a IdCeco.',8,1),(1696,'2017-04-11 02:21:38.293996','169','51-11-3314 Camp_',2,'Modificado/a IdCeco.',8,1),(1697,'2017-04-11 02:21:38.295920','170','51-11-3315 Office Vallenar_',2,'Modificado/a IdCeco.',8,1),(1698,'2017-04-11 02:21:38.298044','188','51-11-3324 Metallurgy_',2,'Modificado/a IdCeco.',8,1),(1699,'2017-04-11 02:21:38.300645','202','51-11-3331 Mine planning external support_',2,'Modificado/a IdCeco.',8,1),(1700,'2017-04-11 02:21:38.302851','191','51-11-3332 borrar_Mine Planning external design',2,'Modificado/a IdCeco.',8,1),(1701,'2017-04-11 02:21:38.304831','183','51-11-3337 RE Mine property_',2,'Modificado/a IdCeco.',8,1),(1702,'2017-04-11 02:21:38.306929','184','51-11-3338 EM Mine property',2,'Modificado/a IdCeco.',8,1),(1703,'2017-04-11 02:21:38.308973','185','51-11-3339 Legal/ consulting/easements_',2,'Modificado/a IdCeco.',8,1),(1704,'2017-04-11 02:21:38.310948','186','51-11-3340 Permits&Licences_',2,'Modificado/a IdCeco.',8,1),(1705,'2017-04-11 02:21:38.312846','197','51-11-3341 Communications and Government Relations',2,'Modificado/a IdCeco.',8,1),(1706,'2017-04-11 02:21:38.314809','198','51-11-3342 Community Development',2,'Modificado/a IdCeco.',8,1),(1707,'2017-04-11 02:21:38.317666','199','51-11-3343 Community Engagement_',2,'Modificado/a IdCeco.',8,1),(1708,'2017-04-11 02:21:38.320282','203','51-11-3344 Environmental Studies_',2,'Modificado/a IdCeco.',8,1),(1709,'2017-04-11 02:21:38.322969','204','51-11-3346 Environmental Permiting_',2,'Modificado/a IdCeco.',8,1),(1710,'2017-04-11 02:21:38.325179','208','51-11-3350 Drilling sector relincho_',2,'Modificado/a IdCeco.',8,1),(1711,'2017-04-11 02:21:38.327211','207','51-11-3351 Drilling Campaign La Fortuna',2,'Modificado/a IdCeco.',8,1),(1712,'2017-04-11 02:21:38.329437','193','51-11-3353 Service management_',2,'Modificado/a IdCeco.',8,1),(1713,'2017-04-11 02:21:38.331657','192','51-11-3354 PFS Fluor (On shore/off shore)_',2,'Modificado/a IdCeco.',8,1),(1714,'2017-04-11 02:21:38.334449','189','51-11-3355 PFS support and General Expenses_',2,'Modificado/a IdCeco.',8,1),(1715,'2017-04-11 02:21:38.336719','201','51-11-3356 Third Parties_',2,'Modificado/a IdCeco y IdDueno.',8,1),(1716,'2017-04-11 02:21:38.338716','166','_1-11-3308 borrar_Workshops',2,'Modificado/a IdCeco.',8,1),(1717,'2017-04-11 02:21:38.340968','172','_1-11-3316 borrar_Ing conceptual camino Ruta 5 a Huasco',2,'Modificado/a IdCeco.',8,1),(1718,'2017-04-11 02:21:38.343083','173','_1-11-3317 borrar_ng conceptual cruce rio Huasco',2,'Modificado/a IdCeco.',8,1),(1719,'2017-04-11 02:21:38.345056','174','_1-11-3321 borrar_Topografía 1:1000 zona Ruta 5 a costa',2,'Modificado/a IdCeco.',8,1),(1720,'2017-04-11 02:21:38.362215','175','_1-11-3322 borrar_Revisión ing correas',2,'Modificado/a IdCeco.',8,1),(1721,'2017-04-11 02:21:38.365700','176','_1-11-3323 borrar_Ing transporte agua construcción',2,'Modificado/a IdCeco.',8,1),(1722,'2017-04-11 02:21:38.369085','177','_1-11-3328 borrar_Ing pre-factibilidad LAT Las Losas a Rel a EM',2,'Modificado/a IdCeco.',8,1),(1723,'2017-04-11 02:21:38.371517','178','_1-11-3329 borrar_Revisión y optimización planta concentradora - Fluor',2,'Modificado/a IdCeco.',8,1),(1724,'2017-04-11 02:21:38.374117','181','_1-11-3336 Borrar_EMorro core shed',2,'Modificado/a IdCeco.',8,1),(1725,'2017-04-11 02:21:38.376287','195','_1-11-3341 borrar_Communication and Government',2,'Modificado/a IdCeco.',8,1),(1726,'2017-04-11 02:21:38.378458','205','_1-11-3347 borrar_Enviromental Permitting',2,'Modificado/a IdCeco.',8,1),(1727,'2017-04-11 02:22:17.794414','12','N.A.',1,'Añadido.',19,1),(1728,'2017-04-11 02:23:54.626569','206','- ',2,'Modificado/a IdDueno.',8,1),(1729,'2017-04-11 02:23:54.628962','200','- ',2,'Modificado/a IdDueno.',8,1),(1730,'2017-04-11 02:23:54.640369','196','- ',2,'Modificado/a IdDueno.',8,1),(1731,'2017-04-11 02:23:54.642936','194','- ',2,'Modificado/a IdDueno.',8,1),(1732,'2017-04-11 02:23:54.645777','190','- ',2,'Modificado/a IdDueno.',8,1),(1733,'2017-04-11 02:23:54.648439','187','- ',2,'Modificado/a IdDueno.',8,1),(1734,'2017-04-11 02:23:54.650431','182','- ',2,'Modificado/a IdDueno.',8,1),(1735,'2017-04-11 02:23:54.652458','179','- ',2,'Modificado/a IdDueno.',8,1),(1736,'2017-04-11 02:23:54.655461','171','- ',2,'Modificado/a IdDueno.',8,1),(1737,'2017-04-11 02:23:54.657978','168','- ',2,'Modificado/a IdDueno.',8,1),(1738,'2017-04-11 02:23:54.660246','160','- ',2,'Modificado/a IdDueno.',8,1),(1739,'2017-04-11 02:23:54.662296','158','- ',2,'Modificado/a IdDueno.',8,1),(1740,'2017-04-11 02:23:54.664527','195','_1-11-3341 borrar_Communication and Government',2,'Modificado/a IdDueno.',8,1),(1741,'2017-04-11 02:23:54.666875','181','_1-11-3336 Borrar_EMorro core shed',2,'Modificado/a IdDueno.',8,1),(1742,'2017-04-11 02:23:54.668999','205','_1-11-3347 borrar_Enviromental Permitting',2,'Modificado/a IdDueno.',8,1),(1743,'2017-04-11 02:23:54.672084','172','_1-11-3316 borrar_Ing conceptual camino Ruta 5 a Huasco',2,'Modificado/a IdDueno.',8,1),(1744,'2017-04-11 02:23:54.674348','177','_1-11-3328 borrar_Ing pre-factibilidad LAT Las Losas a Rel a EM',2,'Modificado/a IdDueno.',8,1),(1745,'2017-04-11 02:23:54.676551','176','_1-11-3323 borrar_Ing transporte agua construcción',2,'Modificado/a IdDueno.',8,1),(1746,'2017-04-11 02:23:54.679086','191','51-11-3332 borrar_Mine Planning external design',2,'Modificado/a IdDueno.',8,1),(1747,'2017-04-11 02:23:54.681165','173','_1-11-3317 borrar_ng conceptual cruce rio Huasco',2,'Modificado/a IdDueno.',8,1),(1748,'2017-04-11 02:23:54.683166','175','_1-11-3322 borrar_Revisión ing correas',2,'Modificado/a IdDueno.',8,1),(1749,'2017-04-11 02:23:54.685127','178','_1-11-3329 borrar_Revisión y optimización planta concentradora - Fluor',2,'Modificado/a IdDueno.',8,1),(1750,'2017-04-11 02:23:54.687872','174','_1-11-3321 borrar_Topografía 1:1000 zona Ruta 5 a costa',2,'Modificado/a IdDueno.',8,1),(1751,'2017-04-11 02:23:54.691047','166','_1-11-3308 borrar_Workshops',2,'Modificado/a IdDueno.',8,1),(1752,'2017-04-11 02:28:44.758638','157','00-00-0000 N.A',2,'Modificado/a IdDueno.',8,1),(1753,'2017-04-11 02:28:44.761567','180','51-11-3052 Geology_',2,'Modificado/a IdDueno.',8,1),(1754,'2017-04-11 02:28:44.764384','167','51-11-3309 Corporate charges_',2,'Modificado/a IdDueno.',8,1),(1755,'2017-04-11 02:28:44.766943','169','51-11-3314 Camp_',2,'Modificado/a IdDueno.',8,1),(1756,'2017-04-11 02:28:44.770313','170','51-11-3315 Office Vallenar_',2,'Modificado/a IdDueno.',8,1),(1757,'2017-04-11 02:28:44.773080','188','51-11-3324 Metallurgy_',2,'Modificado/a IdDueno.',8,1),(1758,'2017-04-11 02:28:44.775644','202','51-11-3331 Mine planning external support_',2,'Modificado/a IdDueno.',8,1),(1759,'2017-04-11 02:28:44.778305','183','51-11-3337 RE Mine property_',2,'Modificado/a IdDueno.',8,1),(1760,'2017-04-11 02:28:44.780704','184','51-11-3338 EM Mine property',2,'Modificado/a IdDueno.',8,1),(1761,'2017-04-11 02:28:44.782755','185','51-11-3339 Legal/ consulting/easements_',2,'Modificado/a IdDueno.',8,1),(1762,'2017-04-11 02:28:44.788683','186','51-11-3340 Permits&Licences_',2,'Modificado/a IdDueno.',8,1),(1763,'2017-04-11 02:28:44.792809','197','51-11-3341 Communications and Government Relations',2,'Modificado/a IdDueno.',8,1),(1764,'2017-04-11 02:28:44.795338','198','51-11-3342 Community Development',2,'Modificado/a IdDueno.',8,1),(1765,'2017-04-11 02:28:44.797414','199','51-11-3343 Community Engagement_',2,'Modificado/a IdDueno.',8,1),(1766,'2017-04-11 02:28:44.799449','203','51-11-3344 Environmental Studies_',2,'Modificado/a IdDueno.',8,1),(1767,'2017-04-11 02:28:44.802049','210','51-11-3345 Environmental Monitoring',2,'Modificado/a IdDueno.',8,1),(1768,'2017-04-11 02:28:44.804818','204','51-11-3346 Environmental Permiting_',2,'Modificado/a IdDueno.',8,1),(1769,'2017-04-11 02:28:44.808650','208','51-11-3350 Drilling sector relincho_',2,'Modificado/a IdDueno.',8,1),(1770,'2017-04-11 02:28:44.810781','207','51-11-3351 Drilling Campaign La Fortuna',2,'Modificado/a IdDueno.',8,1),(1771,'2017-04-11 02:28:44.812990','209','51-11-3352 General Management',2,'Modificado/a IdDueno.',8,1),(1772,'2017-04-11 02:28:44.815042','193','51-11-3353 Service management_',2,'Modificado/a IdDueno.',8,1),(1773,'2017-04-11 02:28:44.817413','192','51-11-3354 PFS Fluor (On shore/off shore)_',2,'Modificado/a IdDueno.',8,1),(1774,'2017-04-11 02:28:44.819498','189','51-11-3355 PFS support and General Expenses_',2,'Modificado/a IdDueno.',8,1),(1775,'2017-04-11 02:33:51.066797','11','<NAME>',2,'Modificado/a CargoDueno.',19,1),(1776,'2017-04-11 02:34:04.849290','10','<NAME>',2,'Modificado/a CargoDueno.',19,1),(1777,'2017-04-11 02:34:24.190402','9','<NAME>',2,'Modificado/a CargoDueno.',19,1),(1778,'2017-04-11 02:34:43.597477','8','<NAME>',2,'Modificado/a CargoDueno.',19,1),(1779,'2017-04-11 02:34:57.640524','7','<NAME>',2,'Modificado/a CargoDueno.',19,1),(1780,'2017-04-11 02:35:09.699839','6','<NAME>',2,'Modificado/a CargoDueno.',19,1),(1781,'2017-04-11 02:35:23.750075','5','<NAME>',2,'Modificado/a CargoDueno.',19,1),(1782,'2017-04-11 02:35:35.643373','4','<NAME>',2,'Modificado/a CargoDueno.',19,1),(1783,'2017-04-11 02:35:48.582761','3','<NAME>',2,'Modificado/a CargoDueno.',19,1),(1784,'2017-04-11 02:36:11.744341','1','<NAME>',2,'Modificado/a CargoDueno.',19,1),(1785,'2017-04-11 19:44:44.586165','547','FLUOR CHILE',2,'Modificado/a DirCtta y RutCtta.',10,1),(1786,'2017-04-11 20:39:45.057746','604','INSTITUTO PORTALES',2,'Modificado/a IdCtta.',10,1),(1787,'2017-04-11 20:39:45.062759','603','ELECTRODHARMA ENERGY CONSULTING SPA',2,'Modificado/a IdCtta.',10,1),(1788,'2017-04-11 20:39:45.066770','602','HOTEL PLAZA EL BOSQUE',2,'Modificado/a IdCtta.',10,1),(1789,'2017-04-11 20:39:45.069778','601','SMC ARQUITECTOS',2,'Modificado/a IdCtta.',10,1),(1790,'2017-04-11 20:39:45.078802','600','<NAME>',2,'Modificado/a IdCtta.',10,1),(1791,'2017-04-11 20:39:45.094844','599','<NAME>',2,'Modificado/a IdCtta.',10,1),(1792,'2017-04-11 20:39:45.103869','598','INVESTIGACIONES MINERAS Y GEOLÓGICAS LIMITADA',2,'Modificado/a IdCtta.',10,1),(1793,'2017-04-11 20:39:45.107882','597','FINNING CHILE S.A.',2,'Modificado/a IdCtta.',10,1),(1794,'2017-04-11 20:39:45.111890','596','SERGIO DIAZ GEOLOGIA E HIDROGEOLOGÍA',2,'Modificado/a IdCtta y DirCtta.',10,1),(1795,'2017-04-11 20:39:45.115901','595','<NAME>',2,'Modificado/a IdCtta.',10,1),(1796,'2017-04-11 20:39:45.123922','594','MEC CONSULTORES IRL',2,'Modificado/a IdCtta.',10,1),(1797,'2017-04-11 20:39:45.137971','593','SIGA INGENIERIA Y CONSULTORIA',2,'Modificado/a IdCtta.',10,1),(1798,'2017-04-11 20:39:45.146984','592','RENTAS E INVERSIONES ECOTECNOS',2,'Modificado/a IdCtta.',10,1),(1799,'2017-04-11 20:39:45.150994','591','<NAME> Y CIA',2,'Modificado/a IdCtta.',10,1),(1800,'2017-04-11 20:39:45.155004','590','BS CONSULTORES LIMITADA',2,'Modificado/a IdCtta.',10,1),(1801,'2017-04-11 20:39:45.158013','589','INTERPRETES ASOCIADOS',2,'Modificado/a IdCtta.',10,1),(1802,'2017-04-11 20:39:45.167036','588','AMEC FOSTER',2,'Modificado/a IdCtta.',10,1),(1803,'2017-04-11 20:39:45.182077','587','POR DEFINIR',2,'Modificado/a IdCtta.',10,1),(1804,'2017-04-11 20:39:45.195113','586','BLUECOAST',2,'Modificado/a IdCtta.',10,1),(1805,'2017-04-11 20:39:45.210151','585','ESPINOZA HERMANOS LTDA',2,'Modificado/a IdCtta.',10,1),(1806,'2017-04-11 20:39:45.220179','584','COMET STRATEGY',2,'Modificado/a IdCtta.',10,1),(1807,'2017-04-11 20:39:45.224197','583','VALLE VERDE CONSTRUCTORA',2,'Modificado/a IdCtta.',10,1),(1808,'2017-04-11 20:39:45.232246','582','HOTEL SOLARIS',2,'Modificado/a IdCtta.',10,1),(1809,'2017-04-11 20:39:45.246250','581','RADIO TAXI LIBERTADOR',2,'Modificado/a IdCtta.',10,1),(1810,'2017-04-11 20:39:45.254269','580','CASA DE LA PAZ',2,'Modificado/a IdCtta.',10,1),(1811,'2017-04-11 20:39:45.257277','579','VALENZUELA Y ORDENES LIMITADA,( ORIGENES CONSUTL)',2,'Modificado/a IdCtta.',10,1),(1812,'2017-04-11 20:39:45.260287','578','TECK RESOURCES CHILE LTDA',2,'Modificado/a IdCtta.',10,1),(1813,'2017-04-11 20:39:45.268308','577','GOLDCORP SERVICIOS',2,'Modificado/a IdCtta.',10,1),(1814,'2017-04-11 20:39:45.282346','576','FLUOR CANADA',2,'Modificado/a IdCtta.',10,1),(1815,'2017-04-11 20:39:45.302399','575','POR DEFINIR',2,'Modificado/a IdCtta.',10,1),(1816,'2017-04-11 20:39:45.305407','574','JO<NAME> MEZA',2,'Modificado/a IdCtta.',10,1),(1817,'2017-04-11 20:39:45.308416','573','ON COMMON GROUND CONSULTANTS INC',2,'Modificado/a IdCtta.',10,1),(1818,'2017-04-11 20:39:45.322452','572','AZABACHE',2,'Modificado/a IdCtta.',10,1),(1819,'2017-04-11 20:39:45.336489','571','ZETAECO',2,'Modificado/a IdCtta.',10,1),(1820,'2017-04-11 20:39:45.339496','570','WORKMATE',2,'Modificado/a IdCtta.',10,1),(1821,'2017-04-11 20:39:45.342505','569','SURMEDIA',2,'Modificado/a IdCtta.',10,1),(1822,'2017-04-11 20:39:45.345514','568','NUTRISER',2,'Modificado/a IdCtta.',10,1),(1823,'2017-04-11 20:39:45.349524','567','METSO',2,'Modificado/a IdCtta.',10,1),(1824,'2017-04-11 20:39:45.362559','566','<NAME>',2,'Modificado/a IdCtta.',10,1),(1825,'2017-04-11 20:39:45.376596','565','LUIS GONZALO R',2,'Modificado/a IdCtta.',10,1),(1826,'2017-04-11 20:39:45.380608','564','<NAME>',2,'Modificado/a IdCtta.',10,1),(1827,'2017-04-11 20:39:45.384617','563','<NAME>',2,'Modificado/a IdCtta.',10,1),(1828,'2017-04-11 20:39:45.387625','562','<NAME>',2,'Modificado/a IdCtta.',10,1),(1829,'2017-04-11 20:39:45.391635','561','<NAME>',2,'Modificado/a IdCtta.',10,1),(1830,'2017-04-11 20:39:45.406676','560','<NAME>',2,'Modificado/a IdCtta.',10,1),(1831,'2017-04-11 20:43:52.699118','546','(EN LICITACION)',2,'Modificado/a IdCtta.',10,1),(1832,'2017-04-11 20:43:52.703129','540','AB MARKET',2,'Modificado/a IdCtta.',10,1),(1833,'2017-04-11 20:43:52.706137','489','AERORESCATE S.A.',2,'Modificado/a IdCtta.',10,1),(1834,'2017-04-11 20:43:52.710158','520','AG<NAME>AR S.A',2,'Modificado/a IdCtta.',10,1),(1835,'2017-04-11 20:43:52.719172','500','<NAME>',2,'Modificado/a IdCtta.',10,1),(1836,'2017-04-11 20:43:52.734246','461','AMARO Y PINOCHET CONSULTORES E.I.R.L.',2,'Modificado/a IdCtta.',10,1),(1837,'2017-04-11 20:43:52.744239','549','AMIPRO',2,'Modificado/a IdCtta.',10,1),(1838,'2017-04-11 20:43:52.748250','550','<NAME>',2,'Modificado/a IdCtta.',10,1),(1839,'2017-04-11 20:43:52.752260','515','ANALISIS AMBIENTALES S.A',2,'Modificado/a IdCtta.',10,1),(1840,'2017-04-11 20:43:52.755267','473','AQUILES CHILE SPA',2,'Modificado/a IdCtta.',10,1),(1841,'2017-04-11 20:43:52.763330','539','ASESORIA COMUNICACIONAL',2,'Modificado/a IdCtta.',10,1),(1842,'2017-04-11 20:43:52.776323','511','ASESORIAS ALGORITMOS LTDA',2,'Modificado/a IdCtta.',10,1),(1843,'2017-04-11 20:43:52.785348','536','ASP',2,'Modificado/a IdCtta.',10,1),(1844,'2017-04-11 20:43:52.788358','551','<NAME>',2,'Modificado/a IdCtta.',10,1),(1845,'2017-04-11 20:43:52.791364','537','BIOSEPTIC',2,'Modificado/a IdCtta.',10,1),(1846,'2017-04-11 20:43:52.794372','552','<NAME>',2,'Modificado/a IdCtta.',10,1),(1847,'2017-04-11 20:43:52.803397','493','BRASS CHILE S.A',2,'Modificado/a IdCtta.',10,1),(1848,'2017-04-11 20:43:52.818436','453','CADAGUA S.A.',2,'Modificado/a IdCtta.',10,1),(1849,'2017-04-11 20:43:52.827462','477','<NAME>Z PEREZ-COTAPO LTDA.',2,'Modificado/a IdCtta.',10,1),(1850,'2017-04-11 20:43:52.830468','470','<NAME>',2,'Modificado/a IdCtta.',10,1),(1851,'2017-04-11 20:43:52.833476','466','<NAME> OPAZO E.I.R.L.',2,'Modificado/a IdCtta.',10,1),(1852,'2017-04-11 20:43:52.836486','521','<NAME>',2,'Modificado/a IdCtta.',10,1),(1853,'2017-04-11 20:43:52.844733','472','<NAME>',2,'Modificado/a IdCtta.',10,1),(1854,'2017-04-11 20:43:52.858808','457','<NAME>',2,'Modificado/a IdCtta.',10,1),(1855,'2017-04-11 20:43:52.866792','484','CEDREM',2,'Modificado/a IdCtta.',10,1),(1856,'2017-04-11 20:43:52.869801','464','CESMEC S.A.',2,'Modificado/a IdCtta.',10,1),(1857,'2017-04-11 20:43:52.872808','468','CIBERSECURITY LTDA',2,'Modificado/a IdCtta.',10,1),(1858,'2017-04-11 20:43:52.875817','516','<NAME>',2,'Modificado/a IdCtta.',10,1),(1859,'2017-04-11 20:43:52.883838','553','COLEGIO PROFESORES DE CHILE',2,'Modificado/a IdCtta.',10,1),(1860,'2017-04-11 20:43:52.897875','497','COMERCIAL NUTRISER LTDA.',2,'Modificado/a IdCtta y RutCtta.',10,1),(1861,'2017-04-11 20:43:52.906902','510','COMET STRATEGY PTY LTD',2,'Modificado/a IdCtta.',10,1),(1862,'2017-04-11 20:43:52.909907','518','COMPAÑIA DE PETROLEOS DE CHILE COPEC S.A.',2,'Modificado/a IdCtta.',10,1),(1863,'2017-04-11 20:43:52.912915','507','CONS<NAME>',2,'Modificado/a IdCtta.',10,1),(1864,'2017-04-11 20:43:52.915923','462','CONSULTORIAS CLAUDIO JORDAN ASTABURUAGA E.I.R.L.,',2,'Modificado/a IdCtta y NomCtta.',10,1),(1865,'2017-04-11 20:43:52.924947','554','CONVEYOR DYNAMICS, INC. ( CDI )',2,'Modificado/a IdCtta.',10,1),(1866,'2017-04-11 20:43:52.938984','480','CREA SOLUCIONES INTEGRALES LTDA',2,'Modificado/a IdCtta.',10,1),(1867,'2017-04-11 20:43:52.947008','555','<NAME>',2,'Modificado/a IdCtta.',10,1),(1868,'2017-04-11 20:43:52.950014','556','DOPPELMAYR',2,'Modificado/a IdCtta.',10,1),(1869,'2017-04-11 20:43:52.954025','532','ECO COPTER',2,'Modificado/a IdCtta.',10,1),(1870,'2017-04-11 20:43:52.957032','481','EGM SERVICIOS GEOLOGICOS MINEROS LTDA.',2,'Modificado/a IdCtta.',10,1),(1871,'2017-04-11 20:43:52.966057','541','<NAME>',2,'Modificado/a IdCtta.',10,1),(1872,'2017-04-11 20:43:52.980094','506','EMPRESA CONSTRUCTORA VALLE VERDE LTDA.',2,'Modificado/a IdCtta.',10,1),(1873,'2017-04-11 20:43:52.988116','504','ENFOQUE DIGITAL NETWORK LTDA.',2,'Modificado/a IdCtta.',10,1),(1874,'2017-04-11 20:43:52.992126','519','ENTEL',2,'Modificado/a IdCtta.',10,1),(1875,'2017-04-11 20:43:52.995134','557','EY',2,'Modificado/a IdCtta.',10,1),(1876,'2017-04-11 20:43:53.003157','524','FER<NAME>',2,'Modificado/a IdCtta.',10,1),(1877,'2017-04-11 20:43:53.018197','547','FLUOR CHILE',2,'Modificado/a IdCtta.',10,1),(1878,'2017-04-11 20:43:53.026217','558','FRANKO URQUETA T',2,'Modificado/a IdCtta.',10,1),(1879,'2017-04-11 20:43:53.029225','494','FUNDACION CASA DE LA PAZ',2,'Modificado/a IdCtta.',10,1),(1880,'2017-04-11 20:43:53.032233','474','GEODESARROLLO LIMITADA',2,'Modificado/a IdCtta.',10,1),(1881,'2017-04-11 20:43:53.035242','512','GHD',2,'Modificado/a IdCtta.',10,1),(1882,'2017-04-11 20:43:53.043264','548','GOLDER ASSOCIATES S.A',2,'Modificado/a IdCtta.',10,1),(1883,'2017-04-11 20:43:53.058302','559','GRAFICA NUEVA',2,'Modificado/a IdCtta.',10,1),(1884,'2017-04-11 20:43:53.067326','475','GRIFFITH DRILLING',2,'Modificado/a IdCtta.',10,1),(1885,'2017-04-11 20:43:53.070334','479','HECTOR CABELLO Q.',2,'Modificado/a IdCtta.',10,1),(1886,'2017-04-11 20:43:53.073343','495','HORACIO BRUNA',2,'Modificado/a IdCtta.',10,1),(1887,'2017-04-11 20:43:53.076350','543','INFORCARP',2,'Modificado/a IdCtta.',10,1),(1888,'2017-04-11 20:43:53.084372','560','<NAME>',2,'Modificado/a DirCtta y RutCtta.',10,1),(1889,'2017-04-11 20:43:53.097407','513','INSTITUTO DE INVESTIGACIONES AGROPECUARIAS',2,'Modificado/a IdCtta.',10,1),(1890,'2017-04-11 20:46:31.682174','454','IRON MOUNTAIN',2,'Modificado/a IdCtta.',10,1),(1891,'2017-04-11 20:46:31.685183','467','IT GLOBAL SERVICES SPA',2,'Modificado/a IdCtta.',10,1),(1892,'2017-04-11 20:46:31.688190','522','<NAME>',2,'Modificado/a IdCtta.',10,1),(1893,'2017-04-11 20:46:31.696211','465','JC SEGURIDAD S.A.',2,'Modificado/a IdCtta.',10,1),(1894,'2017-04-11 20:46:31.711252','478','JOR<NAME> (JAG)',2,'Modificado/a IdCtta.',10,1),(1895,'2017-04-11 20:46:31.720275','482','JORGE SEPULVEDA NIEVES (AZABACHE)',2,'Modificado/a IdCtta.',10,1),(1896,'2017-04-11 20:46:31.723285','476','KNIGHT PIESOLD S.A.',2,'Modificado/a IdCtta.',10,1),(1897,'2017-04-11 20:46:31.726292','534','LIZAMA',2,'Modificado/a IdCtta.',10,1),(1898,'2017-04-11 20:46:31.729301','565','<NAME>',2,'Modificado/a NomCtta, DirCtta y RutCtta.',10,1),(1899,'2017-04-11 20:46:31.737322','530','M<NAME>',2,'Modificado/a IdCtta.',10,1),(1900,'2017-04-11 20:46:31.752361','496','<NAME>',2,'Modificado/a IdCtta.',10,1),(1901,'2017-04-11 20:46:31.761387','469','<NAME>',2,'Modificado/a IdCtta.',10,1),(1902,'2017-04-11 20:46:31.764393','463','<NAME> B.',2,'Modificado/a IdCtta.',10,1),(1903,'2017-04-11 20:46:31.768405','490','<NAME>',2,'Modificado/a IdCtta y NomCtta.',10,1),(1904,'2017-04-11 20:46:31.770409','483','MINERIA Y MEDIO AMBIENTE LTDA',2,'Modificado/a IdCtta.',10,1),(1905,'2017-04-11 20:46:31.779434','538','MIVOZ',2,'Modificado/a IdCtta.',10,1),(1906,'2017-04-11 20:46:31.794473','544','MUTUAL',2,'Modificado/a IdCtta.',10,1),(1907,'2017-04-11 20:46:31.803497','485','ON COMMON GROUND CONSULTANTS INC.',2,'Modificado/a IdCtta.',10,1),(1908,'2017-04-11 20:46:31.806505','491','<NAME>',2,'Modificado/a IdCtta.',10,1),(1909,'2017-04-11 20:46:31.808512','487','OROENERGY',2,'Modificado/a IdCtta.',10,1),(1910,'2017-04-11 20:46:31.811520','526','<NAME>',2,'Modificado/a IdCtta.',10,1),(1911,'2017-04-11 20:46:31.820542','535','<NAME>',2,'Modificado/a IdCtta.',10,1),(1912,'2017-04-11 20:46:31.835586','529','PETRINOVIC',2,'Modificado/a IdCtta.',10,1),(1913,'2017-04-11 20:46:31.843604','501','PHOTOSAT',2,'Modificado/a IdCtta.',10,1),(1914,'2017-04-11 20:46:31.847615','451','POR DEFINIR',2,'Modificado/a IdCtta.',10,1),(1915,'2017-04-11 20:46:31.850623','542','PROMET 101',2,'Modificado/a IdCtta.',10,1),(1916,'2017-04-11 20:46:31.853631','458','PROPIEDAD MINERA Y SERVICIOS DE INGENIERIA LIMITADA',2,'Modificado/a IdCtta.',10,1),(1917,'2017-04-11 20:46:31.861653','505','RADIO AMIGA',2,'Modificado/a IdCtta.',10,1),(1918,'2017-04-11 20:46:31.876694','502','RADIO TAXIS \"EL LIBERTADOR\"',2,'Modificado/a IdCtta.',10,1),(1919,'2017-04-11 20:46:31.884713','499','REPLAN',2,'Modificado/a IdCtta.',10,1),(1920,'2017-04-11 20:46:31.887723','460','RODRIGO SALAZAR',2,'Modificado/a IdCtta.',10,1),(1921,'2017-04-11 20:46:31.890735','525','RUNGE PINCOCK MINARCO',2,'Modificado/a IdCtta.',10,1),(1922,'2017-04-11 20:46:31.898752','452','SCL APOQUINDO',2,'Modificado/a IdCtta.',10,1),(1923,'2017-04-11 20:46:31.911821','488','SECURITAS S.A',2,'Modificado/a IdCtta.',10,1),(1924,'2017-04-11 20:46:31.920811','531','SERVICIOS ADMINISTRATIVOS LTDA (WORKMATE)',2,'Modificado/a IdCtta.',10,1),(1925,'2017-04-11 20:46:31.923819','455','SERVICIOS DE ASEO PAULA ARIAS HIDALGO EIRL',2,'Modificado/a IdCtta.',10,1),(1926,'2017-04-11 20:46:31.926826','459','SERVICIOS Y PROYECTOS AMBIENTALES S.A.',2,'Modificado/a IdCtta.',10,1),(1927,'2017-04-11 20:46:31.929834','523','SERVITERRA',2,'Modificado/a IdCtta.',10,1),(1928,'2017-04-11 20:46:31.937891','514','SGS CANADA INC',2,'Modificado/a IdCtta.',10,1),(1929,'2017-04-11 20:46:31.952897','492','SOC. DE INVERSIONES LAS VEGAS',2,'Modificado/a IdCtta.',10,1),(1930,'2017-04-11 20:46:31.960917','503','<NAME> LTDA.',2,'Modificado/a IdCtta.',10,1),(1931,'2017-04-11 20:46:31.963925','456','SODEXO CHILE S.A.',2,'Modificado/a IdCtta.',10,1),(1932,'2017-04-11 20:46:31.966933','486','<NAME>',2,'Modificado/a IdCtta y RutCtta.',10,1),(1933,'2017-04-11 20:46:31.969941','508','TERRA NOVA TECHNOLOGIES (TNT)',2,'Modificado/a IdCtta.',10,1),(1934,'2017-04-11 20:46:31.977998','471','TITO SALAZAR MUJICA INGENIERIA LTDA.',2,'Modificado/a IdCtta.',10,1),(1935,'2017-04-11 20:46:31.993003','528','TRANSPORTE CARVAJAL',2,'Modificado/a IdCtta.',10,1),(1936,'2017-04-11 20:46:32.001025','498','TRULY NOLEN CHILE S.A',2,'Modificado/a IdCtta.',10,1),(1937,'2017-04-11 20:46:32.003031','517','TURISMO AVENTURA ALMA LTDA.',2,'Modificado/a IdCtta.',10,1),(1938,'2017-04-11 20:46:32.006038','527','VALENTE IMPRESIONES',2,'Modificado/a IdCtta.',10,1),(1939,'2017-04-11 20:50:32.040238','509','WOODGROVE TECHNOLOGIES INC.',2,'Modificado/a IdCtta.',10,1),(1940,'2017-04-11 20:50:32.042242','533','WEEKMARK',2,'Modificado/a IdCtta.',10,1),(1941,'2017-04-11 20:50:32.045251','545','VGC',2,'Modificado/a IdCtta.',10,1),(1942,'2017-04-11 20:50:32.053271','531','SERVICIOS ADMINISTRATIVOS LTDA (WORKMATE)',2,'Modificado/a DirCtta y RutCtta.',10,1),(1943,'2017-04-11 20:54:58.755083','570','WORKMATE',2,'Modificado/a DirCtta y RutCtta.',10,1),(1944,'2017-04-11 20:56:13.446810','605','XIMENA BAEZ TUÑON',2,'Modificado/a RutCtta.',10,1),(1945,'2017-04-11 21:00:38.882618','473','AQUILES CHILE SPA',2,'Modificado/a DirCtta y RutCtta.',10,1),(1946,'2017-04-11 21:00:38.885627','658','ARCADIS CHILE SPA',2,'Modificado/a RutCtta.',10,1),(1947,'2017-04-11 21:48:05.880953','633','GCF INGENIEROS',2,'Modificado/a RutCtta.',10,1),(1948,'2017-04-11 21:50:00.761230','657','SIGA INGENIERÍA Y CONSULTORIA',2,'Modificado/a NomCtta, DirCtta y RutCtta.',10,1),(1949,'2017-04-12 01:33:12.958413','475','GRIFFITH DRILLING',2,'Modificado/a DirCtta, RutCtta, Rep1Ctta y RutRep1Ctta.',10,1),(1950,'2017-04-12 01:38:06.165381','568','COMERCIAL NUTRISER LDTA',2,'Modificado/a NomCtta y RutCtta.',10,1),(1951,'2017-04-12 01:40:51.412552','568','COMERCIAL NUTRISER LDTA',2,'Modificado/a DirCtta, Rep1Ctta y RutRep1Ctta.',10,1),(1952,'2017-04-12 01:40:51.415508','497','COMERCIAL NUTRISER LTDA',2,'Modificado/a NomCtta, DirCtta, Rep1Ctta y RutRep1Ctta.',10,1),(1953,'2017-04-12 01:44:01.498669','571','ZETAECO',2,'Modificado/a DirCtta y RutCtta.',10,1),(1954,'2017-04-12 01:46:11.615060','544','MUTUAL',2,'Modificado/a DirCtta y RutCtta.',10,1),(1955,'2017-04-12 01:48:56.271411','520','AGUAS CHAÑAR S.A',2,'Modificado/a DirCtta y RutCtta.',10,1),(1956,'2017-04-12 17:39:20.867116','507','CONSUELO PINTO',2,'Modificado/a DirCtta.',10,1),(1957,'2017-04-13 14:23:49.743858','679','OS 2017-22',2,'Modificado/a NumCtto.',11,1),(1958,'2017-04-13 14:24:03.887062','679','OS2017-22',2,'Modificado/a NumCtto.',11,1),(1959,'2017-04-13 14:24:14.501100','679','OS2017-022',2,'Modificado/a NumCtto.',11,1),(1960,'2017-04-13 14:24:44.873114','679','OS2017-022',2,'Modificado/a TipoServ.',11,1),(1961,'2017-04-20 10:55:28.339181','456','SODEXO CHILE S.A.',2,'Modificado/a DirCtta, ComunaCtta, CiudadCtta y GiroCtta.',10,1),(1962,'2017-04-20 11:01:40.301603','476','KNIGHT PIESOLD S.A.',2,'Modificado/a DirCtta, ComunaCtta, CiudadCtta y GiroCtta.',10,1),(1963,'2017-04-20 11:03:50.541393','480','CREA SOLUCIONES INTEGRALES LTDA',2,'Modificado/a DirCtta, ComunaCtta, CiudadCtta y GiroCtta.',10,1),(1964,'2017-04-20 11:06:10.831298','470','CARLOS LAGOS',2,'Modificado/a DirCtta, ComunaCtta y CiudadCtta.',10,1),(1965,'2017-04-20 11:07:40.482095','547','FLUOR CHILE',2,'Modificado/a ComunaCtta, CiudadCtta y GiroCtta.',10,1),(1966,'2017-04-20 11:09:41.403656','455','SERVICIOS DE ASEO PAULA ARIAS HIDALGO EIRL',2,'Modificado/a DirCtta, ComunaCtta y CiudadCtta.',10,1),(1967,'2017-04-22 20:23:40.190192','660','Contratos y Auditorias Ltda',2,'Modificado/a DirCtta, ComunaCtta y CiudadCtta.',10,1),(1968,'2017-04-22 20:25:19.685944','660','Contratos y Auditorias Ltda',2,'Modificado/a GiroCtta y Rep1Ctta.',10,1),(1969,'2017-04-24 02:24:14.891289','611','SERVICIOS E INVERSIONES PRAMAR LTDA ( GEOBIOTA )',2,'Modificado/a DirCtta, ComunaCtta y CiudadCtta.',10,1),(1970,'2017-04-24 02:27:08.022611','611','SERVICIOS E INVERSIONES PRAMAR LTDA ( GEOBIOTA )',2,'Modificado/a GiroCtta.',10,1),(1971,'2017-04-24 02:30:19.972259','590','BS CONSULTORES LIMITADA',2,'Modificado/a ComunaCtta y CiudadCtta.',10,1),(1972,'2017-04-24 02:31:43.207040','592','RENTAS E INVERSIONES ECOTECNOS',2,'Modificado/a DirCtta, ComunaCtta y CiudadCtta.',10,1),(1973,'2017-04-24 02:32:36.543104','657','SIGA INGENIERÍA Y CONSULTORIA',2,'Modificado/a DirCtta, ComunaCtta y CiudadCtta.',10,1),(1974,'2017-04-24 02:33:15.351902','593','SIGA INGENIERIA Y CONSULTORIA',2,'Modificado/a DirCtta, ComunaCtta y CiudadCtta.',10,1),(1975,'2017-04-24 02:34:16.549457','594','MEC CONSULTORES IRL',2,'Modificado/a DirCtta, ComunaCtta y CiudadCtta.',10,1),(1976,'2017-04-24 02:35:03.251048','595','ROSA ESCOBAR EIRL',2,'Modificado/a NomCtta, DirCtta, ComunaCtta y CiudadCtta.',10,1),(1977,'2017-04-24 02:35:44.304162','596','SERGIO DIAZ GEOLOGIA E HIDROGEOLOGÍA',2,'Modificado/a DirCtta, ComunaCtta y CiudadCtta.',10,1),(1978,'2017-04-24 02:36:13.929919','523','SERVITERRA',2,'Modificado/a DirCtta, ComunaCtta y CiudadCtta.',10,1),(1979,'2017-04-24 02:36:47.205525','560','<NAME>',2,'Modificado/a DirCtta, ComunaCtta y CiudadCtta.',10,1),(1980,'2017-04-24 02:37:29.884647','565','<NAME>',2,'Modificado/a ComunaCtta y CiudadCtta.',10,1),(1981,'2017-04-24 02:38:28.171219','570','WORKMATE',2,'Modificado/a ComunaCtta y CiudadCtta.',10,1),(1982,'2017-04-24 02:39:17.570368','609','AXESAT CHILE S.A.',2,'Modificado/a DirCtta, ComunaCtta y CiudadCtta.',10,1),(1983,'2017-04-24 02:39:47.745551','620','<NAME>',2,'Modificado/a DirCtta, ComunaCtta y CiudadCtta.',10,1),(1984,'2017-04-24 02:41:52.220811','493','BRASS CHILE S.A',2,'Modificado/a DirCtta, ComunaCtta y CiudadCtta.',10,1),(1985,'2017-04-24 02:42:39.091206','658','ARCADIS CHILE SPA',2,'Modificado/a DirCtta, ComunaCtta y CiudadCtta.',10,1),(1986,'2017-04-24 02:43:00.215349','658','ARCADIS CHILE SPA',2,'Modificado/a GiroCtta.',10,1),(1987,'2017-04-24 02:43:15.205602','493','BRASS CHILE S.A',2,'Modificado/a GiroCtta.',10,1),(1988,'2017-04-24 02:44:02.340684','639','TRACTEBEL ENG',2,'Modificado/a DirCtta, ComunaCtta, CiudadCtta y GiroCtta.',10,1),(1989,'2017-04-24 02:44:37.751543','639','TRACTEBEL ENG',2,'Modificado/a RutCtta.',10,1),(1990,'2017-04-24 02:46:36.691691','643','Len y Asociados Ingenieros Consultores Ltda',2,'Modificado/a DirCtta, ComunaCtta, CiudadCtta y GiroCtta.',10,1),(1991,'2017-04-24 02:48:08.319763','633','GCF INGENIEROS',2,'Modificado/a DirCtta, ComunaCtta, CiudadCtta y GiroCtta.',10,1),(1992,'2017-04-24 02:48:59.719774','606','HER<NAME>',2,'Modificado/a DirCtta, ComunaCtta, CiudadCtta y GiroCtta.',10,1),(1993,'2017-04-24 02:51:45.732343','651','<NAME>',2,'Modificado/a ComunaCtta y CiudadCtta.',10,1),(1994,'2017-04-24 19:07:23.898354','462','CONSULTORIAS CLAUDIO <NAME> E.I.R.L.,',2,'Modificado/a DirCtta, ComunaCtta, CiudadCtta y GiroCtta.',10,1),(1995,'2017-04-30 12:47:19.055052','3','<NAME>',3,'',21,1),(1996,'2017-04-30 19:54:13.226455','13','<NAME>',1,'Añadido.',21,1),(1997,'2017-04-30 20:18:08.854036','661','<NAME>',2,'Modificado/a DirCtta y Rep1Ctta.',10,1),(1998,'2017-04-30 20:18:34.412855','661','<NAME>',2,'Modificado/a ComunaCtta, CiudadCtta y GiroCtta.',10,1),(1999,'2017-04-30 20:43:07.836926','5','Sigfried Violand',1,'Añadido.',22,1),(2000,'2017-04-30 21:16:57.109359','6','<NAME>',1,'Añadido.',22,1),(2001,'2017-04-30 21:30:23.417026','7','<NAME>',1,'Añadido.',22,1),(2002,'2017-04-30 21:31:40.176893','14','<NAME>',1,'Añadido.',21,1),(2003,'2017-04-30 21:42:06.852303','8','<NAME>',1,'Añadido.',22,1),(2004,'2017-04-30 22:02:12.816958','9','<NAME>',1,'Añadido.',22,1),(2005,'2017-04-30 22:03:34.372446','15','<NAME>',1,'Añadido.',21,1),(2006,'2017-04-30 22:50:05.158329','7','<NAME>',3,'',21,1),(2007,'2017-04-30 22:50:14.845305','9','<NAME>',3,'',21,1),(2008,'2017-04-30 22:52:23.246427','10','<NAME>',1,'Añadido.',22,1),(2009,'2017-04-30 23:33:23.925115','11','<NAME>',1,'Añadido.',22,1),(2010,'2017-04-30 23:35:15.110947','17','<NAME>',1,'Añadido.',21,1),(2011,'2017-04-30 23:43:14.301304','12','<NAME>',1,'Añadido.',22,1),(2012,'2017-04-30 23:48:33.659684','13','<NAME>',1,'Añadido.',22,1),(2013,'2017-04-30 23:51:32.279268','18','<NAME>',1,'Añadido.',21,1),(2014,'2017-04-30 23:56:39.885684','14','<NAME>',1,'Añadido.',22,1),(2015,'2017-05-01 00:02:40.488299','15','<NAME>',1,'Añadido.',22,1),(2016,'2017-05-01 00:10:07.813192','16','<NAME>',1,'Añadido.',22,1),(2017,'2017-05-01 00:16:31.745348','17','<NAME>',1,'Añadido.',22,1),(2018,'2017-05-01 00:17:52.773450','18','<NAME>',1,'Añadido.',22,1),(2019,'2017-05-01 01:43:19.601800','19','<NAME>',1,'Añadido.',22,1),(2020,'2017-05-01 01:46:16.020458','491','ORDENES ABARCA SpA',2,'Modificado/a NomCtta, DirCtta, ComunaCtta, CiudadCtta y GiroCtta.',10,1),(2021,'2017-05-01 02:20:20.388153','22','<NAME>',1,'Añadido.',22,1),(2022,'2017-05-01 02:22:05.202106','23','<NAME>',1,'Añadido.',22,1),(2023,'2017-05-01 02:23:10.336686','492','SOC. DE INVERSIONES LAS VEGAS',2,'Modificado/a DirCtta, ComunaCtta y CiudadCtta.',10,1),(2024,'2017-05-01 02:30:48.633696','24','<NAME>',1,'Añadido.',22,1),(2025,'2017-05-01 02:31:36.763737','25','<NAME>',1,'Añadido.',22,1),(2026,'2017-05-01 02:37:07.730363','19','<NAME>',1,'Añadido.',21,1),(2027,'2017-05-01 03:01:21.736230','26','<NAME>',1,'Añadido.',22,1),(2028,'2017-05-01 03:02:57.232080','20','<NAME>',1,'Añadido.',21,1),(2029,'2017-05-01 03:14:18.792641','27','<NAME>',1,'Añadido.',22,1),(2030,'2017-05-01 03:15:30.288066','538','MIVOZ',2,'Modificado/a DirCtta, ComunaCtta, CiudadCtta y GiroCtta.',10,1),(2031,'2017-05-01 03:30:00.791626','466','CARLOS SEBASTIAN OPAZO E.I.R.L.',2,'Modificado/a DirCtta, ComunaCtta, CiudadCtta y GiroCtta.',10,1),(2032,'2017-05-01 03:31:32.694529','28','<NAME>',1,'Añadido.',22,1),(2033,'2017-05-01 03:51:48.465705','665','Servicios de ingenieria Black & Veatch Chile Ltda.',1,'Añadido.',10,1),(2034,'2017-05-01 03:53:32.126671','29','<NAME>',1,'Añadido.',22,1),(2035,'2017-05-01 03:56:13.060210','665','SERVICIOS DE INGENIERIA BLACK & VEATCH CHILE LTDA.',2,'Modificado/a NomCtta.',10,1),(2036,'2017-05-01 11:54:57.112908','30','<NAME>',1,'Añadido.',22,1),(2037,'2017-05-01 12:13:03.661884','528','OS2016-012',2,'Modificado/a IdCecoCtto.',11,1),(2038,'2017-05-01 12:13:03.667327','532','OS2016-016',2,'Modificado/a IdCecoCtto.',11,1),(2039,'2017-05-01 12:13:03.670043','591','OS2016-075',2,'Modificado/a IdCecoCtto.',11,1),(2040,'2017-05-01 12:13:03.673284','606','OS2016-085',2,'Modificado/a IdCecoCtto.',11,1),(2041,'2017-05-01 12:13:03.676377','662','OS2017-010',2,'Modificado/a IdCecoCtto.',11,1),(2042,'2017-05-01 12:21:54.858102','649','SC-300',2,'Modificado/a IdCecoCtto.',11,1),(2043,'2017-05-01 12:23:19.356411','205','_1-11-3347 borrar_Enviromental Permitting',3,'',8,1),(2044,'2017-05-01 12:23:33.932954','195','_1-11-3341 borrar_Communication and Government',3,'',8,1),(2045,'2017-05-01 12:23:46.327820','191','51-11-3332 borrar_Mine Planning external design',3,'',8,1),(2046,'2017-05-01 12:24:22.071287','196','- ',3,'',8,1),(2047,'2017-05-01 12:24:37.170520','194','- ',3,'',8,1),(2048,'2017-05-01 12:28:28.880313','166','_1-11-3308 borrar_Workshops',3,'',8,1),(2049,'2017-05-01 12:28:38.324724','181','_1-11-3336 Borrar_EMorro core shed',3,'',8,1),(2050,'2017-05-01 12:28:44.964074','178','_1-11-3329 borrar_Revisión y optimización planta concentradora - Fluor',3,'',8,1),(2051,'2017-05-01 12:28:53.319212','177','_1-11-3328 borrar_Ing pre-factibilidad LAT Las Losas a Rel a EM',3,'',8,1),(2052,'2017-05-01 12:29:00.960550','176','_1-11-3323 borrar_Ing transporte agua construcción',3,'',8,1),(2053,'2017-05-01 12:29:09.104024','175','_1-11-3322 borrar_Revisión ing correas',3,'',8,1),(2054,'2017-05-01 12:29:17.365044','174','_1-11-3321 borrar_Topografía 1:1000 zona Ruta 5 a costa',3,'',8,1),(2055,'2017-05-01 12:29:24.779360','173','_1-11-3317 borrar_ng conceptual cruce rio Huasco',3,'',8,1),(2056,'2017-05-01 12:29:32.711014','172','_1-11-3316 borrar_Ing conceptual camino Ruta 5 a Huasco',3,'',8,1),(2057,'2017-05-01 12:31:11.232653','171','- ',3,'',8,1),(2058,'2017-05-01 12:31:53.151191','179','- ',3,'',8,1),(2059,'2017-05-01 12:32:07.563428','187','- ',3,'',8,1),(2060,'2017-05-01 12:32:22.996260','190','- ',3,'',8,1),(2061,'2017-05-01 12:32:31.668000','160','- ',3,'',8,1),(2062,'2017-05-01 12:33:12.410674','158','- ',3,'',8,1),(2063,'2017-05-01 12:33:20.951032','168','- ',3,'',8,1),(2064,'2017-05-01 12:33:28.651165','182','- ',3,'',8,1),(2065,'2017-05-01 12:33:36.105614','200','- ',3,'',8,1),(2066,'2017-05-01 12:33:43.744031','206','- ',3,'',8,1),(2067,'2017-05-01 12:45:32.474109','211','51-11-3360 Resettlement',1,'Añadido.',8,1),(2068,'2017-05-01 12:46:38.157112','212','51-11-3363 Geotechnical',1,'Añadido.',8,1),(2069,'2017-05-01 12:48:27.778668','50','684 borrar_CSR',3,'',7,1),(2070,'2017-05-01 12:48:36.993336','49','684 borrar_Communi',3,'',7,1),(2071,'2017-05-01 12:48:44.889710','48','683 borrar_Mine',3,'',7,1),(2072,'2017-05-01 12:48:54.161337','47','683 borrar_Metallur',3,'',7,1),(2073,'2017-05-01 12:49:08.018734','45','683 borrar_Geology',3,'',7,1),(2074,'2017-05-01 12:49:19.092851','44','683 borrar_Engineer',3,'',7,1),(2075,'2017-05-01 12:49:33.767656','42','682 borrar_Gen Exp',3,'',7,1),(2076,'2017-05-01 12:54:36.135808','664','SC-450',3,'',11,1),(2077,'2017-05-01 12:54:46.314248','681','SC455',3,'',11,1),(2078,'2017-05-01 12:54:56.626731','678','SC-452',3,'',11,1),(2079,'2017-05-01 12:55:08.801609','677','SC-451',3,'',11,1),(2080,'2017-05-01 12:57:35.009024','686','SC-331',2,'Modificado/a DescCtto.',11,1),(2081,'2017-05-01 12:57:59.176062','683','SC-330',2,'Modificado/a DescCtto.',11,1),(2082,'2017-05-01 13:24:04.666632','458','SC-232',2,'Modificado/a EstCtto.',11,1),(2083,'2017-05-01 13:24:04.672844','493','SC-277',2,'Modificado/a EstCtto.',11,1),(2084,'2017-05-01 13:24:04.680602','597','SC-278',2,'Modificado/a EstCtto.',11,1),(2085,'2017-05-01 13:24:04.684576','612','SC-285',2,'Modificado/a EstCtto.',11,1),(2086,'2017-05-01 13:24:04.689968','616','SC-293',2,'Modificado/a EstCtto.',11,1),(2087,'2017-05-01 13:24:04.693844','617','SC-294',2,'Modificado/a EstCtto.',11,1),(2088,'2017-05-01 13:24:04.697155','633','SC-296',2,'Modificado/a EstCtto.',11,1),(2089,'2017-05-01 13:24:04.701206','650','SC-299',2,'Modificado/a EstCtto.',11,1),(2090,'2017-05-01 13:24:04.704814','649','SC-300',2,'Modificado/a EstCtto.',11,1),(2091,'2017-05-01 13:40:53.899755','520','OS2016-004',2,'Modificado/a EstCtto.',11,1),(2092,'2017-05-01 13:40:53.903552','538','OS2016-022',2,'Modificado/a EstCtto.',11,1),(2093,'2017-05-01 13:40:53.926316','540','OS2016-024',2,'Modificado/a EstCtto.',11,1),(2094,'2017-05-01 13:40:53.930832','544','OS2016-028',2,'Modificado/a EstCtto.',11,1),(2095,'2017-05-01 13:40:53.934553','549','OS2016-033',2,'Modificado/a ObservCtto.',11,1),(2096,'2017-05-01 13:40:53.938793','563','OS2016-047',2,'Modificado/a EstCtto.',11,1),(2097,'2017-05-01 13:40:53.941877','565','OS2016-049',2,'Modificado/a EstCtto.',11,1),(2098,'2017-05-01 13:40:53.945374','566','OS2016-050',2,'Modificado/a EstCtto.',11,1),(2099,'2017-05-01 13:40:53.948266','574','OS2016-058',2,'Modificado/a EstCtto.',11,1),(2100,'2017-05-01 13:40:53.950877','575','OS2016-059',2,'Modificado/a EstCtto.',11,1),(2101,'2017-05-01 13:40:53.953426','579','OS2016-063',2,'Modificado/a ObservCtto.',11,1),(2102,'2017-05-01 13:40:53.956134','580','OS2016-064',2,'Modificado/a EstCtto.',11,1),(2103,'2017-05-01 13:40:53.958705','581','OS2016-065',2,'Modificado/a EstCtto.',11,1),(2104,'2017-05-01 13:40:53.964485','594','OS2016-078',2,'Modificado/a EstCtto.',11,1),(2105,'2017-05-01 13:40:53.967370','600','OS2016-082',2,'Modificado/a EstCtto.',11,1),(2106,'2017-05-01 13:40:53.971014','601','OS2016-083',2,'Modificado/a EstCtto.',11,1),(2107,'2017-05-01 13:40:53.973867','602','OS2016-084',2,'Modificado/a EstCtto.',11,1),(2108,'2017-05-01 13:40:53.978949','613','OS2016-091',2,'Modificado/a EstCtto.',11,1),(2109,'2017-05-01 13:40:53.982141','614','OS2016-093',2,'Modificado/a EstCtto.',11,1),(2110,'2017-05-01 13:40:53.985234','625','OS2016-101',2,'Modificado/a EstCtto.',11,1),(2111,'2017-05-01 13:40:53.987889','644','OS2016-102',2,'Modificado/a EstCtto.',11,1),(2112,'2017-05-01 13:40:53.990766','645','OS2016-103',2,'Modificado/a EstCtto.',11,1),(2113,'2017-05-01 13:40:53.993805','646','OS2016-108',2,'Modificado/a EstCtto.',11,1),(2114,'2017-05-01 13:40:53.998664','652','OS2017-003',2,'Modificado/a EstCtto.',11,1),(2115,'2017-05-01 13:40:54.001775','657','OS2017-005',2,'Modificado/a EstCtto.',11,1),(2116,'2017-05-01 13:40:54.004709','659','OS2017-007',2,'Modificado/a EstCtto.',11,1),(2117,'2017-05-01 13:40:54.007622','662','OS2017-010',2,'Modificado/a EstCtto.',11,1),(2118,'2017-05-01 13:40:54.011810','669','OS2017-011',2,'Modificado/a EstCtto.',11,1),(2119,'2017-05-01 13:40:54.015337','665','OS2017-013',2,'Modificado/a EstCtto.',11,1),(2120,'2017-05-01 13:40:54.018164','667','OS2017-014',2,'Modificado/a EstCtto.',11,1),(2121,'2017-05-01 14:19:01.186453','31','<NAME>',1,'Añadido.',22,1),(2122,'2017-05-01 14:29:21.099921','32','SERVICIOS E INVERSIONES PRAMAR LTDA ( GEOBIOTA ) <NAME>',1,'Añadido.',22,1),(2123,'2017-05-01 14:39:57.436476','33','COMERCIAL NUTRISER LDTA - <NAME>',1,'Añadido.',22,1),(2124,'2017-05-01 14:46:31.291107','497','COMERCIAL NUT',2,'Modificado/a NomCtta.',10,1),(2125,'2017-05-01 14:48:03.478023','497','COMERCIAL NUT',3,'',10,1),(2126,'2017-05-01 14:51:45.958663','34','FLUOR CANADA - <NAME>',1,'Añadido.',22,1),(2127,'2017-05-01 15:02:41.110310','35','GCF INGENIEROS - <NAME>',1,'Añadido.',22,1),(2128,'2017-05-01 15:05:32.011588','21','<NAME>',1,'Añadido.',21,1),(2129,'2017-05-01 15:16:08.084889','36','INVESTIGACIONES MINERAS Y GEOLÓGICAS LIMITADA - <NAME>',1,'Añadido.',22,1),(2130,'2017-05-01 15:17:25.017694','598','INVESTIGACIONES MINERAS Y GEOLÓGICAS LIMITADA',2,'Modificado/a DirCtta, ComunaCtta y CiudadCtta.',10,1),(2131,'2017-05-01 15:22:17.891678','37','<NAME> - <NAME>',1,'Añadido.',22,1),(2132,'2017-05-01 15:29:45.550029','38','MUTUAL - <NAME>',1,'Añadido.',22,1),(2133,'2017-05-01 15:30:39.158052','39','MUTUAL - <NAME>',1,'Añadido.',22,1),(2134,'2017-05-01 15:34:52.192668','40','AMAWTA GEOCONSULTORES LTDA. - <NAME>',1,'Añadido.',22,1),(2135,'2017-05-01 15:39:37.133743','654','AMAWTA GEOCONSULTORES LTDA.',2,'Modificado/a RutCtta, DirCtta, ComunaCtta, CiudadCtta y GiroCtta.',10,1),(2136,'2017-05-01 15:48:20.115706','590','BS CONSULTORES LIMITADA',2,'Modificado/a GiroCtta, BcoCtta, NumCtaCtta, Rep1Ctta y RutRep1Ctta.',10,1),(2137,'2017-05-01 15:49:41.842905','41','BS CONSULTORES LIMITADA - <NAME>',1,'Añadido.',22,1),(2138,'2017-05-01 15:54:27.421564','42','RENTAS E INVERSIONES ECOTECNOS - Humberto Díaz Oviedo',1,'Añadido.',22,1),(2139,'2017-05-01 15:55:20.608965','43','RENTAS E INVERSIONES ECOTECNOS - Italo Andreani Olivares',1,'Añadido.',22,1),(2140,'2017-05-01 15:58:25.098854','592','RENTAS E INVERSIONES ECOTECNOS',2,'Modificado/a RutCtta, GiroCtta, BcoCtta, NumCtaCtta, Rep1Ctta, RutRep1Ctta, Rep2Ctta, RutRep2Ctta, NotarioCtta, FechDocpersonCtta y NotariapersonCtta.',10,1),(2141,'2017-05-01 16:04:10.350497','44','SIGA INGENIERIA Y CONSULTORIA - Luisa Cares',1,'Añadido.',22,1),(2142,'2017-05-01 16:09:04.453753','593','B_SIGA INGENIERIA Y CONSULTORIA',2,'Modificado/a NomCtta.',10,1),(2143,'2017-05-01 16:13:07.094719','44','SIGA INGENIERÍA Y CONSULTORIA - Luisa Cares',2,'Modificado/a IdCtta.',22,1),(2144,'2017-05-01 16:13:34.719797','593','B_SIGA INGENIERIA Y CONSULTORIA',3,'',10,1),(2145,'2017-05-01 16:17:55.282322','45','MEC CONSULTORES IRL - MARIA ESTELA CATAL<NAME>US',1,'Añadido.',22,1),(2146,'2017-05-01 16:19:25.963072','594','MEC CONSULTORES IRL',2,'Modificado/a DirCtta, GiroCtta, BcoCtta, NumCtaCtta, Rep1Ctta y RutRep1Ctta.',10,1),(2147,'2017-05-01 16:23:47.016452','46','ROSA ESCOBAR EIRL - ROSA LEONOR <NAME>',1,'Añadido.',22,1),(2148,'2017-05-01 16:30:53.937068','47','KUNZA CONSULTORES S.A. - <NAME>',1,'Añadido.',22,1),(2149,'2017-05-01 16:32:31.371883','644','KUNZA CONSULTORES S.A.',2,'Modificado/a DirCtta, ComunaCtta, CiudadCtta, GiroCtta, BcoCtta, NumCtaCtta, Rep1Ctta y RutRep1Ctta.',10,1),(2150,'2017-05-01 16:34:02.989312','48','KUNZA CONSULTORES S.A. - <NAME>',1,'Añadido.',22,1),(2151,'2017-05-01 16:42:18.425130','49','BIOSEPTIC - <NAME>',1,'Añadido.',22,1),(2152,'2017-05-01 16:44:21.188202','50','BIOSEPTIC - <NAME>',1,'Añadido.',22,1),(2153,'2017-05-01 16:48:50.631564','51','WORKMATE - <NAME>',1,'Añadido.',22,1),(2154,'2017-05-01 16:49:50.629387','52','WORKMATE - Otilia Marambio',1,'Añadido.',22,1),(2155,'2017-05-01 16:55:30.319185','53','METSO - TeresaBurris',1,'Añadido.',22,1),(2156,'2017-05-01 16:57:00.268881','22','<NAME>',1,'Añadido.',21,1),(2157,'2017-05-01 17:01:33.934335','54','AGUAS CHAÑAR S.A - <NAME>',1,'Añadido.',22,1),(2158,'2017-05-01 17:06:08.096540','55','HIDROGEOLOGIA Y MEDIO AMBIENTE SUSTENTABLE - <NAME>',1,'Añadido.',22,1),(2159,'2017-05-01 17:07:17.890933','656','HIDROGEOLOGIA Y MEDIO AMBIENTE SUSTENTABLE',2,'Modificado/a DirCtta, ComunaCtta y CiudadCtta.',10,1),(2160,'2017-05-01 21:19:58.568658','452','SC-215',2,'Modificado/a ProvisCtto.',11,1),(2161,'2017-05-01 21:19:58.575105','459','SC-233',2,'Modificado/a ProvisCtto.',11,1),(2162,'2017-05-01 21:19:58.578708','460','SC-235',2,'Modificado/a ProvisCtto.',11,1),(2163,'2017-05-01 21:19:58.586008','468','SC-249',2,'Modificado/a ProvisCtto.',11,1),(2164,'2017-05-01 21:19:58.590935','475','SC-259',2,'Modificado/a ProvisCtto.',11,1),(2165,'2017-05-01 21:19:58.594540','481','SC-265',2,'Modificado/a ProvisCtto.',11,1),(2166,'2017-05-01 21:19:58.599360','485','SC-269',2,'Modificado/a ProvisCtto.',11,1),(2167,'2017-05-01 21:19:58.603482','487','SC-271',2,'Modificado/a ProvisCtto.',11,1),(2168,'2017-05-01 21:19:58.607932','488','SC-272',2,'Modificado/a ProvisCtto.',11,1),(2169,'2017-05-01 21:19:58.612501','489','SC-273',2,'Modificado/a ProvisCtto.',11,1),(2170,'2017-05-01 21:19:58.615371','490','SC-274',2,'Modificado/a ProvisCtto.',11,1),(2171,'2017-05-01 21:19:58.620625','491','SC-275',2,'Modificado/a ProvisCtto.',11,1),(2172,'2017-05-01 21:19:58.624485','598','SC-279',2,'Modificado/a ProvisCtto.',11,1),(2173,'2017-05-01 21:19:58.628967','603','SC-280',2,'Modificado/a ProvisCtto.',11,1),(2174,'2017-05-01 21:19:58.632353','604','SC-281',2,'Modificado/a ProvisCtto.',11,1),(2175,'2017-05-01 21:19:58.635275','605','SC-282',2,'Modificado/a ProvisCtto.',11,1),(2176,'2017-05-01 21:19:58.642480','626','SC-286A',2,'Modificado/a ProvisCtto.',11,1),(2177,'2017-05-01 21:19:58.646128','634','SC-286B',2,'Modificado/a ProvisCtto.',11,1),(2178,'2017-05-01 21:19:58.650419','627','SC-287',2,'Modificado/a ProvisCtto.',11,1),(2179,'2017-05-01 21:19:58.655881','629','SC-289',2,'Modificado/a ProvisCtto.',11,1),(2180,'2017-05-01 21:19:58.661073','630','SC-290',2,'Modificado/a ProvisCtto.',11,1),(2181,'2017-05-01 21:19:58.663887','631','SC-291',2,'Modificado/a ProvisCtto.',11,1),(2182,'2017-05-01 21:19:58.667397','673','SC-298',2,'Modificado/a ProvisCtto.',11,1),(2183,'2017-05-01 21:19:58.671543','674','SC-303',2,'Modificado/a ProvisCtto.',11,1),(2184,'2017-05-01 21:19:58.674761','658','SC-307',2,'Modificado/a ProvisCtto.',11,1),(2185,'2017-05-01 21:19:58.678267','670','SC-319',2,'Modificado/a ProvisCtto.',11,1),(2186,'2017-05-01 21:22:38.997389','550','OS2016-034',2,'Modificado/a ProvisCtto.',11,1),(2187,'2017-05-01 21:22:39.001514','553','OS2016-037',2,'Modificado/a ProvisCtto.',11,1),(2188,'2017-05-01 21:22:39.116831','558','OS2016-042',2,'Modificado/a ProvisCtto.',11,1),(2189,'2017-05-01 21:22:39.120958','559','OS2016-043',2,'Modificado/a ProvisCtto.',11,1),(2190,'2017-05-01 21:22:39.134488','577','OS2016-061',2,'Modificado/a ProvisCtto.',11,1),(2191,'2017-05-01 21:22:39.141304','624','OS2016-098',2,'Modificado/a ProvisCtto.',11,1),(2192,'2017-05-01 21:22:39.145739','656','OS2016-107',2,'Modificado/a ProvisCtto.',11,1),(2193,'2017-05-01 21:22:39.149858','648','OS2016-109',2,'Modificado/a ProvisCtto.',11,1),(2194,'2017-05-01 21:22:39.153318','654','OS2017-004',2,'Modificado/a ProvisCtto.',11,1),(2195,'2017-05-01 21:22:39.156842','666','OS2017-006',2,'Modificado/a ProvisCtto.',11,1),(2196,'2017-05-01 21:22:39.160154','668','OS2017-012',2,'Modificado/a ProvisCtto.',11,1),(2197,'2017-05-01 21:22:39.163123','672','OS2017-015',2,'Modificado/a ProvisCtto.',11,1),(2198,'2017-05-04 10:24:28.504648','56','Graphis Consultores Lda (RC Consultores) - <NAME> S.',1,'Añadido.',22,1),(2199,'2017-05-04 10:28:33.109866','57','FLEX SERVICIO Y LOGISTICA - <NAME>',1,'Añadido.',22,1),(2200,'2017-05-04 10:39:01.356876','58','AMAWTA GEOCONSULTORES LTDA. - <NAME>',1,'Añadido.',22,1),(2201,'2017-05-04 10:47:51.801997','40','AMAWTA GEOCONSULTORES LTDA. - <NAME>2',2,'Modificado/a Nombre.',22,1),(2202,'2017-05-04 10:50:09.297245','40','AMAWTA GEOCONSULTORES LTDA. - <NAME>2',3,'',22,1),(2203,'2017-05-04 10:50:48.156820','690','SC-319',3,'',11,1),(2204,'2017-05-04 11:10:05.438198','59','SERVICIOS COMPROBE SPA - <NAME>',1,'Añadido.',22,1),(2205,'2017-05-05 09:09:02.321398','6','AUD',1,'Añadido.',14,1),(2206,'2017-05-05 09:09:35.895180','5','CAD',2,'Modificado/a ValorMoneda y FechMoneda.',14,1),(2207,'2017-05-05 09:10:11.248379','4','EUR',2,'Modificado/a ValorMoneda y FechMoneda.',14,1),(2208,'2017-05-05 09:10:52.998970','2','UF',2,'Modificado/a ValorMoneda y FechMoneda.',14,1),(2209,'2017-05-08 21:58:36.774209','213','51-11-3032 Mine planning external design',1,'Añadido.',8,1),(2210,'2017-05-08 22:01:08.544837','213','51-11-3332 Mine planning external design',2,'Modificado/a CodCeco.',8,1),(2211,'2017-05-18 11:53:06.067553','585','ESPINOZA HERMANOS LTDA',2,'Modificado/a DirCtta, ComunaCtta, CiudadCtta, GiroCtta, Rep1Ctta y RutRep1Ctta.',10,1),(2212,'2017-05-18 11:55:14.971386','63','ESPINOZA HERMANOS LTDA - Franco Espinoza',1,'Añadido.',22,1),(2213,'2017-05-18 12:12:47.914623','208','51-11-3350 Drilling sector relincho_',2,'Modificado/a IdDueno.',8,1),(2214,'2017-05-18 12:12:47.919637','207','51-11-3351 Drilling Campaign La Fortuna',2,'Modificado/a IdDueno.',8,1),(2215,'2017-05-26 15:16:51.152062','64','Empresa Servicios Transitorios Page Interim Chile Ltda - <NAME>',1,'Añadido.',22,1),(2216,'2017-05-27 18:10:28.278633','21','NUEVAUNION SPA',2,'Modificado/a ComunaMandte, CiudadMandte, NotarioMandte, FechDocpersonMandte y NotariapersonMandte.',9,1),(2217,'2017-05-27 18:13:22.341510','21','NUEVAUNION SPA',2,'Modificado/a FechDocpersonMandte.',9,1),(2218,'2017-05-27 18:16:09.541867','17','SOCIEDAD CONTRACTUAL MINERA EL MORRO',2,'Modificado/a ComunaMandte, CiudadMandte, NotarioMandte, FechDocpersonMandte y NotariapersonMandte.',9,1),(2219,'2017-05-27 20:50:58.103692','5','<NAME>',2,'Modificado/a DocIdDueno y RutDueno.',19,1),(2220,'2017-06-05 19:24:28.982095','468','CIBERSECURITY LTDA',2,'Modificado/a DirCtta, ComunaCtta y CiudadCtta.',10,1),(2221,'2017-06-05 19:30:54.615015','649','SERVICIOS INDUSTRIALES WARNER SPA',2,'Modificado/a DirCtta, ComunaCtta y CiudadCtta.',10,1),(2222,'2017-06-05 19:31:31.752432','468','CIBERSECURITY LTDA',2,'Modificado/a DirCtta.',10,1),(2223,'2017-06-05 20:09:13.382674','23','<NAME>',1,'Añadido.',21,1),(2224,'2017-06-06 09:44:11.969780','474','GEODESARROLLO LIMITADA',2,'Modificado/a DirCtta, ComunaCtta y CiudadCtta.',10,1),(2225,'2017-06-06 09:45:26.298059','611','SERVICIOS E INVERSIONES PRAMAR LTDA ( GEOBIOTA )',2,'Modificado/a RutCtta.',10,1),(2226,'2017-06-06 09:47:03.383975','606','HEREDIA SANTANA',2,'Modificado/a RutCtta.',10,1),(2227,'2017-06-06 09:47:03.386954','656','HIDROGEOLOGIA Y MEDIO AMBIENTE SUSTENTABLE',2,'Modificado/a RutCtta.',10,1),(2228,'2017-06-06 09:47:03.390074','482','JORGE SEPULVEDA NIEVES (AZABACHE)',2,'Modificado/a RutCtta.',10,1),(2229,'2017-06-06 09:47:03.394005','483','MINERIA Y MEDIO AMBIENTE LTDA',2,'Modificado/a RutCtta.',10,1),(2230,'2017-06-06 09:47:03.399046','601','SMC ARQUITECTOS',2,'Modificado/a RutCtta.',10,1),(2231,'2017-06-06 09:47:03.401097','492','SOC. DE INVERSIONES LAS VEGAS',2,'Modificado/a RutCtta.',10,1),(2232,'2017-06-06 09:50:12.661539','461','AMARO Y PINOCHET CONSULTORES E.I.R.L.',2,'Modificado/a RutCtta.',10,1),(2233,'2017-06-06 09:50:12.665333','668','Amawta Geoconsultores Ltda',2,'Modificado/a RutCtta.',10,1),(2234,'2017-06-06 09:50:12.667853','654','AMAWTA GEOCONSULTORES LTDA.',2,'Modificado/a RutCtta.',10,1),(2235,'2017-06-06 09:50:12.670989','609','AXESAT CHILE S.A.',2,'Modificado/a RutCtta.',10,1),(2236,'2017-06-06 09:50:12.673763','572','AZABACHE',2,'Modificado/a RutCtta.',10,1),(2237,'2017-06-06 09:55:26.159101','69','ORDENES ABARCA SpA - Esteban Ordenes',2,'Modificado/a Cel.',22,1),(2238,'2017-06-06 09:55:48.417935','19','ORDENES ABARCA SpA - Esteban Órdenes Abarca',3,'',22,1),(2239,'2017-06-06 09:59:55.928521','24','<NAME>',1,'Añadido.',21,1),(2240,'2017-06-06 10:00:42.307794','24','<NAME>',2,'Modificado/a Nombre.',21,1),(2241,'2017-06-06 10:09:51.079479','676','EMPRESA SERVICIOS TRANSITORIOS PAGE INTERIM CHILE LTDA',2,'Modificado/a NomCtta.',10,1),(2242,'2017-06-06 10:12:16.009446','667','GRAPHIS CONSULTORES LDA (RC CONSULTORES)',2,'Modificado/a NomCtta.',10,1),(2243,'2017-06-06 10:13:11.494094','638','PITEAU ASSOCIATES CHILE SPA',2,'Modificado/a NomCtta.',10,1),(2244,'2017-06-06 10:22:01.370082','538','MIVOZ',2,'Modificado/a RutCtta.',10,1),(2245,'2017-06-06 10:25:11.872833','666','FLEX SERVICIO Y LOGISTICA',2,'Modificado/a RutCtta.',10,1),(2246,'2017-06-06 10:32:05.045050','537','BIOSEPTIC',2,'Modificado/a DirCtta, ComunaCtta y CiudadCtta.',10,1),(2247,'2017-06-06 10:36:34.931012','568','COMERCIAL NUTRISER LDTA',2,'Modificado/a ComunaCtta y CiudadCtta.',10,1),(2248,'2017-06-06 10:37:34.760771','475','GRIFFITH DRILLING',2,'Modificado/a DirCtta, ComunaCtta y CiudadCtta.',10,1),(2249,'2017-06-06 10:38:15.635646','638','PITEAU ASSOCIATES CHILE SPA',2,'Modificado/a DirCtta, ComunaCtta y CiudadCtta.',10,1),(2250,'2017-06-06 10:38:52.344860','571','ZETAECO',2,'Modificado/a DirCtta, ComunaCtta y CiudadCtta.',10,1),(2251,'2017-06-06 10:39:42.106889','520','AGUAS CHAÑAR S.A',2,'Modificado/a DirCtta, ComunaCtta y CiudadCtta.',10,1),(2252,'2017-06-06 10:40:27.419272','544','MUTUAL',2,'Modificado/a ComunaCtta y CiudadCtta.',10,1),(2253,'2017-06-08 11:48:35.937779','556','DOPPELMAYR',2,'Modificado/a DirCtta y RutCtta.',10,1),(2254,'2017-06-08 11:49:36.037924','556','DOPPELMAYR',2,'Modificado/a DirCtta y ComunaCtta.',10,1),(2255,'2017-06-08 15:54:10.347417','674','Leitner SpA',2,'Modificado/a DirCtta y ComunaCtta.',10,1),(2256,'2017-06-12 12:02:05.179988','680','<NAME>',2,'Modificado/a NomCtta.',10,1),(2257,'2017-06-12 14:25:03.139338','600','<NAME>',2,'Modificado/a RutCtta, DirCtta, ComunaCtta y CiudadCtta.',10,1),(2258,'2017-06-12 14:28:28.524115','78','<NAME> OBRADOR - <NAME>',1,'Añadido.',22,1),(2259,'2017-06-15 17:54:21.263805','214','51-11-3357 FS (NUEVAUNION SPA)',1,'Añadido.',8,1),(2260,'2017-06-17 22:22:59.405392','682','SC-457',3,'',11,1),(2261,'2017-06-21 19:26:23.587123','6','AUD',2,'Modificado/a ValorMoneda y FechMoneda.',14,1),(2262,'2017-06-21 19:26:49.879456','5','CAD',2,'Modificado/a ValorMoneda y FechMoneda.',14,1),(2263,'2017-06-21 19:27:23.130373','4','EUR',2,'Modificado/a ValorMoneda y FechMoneda.',14,1),(2264,'2017-06-21 19:27:34.283454','4','EUR',2,'No ha cambiado ningún campo.',14,1),(2265,'2017-06-21 19:27:42.627296','3','CLP',2,'No ha cambiado ningún campo.',14,1),(2266,'2017-06-21 19:28:18.115201','2','UF',2,'Modificado/a ValorMoneda y FechMoneda.',14,1),(2267,'2017-06-27 00:35:09.017156','2','<NAME>',1,'Añadido.',27,1),(2268,'2017-06-27 00:35:32.167039','3','<NAME>',1,'Añadido.',27,1),(2269,'2017-06-27 00:35:53.292305','4','<NAME>',1,'Añadido.',27,1),(2270,'2017-06-27 00:36:14.968332','5','<NAME>',1,'Añadido.',27,1),(2271,'2017-06-27 00:39:02.481808','628','SC-288',2,'Modificado/a AdminCttoProy.',11,1),(2272,'2017-06-27 00:39:02.486820','627','SC-287',2,'Modificado/a AdminCttoProy.',11,1),(2273,'2017-06-27 00:39:02.491833','634','SC-286B',2,'Modificado/a AdminCttoProy.',11,1),(2274,'2017-06-27 00:39:02.495844','626','SC-286A',2,'Modificado/a AdminCttoProy.',11,1),(2275,'2017-06-27 00:39:02.505872','611','SC-284',2,'Modificado/a AdminCttoProy.',11,1),(2276,'2017-06-27 00:39:02.520911','605','SC-282',2,'Modificado/a AdminCttoProy.',11,1),(2277,'2017-06-27 00:39:02.530937','604','SC-281',2,'Modificado/a AdminCttoProy.',11,1),(2278,'2017-06-27 00:39:02.534948','603','SC-280',2,'Modificado/a AdminCttoProy.',11,1),(2279,'2017-06-27 00:39:02.539963','598','SC-279',2,'Modificado/a AdminCttoProy.',11,1),(2280,'2017-06-27 00:39:02.543972','597','SC-278',2,'Modificado/a AdminCttoProy.',11,1),(2281,'2017-06-27 00:39:02.554000','493','SC-277',2,'Modificado/a AdminCttoProy.',11,1),(2282,'2017-06-27 00:39:02.568066','492','SC-276',2,'Modificado/a AdminCttoProy.',11,1),(2283,'2017-06-27 00:39:02.572050','491','SC-275',2,'Modificado/a AdminCttoProy.',11,1),(2284,'2017-06-27 00:39:02.577061','490','SC-274',2,'Modificado/a AdminCttoProy.',11,1),(2285,'2017-06-27 00:39:02.581071','489','SC-273',2,'Modificado/a AdminCttoProy.',11,1),(2286,'2017-06-27 00:39:02.585083','488','SC-272',2,'Modificado/a AdminCttoProy.',11,1),(2287,'2017-06-27 00:39:02.599120','487','SC-271',2,'Modificado/a AdminCttoProy.',11,1),(2288,'2017-06-27 00:39:02.614160','486','SC-270',2,'Modificado/a AdminCttoProy.',11,1),(2289,'2017-06-27 00:39:02.619172','485','SC-269',2,'Modificado/a AdminCttoProy.',11,1),(2290,'2017-06-27 00:40:44.665522','675','SC-310',2,'Modificado/a AdminCttoProy.',11,1),(2291,'2017-06-27 00:40:44.669533','663','SC-309',2,'Modificado/a AdminCttoProy.',11,1),(2292,'2017-06-27 00:40:44.672540','696','SC-308',2,'Modificado/a AdminCttoProy.',11,1),(2293,'2017-06-27 00:40:44.675551','658','SC-307',2,'Modificado/a AdminCttoProy.',11,1),(2294,'2017-06-27 00:40:44.684602','660','SC-306',2,'Modificado/a AdminCttoProy.',11,1),(2295,'2017-06-27 00:40:44.698641','684','SC-305',2,'Modificado/a AdminCttoProy.',11,1),(2296,'2017-06-27 00:40:44.709640','655','SC-304',2,'Modificado/a AdminCttoProy.',11,1),(2297,'2017-06-27 00:40:44.713651','674','SC-303',2,'Modificado/a AdminCttoProy.',11,1),(2298,'2017-06-27 00:40:44.717661','649','SC-300',2,'Modificado/a AdminCttoProy.',11,1),(2299,'2017-06-27 00:40:44.734707','650','SC-299',2,'Modificado/a AdminCttoProy.',11,1),(2300,'2017-06-27 00:40:44.743730','673','SC-298',2,'Modificado/a AdminCttoProy.',11,1),(2301,'2017-06-27 00:40:44.748743','618','SC-297',2,'Modificado/a AdminCttoProy.',11,1),(2302,'2017-06-27 00:40:44.752754','633','SC-296',2,'Modificado/a AdminCttoProy.',11,1),(2303,'2017-06-27 00:40:44.757767','623','SC-295',2,'Modificado/a AdminCttoProy.',11,1),(2304,'2017-06-27 00:40:44.766791','617','SC-294',2,'Modificado/a AdminCttoProy.',11,1),(2305,'2017-06-27 00:40:44.782834','616','SC-293',2,'Modificado/a AdminCttoProy.',11,1),(2306,'2017-06-27 00:40:44.793863','631','SC-291',2,'Modificado/a AdminCttoProy.',11,1),(2307,'2017-06-27 00:40:44.798877','630','SC-290',2,'Modificado/a AdminCttoProy.',11,1),(2308,'2017-06-27 00:40:44.802887','629','SC-289',2,'Modificado/a AdminCttoProy.',11,1),(2309,'2017-06-27 00:43:01.350176','481','SC-265',2,'Modificado/a AdminCttoProy.',11,1),(2310,'2017-06-27 00:43:01.353674','480','SC-264',2,'Modificado/a AdminCttoProy.',11,1),(2311,'2017-06-27 00:43:01.357686','479','SC-263',2,'Modificado/a AdminCttoProy.',11,1),(2312,'2017-06-27 00:43:01.360696','477','SC-261',2,'Modificado/a AdminCttoProy.',11,1),(2313,'2017-06-27 00:43:01.370723','476','SC-260',2,'Modificado/a AdminCttoProy.',11,1),(2314,'2017-06-27 00:43:01.384760','475','SC-259',2,'Modificado/a AdminCttoProy.',11,1),(2315,'2017-06-27 00:43:01.393783','474','SC-258',2,'Modificado/a AdminCttoProy.',11,1),(2316,'2017-06-27 00:43:01.397795','473','SC-257',2,'Modificado/a AdminCttoProy.',11,1),(2317,'2017-06-27 00:43:01.401805','472','SC-256',2,'Modificado/a AdminCttoProy.',11,1),(2318,'2017-06-27 00:43:01.405817','471','SC-253',2,'Modificado/a AdminCttoProy.',11,1),(2319,'2017-06-27 00:43:01.415843','470','SC-252',2,'Modificado/a AdminCttoProy.',11,1),(2320,'2017-06-27 00:43:01.430918','468','SC-249',2,'Modificado/a AdminCttoProy.',11,1),(2321,'2017-06-27 00:43:01.440923','466','SC-247',2,'Modificado/a AdminCttoProy.',11,1),(2322,'2017-06-27 00:43:06.894579','465','SC-245',2,'Modificado/a AdminCttoProy.',11,1),(2323,'2017-06-27 00:44:40.900259','464','SC-244',2,'Modificado/a AdminCttoProy.',11,1),(2324,'2017-06-27 00:44:40.905273','463','SC-242',2,'Modificado/a AdminCttoProy.',11,1),(2325,'2017-06-27 00:44:40.909284','462','SC-241',2,'Modificado/a AdminCttoProy.',11,1),(2326,'2017-06-27 00:44:40.913294','461','SC-237',2,'Modificado/a AdminCttoProy.',11,1),(2327,'2017-06-27 00:44:40.935353','460','SC-235',2,'Modificado/a AdminCttoProy.',11,1),(2328,'2017-06-27 00:44:40.939364','459','SC-233',2,'Modificado/a AdminCttoProy.',11,1),(2329,'2017-06-27 00:44:40.944377','457','SC-228',2,'Modificado/a AdminCttoProy.',11,1),(2330,'2017-06-27 00:44:40.948388','456','SC-224',2,'Modificado/a AdminCttoProy.',11,1),(2331,'2017-06-27 00:44:40.952398','455','SC-222',2,'Modificado/a AdminCttoProy.',11,1),(2332,'2017-06-27 00:44:40.968441','454','SC-220',2,'Modificado/a AdminCttoProy.',11,1),(2333,'2017-06-27 00:44:40.978468','453','SC-216',2,'Modificado/a AdminCttoProy.',11,1),(2334,'2017-06-27 00:44:40.981476','452','SC-215',2,'Modificado/a AdminCttoProy.',11,1),(2335,'2017-06-27 00:44:40.986489','450','SC-207',2,'Modificado/a AdminCttoProy.',11,1),(2336,'2017-06-27 00:44:40.989497','449','SC-184',2,'Modificado/a AdminCttoProy.',11,1),(2337,'2017-06-27 00:44:40.998521','718','OS2017-043',2,'Modificado/a AdminCttoProy.',11,1),(2338,'2017-06-27 00:44:41.016570','715','OS2017-042',2,'Modificado/a AdminCttoProy.',11,1),(2339,'2017-06-27 00:47:12.281535','701','SC-341',2,'Modificado/a AdminCttoProy.',11,1),(2340,'2017-06-27 00:47:12.285548','705','SC-336',2,'Modificado/a AdminCttoProy.',11,1),(2341,'2017-06-27 00:47:12.288555','698','SC-335',2,'Modificado/a AdminCttoProy.',11,1),(2342,'2017-06-27 00:47:12.292565','704','SC-332',2,'Modificado/a AdminCttoProy.',11,1),(2343,'2017-06-27 00:47:12.300586','686','SC-331',2,'Modificado/a AdminCttoProy.',11,1),(2344,'2017-06-27 00:47:12.314622','683','SC-330',2,'Modificado/a AdminCttoProy.',11,1),(2345,'2017-06-27 00:47:12.324651','687','SC-327',2,'Modificado/a AdminCttoProy.',11,1),(2346,'2017-06-27 00:47:12.327657','699','SC-324',2,'Modificado/a AdminCttoProy.',11,1),(2347,'2017-06-27 00:47:12.330667','689','SC-323',2,'Modificado/a AdminCttoProy.',11,1),(2348,'2017-06-27 00:47:12.334677','703','SC-321',2,'Modificado/a AdminCttoProy.',11,1),(2349,'2017-06-27 00:47:12.343702','688','SC-320',2,'Modificado/a AdminCttoProy.',11,1),(2350,'2017-06-27 00:47:12.358740','670','SC-319',2,'Modificado/a AdminCttoProy.',11,1),(2351,'2017-06-27 00:47:12.367764','685','SC-318',2,'Modificado/a AdminCttoProy.',11,1),(2352,'2017-06-27 00:47:12.371776','719','SC-317',2,'Modificado/a AdminCttoProy.',11,1),(2353,'2017-06-27 00:47:12.374784','691','SC-316',2,'Modificado/a AdminCttoProy.',11,1),(2354,'2017-06-27 00:47:12.378794','692','SC-315',2,'Modificado/a AdminCttoProy.',11,1),(2355,'2017-06-27 00:47:12.400852','693','SC-313',2,'Modificado/a AdminCttoProy.',11,1),(2356,'2017-06-27 00:47:12.404864','694','SC-312',2,'Modificado/a AdminCttoProy.',11,1),(2357,'2017-06-27 00:47:12.407872','695','SC-311',2,'Modificado/a AdminCttoProy.',11,1),(2358,'2017-07-10 15:10:29.946978','215','51-11-3358 Health and Safety',1,'Añadido.',8,1);
/*!40000 ALTER TABLE `django_admin_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `django_content_type`
--
DROP TABLE IF EXISTS `django_content_type`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `django_content_type` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`app_label` varchar(100) NOT NULL,
`model` varchar(100) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `django_content_type_app_label_76bd3d3b_uniq` (`app_label`,`model`)
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `django_content_type`
--
LOCK TABLES `django_content_type` WRITE;
/*!40000 ALTER TABLE `django_content_type` DISABLE KEYS */;
INSERT INTO `django_content_type` VALUES (1,'admin','logentry'),(3,'auth','group'),(2,'auth','permission'),(4,'auth','user'),(5,'contenttypes','contenttype'),(25,'personas','aportesctto'),(7,'personas','area'),(8,'personas','ceco'),(17,'personas','choice'),(24,'personas','coordctto'),(10,'personas','ctta'),(11,'personas','ctto'),(19,'personas','duenoceco'),(12,'personas','edp'),(20,'personas','itemctto'),(18,'personas','itemodc'),(9,'personas','mdte'),(14,'personas','monedas'),(26,'personas','multasperclavectto'),(13,'personas','odc'),(15,'personas','persona'),(27,'personas','personaladminproyecto'),(22,'personas','personalctta'),(21,'personas','personalproyecto'),(16,'personas','question'),(23,'personas','reprentantes'),(6,'sessions','session');
/*!40000 ALTER TABLE `django_content_type` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `django_migrations`
--
DROP TABLE IF EXISTS `django_migrations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `django_migrations` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`app` varchar(255) NOT NULL,
`name` varchar(255) NOT NULL,
`applied` datetime(6) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=52 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `django_migrations`
--
LOCK TABLES `django_migrations` WRITE;
/*!40000 ALTER TABLE `django_migrations` DISABLE KEYS */;
INSERT INTO `django_migrations` VALUES (1,'contenttypes','0001_initial','2016-09-10 23:48:30.792821'),(2,'auth','0001_initial','2016-09-10 23:48:31.148151'),(3,'admin','0001_initial','2016-09-10 23:48:31.268862'),(4,'admin','0002_logentry_remove_auto_add','2016-09-10 23:48:31.301968'),(5,'contenttypes','0002_remove_content_type_name','2016-09-10 23:48:31.366386'),(6,'auth','0002_alter_permission_name_max_length','2016-09-10 23:48:31.411891'),(7,'auth','0003_alter_user_email_max_length','2016-09-10 23:48:31.428632'),(8,'auth','0004_alter_user_username_opts','2016-09-10 23:48:31.456997'),(9,'auth','0005_alter_user_last_login_null','2016-09-10 23:48:31.492149'),(10,'auth','0006_require_contenttypes_0002','2016-09-10 23:48:31.494643'),(11,'auth','0007_alter_validators_add_error_messages','2016-09-10 23:48:31.503647'),(12,'personas','0001_initial','2016-09-10 23:48:32.169283'),(13,'sessions','0001_initial','2016-09-10 23:48:32.194068'),(14,'personas','0002_auto_20160925_1052','2016-09-25 13:52:51.592576'),(15,'personas','0003_auto_20160925_1145','2016-09-25 14:45:12.905449'),(16,'personas','0004_ctto_observctto','2016-09-25 14:50:37.306371'),(17,'personas','0005_auto_20160925_1210','2016-09-25 15:10:31.748646'),(18,'personas','0006_auto_20160925_1914','2016-09-25 22:14:27.333919'),(19,'personas','0007_auto_20161001_1321','2016-10-01 16:21:27.230781'),(20,'personas','0008_edp_pershhtotales','2016-10-01 16:32:48.171770'),(21,'personas','0009_question_author','2016-10-08 23:27:32.540791'),(22,'personas','0010_question_fecha_creacion','2016-10-09 01:49:03.871840'),(23,'personas','0011_auto_20161008_2322','2016-10-09 02:22:53.152677'),(24,'personas','0012_question_status','2016-10-10 03:25:26.952825'),(25,'personas','0013_auto_20161010_0108','2016-10-10 04:08:18.448594'),(26,'personas','0014_auto_20170319_0852','2017-04-05 11:10:42.804548'),(27,'personas','0015_auto_20170401_1241','2017-04-05 11:10:43.210844'),(28,'personas','0016_auto_20170401_1512','2017-04-05 11:10:43.726527'),(29,'personas','0017_itemodc','2017-04-08 11:42:30.974797'),(30,'personas','0018_itemodc_totalitem','2017-04-09 00:07:53.252276'),(31,'personas','0019_duenoceco','2017-04-11 01:41:34.730104'),(32,'personas','0020_auto_20170410_2256','2017-04-11 01:56:40.720214'),(33,'personas','0021_duenoceco_cargodueno','2017-04-11 02:32:03.218833'),(34,'personas','0022_auto_20170410_2333','2017-04-11 02:33:29.388757'),(35,'personas','0023_itemctto','2017-04-12 03:27:25.581775'),(36,'personas','0024_ctto_alcancectto','2017-04-13 10:02:24.076216'),(37,'personas','0025_auto_20170415_0924','2017-04-15 12:24:32.584047'),(38,'personas','0026_aportesctto','2017-04-15 20:39:17.329296'),(39,'personas','0027_auto_20170415_1738','2017-04-15 20:39:17.399328'),(40,'personas','0028_auto_20170415_2335','2017-04-16 02:35:52.417853'),(41,'personas','0029_ctto_fechvigenboleta','2017-04-19 21:10:19.187110'),(42,'personas','0030_auto_20170430_0818','2017-04-30 11:34:08.269227'),(43,'personas','0031_auto_20170430_0822','2017-04-30 11:34:08.455541'),(44,'personas','0032_ctto_admincttoctta','2017-04-30 13:27:44.539499'),(45,'personas','0033_auto_20170501_1746','2017-05-01 20:47:04.738863'),(46,'personas','0034_auto_20170527_1648','2017-05-27 20:48:37.795227'),(47,'personas','0035_auto_20170527_2200','2017-05-28 02:00:23.569751'),(48,'personas','0036_auto_20170604_0648','2017-06-04 10:48:23.816760'),(49,'personas','0037_auto_20170615_1628','2017-06-15 20:28:53.216378'),(50,'personas','0038_personaladminproyecto','2017-06-26 23:26:27.546889'),(51,'personas','0039_ctto_admincttoproy','2017-06-26 23:30:13.772710');
/*!40000 ALTER TABLE `django_migrations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `django_session`
--
DROP TABLE IF EXISTS `django_session`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `django_session` (
`session_key` varchar(40) NOT NULL,
`session_data` longtext NOT NULL,
`expire_date` datetime(6) NOT NULL,
PRIMARY KEY (`session_key`),
KEY `django_session_de54fa62` (`expire_date`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `django_session`
--
LOCK TABLES `django_session` WRITE;
/*!40000 ALTER TABLE `django_session` DISABLE KEYS */;
INSERT INTO `django_session` VALUES ('1s4q6shkstknxao6ujm51im9xlb4uzfp','<KEY>','2017-01-20 10:58:34.675769'),('558ulndmhniscb1y6f99su11q54o5czo','MzIwZjFhNDE0NDA0NDk5YTM2M2VjYmUzYTJmMWI1ZjEzNjcyY2ViYzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiJhNjk5YzNjY2VlYzFiM2UzMjZlYzJlZGQyZWY2MzY5ZmIzMTI0YTcxIn0=','2017-06-17 14:55:31.243198'),('7zxlnvxi47qs3vp3zfdhw971erlzooo1','<KEY>','2017-02-20 02:01:50.807241'),('97r3szboxkd2ivkx1ded614u1cp2ql3k','<KEY>','2016-11-23 00:37:24.096408'),('9ynq9caahxq9usj2qx0acbbqyqbzyd0m','<KEY>','2017-05-08 19:05:25.575330'),('a3h6n3jckqwdcibnab1t9kx6nltsqex7','<KEY>','2017-06-20 09:43:11.302970'),('<KEY>','<KEY>','2017-04-02 11:34:14.143061'),('bho07ndal8l82jnvscmivae7we8hikrn','<KEY>','2017-07-11 00:27:25.515992'),('bso1l263rcxskzhu624d2zxy9fbi3dso','<KEY>','2016-11-07 09:30:47.204376'),('ekd89uxohmcdg09i7xqlbsnp3yws33vd','<KEY>','2017-07-26 15:29:01.687361'),('eqa3xvpy7y40wjzpoce415jnkkex7tnj','<KEY>','2017-01-04 09:11:27.527067'),('ffdh1g0imv92g0xak3j74of1lxf99rey','<KEY>','2017-04-02 03:16:06.016782'),('gx9kstc3htiow63munjqlh42rm9a3my1','<KEY>','2017-03-06 09:36:45.389120'),('ijllawmt3lzp8lweb098r6wp9zu46qn6','ZGFlODgwMWI1NTYxMT<KEY>','2017-06-26 11:47:23.126967'),('jcv407b3yy2ni4k7pzc1lqlrkhzeqtmq','<KEY>','2017-06-09 15:07:20.921003'),('jmtyeipzjhsgjkb96qupwvnh1cikqhsq','<KEY>','2016-10-03 20:49:43.522989'),('kwxt3eol2d92fi1bmoklzxclvkrl80jy','<KEY>','2017-02-06 00:40:40.602334'),('l4xq3u30bocmq63uss0kgz8rdz2m8s0n','<KEY>','2017-04-24 14:02:48.356876'),('lzk9yx8upfn8u3vp4b7pp2ubelxtapr5','<KEY>','2016-12-21 02:53:39.493136'),('mct0cy91bq80fukjpmbxdrdqmo5dm1qi','<KEY>','2017-05-22 21:45:15.718184'),('md4bd1elzi6zblstm6dkl8eie27qwuz1','<KEY>','2016-11-28 23:49:15.926415'),('om5x2neakl012lk1fxxfd619jnjo5nqd','<KEY>','2017-04-25 01:42:29.391825'),('<KEY>','<KEY>','2016-10-10 00:09:35.473223'),('rfj9vg097seue90mik0e7ykbx6prlqn5','<KEY>','2016-10-09 00:24:04.080242'),('so1j7azx9mzwmy1b0hueq2c9yxg1it4s','<KEY>','2016-10-23 10:30:30.142782'),('tury88g32mi6lobqfg75a7jdp5v5qd4t','OD<KEY>','2016-12-07 02:51:27.270557'),('x5kym4ykekhmbn0mn5zkvwg0qz87to4y','<KEY>','2016-11-24 01:04:34.328849'),('y2rmxhlphh4j3tvdz1fbexteqo5lmco3','<KEY>','2017-05-14 12:43:26.577588');
/*!40000 ALTER TABLE `django_session` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `personas_aportesctto`
--
DROP TABLE IF EXISTS `personas_aportesctto`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `personas_aportesctto` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`NumItem` varchar(8) NOT NULL,
`Aporte` varchar(100) DEFAULT NULL,
`ObsAporte` varchar(100) DEFAULT NULL,
`IdCtto_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `personas_aportesctto_IdCtto_id_a52a4a2d_fk_personas_ctto_id` (`IdCtto_id`),
CONSTRAINT `personas_aportesctto_IdCtto_id_a52a4a2d_fk_personas_ctto_id` FOREIGN KEY (`IdCtto_id`) REFERENCES `personas_ctto` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `personas_aportesctto`
--
LOCK TABLES `personas_aportesctto` WRITE;
/*!40000 ALTER TABLE `personas_aportesctto` DISABLE KEYS */;
INSERT INTO `personas_aportesctto` VALUES (3,'1','Este servicio no aplica aportes del Mandan','',680),(4,'1','No Exisiten aportes del Mandante','',698);
/*!40000 ALTER TABLE `personas_aportesctto` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `personas_area`
--
DROP TABLE IF EXISTS `personas_area`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `personas_area` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`IdAreas` int(11) DEFAULT NULL,
`NomArea` varchar(20) NOT NULL,
`CodArea` varchar(20) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=55 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `personas_area`
--
LOCK TABLES `personas_area` WRITE;
/*!40000 ALTER TABLE `personas_area` DISABLE KEYS */;
INSERT INTO `personas_area` VALUES (40,1,'N.A','600-0'),(41,2,'681 Project Team','681'),(43,4,'682 Administration','682'),(46,7,'683 Legal','683'),(51,12,'684 SERA','684'),(52,13,'685 Engineering','685'),(53,NULL,'687 Operations and t','687'),(54,NULL,'688 Management','688');
/*!40000 ALTER TABLE `personas_area` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `personas_ceco`
--
DROP TABLE IF EXISTS `personas_ceco`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `personas_ceco` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`IdCeco` int(11) DEFAULT NULL,
`CodCeco` varchar(10) DEFAULT NULL,
`NomCeco` varchar(100) DEFAULT NULL,
`Budget` decimal(21,2) DEFAULT NULL,
`IdAreas_id` int(11) NOT NULL,
`IdDueno_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `personas_ceco_IdAreas_id_cb571d0f_fk_personas_area_id` (`IdAreas_id`),
KEY `personas_ceco_db70d90b` (`IdDueno_id`),
CONSTRAINT `personas_ceco_IdAreas_id_cb571d0f_fk_personas_area_id` FOREIGN KEY (`IdAreas_id`) REFERENCES `personas_area` (`id`),
CONSTRAINT `personas_ceco_IdDueno_id_6eb4a685_fk_personas_duenoceco_id` FOREIGN KEY (`IdDueno_id`) REFERENCES `personas_duenoceco` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=216 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `personas_ceco`
--
LOCK TABLES `personas_ceco` WRITE;
/*!40000 ALTER TABLE `personas_ceco` DISABLE KEYS */;
INSERT INTO `personas_ceco` VALUES (157,NULL,'00-00-0000','N.A',0.00,40,12),(159,NULL,'51-11-3301','Project Team_',7262.00,41,1),(161,NULL,'51-11-3302','General Expenses_',315.00,43,1),(162,NULL,'51-11-3303','Travel international_',80.00,43,1),(163,NULL,'51-11-3304','Travel Domestic_',20.00,43,1),(164,NULL,'51-11-3305','IT Licensing , IT Services_',263.00,43,2),(165,NULL,'51-11-3306','Santiago Office_',416.00,43,1),(167,NULL,'51-11-3309','Corporate charges_',560.00,43,2),(169,NULL,'51-11-3314','Camp_',484.00,52,6),(170,NULL,'51-11-3315','Office Vallenar_',173.00,43,3),(180,NULL,'51-11-3052','Geology_',90.00,53,9),(183,NULL,'51-11-3337','RE Mine property_',68.00,46,4),(184,NULL,'51-11-3338','EM Mine property',13.00,46,4),(185,NULL,'51-11-3339','Legal/ consulting/easements_',473.00,46,4),(186,NULL,'51-11-3340','Permits&Licences_',30.00,46,4),(188,NULL,'51-11-3324','Metallurgy_',561.00,52,7),(189,NULL,'51-11-3355','PFS support and General Expenses_',326.00,52,6),(192,NULL,'51-11-3354','PFS Fluor (On shore/off shore)_',9492.00,52,6),(193,NULL,'51-11-3353','Service management_',184.00,54,11),(197,NULL,'51-11-3341','Communications and Government Relations',247.00,51,5),(198,NULL,'51-11-3342','Community Development',612.00,51,5),(199,NULL,'51-11-3343','Community Engagement_',349.00,51,5),(201,NULL,'51-11-3356','Third Parties_',2943.00,52,6),(202,NULL,'51-11-3331','Mine planning external support_',1006.00,53,9),(203,NULL,'51-11-3344','Environmental Studies_',9493.00,51,5),(204,NULL,'51-11-3346','Environmental Permiting_',36.00,51,5),(207,NULL,'51-11-3351','Drilling Campaign La Fortuna',68.00,52,6),(208,NULL,'51-11-3350','Drilling sector relincho_',28.00,52,6),(209,NULL,'51-11-3352','General Management',182.00,54,10),(210,NULL,'51-11-3345','Environmental Monitoring',89.00,51,5),(211,NULL,'51-11-3360','Resettlement',NULL,51,5),(212,NULL,'51-11-3363','Geotechnical',NULL,52,9),(213,NULL,'51-11-3332','Mine planning external design',NULL,53,9),(214,NULL,'51-11-3357','FS (NUEVAUNION SPA)',NULL,52,6),(215,NULL,'51-11-3358','Health and Safety',NULL,52,6);
/*!40000 ALTER TABLE `personas_ceco` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `personas_choice`
--
DROP TABLE IF EXISTS `personas_choice`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `personas_choice` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`choice_text` varchar(200) NOT NULL,
`votes` int(11) NOT NULL,
`question_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `personas_choice_7aa0f6ee` (`question_id`),
CONSTRAINT `personas_choice_question_id_f454b9cd_fk_personas_question_id` FOREIGN KEY (`question_id`) REFERENCES `personas_question` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `personas_choice`
--
LOCK TABLES `personas_choice` WRITE;
/*!40000 ALTER TABLE `personas_choice` DISABLE KEYS */;
/*!40000 ALTER TABLE `personas_choice` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `personas_coordctto`
--
DROP TABLE IF EXISTS `personas_coordctto`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `personas_coordctto` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`IdCtto_id` int(11) NOT NULL,
`IdPersCtta_id` int(11) NOT NULL,
`IdPersProy_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `personas_coordctto_6ef3f09f` (`IdCtto_id`),
KEY `personas_coordctto_75119520` (`IdPersCtta_id`),
KEY `personas_coordctto_6a5afb1f` (`IdPersProy_id`),
CONSTRAINT `personas__IdPersProy_id_8d804e1c_fk_personas_personalproyecto_id` FOREIGN KEY (`IdPersProy_id`) REFERENCES `personas_personalproyecto` (`id`),
CONSTRAINT `personas_coor_IdPersCtta_id_4472c0ac_fk_personas_personalctta_id` FOREIGN KEY (`IdPersCtta_id`) REFERENCES `personas_personalctta` (`id`),
CONSTRAINT `personas_coordctto_IdCtto_id_d6940ea0_fk_personas_ctto_id` FOREIGN KEY (`IdCtto_id`) REFERENCES `personas_ctto` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `personas_coordctto`
--
LOCK TABLES `personas_coordctto` WRITE;
/*!40000 ALTER TABLE `personas_coordctto` DISABLE KEYS */;
/*!40000 ALTER TABLE `personas_coordctto` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `personas_ctta`
--
DROP TABLE IF EXISTS `personas_ctta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `personas_ctta` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`IdCtta` int(11) DEFAULT NULL,
`NomCtta` varchar(100) NOT NULL,
`DirCtta` varchar(100) DEFAULT NULL,
`RutCtta` varchar(15) DEFAULT NULL,
`Rep1Ctta` varchar(100) DEFAULT NULL,
`Rep2Ctta` varchar(100) DEFAULT NULL,
`RutRep1Ctta` varchar(100) DEFAULT NULL,
`RutRep2Ctta` varchar(100) DEFAULT NULL,
`BcoCtta` varchar(50) DEFAULT NULL,
`CiudadCtta` varchar(50) DEFAULT NULL,
`ComunaCtta` varchar(50) DEFAULT NULL,
`FechDocpersonCtta` date DEFAULT NULL,
`GiroCtta` varchar(50) DEFAULT NULL,
`NotariapersonCtta` varchar(100) DEFAULT NULL,
`NotarioCtta` varchar(100) DEFAULT NULL,
`NumCtaCtta` varchar(50) DEFAULT NULL,
`PaisCtta` varchar(50) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=691 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `personas_ctta`
--
LOCK TABLES `personas_ctta` WRITE;
/*!40000 ALTER TABLE `personas_ctta` DISABLE KEYS */;
INSERT INTO `personas_ctta` VALUES (451,NULL,'POR DEFINIR','','RUT-AUX-0','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(452,NULL,'SCL APOQUINDO','','RUT-AUX-1','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(453,NULL,'CADAGUA S.A.','','RUT-AUX-2','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(454,NULL,'<NAME>','','RUT-AUX-3','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(455,NULL,'SERVICIOS DE ASEO PAULA ARIAS HIDALGO EIRL','<NAME> Nº7441','76.126.865-2','','','','','','Santiago','Renca',NULL,'','','','',NULL),(456,NULL,'SODEXO CHILE S.A.','<NAME>enzuela 1635','94.623.000-6','','','','','','Santiago','Providencia',NULL,'Servicios Gastronomicos, Aseo','','','',NULL),(457,NULL,'CE<NAME>','','12.161.279-8','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(458,NULL,'PROPIEDAD MINERA Y SERVICIOS DE INGENIERIA LIMITADA','','76.278.832-2','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(459,NULL,'SERVICIOS Y PROYECTOS AMBIENTALES S.A.','','96.799.790-0','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(460,NULL,'RODRIGO SALAZAR','','8.775.251-8','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(461,NULL,'AMARO Y PINOCHET CONSULTORES E.I.R.L.','','76.103.137-6','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(462,NULL,'CONSULTORIAS CLAUDIO JORDAN ASTABURUAGA E.I.R.L.,','Isabel La Católica N° 6622','76.022.201-1','','','','','','Santiago','Las Condes',NULL,'Consultorías','','','',NULL),(463,NULL,'<NAME>.','','10.945.422-2','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(464,NULL,'CESMEC S.A.','','81.185.000-4','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(465,NULL,'JC SEGURIDAD S.A.','','76.285.062-1','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(466,NULL,'<NAME>.','PASAJE RECOVA 430 ALTOS DEL VALLE','76.140.498-9','','','','','','VALLENAR','VALLENAR',NULL,'CONSULTORA ASESORIAS EN AREAS DE DISENO','','','',NULL),(467,NULL,'IT GLOBAL SERVICES SPA','','76.089.391-9','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(468,NULL,'CIBERSECURITY LTDA','PROVIDENCIA 1881','76.357.687-6','','','','','','Santiago','Providencia',NULL,'','','','',NULL),(469,NULL,'<NAME>','','9.518.818-4','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(470,NULL,'<NAME>','Avenida Transversal Uno N° 894 casa N° 72','12.237.094-1','','','','','','Santiago','Pudahuel',NULL,'','','','',NULL),(471,NULL,'TITO SALAZAR MUJICA INGENIERIA LTDA.','','76.012.484-2','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(472,NULL,'CAROLINA UBILLA OLIVARES','','17.407.218-3','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(473,NULL,'AQUILES CHILE SPA','ANTONIO VARAS 621, PROVIDENCIA','89.371.200-3','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(474,NULL,'GEODESARROLLO LIMITADA','Avenida 11 de sepiembre Nª 1945, Of 802','76.217.393-K','','','','','','Santiago','Providencia',NULL,'','','','',NULL),(475,NULL,'GRIFFITH DRILLING','Parcela 21, Vegas Sur','76.168.073-0','Boyd Griffith','','14-522.758-5','','','La Serena','La Serena',NULL,'','','','',NULL),(476,NULL,'KNIGHT PIESOLD S.A.','Avenida Vitacura N°4380 Piso 17','96.680.350-9','','','','','','Santiago','Vitacura',NULL,'Servicios de Ingenieria','','','',NULL),(477,NULL,'<NAME>EZ-COTAPO LTDA.','','79.589.710-0','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(478,NULL,'<NAME> (JAG)','','7.887.748-0','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(479,NULL,'HECTOR CABELLO Q.','','7.257.649-7','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(480,NULL,'CREA SOLUCIONES INTEGRALES LTDA','Las Petunias N°835','78.840.880-3','','','','','','Santiago','San Bernardo',NULL,'Servicio Aseo','','','',NULL),(481,NULL,'EGM SERVICIOS GEOLOGICOS MINEROS LTDA.','','79,829,800-3','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(482,NULL,'<NAME>ULVEDA NIEVES (AZABACHE)','','76.240.922-4','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(483,NULL,'MINERIA Y MEDIO AMBIENTE LTDA','','76.597.810-6','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(484,NULL,'CEDREM','','77.250.980-4','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(485,NULL,'ON COMMON GROUND CONSULTANTS INC.','','RUT-AUX-5','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(486,NULL,'<NAME>','','15.042.150-0','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(487,NULL,'OROENERGY','','76.051.669-4','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(488,NULL,'SECURITAS S.A','','99.512.120-4','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(489,NULL,'AERORESCATE S.A.','','99.543.620-5','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(490,NULL,'MILENA CYD ALVAREZ','','6.484.536-5','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(491,NULL,'ORDENES ABARCA SpA','Pje. Hospital 583 Altos del Valle','76.244.633-2','','','','','','Vallenar','Vallenar',NULL,'Consultoria , asesoría y servicios agropecuarios.','','','',NULL),(492,NULL,'SOC. DE INVERSIONES LAS VEGAS','Av Francisco de Aguirre 0225','79.578.880-8','','','','','','La Serena','La serena',NULL,'','','','',NULL),(493,NULL,'BRASS CHILE S.A','Av Cerro El Plomo 5420, Piso 17','77.611.600-9','','','','','','Santiago','Las Condes',NULL,'Ingeniería','','','',NULL),(494,NULL,'FUNDACION CASA DE LA PAZ','','72.168.100-9','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(495,NULL,'<NAME>','','5.710.159-8','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(496,NULL,'<NAME>','','10.063.055-9','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(498,NULL,'TRULY NOLEN CHILE S.A','','96.591.760-8','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(499,NULL,'REPLAN','','RUT-AUX-6','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(500,NULL,'<NAME>','','17,265,262-K','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(501,NULL,'PHOTOSAT','','RUT-AUX-7','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(502,NULL,'RADIO TAXIS \"EL LIBERTADOR\"','','16.505.544-6','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(503,NULL,'SOCIEDAD HOTELERA SAINT JOHN LTDA.','','76.350.936-2','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(504,NULL,'ENFOQUE DIGITAL NETWORK LTDA.','','76.393.251-6','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(505,NULL,'RADIO AMIGA','','76.131.565-K','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(506,NULL,'EMPRESA CONSTRUCTORA VALLE VERDE LTDA.','','RUT-AUX-8','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(507,NULL,'<NAME>','Eliodoro Flores 2440 dpto 1704','15.382.114-3','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(508,NULL,'TERRA NOVA TECHNOLOGIES (TNT)','','RUT-AUX-9','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(509,NULL,'WOODGROVE TECHNOLOGIES INC.','','RUT-AUX-10','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(510,NULL,'COMET STRATEGY PTY LTD','','RUT-AUX-12','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(511,NULL,'ASESORIAS ALGORITMOS LTDA','','RUT-AUX-15','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(512,NULL,'GHD','','RUT-AUX-16','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(513,NULL,'INSTITUTO DE INVESTIGACIONES AGROPECUARIAS','','RUT-AUX-17','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(514,NULL,'SGS CANADA INC','','RUT-AUX-18','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(515,NULL,'ANALISIS AMBIENTALES S.A','','RUT-AUX-19','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(516,NULL,'<NAME>','','RUT-AUX-20','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(517,NULL,'TURISMO AVENTURA ALMA LTDA.','','RUT-AUX-21','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(518,NULL,'COMPAÑIA DE PETROLEOS DE CHILE COPEC S.A.','','RUT-AUX-22','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(519,NULL,'ENTEL','','RUT-AUX-23','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(520,NULL,'<NAME>','Av Copayapu 2970','99.542.570-K','','','','','','Copiapó','Copiapó',NULL,'','','','',NULL),(521,NULL,'<NAME>','','RUT-AUX-25','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(522,NULL,'<NAME>','','RUT-AUX-26','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(523,NULL,'SERVITERRA','Marañon 802','78.940.950-1','','','','','','Vallenar','Vallenar',NULL,'','','','',NULL),(524,NULL,'<NAME>','','RUT-AUX-30','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(525,NULL,'<NAME>','','RUT-AUX-31','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(526,NULL,'PATRICIA DE LA LUZ','','RUT-AUX-32','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(527,NULL,'VALENTE IMPRESIONES','','RUT-AUX-33','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(528,NULL,'TRANSPORTE CARVAJAL','','RUT-AUX-35','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(529,NULL,'PETRINOVIC','','RUT-AUX-36','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(530,NULL,'MANGA VIENTO','','RUT-AUX-38','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(531,NULL,'SERVICIOS ADMINISTRATIVOS LTDA (WORKMATE)','Avda Santa Maria 2274','77.815.160-K','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(532,NULL,'ECO COPTER','','RUT-AUX-40','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(533,NULL,'WEEKMARK','','RUT-AUX-41','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(534,NULL,'LIZAMA','','RUT-AUX-42','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(535,NULL,'<NAME>','','RUT-AUX-44','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(536,NULL,'ASP','','RUT-AUX-46','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(537,NULL,'BIOSEPTIC','Est. Higueras de Minillas 18','76.126.367-6','','','','','','Vallenar','Vallenar',NULL,'','','','',NULL),(538,NULL,'MIVOZ','Av. Cristóbal Colón 4350 of. 34','76.652.970-4','','','','','','Santiago','Las Condes',NULL,'Servicios PeriodisticoS','','','',NULL),(539,NULL,'ASESORIA COMUNICACIONAL','','RUT-AUX-51','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(540,NULL,'AB MARKET','','RUT-AUX-52','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(541,NULL,'ELIZABETH DEL CARMEN','','RUT-AUX-53','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(542,NULL,'PROMET 101','','RUT-AUX-54','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(543,NULL,'INFORCARP','','RUT-AUX-55','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(544,NULL,'MUTUAL','Av <NAME> Nª194, p15','70.285.100-9','','','','','','Santiago','Santiago',NULL,'','','','',NULL),(545,NULL,'VGC','','RUT-AUX-58','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(546,NULL,'(EN LICITACION)','','RUT-AUX-64','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(547,NULL,'FLUOR CHILE','Reyes Lavalle 3340, Piso 7','85.555.900-5','','','','','','Santiago','Las Condes',NULL,'Servicios de Ingenieria','','','',NULL),(548,NULL,'GOLDER ASSOCIATES S.A','','RUT-AUX-66','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(549,NULL,'AMIPRO','','RUT-AUX-84','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(550,NULL,'<NAME>','','RUT-AUX-69','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(551,NULL,'<NAME>','','RUT-AUX-89','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(552,NULL,'<NAME>','','RUT-AUX-79','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(553,NULL,'COLEGIO PROFESORES DE CHILE','','RUT-AUX-74','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(554,NULL,'CONVEYOR DYNAMICS, INC. ( CDI )','','RUT-AUX-86','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(555,NULL,'<NAME>','','12.628.245-1','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(556,NULL,'DOPPELMAYR','Holzriedstr N° 29','','','','','','','','6922 Wolfurt',NULL,'','','','',NULL),(557,NULL,'EY','','RUT-AUX-73','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(558,NULL,'FRANKO URQUETA T','','RUT-AUX-75','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(559,NULL,'GRAFICA NUEVA','','RUT-AUX-71','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(560,NULL,'INGRID <NAME>','Hacienda Cavancha parcela 52','14.296.402-3','','','','','','Vallenar','Vallenar',NULL,'','','','',NULL),(561,NULL,'<NAME>','','RUT-AUX-91','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(562,NULL,'<NAME>','','RUT-AUX-90','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(563,NULL,'<NAME>','','RUT-AUX-88','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(564,NULL,'<NAME>','','RUT-AUX-87','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(565,NULL,'<NAME>','SARGENTO ALDEA 242','15.869.981-8','','','','','','Vallenar','Vallenar',NULL,'','','','',NULL),(566,NULL,'<NAME>','','RUT-AUX-77','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(567,NULL,'METSO','','RUT-AUX-83','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(568,NULL,'COMERCIAL NUTRISER LDTA','<NAME> 5857, Departamento 1204','76.659.170-1','<NAME>','','6.630.718-2','','','Santiago','<NAME>',NULL,'','','','',NULL),(569,NULL,'SURMEDIA','','RUT-AUX-72','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(570,NULL,'WORKMATE','Avda Santa Maria 2274','77.815.160-K','','','','','','Santiago','Providencia',NULL,'','','','',NULL),(571,NULL,'ZETAECO','Serrano Nª1695','52.000.757-1','','','','','','Vallenar','Vallenar',NULL,'','','','',NULL),(572,NULL,'AZABACHE','','76.240.922-4','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(573,NULL,'ON COMMON GROUND CONSULTANTS INC','','RUT-AUX-5','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(574,NULL,'<NAME>','','RUT-AUX-67','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(575,NULL,'POR DEFINIR','','RUT-AUX-68','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(576,NULL,'FLUOR CANADA','','RUT-AUX-69','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(577,NULL,'GOLDCORP SERVICIOS','','99.589.930-2','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(578,NULL,'TECK RESOURCES CHILE LTDA','','78.127.000-8','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(579,NULL,'VALENZUELA Y ORDENES LIMITADA,( ORIGENES CONSUTL)','','76.244.633-2','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(580,NULL,'CASA DE LA PAZ','','72.168.100-9','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(581,NULL,'RADIO TAXI LIBERTADOR','','16.505.544-6','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(582,NULL,'HOTEL SOLARIS','','76.350.936-2','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(583,NULL,'VALLE VERDE CONSTRUCTORA','','RUT-AUX-8','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(584,NULL,'COMET STRATEGY','','RUT-AUX-12','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(585,NULL,'ESPINOZA HERMANOS LTDA','Est. Higueras de Minillas 18','76.126.367-6','Franco Espinoza','','76.126.367-6','','','Vallenar','Vallenar',NULL,'Recogida y Eliminación de Deshechos','','','',NULL),(586,NULL,'BLUECOAST','','RUT-AUX-92','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(587,NULL,'POR DEFINIR','','RUT-AUX-93','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(588,NULL,'AMEC FOSTER','','RUT-AUX-94','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(589,NULL,'INTERPRETES ASOCIADOS','LOS LEONES 220 OFICINA 303, PROVIDENCIA, SANTIAGO','79.597.770-8','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(590,NULL,'BS CONSULTORES LIMITADA','CRUZ DEL SUR 399, DPTO. 303','76.235.340-7','<NAME>','','6.975.340-K','','Banco Santander','Santiago','Las Condes',NULL,'Servicios de Ingeniería','','','03-85767-0',NULL),(591,NULL,'<NAME>','MAR DEL NORTE 2341, VITACURA, SANTIAGO','78.987.290-2','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(592,NULL,'RENTAS E INVERSIONES ECOTECNOS','CALLE LIMACHE 3405, OF. 31','76.197.107-7','Italo Andreani Olivares','<NAME>','7.717.295-5','12.225.916-1','Scotiabank','VIÑA DEL MAR','VIÑA DEL MAR','2013-01-21','Programas Medio Ambientales','Viña del Mar','<NAME>','97-15876-60',NULL),(594,NULL,'MEC CONSULTORES IRL','DR. JOHOW 987 OF 1202','76.189.368-8','MARIA ESTELA CATALAN MATUS','','98776680','','SANTANDER','SANTIAGO','ÑUÑOA',NULL,'CONSULTORIAS','','','6850298-5',NULL),(595,NULL,'ROSA ESCOBAR EIRL','CAMBERRA 517','8.118.838-6','','','','','','SANTIAGO','LA REINA',NULL,'','','','',NULL),(596,NULL,'SERGIO DIAZ GEOLOGIA E HIDROGEOLOGÍA','AV. CRISTOBAL COLÓN 3366, OF. 1812','76.160.498-8','','','','','','SANTIAGO','LAS CONDES',NULL,'','','','',NULL),(597,NULL,'FINNING CHILE S.A.','RUTA 5 NORTE 851, COQUIMBO, COQUIMBO','91.489.000-4','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(598,NULL,'INVESTIGACIONES MINERAS Y GEOLÓGICAS LIMITADA','GUARDIA VIEJA N°255, OFICINA N°1605','78.110.220-2','','','','','','SANTIAGO','PROVIDENCIA',NULL,'','','','',NULL),(599,NULL,'CRISTIAN ROJAS','','RUT-AUX-25','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(600,NULL,'<NAME>','El Huille 440 Piedra Roja','76.921.610-3','','','','','','Santiago','Colina',NULL,'','','','',NULL),(601,NULL,'SMC ARQUITECTOS','<NAME> #94, Ñuñoa, Santiago','77.728.040-6','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(602,NULL,'HOTEL PLAZA EL BOSQUE','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(603,NULL,'ELECTRODHARMA ENERGY CONSULTING SPA','BOMBERO OSSA 1010 OF 1108','76.389.903-9','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(604,NULL,'INSTITUTO PORTALES','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(605,NULL,'XIMENA BAEZ TUÑON','MANUEL VERBAL 1545, Antofagasta, Antofagasta','10.034.928-0','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(606,NULL,'<NAME>','NUEVA PROVIDENCIA 1945 Of 409','96.832.080-7','','','','','','SANTIAGO','PROVIDENCIA',NULL,'Consultoria','','','',NULL),(607,NULL,'<NAME>','Gredoos 8075, Las Condes, Santiago','15.259.417-8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(608,NULL,'<NAME>','Efeso 094,Pudahuel,Santiago','10.328.442-2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(609,NULL,'AXESAT CHILE S.A.','APOQUINDO 4700 PISO 4','76.218.919-4','','','','','','SANTIAGO','LAS CONDES',NULL,'','','','',NULL),(610,NULL,'CONTROL DE PLAGAS HIDALGO Y RODRÍGUEZ LTDA.','CHUNGARÁ #1439, LAS TERRAZAS','76.245.499-8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(611,NULL,'SERVICIOS E INVERSIONES PRAMAR LTDA ( GEOBIOTA )','FLOR DE AZUCENAS N° 42, DPTO 3ER PISO','78.726.200-7','','','','','','Santiago','Las Condes',NULL,'Empresa de Asesorías','','','',NULL),(612,NULL,'<NAME>','Valparaiso 829, Vallenar','8.034.478-3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(613,NULL,'PHIBRAND','MAGNERE 1540, OF 801 PROVIDENCIA, SANTIAGO','76.579.139-1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(614,NULL,'UNIVERSITY OF BRITISH COLUMBIA','2332 WEST MALL, BRITISH COLUMBIA, VANCOUVER CANADA','N/A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(615,NULL,'DK Sistemas de Exhibición','Santa Beatriz 91','76.208.111-3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(616,NULL,'Corporación para el Desarrollo de la Region de Atacama','Atacama 840, Copiapó','71.778.500-2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(617,NULL,'Comercial Agroveterinaria del Maipo','<NAME> 477','76.016.596-4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(618,NULL,'CAPACITACIÓN GLOBALGATE LTDA','PROVIDENCIA 1945 OF 401','76.086.149-9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(619,NULL,'CDO Consulting Group','Av Providencia 329, piso4','79.945.530-7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(620,NULL,'ANGELA ACEVEDO','PADRE MARIANO 87, DEPTO 1116','15.339.819-4','','','','','','SANTIAGO','LAS CONDES',NULL,'','','','',NULL),(621,NULL,'METSO MINERALS INDUSTRIES(EEUU)','2715 Pleasant Valley rd','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(622,NULL,'SOCIEDAD INVERSIONES ATACAMA S&H LTDA','COLIPI 790, COPIAPÓ, COPIAPÓ','76.067.275-8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(623,NULL,'CAPACITACIÓN Y ASESORÍAS EMPRENDEJOVEN','SANTA ROSA Nª25 OFICINA 33, SANTIAGO','76.150.943-8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(624,NULL,'FUNDACIÓN CHILE','AV PARQUE ANTONIO RABAT SUR 6165','70.300.000-2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(625,NULL,'FUNDACIÓN CHILE','AV PARQUE ANTONIO RABAT SUR 6165','70.300.000-2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(626,NULL,'MUNICIPALIDAD DE VALLENAR','','69.030.500-3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(627,NULL,'MUNICIPALIDAD DEL CARMEN','','69.251.900-0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(628,NULL,'MUNICIPALIDAD DE HUASCO','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(629,NULL,'NEXO ASESORIA GESTION CULTURAL','PADRE LETELIER 0215 PROVIDENCIA','77.429.770-0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(630,NULL,'SIPCOM','CERRO EL PLOMO 5931 OF 1103','77.831.790-7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(631,NULL,'SALINAS & BELTRAN-GALINDO','PARADERO 16 AV CALERA DE TANGO','76.413.105-3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(632,NULL,'ATACAMA GESTION E INOVACION','ATACAMA 840, COPIAPO','76.054.487-6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(633,NULL,'GCF INGENIEROS','FIDEL OTEIZA 1971, OF 701','76.842.480-2','','','','','','Santiago','Providencia',NULL,'Ingeniería y Consultoría','','','',NULL),(634,NULL,'FINNING CHILE S.A','AV LOS JARDINES 924, HUECHURABA, SANTIAGO','91.489.00-4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(635,NULL,'<NAME>','LOMAS DEL CIPRES 12, CASILLLA 902, PUERTO VARAS','22.815.844-5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(636,NULL,'CIENCIAS ATMOSFERICA APLICADAS','PARCELA 123- FUNDO LORETO- ALTOVALSOL, LA SERENA','77.021.740-7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(637,NULL,'DELFINA LÓPEZ ESPEJO','CHANCHOQUIN GRANDE S/N','7.559.369-4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(638,NULL,'PITEAU ASSOCIATES CHILE SPA','Napoleon 3037, of 6','76.126.453-2','','','','','','Santiago','Las Condes',NULL,'','','','',NULL),(639,NULL,'TRACTEBEL ENG','CERRO COLORADO 5240','89.371.200-3','','','','','','Santiago','Las Condes',NULL,'Ingeniería','','','',NULL),(640,NULL,'The Bridge Comunicaciones','Providencia 727of 204','76.272.941-5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(641,NULL,'CONSULTORA VALLENORTE','JUAN VERDAGUER 565 OF F, VALLENAR, VALLENAR','76.108.901-3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(642,NULL,'DORGAMBIDE LTDA','MIRAMAR 382, HUASCO','76.962.750-9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(643,NULL,'Len y Asociados Ingenieros Consultores Ltda','<NAME> 84,','83.665.200-2','','','','','','Santiago','Providencia',NULL,'Ingeniería','','','',NULL),(644,NULL,'KUNZA CONSULTORES S.A.','AVELINO CONTARDO 932','96.845.940-6','<NAME>','','10.646.840-0','','BCI','ANTOFAGASTA','ANTOFAGASTA',NULL,'Asesorías y Proyectos','','','81522428',NULL),(645,NULL,'<NAME>','VICUÑA MACKENNA 2926, PEÑAFLOR, SANTIAGO','16.910.098-5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(646,NULL,'JML INTERNATIONAL BUSINESS AND FINANCIAL CONSULTANTS LLC','AUX','AUX',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(647,NULL,'MACARENA PÁEZ PAREDES','PASAJE 2 LOTE 6D- RETAMO','17.037.846-6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(648,NULL,'<NAME>','EVARISTO LILLO 78 OFICINA 82, LAS CONDES, SANTIAGO','76.532.414-9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(649,NULL,'SERVICIOS INDUSTRIALES WARNER SPA','LOS CARRERAS #2140','78.747.740-2','','','','','','Copiapó','Copiapó',NULL,'','','','',NULL),(650,NULL,'Contratista Eemplo','Dirección Ejemplo','99.999.999-9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(651,NULL,'<NAME>','La majada Nª191-A','76.395.683-0','','','','','','Vallenar','Alto del Carmen',NULL,'','','','',NULL),(652,NULL,'JE<NAME>','160 Goerge Street, Suite 2501','N/A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(653,NULL,'TERRACOP SPA','Viñita Azul s/n','76.364.199-6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(654,NULL,'AMAWTA GEOCONSULTORES LTDA.','Almirante Pastene 185, of. 804','76.273.803 - 1','','','','','','Santiago','Santiago',NULL,'SERVICIOS PROFESIONALES EN GEOLOGÍA Y PROSPECCIÓN','','','',NULL),(655,NULL,'THE RENTAL STORE CHILE S.A.','PLAZA COMERCIO, LOCAL 28','99.974.320-5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(656,NULL,'HIDROGEOLOGIA Y MEDIO AMBIENTE SUSTENTABLE','Suecia 211, oficina 1301-B','76.184.607-8','','','','','','Santiago','Providencia',NULL,'','','','',NULL),(657,NULL,'SIGA INGENIERÍA Y CONSULTORIA','AV. DIEGO DE ALMAGRO 5210','78.929.230-2','','','','','','SANTIAGO','ÑUÑOA',NULL,'','','','',NULL),(658,NULL,'ARCADIS CHILE SPA','ANTONIO VARAS 621','89.371.200-3','','','','','','Santiago','PROVIDENCIA',NULL,'Ingeniería','','','',NULL),(659,NULL,'Zamboni Ingenieros Asociados Ltda','Alonso de Córdova 5900 of 601','78.974.330-4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(660,NULL,'Contratos y Auditorias Ltda','Campanario Oriente 5524, Condominio Campanario','76.197.696-6','<NAME>igueroa','','','','','Santiago','Peñalolen',NULL,'Asesorias y Auditorias','','','',NULL),(661,NULL,'<NAME>','Cal<NAME>at 2807','8.644.028-8','<NAME>veda S','','','','','Vallenar','Vallenar',NULL,'N/A','','','',NULL),(662,NULL,'ALS PATAGONIA','Hermanos Carrera Pinto # 159','96.802.404-2',NULL,NULL,NULL,NULL,NULL,'Santiago','Colina',NULL,'Laboratorio',NULL,NULL,NULL,NULL),(663,NULL,'<NAME>','Camino el Roble 1790','13.303.712-8',NULL,NULL,NULL,NULL,NULL,'Santiago','Huechuraba',NULL,'',NULL,NULL,NULL,NULL),(664,NULL,'SERGIO IRIARTE GEOLOGIA E IDROGEOLOGIA EIRL','Av. Cristóbal Colón 3366, Of. 1812','76.160.498-8',NULL,NULL,NULL,NULL,NULL,'Santiago','<NAME>des',NULL,'Servicios Geológicos e Hidrogeológicos',NULL,NULL,NULL,NULL),(665,NULL,'SERVICIOS DE INGENIERIA BLACK & VEATCH CHILE LTDA.','Isidora Goyenechea 2800','78.442.280-1','','','','','','Santiago','Las Condes',NULL,'Ingeniería y Consultoría','','','',NULL),(666,NULL,'FLEX SERVICIO Y LOGISTICA','Av Francisco de Aguirre 0225. La Serena','77.949.260-5','','','','',NULL,'La Serena','La Serena',NULL,'Transporte de Pasajeros',NULL,NULL,NULL,NULL),(667,NULL,'GRAPHIS CONSULTORES LDA (RC CONSULTORES)','Av Pedro de Valdivia N° 555 OF 410','78.299.170-k','','','','','','Santiago','Providencia',NULL,'Ingeniería y Consultoría','','','',NULL),(668,NULL,'Amawta Geoconsultores Ltda','Almirante Pasten 185, OF 804','76.273.803-1','','','','',NULL,'Santiago','Santiago',NULL,'Ingeniería y Consultoría',NULL,NULL,NULL,NULL),(669,NULL,'SERVICIOS COMPROBE SPA','La Oración 33','78.951.730-4',NULL,NULL,NULL,NULL,NULL,'Santiago','<NAME>des',NULL,'ACTIVIDADES DE ASESORAMIENTO EMPRESARIAL',NULL,NULL,NULL,NULL),(670,NULL,'MAYCO CONSULTORES LTDA','RIO COLORADO 0217','76.806.310-9',NULL,NULL,NULL,NULL,NULL,'Santiago','San José de Maipo',NULL,'ASESORIA Y CONSULTORIA MEDIOAMBIENTAL',NULL,NULL,NULL,NULL),(671,NULL,'<NAME>','','N.A',NULL,NULL,NULL,NULL,NULL,'','',NULL,'N.A',NULL,NULL,NULL,NULL),(672,NULL,'Mine WaterMc Pty Ltd','','N.A',NULL,NULL,NULL,NULL,NULL,'','',NULL,'',NULL,NULL,NULL,NULL),(673,NULL,'<NAME>','','N.A',NULL,NULL,NULL,NULL,NULL,'','',NULL,'',NULL,NULL,NULL,NULL),(674,NULL,'<NAME>','Via Brennero 34','N.A','','','','','','','Vipiteno',NULL,'','','','',NULL),(675,NULL,'MineRP','Agustina 1142b 201','76.507.354-5',NULL,NULL,NULL,NULL,NULL,'Santiago','Santiago',NULL,'Ingeniería y Consultoría',NULL,NULL,NULL,NULL),(676,NULL,'EMPRESA SERVICIOS TRANSITORIOS PAGE INTERIM CHILE LTDA','Magdalena 181','76.228.695-5','','','','','','Santiago','Las Condes',NULL,'Servicios Transitorios','','','',NULL),(677,NULL,'<NAME>','7902 Glen Ridge Drive','43-2114973',NULL,NULL,NULL,NULL,NULL,'Colorado','Castle Pines',NULL,'',NULL,NULL,NULL,NULL),(678,NULL,'CAROLINA VERDEJO CONSULTORIAS Y ASESORIAS EIRL','AVENIDA EL RODEO 13787','76.529.122-4',NULL,NULL,NULL,NULL,NULL,'Santiago','Lo Barnechea',NULL,'Consultorías',NULL,NULL,NULL,NULL),(679,NULL,'BAIN & COMPANY CHILE ASESORIAS LIMITADA','Av. Apoquindo 2827, piso 20','76.146.692-5',NULL,NULL,NULL,NULL,NULL,'Santiago','Las Condes',NULL,'',NULL,NULL,NULL,NULL),(680,NULL,'WILLIAM MCCARTHY','4515 Silver Cliff Court','','','','','',NULL,'Colorado','Castle Rock',NULL,'',NULL,NULL,NULL,NULL),(681,NULL,'AG CAMARA DE COMERCIO DETALLISTA Y TURISMO','Ramirez N°940','70.898.900-2',NULL,NULL,NULL,NULL,NULL,'Vallenar','Vallenar',NULL,'Establecimiento de Enseñanza Pre Universitario',NULL,NULL,NULL,NULL),(682,NULL,'COWI','101-788 Harbourside Drive','',NULL,NULL,NULL,NULL,NULL,'Vancouver','North Vancouver',NULL,'',NULL,NULL,NULL,NULL),(683,NULL,'JORGE ZAMBRA CONTRERAS','Prat 14','4.116.944-3',NULL,NULL,NULL,NULL,NULL,'Vallenar','Vallenar',NULL,'',NULL,NULL,NULL,NULL),(684,NULL,'<NAME>','AV LA ESTRELLA 519,','13.2370483-K',NULL,NULL,NULL,NULL,NULL,'Santiago','Pudahuel',NULL,'Traducciones',NULL,NULL,NULL,NULL),(685,NULL,'REGUS MANAGEMENT DE CHILE','ALCANTARA 200, Piso 6','78.951.270-1',NULL,NULL,NULL,NULL,NULL,'Santiago','Las Condes',NULL,'',NULL,NULL,NULL,NULL),(686,NULL,'CONSULTORA <NAME>RL','PRESIDENTE ERRÁZURIZ 8136','76.746.977-2',NULL,NULL,NULL,NULL,NULL,'Santiago','PEÑALOLEN',NULL,'Consultorías',NULL,NULL,NULL,NULL),(687,NULL,'DISEÑO Y CONSTRUCCIÓN VISUALMENTE LTDA.','Bulnes 79 Oficina 105','76046871-1',NULL,NULL,NULL,NULL,NULL,'Santiago','Santiago',NULL,'',NULL,NULL,NULL,NULL),(688,NULL,'<NAME> SALINAS (MARSAL)','Añañucas N° 705','5.825.326-k',NULL,NULL,NULL,NULL,NULL,'Vallenar','Vallenar',NULL,'',NULL,NULL,NULL,NULL),(689,NULL,'ASESORIAS Y DISTRIBUIDORA -SEGMAS SPA','Antonio Varas #175 Of 402','76.514.219.9',NULL,NULL,NULL,NULL,NULL,'Santiago','Providencia',NULL,'',NULL,NULL,NULL,NULL),(690,NULL,'<NAME>','Av. Santa María 14700 casa 27','12.747.977-4',NULL,NULL,NULL,NULL,NULL,'Santiago','Providencia',NULL,'',NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `personas_ctta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `personas_ctto`
--
DROP TABLE IF EXISTS `personas_ctto`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `personas_ctto` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`IdCtto` int(11) DEFAULT NULL,
`NumCtto` varchar(20) NOT NULL,
`DescCtto` varchar(100) DEFAULT NULL,
`MonedaCtto` varchar(5) DEFAULT NULL,
`ValorCtto` decimal(21,2) DEFAULT NULL,
`EstCtto` varchar(4) DEFAULT NULL,
`FechIniCtto` date NOT NULL,
`FechTerCtto` date NOT NULL,
`CordCtto_id` int(11) NOT NULL,
`Carpeta` varchar(30) DEFAULT NULL,
`TipoServ` varchar(25) DEFAULT NULL,
`AjusteCom` decimal(21,2) DEFAULT NULL,
`AjustNumEDP` varchar(10) DEFAULT NULL,
`AjustValEDP` decimal(21,2) DEFAULT NULL,
`AdjudicCtto` varchar(15) DEFAULT NULL,
`LocalCtto` varchar(30) DEFAULT NULL,
`TerrenCtto` varchar(10) DEFAULT NULL,
`SeguroCtto` varchar(10) DEFAULT NULL,
`IdCecoCtto_id` int(11) NOT NULL,
`IdCtta_id` int(11) NOT NULL,
`IdMandante_id` int(11) NOT NULL,
`FechAppCtto` date DEFAULT NULL,
`FechSolCtto` date DEFAULT NULL,
`ObservCtto` varchar(100) DEFAULT NULL,
`AlcanceCtto` varchar(200) DEFAULT NULL,
`Anticipo` decimal(21,2) DEFAULT NULL,
`Boleta` decimal(21,2) DEFAULT NULL,
`DocOferta` varchar(100) DEFAULT NULL,
`FechCartaAdj` date DEFAULT NULL,
`FechOferta` date DEFAULT NULL,
`IvaOferta` varchar(30) DEFAULT NULL,
`LugarCtto` varchar(50) DEFAULT NULL,
`Modalidad` varchar(50) DEFAULT NULL,
`MonedaBoleta` varchar(5) DEFAULT NULL,
`RetenCtto` varchar(100) DEFAULT NULL,
`VigenBoleta` varchar(100) DEFAULT NULL,
`FechVigenBoleta` date DEFAULT NULL,
`AdminCttoCtta_id` int(11) NOT NULL,
`ProvisCtto` varchar(10) DEFAULT NULL,
`TipoSolicitud` varchar(20) DEFAULT NULL,
`AdminCttoProy_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `personas_ctto_IdCecoCtto_id_ec6e0647_fk_personas_ceco_id` (`IdCecoCtto_id`),
KEY `personas_ctto_IdCtta_id_e95acd1f_fk_personas_ctta_id` (`IdCtta_id`),
KEY `personas_ctto_7e9115d4` (`IdMandante_id`),
KEY `personas_ctto_CordCtto_id_27e08b2c_uniq` (`CordCtto_id`),
KEY `personas_ctto_8a37268b` (`AdminCttoCtta_id`),
KEY `personas_ctto_352f8c3f` (`AdminCttoProy_id`),
CONSTRAINT `p_AdminCttoProy_id_6e942388_fk_personas_personaladminproyecto_id` FOREIGN KEY (`AdminCttoProy_id`) REFERENCES `personas_personaladminproyecto` (`id`),
CONSTRAINT `personas_c_AdminCttoCtta_id_774e1e8d_fk_personas_personalctta_id` FOREIGN KEY (`AdminCttoCtta_id`) REFERENCES `personas_personalctta` (`id`),
CONSTRAINT `personas_ct_CordCtto_id_27e08b2c_fk_personas_personalproyecto_id` FOREIGN KEY (`CordCtto_id`) REFERENCES `personas_personalproyecto` (`id`),
CONSTRAINT `personas_ctto_IdCecoCtto_id_ec6e0647_fk_personas_ceco_id` FOREIGN KEY (`IdCecoCtto_id`) REFERENCES `personas_ceco` (`id`),
CONSTRAINT `personas_ctto_IdCtta_id_e95acd1f_fk_personas_ctta_id` FOREIGN KEY (`IdCtta_id`) REFERENCES `personas_ctta` (`id`),
CONSTRAINT `personas_ctto_IdMandante_id_8bfeef1c_fk_personas_mdte_id` FOREIGN KEY (`IdMandante_id`) REFERENCES `personas_mdte` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=729 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `personas_ctto`
--
LOCK TABLES `personas_ctto` WRITE;
/*!40000 ALTER TABLE `personas_ctto` DISABLE KEYS */;
INSERT INTO `personas_ctto` VALUES (448,1,'SC-104','SERVICIO DE CUSTODIA DE DOCUMENTOS','UF',72.00,'7','2012-11-21','2018-11-20',1,'No','Contrato',0.00,'1',0.00,'Directa','Nacional','No','No',161,454,21,NULL,NULL,'VER EDP','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(449,2,'SC-184','SERVICIO DE ASEO OFICINAS','CLP',42677032.00,'12','2014-07-01','2016-03-31',1,'SC-184 <NAME>','Contrato',62509961.00,'1',59461327.00,'Directa','Nacional','No','Si',165,455,17,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',2),(450,3,'SC-207','SERVICIO DE MANTENIMIENTO CAMPAMENTOS Y ASEO DE OFICINAS','CLP',171909000.00,'11','2014-10-01','2016-12-31',17,'SC207 Sodexo','Contrato',269824927.00,'16',257880862.00,'Directa','Nacional','Si','Si',170,456,21,NULL,NULL,'ENERO REV CONT','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,65,'Calculada','Normal',4),(451,4,'SC-214','SERVICIO DE CONSULTORIA PROFESIONAL TRAMITACION PROPIEDAD MINERA','CLP',9996200.00,'11','2015-01-01','2016-12-31',1,'SC214 C.Toro','Contrato',3365400.00,'1',3192000.00,'Directa','Nacional','Si','No',184,457,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(452,5,'SC-215','VIGILANCIA Y RESGUARDO DE PROPIEDAD MINERA DEL PROYECTO EL MORRO','UF',384.00,'10','2015-01-01','2016-12-31',15,'SC215 Prop Minera','Contrato',384.00,'1',352.00,'Directa','Nacional','No','No',184,458,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,12,'Informada','Normal',4),(453,6,'SC-216','SERVICIO DE MONITOREO DE CALIDAD DEL AIRE Y PARAMETROS METEOROLOGICOS','UF',2534.00,'11','2015-01-01','2016-08-31',1,'SC216 SERPRAM','Contrato',2017.80,'1',1863.15,'Directa','Nacional','Si','Si',210,459,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',4),(454,7,'SC-220','SERVICIO DE CONSULTORIA EN TEMAS COMUNITARIOS','CLP',70908000.00,'10','2015-01-01','2016-12-31',4,'SC220 <NAME>','Contrato',70908000.00,'1',64999000.00,'Directa','Nacional','Si','Si',199,462,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,66,'Calculada','Normal',4),(455,8,'SC-222','SERVICIO DE LABORATORIO','CLP',47801628.00,'11','2015-04-01','2016-08-31',1,'SC222 Cesmec','Contrato',10272353.00,'1',8804784.00,'Directa','Nacional','No','No',210,464,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',4),(456,9,'SC-224','SERVICIO DE CLIPPING Y BOLETIN INTERNO','CLP',23400000.00,'10','2015-01-01','2016-12-31',20,'SC224 Car<NAME>','Contrato',17100000.00,'1',16200000.00,'Directa','Local','No','No',197,466,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','Precios Unitarios Mes','CLP','',NULL,NULL,28,'Calculada','Normal',2),(457,10,'SC-228','SERVICIO DE MANTENCION Y REPARACION DE IMPRESORAS','CLP',33600000.00,'13','2015-01-01','2015-12-31',1,'SC228 <NAME>','Contrato',43427392.00,'1',38127787.00,'Directa','Nacional','No','Si',164,470,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',2),(458,11,'SC-232','SERVICIO DE REGISTRO DE PROVEEDORES “REGIC””','UF',0.00,'15','2015-11-01','2015-11-01',1,'','Contrato',0.00,'1',0.00,'Directa','Nacional','No','No',157,473,17,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(459,12,'SC-233','SERVICIO DE ASESORIA JURIDICA','UF',3215.00,'10','2015-03-01','2016-12-31',15,'SC233 Geodesarrollo','Contrato',2522.79,'1',2282.79,'Directa','Nacional','Si','No',185,474,17,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,9,'Informada','Normal',2),(460,13,'SC-235','SERVICIO DE ESTUDIO DE IMPACTO AMBIENTAL (EIA)','UF',144261.00,'10','2016-04-25','2018-02-28',14,'SC235 EIA','Contrato',0.00,'1',0.00,'Licitación','Nacional','Si','No',203,476,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,6,'Informada','Normal',3),(461,14,'SC-237','MONITOREO DE AGUAS SUPERFICIALES Y SUBTERRANEAS','CLP',30037956.00,'13','2015-07-01','2016-08-31',1,'SC237 JAC','Contrato',25031630.00,'1',25031630.00,'Directa','Nacional','Si','Si',210,478,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',4),(462,15,'SC-241','SERVICIO DE MONITOREO DE SERVIDORES Y SOPORTE DE RED','UF',560.00,'11','2015-09-01','2015-12-31',1,'SC241 Cibersecuity','Contrato',1408.00,'1',950.00,'Directa','Nacional','Si','Si',164,468,17,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',2),(463,16,'SC-242','SERVICIO MANTENCION OFICINA PISO 7','UF',200.00,'10','2015-09-24','2016-12-31',12,'SC242 Crea','Contrato',44.57,'1',30.51,'Directa','Nacional','No','Si',165,480,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,14,'Calculada','Normal',2),(464,17,'SC-244','ACTIVIDADES CULTURALES 2015-2016','CLP',30000000.00,'13','2015-11-20','2016-01-31',1,'SC244 Azabache','Contrato',0.00,'1',0.00,'Directa','Nacional','Si','No',198,572,17,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',2),(465,18,'SC-245','ELABORACION BASES TECNICAS EIA','UF',728.40,'13','2015-11-10','2016-04-15',1,'SC245 Myma','Contrato',509.13,'1',0.00,'Directa','Nacional','No','No',203,483,17,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',4),(466,19,'SC-247','PLAN DE CORRECCION FORMACIONES XEROFITICAS','UF',327.00,'12','2015-11-19','2016-01-31',1,'SC247 Cedrem','Contrato',0.00,'1',0.00,'Directa','Nacional','Si','Si',203,484,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',4),(467,20,'SC-248','ING. CONCEPTUAL TRANSPORTE CONCENTRADO COBRE/AGUA DESALADA','UF',7912.00,'13','2016-01-11','2016-08-31',1,'SC248_16-002-Brass','Contrato',0.00,'1',0.00,'Licitación','Nacional','Si','No',201,493,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(468,21,'SC-249','DESARROLLO ESTRATEGIA PARA LOS DERECHOS HUMANOS P. CORREDOR','USD',68400.00,'10','2016-01-01','2016-06-30',4,'SC249 On Common Ground','Contrato',0.00,'1',0.00,'Directa','Extranjero','No','No',199,573,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,30,'Informada','Normal',4),(469,22,'SC-250','ASESORAMIENTO COMUNICACIONAL HUASCOALTINOS','UF',1907.42,'13','2015-11-01','2016-12-31',1,'SC250 Soledad Farr','Contrato',0.00,'1',0.00,'Directa','Nacional','Si','No',197,486,17,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(470,23,'SC-252','SERV. MANTENCION Y REPARACION DE IMPRESORAS','CLP',19800000.00,'10','2016-01-01','2016-12-31',23,'SC252 <NAME>','Contrato',0.00,'1',0.00,'Directa','Nacional','Si','Si',164,470,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,67,'Calculada','Normal',2),(471,24,'SC-253','SERVICIO DE SOPORTE PARA RED DE GOLDCORP CHILE','CLP',85992000.00,'10','2016-01-01','2016-12-31',23,'SC253 Cibersecurity','Contrato',0.00,'1',0.00,'Directa','Nacional','Si','Si',164,468,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,68,'Calculada','Normal',2),(472,25,'SC-256','SERVICIO SONDAJE LOS QUIJOS 2016','CLP',352707427.00,'11','2016-07-25','2016-08-29',1,'SC256 Griffith Drilling','Contrato',0.00,'1',0.00,'Licitación','Nacional','Si','Si',208,475,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',3),(473,26,'SC-257','CORDINADOR INGENIERIA PARA EIA','CLP',145710253.70,'10','2016-03-07','2016-12-31',6,'SC257 Fluor Chile','Contrato',0.00,'1',0.00,'Directa','Nacional','No','No',189,547,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'NO_IVA','','Horas Hombre','CLP','',NULL,NULL,31,'Calculada','Normal',4),(474,27,'SC-258','PROYECTO DE BIODIVERSIDAD AGRICOLA 2016','CLP',54900000.00,'10','2016-04-01','2016-12-31',17,'SC258 Ordenes A','Contrato',0.00,'1',0.00,'Directa','Local','Si','Si',198,491,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,69,'Calculada','Normal',4),(475,28,'SC-259','ESTRATEGIA DE REASENTAMIENTO PROYECTO CORREDOR','USD',114460.00,'10','2016-04-23','2016-09-30',20,'SC259 Replan','Contrato',0.00,'1',0.00,'Directa','Extranjero','Si','Si',211,499,21,NULL,NULL,'VER EDP y CIERRE','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,26,'Informada','Normal',3),(476,29,'SC-260','ELABORACION DE DECLARACION DE IMPACTO AMBIENTAL PROSPECCION LA FORTUNA','UF',2702.00,'11','2016-05-02','2017-02-28',1,'SC260 <NAME>','Contrato',0.00,'1',0.00,'Directa','Nacional','Si','Si',185,476,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',3),(477,30,'SC-261','SERVICIO DE ASEO OFICINAS','CLP',18900000.00,'10','2016-03-01','2016-12-31',1,'SC261 <NAME>','Contrato',0.00,'1',0.00,'Directa','Nacional','No','Si',165,455,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',2),(478,31,'SC-262','SERVICIOS PROFESIONALES DE APOYO A AREA SERVICIO PROYECTO CORREDOR','CLP',2777778.00,'11','2016-05-01','2016-07-31',1,'SC262 <NAME>','Contrato',0.00,'1',0.00,'Directa','Nacional','Si','No',161,500,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(479,32,'SC-263','SUPERVICION CAMPANA DE SONDAJE SECTOR LOS QUIJOS','UF',6839.10,'11','2016-06-20','2016-09-15',1,'SC263 Golder','Contrato',0.00,'1',0.00,'Directa','Nacional','Si','Si',208,548,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',4),(480,33,'SC-264','DESARROLLO DOCUMENTACION HSEC','CLP',12555556.00,'13','2016-07-26','2016-09-30',1,'SC264 Doc HSEC','Contrato',0.00,'1',0.00,'Licitación','Nacional','No','No',161,574,21,NULL,NULL,'CIERRE OK','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',2),(481,34,'SC-265','PAS BOSQUES Y FORMACION XEROFITICA','UF',6835.30,'10','2016-09-27','2018-03-31',10,'No','Contrato',0.00,'1',0.00,'Licitación','Nacional','Si','Si',203,611,21,'2016-09-27','2016-08-03','','',NULL,NULL,'',NULL,NULL,'IVA','','Pu por Há','CLP','5',NULL,NULL,32,'Informada','Normal',3),(482,35,'SC-266','EARLY WORKS','CAD',825203.00,'11','2016-07-01','2016-09-30',1,'SC266 Fluor Early Work','Contrato',0.00,'1',0.00,'Directa','Extranjero','No','No',201,576,21,'2016-07-01','2016-06-10','VER CIERRE',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(483,36,'SC-267','CONTRATO ASESORIA TECNICA Y OTROS','USD',273600.00,'7','2016-01-01','2017-12-31',1,'SC267 Inter GS','Contrato',0.00,'1',0.00,'Directa','Nacional','No','No',167,577,21,'2016-06-22','2016-06-01','','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(484,37,'SC-268','CONTRATO ASESORIA TECNICA Y OTROS','USD',286080.00,'7','2016-01-01','2017-12-31',1,'SC268 Inter TR','Contrato',0.00,'1',0.00,'Directa','Nacional','No','No',167,578,21,'2016-06-22','2016-06-01','','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(485,38,'SC-269','CONTRAPARTE TÉCNICA EIA - CLIMA Y METEOROLOGÍA','UF',250.00,'10','2016-08-01','2018-06-30',10,'No','Contrato',0.00,'1',0.00,'Directa','Nacional','No','No',203,590,21,'2016-10-25','2016-08-16','','',NULL,NULL,'',NULL,NULL,'IVA','','Horas Hombre','CLP','',NULL,NULL,41,'Informada','Normal',4),(486,39,'SC-270','CONTRAPARTE TÉCNICA EIA - ECOSISTEMAS TERRESTRES','UF',350.00,'3','2016-08-01','2018-06-30',1,'No','Contrato',0.00,'1',0.00,'Directa','Nacional','No','No',203,591,21,'2016-10-25','2016-08-16','',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',4),(487,40,'SC-271','CONTRAPARTE TÉCNICA EIA - MEDIO MARINO','UF',56.00,'10','2016-08-01','2018-06-30',10,'No','Contrato',0.00,'1',0.00,'Directa','Nacional','Si','No',203,592,21,'2016-10-25','2016-08-16','','',NULL,NULL,'',NULL,NULL,'NO_IVA','','Horas Hombre','CLP','',NULL,NULL,42,'Informada','Normal',4),(488,41,'SC-272','CONTRAPARTE TÉCNICA EIA - HIDROLOGÍA','UF',275.00,'10','2016-08-01','2018-06-30',10,'No','Contrato',0.00,'1',0.00,'Directa','Nacional','No','No',203,657,21,'2016-10-25','2016-08-16','','',NULL,NULL,'',NULL,NULL,'IVA','','Horas Hombre','CLP','',NULL,NULL,44,'Informada','Normal',4),(489,42,'SC-273','CONTRAPARTE TÉCNICA EIA - PAISAJE','UF',70.00,'10','2016-08-01','2018-06-30',10,'No','Contrato',0.00,'1',0.00,'Directa','Nacional','No','No',203,594,21,'2016-10-25','2016-08-16','','',NULL,NULL,'',NULL,NULL,'IVA','','Horas Hombre','CLP','',NULL,NULL,45,'Informada','Normal',4),(490,43,'SC-274','CONTRAPARTE TÉCNICA EIA - MEDIO HUMANO','UF',300.00,'10','2016-08-01','2018-06-30',10,'No','Contrato',0.00,'1',0.00,'Directa','Nacional','No','No',203,595,21,'2016-10-25','2016-08-16','','',NULL,NULL,'',NULL,NULL,'IVA','','Horas Hombre','CLP','',NULL,NULL,46,'Informada','Normal',4),(491,44,'SC-275','CONTRAPARTE TÉCNICA EIA - GEOLOGÍA','UF',250.00,'10','2016-08-01','2018-06-30',10,'No','Contrato',0.00,'1',0.00,'Directa','Nacional','No','No',203,596,21,'2016-10-25','2016-08-16','','',NULL,NULL,'',NULL,NULL,'IVA','','Horas Hombre','CLP','',NULL,NULL,20,'Informada','Normal',4),(492,45,'SC-276','SERVICIO DE MENSAJERÍA Y ADMINISTRATIVO','CLP',3366000.00,'10','2016-09-01','2016-12-31',1,'No','Contrato',0.00,'1',0.00,'Directa','Nacional','No','No',161,599,21,'2016-09-01','2016-08-20','',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',2),(493,46,'SC-277','CULTURA ORGANIZACIONAL','UF',3664.00,'10','2016-08-08','2016-10-31',1,'No','Contrato',0.00,'1',0.00,'Directa','Nacional','No','Si',161,600,21,'2016-09-05','2016-08-05','ENERO REV','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',4),(494,200,'C-010','RED METEROLOGICA PROYECTO RELINCHO','UF',0.00,'13','2015-11-01','2015-11-01',1,'No','Contrato',0.00,'1',0.00,'Directa','Nacional','Si','Si',210,511,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(495,201,'OS2010-010','ARRIENDO DE CAMIONETAS','UF',2975.00,'11','2010-07-01','2015-12-31',1,'OS-010 West','Orden de Servicio',13855.00,'10',13771.30,'Directa','Nacional','Si','No',169,492,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(496,202,'OS2011-057','RESCATE MEDICO DE URGENCIA','USD',91200.00,'11','2011-07-22','2016-02-29',1,'S-057 Aerorescate','Orden de Servicio',202540.00,'50',198740.00,'Directa','Nacional','Si','Si',169,489,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(497,203,'OS2012-065','SERVICIO DE SEGURIDAD INDUSTRIAL','CLP',180003154.00,'13','2012-05-07','2015-12-31',1,'S-065 Securitas','Orden de Servicio',368849500.00,'40',365551891.00,'Directa','Nacional','Si','Si',170,488,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(498,204,'OS2013-078','ASESORIA AMBIENTAL ESPECIALIZADA-MODIFICACION DE MUESTRERA','UF',952.60,'12','2013-01-01','2016-08-31',1,'OS-078 GHD','Orden de Servicio',909.95,'1',621.00,'Directa','Nacional','Si','Si',210,512,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(499,205,'OS2013-125','ASESORIA ESPECIALIZADA CIENTIFICO-TECNOLOGICA (CONSERVACION SEMILLA)','CLP',0.00,'16','2015-11-01','2015-11-01',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',203,513,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(500,206,'OS2013-131','ASEO OFICINA DE VALLENAR','CLP',14166139.00,'13','2013-04-01','2015-12-31',1,'OS-131 Milena Cyd','Orden de Servicio',39329574.00,'19',38158640.00,'Directa','Local','Si','Si',170,490,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(501,207,'OS2013-144','RESCATE DE LA DIVERSIDAD AGRICOLA DE LA PROVINCIA DEL HUASCO','CLP',24110000.00,'12','2013-07-01','2015-12-31',1,'OS-144 Ordenes','Orden de Servicio',124110000.00,'10',119660000.00,'Directa','Local','Si','Si',198,579,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(502,208,'OS2014-168','SERVICIO DE LABORATORIO SGS PRUEBAS GEOQUIMICAS','USD',0.00,'12','2015-11-01','2015-11-01',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Extranjero','No','No',203,514,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(503,209,'OS2014-170','SERVICIO DE ANALISIS QUIMICOS','CLP',0.00,'12','2015-11-01','2015-11-01',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','Si','No',203,515,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(504,210,'OS2015-065','ARRIENDO OFICINA VALLENAR','CLP',4000000.00,'13','2016-12-01','2016-03-31',1,'OS-065 Clemente','Orden de Servicio',0.00,'1',0.00,'Directa','Local','No','No',170,516,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(505,211,'OS2015-175','CONSTRUCCION CAMINO SECTOR QUEBRADA LAS GUIAS (4KM)','CLP',33980000.00,'11','2015-01-01','2015-12-31',1,'S-175 Serviterra','Orden de Servicio',33980000.00,'45',28785000.00,'Directa','Local','Si','Si',169,523,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(506,212,'OS2015-183','RENOVACION SERVICIO ANUAL SPOT GEN3','CLP',0.00,'13','2015-11-01','2015-11-01',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',169,517,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(507,213,'OS2010-023','ABASTECIMIENTO DE PETROLEO - COPEC','CLP',0.00,'13','2015-11-01','2015-11-01',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',169,451,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(508,214,'OS2014-036','PREVENCION Y CONTROL INTEGRADO DE PLAGAS','UF',562.00,'11','2010-01-01','2016-12-31',1,'OS-036 TrulyNolen','Orden de Servicio',2762.70,'1',2762.70,'Directa','Nacional','Si','Si',169,498,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(509,215,'OS2011-055','SERVICIO DE TELECOMUNICACIONES','CLP',0.00,'13','2015-11-01','2015-11-01',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',164,519,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(510,216,'OS2012-102','SUMINISTRO DE AGUA POTABLE A GRANEL','CLP',0.00,'13','2015-11-01','2015-11-01',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','Si','No',169,451,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(511,217,'OS2013-111','SUMINISTRO DE AGUA ENVASADA','CLP',0.00,'15','2015-11-01','2015-11-01',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Local','Si','No',169,521,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(512,218,'CV2016-001','ASESORIA ESTRATEGICA RELACIONAMIENTO COMUNITARIO','CLP',76209400.00,'11','2016-01-01','2016-12-31',1,'Casa La Paz','Convenio',0.00,'1',0.00,'Directa','Nacional','Si','No',199,580,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(513,219,'OC (NXXXX)','ESTRATEGIA RECURSO HIDRICO Y ASESORIA AMBIENTAL','UF',180.00,'13','2015-11-01','2015-11-01',1,'No','Orden de Compra',0.00,'1',0.00,'Directa','Nacional','No','No',203,522,17,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(514,220,'OCM2016-02','ARRIENDO OFICINA PISO N7','UF',10692.15,'7','2015-12-01','2017-04-30',1,'OCM2016-02 SCL Apoq','Contrato',0.00,'1',0.00,'Directa','Nacional','No','No',165,452,21,NULL,NULL,'VER EDP','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(515,221,'OCM2016-03','DESALINATION PLANT','USD',350000.00,'11','2016-01-01','2016-08-25',1,'OCM2016-03 Cadagua','Contrato',0.00,'1',0.00,'Directa','Extranjero','No','No',201,453,17,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(516,222,'OCM2016-01','REVISON DE SISTEMA DE CORREAS ENTRE EL MORRO Y RELINCHO','USD',109100.00,'11','2015-12-20','2016-01-16',1,'OCM2016-01 Terrenova','Orden de Servicio',0.00,'1',0.00,'Directa','Extranjero','No','No',201,508,17,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(517,223,'OS2016-001','SERVICIO DE TOPOGRAFIA SATELITAL','USD',58650.00,'13','2015-12-20','2016-01-31',1,'OS2016-001 PhotoSat','Orden de Servicio',0.00,'1',0.00,'Cotizaciones','Extranjero','No','No',201,501,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(518,224,'OS2016-002','SERVICIO DE TRANSPORTE REFRIGERADO','UF',86.00,'11','2016-01-01','2016-12-31',1,'OS16-02 Nutriser','Orden de Servicio',0.00,'1',0.00,'Directa','Local','Si','Si',169,568,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(519,225,'OS2016-003','SERVICIOS 2016 ARRIENDO EQUIPOS MOV TIERRA','CLP',13490000.00,'10','2016-01-01','2016-12-31',8,'OS16-03 Serviterra','Orden de Servicio',0.00,'1',0.00,'Directa','Local','Si','Si',169,523,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,15,'Calculada','Normal',1),(520,226,'OS2016-004','ARRIENDO DE CAMIONETAS 2016','UF',270.90,'12','2016-01-01','2016-05-31',1,'OS16-04 West','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',169,492,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(521,227,'OS2016-005','TAXI ACTIVIDAD FIESTA DE FREIRINA','CLP',700000.00,'13','2016-02-05','2016-02-16',1,'OS2016-005 Taxi Libert','Orden de Servicio',0.00,'1',0.00,'Directa','Local','No','No',198,581,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(522,228,'OS2016-006','HOTEL ACTIVIDAD FIESTA DE FREIRINA','CLP',878151.00,'13','2016-02-05','2016-02-16',1,'OS2016-006 hotel Solaris','Orden de Servicio',0.00,'1',0.00,'Directa','Local','No','No',198,582,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(523,229,'OS2016-007','STREAMING TV ACTIVIDAD FIESTA DE FREIRINA','CLP',2016807.00,'13','2016-02-05','2016-02-25',1,'OS2016-007 Enfoque Digital','Orden de Servicio',0.00,'1',0.00,'Directa','Local','No','No',198,504,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(524,230,'OS2016-008','RADIODIFUCION ACTIVIDAD FIESTA DE FREIRINA','CLP',855002.00,'13','2016-02-05','2016-02-25',1,'OS2016-008 RadioAmiga','Orden de Servicio',0.00,'1',0.00,'Directa','Local','No','No',198,505,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(525,231,'OS2016-009','DISENO DE CIRCUITOS DE FLOTACION SFR','USD',10200.00,'11','2016-02-23','2016-03-30',1,'OS2016-009 Woodgrove','Orden de Servicio',0.00,'1',0.00,'Directa','Extranjero','No','No',201,509,21,NULL,NULL,'VER CIERRE',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(526,232,'OS2016-010','REVISION DE SISTEMA ROPECON PARA CORREA','EUR',90300.00,'11','2016-02-16','2016-03-31',1,'OS2016-010 Doppelmayr','Orden de Servicio',0.00,'1',0.00,'Directa','Extranjero','No','No',201,556,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(527,233,'OS2016-011','ACONDICIONAMIENTO EDIFICIO OFICINA CALLE OCHANDIA (EX OF. RELINCHO)','CLP',3870240.00,'13','2016-01-15','2016-02-15',1,'OS2016-011 ValleVerde','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','Si','No',170,583,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(528,234,'OS2016-012','COMET TECHNICAL SUPPORT (MAR)','USD',2500.00,'13','2016-03-14','2016-03-25',1,'OS2016-012 Commet Strategy','Orden de Servicio',0.00,'1',0.00,'Directa','Extranjero','No','No',202,584,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(529,235,'OS2016-013','TRADUCCION PLAN DE SEGURIDAD CORREDOR','CLP',168480.00,'13','2016-03-15','2016-03-21',1,'OS2016-013 Consuelo P','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',161,507,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(530,236,'OS2016-014','NULA','CLP',0.00,'15','2015-11-01','2015-11-01',1,'Nula','Orden de Servicio',0.00,'1',0.00,'0','Nacional','0','No',157,451,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(531,237,'OS2016-015','SERVICIO DE PREPARACION INFORME CLACC 02','UF',180.00,'13','2016-04-28','2016-05-06',1,'OS2016-015 <NAME>','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','Si','No',169,524,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(532,238,'OS2016-016','CONSULTORIA HAULAGE ANALYSIS PROYECTO CORREDOR','CAD',2980.00,'12','2016-05-03','2016-05-10',1,'OS2016-016 Runge','Orden de Servicio',0.00,'1',0.00,'Directa','Extranjero','No','No',202,525,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(533,239,'OS2016-017','SUMINISTRO DE MOCHILA CON LOGO','CLP',3437650.00,'11','2015-01-11','2015-01-11',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',197,526,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(534,240,'OS2016-018','SERVICIO DE PRODUCCION E IMPRESION MATERIAL NUEVA IMAGEN','0',0.00,'15','2015-11-01','2015-11-01',1,'Nula','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',157,527,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(535,241,'OS2016-019','TRADUCCIONES 2016','CLP',2700000.00,'10','2016-05-18','2016-12-31',1,'OS2016-019 Consuelo P','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',161,507,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(536,242,'OS2016-020','TRANSPORTE SERGIO MOLINA','CLP',4280000.00,'13','2015-11-01','2015-11-01',1,'Transp Carvajal','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',161,528,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(537,243,'OS2016-021','SERVICIO CAPACITACION CURSO4X4 Y EXAMEN PSICOSENSOMETRICO (VALLENAR)','CLP',2290000.00,'11','2016-05-24','2016-05-24',1,'OS2016-021 Petrinovic','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',161,529,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(538,244,'OS2016-022','SUMINITRO DE AGUA CAMPAMENTO','CLP',10260000.00,'12','2016-02-16','2016-12-01',1,'<NAME>','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','Si','No',208,520,21,NULL,NULL,'Preg EDP','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(539,245,'OS2016-023','NULA','0',0.00,'15','2015-11-01','2015-11-01',1,'','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',157,530,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(540,246,'OS2016-024','AUDITORIA LABORAL CONTRATOS NU','CLP',2493752.00,'12','2016-06-06','2016-10-06',1,'OS2016-024 Workmate','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','Si','No',208,531,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(541,247,'OS2016-025','SERVICIO HELICOPETORO SECTOR LA FORTUNA','USD',25674.00,'13','2016-05-25','2016-05-26',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','Si','No',207,532,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(542,248,'OS2016-026','INSCRIPCION DE MARCAS','0',0.00,'11','2015-11-01','2015-11-01',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',197,533,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(543,249,'OS2016-027','ASESORIA LEGAL','0',0.00,'3','2015-11-01','2015-11-01',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',185,534,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(544,250,'OS2016-028','SERVICIO CAPACITACION CURSO4X4 Y EXAMEN PSICOSENSOMETRICO (SANTIAGO)','CLP',4550000.00,'15','2015-11-01','2015-11-01',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',161,529,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(545,251,'OS2016-029','ASESORIA LEGAL','0',0.00,'3','2015-11-01','2015-11-01',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',185,535,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(546,252,'OS2016-030','NULA','0',0.00,'15','2015-11-01','2015-11-01',1,'Nula','Orden de Servicio',0.00,'1',0.00,'0','Nacional','No','No',157,451,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(547,253,'OS2016-031','CURSO USO DE EXTINTORES','CLP',1350000.00,'11','2016-06-10','2016-06-10',1,'OS2016-031 ASP','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',161,536,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(548,254,'OS2016-032','RETIRO, SUMINISTRO E INSTALACION DE PUERTA PISO 7','CLP',1551714.00,'12','2016-06-13','2016-06-13',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',165,480,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(549,255,'OS2016-033','PETROLEO DISEL (TARJETA ABASTECIMIENTO) CAMPAMENTO Y SONDAJE','CLP',10000000.00,'7','2016-05-01','2016-12-31',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',169,451,21,NULL,NULL,'Abril revisar estatus','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(550,256,'OS2016-034','ARRIENDO Y RECAMBIO CONTENEDOR CERRADO DE 10 M3 PARA RESIDUOS','CLP',1600000.00,'11','2015-11-01','2016-12-31',8,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Local','Si','Si',208,537,21,NULL,NULL,'Revisar Fechas del servicio','',NULL,NULL,'',NULL,NULL,'IVA','','Precios Unitarios Mes','CLP','',NULL,NULL,50,'Informada','Normal',1),(551,257,'OS2016-035','MONITOREO REDES SOCIALES','UF',192.50,'10','2016-06-10','2016-12-31',20,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','Si','No',197,538,21,NULL,NULL,'Preg EDP','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,27,'Calculada','Normal',1),(552,258,'OS2016-036','NULA','0',0.00,'15','2015-11-01','2015-11-01',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','0','No',197,539,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(553,259,'OS2016-037','DISENO DE MATERIALES COMUNICACION NUEVAUNION','UF',315.00,'10','2016-06-10','2016-12-31',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',197,540,21,NULL,NULL,'Preg EDP',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Informada','Normal',1),(554,260,'OS2016-038','CONSULTORIA MEDIO AMBIENTAL','CLP',24910000.00,'11','2016-06-10','2016-11-30',1,'OS2016-038 Elizabeth del C','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',203,541,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(555,261,'OS2016-039','REVISION Y VALIDACION DE RESULTADOS METALURGICOS PROPUESOS PARA LOS CRITERIOS DE DISENO','USD',67840.00,'13','2016-06-10','2016-08-30',1,'OS2016-039 Promet101','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',188,542,21,NULL,NULL,'Finiquito en firma Alejandro',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(556,262,'OS2016-040','CURSO DE CAPACITACION EN REANIMACION TRAUMA PRE HOSPITALARIO','CLP',8000000.00,'11','2016-07-18','2016-07-22',1,'OS2016-040 Infocarp','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',198,543,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(557,263,'OS2016-041','SERVICIO POR SALA DE PROCEDIMIENOS Y AMBULANCIA 4X4','UF',675.00,'11','2016-07-18','2016-09-15',8,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','Si','Si',207,544,21,NULL,NULL,'Preg EDP','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,10,'Calculada','Normal',1),(558,264,'OS2016-042','ASESORIA LEGAL','USD',50000.00,'10','2016-11-15','2017-07-31',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',185,477,21,'2016-12-21','2016-12-20','',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Informada','Normal',1),(559,265,'OS2016-043','ASESORIA LEGAL','UF',300.00,'3','2015-11-01','2016-12-31',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',185,545,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Informada','Normal',1),(560,266,'OS2016-044','REGISTRO FOTOGRAFICO AREA INFLUENCIA P NUEVA UNION','CLP',1360000.00,'11','2016-07-01','2016-07-30',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','Si','No',197,555,21,NULL,NULL,'Preg EDP',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(561,267,'OS2016-045','SERVICIO ARRIENDO MAQUINARIA PREPARACION PLATAFORMA SONDAJE LOS QUIJOS','CLP',29686375.00,'11','2016-06-23','2016-08-30',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Local','Si','Si',207,523,21,NULL,NULL,'Preg EDP',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(562,268,'OS2016-046','RETIRO DE AGUAS SERVIDAS Y CAMARA DE INSPECCION CAMPAMENTO RELINCHO','CLP',2411524.00,'11','2016-06-21','2016-06-30',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Local','Si','Si',169,585,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(563,269,'OS2016-047','MANTENCION DE REPETIDORES','CLP',5959154.00,'12','2016-07-07','2016-07-16',1,'No','Orden de Servicio',0.00,'1',0.00,'Cotizaciones','Local','Si','No',207,571,21,NULL,NULL,'Preg EDP',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(564,270,'OS2016-048','PROGRAMA PAUSA ACTIVA','CLP',1440000.00,'10','2016-07-04','2016-12-31',24,'No','Orden de Servicio',0.00,'1',0.00,'Cotizaciones','Nacional','Si','No',161,560,21,NULL,NULL,'Preg EDP','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,70,'Calculada','Normal',1),(565,271,'OS2016-049','EVALUACION NUTRICIONAL','CLP',858000.00,'12','2016-07-04','2016-12-31',1,'No','Orden de Servicio',0.00,'1',0.00,'Cotizaciones','Local','Si','No',161,451,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(566,272,'OS2016-050','ENTRENAMIENTO FUNCIONAL','CLP',1600000.00,'12','2016-07-04','2016-12-31',1,'No','Orden de Servicio',0.00,'1',0.00,'Cotizaciones','Local','Si','No',161,565,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(567,273,'OS2016-051','DISENO Y PRODUCCION LOGO Y DUSTED','CLP',606200.00,'11','2016-07-10','2016-07-15',1,'No','Orden de Servicio',0.00,'1',0.00,'Cotizaciones','Nacional','No','No',197,559,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(568,274,'OS2016-052','TALLER DE VOCERIA PARA EJECUTIVOS NUEVAUNION','UF',155.00,'11','2016-07-10','2016-07-30',1,'No','Orden de Servicio',0.00,'1',0.00,'Cotizaciones','Nacional','No','No',197,569,21,NULL,NULL,'Preg EDP',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(569,275,'OS2016-053','REALIZACION ESTUDIO DE PERCEPCION NUEVAUNION','UF',1253.00,'11','2016-06-30','2016-09-30',1,'No','Orden de Servicio',0.00,'1',0.00,'Cotizaciones','Nacional','Si','Si',197,557,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(570,276,'OS2016-054','ARRIENDO SALON ENTRENAMIENTO FUNCIONAL','CLP',540000.00,'11','2016-07-21','2016-07-21',1,'No','Orden de Servicio',0.00,'1',0.00,'Cotizaciones','Nacional','No','No',161,553,21,NULL,NULL,'Preg EDP',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(571,277,'OS2016-055','TALLER DE CAPACITACION ACTUALIDAD INDIGENA','CLP',700000.00,'11','2016-07-25','2016-07-31',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',198,558,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(572,278,'OS2016-056','AUDITORIA DE EXPEDIENTES DE TRAMITACION MINERA (27 CONCESIONES)','UF',65.00,'11','2016-06-14','2016-07-05',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',183,458,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(573,279,'OS2016-057','SERVICIO ALIMENTACION ASISTENTES SEMINARIO PHART','CLP',3053145.00,'11','2016-07-17','2016-07-22',1,'No','Orden de Servicio',0.00,'1',0.00,'Cotizaciones','Local','No','No',198,566,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(574,280,'OS2016-058','SERVICIO ALIMENTACION CAMPANA SONDAJE','CLP',52604676.00,'11','2016-07-18','2016-09-15',1,'No','Orden de Servicio',0.00,'1',0.00,'Cotizaciones','Local','Si','Si',207,568,21,NULL,NULL,'Preg EDP','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(575,281,'OS2016-059','SUSCRIPCION BOLETIN DEL TRABAJO','CLP',721400.00,'15','2016-07-01','2016-07-16',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',161,552,21,NULL,NULL,'Preg EDP',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(576,282,'OS2016-060','NULA','0',0.00,'15','2016-01-01','2016-01-02',1,'','Orden de Servicio',0.00,'1',0.00,'0','Nacional','No','No',157,451,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(577,283,'OS2016-061','ASESORES DE SEGURIDAD','CLP',14677895.10,'10','2016-07-20','2016-09-16',12,'No','Orden de Servicio',0.00,'1',0.00,'Cotizaciones','Nacional','Si','Si',207,570,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','Precios Unitarios Mes','CLP','5',NULL,NULL,51,'Informada','Normal',1),(578,284,'OS2016-062','SOPORTE DE DOPPELMAYR PARA WORKSHOP MAYO 2016 (VANCOUVER)','EUR',3325.40,'11','2016-05-10','2016-05-12',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Extranjero','No','No',201,556,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(579,285,'OS2016-063','CURSO INGLES','CLP',8640000.00,'10','2016-08-01','2016-12-31',1,'No','Orden de Servicio',0.00,'1',0.00,'Cotizaciones','Nacional','No','No',161,451,21,NULL,NULL,'Abril revsisaer estatus',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(580,286,'OS2016-064','APOYO DE INGENIERIA CIRCUITO DE CONMINUCION','USD',97000.00,'12','2016-07-18','2016-09-30',1,'OS2016-064 Metso','Orden de Servicio',0.00,'1',0.00,'Directa','Extranjero','No','No',188,567,21,NULL,NULL,'Preg EDP','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(581,287,'OS2016-065','REVISION Y ANALISIS DE CIRCUITOS DE MOLIENDA','USD',40000.00,'12','2016-07-18','2016-09-30',1,'OS2016-065 Amipro','Orden de Servicio',0.00,'1',0.00,'Directa','Extranjero','No','No',188,549,21,NULL,NULL,'Preg EDP',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(582,288,'OS2016-066','SOPORTE CONVEYANCE TOS','EUR',26972.00,'11','2016-08-01','2016-09-15',1,'OS2016-066 Doppelmayr','Orden de Servicio',0.00,'1',0.00,'Directa','Extranjero','No','No',201,556,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(583,289,'OS2016-067','ESTUDIO CONCEPTUAL DE SISTEMA DE TRANSPORTE DE MINERAL','USD',50000.00,'11','2016-08-01','2016-09-15',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Extranjero','No','No',201,554,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(584,290,'OS2016-068','ARRIENDO DE BODEGA FAEZ 1058, VALLENAR.','UF',290.00,'7','2016-08-01','2016-12-31',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Local','No','No',169,564,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(585,291,'OS2016-069','ARRIENDO DE BODEGA SARGENTO ALDEA 460, VALLENAR.','UF',184.00,'7','2016-08-01','2016-12-31',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Local','No','No',169,563,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(586,292,'OS2016-070','ARRIENDO DE OFICINA Y <NAME> EN, BRASIL 308, VALLENAR.','CLP',7366655.00,'7','2016-08-01','2016-12-31',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Local','No','No',170,551,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(587,293,'OS2016-071','<NAME>','UF',140.00,'7','2016-08-01','2016-12-31',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Local','No','No',170,562,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(588,294,'OS2016-072','<NAME>','UF',57.50,'7','2016-08-01','2016-12-31',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Local','No','No',170,561,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(589,295,'OS2016-073','PROJECT NUEVAUNION FLOTATION WORKSHOP SUPPORT','CAD',5800.00,'11','2016-08-16','2016-08-30',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Extranjero','No','No',188,586,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(590,296,'OS2016-074','ARRIENDO LOCAL PARA INDUCCIÓN PERSONAL LINEA BASE KP','CLP',935000.00,'11','2016-09-13','2016-09-13',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',161,602,21,NULL,NULL,'revisar si se realizó',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(591,297,'OS2016-075','CAPEX AND OPEX UPDATE OF EL MORRO BC PROJECT','USD',16234.00,'11','2016-08-11','2016-08-26',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Extranjero','No','No',202,588,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(592,298,'OS2016-076','SERVICIO INTERPRETACIÓN SIMULTÁNEA WORKSHOP EIA','CLP',1360000.00,'11','2016-08-18','2016-08-19',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',161,589,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(593,299,'OS2016-077','PERTINENCIA SONDAJES LA FORTUNA 2018','UF',142.74,'11','2016-07-15','2016-08-30',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',207,476,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(594,300,'OS2016-078','ARRIENDO CAMIONETAS EL MORRO 2016','UF',995.40,'12','2016-08-16','2016-12-31',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',169,492,17,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(595,301,'OS2016-079','MANTENCIÓN GENERADOR OLYMPIAN GEP65-11','CLP',2555102.00,'11','2016-08-23','2016-08-31',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',169,597,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(596,302,'OS2016-080','SERVICIO CORTE TESTIGO SONDAJES LOS QUIJOS','CLP',1774780.00,'11','2016-08-25','2016-09-10',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',207,598,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(597,47,'SC-278','ASESORIA ESPECIALIZADA PERMISOS CAMPAMENTO EL MORRO','CLP',1360000.00,'11','2016-09-16','2017-02-15',1,'No','Contrato',0.00,'1',0.00,'Directa','Nacional','Si','No',207,601,17,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',3),(598,48,'SC-279','SERVICIO CAMPAMENTO EL PINGO','CLP',34265000.00,'10','2016-09-16','2016-12-31',8,'No','Contrato',0.00,'1',0.00,'Directa','Local','Si','Si',169,523,21,'2016-09-15','2016-09-01','','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,15,'Informada','Normal',4),(599,303,'OS2016-081','SERVICIOS DE INGENIERÍA PARA EL COSTEO DE SOLUCIONES DE TRANSMISIÓN PARA NUEVAUNIÓN','UF',515.00,'11','2016-09-16','2016-10-16',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',189,603,21,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(600,304,'OS2016-082','PREPARACIÓN PSU LICEO ALTO DEL CARMEN','CLP',11574998.00,'11','2016-09-12','2016-11-12',1,'No','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',198,604,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(601,NULL,'OS2016-083','<NAME>','CLP',8330000.00,'11','2016-11-11','2016-11-20',1,'','Orden de Servicio',0.00,'',0.00,'Directa','Nacional','Si','No',198,605,21,'2016-10-05','2016-10-01','',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(602,NULL,'OS2016-084','APOYO A DESARROLLO PLAN CONTRACTUAL','UF',648.00,'12','2016-10-19','2016-01-19',1,'','Orden de Servicio',0.00,'',0.00,'Directa','Nacional','No','No',193,606,21,'2016-10-14','2016-10-14','',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(603,NULL,'SC-280','SERVICIO ALIMENTACION CAMPANA SONDAJE LA FORTUNA','CLP',794118279.00,'10','2017-02-16','2017-07-31',8,'','Contrato',0.00,'1',0.00,'Licitación','Local','Si','Si',207,568,17,'2017-02-13','2016-10-15','VER TEMA SEGURO, CENTRO COSTO NUEVO 3351','',NULL,NULL,'',NULL,NULL,'IVA','','Precios Unitarios','CLP','',NULL,NULL,33,'Informada','Normal',3),(604,NULL,'SC-281','SONDAJE LA FORTUNA 2017','CLP',2342728572.00,'10','2017-03-06','2017-06-13',18,'','Contrato',0.00,'1',0.00,'Licitación','Nacional','Si','Si',207,475,17,'2017-01-26','2016-10-15','ACTIVAR SEGURO MORRO','',NULL,NULL,'',NULL,NULL,'IVA','','Precios Unitarios','CLP','',NULL,NULL,16,'Informada','Normal',3),(605,NULL,'SC-282','DISEÑO GEOTECNICO DE OPEN PIT, VERTEDERO E HIDROGEOLOGICO','USD',913043.00,'10','2016-12-20','2017-09-30',19,'','Contrato',0.00,'1',0.00,'Directa','Nacional','Si','Si',212,638,17,'2017-01-16','2016-10-15','','',NULL,NULL,'',NULL,NULL,'IVA','','Horas Hombre','CLP','5',NULL,NULL,24,'Informada','Normal',3),(606,NULL,'OS2016-085','DISEÑO DE BOTADEROS Y STOCKPILES PARA LA FORTUNA Y RELINCHO','USD',3250.00,'11','2016-10-16','2016-10-21',1,'','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',202,607,21,'2016-10-16','2016-10-16','',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(607,NULL,'OS2016-086','REEMPLAZO ASISTENTE GERENCIA LORENA RIVEROS','CLP',1746000.00,'11','2016-09-14','2016-10-07',1,'','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',161,507,21,'2016-10-07','2016-10-07','',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(608,NULL,'OS2016-087','TRADUCCIÓN SIMULTÁNEA <NAME> OCTUBRE 2016','CLP',1385320.00,'11','2016-10-25','2016-10-27',1,'','Orden de Servicio',0.00,'1',1385320.00,'Directa','Nacional','No','No',199,608,21,'2016-10-25','2016-10-20','',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(609,NULL,'OS2016-088','SERVICIO DE COMUNICACIÓN SATELITAL CAMP EL PINGO','USD',32812.00,'10','2016-11-01','2018-10-31',1,'','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',164,609,21,'2016-10-25','2016-10-20','','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(610,NULL,'OS2016-089','CONTROL DE PLAGA OFICINA, BODEGA Y CASAS DE HUÉSPEDES','CLP',807326.00,'11','2016-08-01','2016-08-18',1,'','Orden de Servicio',0.00,'1',807326.00,'Directa','Nacional','Si','No',170,610,21,'2016-10-20','2016-10-15','',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(611,NULL,'SC-284','SERVICIO DE VIGILANCIA CAMPAÑA SONDAJE LA FORTUNA','CLP',44390188.00,'10','2017-03-06','2017-06-13',8,'','Contrato',0.00,'1',0.00,'Licitación','Nacional','Si','Si',207,649,17,'2017-02-22','2016-10-15','Aplicar seguro','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,71,'Calculada','Normal',4),(612,NULL,'SC-285','SERVICIO DE REHABILITACIÓN CAMPAMENTO LA FORTUNA','CLP',332631660.00,'12','2016-11-25','2017-01-15',1,'','Contrato',0.00,'1',0.00,'Directa','Nacional','Si','Si',207,642,17,'2017-01-12','2016-10-15','Fechas y Montos provisorios Revisar','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',4),(613,NULL,'OS2016-091','CONSTRUCCIÓN CAFETERÍA OFICINA VALLENAR','CLP',4820000.00,'13','2016-11-07','2016-12-07',1,'','Orden de Servicio',0.00,'1',0.00,'Cotizaciones','Local','Si','Si',170,612,21,'2016-11-08','2016-10-28','',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(614,NULL,'OS2016-093','ESTUDIO PARA DESARROLLO PRODUCTIVO PROV HUASCO','CLP',45000000.00,'11','2016-11-27','2017-04-28',1,'','Orden de Servicio',0.00,'1',0.00,'Cotizaciones','Nacional','Si','No',198,613,21,NULL,'2016-11-14','',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(615,NULL,'OS2016-094','PRUEBAS DE COMPRESIÓN EN LABORATORIO','CAD',23688.00,'10','2016-11-21','2016-12-05',1,'','Orden de Servicio',0.00,'1',0.00,'Directa','Extranjero','No','No',188,614,21,NULL,'2016-11-29','',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(616,NULL,'SC-293','INSTALACIONES SANITARIAS CAMPAMENTO LA FORTUNA','CLP',0.00,'15','2016-11-25','2017-01-15',1,'','Contrato',0.00,'1',0.00,'Licitación','Nacional','Si','Si',207,451,17,NULL,'2016-11-11','Fechas provisorias Corregir',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',4),(617,NULL,'SC-294','HABILITACIÓN INSTALACIONES DE GAS CAMPAMENTO LA FORTUNA','CLP',0.00,'15','2016-11-25','2017-01-15',1,'','Contrato',0.00,'1',0.00,'Licitación','Nacional','Si','Si',207,451,17,NULL,'2016-11-11','Fechas provisorias Corregir',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',4),(618,NULL,'SC-297','HABILITACIÓN ESTACIÓN DE COMBUSTIBLES CAMPAMENTO LA FORTUNA','CLP',0.00,'3','2016-11-25','2017-01-15',1,'','Contrato',0.00,'1',0.00,'Licitación','Nacional','Si','Si',207,451,17,NULL,'2016-11-11','Fechas provisorias Corregir',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',4),(619,NULL,'OS2016-095','INSTALACIÓN STAND FOREDE 2016','CLP',805000.00,'11','2016-11-23','2016-11-25',1,'','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',197,615,21,'2016-11-21','2016-11-15','',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(620,NULL,'OS2016-096','AUSPICIO FORADE 2016','CLP',2500000.00,'11','2016-11-23','2016-11-28',1,'','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',197,616,21,'2016-11-21','2016-11-07','ver si es pago unico','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(621,NULL,'OS2016-092','COMPRA DE INSUMOS VETERINARIOS','CLP',4201683.00,'11','2016-11-14','2016-11-21',1,'','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',198,617,21,'2016-11-21','2016-11-14','','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(622,NULL,'OS2016-097','EVALUACIONES PSICOLÓGICAS','UF',13.20,'10','2016-11-01','2016-12-31',1,'','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',161,619,21,'2016-11-22','2016-11-20','','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(623,NULL,'SC-295','ASESORIA EN FINANZAS PROYECTO NUEVAUNIÓN','CLP',20070000.00,'11','2016-11-21','2017-02-21',13,'','Contrato',0.00,'1',0.00,'Directa','Nacional','No','No',167,620,21,'2016-11-17','2016-11-12','','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,3,'Calculada','Normal',2),(624,NULL,'OS2016-098','PACKED BED COMPRESSION TEST','USD',66000.00,'10','2016-11-21','2017-12-05',22,'','Orden de Servicio',0.00,'1',0.00,'Directa','Extranjero','No','No',188,621,21,'2016-11-30','2016-11-21','ver fechas','',NULL,NULL,'',NULL,NULL,'IVA','','PU por entregarles','CLP','',NULL,NULL,53,'Informada','Normal',1),(625,NULL,'OS2016-101','SERVICIO DE AMBULANCIA','CLP',1276750.00,'15','2016-12-03','2016-12-10',1,'','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','Si','Si',203,622,21,'2016-11-02','2016-11-02','','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(626,NULL,'SC-286A','NUEVAUNIÓN PFS AND EIA SUPPORT ON-SHORE SERVICES PROVIDER','CLP',1982012196.00,'10','2016-10-17','2017-12-31',6,'','Contrato',0.00,'1',0.00,'Directa','Nacional','No','No',192,547,21,'2016-11-30','2016-10-01','FALTA FECHAS CTTOS, CENTRO COSTO y SEGURO (N)','',NULL,NULL,'',NULL,NULL,'NO_IVA','','','CLP','',NULL,NULL,17,'Informada','Normal',5),(627,NULL,'SC-287','WATER PIPILINES (ADM FLUOR)','CLP',475225059.00,'10','2017-01-24','2017-07-31',6,'','Contrato',0.00,'1',0.00,'Licitación','Nacional','No','No',201,493,21,'2017-01-18','2016-12-28','FALTA CENTRO COSTO','',NULL,NULL,'',NULL,NULL,'IVA','','PU por entregarles','CLP','',NULL,NULL,17,'Informada','Normal',5),(628,NULL,'SC-288','DESALINATION PLANT','CLP',331400000.00,'10','2017-01-03','2017-08-31',6,'','Contrato',0.00,'1',0.00,'Licitación','Nacional','No','No',201,665,21,NULL,NULL,'REVISAR FECHAS, VALOR Y CENTRO COSTO (LICIT)','',NULL,NULL,'',NULL,NULL,'IVA','','PU por entregarles','CLP','',NULL,NULL,29,'Informada','Normal',5),(629,NULL,'SC-289','TAILING MANAGEMENT FACILITIES DESIGN (ADM FLUOR)','CLP',343615354.00,'10','2017-03-01','2017-08-31',6,'','Contrato',0.00,'1',0.00,'Licitación','Nacional','No','No',201,658,21,'2017-03-09',NULL,'REVISAR FECHAS, VALOR Y CENTRO COSTO (LICIT)','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','5',NULL,NULL,17,'Informada','Normal',5),(630,NULL,'SC-290','OFFSITE POWER SUPPLY & TRANSMISSION (ADM FLUOR)','CLP',156223114.00,'10','2017-01-25','2017-07-31',21,'','Contrato',0.00,'1',0.00,'Licitación','Nacional','No','No',201,639,21,'2017-01-25','2016-12-01','FALTA CENTRO COSTO (LICIT)','',NULL,NULL,'',NULL,NULL,'IVA','','PU por entregarles','CLP','5',NULL,NULL,17,'Informada','Normal',5),(631,NULL,'SC-291','OFFSITE ROADS (ADM FLUOR)','CLP',308124520.00,'10','2017-01-31','2017-07-27',6,'','Contrato',0.00,'1',0.00,'Licitación','Nacional','No','No',201,643,21,'2017-02-02','2016-11-01','REVISAR FECHAS, VALOR Y CENTRO COSTO (LICIT) CTOS 685 51-11-3356','',NULL,NULL,'',NULL,NULL,'IVA','','PU por entregarles','CLP','5',NULL,NULL,17,'Informada','Normal',5),(632,NULL,'SC-292','PERMANENT CAMPS, OXYGEN PLANT','CLP',0.00,'4','2017-01-03','2017-08-31',1,'','Contrato',0.00,'1',0.00,'Licitación','Nacional','No','No',157,451,21,NULL,NULL,'REVISAR FECHAS, VALOR Y CENTRO COSTO (LICIT)',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(633,NULL,'SC-296','AGUAS CHAÑAR SERVICIO HABILITACIÓN INST SANITARIAS','CLP',0.00,'15','2016-01-03','2017-02-28',1,'','Contrato',0.00,'1',0.00,'Directa','Nacional','Si','Si',207,451,17,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',2),(634,NULL,'SC-286B','NUEVAUNIÓN PFS AND EIA SUPPORT OFF-SHORE SERVICES PROVIDER','CAD',9057472.00,'10','2016-10-17','2017-09-30',6,'','Contrato',0.00,'1',0.00,'Directa','Extranjero','No','No',192,576,21,'2016-12-15','2016-09-01','Revisar aprobación de contrato','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,34,'Informada','Normal',5),(635,NULL,'CV2016-002','CONVENIO EMPRENDE JOVEN','CLP',25000000.00,'11','2016-09-30','2016-12-31',1,'','Convenio',0.00,'1',0.00,'Directa','Nacional','No','No',198,623,21,'2016-09-30','2016-08-09','','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(636,NULL,'CV2016-003','CONVENIO FUNDACIÓN CHILE','CLP',64000000.00,'11','2016-06-30','2017-06-30',1,'','Convenio',0.00,'1',0.00,'Directa','Nacional','No','No',198,625,21,'2016-09-30','2016-09-30','preguntara si es local inv','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(637,NULL,'CV2016-004','CONVENIO MUNICIPALIDAD VALLENAR','CLP',7000000.00,'11','2016-09-23','2016-12-31',1,'','Convenio',0.00,'1',0.00,'Directa','Local','No','No',198,626,21,'2016-09-23','2016-09-23','','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(638,NULL,'CV2016-005','CONVENIO MUNICIPALIDAD ALTO DEL CARMEN','CLP',7000000.00,'11','2016-09-23','2016-12-31',1,'','Convenio',0.00,'1',0.00,'Directa','Local','No','No',198,627,21,'2016-09-23','2016-09-23','','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(639,NULL,'CV2016-006','CONVENIO MUNICIPALIDAD HUASCO PROMOCION SALUD','CLP',7000000.00,'11','2016-09-23','2016-12-31',1,'','Convenio',0.00,'1',0.00,'Directa','Local','No','No',198,628,21,'2016-09-23','2016-09-23','','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(640,NULL,'CV2016-007','CONVENIO MUNICIPALIDAD ALTO DEL CARMEN - PRG NIVELACION ESTUDIOS','CLP',10000000.00,'11','2016-09-30','2017-01-01',1,'','Convenio',0.00,'1',0.00,'Directa','Local','No','No',198,627,21,'2016-11-21','2016-11-10','','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(641,NULL,'CV2016-008','CONVENIO MUNICIPALIDAD VALLENAR - APOYO ACTIVIDAD PRODUCTIVA','CLP',0.00,'11','2016-11-01','2017-03-31',1,'','Convenio',0.00,'1',0.00,'Directa','Nacional','No','No',198,626,21,'2016-10-16','2016-10-16','Se compromete la compra a Proveedor AGROMAIPO OCNª XXXX para Programa de Municipalidad','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(642,NULL,'CV2016-009','CONVENIO MUNICIPALIDAD ALTO DEL CARMEN- PRODESAL','CLP',10000000.00,'11','2016-11-01','2017-03-31',1,'','Convenio',0.00,'1',0.00,'Directa','Local','No','No',198,627,21,'2016-11-21','2016-11-10','','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(643,NULL,'OS2016-105','ALMUERZO FIN DE AÑO 2016','CLP',10000000.00,'11','2016-12-16','2016-12-16',1,'','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',161,629,21,'2016-12-12','2016-12-12','',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(644,NULL,'OS2016-102','SERVICIO INGENIERO EN COMPUTACION','UF',111.67,'11','2016-12-05','2016-12-05',1,'','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',164,630,21,'2016-12-12','2016-12-05','',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(645,NULL,'OS2016-103','PROYECTO FIESTA ARTE RIO','CLP',35000000.00,'11','2016-11-15','2016-07-31',1,'','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',198,572,21,'2016-12-19','2016-12-10','',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(646,NULL,'OS2016-108','ASESORIA LEGAL EXTERNA DERECHOS HUMANOS','USD',6000.00,'11','2016-08-15','2016-12-31',1,'','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',185,631,21,'2016-12-21','2016-12-19','',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(647,NULL,'OS2016-106','SEMINARIO DE PLANIFICACIÓN URBANA SUSTENTABLE','CLP',11633426.00,'11','2016-12-13','2016-12-13',1,'','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',198,632,21,'2016-12-21','2016-12-15','',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(648,NULL,'OS2016-109','ESTUDIO HIDROLOGICO PARA DISEÑO INFRAESTRUCTURA PROY NU','UF',2800.00,'10','2016-12-27','2017-02-24',21,'','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','Si','No',189,633,21,'2016-12-23','2016-12-23','','',NULL,NULL,'',NULL,NULL,'IVA','','PU por entregarles','CLP','',NULL,NULL,35,'Informada','Normal',3),(649,NULL,'SC-300','AUTONOMIA ESTUDIO DE PREFACTIBILIDAD','USD',59967.50,'13','2017-01-17','2017-04-16',1,'','Contrato',0.00,'1',0.00,'Directa','Nacional','No','No',202,634,21,'2016-12-23','2016-12-10','','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',2),(650,NULL,'SC-299','MAPEO SUPERFICIAL DISTRITO EL MORRO','CLP',29908870.00,'11','2017-01-04','2017-03-15',1,'','Contrato',0.00,'1',0.00,'Directa','Nacional','Si','Si',180,635,17,'2017-01-10','2016-12-01','','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',3),(651,NULL,'OS2017-002','SERVICIO DE ASESORIA METEOROLOGIA','CLP',4400000.00,'10','2017-01-16','2017-06-30',1,'','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',207,636,21,'2017-01-12','2017-01-10','','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(652,NULL,'OS2017-003','ESTUDIO DE FLUJOS DE POTENCIA DE SOLUCIONES DE TRANSMISIÓN PARA NU','UF',244.25,'13','2017-01-17','2017-02-03',1,'','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',201,603,21,'2017-01-18','2017-01-17','CTTO URGENTE',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(653,NULL,'OS2017-001','SERVICIO DE ALOJAMIENTO Y ALIMENTACIÓN SECTOR CHANCHOQUIN','CLP',12000000.00,'10','2016-12-01','2017-12-31',1,'','Orden de Servicio',0.00,'1',0.00,'Directa','Local','No','No',203,637,21,'2017-01-17','2017-01-13','',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(654,NULL,'OS2017-004','SERVICIO DE HABILITACIÓN INST SANITARIAS CAMP LA FORTUNA','CLP',57038588.00,'11','2017-01-12','2017-02-15',18,'','Orden de Servicio',0.00,'1',0.00,'Directa','Local','Si','Si',207,585,21,'2017-01-18','2017-01-18','','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,13,'Informada','Normal',1),(655,NULL,'SC-304','APOYO A DESARROLLO PLAN CONTRACTUAL 2017','UF',4752.00,'10','2017-01-01','2017-12-31',5,'','Contrato',0.00,'1',0.00,'Directa','Nacional','No','No',193,606,21,'2017-01-11','2016-12-31','FALTA CENTRO COSTO (MIXTO)','',NULL,NULL,'',NULL,NULL,'IVA','','Precios Unitarios Mes','CLP','5',NULL,NULL,37,'Calculada','Normal',2),(656,NULL,'OS2016-107','ASESORIA COMUNICACIONAL ESTRATÉGICA','UF',1500.00,'10','2017-01-03','2017-12-31',1,'','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',197,640,21,'2017-01-25','2017-01-01','',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Informada','Normal',1),(657,NULL,'OS2017-005','RECOPILACIÓN EN TERRENO DATOS DUEÑOS PREDIOS FREIRINA-HUASCO','CLP',6000000.00,'11','2017-01-30','2017-02-10',1,'','Orden de Servicio',0.00,'1',0.00,'Directa','Local','Si','Si',199,641,21,'2017-01-27','2017-01-25','ACTIVAR SEGURO, FIRMAR ANEXOS',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(658,NULL,'SC-307','SERVICIO CONTROL LABORAL, CONTROL ACCESO Y AUDITORIAS DE CIERRE','UF',1204.00,'10','2017-02-15','2018-02-14',12,'','Contrato',0.00,'1',0.00,'Cotizaciones','Nacional','No','No',207,644,21,'2017-02-03','2016-11-01','TRES CENTRO DE COSTOS? FEB 17','',NULL,NULL,'',NULL,NULL,'IVA','','PU por mes','CLP','5',NULL,NULL,47,'Informada','Normal',4),(659,NULL,'OS2017-007','APOYO EN REVISIÓN DE BASE DATOS Y ORDENAMIENTO DOCUMENTOS RRHH','CLP',2000016.00,'11','2017-01-13','2017-02-24',1,'','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',161,645,21,'2017-02-13','2017-02-01','MIXTA EN CTTOS',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(660,NULL,'SC-306','TECHNICAL SERVICES AGREEMENT FINANCIAL','USD',250000.00,'10','2017-01-01','2017-06-30',1,'','Contrato',0.00,'1',0.00,'Directa','Extranjero','No','No',167,646,21,'2017-02-15','2017-01-15','Dice Sondaje Centro Costo ? centro costo nuevo 3352 ?','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',2),(661,NULL,'OS2017-009','COMUNICACIÓN RADIAL CAMPAÑA SONDAJE LA FORTUNA 2017','CLP',55100000.00,'10','2017-02-28','2018-02-28',23,'','Orden de Servicio',0.00,'1',0.00,'Directa','Local','Si','Si',164,571,21,'2017-02-21','2017-02-17','SEGURO 2017','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,72,'Calculada','Normal',1),(662,NULL,'OS2017-010','CONSULTORIA ANALISIS SISTEMA TURNOS Y ESTIMACION DOTACION','USD',19800.00,'12','2017-02-20','2017-03-20',1,'','Orden de Servicio',0.00,'1',0.00,'DIrecta','Nacional','No','No',202,648,21,'2017-02-21','2017-02-20','',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(663,NULL,'SC-309','SERVICIO DE ARRIENDO CAMIONETAS 2017','UF',5136.36,'10','2017-01-01','2017-12-31',8,'','Contrato',0.00,'1',0.00,'Directa','Nacional','No','No',169,492,21,'2017-02-22','2017-01-05','','',NULL,NULL,'',NULL,NULL,'IVA','','Precios Unitarios Mes','CLP','',NULL,NULL,23,'Calculada','Normal',2),(665,NULL,'OS2017-013','EJECUCIÓN DE CALICATAS PROYECTO NUEVAUNIÓN','CLP',18483000.00,'11','2017-03-08','2017-03-23',1,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','Si','Si',189,651,21,'2017-03-23','2017-02-15','',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(666,NULL,'OS2017-006','SUMINISTRO Y TRANSPORTE DE AGUA POTABLE','CLP',7500000.00,'10','2017-01-23','2017-12-31',8,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','Si','No',169,520,21,'2017-03-02','2017-03-02','','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,54,'Informada','Normal',1),(667,NULL,'OS2017-014','SERVICIO DE PREPARACIÓN DE PLATAFORMA SONDAJE LA FORTUNA','CLP',33847555.00,'11','2017-03-03','2017-03-04',1,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Local','Si','Si',207,523,21,'2017-03-03','2017-02-25','',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(668,NULL,'OS2017-012','PREPARACIÓN DE MUESTRAS Y ANALISIS QUIMICOS SONDJE','USD',14820.00,'10','2017-04-22','2017-05-15',1,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Extranjero','No','No',180,652,21,'2017-03-01','2017-02-25','','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Informada','Normal',1),(669,NULL,'OS2017-011','REHABILITACIÓN DE CACHIMBAS PARA SONDAJE LA FORTUNA','CLP',5819418.00,'12','2017-03-05','2017-03-21',1,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',207,653,21,'2017-03-06','2017-02-25','','',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','','',NULL,1,'Calculada','Normal',1),(670,NULL,'SC-319','ELABORACIÓN CAPÍTULO RIESG. NATURALES EIA','UF',6130.00,'10','2017-03-06','2017-11-30',10,NULL,'Contrato',0.00,'1',0.00,'Directa','Nacional','Si','Si',203,654,21,'2017-03-09','2017-02-20','','',NULL,NULL,'',NULL,NULL,'IVA','','PU por entregarles','CLP','5',NULL,NULL,58,'Informada','Normal',4),(671,NULL,'OS2017-016','ARRIENDO DE GENERADORES 635 KVA','UF',1665.00,'10','2017-02-20','2017-03-16',1,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',207,655,21,'2017-03-10','2017-03-05','',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(672,NULL,'OS2017-015','ASESORÍA EN RECURSOS HÍDRICOS','UF',1320.00,'10','2017-02-27','2017-12-31',11,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','Si','Si',203,656,21,'2017-03-10','2017-03-09','','',NULL,NULL,'',NULL,NULL,'IVA','','PU por entregarles','CLP','5',NULL,NULL,55,'Informada','Normal',1),(673,NULL,'SC-298','INGENIERÍA DE PRE-FACTIBILIDAD MANEJO DE RESIDUOS (ADM FLUOR)','CLP',187949242.00,'10','2017-02-16','2017-07-21',6,NULL,'Contrato',0.00,'1',0.00,'Directa','Nacional','No','No',201,657,21,'2017-03-10',NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','PU por entregarles','CLP','5',NULL,NULL,17,'Informada','Normal',5),(674,NULL,'SC-303','SERVICIO DE TRASLADO, CORTE Y ENVÍO DE MUESTRAS SONDAJES','CLP',195967891.00,'10','2017-03-10','2017-08-31',16,NULL,'Contrato',0.00,'1',0.00,'Directa','Nacional','Si','No',207,598,17,'2017-03-07',NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','Precios Unitarios','CLP','5',NULL,NULL,36,'Informada','Normal',3),(675,NULL,'SC-310','SERVICIO POLICLINICO CAMPAMENTO LA FORTUNA','UF',7564.00,'10','2017-04-12','2017-11-09',8,NULL,'Contrato',0.00,'1',0.00,'Directa','Nacional','Si','Si',207,544,17,'2017-03-25',NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','Precios Unitarios Mes','CLP','5',NULL,NULL,39,'Calculada','Normal',4),(676,NULL,'OS2017-018','DISEÑO E IMPLEMENTACIÓN SITIO WEB PROYECTO NUEVAUNIÓN','UF',280.00,'10','2017-02-27','2017-12-31',1,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',197,659,21,'2017-03-31','2017-03-23','',NULL,NULL,NULL,NULL,NULL,NULL,'IVA',NULL,NULL,'CLP',NULL,NULL,NULL,1,'Calculada','Normal',1),(679,NULL,'OS2017-022','APOYO EN PROCESO LICITACIÓN FEASIBILITY STUDY NU','USD',115636.00,'10','2017-04-18','2017-10-18',1,'','Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',193,606,21,'2017-04-13','2017-04-06','','El servicio consiste en un apoyo para desarrollar el proceso de Licitación para el FS del Proyecto NU, generando la documentación, el segimiento y apoyo para todas las etapas del proceso licitatorio',NULL,NULL,'',NULL,NULL,'IVA','','','CLP','',NULL,NULL,1,'Calculada','Normal',1),(680,NULL,'SC-329','SERVICIO ASESORIA CONTRACTUAL','UF',618.00,'10','2017-04-18','2017-07-18',5,NULL,'Contrato',0.00,'1',0.00,'Directa','Nacional','No','No',193,660,21,'2017-04-17','2017-04-13','','Este servicio conisiste en la Administración y Asesoria Contractual para Contratos del Proyecto NuevaUnión',NULL,NULL,'Carta Oferta de Servicio Contractual NU',NULL,'2017-04-01','IVA','','a precio unitario','CLP','',NULL,NULL,2,'Calculada','Normal',1),(683,NULL,'SC-330','ARRIENDO CASA SR. PATRICIO SEPULVEDA S.','UF',180.00,'7','2017-02-15','2017-08-15',12,'','Contrato',0.00,'1',0.00,'Directa','Nacional','No','No',180,661,21,NULL,NULL,'','Arriendo de Casa Ubicada en Calle Arturo Prat 2870 en Vallenar',NULL,NULL,'',NULL,'2017-02-15','IVA','','PU por mes','CLP','','',NULL,4,'Calculada','Normal',2),(684,NULL,'SC-305','DESIGN AND COST ROPE CONVEYANCE SYSTEM','EUR',450000.00,'10','2017-01-30','2017-05-05',6,NULL,'Contrato',0.00,'1',0.00,'Directa','Extranjero','No','No',201,556,21,'2017-02-07',NULL,'','Design and cost rope conveyance System',NULL,NULL,'',NULL,NULL,'NO_IVA','','PU por entregarles','CLP','',NULL,NULL,5,'Informada','Normal',2),(685,NULL,'SC-318','PREPARACIÓN DE MUESTRAS Y ANÁLISIS QUÍMICOS CAMP SONDAJE LA FORTUNA','USD',396455.45,'10','2017-04-10','2017-10-31',16,NULL,'Contrato',0.00,'1',0.00,'Directa','Nacional','No','Si',207,662,21,'2017-04-07',NULL,'','PREPARACIÓN DE MUESTRAS Y ANÁLISIS QUÍMICOS CAMP SONDAJE LA FORTUNA',NULL,NULL,'COT LSM-012R1-17',NULL,'2017-02-17','IVA','','Precios Unitarios',NULL,'',NULL,NULL,73,'Informada','Normal',3),(686,NULL,'SC-331','ARRIENDO DE CASA EN TUNA 300 VALLENAR','CLP',10800000.00,'7','2017-04-01','2018-04-01',17,'','Contrato',0.00,'1',0.00,'Directa','Nacional','No','No',170,663,21,'2017-03-23',NULL,'','Arriendo de Casa en Tuna 300 Vallenar',NULL,NULL,'',NULL,NULL,'IVA','','PU por mes','CLP','','',NULL,11,'Calculada','Normal',2),(687,NULL,'SC-327','SUPERVISIÓN PERFORACIÓN POZOS DE MONITOREO E INFORME CRIOFORMAS','CLP',53520000.00,'10','2017-04-17','2017-09-17',11,NULL,'Contrato',0.00,'1',0.00,'Directa','Nacional','Si','Si',203,664,21,'2017-04-18',NULL,'','',NULL,NULL,'Oferta LB Geologia y Sup Perforación',NULL,'2017-03-24','NO_IVA','','Precios Unitarios','CLP','5',NULL,NULL,20,'Calculada','Normal',4),(688,NULL,'SC-320','SERVICIO TRANSPORTE PERSONAL LA FORTUNA','CLP',57833284.00,'10','2017-04-03','2017-09-02',8,NULL,'Contrato',0.00,'1',0.00,'Directa','Nacional','Si','Si',207,666,17,NULL,NULL,'','SERVICIO TRANSPORTE DE PASAJEROS CAMPAÑA LA FORTUNA',NULL,NULL,'',NULL,NULL,'NO_IVA','','Precios Unitarios Mes','CLP','5',NULL,NULL,57,'Calculada','Normal',4),(689,NULL,'SC-323','ASESORÍA PLAN DE REASENTAMIENTO COMUNIDADES HUMANAS NU','UF',11758.00,'10','2017-03-15','2018-03-31',20,NULL,'Contrato',0.00,'1',0.00,'Directa','Nacional','Si','Si',211,667,21,'2017-03-15','2017-03-10','','Asesoría Plan de Reasentamiento Comunidades humanas NU',NULL,NULL,'',NULL,NULL,'IVA','','Precio Unitario por Entregables','CLP','5',NULL,NULL,56,'Calculada','Normal',3),(691,NULL,'SC-316','SERVICIO MEDICIÓN DE TRAYECTORIA','CLP',140080000.00,'10','2017-03-27','2017-09-30',19,NULL,'Contrato',0.00,'1',0.00,'Directa','Nacional','Si','Si',207,669,17,'2017-03-24',NULL,'','Servicio Medición de Trayectoria Campaña la Fortuna',NULL,NULL,'',NULL,NULL,'IVA','','Precio Unitario','CLP','5',NULL,NULL,59,'Informada','Normal',4),(692,NULL,'SC-315','ASESORÍA REMEDIACIÓN DERRAME COMBUSTIBLE LA FORTUNA','UF',1620.00,'10','2017-03-06','2017-05-30',11,NULL,'Contrato',0.00,'1',0.00,'Directa','Nacional','Si','Si',203,670,17,NULL,NULL,'','Asesoría Remedación Derrame Combustible La Fortuna',NULL,NULL,'',NULL,NULL,'IVA','','Precio Unitario por Entregables','CLP','5',NULL,NULL,60,'Informada','Normal',4),(693,NULL,'SC-313','TECHNICAL SERVICES AGREEMENT (GRP DIRK VAN ZYL)','USD',246900.00,'10','2017-03-01','2019-12-31',19,NULL,'Contrato',0.00,'1',0.00,'Directa','Extranjero','Si','No',212,671,21,NULL,NULL,'','TECHNICAL SERVICES AGREEMENT (GRP DIRK VAN ZYL)',NULL,NULL,'',NULL,'2017-01-15','NO_IVA','','Precio Unitario por Entregables','CLP','',NULL,NULL,1,'Calculada','Normal',4),(694,NULL,'SC-312','TECHNICAL SERVCE (GRP MINE WATERMC PTY LTDA)','USD',271200.00,'10','2017-03-01','2019-12-31',19,NULL,'Contrato',0.00,'1',0.00,'Directa','Extranjero','Si','No',212,672,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'IVA','','Precio Unitario por Entregables','CLP','',NULL,NULL,1,'Calculada','Normal',4),(695,NULL,'SC-311','TECHNICAL SERVCE (GRP MARC RUEST)','AUD',214560.00,'10','2017-03-01','2017-12-31',1,NULL,'Contrato',0.00,'1',0.00,'Directa','Nacional','No','No',212,673,21,NULL,NULL,'','TECHNICAL SERVCE (Marc Ruest)',NULL,NULL,'',NULL,NULL,'IVA','','Precio Unitario por Entregables','CLP','',NULL,NULL,1,'Calculada','Normal',4),(696,NULL,'SC-308','TECHNICAL SERVICE LEITNER (AGUDIO)','EUR',165000.00,'10','2017-01-30','2017-04-28',22,NULL,'Contrato',0.00,'1',0.00,'Directa','Nacional','No','No',201,674,21,NULL,NULL,'','TECHNICAL SERVICE LEITNER (AGUDIO)',NULL,NULL,'',NULL,NULL,'IVA','','PU por entregarles','CLP','',NULL,NULL,1,'Calculada','Normal',2),(697,NULL,'OS2017-025','DISEÑO DE OPEN PIT (OPTIMIZACIÓN)','USD',33600.00,'10','2017-05-08','2017-12-31',1,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',213,675,21,'2017-08-05',NULL,'','Diseño de open pit (Optimización)',NULL,NULL,'',NULL,NULL,'IVA','','Horas hombre','CLP','',NULL,NULL,62,'Calculada','Normal',1),(698,NULL,'SC-335','SUMINISTRO Y TRANSPORTE DE AGUA POTABLE, SUCCIÓN Y RETIRO DE AGUAS SERVIDAS Y RETIRO DE RESIDUOS','CLP',142040132.00,'10','2017-03-13','2017-08-30',8,NULL,'Contrato',0.00,'1',0.00,'Directa','Nacional','Si','Si',207,585,17,NULL,'2017-05-05','','Sumintro de agua potable desde Vallenar a campamento La Fortuna, Succión y retiro de aguas servidas desde La Fortuna a Vallenar y Recambio de contenedores según requerimientos',NULL,13500000.00,'Oferta N° CN130301/17','2017-05-18','2017-03-21','IVA','Vallenar e Instalaciones de Proyecto NuevaUnión','Precio Unitario','CLP','5',NULL,NULL,63,'Informada','Normal',2),(699,NULL,'SC-324','CONTRATACIÓN DE COLABORADORES PARA PROYECTO NU','CLP',35405560.00,'10','2017-04-01','2017-12-31',12,NULL,'Contrato',0.00,'1',0.00,'Directa','Nacional','Si','Si',161,676,21,'2017-05-23','2017-05-20','','Contratación de Personal Transitorio Proyecto NU',NULL,NULL,'',NULL,NULL,'NO_IVA','Oficinas y Terreno dentro del Proyecto NU','Precio Unitario','CLP','5',NULL,NULL,64,'Calculada','Normal',2),(700,NULL,'OS2017-017','SERVICIO PREVENCION PLAGA','UF',205.20,'11','2017-01-01','2017-04-30',8,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','Si','No',169,498,21,'2017-05-10',NULL,'','Servicio de prevención y control de plagas Campamento Relincho y El Pingo',NULL,NULL,'1/5/2017',NULL,'2017-05-10','IVA','Instalaciones del Proyecto','Precio Unitario por mes','CLP','',NULL,NULL,1,'Calculada','Normal',1),(701,NULL,'SC-341','SERVICIO DE APOYO LEGAL CORPORATIVO','USD',115000.00,'10','2017-01-01','2017-12-31',15,NULL,'Contrato',0.00,'1',0.00,'Directa','Nacional','No','No',185,477,21,'2017-06-06','2017-05-25','','Apoyo legal en requerimientos relativos a la Sociedad, apoyo legal para servidumebres Lote B Jarilla y otros',NULL,NULL,'Propuesta CD N°C-0676920',NULL,'2017-05-12','IVA','Oficinas del consultor','Horas hombre','CLP','',NULL,NULL,1,'Calculada','Normal',2),(702,NULL,'OS2017-031','INFRAESTRUCTURE PROJECTS SUPPORTING MINE DEVELOPMENT','USD',50400.00,'10','2017-04-01','2017-09-30',16,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',167,677,21,'2017-06-08',NULL,'','',NULL,NULL,'Letter of Engagement (M. Gingles)',NULL,'2017-04-25','NO_IVA','Areas del Proyecto NuevaUnión','Precio Unitario','CLP','',NULL,NULL,74,'Calculada','Normal',1),(703,NULL,'SC-321','SERVICIO MANTENCION CAMINOS Y MOV TIERRA LA FORUNA','CLP',414022774.00,'10','2017-05-11','2017-09-30',18,NULL,'Contrato',0.00,'1',0.00,'Directa','Local','Si','Si',207,523,17,'2017-05-03',NULL,'','Mantención y apertura de Caminos pos eventos climáticos detraen la campaña se Sondaje Sector La Fortuna',NULL,NULL,'Oferta Rev3 Proceso Licitación SC-321',NULL,'2017-05-02','IVA','Instalaciones del Proyecto','Precios Unitarios','CLP','5',NULL,NULL,15,'Calculada','Normal',4),(704,NULL,'SC-332','REVISIÓN DEL OPEX DEL PROYECTO NUEVAUNIÓN','USD',795000.00,'10','2017-04-24','2017-06-24',25,NULL,'Contrato',0.00,'1',0.00,'Directa','Extranjero','No','No',167,679,21,'2017-05-01','2017-04-20','','Desarrollar la revisión del Opex del Proyecto Nuevaunión de acuerdo a oferta enviada en fecha 16/4/2017',NULL,NULL,'STATEMENT OF WORK','2017-05-01','2017-04-16','IVA','Oficinas de NuevaUnión','Precio Unitario por Entregables','CLP','',NULL,NULL,76,'Calculada','Normal',2),(705,NULL,'SC-336','CONTRATACIÓN DE PERSONAL TRANSITORIO PROYECTO NUEVAUNIÓN','CLP',259279381.00,'10','2017-04-01','2017-10-31',12,NULL,'Contrato',0.00,'1',0.00,'Directa','Nacional','Si','Si',161,570,21,'2017-04-01','2017-03-20','','Servicio de presta a disposición de personal de apoyo Proyecto Nuevaunión',NULL,NULL,'',NULL,NULL,'IVA','Instalaciones del Proyecto','Precios Unitarios','CLP','5',NULL,NULL,51,'Calculada','Normal',2),(706,NULL,'OS2017-035','ESTUDIO DE VALORES DE TERRENO EN 4 SECTORES DE LA CIUDAD DE VALLENAR','UF',113.20,'13','2017-04-30','2017-07-15',15,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',212,678,21,'2017-06-12',NULL,'','Se requiere estudio de terrenos en ciudad de Vallenar, de acuerdo a las siguiente etapas:\r\n1.- Análisis del Sector\r\n2.- Análisis del Mercado inmobiliario\r\n3.- Análisis de antecedentes',NULL,NULL,'Cotizacvión Estudio de Valores en 4 Sectores Vallenar',NULL,'2017-05-22','IVA','Oficinas del consultor','Precio Unitario','CLP','',NULL,NULL,75,'Calculada','Normal',2),(707,NULL,'OS2017-036','REVIEW OF THE PROCESSES AND SCOPE FOR THE FS CONTRACT','USD',25882.35,'10','2017-04-01','2017-12-31',5,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Extranjero','No','No',167,680,21,'2017-06-12','2017-05-29','','Review of the processes and scope for the FS Contract',NULL,NULL,'',NULL,'2017-05-25','NO_IVA','Oficinas del consultor','Precio Unitario','CLP','',NULL,NULL,77,'Calculada','Normal',1),(708,NULL,'OS2017-038','PREPARACIÓN PSU ALTO DEL CARMEN','CLP',15000000.00,'10','2017-06-01','2017-12-31',1,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Local','No','No',198,681,21,'2017-06-15',NULL,'','Apoyo pedagógico para estudiantes de la comuna de ALto del Carmen en los sectores de lenguaje y matemática.',NULL,NULL,'',NULL,NULL,'NO_IVA','Comuna de Alto del Carmen','Precio Unitario','CLP','',NULL,NULL,1,'Calculada','Normal',1),(709,NULL,'OS2017-040','OWNER\'S ENGINEER FOR THE PORT FACILITY OPERATIONS','USD',74708.00,'10','2017-03-24','2017-12-31',1,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Extranjero','No','No',214,682,21,'2017-06-15','2017-04-24','','',NULL,NULL,'Proposal for Owner\'s Engineer for the Port Facility Operations',NULL,'2017-03-24','NO_IVA','Oficinas del consultor','Horas hombre y Gastos Reembolsables','CLP','',NULL,NULL,1,'Calculada','Normal',1),(710,NULL,'OS2017-030','ENCUESTA PERCEPCIÓN USO CONCENTRADO PROYECTO NU','UF',667.00,'10','2017-05-09','2017-06-16',20,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','Si','No',197,557,21,'2017-06-15','2017-05-09','','Diseño, preparción e implementación de encuesta percepción uso de concentraducto Proyecto NU',NULL,NULL,'',NULL,NULL,'IVA','Areas del Proyecto NuevaUnión','Precio Unitario','CLP','',NULL,NULL,1,'Calculada','Regularización',1),(711,NULL,'OS2017-029','ASESORIA PARA LEVANTAMIENTO DE INSCRIPCIONES TITULARES VIGENTES','UF',450.00,'11','2017-04-30','2017-06-30',15,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',189,474,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'NO_IVA','Areas del Proyecto NuevaUnión','Precio Unitario','CLP','',NULL,NULL,9,'Calculada','Normal',1),(712,NULL,'OS2017-039','PROYECTO HUASCO ESCENCIAL: HISTORIA CONTEMPORANEA PROV HUASCO','CLP',8888888.89,'10','2017-01-01','2017-12-31',1,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Local','No','No',198,683,21,NULL,NULL,'','',NULL,NULL,'',NULL,NULL,'RET_Legal','Oficinas del consultor','Suma Alzada','CLP','',NULL,NULL,1,'Calculada','Regularización',1),(713,NULL,'OS2017-041','TRADUCCIÓN SECCIONES PFS y FS (W. Diaz)','CLP',2520000.00,'10','2017-05-26','2017-09-23',1,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',189,684,21,'2017-06-16','2017-06-12','','',NULL,NULL,'',NULL,NULL,'RET_Legal','Oficinas del consultor','Precio Unitario','CLP','',NULL,NULL,1,'Calculada','Regularización',1),(714,NULL,'OS2017-024','SERVICIO ASESORÍA LEGAL LABORAL','UF',800.00,'10','2017-01-01','2017-12-31',15,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',185,534,21,'2017-06-19','2017-04-21','','Apoyo Legal continuo en materias laboral para apoyar el área de recursos humanos del Proyecto Nuevaunión',NULL,NULL,'',NULL,NULL,'NO_IVA','Oficinas del consultor','Precio Unitario','CLP','',NULL,NULL,80,'Calculada','Regularización',1),(715,NULL,'OS2017-042','METALLURGICAL TEST PROGRAM AND PROCESS FACILITY DESIGN SUPPORT','USD',82200.00,'10','2017-05-01','2017-12-31',22,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Extranjero','No','No',188,542,21,'2017-06-20','2017-06-10','','',NULL,NULL,'Proposal for Services FS',NULL,'2017-05-29','NO_IVA','Oficinas del consultor','Precio Unitario','CLP','',NULL,NULL,1,'Calculada','Regularización',2),(716,NULL,'OS2017-008','MEJORAMIENTO BODEGA SARGENTO ALDEA','CLP',4697500.00,'11','2017-02-20','2017-03-10',8,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Local','Si','No',180,647,21,'2017-02-20','2017-02-10','','',NULL,NULL,'',NULL,NULL,'IVA','Areas del Proyecto NuevaUnión','Suma Alzada','CLP','',NULL,NULL,81,'Calculada','Normal',1),(717,NULL,'OS2017-034','SERVICIO ASEO OFICINAS VALLENAR NUEVAUNIÓN','CLP',29663697.00,'10','2017-06-01','2017-12-31',8,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','Si','Si',170,456,21,'2017-06-20','2017-05-25','','SERVICIO DE ASEO EN VALLENAR POR AÑO 2107, COMPRENDE OFICINAS VALLENAR Y ALTO DEL CARMEN; CASA DE HÚESPEDES Y BODEGAS',NULL,NULL,'Cotización Servicio Aseo NU',NULL,'2017-05-25','IVA','Oficinas y Casas Proyecto NU','Precio Unitario','CLP','5',NULL,NULL,1,'Calculada','Normal',1),(718,NULL,'OS2017-043','ARRIENDO DE OFICINAS PARA REUNIONES SANTIAGO','USD',10000.00,'10','2017-04-28','2017-12-31',12,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',161,685,21,'2017-06-20','2017-06-16','','ARRIENDO DE OFICINAS PARA REUNIONES SANTIAGO',NULL,NULL,'Cotización REGUS',NULL,'2017-03-22','IVA','N/A','Precio Unitario','CLP','',NULL,NULL,82,'Calculada','Regularización',2),(719,NULL,'SC-317','SONDAJE GEOMETALURGICO E HIDROGEOLOGICO RELINCHO 2017','CLP',1047298128.00,'10','2017-07-15','2017-09-15',18,NULL,'Contrato',0.00,'1',0.00,'Licitación','Nacional','Si','Si',208,475,21,'2017-06-23',NULL,'','DESARROLLAR LOS SONDAJE GEOMETALURGICO E HIDROGEOLOGICO EN CAPAÑA RELINCHO 2017',NULL,10.00,'','2017-06-21','2017-05-31','NO_IVA','Areas del Proyecto NuevaUnión','Precio Unitario por Entregables','CLP','5',NULL,NULL,16,'Informada','Normal',3),(720,NULL,'OS2017-044','ASESORÍA TECNICA Y AMBIENTAL EN EL MARCO DE DESARROLLO DEL EIA','CLP',62400000.00,'10','2017-04-13','2018-04-30',14,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','Si','Si',203,686,21,'2017-06-30','2017-06-15','','Apoyo para el desarrollo del EIA, plan de manejo de agu y permisos para el Proyecto Nuevaunión',NULL,NULL,'Propuesta Asesoría <NAME>',NULL,'2017-04-13','NO_IVA','Oficinas y Casas Proyecto NU','Mes','CLP','',NULL,NULL,83,'Calculada','Regularización',1),(721,NULL,'OS2017-046','DESARROLLO SISTEMA DOCUMENTAL','UF',585.50,'10','2017-06-28','2017-08-31',1,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',193,687,21,'2017-06-30','2017-06-23','','Se implementará un sitio que permita a NU llevar un correcto manejo de los documentos recibidos y enviados entre la compañía y sus contratistas.',NULL,NULL,'',NULL,NULL,'IVA','Oficinas del consultor','Precio Unitario por Entregables','CLP','',NULL,NULL,84,'Calculada','Normal',2),(722,NULL,'SC-314','SERVICIO DE METEREOLOGIA Y CALIDAD DEL AIRE PARA EIA','CLP',141729397.00,'10','2017-07-10','2017-07-07',10,NULL,'Contrato',0.00,'1',0.00,'Licitación','Nacional','Si','Si',210,464,21,'2017-07-05',NULL,'','Proveer a NuevaUnión de Infromación meteorológica y calidad del Aire por un año para EIA',NULL,10.00,'19/6/2017','2017-07-03','2017-07-05','IVA','Areas del Proyecto NuevaUnión','Precio Unitario','CLP','5',NULL,'2018-12-06',1,'Calculada','Normal',4),(723,NULL,'OS2017-050','REGULARIZACIÓN DE SERVICIOS DE ABASTECIMIENTO DE AGUA POTABLE, INCLUYENDO TRANSPORTE','CLP',5500000.00,'10','2017-06-15','2017-07-15',8,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','Si','No',208,520,21,'2017-07-04','2017-07-03','','',NULL,NULL,'Oferta 17/40',NULL,'2017-06-15','IVA','Areas del Proyecto NuevaUnión','Precio Unitario','CLP','',NULL,NULL,1,'Calculada','Regularización',4),(724,NULL,'OS 2017-049','EXTRACCIÓN DE LODOS CLOACALES DE FOSA SEPTICA CAMPAMENTO EL PINGO','CLP',1230000.00,'10','2017-07-07','2017-08-06',8,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Local','Si','Si',169,688,21,'2017-07-05','2017-07-03','','EXTRACCIÓN DE LODOS CLOACALES DE FOSA SEPTICA CAMPAMENTO EL PINGO',NULL,NULL,'Cotización S/N F:15/6/2017',NULL,'2017-06-15','IVA','Areas del Proyecto NuevaUnión','Precio Unitario','CLP','',NULL,NULL,85,'Calculada','Normal',2),(725,NULL,'OS 2017-052','DESARROLLO ASESORIA AMBIENTAL PARA APOYO EN LA ELABORACIÓN EIA','CLP',32900000.00,'10','2017-06-01','2017-12-31',14,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',203,541,21,'2017-07-07','2017-06-30','','DESARROLLO ASESORIA AMBIENTAL PARA APOYO EN LA ELABORACIÓN EIA',NULL,NULL,'',NULL,NULL,'IVA','Oficinas y Casas Proyecto NU','Precio Unitario','CLP','',NULL,NULL,1,'Calculada','Normal',2),(726,NULL,'OS 2017-058','SERVICIO DE MONITOREO Y ACTIVACIÓN DE EMERGENCIAS','UF',828.00,'10','2017-07-10','2017-12-31',21,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',215,689,21,'2017-07-10','2017-06-30','','SERVICIO EN TIEMPO REAL A PERSONAS Y CAMIONETAS EN LUGARES REMOTOS Y TRASLAFOS DESDE VALLENAR',NULL,NULL,'SERVICIO DE MONITOREO Y GEOREFERENCIACIÓN Y ACTIVACIÓN DE EMERGENCIAS',NULL,'2017-05-10','IVA','Areas del Proyecto NuevaUnión','Precio Unitario','CLP','',NULL,NULL,86,'Calculada','Normal',4),(727,NULL,'OS 2017-045','CONTROL Y GESTIÓN DE RIESGOS PROYECTO NUEVAUNIÓN','UF',666.67,'10','2017-06-26','2017-10-31',1,NULL,'Orden de Servicio',0.00,'1',0.00,'Directa','Nacional','No','No',193,690,21,NULL,NULL,'','Desarrollo de proceso completo de gestión y análisis de riesgos, así como su seguimiento durante la etapa inicial de pre-factibilidad',NULL,NULL,'',NULL,'2017-06-26','NO_IVA','Oficinas y Casas Proyecto NU','Precio Unitario','CLP','',NULL,NULL,87,'Calculada','Normal',2),(728,NULL,'CV2017-002','PROGRAMA EDUCACIÓN Y EMPRENDIMIENTO- PROGRAMA ROCKSTARS PARA ATACAMA','CLP',60000000.00,'10','2017-05-20','2017-12-31',1,NULL,'Convenio',0.00,'1',0.00,'Directa','Nacional','Si','No',198,623,21,'2017-07-12','2017-06-30','','Formar competencias de emprendimiento y empleabilidad en jovenes estudiante de la provincia de HUasco',18000000.00,NULL,'',NULL,NULL,'NO_IVA','Areas del Proyecto NuevaUnión','Precio Unitario','CLP','',NULL,NULL,1,'Calculada','Regularización',1);
/*!40000 ALTER TABLE `personas_ctto` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `personas_duenoceco`
--
DROP TABLE IF EXISTS `personas_duenoceco`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `personas_duenoceco` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`NomDueno` varchar(20) NOT NULL,
`DocIdDueno` varchar(10) DEFAULT NULL,
`NumDocDueno` varchar(15) DEFAULT NULL,
`CargoDueno` varchar(25) DEFAULT NULL,
`RutDueno` varchar(25) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `personas_duenoceco`
--
LOCK TABLES `personas_duenoceco` WRITE;
/*!40000 ALTER TABLE `personas_duenoceco` DISABLE KEYS */;
INSERT INTO `personas_duenoceco` VALUES (1,'<NAME>','CI','','Gerente RRHH',NULL),(2,'<NAME>','Pasaporte','',NULL,NULL),(3,'<NAME>','CI','','Gerente de Comunidades',NULL),(4,'<NAME>','CI','','Gerente Legal',NULL),(5,'<NAME>','CI','','Gerente SERA','14.627.500-5'),(6,'<NAME>','CI','','Gerente Proyecto',NULL),(7,'<NAME>','CI','','Gerente Procesos',NULL),(8,'<NAME>','CI','','Gerente Infraestructura',NULL),(9,'<NAME>','CI','','Gerente Operaciones',NULL),(10,'<NAME>','Pasaporte','','Directpr de Proyecto',NULL),(11,'<NAME>','CI','','Gerente de Servicios',NULL),(12,'N.A.','CI','',NULL,NULL);
/*!40000 ALTER TABLE `personas_duenoceco` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `personas_edp`
--
DROP TABLE IF EXISTS `personas_edp`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `personas_edp` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`IdEDP` int(11) DEFAULT NULL,
`NumEDP` varchar(10) NOT NULL,
`ValEDP` decimal(21,2) NOT NULL,
`PeriodEDP` date NOT NULL,
`DevAntEDP` decimal(21,2) DEFAULT NULL,
`RetEDP` decimal(21,2) DEFAULT NULL,
`DevRet` decimal(21,2) DEFAULT NULL,
`Estado` varchar(10) NOT NULL,
`FactEDP` varchar(30) DEFAULT NULL,
`IdCtto_id` int(11) NOT NULL,
`AprobEDP` date DEFAULT NULL,
`PeriodEDPTer` date DEFAULT NULL,
`PresenEDP` date DEFAULT NULL,
`ObservEDP` varchar(100) DEFAULT NULL,
`PersComAltoCarmen` decimal(21,2) DEFAULT NULL,
`PersComFreirina` decimal(21,2) DEFAULT NULL,
`PersComHuasco` decimal(21,2) DEFAULT NULL,
`PersComVallenar` decimal(21,2) DEFAULT NULL,
`PersHombres` decimal(21,2) DEFAULT NULL,
`PersLocal` decimal(21,2) DEFAULT NULL,
`PersMujeres` decimal(21,2) DEFAULT NULL,
`PersNoLocal` decimal(21,2) DEFAULT NULL,
`PersHHTotales` decimal(21,2) DEFAULT NULL,
`AnticipoEDP` decimal(21,2) DEFAULT NULL,
`DescuentoEDP` decimal(21,2) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `personas_edp_IdCtto_id_85238fff_fk_personas_ctto_id` (`IdCtto_id`),
CONSTRAINT `personas_edp_IdCtto_id_85238fff_fk_personas_ctto_id` FOREIGN KEY (`IdCtto_id`) REFERENCES `personas_ctto` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3485 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `personas_edp`
--
LOCK TABLES `personas_edp` WRITE;
/*!40000 ALTER TABLE `personas_edp` DISABLE KEYS */;
INSERT INTO `personas_edp` VALUES (2529,1,'EDP 01',3728596.00,'2014-07-01',1.00,0.00,0.00,'Pagado','0',449,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2530,2,'EDP 02',3728596.00,'2014-08-01',0.00,0.00,0.00,'Pagado','0',449,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2531,3,'EDP 03',3698212.00,'2014-09-01',0.00,0.00,0.00,'Pagado','0',449,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2532,4,'EDP 04',3579716.00,'2014-10-01',0.00,0.00,0.00,'Pagado','0',449,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2533,5,'EDP 05',3455140.00,'2014-11-01',0.00,0.00,0.00,'Pagado','0',449,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2534,6,'EDP 06',3455139.36,'2014-12-01',0.00,0.00,0.00,'Pagado','0',449,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2535,7,'EDP 07',3455139.36,'2015-01-01',0.00,0.00,0.00,'Pagado','0',449,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2536,8,'EDP 08',3455139.36,'2015-02-01',0.00,0.00,0.00,'Pagado','0',449,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2537,9,'EDP 09',3858353.00,'2015-03-01',0.00,0.00,0.00,'Pagado','0',449,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2538,10,'EDP 10',3455139.00,'2015-04-01',0.00,0.00,0.00,'Pagado','0',449,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2539,11,'EDP 11',3455139.00,'2015-05-01',0.00,0.00,0.00,'Pagado','0',449,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2540,12,'EDP 12',5149175.00,'2015-06-01',0.00,0.00,0.00,'Pagado','0',449,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2541,13,'EDP 13',2464710.96,'2015-07-01',0.00,0.00,0.00,'Pagado','0',449,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2542,14,'EDP 14',2464710.96,'2015-08-01',0.00,0.00,0.00,'Pagado','0',449,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2543,15,'EDP 15',6464711.00,'2015-09-01',0.00,0.00,0.00,'Pagado','563',449,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2544,16,'EDP 16',1796855.00,'2015-10-01',0.00,0.00,0.00,'Pagado','564',449,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2545,17,'EDP 17',1796855.00,'2015-11-01',0.00,0.00,0.00,'Pagado','582',449,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2546,18,'EDP 18',1796856.00,'2015-12-01',0.00,0.00,0.00,'Pagado','593',449,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2547,19,'EDP 19',1796856.00,'2016-01-01',0.00,0.00,0.00,'Pagado','601',449,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2548,20,'EDP 20',1951854.67,'2016-02-01',0.00,0.00,0.00,'Por pagar','610',449,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2549,21,'EDP 01',3365000.00,'2014-10-01',0.00,0.00,0.00,'Pagado','0',450,'2014-10-31','2014-10-31','2014-10-25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2550,22,'EDP 02',32808900.00,'2014-11-01',0.00,0.00,0.00,'Pagado','0',450,'2014-11-30','2014-11-30','2014-11-25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2551,23,'EDP 03',34751700.00,'2014-12-01',0.00,0.00,0.00,'Pagado','0',450,'2014-12-31','2014-12-31','2014-12-25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2552,24,'EDP 04',22612500.00,'2015-01-01',0.00,4676905.00,0.00,'Pagado','0',450,'2015-01-31','2015-01-31','2015-01-25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2553,25,'EDP 05',28692600.00,'2015-02-01',0.00,1434630.00,0.00,'Pagado','0',450,'2015-02-28','2015-02-28','2015-02-25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2554,26,'EDP 06',25022500.00,'2015-03-01',0.00,1251125.00,0.00,'Pagado','0',450,'2015-03-31','2015-03-31','2015-03-25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2555,27,'EDP 07',15107500.00,'2015-04-01',0.00,755375.00,0.00,'Pagado','0',450,'2015-04-30','2015-04-30','2015-04-25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2556,28,'EDP 08',21227224.00,'2015-05-01',0.00,1061361.00,0.00,'Pagado','0',450,'2015-05-31','2015-05-31','2015-05-25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2557,29,'EDP 09',14664567.00,'2015-06-01',0.00,733228.35,0.00,'Pagado','0',450,'2015-06-30','2015-06-30','2015-06-25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2558,30,'EDP 10',12997540.00,'2015-07-01',0.00,649877.00,0.00,'Pagado','0',450,'2015-07-31','2015-07-31','2015-07-25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2559,31,'EDP 11',12145336.00,'2015-08-01',0.00,607266.80,0.00,'Pagado','64288',450,'2015-08-31','2015-08-31','2015-08-25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2560,32,'EDP 12',11495165.00,'2015-09-01',0.00,574758.25,0.00,'Pagado','70364',450,'2015-09-30','2015-09-30','2015-09-25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2561,33,'EDP 13',11495165.00,'2015-10-01',0.00,574758.25,0.00,'Pagado','76115',450,'2015-10-31','2015-10-31','2015-10-25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2562,34,'EDP 14',11495165.00,'2015-11-01',0.00,574758.25,0.00,'Pagado','84295',450,'2015-11-30','2015-11-30','2015-11-25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2563,35,'EDP 15',0.00,'2015-12-01',0.00,0.00,12894043.00,'Pagado','88475',450,'2015-12-31','2015-12-31','2015-12-25','EDP Devolución Retenciones',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2564,36,'EDP 16',11495165.00,'2015-12-01',0.00,0.00,0.00,'Pagado','88476',450,'2015-12-31','2015-12-31','2015-12-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2565,37,'EDP 17',13546465.00,'2016-01-01',0.00,0.00,0.00,'Pagado','108910',450,'2016-01-31','2016-01-31','2016-01-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2566,38,'EDP 18',5673513.00,'2016-02-01',0.00,0.00,0.00,'Pagado','108911',450,'2016-02-29','2016-02-29','2016-02-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2567,39,'EDP 19',3314791.00,'2016-03-01',0.00,0.00,0.00,'Pagado','108912',450,'2016-03-31','2016-03-31','2016-03-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2568,40,'EDP 20',3314791.00,'2016-04-01',0.00,0.00,0.00,'Pagado','0',450,'2016-06-15','2016-04-30','2016-06-08','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2569,41,'EDP 21',3314791.00,'2016-05-01',0.00,0.00,0.00,'Por pagar','0',450,'2016-07-13','2016-05-31','2016-07-11','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2570,42,'EDP 01',693600.00,'2015-01-01',0.00,0.00,0.00,'Pagado','0',451,'2015-01-31','2015-01-31','2015-01-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2571,43,'EDP 02',367200.00,'2015-02-01',0.00,0.00,0.00,'Pagado','0',451,'2015-02-28','2015-02-28','2015-02-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2572,44,'EDP 03',581400.00,'2015-03-01',0.00,0.00,0.00,'Pagado','0',451,'2015-03-31','2015-03-31','2015-03-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2573,45,'EDP 04',683400.00,'2015-04-01',0.00,0.00,0.00,'Pagado','0',451,'2015-04-30','2015-04-30','2015-04-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2574,46,'EDP 05',326400.00,'2015-05-01',0.00,0.00,0.00,'Pagado','0',451,'2015-05-31','2015-05-31','2015-05-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2575,47,'EDP 06',408000.00,'2015-06-01',0.00,0.00,0.00,'Pagado','0',451,'2015-06-30','2015-06-30','2015-06-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2576,48,'EDP 07',132000.00,'2015-07-01',0.00,0.00,0.00,'Pagado','358',451,'2015-09-30','2015-09-30','2015-09-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2577,49,'EDP 08',173400.00,'2015-10-01',0.00,0.00,0.00,'Pagado','375',451,'2015-12-31','2015-12-01','2015-12-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2578,50,'EDP 09',204000.00,'2016-01-01',0.00,0.00,0.00,'Por pagar','0',451,'2016-04-30','2016-04-30','2016-04-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2579,51,'EDP 10',102000.00,'2016-05-01',0.00,0.00,0.00,'Por pagar','0',451,'2016-06-30','2016-06-30','2016-06-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2580,52,'EDP 01',32.00,'2015-01-01',0.00,0.00,0.00,'Pagado','0',452,'2015-01-31','2015-01-31','2015-01-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2581,53,'EDP 02',32.00,'2015-02-01',0.00,0.00,0.00,'Pagado','0',452,'2015-02-28','2015-02-28','2015-02-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2582,54,'EDP 03',32.00,'2015-03-01',0.00,0.00,0.00,'Pagado','0',452,'2015-03-31','2015-03-31','2015-03-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2583,55,'EDP 04',32.00,'2015-04-01',0.00,0.00,0.00,'Pagado','0',452,'2015-04-30','2015-04-30','2015-04-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2584,56,'EDP 05',32.00,'2015-05-01',0.00,0.00,0.00,'Pagado','0',452,'2015-05-31','2015-05-31','2015-05-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2585,57,'EDP 06',32.00,'2015-06-01',0.00,0.00,0.00,'Pagado','0',452,'2015-06-30','2015-06-30','2015-06-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2586,58,'EDP 07',32.00,'2015-07-01',0.00,0.00,0.00,'Pagado','0',452,'2015-07-31','2015-07-31','2015-07-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2587,59,'EDP 08',32.00,'2015-08-01',0.00,0.00,0.00,'Pagado','462',452,'2015-08-31','2015-08-31','2015-08-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2588,60,'EDP 09',32.00,'2015-09-01',0.00,0.00,0.00,'Pagado','478',452,'2015-09-30','2015-09-30','2015-09-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2589,61,'EDP 10',32.00,'2015-10-01',0.00,0.00,0.00,'Pagado','494',452,'2015-10-31','2015-10-31','2015-10-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2590,62,'EDP 11',32.00,'2015-11-01',0.00,0.00,0.00,'Pagado','531',452,'2015-11-30','2015-11-30','2015-11-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2591,63,'EDP 12',32.00,'2015-12-01',0.00,0.00,0.00,'Pagado','583',452,'2015-12-31','2015-12-31','2015-12-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2592,64,'EDP 13',64.00,'2016-01-01',0.00,0.00,0.00,'Pagado','646',452,'2016-02-29','2016-02-29','2016-02-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2593,65,'EDP 14',32.00,'2016-03-01',0.00,0.00,0.00,'Pagado','660',452,'2016-03-31','2016-03-31','2016-03-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2594,66,'EDP 15',32.00,'2016-04-01',0.00,0.00,0.00,'Pagado','0',452,'2016-04-30','2016-04-30','2016-04-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2595,67,'EDP 16',32.00,'2016-05-01',0.00,0.00,0.00,'Pagado','0',452,'2016-06-14','2016-05-31','2016-06-08','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2596,68,'EDP 17',32.00,'2016-06-01',0.00,0.00,0.00,'Pagado','0',452,'2016-07-13','2016-06-30','2016-07-11','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2597,69,'EDP 18',32.00,'2016-07-01',0.00,0.00,0.00,'Pagado','0',452,'2016-08-10','2016-07-31','2016-08-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2598,70,'EDP 19',32.00,'2016-08-01',0.00,0.00,0.00,'Por Pagar','0',452,'2016-09-15','2016-08-31','2016-09-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2599,71,'EDP 01',159.63,'2015-01-01',0.00,7.98,0.00,'Pagado','0',453,'2015-01-31','2015-01-31','2015-01-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2600,72,'EDP 02',274.48,'2015-02-01',0.00,13.72,0.00,'Pagado','0',453,'2015-02-28','2015-02-28','2015-02-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2601,73,'EDP 03',158.89,'2015-03-01',0.00,7.94,0.00,'Pagado','0',453,'2015-03-31','2015-03-31','2015-03-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2602,74,'EDP 04',162.93,'2015-04-01',0.00,8.15,0.00,'Pagado','0',453,'2015-04-30','2015-04-30','2015-04-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2603,75,'EDP 05',150.73,'2015-05-01',0.00,7.54,0.00,'Pagado','0',453,'2015-05-31','2015-05-31','2015-05-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2604,76,'EDP 06',158.09,'2015-06-01',0.00,7.90,0.00,'Pagado','0',453,'2015-06-30','2015-06-30','2015-06-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2605,77,'EDP 07',162.49,'2015-07-01',0.00,8.12,0.00,'Pagado','0',453,'2015-07-31','2015-07-31','2015-07-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2606,78,'EDP 08',163.92,'2015-08-01',0.00,8.20,0.00,'Pagado','954',453,'2015-08-31','2015-08-31','2015-08-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2607,79,'EDP 09',159.67,'2015-09-01',0.00,7.98,0.00,'Pagado','1051',453,'2015-09-30','2015-09-30','2015-09-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2608,80,'EDP 10',157.18,'2015-10-01',0.00,7.86,0.00,'Pagado','1135',453,'2015-10-31','2015-10-31','2015-10-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2609,81,'EDP 11',155.14,'2015-11-01',0.00,7.76,0.00,'Pagado','1283',453,'2015-11-30','2015-11-30','2015-11-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2610,82,'EDP 12',154.65,'2015-12-01',0.00,7.73,0.00,'Pagado','1315',453,'2015-12-31','2015-12-31','2015-12-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2611,83,'EDP 13',158.48,'2016-01-01',0.00,7.92,0.00,'Pagado','1461',453,'2016-01-31','2016-01-31','2016-01-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2612,84,'EDP 14',156.34,'2016-02-01',0.00,7.82,0.00,'Pagado','1508',453,'2016-02-29','2016-02-29','2016-02-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2613,85,'EDP 15',156.26,'2016-03-01',0.00,7.81,0.00,'Por pagar','0',453,'2016-06-13','2016-03-31','2016-06-11','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2614,86,'EDP 16',155.52,'2016-04-01',0.00,7.78,0.00,'Por pagar','0',453,'2016-08-03','2016-04-30','2016-07-28','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2615,87,'EDP 17',156.28,'2016-05-01',0.00,7.81,0.00,'Por pagar','0',453,'2016-08-03','2016-05-31','2016-07-28','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2616,88,'EDP 01',5909000.00,'2015-01-01',0.00,295450.00,0.00,'Pagado','0',454,'2015-01-31','2015-01-31','2015-01-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2617,89,'EDP 02',5909000.00,'2015-02-01',0.00,295450.00,0.00,'Pagado','0',454,'2015-02-28','2015-02-28','2015-02-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2618,90,'EDP 03',5909000.00,'2015-03-01',0.00,295450.00,0.00,'Pagado','0',454,'2015-03-31','2015-03-31','2015-03-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2619,91,'EDP 04',5909000.00,'2015-04-01',0.00,295450.00,0.00,'Pagado','0',454,'2015-04-30','2015-04-30','2015-04-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2620,92,'EDP 05',5909000.00,'2015-05-01',0.00,295450.00,0.00,'Pagado','0',454,'2015-05-31','2015-05-31','2015-05-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2621,93,'EDP 06',5909000.00,'2015-06-01',0.00,295450.00,0.00,'Pagado','0',454,'2015-06-30','2015-06-30','2015-06-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2622,94,'EDP 07',5909000.00,'2015-07-01',0.00,295450.00,0.00,'Pagado','0',454,'2015-07-31','2015-07-31','2015-07-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2623,95,'EDP 08',5909000.00,'2015-08-01',0.00,295450.00,0.00,'Pagado','F/181',454,'2015-08-31','2015-08-31','2015-08-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2624,96,'EDP 09',5909000.00,'2015-09-01',0.00,295450.00,0.00,'Pagado','F/182',454,'2015-09-30','2015-09-30','2015-09-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2625,97,'EDP 10',5909000.00,'2015-10-01',0.00,295450.00,0.00,'Pagado','F/185',454,'2015-10-31','2015-10-31','2015-10-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2626,98,'EDP 11',5909000.00,'2015-11-01',0.00,295450.00,0.00,'Pagado','F/186',454,'2015-11-30','2015-11-30','2015-11-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2627,99,'EDP 12',5909000.00,'2015-12-01',0.00,295450.00,0.00,'Pagado','F/188',454,'2015-12-01','2015-12-31','2015-12-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2628,100,'EDP 13',5318100.00,'2016-01-01',0.00,0.00,0.00,'Pagado','F/191',454,'2016-01-31','2016-01-31','2016-01-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2629,101,'EDP 14',5318100.00,'2016-02-01',0.00,0.00,0.00,'Pagado','F/192',454,'2016-02-29','2016-02-29','2016-02-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2630,102,'EDP 15',5318100.00,'2016-03-01',0.00,0.00,0.00,'Pagado','0',454,'2016-03-31','2016-03-31','2016-03-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2631,103,'EDP 16',5318100.00,'2016-04-01',0.00,0.00,0.00,'Pagado','0',454,'2016-04-30','2016-04-30','2016-04-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2632,104,'EDP 17',5318100.00,'2016-05-01',0.00,0.00,0.00,'Pagado','F/198',454,'2016-05-31','2016-05-31','2016-05-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2633,105,'EDP 18',5318100.00,'2016-06-01',0.00,0.00,0.00,'por pagar','F/200',454,'2016-07-13','2016-06-30','2016-07-11','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2634,106,'EDP 19',5318100.00,'2016-07-01',0.00,0.00,0.00,'por pagar','0',454,'2016-08-10','2016-07-31','2016-08-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2635,107,'EDP 20',5318100.00,'2016-08-01',0.00,0.00,0.00,'por pagar','0',454,'2016-09-16','2016-08-31','2016-09-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2636,108,'EDP 01',366866.00,'2015-04-01',0.00,18343.00,0.00,'Pagado','157374',455,'2015-04-30','2015-04-30','2015-04-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2637,109,'EDP 02',1467464.00,'2015-05-01',0.00,73373.00,0.00,'Pagado','158881',455,'2015-05-31','2015-05-31','2015-05-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2638,110,'EDP 03',366866.00,'2015-06-01',0.00,18343.30,0.00,'Pagado','163292',455,'2015-06-30','2015-06-30','2015-06-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2639,111,'EDP 04',1100598.00,'2015-07-01',0.00,55029.90,0.00,'Pagado','166638',455,'2015-07-31','2015-07-31','2015-07-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2640,112,'EDP 05',1100598.00,'2015-08-01',0.00,55029.90,0.00,'Pagado','164409',455,'2015-08-31','2015-08-31','2015-08-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2641,113,'EDP 06',1467464.00,'2015-09-01',0.00,73373.20,0.00,'Pagado','168990',455,'2015-09-30','2015-09-30','2015-09-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2642,114,'EDP 07',1467464.00,'2015-10-01',0.00,73373.20,0.00,'Pagado','171649',455,'2015-10-31','2015-10-31','2015-10-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2643,115,'EDP 08',1467464.00,'2015-11-01',0.00,73373.20,0.00,'Pagado','174290',455,'2015-11-30','2015-11-30','2015-11-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2644,116,'EDP 10',1650897.00,'2015-12-01',0.00,82544.85,0.00,'Pagado','0',455,'2016-01-31','2016-01-31','2016-01-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2645,117,'EDP 11',1650897.00,'2016-02-01',0.00,82544.85,0.00,'Pagado','0',455,'2016-02-29','2016-02-29','2016-02-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2646,118,'EDP 12',917165.00,'2016-03-01',0.00,45858.25,0.00,'Pagado','0',455,'2016-03-31','2016-03-31','2016-03-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2647,119,'EDP 13',2384629.00,'2016-04-01',0.00,119231.45,0.00,'Por pagar','0',455,'2016-04-30','2016-04-30','2016-04-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2648,120,'EDP 14',2829047.00,'2016-05-01',0.00,141452.35,0.00,'Por pagar','0',455,'2016-09-06','2016-05-31','2016-08-17','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2649,121,'EDP 01',1950000.00,'2015-01-01',0.00,0.00,0.00,'Pagado','20',456,'2015-01-31','2015-01-31','2015-01-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2650,122,'EDP 02',1950000.00,'2015-02-01',0.00,0.00,0.00,'Pagado','21',456,'2015-02-28','2015-02-28','2015-02-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2651,123,'EDP 03',1950000.00,'2015-03-01',0.00,0.00,0.00,'Pagado','22',456,'2015-03-31','2015-03-31','2015-03-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2652,124,'EDP 04',1950000.00,'2015-04-01',0.00,0.00,0.00,'Pagado','23',456,'2015-04-30','2015-04-30','2015-04-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2653,125,'EDP 05',1950000.00,'2015-05-01',0.00,0.00,0.00,'Pagado','24',456,'2015-05-31','2015-05-31','2015-05-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2654,126,'EDP 06',1950000.00,'2015-06-01',0.00,0.00,0.00,'Pagado','25',456,'2015-06-30','2015-06-30','2015-06-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2655,127,'EDP 07',900000.00,'2015-07-01',0.00,0.00,0.00,'Pagado','26',456,'2015-07-31','2015-07-31','2015-07-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2656,128,'EDP 08',900000.00,'2015-08-01',0.00,0.00,0.00,'Pagado','27',456,'2015-08-31','2015-08-31','2015-08-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2657,129,'EDP 09',900000.00,'2015-09-01',0.00,0.00,0.00,'Pagado','28',456,'2015-09-30','2015-09-30','2015-09-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2658,130,'EDP 10',900000.00,'2015-10-01',0.00,0.00,0.00,'Pagado','29',456,'2015-10-31','2015-10-31','2015-10-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2659,131,'EDP 11',900000.00,'2015-11-01',0.00,0.00,0.00,'Pagado','30',456,'2015-11-30','2015-11-30','2015-11-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2660,132,'EDP 12',900000.00,'2015-12-01',0.00,0.00,0.00,'Pagado','31',456,'2015-12-31','2015-12-31','2015-12-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2661,133,'EDP 13',900000.00,'2016-01-01',0.00,0.00,0.00,'Pagado','32',456,'2016-01-31','2016-01-31','2016-01-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2662,134,'EDP 14',900000.00,'2016-02-01',0.00,0.00,0.00,'Pagado','33',456,'2016-02-29','2016-02-29','2016-02-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2663,135,'EDP 15',900000.00,'2016-03-01',0.00,0.00,0.00,'Pagado','34',456,'2016-03-31','2016-03-31','2016-03-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2664,136,'EDP 16',900000.00,'2016-04-01',0.00,0.00,0.00,'Pagado','0',456,'2016-04-30','2016-04-30','2016-04-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2665,137,'EDP 17',900000.00,'2016-05-01',0.00,0.00,0.00,'Por pagar','0',456,'2016-06-14','2016-05-31','2016-06-10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2666,138,'EDP 18',900000.00,'2016-06-01',0.00,0.00,0.00,'Por pagar','0',456,'2016-07-13','2016-06-30','2016-07-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2667,139,'EDP 19',900000.00,'2016-07-01',0.00,0.00,0.00,'Por pagar','0',456,'2016-09-14','2016-07-31','2016-09-13','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2668,140,'EDP 20',900000.00,'2016-08-01',0.00,0.00,0.00,'Por pagar','0',456,'2016-09-14','2016-08-31','2016-09-13','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2669,141,'EDP 01',2500000.00,'2015-01-01',0.00,0.00,0.00,'Pagado','0',457,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2670,142,'EDP 02',2500000.00,'2015-02-01',0.00,0.00,0.00,'Pagado','0',457,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2671,143,'EDP 03',2713360.00,'2015-03-01',0.00,0.00,0.00,'Pagado','0',457,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2672,144,'EDP 04',2500000.00,'2015-04-01',0.00,0.00,0.00,'Pagado','0',457,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2673,145,'EDP 05',2705512.00,'2015-05-01',0.00,0.00,0.00,'Pagado','0',457,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2674,146,'EDP 06',2563200.00,'2015-06-01',0.00,0.00,0.00,'Pagado','0',457,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2675,147,'EDP 07',2766900.00,'2015-07-01',0.00,0.00,0.00,'Pagado','0',457,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2676,148,'EDP 08',2500000.00,'2015-08-01',0.00,0.00,0.00,'Pagado','0',457,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2677,149,'EDP 09',5927105.00,'2015-09-01',0.00,296355.00,0.00,'Pagado','0',457,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2678,150,'EDP 10',5927105.00,'2015-10-01',0.00,296355.25,0.00,'Pagado','0',457,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2679,151,'EDP 11',5524605.00,'2015-11-01',0.00,276230.25,0.00,'Pagado','0',457,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2680,152,'EDP 12',5299605.00,'2015-12-01',0.00,264980.25,0.00,'Pagado','0',457,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2681,153,'EDP 13',0.00,'2016-04-01',0.00,0.00,1133921.00,'Por pagar','0',457,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2682,154,'EDP 01',240.00,'2015-03-01',0.00,0.00,0.00,'Pagado','0',459,'2015-03-31','2015-03-31','2015-03-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2683,155,'EDP 02',261.20,'2015-04-01',0.00,0.00,0.00,'Pagado','0',459,'2015-04-30','2015-04-30','2015-04-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2684,156,'EDP 03',240.00,'2015-05-01',0.00,0.00,0.00,'Pagado','0',459,'2015-05-31','2015-05-31','2015-05-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2685,157,'EDP 04',256.20,'2015-06-01',0.00,0.00,0.00,'Pagado','0',459,'2015-06-30','2015-06-30','2015-06-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2686,158,'EDP 05',241.90,'2015-07-01',0.00,0.00,0.00,'Pagado','0',459,'2015-07-31','2015-07-15','2015-07-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2687,159,'EDP 06',37.49,'2015-07-16',0.00,0.00,0.00,'Pagado','0',459,'2015-07-31','2015-07-31','2015-07-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2688,160,'EDP 07',0.00,'2015-07-01',0.00,0.00,0.00,'Pagado','0',459,'2015-07-31','2015-07-31','2015-07-25','EDP Anticipo de GR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,80.00,NULL),(2689,161,'EDP 08',240.00,'2015-08-01',0.00,0.00,0.00,'Pagado','0',459,'2015-08-31','2015-08-31','2015-08-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2690,162,'EDP 09',240.00,'2015-09-01',0.00,0.00,0.00,'Pagado','99',459,'2015-09-30','2015-09-30','2015-09-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2691,163,'EDP 10',286.00,'2015-10-01',45.95,0.00,0.00,'Pagado','102',459,'2015-10-31','2015-10-31','2015-10-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2692,164,'EDP 11',240.00,'2015-11-01',34.05,0.00,0.00,'Pagado','104',459,'2015-11-30','2015-11-30','2015-11-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2693,165,'EDP 12',240.00,'2015-12-01',0.00,0.00,0.00,'Pagado','115',459,'2015-12-31','2015-12-31','2015-12-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2694,166,'EDP 13',960.00,'2016-01-01',0.00,0.00,0.00,'Pagado','123',459,'2016-04-30','2016-04-30','2016-04-25','EDP por periodo enero a abril 2016',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2695,167,'EDP 14',240.00,'2016-05-01',0.00,0.00,0.00,'Pagado','0',459,'2016-05-31','2016-05-31','2016-05-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2696,168,'EDP 15',278.51,'2016-06-01',0.00,0.00,0.00,'por pagar','0',459,'2016-08-24','2016-06-30','2016-08-23','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2697,169,'EDP 16',253.59,'2016-07-01',0.00,0.00,0.00,'por pagar','0',459,'2016-08-24','2016-07-31','2016-08-23','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2698,170,'EDP 17',280.04,'2016-08-01',0.00,0.00,0.00,'por pagar','0',459,'2016-09-14','2016-08-31','2016-09-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2699,171,'EDP 01',9049.54,'2016-04-25',0.00,452.48,0.00,'Por Pagar','F/959',460,'2016-08-22','2016-07-31','2016-08-17','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2700,172,'EDP 01',5006326.00,'2015-07-01',0.00,250316.30,0.00,'Pagado','0',461,NULL,'2015-07-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2701,173,'EDP 02',5006326.00,'2015-08-01',0.00,250316.30,0.00,'Pagado','0',461,NULL,'2015-08-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2702,174,'EDP 03',5006326.00,'2015-09-01',0.00,250316.30,0.00,'Pagado','0',461,NULL,'2015-09-30',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2703,175,'EDP 04',5006326.00,'2015-10-01',0.00,250316.30,0.00,'Pagado','0',461,NULL,'2015-10-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2704,176,'EDP 05',5006326.00,'2015-11-01',0.00,250316.30,0.00,'Pagado','0',461,NULL,'2015-11-30',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2705,177,'EDP 06',5006326.00,'2015-12-01',0.00,250316.30,0.00,'Pagado','0',461,NULL,'2016-01-31',NULL,'En diciembre 2015 no se realiza servicio',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2706,178,'EDP 07',4396467.00,'2016-02-01',0.00,219823.35,0.00,'Pagado','0',461,NULL,'2016-02-29',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2707,179,'EDP 08',3755702.00,'2016-03-01',0.00,187785.10,0.00,'Pagado','125',461,NULL,'2016-03-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2708,180,'EDP 09',3755702.00,'2016-04-01',0.00,187785.10,0.00,'Por Pagar','128',461,'2016-07-22','2016-04-30','2016-07-15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2709,181,'EDP 10',1203615.00,'2016-05-01',0.00,60180.75,0.00,'Por Pagar','0',461,'2016-09-05','2016-05-31','2016-08-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2710,182,'EDP 11',1203615.00,'2016-06-01',0.00,60180.75,0.00,'Por Pagar','0',461,'2016-09-05','2016-06-30','2016-08-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2711,183,'EDP 01',250.50,'2015-09-01',0.00,0.00,0.00,'Pagado','0',462,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2712,184,'EDP 02',308.50,'2015-10-01',0.00,0.00,0.00,'Pagado','0',462,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2713,185,'EDP 03',391.00,'2015-11-01',0.00,0.00,0.00,'Pagado','0',462,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2714,186,'EDP 04',370.00,'2015-12-01',0.00,0.00,0.00,'Por pagar','0',462,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2715,187,'EDP 01',17.42,'2015-10-01',0.00,0.87,0.00,'Pagado','0',463,NULL,'2015-10-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2716,188,'EDP 02',13.09,'2015-11-01',0.00,0.65,0.00,'Pagado','0',463,NULL,'2015-11-30',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2717,189,'EDP 03',14.06,'2015-12-01',0.00,0.70,0.00,'Pagado','0',463,NULL,'2015-12-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2718,190,'EDP 04',12.50,'2016-01-01',0.00,0.62,0.00,'Pagado','0',463,NULL,'2016-01-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2719,191,'EDP 05',13.61,'2016-02-01',0.00,0.68,0.00,'Pagado','56',463,NULL,'2016-02-29',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2720,192,'EDP 06',23.55,'2016-03-01',0.00,1.18,0.00,'Pagado','82',463,NULL,'2016-03-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2721,193,'EDP 07',16.93,'2016-04-01',0.00,0.85,0.00,'Pagado','0',463,NULL,'2016-04-30',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2722,194,'EDP 08',13.18,'2016-05-01',0.00,0.66,0.00,'Pagado','0',463,'2016-06-09','2016-05-31','2016-06-08','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2723,195,'EDP 09',12.50,'2016-06-01',0.00,0.62,0.00,'Por pagar','0',463,'2016-07-13','2016-06-30','2016-07-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2724,196,'EDP 10',17.16,'2016-07-01',0.00,0.86,0.00,'Por pagar','F/201',463,'2016-08-24','2016-07-31','2016-08-23','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2725,197,'EDP 11',12.50,'2016-08-01',0.00,0.62,0.00,'Pagado','F/228',463,'2016-09-12','2016-08-31','2016-09-06','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2726,198,'EDP 01',11068300.00,'2015-12-01',0.00,553415.00,0.00,'Pagado','0',464,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2727,199,'EDP 02',16667666.00,'2016-01-01',0.00,833383.30,0.00,'Pagado','0',464,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2728,200,'EDP 03',0.00,'2016-04-01',0.00,0.00,1386798.00,'Por pagar','0',464,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2729,201,'EDP 04',0.00,'2016-11-01',0.00,0.00,0.00,'0','0',464,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2730,202,'EDP 01',509.13,'2015-12-01',0.00,50.91,0.00,'Pagado','0',465,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2731,203,'EDP 02',219.30,'2016-01-01',0.00,21.93,0.00,'Pagado','0',465,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2732,204,'EDP 03',269.60,'2016-02-01',0.00,13.48,0.00,'Pagado','0',465,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2733,205,'EDP 04',291.40,'2016-03-01',0.00,14.57,0.00,'Pagado','1174',465,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2734,206,'EDP 01',261.00,'2016-01-01',0.00,0.00,0.00,'Pagado','0',466,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2735,207,'EDP 03',0.00,'2016-03-01',0.00,0.00,0.00,'0','0',466,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2736,208,'EDP 01',860.73,'2016-01-01',0.00,43.04,0.00,'Pagado','0',467,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2737,209,'EDP 02',1327.69,'2016-02-01',0.00,66.38,0.00,'Pagado','Fact Ext 618',467,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2738,210,'EDP 03',2269.83,'2016-03-01',0.00,113.49,0.00,'Pagado','Fact Ext 631',467,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2739,211,'EDP 04',2681.93,'2016-04-01',0.00,134.10,0.00,'Pagado','Fact Ext 644',467,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2740,212,'EDP 05',1882.00,'2016-05-01',0.00,94.10,0.00,'Pagado','Fact Ext 662',467,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2741,213,'EDP 06',661.42,'2016-06-01',0.00,33.07,0.00,'Pagado','0',467,'2016-07-25','2016-06-30','2016-07-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2742,214,'EDP 01',3629.00,'2016-01-01',0.00,0.00,0.00,'Pagado','Invoice #591',468,NULL,'2016-01-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2743,215,'EDP 02',3686.00,'2016-02-01',0.00,0.00,0.00,'Por pagar','Invoice #593',468,NULL,'2016-02-29',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2744,216,'EDP 05',37529.64,'2016-03-01',0.00,0.00,0.00,'Por pagar','0',468,'2016-08-02','2016-05-31','2016-07-20','EDP 04 y EDP 05 son nulos, sin costos',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2745,217,'EDP 06',8414.00,'2016-06-01',0.00,0.00,0.00,'Por pagar','0',468,'2016-08-02','2016-06-30','2016-07-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2746,218,'EDP 01',1650000.00,'2016-01-01',0.00,82500.00,0.00,'Pagado','0',470,'2016-01-31','2016-01-31','2016-01-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2747,219,'EDP 02',1650000.00,'2016-02-01',0.00,82500.00,0.00,'Pagado','0',470,'2016-02-29','2016-02-29','2016-02-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2748,220,'EDP 03',1650000.00,'2016-03-01',0.00,82500.00,0.00,'Pagado','0',470,'2016-03-31','2016-03-31','2016-03-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2749,221,'EDP 04',1650000.00,'2016-04-01',0.00,82500.00,0.00,'Pagado','0',470,'2016-04-30','2016-04-30','2016-04-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2750,222,'EDP 05',1650000.00,'2016-05-01',0.00,82500.00,0.00,'Pagado','0',470,'2016-05-30','2016-05-31','2016-05-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2751,223,'EDP 06',1650000.00,'2016-06-01',0.00,82500.00,0.00,'Pagado','0',470,'2016-06-30','2016-06-30','2016-06-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2752,224,'EDP 07',1650000.00,'2016-07-01',0.00,82500.00,0.00,'Pagado','F/128',470,'2016-09-05','2016-07-31','2016-08-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2753,225,'EDP 08',1650000.00,'2016-08-01',0.00,82500.00,0.00,'Pagado','F/129',470,'2016-09-05','2016-08-31','2016-08-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2754,226,'EDP 01',7166000.00,'2016-01-01',0.00,358300.00,0.00,'Pagado','0',471,NULL,'2016-01-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2755,227,'EDP 02',7166000.00,'2016-02-01',0.00,358300.00,0.00,'Pagado','0',471,NULL,'2016-02-29',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2756,228,'EDP 03',7166000.00,'2016-03-01',0.00,358300.00,0.00,'Pagado','0',471,NULL,'2016-03-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2757,229,'EDP 04',7166000.00,'2016-04-01',0.00,358300.00,0.00,'Pagado','0',471,NULL,'2016-04-30',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2758,230,'EDP 05',7166000.00,'2016-05-01',0.00,358300.00,0.00,'por pagar','0',471,'2016-06-09','2016-05-31','2016-06-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2759,231,'EDP 06',7166000.00,'2016-06-01',0.00,358300.00,0.00,'por pagar','F/45',471,'2016-07-12','2016-06-30','2016-07-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2760,232,'EDP 07',7166000.00,'2016-07-01',0.00,358300.00,0.00,'por pagar','F/46',471,'2016-08-09','2016-07-31','2016-08-09','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2761,233,'EDP 08',7166000.00,'2016-08-01',0.00,358300.00,0.00,'Pagado','F/48',471,'2016-09-15','2016-08-31','2016-09-13','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2762,234,'EDP 01',62303164.00,'2016-03-07',0.00,0.00,0.00,'Por pagar','0',473,'2016-08-10','2016-07-31','2016-08-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2763,235,'EDP 01',4750000.00,'2016-04-01',0.00,237500.00,0.00,'Por Pagar','0',474,NULL,'2016-04-30',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2764,236,'EDP 02',6200000.00,'2016-05-01',0.00,310000.00,0.00,'Por Pagar','0',474,'2016-07-05','2016-05-31','2016-06-24','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2765,237,'EDP 03',6650000.00,'2016-06-01',0.00,332500.00,0.00,'Por Pagar','0',474,'2016-08-03','2016-06-30','2016-07-29','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2766,238,'EDP 04',6200000.00,'2016-07-01',0.00,310000.00,0.00,'Por Pagar','0',474,'2016-09-05','2016-07-31','2016-08-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2767,239,'EDP 01',59807.47,'2016-04-23',0.00,0.00,0.00,'0','51',475,'2016-08-03','2016-07-31','2016-07-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2768,240,'EDP 01',4200000.00,'2016-04-01',0.00,210000.00,0.00,'pagado','630',477,NULL,'2016-04-30',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2769,241,'EDP 02',2100000.00,'2016-05-01',0.00,105000.00,0.00,'Por Pagar','0',477,'2016-06-09','2016-05-31','2016-06-06','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2770,242,'EDP 03',2100000.00,'2016-06-01',0.00,105000.00,0.00,'Por Pagar','0',477,'2016-07-13','2016-06-30','2016-07-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2771,243,'EDP 04',2100000.00,'2016-07-01',0.00,105000.00,0.00,'Por Pagar','0',477,'2016-08-03','2016-07-31','2016-08-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2772,244,'EDP 05',2100000.00,'2016-08-01',0.00,105000.00,0.00,'Pagada','F/672',477,'2016-09-16','2016-08-31','2016-09-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2773,245,'EDP 01',888889.00,'2016-05-01',0.00,0.00,0.00,'pagado','28',478,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2774,246,'EDP 02',916667.00,'2016-06-01',0.00,0.00,0.00,'por pagar','30',478,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2775,247,'EDP 03',1666667.00,'2016-07-01',0.00,0.00,0.00,'por pagar','0',478,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2776,248,'EDP 01',2360000.00,'2016-07-26',0.00,118000.00,0.00,'por pagar','0',480,'2016-09-05','2016-08-31','2016-08-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2777,249,'EDP 01',216618.35,'2016-07-01',0.00,0.00,0.00,'Pagado','I/90800315',482,NULL,'2016-07-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2778,250,'EDP 01',79800.00,'2016-01-01',0.00,0.00,0.00,'pagado','',483,NULL,'2016-07-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2779,251,'EDP 01',83300.00,'2016-07-01',0.00,0.00,0.00,'0','0',484,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2780,252,'EDP 10',13690.00,'2015-10-01',0.00,0.00,0.00,'Pagado','0',495,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2781,253,'EDP 11',81.26,'2015-11-01',0.00,0.00,0.00,'Por Pagar','0',495,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2782,254,'EDP 12',63.30,'2015-12-01',0.00,0.00,0.00,'Por Pagar','0',495,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2783,255,'EDP 50',194940.00,'2011-07-22',0.00,0.00,0.00,'Pagado','0',496,NULL,'2015-10-31',NULL,'Revisar este EDP paro commitment',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2784,256,'EDP 51',3800.00,'2015-11-01',0.00,0.00,0.00,'Pagado','0',496,NULL,'2015-11-30',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2785,257,'EDP 52',3800.00,'2015-12-01',0.00,0.00,0.00,'Pagado','0',496,NULL,'2015-12-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2786,258,'EDP 53',3800.00,'2016-01-01',0.00,0.00,0.00,'Pagado','0',496,NULL,'2016-01-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2787,259,'EDP 54',3800.00,'2016-02-01',0.00,0.00,0.00,'Pagado','0',496,NULL,'2016-02-29',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2788,260,'EDP 55',3800.00,'2016-03-01',0.00,0.00,0.00,'Pagado','F/2486',496,NULL,'2016-03-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2789,261,'EDP 56',3800.00,'2016-04-01',0.00,0.00,0.00,'Pagado','F/2524',496,NULL,'2016-04-30',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2790,262,'EDP 57',3800.00,'2016-05-01',0.00,0.00,0.00,'Pagado','F/2546',496,NULL,'2016-05-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2791,263,'EDP 58',3800.00,'2016-06-01',0.00,0.00,0.00,'Pagado','F/26',496,'2016-07-04','2016-06-30','2016-07-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2792,264,'EDP 59',3800.00,'2016-07-01',0.00,0.00,0.00,'Pagado','F/69',496,'2016-08-19','2016-07-31','2016-08-15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2793,265,'EDP 60',3800.00,'2016-08-01',0.00,0.00,0.00,'Pagado','F/70',496,'2016-09-01','2016-08-31','2016-08-31','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2794,266,'EDP 40',358956673.00,'2015-09-01',0.00,0.00,0.00,'Pagado','0',497,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2795,267,'EDP 41',3297609.00,'2015-10-01',0.00,0.00,0.00,'Pagado','0',497,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2796,268,'EDP 42',3297609.00,'2015-11-01',0.00,0.00,0.00,'Pagado','0',497,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2797,269,'EDP 43',3297609.00,'2015-12-01',0.00,0.00,0.00,'Pagado','0',497,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2798,270,'EDP 44',3297609.00,'2016-01-01',0.00,0.00,0.00,'Pagado','0',497,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2799,271,'EDP 45',3297609.00,'2016-02-01',0.00,0.00,0.00,'por pagar','0',497,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2800,272,'EDP 01',177.55,'2013-10-11',0.00,0.00,0.00,'Pagado','0',498,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2801,273,'EDP 02',229.00,'2014-01-06',0.00,0.00,0.00,'Pagado','0',498,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2802,274,'EDP 03',243.00,'2014-02-01',0.00,0.00,0.00,'Pagado','0',498,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2803,275,'EDP 04',156.00,'2015-03-01',0.00,0.00,0.00,'Pagado','0',498,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2804,276,'EDP 05',41.70,'2015-04-01',0.00,0.00,0.00,'Pagado','0',498,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2805,277,'EDP 06',62.70,'2015-05-01',0.00,0.00,0.00,'Pagado','0',498,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2806,278,'EDP 07',469.46,'2016-08-01',0.00,0.00,0.00,'por pagar','0',498,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2807,279,'EDP 19',36632788.00,'2015-10-01',0.00,0.00,0.00,'Pagado','0',500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2808,280,'EDP 20',1525852.00,'2015-11-01',0.00,0.00,0.00,'Pagado','0',500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2809,281,'EDP 21',1170934.00,'2015-12-01',0.00,0.00,0.00,'Pagado','0',500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2810,282,'EDP 22',1176699.00,'2016-01-01',0.00,0.00,0.00,'Por Pagar','0',500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2811,283,'EDP 10',114710000.00,'2015-10-01',0.00,0.00,0.00,'Pagado','0',501,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2812,284,'EDP 11',4950000.00,'2015-11-01',0.00,0.00,0.00,'Por Pagar','0',501,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2813,285,'EDP 12',4450000.00,'2015-12-01',0.00,0.00,0.00,'Por Pagar','0',501,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2814,286,'EDP 01',1000000.00,'2015-12-01',0.00,0.00,0.00,'Pagado','0',504,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2815,287,'EDP 02',1000000.00,'2016-01-01',0.00,0.00,0.00,'Pagado','0',504,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2816,288,'EDP 03',1000000.00,'2016-02-01',0.00,0.00,0.00,'Pagado','0',504,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2817,289,'EDP 04',1000000.00,'2016-03-01',0.00,0.00,0.00,'Pagado','0',504,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2818,290,'EDP 45',25485000.00,'2015-10-01',0.00,0.00,0.00,'Pagado','0',505,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2819,291,'EDP 46',3300000.00,'2015-11-01',0.00,0.00,0.00,'Por Pagar','0',505,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2820,292,'EDP 47',1980000.00,'2015-12-01',0.00,0.00,0.00,'Por Pagar','0',505,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2821,293,'EDP 01',2762.70,'2010-01-01',0.00,0.00,0.00,'Pagado','0',508,NULL,'2015-11-30',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2822,294,'EDP 02',42.90,'2016-01-01',0.00,0.00,0.00,'Pagado','61797',508,NULL,'2016-01-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2823,295,'EDP 03',42.90,'2016-02-01',0.00,0.00,0.00,'Pagado','65872',508,NULL,'2016-02-29',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2824,296,'EDP 04',42.90,'2016-03-01',0.00,0.00,0.00,'Pagado','71072',508,NULL,'2016-03-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2825,297,'EDP 05',36.50,'2016-04-01',0.00,0.00,0.00,'Pagado','74142',508,NULL,'2016-04-30',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2826,298,'EDP 06',33.00,'2016-05-01',0.00,0.00,0.00,'Pagado','86455',508,'2016-07-12','2016-05-31','2016-07-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2827,299,'EDP 07',36.50,'2016-06-01',0.00,0.00,0.00,'Pagado','86456',508,'2016-07-12','2016-06-30','2016-07-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2828,300,'EDP 08',36.50,'2016-07-01',0.00,0.00,0.00,'Pagado','0',508,'2016-09-06','2016-07-31','2016-09-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2829,301,'EDP 01',6350783.00,'2016-01-01',0.00,0.00,0.00,'Pagado','0',512,NULL,'2016-01-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2830,302,'EDP 02',6350783.00,'2016-02-01',0.00,0.00,0.00,'Pagado','0',512,NULL,'2016-02-29',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2831,303,'EDP 03',6350783.00,'2016-03-01',0.00,0.00,0.00,'Pagado','F/141',512,NULL,'2016-03-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2832,304,'EDP 04',6350783.00,'2016-04-01',0.00,0.00,0.00,'Pagado','F/145',512,NULL,'2016-04-30',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2833,305,'EDP 05',6350783.00,'2016-05-01',0.00,0.00,0.00,'Pagado','0',512,'2016-06-10','2016-05-31','2016-06-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2834,306,'EDP 06',6350783.00,'2016-06-01',0.00,0.00,0.00,'Pagado','0',512,'2016-07-20','2016-06-30','2016-07-18','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2835,307,'EDP 07',6102263.00,'2016-07-01',0.00,0.00,0.00,'Pagado','F/164',512,'2016-09-09','2016-07-31','2016-08-31','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2836,308,'EDP 08',6350783.00,'2016-08-01',0.00,0.00,0.00,'Pagado','0',512,'2016-09-15','2016-08-31','2016-09-07','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2837,309,'EDP 01',5660.55,'2015-12-01',0.00,0.00,0.00,'Pagado','0',514,NULL,'2016-08-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2838,310,'EDP 01',103000.00,'2016-03-01',0.00,0.00,0.00,'Pagado','0',516,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2839,311,'EDP 02',3812.91,'2016-07-01',0.00,0.00,0.00,'Pagado','0',516,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2840,312,'EDP 01',58650.00,'2016-02-01',0.00,0.00,0.00,'Pagado','0',517,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2841,313,'EDP 02',11616.00,'2016-04-01',0.00,0.00,0.00,'Pagado','3708',517,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2842,314,'EDP 01',22.00,'2016-01-01',0.00,0.00,0.00,'Pagado','0',518,NULL,'2016-01-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2843,315,'EDP 01',5160000.00,'2016-01-01',0.00,0.00,0.00,'Pagado','0',519,NULL,'2016-01-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2844,316,'EDP 02',3170000.00,'2016-02-01',0.00,0.00,0.00,'Pagado','0',519,NULL,'2016-02-29',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2845,317,'EDP 03',4360000.00,'2016-03-01',0.00,0.00,0.00,'Pagado','0',519,NULL,'2016-03-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2846,318,'EDP 04',7419600.00,'2016-04-01',0.00,0.00,0.00,'Pagado','0',519,NULL,'2016-04-30',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2847,319,'EDP 05',4210000.00,'2016-05-01',0.00,0.00,0.00,'Pagado','0',519,'2016-08-03','2016-05-31','2016-07-29','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2848,320,'EDP 06',3424400.00,'2016-06-01',0.00,0.00,0.00,'Por p','0',519,'2016-08-03','2016-06-30','2016-07-29','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2849,321,'EDP 01',54.18,'2016-01-01',0.00,0.00,0.00,'Pagado','5976 y NTC 359',520,NULL,'2016-01-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2850,322,'EDP 02',54.18,'2016-02-01',0.00,0.00,0.00,'Pagado','5978',520,NULL,'2016-02-29',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2851,323,'EDP 03',54.18,'2016-03-01',0.00,0.00,0.00,'Pagado','5979',520,NULL,'2016-03-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2852,324,'EDP 04',54.18,'2016-04-01',0.00,0.00,0.00,'Pagado','6740',520,NULL,'2016-04-30',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2853,325,'EDP 05',54.18,'2016-05-01',0.00,0.00,0.00,'Pagado','0',520,'2016-06-14','2016-05-31','2016-06-10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2854,326,'EDP 06',54.18,'2016-06-01',0.00,0.00,0.00,'Pagado','0',520,'2016-09-06','2016-06-30','2016-09-02','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2855,327,'EDP 07',54.18,'2016-07-01',0.00,0.00,0.00,'Pagado','0',520,'2016-09-06','2016-07-31','2016-09-02','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2856,328,'EDP 08',54.18,'2016-08-01',0.00,0.00,0.00,'Pagado','0',520,'2016-09-06','2016-08-31','2016-09-02','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2857,329,'EDP 01',700000.00,'2016-02-01',0.00,0.00,0.00,'Por Pagar','0',521,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2858,330,'EDP 01',878151.00,'2016-02-01',0.00,0.00,0.00,'Por Pagar','0',522,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2859,331,'EDP 01',2016807.00,'2016-02-01',0.00,0.00,0.00,'Por Pagar','0',523,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2860,332,'EDP 01',855002.00,'2016-02-01',0.00,0.00,0.00,'Por Pagar','0',524,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2861,333,'EDP 01',10200.00,'2016-02-23',0.00,0.00,0.00,'Pagado','F_1193',525,NULL,'2016-03-30',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2862,334,'EDP 01',45150.00,'2016-02-16',0.00,0.00,0.00,'Pagado','PJ 2010028',526,NULL,'2016-03-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2863,335,'EDP 02',45150.00,'2016-04-01',0.00,0.00,0.00,'Pagado','PJ 2017005',526,NULL,'2016-05-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2864,336,'EDP 01',3572820.00,'2016-02-01',0.00,0.00,0.00,'Por Pagar','0',527,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2865,337,'EDP 01',2500.00,'2016-03-01',0.00,0.00,0.00,'Pagado','0',528,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2866,338,'EDP 02',7500.00,'2016-04-01',0.00,0.00,0.00,'Pagado','0',528,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2867,339,'EDP 01',168480.00,'2016-03-01',0.00,0.00,0.00,'Por Pagar','0',529,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2868,340,'EDP 01',537480.00,'2016-05-01',0.00,0.00,0.00,'Pagado','0',535,NULL,'2016-05-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2869,341,'EDP 02',390075.00,'2016-06-01',0.00,0.00,0.00,'Pagado','16',535,'2016-07-13','2016-06-30','2016-07-13','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2870,342,'EDP 03',385079.00,'2016-07-01',0.00,0.00,0.00,'Pagado','0',535,'2016-08-12','2016-07-31','2016-08-09','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2871,343,'EDP 04',347506.00,'2016-08-01',0.00,0.00,0.00,'Pagado','0',535,'2016-09-15','2016-08-31','2016-09-15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2872,344,'EDP 01',2290000.00,'2016-05-01',0.00,0.00,0.00,'Pagado','F/718',537,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2873,345,'EDP 01',1410000.00,'2016-06-14',0.00,0.00,0.00,'Pagado','F/11',554,'2016-07-26','2016-06-30','2016-07-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2874,346,'EDP 02',2585000.00,'2016-07-01',0.00,0.00,0.00,'Pagado','F/12',554,'2016-08-03','2016-07-31','2016-07-31','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2875,347,'EDP 03',4700000.00,'2016-08-01',0.00,0.00,0.00,'Pagado','F/13',554,'2016-08-23','2016-08-31','2016-08-16','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2876,348,'EDP 01',22215.00,'2016-06-10',0.00,0.00,0.00,'Pagado','F/11',555,'2016-08-10','2016-07-31','2016-08-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2877,349,'EDP 01',2400000.00,'2016-06-01',0.00,0.00,0.00,'pagado','0',556,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2878,350,'EDP 02',5600000.00,'2016-07-01',0.00,0.00,0.00,'Por Pagar','0',556,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2879,351,'EDP 01',13486.00,'2016-08-01',0.00,0.00,0.00,'Por Pagar','0',582,'2016-08-09','2016-08-01','2016-08-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2880,352,'EDP 02',22860.00,'2016-08-01',0.00,0.00,0.00,'Por Pagar','0',582,'2016-08-18','2016-08-31','2016-08-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2881,NULL,'EDP 01',239162074.00,'2016-07-25',NULL,11958104.00,NULL,'Pagado','',472,'2016-09-16','2016-08-25','2016-09-15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2882,NULL,'EDP 01',1832.00,'2016-08-08',NULL,NULL,NULL,'Pagado','F/82',493,'2016-09-16','2016-09-16','2016-09-12','EDP 01 Anticipo',NULL,NULL,NULL,NULL,2.00,NULL,1.00,3.00,756.00,NULL,NULL),(2883,NULL,'EDP 01',1821300.00,'2016-07-20',NULL,NULL,NULL,'Pagado','F/1247',577,'2016-09-15','2016-07-31','2016-09-14','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2884,NULL,'EDP 02',6336604.00,'2016-08-01',NULL,NULL,NULL,'Pagado','F/1248',577,'2016-09-15','2016-08-31','2016-09-14','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2885,NULL,'EDP 01',375.90,'2016-08-01',NULL,NULL,NULL,'Pagado','F/13599',569,'2016-08-09','2016-08-31','2016-08-01','F/13599',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2886,NULL,'EDP 02',375.90,'2016-08-01',NULL,NULL,NULL,'Pagado','F/14259',569,'2016-09-16','2016-08-14','2016-09-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2887,NULL,'EDP 03',501.20,'2016-09-15',NULL,NULL,NULL,'Pagado','F/14500',569,'2016-09-21','2016-09-01','2016-09-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2888,NULL,'EDP 01',266667.00,'2016-07-01',NULL,NULL,NULL,'Pagado','',566,NULL,'2016-07-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2889,NULL,'EDP 02',266667.00,'2016-08-01',NULL,NULL,NULL,'Pagado','',566,NULL,'2016-08-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2890,NULL,'EDP 01',433333.00,'2016-07-04',NULL,NULL,NULL,'Pagado','',565,'2016-09-21','2016-07-31','2016-09-09','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2891,NULL,'EDP 01',72.00,'2016-06-10',NULL,NULL,NULL,'Pagado','',553,'2016-08-09','2016-07-31','2016-08-04','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2892,NULL,'EDP 02',125.00,'2016-08-01',NULL,NULL,NULL,'Pagado','F/40',553,'2016-09-16','2016-08-31','2016-09-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2893,NULL,'EDP 01',1671875.00,'2016-06-06',NULL,NULL,NULL,'Pagado','F/841',540,'2016-09-21','2016-07-31','2016-09-13','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2894,NULL,'EDP 02',305634.02,'2016-08-01',NULL,NULL,NULL,'Pagado','I/90806306',482,NULL,'2016-08-28',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2895,NULL,'EDP 01',27.50,'2016-06-10',NULL,NULL,NULL,'Por Pagar','',551,'2016-08-29','2016-06-30','2016-08-29','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2896,NULL,'EDP 02',27.50,'2016-07-01',NULL,NULL,NULL,'Por Pagar','',551,'2016-08-29','2016-07-31','2016-08-29','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2897,NULL,'EDP 03',27.50,'2016-08-01',NULL,NULL,NULL,'Pagado','F/107',551,'2016-08-29','2016-08-31','2016-08-29','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2898,NULL,'EDP 09',1650000.00,'2016-09-01',NULL,82500.00,NULL,'Pagado','F/133',470,'2016-09-28','2016-09-30','2016-09-27','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2899,NULL,'EDP 01',1545.30,'2016-06-20',NULL,NULL,NULL,'Pagado','F/32229',479,'2016-09-29','2016-07-31','2016-09-13','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2900,NULL,'EDP 01',6949670.00,'2016-07-18',NULL,NULL,NULL,'Pagado','F/1340',574,'2016-09-21','2016-07-31','2016-09-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2901,NULL,'EDP 05',6200000.00,'2016-07-01',NULL,310000.00,NULL,'Por Pagar','',474,'2016-09-29','2016-07-31','2016-09-21','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2902,NULL,'EDP 01',482.85,'2016-05-05',NULL,NULL,NULL,'Pagado','F/968',476,'2016-09-21','2016-07-31','2016-09-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2903,NULL,'EDP 01',142.20,'2016-06-01',NULL,NULL,NULL,'Por Pagar','',594,'2016-08-31','2016-06-30','2016-09-08','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2904,NULL,'EDP 02',142.20,'2016-07-01',NULL,NULL,NULL,'Por Pagar','',594,'2016-08-31','2016-07-31','2016-09-08','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2905,NULL,'EDP 03',142.20,'2016-08-01',NULL,NULL,NULL,'Por Pagar','',594,'2016-09-26','2016-08-31','2016-09-08','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2906,NULL,'EDP 04',4700000.00,'2016-09-01',NULL,NULL,NULL,'Pagado','F/15',554,'2016-10-03','2016-09-30','2016-09-28','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2907,NULL,'EDP 07',0.00,'2016-07-01',NULL,NULL,484.18,'Pagado','F/708',467,'2016-09-22','2016-07-31','2016-09-12','EDP Devolución retenciones',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2908,NULL,'EDP 12',12.25,'2016-09-01',NULL,0.62,NULL,'Pagado','F/251',463,'2016-10-03','2016-09-30','2016-10-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2909,NULL,'EDP 01',168.50,'2016-07-16',NULL,NULL,NULL,'Por Pagar','',557,'2016-09-27','2016-07-31','2016-09-19','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2910,NULL,'EDP 02',337.00,'2016-08-01',NULL,NULL,NULL,'Por Pagar','',557,'2016-09-27','2016-08-31','2016-09-19','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2911,NULL,'EDP 01',673200.00,'2016-09-01',NULL,NULL,NULL,'Por pagar','',492,'2016-10-05','2016-09-30','2016-10-04','Por pagar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2912,NULL,'EDP 02',11400.00,'2016-08-01',NULL,NULL,NULL,'Por Pagar','',483,NULL,'2016-08-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2913,NULL,'EDP 03',11400.00,'2016-09-01',NULL,NULL,NULL,'Por Pagar','',483,NULL,'2016-09-30',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2914,NULL,'EDP 02',11900.00,'2016-08-01',NULL,NULL,NULL,'Pagado','',484,NULL,'2016-08-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2915,NULL,'EDP 03',11900.00,'2016-09-01',NULL,NULL,NULL,'Pagado','',484,NULL,'2016-09-30',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2916,NULL,'EDP 02',2445545.00,'2016-08-01',NULL,NULL,NULL,'10','',574,'2016-10-03','2016-08-31','2016-10-03','Rev Fechas de EDP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2917,NULL,'EDP 21',5318100.00,'2016-09-01',NULL,NULL,NULL,'Pagado','F/207',454,'2016-10-03','2016-09-30','2016-10-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2918,NULL,'EDP 01',142.74,'2016-07-15',NULL,NULL,NULL,'por pagar','',593,'2016-09-28','2016-08-30','2016-09-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2919,NULL,'EDP 01',6010.26,'2016-08-16',NULL,NULL,NULL,'por pagar','',589,'2016-10-05','2016-08-30','2016-10-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2920,NULL,'EDP 01',5959154.00,'2016-07-07',NULL,NULL,NULL,'por pagar','',563,'2016-10-12','2016-07-16','2016-10-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2921,NULL,'EDP 02',917450.00,'2016-07-16',NULL,NULL,NULL,'por pagar','',563,'2016-10-12','2016-07-16','2016-10-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2922,NULL,'EDP 02',13267548.00,'2016-08-01',NULL,NULL,NULL,'por pagar','',473,'2016-10-04','2016-08-31','2016-09-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2923,NULL,'EDP 03',12569256.00,'2016-09-01',NULL,NULL,NULL,'por pagar','',473,'2016-10-04','2016-09-30','2016-09-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2924,NULL,'EDP 09',36.50,'2016-08-01',NULL,NULL,NULL,'por pagar','',508,'2016-10-03','2016-08-31','2016-10-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2925,NULL,'EDP 10',30.70,'2016-09-01',NULL,NULL,NULL,'por pagar','',508,'2016-10-03','2016-09-30','2016-10-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2926,NULL,'EDP 02',712.72,'2016-08-01',NULL,35.64,NULL,'por pagar','',460,'2016-10-14','2016-08-31','2016-08-27','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2927,NULL,'EDP 07',5630000.00,'2016-07-01',NULL,NULL,NULL,'Por pagar','',519,'2016-10-27','2016-07-31','2016-10-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2928,NULL,'EDP 08',2973333.00,'2016-08-01',NULL,NULL,NULL,'Por pagar','',519,'2016-10-27','2016-08-31','2016-10-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2929,NULL,'EDP 01',4895000.00,'2016-09-15',NULL,NULL,NULL,'Por pagar','',598,'2016-10-28','2016-09-30','2016-10-11','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2930,NULL,'EDP 02',85661421.00,'2016-08-26',NULL,4283071.00,NULL,'Por pagar','',472,'2016-10-27','2016-09-08','2016-10-27','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2931,NULL,'EDP 02',410938.00,'2016-08-01',NULL,NULL,NULL,'Por pagar','',540,'2016-10-21','2016-08-31','2016-10-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2932,NULL,'EDP 22',3314791.00,'2016-06-01',NULL,NULL,NULL,'Por pagar','',450,'2016-10-20','2016-06-30','2016-10-19','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2933,NULL,'EDP 23',3314791.00,'2016-07-01',NULL,NULL,NULL,'Por pagar','',450,'2016-10-20','2016-07-31','2016-10-19','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2934,NULL,'EDP 24',3314791.00,'2016-08-01',NULL,NULL,NULL,'Por pagar','',450,'2016-10-20','2016-08-31','2016-10-19','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2935,NULL,'EDP 02',2854.40,'2016-08-01',NULL,NULL,NULL,'Por pagar','',479,'2016-10-17','2016-08-31','2016-09-21','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2936,NULL,'EDP 02',21450.00,'2016-08-01',NULL,NULL,NULL,'Pagado','F/17',555,'2016-10-17','2016-08-31','2016-10-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2937,NULL,'EDP 03',19905.00,'2016-09-01',NULL,NULL,NULL,'Pagado','F/18',555,'2016-10-17','2016-09-30','2016-10-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2938,NULL,'EDP 18',249.68,'2016-09-01',0.00,NULL,NULL,'Por Pagar','',459,'2016-10-17','2016-09-30','2016-10-06','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,200.00,NULL),(2939,NULL,'EDP 02',2446667.00,'2016-09-01',NULL,122333.00,NULL,'Por pagar','',480,'2016-10-18','2016-09-30','2016-09-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2940,NULL,'EDP 20',32.00,'2016-09-01',NULL,NULL,NULL,'Pagado','F/822',452,'2016-10-12','2016-09-30','2016-09-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2941,NULL,'EDP 03',80.00,'2016-09-01',NULL,NULL,NULL,'Por Pagar','',553,'2016-10-12','2016-09-30','2016-10-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2942,NULL,'EDP 06',2100000.00,'2016-09-01',NULL,105000.00,NULL,'Pagado','F/686',477,'2016-10-17','2016-09-30','2016-10-07','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2943,NULL,'EDP 11',40800.00,'2016-09-01',NULL,NULL,NULL,'Por pagar','',451,'2016-10-12','2016-09-30','2016-09-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2944,NULL,'EDP 04',27.50,'2016-09-01',NULL,NULL,NULL,'Pagado','F/148',551,'2016-10-12','2016-09-30','2016-10-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2945,NULL,'EDP 03',1154.83,'2016-09-01',NULL,57.74,NULL,'Por pagar','',460,'2016-10-27','2016-09-30','2016-10-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2946,NULL,'EDP 03',1214.20,'2016-09-01',NULL,NULL,NULL,'Por Pagar','',479,'2016-10-27','2016-09-30','2016-10-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2947,NULL,'EDP 01',424.20,'2015-11-01',NULL,NULL,NULL,'Pagado','',469,NULL,'2016-03-01',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2948,NULL,'EDP 03',313407.10,'2016-09-01',NULL,NULL,NULL,'Pagado','',482,NULL,'2016-09-30',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2949,NULL,'EDP 01',1385320.00,'2016-10-25',NULL,NULL,NULL,'Pagado','F/1296',608,'2016-11-11','2016-10-27','2016-11-11','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2950,NULL,'EDP 07',2100000.00,'2016-10-01',NULL,105000.00,NULL,'Pagado','F/695',477,'2016-11-11','2016-10-31','2016-11-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2951,NULL,'EDP 01',240000.00,'2016-07-01',NULL,NULL,NULL,'Pagado','B/37',564,'2016-07-28','2016-07-31','2016-07-28','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2952,NULL,'EDP 02',240000.00,'2016-08-01',NULL,NULL,NULL,'Pagado','B/38',564,'2016-08-30','2016-08-31','2016-08-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2953,NULL,'EDP 03',240000.00,'2016-09-01',NULL,NULL,NULL,'Por Pagar','',564,'2016-10-03','2016-09-30','2016-09-28','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2954,NULL,'EDP 04',240000.00,'2016-10-01',NULL,NULL,NULL,'Por Pagar','',564,'2016-11-03','2016-10-31','2016-11-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2955,NULL,'EDP 01',19059933.00,'2016-07-19',NULL,952997.00,NULL,'Por Pagar','',561,'2016-10-24','2016-07-31','2016-10-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2956,NULL,'EDP 02',11189059.00,'2016-08-01',NULL,559453.00,NULL,'Por Pagar','',561,'2016-10-24','2016-08-31','2016-10-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2957,NULL,'EDP 03',2408400.00,'2016-09-01',NULL,120420.00,NULL,'Por pagar','',561,'2016-10-24','2016-09-13','2016-10-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2958,NULL,'EDP 06',6200000.00,'2016-09-01',NULL,310000.00,NULL,'Por Pagar','',474,'2016-11-03','2016-09-30','2016-10-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2959,NULL,'EDP 21',900000.00,'2016-09-01',NULL,NULL,NULL,'Por pagar','',456,'2016-11-08','2016-09-30','2016-11-08','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2960,NULL,'EDP 22',900000.00,'2016-10-01',NULL,NULL,NULL,'Por pagar','',456,'2016-11-08','2016-10-31','2016-11-08','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2961,NULL,'EDP 22',5318100.00,'2016-10-01',NULL,NULL,NULL,'Por pagar','',454,'2016-11-08','2016-10-31','2016-11-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2962,NULL,'EDP 13',20.11,'2016-10-01',NULL,1.01,NULL,'Pagado','F/278',463,'2016-11-03','2016-10-31','2016-11-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2963,NULL,'EDP 01',515.00,'2016-09-16',NULL,NULL,NULL,'Por Pagar','',599,'2016-11-03','2016-10-16','2016-10-26','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2964,NULL,'EDP 05',4700000.00,'2016-10-01',NULL,NULL,NULL,'Pagado','F/15',554,'2016-11-08','2016-10-31','2016-11-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2965,NULL,'EDP 05',27.50,'2016-10-01',NULL,NULL,NULL,'Por pagar','',551,'2016-11-11','2016-10-31','2016-11-08','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2966,NULL,'EDP 01',56395.11,'2016-07-18',NULL,NULL,NULL,'Pagado','I/9903744480',580,NULL,'2016-09-22',NULL,'Invoice de feca 23 Sept 2016 (revisar si hay otros)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2967,NULL,'EDP 01',50000.00,'2016-08-01',NULL,NULL,NULL,'Pagado','',583,'2016-11-10','2016-09-15','2016-11-10','Invoice de fecha 10/11/2016',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2968,NULL,'EDP 12',1896812.00,'2016-07-01',NULL,94841.00,NULL,'Por pagar','',461,'2016-11-03','2016-07-31','2016-10-19','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2969,NULL,'EDP 09',6350783.00,'2016-09-01',NULL,NULL,NULL,'Pagado','F/173',512,'2016-10-17','2016-09-30','2016-09-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2970,NULL,'EDP 03',4222222.00,'2016-09-01',NULL,211111.00,NULL,'Por pagar','',480,'2016-11-18','2016-09-30','2016-11-11','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2971,NULL,'EDP 01',3691460.00,'2016-11-14',NULL,NULL,NULL,'Por pagar','',621,'2016-11-21','2016-11-21','2016-11-21','EDP 01 Final, Ajustar con ODC para Cierre (correo de Alejandro 20161219, dice anticipo de 5.000.000?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2972,NULL,'EDP 01',180.00,'2016-04-28',NULL,NULL,NULL,'Pagado','',531,NULL,'2016-05-06',NULL,'Confirmar Pago. CG NLS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2973,NULL,'EDP 01',3437650.00,'2015-11-01',NULL,NULL,NULL,'Pagado','',533,NULL,'2015-11-01',NULL,'Confirmar Pago. CG NLS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2974,NULL,'EDP 01',4280000.00,'2015-11-01',NULL,NULL,NULL,'Pagado','',536,NULL,'2015-11-01',NULL,'CG:Pagado',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2975,NULL,'EDP 01',1350000.00,'2016-06-10',NULL,NULL,NULL,'Pagado','',547,NULL,'2016-06-10',NULL,'Confirmar Pago. CG NLS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2976,NULL,'EDP 01',1551714.00,'2016-06-13',NULL,NULL,NULL,'Pagado','',548,NULL,'2016-06-13',NULL,'CG:Pagado',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2977,NULL,'EDP 01',155.00,'2016-07-10',NULL,NULL,NULL,'Pagado','',568,NULL,'2016-07-30',NULL,'CG:Pagado',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2978,NULL,'EDP 01',3053145.00,'2016-07-17',NULL,NULL,NULL,'Pagado','',573,NULL,'2016-07-22',NULL,'CG:Pagado',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2979,NULL,'EDP 02',629.00,'2016-09-01',NULL,NULL,NULL,'Pagado','',514,NULL,'2016-09-30',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2980,NULL,'EDP 03',629.00,'2016-10-01',NULL,NULL,NULL,'Pagado','',514,NULL,'2016-10-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2981,NULL,'EDP 04',629.00,'2016-11-01',NULL,NULL,NULL,'Pagado','',514,NULL,'2016-11-30',NULL,'Pago inicio mes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2982,NULL,'EDP 01',58.00,'2016-08-01',NULL,NULL,NULL,'Pagado','',584,'2016-08-31','2016-08-31','2016-08-31','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2983,NULL,'EDP 02',58.00,'2016-09-01',NULL,NULL,NULL,'Pagado','',584,'2016-09-30','2016-09-30','2016-09-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2984,NULL,'EDP 03',58.00,'2016-10-01',NULL,NULL,NULL,'Pagado','',584,'2016-10-31','2016-10-31','2016-10-31','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2985,NULL,'EDP 04',58.00,'2016-11-01',NULL,NULL,NULL,'Pagado','',584,'2016-11-30','2016-11-30','2016-11-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2986,NULL,'EDP 01',36.80,'2016-08-01',NULL,NULL,NULL,'Pagado','',585,'2016-08-31','2016-08-31','2016-08-31','Pagado',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2987,NULL,'EDP 02',36.80,'2016-09-01',NULL,NULL,NULL,'Pagado','',585,'2016-09-01','2016-09-30','2016-09-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2988,NULL,'EDP 03',36.80,'2016-10-01',NULL,NULL,NULL,'Pagado','',585,'2016-10-31','2016-10-31','2016-10-31','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2989,NULL,'EDP 04',36.80,'2016-11-01',NULL,NULL,NULL,'Pagado','',585,'2016-11-01','2016-11-30','2016-11-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2990,NULL,'EDP 01',28.00,'2016-08-01',NULL,NULL,NULL,'Pagado','',587,'2016-08-01','2016-08-31','2016-08-01','Pagado',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2991,NULL,'EDP 02',28.00,'2016-09-01',NULL,NULL,NULL,'Pagado','',587,'2016-09-01','2016-09-30','2016-09-01','Pagado',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2992,NULL,'EDP 03',28.00,'2016-10-01',NULL,NULL,NULL,'Pagado','',587,'2016-10-01','2016-09-30','2016-10-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2993,NULL,'EDP 04',28.00,'2016-11-01',NULL,NULL,NULL,'Pagado','',587,'2016-11-01','2016-11-30','2016-11-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2994,NULL,'EDP 01',1473331.00,'2016-08-01',NULL,NULL,NULL,'Pagado','',586,'2016-08-01','2016-08-31','2016-08-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2995,NULL,'EDP 02',1473331.00,'2016-09-01',NULL,NULL,NULL,'Pagado','',586,'2016-09-01',NULL,'2016-09-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2996,NULL,'EDP 03',1473331.00,'2016-10-01',NULL,NULL,NULL,'Pagado','',586,'2016-10-01','2016-10-31','2016-10-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2997,NULL,'EDP 04',1473331.00,'2016-11-01',NULL,NULL,NULL,'Pagado','',586,'2016-11-01','2016-11-30','2016-11-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2998,NULL,'EDP 01',11.50,'2016-08-01',NULL,NULL,NULL,'Pagado','',588,'2016-08-01','2016-08-31','2016-08-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2999,NULL,'EDP 02',11.50,'2016-09-01',NULL,NULL,NULL,'Pagado','',588,'2016-09-01','2016-09-30','2016-09-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3000,NULL,'EDP 03',11.50,'2016-10-01',NULL,NULL,NULL,'Pagado','',588,'2016-10-01','2016-10-31','2016-10-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3001,NULL,'EDP 04',11.50,'2016-11-01',NULL,NULL,NULL,'Pagado','',588,'2016-11-01','2016-11-30','2016-11-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3002,NULL,'EDP 01',21402.00,'2016-05-25',NULL,NULL,NULL,'Pagado','',541,'2016-07-01','2016-05-26','2016-07-01','Acuerdo detalle de cobro',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3003,NULL,'EDP 01',2411524.00,'2016-06-21',NULL,NULL,NULL,'Pagado','F_1400',562,'2016-06-30','2016-06-30','2016-06-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3004,NULL,'EDP 03',28044130.00,'2016-06-01',NULL,NULL,NULL,'Pagado','F/1449',574,'2016-10-27','2016-06-30','2016-10-10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3005,NULL,'EDP 04',6389030.00,'2016-09-01',NULL,NULL,NULL,'Pagado','F/1450',574,'2016-10-27','2016-09-30','2016-10-10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3006,NULL,'EDP 03',5883683.00,'2016-09-01',NULL,NULL,NULL,'Pagado','',577,'2016-10-21','2016-09-30','2016-10-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3007,NULL,'EDP 02',20421.26,'2016-08-01',NULL,NULL,NULL,'Pagado','',580,'2016-11-04','2016-09-30','2016-11-02','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3008,NULL,'EDP 01',8640000.00,'2016-08-01',NULL,NULL,NULL,'Pagado','',579,'2016-08-31','2016-12-31','2016-08-31','Confirmar Pago. CG NLS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3009,NULL,'EDP 03',66826.00,'2016-10-01',NULL,NULL,NULL,'Por pagar','',582,'2016-11-23','2016-11-11','2016-11-22','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3010,NULL,'EDP 01',0.00,'2016-09-01',-3472499.00,NULL,NULL,'Pagado','',600,'2016-10-28','2016-09-30','2016-10-28','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3011,NULL,'EDP 01',360000.00,'2016-07-01',NULL,NULL,NULL,'Pagado','',570,NULL,'2016-10-31',NULL,'Verificar pago',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3012,NULL,'EDP 61',3800.00,'2016-09-01',0.00,0.00,0.00,'Por pagar','',496,'2016-11-22','2016-09-30','2016-10-10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3013,NULL,'EDP 62',3800.00,'2016-10-01',0.00,0.00,0.00,'Por pagar','',496,'2016-11-22','2016-10-31','2016-11-10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3014,NULL,'EDP 10',1650000.00,'2016-10-01',NULL,82500.00,NULL,'Pagado','F/140',470,'2016-11-04','2016-10-31','2016-10-24','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3015,NULL,'EDP 05',270369.00,'2016-09-01',NULL,NULL,NULL,'Por pagar','',535,'2016-11-24','2016-10-31','2016-11-09','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3016,NULL,'EDP 02',758.94,'2016-08-01',NULL,NULL,NULL,'Por pagar','',476,'2016-11-24','2016-10-31','2016-11-21','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3017,NULL,'EDP 04',1888.37,'2016-10-01',NULL,94.42,NULL,'Por pagar','',460,'2016-11-23','2016-10-31','2016-11-21','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3018,NULL,'EDP 07',7000000.00,'2016-10-01',NULL,350000.00,NULL,'Por pagar','',474,'2016-11-24','2016-10-31','2016-11-18','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3019,NULL,'EDP 02',9790000.00,'2016-10-01',NULL,NULL,NULL,'Por pagar','',598,'2016-11-23','2016-10-31','2016-11-21','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3020,NULL,'EDP 09',54.18,'2016-09-01',NULL,NULL,NULL,'Por pagar','',520,'2016-11-24','2016-09-30','2016-11-24','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3021,NULL,'EDP 04',142.20,'2016-09-01',NULL,NULL,NULL,'Por pagar','',594,'2016-11-24','2016-09-30','2016-11-21','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3022,NULL,'EDP 01',0.00,'2016-11-11',-4165000.00,NULL,NULL,'Pagado','',601,'2016-10-05','2016-11-11','2016-10-01','falta copia de EDP en carpeta',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3023,NULL,'EDP 03',266667.00,'2016-09-01',NULL,NULL,NULL,'Por pagar','',566,'2016-11-11','2016-09-30','2016-11-09','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3024,NULL,'EDP 04',266667.00,'2016-10-01',NULL,NULL,NULL,'Por pagar','',566,'2016-11-23','2016-10-31','2016-11-11','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3025,NULL,'EDP 05',266667.00,'2016-11-01',NULL,NULL,NULL,'Por pagar','',566,'2016-11-30','2016-11-30','2016-11-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3026,NULL,'EDP 01',1215000.00,'2016-07-01',NULL,NULL,NULL,'Por pagar','',538,'2016-11-26','2016-07-31','2016-11-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3027,NULL,'EDP 02',4050000.00,'2016-08-01',NULL,NULL,NULL,'Por pagar','',538,'2016-11-28','2016-08-31','2016-11-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3028,NULL,'EDP 03',1710000.00,'2016-09-01',NULL,NULL,NULL,'Por pagar','',538,'2016-11-28','2016-09-30','2016-11-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3029,NULL,'EDP 04',1215000.00,'2016-10-01',NULL,NULL,NULL,'Por pagar','',538,'2016-11-28','2016-10-31','2016-11-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3030,NULL,'EDP 10',6350783.00,'2016-10-01',NULL,NULL,NULL,'Por Pagar','',512,'2016-11-29','2016-10-31','2016-11-16','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3031,NULL,'EDP 01',17669.00,'2016-08-11',NULL,NULL,NULL,'Pagado','F/973',591,'2016-11-30','2016-12-05','2016-11-04','Revisar, se hace ODC después de aprobada factura ?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3032,NULL,'EDP 04',13267548.00,'2016-10-01',NULL,NULL,NULL,'10','',473,'2016-11-28','2016-10-28','2016-11-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3033,NULL,'EDP 05',15361520.00,'2016-10-29',NULL,NULL,NULL,'Por pagar','',473,'2016-11-28','2016-11-28','2016-11-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3034,NULL,'EDP 01',6.60,'2016-11-01',NULL,NULL,NULL,'Por pagar','',622,'2016-11-29','2016-11-30','2016-11-15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3035,NULL,'EDP 11',1650000.00,'2016-11-01',NULL,82500.00,NULL,'Por pagar','',470,'2016-11-29','2016-11-30','2016-11-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3036,NULL,'EDP 04',4250.00,'2016-10-01',NULL,NULL,NULL,'Por pagar','',555,'2016-11-27','2016-10-12','2016-10-13','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3037,NULL,'EDP 19',440.16,'2016-10-01',57.00,NULL,NULL,'Por pagar','',459,'2016-11-29','2016-10-31','2016-11-08','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3038,NULL,'EDP 23',5318100.00,'2016-11-01',NULL,NULL,NULL,'Por pagar','',454,'2016-12-01','2016-11-30','2016-12-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3039,NULL,'EDP 21',32.00,'2016-10-01',NULL,NULL,NULL,'Pagado','F/842',452,'2016-11-03','2016-10-31','2016-10-24','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3040,NULL,'EDP 22',32.00,'2016-11-01',NULL,NULL,NULL,'Por pagar','',452,'2016-12-01','2016-11-30','2016-11-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3041,NULL,'EDP 01',17500000.00,'2016-09-30',NULL,NULL,NULL,'Pagado','',635,'2016-09-30','2016-09-30','2016-09-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3042,NULL,'EDP 01',32000000.00,'2016-09-30',NULL,NULL,NULL,'Pagado','',636,'2016-09-30','2016-09-30','2016-09-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3043,NULL,'EDP 02',19200000.00,'2016-09-30',NULL,NULL,NULL,'Pagado','',636,'2016-10-31','2016-10-31','2016-10-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3044,NULL,'EDP 01',1750000.00,'2016-09-23',-3500000.00,NULL,NULL,'Pagado','',637,'2016-11-10','2016-11-30','2016-11-07','EDP 01 incluye Anticipo y avance',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3045,NULL,'EDP 01',1750000.00,'2016-09-23',-3500000.00,NULL,NULL,'Pagado','',638,'2016-11-07','2016-11-30','2016-11-07','EDP 01 incluye Anticipo y avance',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3046,NULL,'EDP 01',1750000.00,'2016-11-01',-3500000.00,NULL,NULL,'Pagado','',639,'2016-11-08','2016-11-30','2016-11-08','EDP 01 incluye Anticipo y avance',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3047,NULL,'EDP 01',0.00,'2016-09-30',-7000000.00,NULL,NULL,'Pagado','',640,'2016-11-21','2016-11-30','2016-11-21','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3048,NULL,'EDP 01',0.00,'2016-11-01',-10000000.00,NULL,NULL,'10','',642,'2016-11-21','2016-11-30','2016-11-21','Revisar el pago, incluye compra a trecero, todo pagado a municipalidad?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3049,NULL,'EDP 01',165112834.00,'2016-10-17',NULL,NULL,NULL,'Por pagar','',626,'2016-12-05','2016-11-27','2016-11-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3050,NULL,'EDP 25',3314791.00,'2016-09-01',NULL,NULL,NULL,'Por pagar','',450,'2016-12-01','2016-09-30','2016-11-29','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3051,NULL,'EDP 26',3314791.00,'2016-10-01',NULL,NULL,NULL,'Por pagar','',450,'2016-12-05','2016-10-31','2016-11-29','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3052,NULL,'EDP 01',366.48,'2016-10-19',NULL,NULL,NULL,'Por pagar','',602,'2016-12-05','2016-11-30','2016-11-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3053,NULL,'EDP 05',0.00,'2016-11-01',0.00,NULL,NULL,'Por pagar','',460,'2016-12-05','2016-11-01','2016-12-05','Anticipo 1 Nov',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,21552.05,NULL),(3054,NULL,'EDP 06',0.00,'2016-12-02',0.00,NULL,NULL,'Por pagar','',460,NULL,'2016-12-02',NULL,'Anticipo 2 mes nov',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17676.03,NULL),(3055,NULL,'EDP 04',84.00,'2016-10-01',NULL,NULL,NULL,'Por pagar','',553,'2016-12-01','2016-10-31','2016-11-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3056,NULL,'EDP 05',62.00,'2016-11-01',NULL,NULL,NULL,'Por pagar','',553,'2016-12-07','2016-11-30','2016-12-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3057,NULL,'EDP 09',2525000.00,'2016-09-01',NULL,NULL,NULL,'Por pagar','',519,'2016-11-08','2016-09-30','2016-10-24','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3058,NULL,'EDP 10',4140000.00,'2016-10-01',NULL,NULL,NULL,'Por pagar','',519,'2016-12-07','2016-10-31','2016-12-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3059,NULL,'EDP 11',6350783.00,'2016-11-01',NULL,NULL,NULL,'Por pagar','',512,'2016-12-12','2016-11-30','2016-12-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3060,NULL,'EDP 12',6350783.00,'2016-12-01',NULL,NULL,NULL,'Por pagar','',512,'2016-12-12','2016-12-31','2016-12-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3061,NULL,'EDP 08',2100000.00,'2016-11-01',NULL,NULL,NULL,'Por pagar','',477,'2016-12-12','2016-11-30','2016-12-06','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3062,NULL,'EDP 09',7166000.00,'2016-09-01',NULL,358300.00,NULL,'Por pagar','',471,'2016-11-04','2016-09-30','2016-10-26','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3063,NULL,'EDP 10',7166000.00,'2016-10-01',NULL,358300.00,NULL,'Por pagar','',471,'2016-11-29','2016-10-31','2016-11-29','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3064,NULL,'EDP 11',7166000.00,'2016-11-01',NULL,358300.00,NULL,'Por pagar','',471,'2016-11-29','2016-11-30','2016-11-29','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3065,NULL,'EDP 12',8283000.00,'2016-12-01',NULL,414150.00,NULL,'Por pagar','',471,'2016-12-12','2016-12-31','2016-12-10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3066,NULL,'EDP 14',15.10,'2016-11-01',NULL,0.75,NULL,'Por pagar','',463,'2016-12-12','2016-11-30','2016-12-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3067,NULL,'EDP 04',6172183.00,'2016-10-01',NULL,NULL,NULL,'Por pagar','',577,'2016-12-12','2016-10-31','2016-11-24','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3068,NULL,'EDP 11',66.10,'2016-10-01',NULL,NULL,NULL,'Por pagar','',508,'2016-12-12','2016-10-31','2016-12-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3069,NULL,'EDP 12',51.30,'2016-11-01',NULL,NULL,NULL,'Por pagar','',508,'2016-12-12','2016-11-30','2016-12-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3070,NULL,'EDP 01',0.00,'2016-12-01',-13500000.00,NULL,NULL,'Por pagar','',614,'2016-12-10','2016-12-31','2016-12-10','Regularizar EDP de Anticipo, es el 30%?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3071,NULL,'EDP 10',54.20,'2016-10-01',NULL,NULL,NULL,'Por pagar','',520,'2016-12-20','2016-10-31','2016-12-02','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3072,NULL,'EDP 11',54.20,'2016-11-01',NULL,NULL,NULL,'Por pagar','',520,'2016-12-20','2016-11-30','2016-12-07','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3073,NULL,'EDP 06',27.50,'2016-11-01',NULL,NULL,NULL,'Por pagar','',551,NULL,'2016-11-30',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3074,NULL,'EDP 04',412.40,'2016-10-01',NULL,NULL,NULL,'Por pagar','',479,'2016-12-20','2016-10-31','2016-12-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3075,NULL,'EDP 07',27.50,'2016-12-01',NULL,NULL,NULL,'Por pagar','',551,'2016-12-20','2016-12-31','2016-12-15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3076,NULL,'EDP 05',240000.00,'2016-11-01',NULL,NULL,NULL,'Por pagar','',564,'2016-12-05','2016-11-30','2016-12-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3077,NULL,'EDP 06',240000.00,'2016-12-01',NULL,NULL,NULL,'Por pagar','',564,'2016-12-20','2016-12-31','2016-12-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3078,NULL,'EDP 02',190547362.00,'2016-11-28',NULL,NULL,NULL,'Por pagar','',626,NULL,'2016-12-31',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3079,NULL,'EDP 01',705079.98,'2016-10-03',NULL,NULL,NULL,'Por pagar','',634,'2016-12-15','2016-12-14','2016-12-15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3080,NULL,'EDP 02',502925.96,'2016-11-28',NULL,NULL,NULL,'Por pagar','',634,'2016-12-20','2017-01-01','2016-12-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3081,NULL,'EDP 01',2230000.00,'2016-11-01',NULL,NULL,NULL,'Por pagar','',623,'2016-12-07','2016-11-30','2016-12-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3082,NULL,'EDP 02',6690000.00,'2016-12-01',NULL,NULL,NULL,'Por pagar','',623,'2016-12-15','2016-12-31','2016-12-14','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3083,NULL,'EDP 06',266666.70,'2016-12-01',NULL,NULL,NULL,'Por pagar','',566,'2016-12-20','2016-12-31','2016-12-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3084,NULL,'EDP 23',32.00,'2016-12-01',NULL,NULL,NULL,'Por pagar','',452,'2016-12-20','2016-12-31','2016-12-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3085,NULL,'EDP 05',22775.00,'2016-11-13',NULL,NULL,NULL,'Por pagar','',555,'2016-12-20','2016-11-27','2016-12-02','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3086,NULL,'EDP 11',1790000.00,'2016-11-01',NULL,NULL,NULL,'Por pagar','',519,'2016-12-19','2016-11-30','2016-12-15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3087,NULL,'EDP 12',1340000.00,'2016-12-01',NULL,NULL,NULL,'Por pagar','',519,'2016-12-19','2016-12-31','2016-12-14','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3088,NULL,'EDP 01',0.00,'2016-11-15',-10500000.00,NULL,NULL,'Por pagar','',645,'2016-12-21','2016-11-15','2016-12-20','Anticipo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3089,NULL,'EDP 02',396.00,'2016-12-01',NULL,NULL,NULL,'Por pagar','',602,'2016-12-19','2016-12-31','2016-12-14','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3090,NULL,'EDP 27',3314791.00,'2016-11-01',NULL,NULL,NULL,'Por pagar','',450,'2016-12-20','2016-11-30','2016-11-29','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3091,NULL,'EDP 28',3314791.00,'2016-12-01',NULL,NULL,NULL,'Por pagar','',450,'2016-12-20','2016-12-31','2016-11-19','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3092,NULL,'EDP 06',12578474.00,'2016-12-01',NULL,NULL,NULL,'Por pagar','',473,'2016-12-20','2016-12-31','2016-12-13','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3093,NULL,'EDP 20',411.10,'2016-11-01',31.10,NULL,NULL,'Por pagar','',459,'2016-12-21','2016-11-30','2016-12-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3094,NULL,'EDP 01',273.46,'2016-11-01',NULL,NULL,NULL,'Por pagar','',559,'2016-12-19','2016-11-30','2016-12-02','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3095,NULL,'EDP 05',11084919.00,'2016-11-01',NULL,NULL,NULL,'Por pagar','',577,'2016-12-21','2016-11-30','2016-12-14','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3096,NULL,'EDP 06',8712077.00,'2016-12-01',NULL,NULL,NULL,'Por pagar','',577,'2016-12-21','2016-12-31','2016-12-14','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3097,NULL,'EDP 03',410938.00,'2016-09-01',NULL,NULL,NULL,'Por pagar','',540,'2016-12-21','2016-09-30','2016-12-15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3098,NULL,'EDP 04',910000.00,'2016-10-01',NULL,NULL,NULL,'Por pagar','',540,'2016-12-20','2016-10-31','2016-12-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3099,NULL,'EDP 13',1896812.00,'2016-08-01',NULL,94840.60,NULL,'Por pagar','',461,'2016-12-20','2016-08-31','2016-11-15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3100,NULL,'EDP 14',1203615.00,'2016-10-01',NULL,60180.75,NULL,'Por pagar','',461,'2016-12-21','2016-10-31','2016-11-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3101,NULL,'EDP 15',1203615.00,'2016-11-01',NULL,60180.75,NULL,'Por pagar','',461,'2016-12-21','2016-11-30','2016-12-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3102,NULL,'EDP 24',5318100.00,'2016-12-01',NULL,NULL,NULL,'Por pagar','',454,'2016-12-21','2016-12-31','2016-12-19','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3103,NULL,'EDP 23',900000.00,'2016-11-01',NULL,NULL,NULL,'Pagado','',456,'2016-12-21','2016-11-30','2016-12-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3104,NULL,'EDP 24',900000.00,'2016-12-01',NULL,NULL,NULL,'Por pagar','',456,'2016-12-31','2016-12-31','2016-12-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3105,NULL,'EDP 05',142.20,'2016-10-01',NULL,NULL,NULL,'Por pagar','',594,'2016-12-21','2016-10-31','2016-12-15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3106,NULL,'EDP 06',142.20,'2016-11-01',NULL,NULL,NULL,'Por pagar','',594,'2016-12-21','2016-11-30','2016-12-15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3107,NULL,'EDP 07',142.20,'2016-12-01',NULL,NULL,NULL,'Por pagar','',594,'2016-12-21','2016-12-31','2016-12-15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3108,NULL,'EDP 63',3800.00,'2016-11-01',NULL,NULL,NULL,'Por pagar','',496,'2016-12-21','2016-11-30','2016-11-28','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3109,NULL,'EDP 64',3800.00,'2016-12-01',NULL,NULL,NULL,'Por pagar','',496,'2016-12-21','2016-12-31','2016-12-14','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3110,NULL,'EDP 01',9600.00,'2016-11-01',NULL,NULL,NULL,'Por pagar','',581,'2016-12-20','2016-11-30','2016-12-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3111,NULL,'EDP 02',22400.00,'2016-12-01',NULL,NULL,NULL,'Por pagar','',581,'2016-12-21','2016-12-31','2016-12-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3112,NULL,'EDP 02',8330000.00,'2016-11-01',4165000.00,NULL,NULL,'Por pagar','',601,'2016-12-21','2016-11-30','2016-11-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3113,NULL,'EDP 01',66.00,'2016-08-01',NULL,3.30,NULL,'Por pagar','',488,'2016-12-21','2016-08-31','2016-12-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3114,NULL,'EDP 01',66.00,'2016-08-01',NULL,3.30,NULL,'Por pagar','',488,'2016-12-21','2016-08-31','2016-12-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3115,NULL,'EDP 03',168.50,'2016-09-01',NULL,NULL,NULL,'Por pagar','',557,'2016-12-31','2016-09-30','2016-12-21','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3116,NULL,'EDP 01',78.00,'2016-08-01',NULL,NULL,NULL,'Por pagar','',490,'2016-12-31','2016-08-31','2016-12-15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3117,NULL,'EDP 02',673200.00,'2016-10-01',NULL,NULL,NULL,'Por pagar','',492,'2016-11-08','2016-10-31','2016-11-08','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3118,NULL,'EDP 03',673200.00,'2016-11-01',NULL,NULL,NULL,'Por pagar','',492,'2016-12-05','2016-11-30','2016-12-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3119,NULL,'EDP 04',953700.00,'2016-12-01',NULL,NULL,NULL,'Por pagar','',492,'2016-12-21','2016-12-31','2016-12-21','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3120,NULL,'EDP 18',156.31,'2016-06-01',NULL,7.82,NULL,'Por pagar','',453,'2016-12-10','2016-06-30','2016-12-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3121,NULL,'EDP 07',24550.00,'2016-08-01',NULL,NULL,NULL,'Por pagar','',468,'2016-11-29','2016-10-31','2016-11-24','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3122,NULL,'EDP 01',11633426.00,'2016-12-01',NULL,NULL,NULL,'Por pagar','',647,'2016-12-23','2016-12-31','2016-12-22','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3123,NULL,'EDP 02',15000.00,'2016-11-01',NULL,NULL,NULL,'Por pagar','',525,'2016-12-23','2016-11-30','2016-12-22','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3124,NULL,'EDP 08',6200000.00,'2016-11-01',NULL,310000.00,NULL,'Por pagar','',474,'2016-12-23','2016-11-30','2016-12-22','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3125,NULL,'EDP 09',5500000.00,'2016-12-01',NULL,275000.00,NULL,'Por pagar','',474,'2016-12-23','2016-12-31','2016-12-22','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3126,NULL,'EDP 02',63426.10,'2016-12-01',NULL,NULL,NULL,'Por pagar','',475,'2016-12-23','2016-12-31','2016-12-22','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3127,NULL,'EDP 03',0.00,'2016-12-01',NULL,NULL,16241175.00,'Por pagar','',472,'2016-12-14','2016-12-31','2016-12-12','DEVOLUCION DE RETENCIONES',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3128,NULL,'EDP 01',1708.00,'2016-11-01',NULL,NULL,NULL,'Por pagar','',609,'2016-12-23','2016-12-30','2016-12-22','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3129,NULL,'EDP 02',1642.00,'2016-12-01',NULL,NULL,NULL,'Por pagar','',609,'2016-12-23','2016-12-31','2016-12-22','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3130,NULL,'EDP 02',11574998.00,'2016-12-01',3472499.00,NULL,NULL,'Por pagar','',600,'2016-12-23','2016-12-31','2016-12-22','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3131,NULL,'EDP 05',2151000.00,'2016-10-01',NULL,NULL,NULL,'Pagado','',538,'2016-12-23','2016-10-31','2016-12-23','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3132,NULL,'EDP 06',1689000.00,'2016-11-01',NULL,NULL,NULL,'Pagado','',538,'2016-12-23','2016-11-30','2016-12-23','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3133,NULL,'EDP 01',0.00,'2016-12-16',-3000000.00,NULL,NULL,'Por pagar','',643,'2016-12-12','2016-12-16','2016-12-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3134,NULL,'EDP 04',128256.94,'2016-10-01',NULL,NULL,NULL,'Por pagar','',482,'2016-12-10','2016-10-31','2016-12-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3135,NULL,'EDP 01',41005.90,'2016-03-01',NULL,NULL,NULL,'Por pagar','',558,'2017-01-04','2016-12-31','2016-12-22','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3136,NULL,'EDP 15',12.50,'2016-12-01',NULL,0.63,NULL,'Por pagar','',463,'2017-01-12','2016-12-31','2017-01-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3137,NULL,'EDP 01',4420000.00,'2016-11-01',NULL,NULL,NULL,'Por pagar','',597,'2017-01-12','2016-11-30','2016-12-23','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3138,NULL,'EDP 01',213.75,'2016-08-01',NULL,NULL,NULL,'Por pagar','',491,'2017-01-12','2016-11-30','2016-12-24','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3139,NULL,'EDP 01',2130800.00,'2016-12-01',NULL,NULL,NULL,'Por pagar','',653,'2017-01-17','2016-12-31','2017-01-13','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3140,NULL,'EDP 09',2456610.00,'2016-12-01',NULL,122830.00,NULL,'Por pagar','',477,'2017-01-25','2016-12-31','2016-12-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3141,NULL,'EDP 06',524668.00,'2016-12-01',NULL,NULL,NULL,'Por pagar','',535,'2017-01-26','2016-12-31','2017-01-26','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3142,NULL,'EDP 04',3350334.00,'2016-12-01',NULL,176333.00,627778.00,'Por pagar','',480,'2017-01-26','2016-12-31','2017-01-16','REVISAR CIERRE CON ESTE EDP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3143,NULL,'EDP 03',6690000.00,'2017-01-01',NULL,NULL,NULL,'Por pagar','',623,'2017-01-24','2017-01-31','2017-01-16','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3144,NULL,'EDP 21',300.00,'2016-12-01',0.00,0.00,0.00,'Por pagar','',459,'2017-02-02','2016-12-31','2016-12-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3145,NULL,'EDP 01',1360000.00,'2016-07-01',NULL,NULL,NULL,'Por pagar','',560,'2016-07-30','2016-07-30','2016-07-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3146,NULL,'EDP 02',1888889.00,'2016-12-01',NULL,NULL,NULL,'Por pagar','',560,'2017-02-03','2016-12-20','2017-01-02','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3147,NULL,'EDP 01',3100000.00,'2016-06-01',NULL,NULL,NULL,'Por pagar','',550,'2017-02-03','2016-06-30','2017-01-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3148,NULL,'EDP 02',450000.00,'2016-07-01',NULL,NULL,NULL,'Por pagar','',550,'2017-02-03','2017-01-31','2017-01-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3149,NULL,'EDP 03',9790000.00,'2016-11-01',NULL,NULL,NULL,'Por pagar','',598,'2017-02-03','2016-11-30','2017-02-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3150,NULL,'EDP 04',9790000.00,'2016-12-01',NULL,NULL,NULL,'Por pagar','',598,'2016-02-03','2016-12-31','2016-02-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3151,NULL,'EDP 02',19690386.00,'2016-09-01',NULL,NULL,NULL,'Por pagar','',562,'2016-02-03','2016-09-30','2016-02-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3152,NULL,'EDP 12',146.61,'2016-12-01',NULL,NULL,NULL,'Por pagar','',520,'2016-02-03','2016-12-31','2016-02-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3153,NULL,'EDP 10',2100000.00,'2017-01-01',NULL,105000.00,NULL,'Por pagar','',477,'2017-02-03','2017-01-31','2017-02-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3154,NULL,'EDP 01',110.00,'2017-01-01',NULL,NULL,NULL,'Por pagar','',656,'2017-02-03','2017-01-31','2017-01-26','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3155,NULL,'EDP 24',45.00,'2017-01-01',NULL,NULL,NULL,'Por pagar','',452,'2017-02-03','2017-01-31','2017-01-27','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3156,NULL,'EDP 13',51.30,'2016-12-01',NULL,NULL,NULL,'Por pagar','',508,'2017-02-03','2016-12-31','2017-02-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3157,NULL,'EDP 01',12352054.00,'2017-01-04',NULL,NULL,NULL,'Por pagar','',650,'2017-02-03','2017-01-31','2017-01-27','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3158,NULL,'EDP 05',750000.00,'2016-11-01',NULL,NULL,NULL,'Por pagar','',540,'2016-02-10','2016-11-30','2016-01-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3159,NULL,'EDP 03',1296.00,'2017-01-01',NULL,NULL,NULL,'Por pagar','',609,'2017-02-10','2017-01-31','2017-01-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3160,NULL,'EDP 07',17668770.00,'2017-01-01',NULL,NULL,NULL,'Por pagar','',473,'2017-02-10','2017-01-31','2017-01-26','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3161,NULL,'EDP 01',396.00,'2017-01-01',NULL,NULL,NULL,'Por pagar','retenciones?, no aplica!',655,'2017-02-15','2017-01-31','2017-01-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3162,NULL,'EDP 01',59147.24,'2017-01-01',NULL,NULL,NULL,'Por pagar','',660,'2017-02-16','2017-01-31','2017-02-16','lo indicado en ret corresponde a un descuento arreglar en R7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,43091.00),(3163,NULL,'EDP 01',16.40,'2016-08-16',NULL,NULL,NULL,'Por pagar','',487,'2017-02-21','2017-01-05','2017-02-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3164,NULL,'EDP 01',1444456.00,'2017-01-13',NULL,NULL,NULL,'10','',659,'2017-02-13','2017-01-31','2017-02-27','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3165,NULL,'EDP 04',6690000.00,'2017-02-01',NULL,NULL,NULL,'Por pagar','',623,'2017-02-21','2017-02-28','2017-02-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3166,NULL,'EDP 07',336280.00,'2017-01-01',NULL,NULL,NULL,'Por pagar','',535,'2017-02-22','2017-01-31','2017-02-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3167,NULL,'EDP 07',3179.92,'2016-11-01',2175.73,159.00,NULL,'Por pagar','',460,'2017-02-24','2016-11-30','2017-01-26','EDP retenido por no entrega de información a workmate',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3179,NULL,'EDP 25',45.00,'2017-02-01',NULL,NULL,NULL,'Por pagar','',452,'2017-02-28','2017-02-28','2017-02-24','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3194,NULL,'EDP 02',3.30,'2017-01-01',NULL,NULL,NULL,'Por pagar','',622,'2017-03-01','2017-01-31','2017-02-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3195,NULL,'EDP 03',610679.33,'2017-01-02',NULL,NULL,NULL,'Por pagar','',634,'2017-03-02','2017-01-28','2017-02-07','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3196,NULL,'EDP 01',219.83,'2017-01-01',NULL,NULL,NULL,'Por pagar','',652,'2017-03-02','2017-01-31','2017-01-27','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3197,NULL,'EDP 06',61.00,'2016-12-01',NULL,NULL,NULL,'Por pagar','',553,'2017-01-04','2016-12-31','2017-01-04','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3198,NULL,'EDP 07',55.00,'2017-01-01',NULL,NULL,NULL,'Por pagar','',553,'2017-02-28','2017-01-31','2017-01-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3199,NULL,'EDP 06',16725.00,'2016-11-01',NULL,NULL,NULL,'Por pagar','',555,'2017-03-02','2017-01-22','2017-02-06','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3200,NULL,'EDP 02',22700.00,'2017-02-01',NULL,NULL,NULL,'10','',660,'2017-02-24','2017-02-28','2017-02-24','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3201,NULL,'EDP 22',300.00,'2017-01-02',0.00,NULL,NULL,'Por pagar','',459,'2017-01-31','2017-01-31','2017-02-28','Ver Fondos por rendir y dev',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,275.30,NULL),(3202,NULL,'EDP 23',536.00,'2017-02-01',NULL,NULL,NULL,'Por pagar','',459,'2017-03-06','2017-02-28','2017-03-06','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3203,NULL,'EDP 02',396.00,'2017-02-01',NULL,NULL,NULL,'Por pagar','',655,'2017-03-10','2017-02-28','2017-02-24','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3204,NULL,'EDP 11',2100000.00,'2017-02-01',NULL,105000.00,NULL,'Por pagar','',477,'2017-03-09','2017-02-28','2017-03-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3205,NULL,'EDP 05',7859428.00,'2017-10-01',NULL,NULL,NULL,'por pagar','',574,'2016-10-31','2017-10-31','2016-10-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3206,NULL,'EDP 06',11147690.00,'2016-11-01',NULL,NULL,NULL,'Por pagar','',574,'2017-03-10','2016-11-30','2017-02-22','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3207,NULL,'EDP 07',5608426.00,'2016-12-01',NULL,NULL,NULL,'Por pagar','',574,'2017-03-10','2016-12-31','2017-02-22','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3208,NULL,'EDP 13',7286000.00,'2017-01-01',NULL,364300.00,NULL,'Por pagar','',471,'2017-03-15','2017-01-31','2017-02-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3209,NULL,'EDP 14',7286000.00,'2017-02-01',NULL,364300.00,NULL,'Por pagar','',471,'2017-02-28','2017-02-28','2017-02-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3210,NULL,'EDP 01',8237000.00,'2017-03-01',NULL,NULL,NULL,'Por pagar','',613,'2017-03-13','2017-03-31','2017-03-13','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3211,NULL,'EDP 02',110.00,'2017-02-01',NULL,NULL,NULL,'Por pagar','',656,'2017-03-15','2017-02-28','2017-03-08','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3212,NULL,'EDP 01',108.20,'2017-01-01',NULL,NULL,NULL,'Por pagar','',644,'2017-03-15','2017-01-31','2017-03-15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3213,NULL,'EDP 01',1950.00,'2016-12-27',NULL,NULL,NULL,'Por pagar','',648,'2017-06-13','2017-02-28','2017-03-07','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3214,NULL,'EDP 03',113923489.00,'2017-01-01',NULL,NULL,NULL,'Por pagar','',626,'2017-03-16','2017-01-29','2017-02-26','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3215,NULL,'EDP 01',807326.00,'2016-10-01',NULL,NULL,NULL,'Por pagar','',610,'2017-01-12','2016-10-31','2016-12-21','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3216,NULL,'EDP 02',323663.00,'2016-11-01',NULL,NULL,NULL,'Por pagar','',610,'2017-03-15','2017-01-31','2017-03-15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3217,NULL,'EDP 06',790000.00,'2016-12-01',NULL,NULL,NULL,'Por pagar','',540,'2017-03-17','2016-12-31','2017-03-02','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3218,NULL,'EDP 07',346000.00,'2017-01-01',NULL,NULL,NULL,'Por pagar','',540,'2017-03-17','2017-01-31','2017-03-10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3219,NULL,'EDP 08',846000.00,'2017-02-01',NULL,NULL,NULL,'Por pagar','',540,'2017-03-17','2017-03-15','2017-03-10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3220,NULL,'EDP 13',2160000.00,'2017-01-01',NULL,108000.00,NULL,'Por pagar','',470,'2017-03-17','2017-01-31','2017-01-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3221,NULL,'EDP 14',2160000.00,'2017-02-01',NULL,108000.00,NULL,'Por pagar','',470,'2017-03-17','2017-02-28','2017-02-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3222,NULL,'EDP 03',77649.20,'2017-02-01',NULL,4200.00,NULL,'Por pagar','',660,NULL,'2017-03-15',NULL,'RETENCION STI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3223,NULL,'EDP 01',19800.00,'2017-02-20',NULL,NULL,NULL,'Por pagar','',662,'2017-03-22','2017-03-20','2017-03-22','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3224,NULL,'EDP 01',13800000.00,'2017-01-30',NULL,NULL,NULL,'Por pagar','',657,'2017-03-24','2017-03-24','2017-03-24','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3225,NULL,'EDP 07',23449470.00,'2017-01-01',NULL,NULL,NULL,'Por pagar','',577,'2017-03-23','2017-01-31','2017-03-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3226,NULL,'EDP 08',20001820.00,'2017-02-01',NULL,NULL,NULL,'Por pagar','',577,'2017-03-22','2017-02-28','2016-02-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3227,NULL,'EDP 04',1296.00,'2017-02-01',NULL,NULL,NULL,'Por pagar','',609,'2017-03-24','2017-02-28','2017-02-28','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3228,NULL,'EDP 02',24.43,'2017-02-01',NULL,NULL,NULL,'Por pagar','',652,'2017-03-23','2017-02-28','2017-02-21','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3229,NULL,'EDP 01',140113280.00,'2017-02-01',NULL,7005664.00,NULL,'Por pagar','',612,'2017-03-24','2017-02-25','2017-03-21','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3230,NULL,'EDP 05',1296.00,'2017-03-01',NULL,NULL,NULL,'Por pagar','',609,'2017-03-31','2017-03-31','2017-03-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3231,NULL,'EDP 03',396.00,'2017-03-01',NULL,NULL,NULL,'Por pagar','',655,'2017-03-31','2017-03-31','2017-03-29','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3232,NULL,'EDP 15',2160000.00,'2017-03-01',NULL,108000.00,NULL,'Por pagar','',470,'2017-03-29','2017-03-31','2017-03-24','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3233,NULL,'EDP 08',9139.00,'2016-11-01',NULL,NULL,NULL,'Por pagar','',468,'2017-03-29','2016-12-31','2017-01-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3234,NULL,'EDP 16',12.50,'2017-01-01',NULL,0.63,NULL,'Por pagar','F/430',463,'2017-04-12','2017-01-31','2017-03-07','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3235,NULL,'EDP 17',126.38,'2017-02-01',NULL,6.32,NULL,'Por pagar','F/431',463,'2017-04-12','2017-02-28','2017-03-07','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3236,NULL,'EDP 18',84.79,'2017-03-01',NULL,4.24,NULL,'Por pagar','F/432',463,'2017-04-12','2017-03-31','2017-03-28','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3237,NULL,'EDP 02',10000000.00,'2017-01-01',7000000.00,NULL,NULL,'Por pagar','',640,'2017-04-12','2017-03-31','2017-03-29','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3238,NULL,'EDP 03',12800000.00,'2017-01-01',NULL,NULL,NULL,'Por pagar','',636,'2017-04-12','2017-03-31','2017-03-28','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3240,NULL,'EDP 01',5819418.00,'2017-03-05',NULL,NULL,NULL,'Por pagar','',669,NULL,'2017-03-21','2017-04-17','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3241,NULL,'EDP 01',39534.77,'2016-12-20',NULL,3953.48,0.00,'Por pagar','',605,'2017-04-17','2017-01-31','2017-04-11','EDP en revisión por Reembolsanbles 17/04/2017',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3242,NULL,'EDP 05',9790000.00,'2017-01-01',NULL,489500.00,NULL,'Por pagar','',598,'2017-04-13','2017-01-31','2017-04-13','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3243,NULL,'EDP 06',9790000.00,'2017-02-01',NULL,489500.00,NULL,'Por pagar','',598,'2017-04-13','2017-02-28','2017-04-13','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3244,NULL,'EDP 07',9790000.00,'2017-03-01',NULL,489500.00,NULL,'Por pagar','',598,'2017-04-13','2017-03-31','2017-04-13','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3245,NULL,'EDP 05',6690000.00,'2017-03-01',NULL,NULL,NULL,'Por pagar','',623,'2017-03-29','2017-03-31','2017-03-29','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3246,NULL,'EDP 06',6690000.00,'2017-04-01',NULL,NULL,NULL,'Por pagar','',623,NULL,'2017-04-30','2017-04-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3247,NULL,'EDP 04',48527.60,'2017-03-01',NULL,2400.00,NULL,'Por pagar','',660,'2017-04-07','2017-03-31','2017-04-07','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3248,NULL,'EDP 05',17400.00,'2017-04-01',NULL,1740.00,NULL,'Por pagar','',660,NULL,'2017-04-30','2017-04-24','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3249,NULL,'EDP 02',10278326.00,'2017-02-01',NULL,NULL,NULL,'Por pagar','',650,'2017-04-24','2017-02-28','2017-04-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3250,NULL,'EDP 01',21880456.00,'2017-01-30',NULL,1094023.00,NULL,'Por pagar','',627,'2017-04-26','2017-02-24','2017-04-11','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3251,NULL,'EDP 01',706425.00,'2017-02-01',NULL,35321.25,NULL,'Por pagar','',631,'2017-04-04','2017-01-21','2017-03-21','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3252,NULL,'EDP 01',163400.00,'2017-01-01',NULL,NULL,NULL,'Por pagar','',684,'2017-04-08','2017-01-31','2017-04-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3253,NULL,'EDP 08',15950.07,'2016-12-01',10001.75,797.50,NULL,'Por pagar','',460,'2017-04-07','2016-12-31','2017-04-07','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3254,NULL,'EDP 01',10035931.00,'2017-03-08',NULL,NULL,NULL,'Por pagar','',665,'2017-04-07','2017-03-23','2017-03-29','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3255,NULL,'EDP 24',532.30,'2017-03-01',64.43,NULL,NULL,'Por pagar','',459,'2017-04-07','2017-03-31','2017-03-31','Revisar al parecer no se descuenta rendición de fondos',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3256,NULL,'EDP 04',131.25,'2017-11-01',NULL,6.56,NULL,'Por pagar','',557,'2017-04-07','2017-11-30','2017-03-23','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3257,NULL,'EDP 05',195.89,'2017-12-01',NULL,9.79,NULL,'Por pagar','',557,'2017-04-04','2017-12-31','2017-03-29','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3258,NULL,'EDP 06',195.89,'2017-01-01',NULL,9.79,NULL,'Por pagar','',557,'2017-04-03','2017-01-31','2017-03-23','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3259,NULL,'EDP 26',45.00,'2017-03-01',NULL,NULL,NULL,'Por pagar','',452,'2017-04-12','2017-03-31','2017-03-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3260,NULL,'EDP 01',43866069.00,'2016-01-12',NULL,NULL,NULL,'Por pagar','',654,'2017-04-12','2017-02-15','2017-03-24','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3261,NULL,'EDP 04',136041666.00,'2017-02-01',NULL,NULL,NULL,'Por pagar','',626,'2017-04-13','2017-02-26','2017-04-06','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3262,NULL,'EDP 15',4552536.00,'2017-06-01',NULL,227626.80,NULL,'Por pagar','',455,'2017-04-13','2017-12-31','2017-03-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3263,NULL,'EDP 13',6692000.00,'2016-12-01',NULL,NULL,NULL,'Por pagar','',519,'2017-04-13','2016-12-31','2017-04-04','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3264,NULL,'EDP 14',1340000.00,'2017-01-01',NULL,NULL,NULL,'Por pagar','',519,'2017-04-13','2017-01-31','2017-04-04','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3265,NULL,'EDP 15',990000.00,'2017-02-01',NULL,NULL,NULL,'Por pagar','',519,'2017-04-13','2017-02-28','2017-04-04','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3266,NULL,'EDP 16',1340000.00,'2017-03-01',NULL,NULL,NULL,'Por pagar','',519,'2017-04-13','2017-03-31','2017-04-04','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3267,NULL,'EDP 01',275.77,'2017-01-01',NULL,NULL,NULL,'Por pagar','',663,'2017-04-17','2017-01-31','2017-02-28','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3268,NULL,'EDP 04',1022226.24,'2017-02-01',NULL,NULL,NULL,'Por pagar','',634,'2017-04-17','2017-02-28','2017-04-13','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3269,NULL,'EDP 25',900000.00,'2017-01-01',NULL,NULL,NULL,'Por pagar','',456,'2017-04-20','2017-01-31','2017-03-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3270,NULL,'EDP 26',900000.00,'2017-02-01',NULL,NULL,NULL,'Por pagar','',456,'2017-04-01','2017-02-28','2017-03-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3271,NULL,'EDP 27',900000.00,'2017-03-01',NULL,NULL,NULL,'Por pagar','',456,'2017-04-20','2017-03-31','2017-03-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3272,NULL,'EDP 03',6156388.00,'2017-03-01',NULL,NULL,NULL,'Por pagar','',650,'2017-04-25','2017-03-31','2017-04-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3273,NULL,'EDP 01',22239150.00,'2017-01-19',NULL,1111957.50,NULL,'Por pagar','',628,'2017-04-26','2017-02-24','2017-03-29','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3274,NULL,'EDP 01',132544406.00,'2017-02-16',NULL,6627220.30,NULL,'Por pagar','',603,'2017-04-27','2017-03-31','2017-04-26','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3275,NULL,'EDP 01',34.00,'2016-08-03',NULL,1.70,NULL,'Por pagar','',489,'2017-05-03','2016-12-13','2017-03-09','Entregado a posterioridad por M.A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3276,NULL,'EDP 25',570.10,'2017-04-01',NULL,NULL,NULL,'Por pagar','',459,'2017-05-08','2017-04-30','2017-04-27','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3277,NULL,'EDP 02',8477069.00,'2017-03-24',NULL,422353.45,NULL,'Por pagar','',665,'2017-05-08','2017-04-07','2017-03-29','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3278,NULL,'EDP 02',1055.90,'2017-03-01',NULL,40.59,NULL,'Por pagar','',648,'2017-05-08','2017-03-31','2017-04-26','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3279,NULL,'EDP 03',27000000.00,'2017-01-01',13500000.00,NULL,NULL,'Por pagar','',614,'2017-05-08','2017-04-28','2017-02-22','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3280,NULL,'EDP 02',18000000.00,'2017-01-01',NULL,NULL,NULL,'Por pagar','',614,'2017-02-28','2017-02-24','2017-02-22','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3281,NULL,'EDP 03',377778.00,'2017-01-01',NULL,NULL,NULL,'Por pagar','',560,'2017-05-08','2017-01-31','2017-05-08','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3282,NULL,'EDP 02',126.00,'2017-01-01',NULL,NULL,NULL,'Por pagar','',490,'2017-05-08','2017-01-21','2017-04-04','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3283,NULL,'EDP 08',692497.00,'2017-02-01',NULL,NULL,NULL,'Por pagar','',535,'2017-05-08','2017-02-28','2017-05-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3284,NULL,'EDP 02',124.25,'2017-01-01',NULL,NULL,NULL,'Por pagar','',559,'2017-05-08','2017-03-31','2017-04-21','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3285,NULL,'EDP 01',444444.44,'2017-01-15',NULL,NULL,NULL,'Por pagar','',651,'2017-03-23','2017-01-31','2017-03-23','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3286,NULL,'EDP 02',888888.88,'2017-02-01',NULL,NULL,NULL,'Por pagar','',651,'2017-05-08','2017-02-28','2017-03-28','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3287,NULL,'EDP 03',888888.88,'2017-03-01',NULL,NULL,NULL,'Por pagar','',651,'2017-04-08','2017-03-31','2017-04-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3288,NULL,'EDP 04',888888.88,'2017-04-01',NULL,NULL,NULL,'Por pagar','',651,'2017-05-08','2017-04-30','2017-04-28','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3289,NULL,'EDP 15',7286000.00,'2017-03-01',NULL,364300.00,NULL,'Por pagar','',471,'2017-05-08','2017-03-31','2017-04-24','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3290,NULL,'EDP 16',2160000.00,'2017-04-01',NULL,108000.00,NULL,'Por pagar','',470,'2017-05-08','2017-04-30','2017-05-02','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3291,NULL,'EDP 12',1650000.00,'2016-12-01',NULL,82500.00,NULL,'Por pagar','',470,'2016-12-21','2016-12-31','2016-12-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3293,NULL,'EDP 01',16500.00,'2017-01-01',NULL,NULL,NULL,'Por pagar','',696,'2017-05-08','2017-01-31','2017-02-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3294,NULL,'EDP 01',2070000.00,'2017-01-01',NULL,NULL,NULL,'Por pagar','',666,'2017-05-08','2017-01-31','2017-04-18','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3295,NULL,'EDP 02',1215000.00,'2017-02-01',NULL,NULL,NULL,'Por pagar','',666,'2017-05-08','2017-02-28','2017-04-18','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3296,NULL,'EDP 27',45.00,'2017-04-01',NULL,NULL,NULL,'Por pagar','',452,'2017-05-08','2017-04-30','2017-04-27','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3297,NULL,'EDP 01',75.50,'2017-04-20',NULL,NULL,NULL,'Por pagar','',680,'2017-05-08','2017-04-30','2017-05-02','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3298,NULL,'EDP 01',23495.28,'2017-02-01',NULL,NULL,NULL,'Por pagar','',615,'2017-06-19','2017-06-15','2017-06-19','REGULARIZACIÓN EDP01 (ACTUALIZANDO VALOR A JUNIO 2017) en REV1, POR NO PAGO DE EDP VERSIÓN ANTERIOR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3299,NULL,'EDP 09',46339507.00,'2017-03-01',NULL,NULL,NULL,'Por pagar','',577,'2017-05-08','2017-03-31','2017-04-17','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3300,NULL,'EDP 09',3902.11,'2017-01-01',1329.30,195.11,NULL,'Por pagar','',460,'2017-05-09','2017-01-31','2017-04-13','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3301,NULL,'EDP 05',1498326.29,'2017-03-01',NULL,NULL,NULL,'Por pagar','',634,'2017-05-11','2017-03-31','2017-04-11','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3302,NULL,'EDP 02',1832.00,'2016-09-17',NULL,NULL,NULL,'Por pagar','',493,'2017-05-09','2017-01-31','2017-04-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3303,NULL,'EDP 02',555556.00,'2017-02-01',NULL,NULL,0.00,'Por pagar','',659,'2017-01-27','2017-02-20','2017-03-09','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3304,NULL,'EDP 02',611116.00,'2017-02-21',NULL,NULL,NULL,'Por pagar','',659,'2017-03-23','2017-03-29','2017-01-27','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3305,NULL,'EDP 04',222224.00,'2017-04-01',NULL,NULL,NULL,'Por pagar','',659,'2017-05-11','2017-04-30','2017-05-11','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3306,NULL,'EDP 02',416.78,'2017-02-01',NULL,NULL,NULL,'Por pagar','',663,'2017-05-11','2017-02-28','2017-04-28','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3307,NULL,'EDP 03',492.42,'2017-03-01',NULL,NULL,NULL,'Por pagar','',663,'2017-05-11','2017-03-31','2017-04-24','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3308,NULL,'EDP 04',504.45,'2017-04-01',NULL,NULL,NULL,'Por pagar','',663,'2017-05-11','2017-04-30','2017-04-28','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3309,NULL,'EDP 07',388888.99,'2017-02-01',NULL,NULL,NULL,'Por pagar','',564,'2017-05-11','2017-02-28','2017-03-07','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3310,NULL,'EDP 08',388889.00,'2017-03-01',NULL,NULL,NULL,'Por pagar','',564,'2017-05-11','2017-03-31','2017-05-08','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3311,NULL,'EDP 04',6954058.00,'2017-03-01',NULL,NULL,NULL,'Por pagar','',650,'2017-05-11','2017-03-31','2017-05-08','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3312,NULL,'EDP 02',3600000.00,'2017-03-01',NULL,NULL,NULL,'Por pagar','',597,'2017-05-11','2017-03-31','2017-04-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3313,NULL,'EDP 02',130398494.00,'2017-03-01',NULL,6519924.70,NULL,'Por pagar','',631,'2017-05-11','2017-04-30','2017-05-10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3314,NULL,'EDP 01',728.00,'2017-03-31',NULL,36.40,NULL,'Por pagar','',692,'2017-05-15','2017-04-30','2017-05-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3315,NULL,'EDP 06',26250.16,'2017-04-01',NULL,2000.00,NULL,'Por pagar','',660,'2017-05-03','2017-04-30','2017-05-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3316,NULL,'EDP 02',35000000.00,'2017-01-01',10500000.00,0.00,NULL,'Por pagar','',645,'2017-05-03','2017-01-31','2017-03-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3317,NULL,'EDP 04',396.00,'2017-04-01',NULL,NULL,NULL,'Por pagar','',655,'2017-04-30','2017-04-30','2017-04-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3318,NULL,'EDP 03',110.75,'2017-03-01',NULL,0.00,NULL,'Por pagar','',656,'2017-05-03','2017-03-31','2017-04-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3319,NULL,'EDP 04',111.63,'2017-04-01',NULL,NULL,NULL,'Por pagar','',656,'2017-05-03','2017-04-30','2017-05-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3320,NULL,'EDP 01',38285715.00,'2017-02-26',NULL,1914285.75,NULL,'Por pagar','',604,'2017-05-03','2017-03-25','2017-04-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3322,NULL,'EDP 08',27.50,'2017-01-01',NULL,NULL,NULL,'Por pagar','',551,'2017-05-17','2017-01-31','2017-04-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3323,NULL,'EDP 09',27.50,'2017-02-01',NULL,NULL,NULL,'Por pagar','',551,'2017-05-15','2017-02-28','2017-04-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3324,NULL,'EDP 10',27.50,'2017-03-01',NULL,NULL,NULL,'Por pagar','',551,'2017-05-17','2017-03-31','2017-04-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3325,NULL,'EDP 11',27.48,'2017-04-01',NULL,NULL,NULL,'Por pagar','',551,'2017-05-17','2017-04-30','2017-04-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3326,NULL,'EDP 02',125114816.00,'2017-04-01',NULL,6255740.80,NULL,'Por pagar','',603,'2017-05-19','2017-04-30','2017-05-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3327,NULL,'EDP 02',298679553.00,'2017-03-26',NULL,14933977.65,NULL,'Por pagar','',604,'2017-05-19','2017-04-25','2017-05-18','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3328,NULL,'EDP 10',5342.14,'2017-02-01',NULL,267.11,NULL,'Por pagar','',460,'2017-05-19','2017-02-28','2017-04-13','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3329,NULL,'EDP 07',22000.00,'2017-05-01',NULL,2000.00,NULL,'Por pagar','',660,'2017-05-19','2017-05-15','2017-05-16','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3330,NULL,'EDP 25',5400000.00,'2017-03-01',NULL,NULL,NULL,'Por pagar','',454,'2017-05-22','2017-04-30','2017-05-19','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3331,NULL,'EDP 08',9790000.00,'2017-04-01',NULL,489500.00,NULL,'Por pagar','',598,NULL,'2017-04-30','2017-05-10','En espera de Formulario F30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3332,NULL,'EDP 01',15065731.35,'2017-02-16',NULL,753286.57,NULL,'Por pagar','',673,NULL,'2017-03-31','2017-05-10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3333,NULL,'EDP 01',771.54,'2017-03-01',NULL,38.58,NULL,'Por pagar','',689,'2017-05-26','2017-03-31','2017-05-22','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3334,NULL,'EDP 02',771.54,'2017-04-01',NULL,38.58,NULL,'Por pagar','',689,'2017-05-26','2017-04-30','2017-05-22','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3335,NULL,'EDP 02',160830143.00,'2017-03-01',NULL,8041507.15,NULL,'Por pagar','',612,'2017-05-26','2017-03-30','2017-05-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3336,NULL,'EDP 05',217106421.00,'2017-02-27',NULL,NULL,NULL,'Por pagar','',626,NULL,'2017-04-02','2017-05-15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3337,NULL,'EDP 01',1151691.00,'2017-03-01',NULL,NULL,NULL,'Por pagar','',699,'2017-05-26','2017-03-31','2017-05-05','Ver tema Centro de Costo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3338,NULL,'EDP 16',0.00,'2016-12-01',NULL,NULL,2527695.95,'Por pagar','',461,'2017-05-26','2016-12-31','2017-05-26','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3339,NULL,'EDP 01',259.80,'2016-11-01',NULL,12.99,NULL,'Por pagar','',481,'2017-05-28','2017-01-31','2017-05-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3340,NULL,'EDP 29',16573955.00,'2017-01-01',NULL,NULL,NULL,'Por pagar','',450,'2017-05-31','2017-05-31','2017-04-27','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3341,NULL,'EDP 01',51.30,'2017-01-01',NULL,NULL,NULL,'Por pagar','',700,'2017-03-17','2017-01-31','2017-03-16','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3342,NULL,'EDP 02',51.30,'2017-02-01',NULL,NULL,NULL,'Por pagar','',700,'2017-03-17','2017-02-28','2017-03-16','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3343,NULL,'EDP 03',51.30,'2017-03-01',NULL,NULL,NULL,'Por pagar','',700,'2017-04-24','2017-03-31','2017-03-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3344,NULL,'EDP 04',51.30,'2017-04-01',NULL,NULL,NULL,'Por pagar','',700,'2017-04-30','2017-04-30','2017-04-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3345,NULL,'EDP 01',19272.70,'2017-04-18',NULL,NULL,NULL,'Por pagar','',679,'2017-06-05','2017-05-18','2017-05-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3346,NULL,'EDP 02',206.00,'2017-05-01',NULL,0.00,NULL,'Por pagar','',680,'2017-06-06','2017-05-31','2017-06-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3347,NULL,'EDP 06',1296.00,'2017-04-01',NULL,NULL,NULL,'Por pagar','',609,'2017-06-07','2017-04-30','2017-05-17','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3348,NULL,'EDP 07',1296.00,'2017-05-01',NULL,NULL,NULL,'Por pagar','',609,'2017-06-07','2017-05-31','2017-04-07','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3349,NULL,'EDP 02',141600.00,'2017-02-01',NULL,NULL,NULL,'Por pagar','',684,'2017-07-07','2017-02-28','2017-06-02','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3350,NULL,'EDP 03',95000.00,'2017-03-01',NULL,NULL,NULL,'Por pagar','',684,'2017-06-07','2017-03-31','2017-06-02','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3351,NULL,'EDP 08',35.50,'2017-02-01',NULL,NULL,NULL,'Por pagar','',553,'2017-03-30','2017-02-28','2017-03-16','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3352,NULL,'EDP 09',59.50,'2017-03-01',NULL,NULL,NULL,'Por pagar','',553,'2017-04-21','2017-03-31','2017-04-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3353,NULL,'EDP 10',52.50,'2017-04-01',NULL,NULL,NULL,'Por pagar','',553,'2017-07-07','2017-04-28','2017-06-06','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3354,NULL,'EDP 11',52.50,'2017-05-01',NULL,NULL,NULL,'Por pagar','',553,'2017-06-07','2017-05-31','2017-06-06','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3355,NULL,'EDP 09',1034886.00,'2017-05-01',NULL,NULL,NULL,'Por pagar','',535,'2017-06-07','2017-05-31','2017-06-07','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3356,NULL,'EDP 02',40250.00,'2017-02-01',NULL,4025.00,NULL,'Por pagar','',605,'2017-06-07','2017-03-31','2017-05-18','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3357,NULL,'EDP 02',66000.00,'2017-02-01',NULL,NULL,NULL,'Por pagar','',696,'2017-06-08','2017-03-31','2017-06-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3358,NULL,'EDP 01',33047555.00,'2017-03-03',NULL,NULL,NULL,'Por pagar','',667,'2017-06-08','2017-04-03','2017-03-29','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3359,NULL,'EDP 02',13172519.01,'2017-03-01',NULL,NULL,NULL,'Por pagar','',654,'2017-06-08','2017-05-31','2017-03-23','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3360,NULL,'EDP 01',14820.00,'2017-04-22',NULL,NULL,NULL,'Por pagar','',668,'2017-06-07','2017-05-13','2017-05-05','Falta respaldo GR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3361,NULL,'EDP 28',45.00,'2017-05-01',NULL,NULL,NULL,'Por pagar','',452,'2017-06-08','2017-05-31','2017-05-26','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3362,NULL,'EDP 03',1264811.00,'2017-04-01',NULL,NULL,NULL,'Por pagar','',597,'2017-06-09','2017-04-28','2017-06-07','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3363,NULL,'EDP 03',89385117.00,'2017-05-01',NULL,4469255.85,NULL,'Por pagar','',603,'2017-06-09','2017-05-30','2017-05-16','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3364,NULL,'EDP 03',17100888.00,'2017-01-01',NULL,NULL,NULL,'Por pagar','',562,'2017-06-09','2017-05-31','2017-05-09','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3365,NULL,'EDP 01',7941.18,'2017-04-01',NULL,NULL,NULL,'Por pagar','',707,'2017-06-12','2017-04-30','2017-05-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3366,NULL,'EDP 02',794.12,'2017-05-01',NULL,NULL,NULL,'Por pagar','',707,'2017-06-12','2017-05-31','2017-06-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3367,NULL,'EDP 01',375000.00,'2017-04-24',NULL,NULL,NULL,'Por pagar','',704,'2017-06-12','2017-05-22','2017-06-09','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3368,NULL,'EDP 01',47443015.00,'2017-02-16',NULL,2372150.75,NULL,'Por pagar','',629,'2017-06-12','2017-03-31','2017-05-31','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3369,NULL,'EDP 10',4200000.00,'2017-04-01',NULL,210000.00,NULL,'Por pagar','',474,'2017-06-05','2017-04-30','2017-05-26','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3370,NULL,'EDP 01',26603.69,'2017-03-01',NULL,NULL,NULL,'Por pagar','',695,'2017-06-12','2017-05-11','2017-05-11','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3371,NULL,'EDP 05',888888.89,'2017-05-01',NULL,NULL,NULL,'Por pagar','',651,'2017-06-14','2017-05-31','2017-05-27','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3372,NULL,'EDP 01',12576.00,'2017-05-01',NULL,NULL,NULL,'Por pagar','',697,'2017-06-14','2017-05-31','2017-06-13','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3373,NULL,'EDP 12',27.50,'2017-04-01',NULL,NULL,NULL,'Por pagar','',551,'2017-06-14','2017-04-30','2017-05-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3374,NULL,'EDP 05',110.00,'2017-05-01',NULL,NULL,NULL,'Por pagar','',656,'2017-06-14','2017-05-31','2017-05-22','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3375,NULL,'EDP 03',0.00,'2017-04-25',NULL,NULL,NULL,'Por pagar','',604,'2017-06-05','2017-04-25','2017-06-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,200000000.00,NULL),(3376,NULL,'EDP 04',263281327.00,'2017-04-26',NULL,13164066.35,NULL,'Por pagar','',604,'2017-06-14','2017-05-25','2017-06-02','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3377,NULL,'EDP 03',21111.52,'2017-03-01',NULL,780.75,NULL,'Por pagar','',475,'2017-06-14','2017-03-31','2017-06-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3378,NULL,'EDP 01',396.50,'2017-03-27',NULL,NULL,NULL,'Por pagar','',671,'2017-05-31','2017-04-30','2017-05-26','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3379,NULL,'EDP 02',279.00,'2017-04-26',NULL,NULL,NULL,'Por pagar','',671,'2017-06-14','2017-05-25','2017-05-26','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3380,NULL,'EDP 03',1001.41,'2017-04-01',NULL,47.92,NULL,'Por pagar','',648,'2017-05-15','2017-04-30','2017-05-22','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3381,NULL,'EDP 01',44548.00,'2017-05-01',NULL,NULL,NULL,'Por pagar','',709,'2017-06-15','2017-05-31','2017-06-14','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3382,NULL,'EDP 03',6410210.00,'2017-04-07',NULL,320510.50,NULL,'Por pagar','',665,'2017-05-19','2017-04-22','2017-05-17','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3383,NULL,'EDP 04',0.00,'2017-03-28',NULL,NULL,742864.00,'Por pagar','',665,'2017-06-15','2017-03-28','2017-06-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3384,NULL,'EDP 26',2700000.00,'2017-05-01',NULL,NULL,NULL,'Por pagar','',454,'2017-06-15','2017-05-31','2017-05-29','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3385,NULL,'EDP 01',383.70,'2017-04-30',NULL,NULL,NULL,'Por pagar','',711,'2017-06-21','2017-05-30','2017-05-29','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3386,NULL,'EDP 01',43.50,'2017-02-15',NULL,2.17,NULL,'Por pagar','',658,'2017-05-16','2017-02-28','2017-06-14','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3387,NULL,'EDP 01',2666666.70,'2017-01-01',NULL,NULL,NULL,'Por pagar','',712,'2017-05-16','2017-05-31','2017-06-13','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3388,NULL,'EDP 01',0.00,'2017-06-01',NULL,NULL,NULL,'Por pagar','',708,'2017-06-16','2017-06-25','2017-06-13','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4500000.00,NULL),(3389,NULL,'EDP 01',9696117.00,'2017-04-03',NULL,484806.00,NULL,'Por pagar','',688,'2017-06-16','2017-05-03','2017-05-24','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3390,NULL,'EDP 01',42.00,'2017-01-01',NULL,NULL,NULL,'Por pagar','',714,'2017-06-20','2017-01-01','2017-04-21','REGULARIZACIÓN DE SERVICIOS REALIZADOS ENTRE 01/9/2016 y 31/12/2016',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3391,NULL,'EDP 13',0.00,'2017-05-01',NULL,NULL,NULL,'Por pagar','',460,'2017-06-20','2017-05-01','2017-06-08','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10000.00,NULL),(3392,NULL,'EDP 01',4422500.00,'2017-02-20',NULL,NULL,NULL,'Por pagar','',716,'2017-06-23','2017-06-14','2017-06-14','FALTA FIRMA FINIQUITO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3393,NULL,'EDP 02',9346017.00,'2017-05-04',NULL,467301.00,NULL,'Por pagar','',688,NULL,'2017-06-05','2017-06-05','Falta respaldo MB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3394,NULL,'EDP 02',252.00,'2017-04-30',NULL,12.60,NULL,'Por pagar','',692,'2017-06-20','2017-05-31','2017-05-31','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3395,NULL,'EDP 09',388889.00,'2017-05-01',NULL,NULL,NULL,'Por pagar','',564,'2017-06-20','2017-05-31','2017-06-06','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3396,NULL,'EDP 02',76816672.00,'2017-02-25',NULL,3840834.00,NULL,'Por pagar','',628,'2017-06-20','2017-03-24','2017-05-16','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3397,NULL,'EDP 06',1223071.78,'2017-04-01',NULL,NULL,NULL,'Por pagar','',634,'2017-06-06','2017-04-30','2017-05-09','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3398,NULL,'EDP 07',1125408.28,'2017-05-01',NULL,NULL,NULL,'Por pagar','',634,'2017-06-20','2017-05-31','2017-06-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3400,NULL,'EDP 06',236045273.00,'2017-04-03',NULL,NULL,NULL,'Por pagar','',626,'2017-05-15','2017-04-30','2017-05-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3401,NULL,'EDP 07',179878025.00,'2017-05-01',NULL,NULL,NULL,'Por pagar','',626,'2017-06-20','2017-05-28','2017-06-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3403,NULL,'EDP 12',2260000.00,'2017-03-01',NULL,113000.00,NULL,'Por pagar','',477,'2017-04-12','2017-03-28','2017-04-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3404,NULL,'EDP 13',2100000.00,'2017-04-01',NULL,105000.00,NULL,'Por pagar','',477,'2017-05-31','2017-04-30','2017-05-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3405,NULL,'EDP 14',2300000.00,'2017-05-01',NULL,115000.00,NULL,'Por pagar','',477,'2017-06-22','2017-05-31','2017-06-14','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3406,NULL,'EDP 05',680000.00,'2017-01-01',NULL,NULL,NULL,'Por pagar','',492,'2017-06-02','2017-01-31','2017-06-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3407,NULL,'EDP 06',680000.00,'2017-02-01',NULL,NULL,NULL,'Por pagar','',492,'2017-06-02','2017-02-28','2017-06-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3408,NULL,'EDP 07',680000.00,'2017-03-01',NULL,NULL,NULL,'Por pagar','',492,'2017-06-02','2017-03-31','2017-06-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3409,NULL,'EDP 08',680000.00,'2017-04-01',NULL,NULL,NULL,'Por pagar','',492,'2017-06-02','2017-04-30','2017-06-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3410,NULL,'EDP 09',680000.00,'2017-05-01',NULL,NULL,NULL,'Por pagar','',492,'2017-06-02','2017-05-31','2017-06-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3411,NULL,'EDP 01',49090.00,'2017-01-01',NULL,NULL,NULL,'Por pagar','',701,'2017-06-23','2017-04-30','2017-06-07','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3412,NULL,'EDP 19',18.05,'2017-04-01',NULL,0.90,NULL,'Por pagar','',463,'2017-06-23','2017-04-30','2017-06-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3413,NULL,'EDP 20',45.13,'2017-05-01',NULL,2.26,NULL,'Por pagar','',463,'2017-06-23','2017-05-31','2017-06-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3414,NULL,'EDP 01',10687.50,'2017-04-01',NULL,NULL,NULL,'Por pagar','',702,'2017-06-23','2017-04-30','2017-06-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3415,NULL,'EDP 02',10462.47,'2017-05-01',NULL,NULL,NULL,'Por pagar','',702,'2017-06-23','2017-05-31','2017-06-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3416,NULL,'EDP 02',4678088.00,'2017-04-01',NULL,NULL,NULL,'Por pagar','',699,'2017-06-23','2017-04-30','2016-06-23','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3417,NULL,'EDP 01',26315.46,'2017-03-01',NULL,NULL,NULL,'Por pagar','',694,'2017-06-22','2017-04-30','2017-04-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3418,NULL,'EDP 07',222222.00,'2017-05-01',NULL,NULL,NULL,'Por pagar','',566,'2017-06-23','2017-05-31','2017-06-19','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3419,NULL,'EDP 01',3748547.00,'2016-08-23',NULL,NULL,0.00,'Por pagar','',595,'2017-12-20','2016-11-04','2017-12-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3420,NULL,'EDP 02',65914660.00,'2017-02-25',NULL,3295733.02,NULL,'Por pagar','',627,'2017-06-01','2017-03-31','2017-05-24','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3421,NULL,'EDP 03',117109832.00,'2017-04-01',NULL,5855491.60,NULL,'Por pagar','',627,'2017-06-05','2017-04-30','2017-05-31','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3422,NULL,'EDP 03',60625253.00,'2017-04-01',NULL,3031262.65,0.00,'Por pagar','',631,'2017-06-05','2017-04-30','2017-05-31','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3423,NULL,'EDP 26',436.90,'2017-05-01',11.20,0.00,NULL,'Por pagar','',459,'2017-06-05','2017-05-31','2017-05-24','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3424,NULL,'EDP 08',30449.27,'2017-05-16',NULL,2400.00,NULL,'Por pagar','',660,'2017-06-01','2017-05-31','2017-06-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3425,NULL,'EDP 09',24444.50,'2017-06-01',NULL,2200.00,NULL,'Por pagar','',660,'2017-06-30','2017-06-15','2017-06-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3426,NULL,'EDP 02',8389500.00,'2017-01-01',NULL,NULL,NULL,'Por pagar','',653,'2017-06-28','2017-04-27','2017-06-27','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3427,NULL,'EDP 04',59739205.00,'2017-05-01',NULL,2986960.00,NULL,'Por pagar','',631,'2017-06-28','2017-05-31','2017-06-19','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3428,NULL,'EDP 01',9218344.00,'2017-04-03',NULL,460917.20,NULL,'Por pagar','',674,'2017-06-28','2017-05-25','2017-06-15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3429,NULL,'EDP 04',17055.71,'2017-04-01',NULL,684.00,NULL,'Por pagar','',475,'2017-06-28','2017-04-30','2017-06-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3430,NULL,'EDP 11',8276.07,'2017-03-01',NULL,413.80,NULL,'Por pagar','',460,'2017-06-28','2017-03-31','2017-05-29','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3431,NULL,'EDP 12',2858.12,'2017-04-01',NULL,142.91,NULL,'Por pagar','',460,'2017-06-28','2017-04-30','2017-06-13','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3432,NULL,'EDP 02',113.48,'2017-03-01',NULL,5.67,NULL,'Por pagar','',481,'2017-06-29','2017-04-30','2017-06-27','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3433,NULL,'EDP 02',375000.00,'2017-05-23',NULL,NULL,NULL,'Por pagar','',704,'2017-06-30','2017-06-20','2017-06-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3434,NULL,'EDP 02',34947804.00,'2017-03-01',NULL,1747390.20,NULL,'Por pagar','',673,'2017-06-30','2017-04-30','2017-06-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3435,NULL,'EDP 01',53173542.00,'2017-02-01',NULL,2658677.10,NULL,'Por pagar','',630,'2017-06-30','2017-04-28','2017-06-21','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3436,NULL,'EDP 01',12378720.00,'2017-04-13',NULL,NULL,NULL,'Por pagar','',720,'2017-06-30','2017-06-30','2017-06-29','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3437,NULL,'EDP 03',524.00,'2017-02-28',524.00,NULL,NULL,'Por pagar','',493,'2017-06-30','2017-05-31','2017-06-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1746.80,NULL),(3438,NULL,'EDP 10',680000.00,'2017-06-01',NULL,NULL,NULL,'Por pagar','',492,'2017-07-03','2017-06-30','2017-06-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3439,NULL,'EDP 01',11005.00,'2017-04-10',NULL,NULL,0.00,'Por pagar','',715,'2017-06-30','2017-06-25','2017-06-28','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3440,NULL,'EDP 17',2160000.00,'2017-05-01',NULL,108000.00,NULL,'Por pagar','',470,'2017-06-30','2017-05-31','2017-06-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3441,NULL,'EDP 18',3910000.00,'2017-06-01',NULL,195500.00,NULL,'Por pagar','',470,'2017-06-30','2017-06-30','2017-06-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3442,NULL,'EDP 05',0.00,'2015-01-01',NULL,NULL,100.89,'Por pagar','',465,'2016-08-31','2016-03-01','2016-08-25','Finiquito firmado',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3443,NULL,'EDP 01',0.00,'2017-07-03',NULL,NULL,NULL,'Por pagar','',721,'2017-07-03','2017-07-03','2017-07-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,176.00,NULL),(3444,NULL,'EDP 28',900000.00,'2017-04-01',NULL,NULL,NULL,'Por pagar','',456,'2017-07-05','2017-04-30','2017-06-08','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3445,NULL,'EDP 09',9790000.00,'2017-05-01',NULL,489500.00,NULL,'Por pagar','',598,'2017-07-04','2017-05-31','2017-06-02','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3446,NULL,'EDP 13',27.50,'2017-06-01',NULL,NULL,NULL,'Por pagar','',551,'2017-07-04','2017-06-30','2016-06-23','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3447,NULL,'EDP 11',4750000.00,'2017-05-01',NULL,237500.00,NULL,'Por pagar','',474,'2017-07-04','2017-05-30','2017-06-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3448,NULL,'EDP 06',110.00,'2017-06-01',NULL,NULL,NULL,'Por pagar','',656,'2017-07-05','2017-06-30','2017-06-06','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3449,NULL,'EDP 03',13124167.00,'2017-05-01',NULL,656208.00,NULL,'Por pagar','',673,'2017-07-04','2017-05-31','2017-06-22','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3450,NULL,'EDP 27',770.80,'2017-06-01',73.09,NULL,NULL,'Por pagar','',459,'2017-07-05','2017-06-30','2016-07-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3451,NULL,'EDP 03',104603507.00,'2017-03-25',NULL,5230175.00,NULL,'Por pagar','',628,'2017-07-07','2017-04-28','2017-06-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3452,NULL,'EDP 02',32386898.00,'2017-05-01',NULL,1619345.00,NULL,'Por pagar','',630,'2017-07-07','2017-05-31','2017-06-22','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3453,NULL,'EDP 04',124640582.00,'2017-05-01',NULL,6232029.00,NULL,'Por pagar','',627,'2017-07-07','2017-05-28','2017-06-28','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3454,NULL,'EDP 02',51034720.00,'2017-04-01',NULL,2551736.00,NULL,'Por pagar','',629,'2017-07-07','2017-04-30','2017-06-29','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3455,NULL,'EDP 03',93513912.00,'2017-05-01',NULL,4675696.00,NULL,'Por pagar','',629,'2017-07-06','2017-05-31','2017-05-29','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3456,NULL,'EDP 02',204.50,'2017-03-01',NULL,10.00,NULL,'Por pagar','',658,'2017-07-07','2017-03-31','2017-06-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3457,NULL,'EDP 10',31009.72,'2017-06-16',NULL,2290.00,NULL,'Por pagar','',660,'2017-07-07','2017-07-30','2017-07-06','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3458,NULL,'EDP 03',197.04,'2017-06-01',NULL,NULL,NULL,'Por pagar','',680,'2017-07-07','2017-06-30','2016-07-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3459,NULL,'EDP 05',233.64,'2017-05-01',NULL,NULL,NULL,'Por pagar','',655,'2017-07-07','2017-05-31','2017-05-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3460,NULL,'EDP 10',388889.00,'2017-06-01',NULL,NULL,NULL,'Por pagar','',564,'2017-07-07','2017-06-30','2017-07-02','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3461,NULL,'EDP 29',900000.00,'2017-05-01',NULL,NULL,NULL,'Por pagar','',456,'2017-07-07','2017-05-31','2017-06-07','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3462,NULL,'EDP 16',7286000.00,'2017-04-01',NULL,364300.00,NULL,'Por pagar','',471,'2017-07-07','2017-04-30','2016-07-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3463,NULL,'EDP 17',7286000.00,'2017-05-01',NULL,364300.00,NULL,'Por pagar','',471,'2017-07-07','2017-05-31','2017-07-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3464,NULL,'EDP 01',59968.00,'2017-01-17',NULL,NULL,NULL,'Por pagar','',649,'2017-07-07','2017-04-16','2017-06-14','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3465,NULL,'EDP 04',108308.00,'2017-04-01',NULL,NULL,NULL,'Por pagar','',684,'2017-07-07','2017-06-30','2017-07-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3466,NULL,'EDP 12',78.00,'2017-06-01',NULL,NULL,NULL,'Por pagar','',553,'2017-07-07','2017-06-30','2017-07-06','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3467,NULL,'EDP 06',180.00,'2017-06-01',NULL,NULL,NULL,'Por pagar','',655,'2017-07-07','2017-06-30','2017-07-05','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3468,NULL,'EDP 03',206.60,'2017-04-01',NULL,10.00,NULL,'Por pagar','',658,'2017-07-07','2017-04-30','2017-06-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3469,NULL,'EDP 11',5000000.00,'2017-05-01',NULL,250000.00,NULL,'Por pagar','',474,'2017-07-11','2017-05-31','2017-06-20','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3470,NULL,'EDP 01',93.20,'2017-05-01',NULL,NULL,NULL,'Por pagar','',706,'2017-07-10','2017-05-31','2017-06-13','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3471,NULL,'EDP 02',14960.00,'2017-06-01',NULL,NULL,NULL,'Por pagar','',697,'2017-07-10','2017-06-30','2017-07-07','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3472,NULL,'EDP 01',3631818.00,'2017-06-01',NULL,NULL,NULL,'Por pagar','',725,'2017-07-10','2017-06-30','2017-07-06','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3473,NULL,'EDP 08',222222.00,'2017-06-01',NULL,NULL,NULL,'Por pagar','',566,'2017-07-10','2017-06-30','2016-07-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3474,NULL,'EDP 05',527.46,'2017-05-01',NULL,NULL,NULL,'Por pagar','',663,'2017-07-10','2017-05-31','2017-05-31','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3475,NULL,'EDP 06',453.83,'2017-06-01',NULL,NULL,NULL,'Por pagar','',663,'2017-07-10','2017-06-30','2017-06-30','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3476,NULL,'EDP 04',55006862.00,'2017-04-29',NULL,2750343.00,NULL,'Por pagar','',628,'2017-07-10','2017-05-26','2016-07-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3477,NULL,'EDP 03',0.00,'2017-04-01',NULL,NULL,NULL,'Por pagar','',696,'2017-07-10','2017-04-30','2017-06-10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3478,NULL,'EDP 01',54741089.00,'2017-04-01',NULL,2737054.00,0.00,'Por pagar','',705,'2017-07-06','2017-04-30','2017-06-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3479,NULL,'EDP 02',45022223.00,'2017-05-01',NULL,2251111.00,NULL,'Por pagar','',705,'2017-07-05','2017-05-31','2017-06-26','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3480,NULL,'EDP 06',888888.89,'2017-06-01',NULL,NULL,NULL,'Por pagar','',651,'2017-07-07','2017-06-30','2017-06-25','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3481,NULL,'EDP 29',45.00,'2017-06-01',NULL,NULL,NULL,'Por pagar','',452,'2017-06-30','2017-06-30','2017-06-01','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3482,NULL,'EDP 02',30.00,'2016-12-14',NULL,1.50,NULL,'Por pagar','',489,'2017-07-12','2017-06-15','2017-06-29','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3483,NULL,'EDP 01',42.67,'2017-06-27',NULL,NULL,NULL,'Por pagar','',727,'2017-07-12','2017-06-30','2017-07-03','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3484,NULL,'EDP 01',0.00,'2017-07-11',NULL,NULL,NULL,'Por pagar','',728,'2017-07-12','2017-07-11','2017-07-12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,18000000.00,NULL);
/*!40000 ALTER TABLE `personas_edp` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `personas_itemctto`
--
DROP TABLE IF EXISTS `personas_itemctto`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `personas_itemctto` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`NumItem` varchar(8) NOT NULL,
`DescripItem` varchar(150) DEFAULT NULL,
`UnidItem` varchar(50) DEFAULT NULL,
`CantItem` decimal(21,2) DEFAULT NULL,
`PuItem` decimal(21,2) DEFAULT NULL,
`TotalItem` decimal(21,2) DEFAULT NULL,
`ObservItem` varchar(100) DEFAULT NULL,
`IdCecoCtto_id` int(11) NOT NULL,
`IdCtto_id` int(11) NOT NULL,
`PresupuestoItem` date DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `personas_itemctto_IdCecoCtto_id_c9bcd95b_fk_personas_ceco_id` (`IdCecoCtto_id`),
KEY `personas_itemctto_IdCtto_id_050729ed_fk_personas_ctto_id` (`IdCtto_id`),
CONSTRAINT `personas_itemctto_IdCecoCtto_id_c9bcd95b_fk_personas_ceco_id` FOREIGN KEY (`IdCecoCtto_id`) REFERENCES `personas_ceco` (`id`),
CONSTRAINT `personas_itemctto_IdCtto_id_050729ed_fk_personas_ctto_id` FOREIGN KEY (`IdCtto_id`) REFERENCES `personas_ctto` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=311 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `personas_itemctto`
--
LOCK TABLES `personas_itemctto` WRITE;
/*!40000 ALTER TABLE `personas_itemctto` DISABLE KEYS */;
INSERT INTO `personas_itemctto` VALUES (4,'01','Apoyo Proceso Licitación FS','Gl',1.00,115636.00,115636.00,'',193,679,'2017-01-01'),(5,'01','Servicio Administración Contratos','Gl',3.00,206.00,618.00,'',193,680,'2017-01-01'),(9,'01','<NAME>','Mes',6.00,30.00,180.00,'',180,683,'2017-01-01'),(10,'01','Design conveyance System A','Gl',1.00,400000.00,400000.00,'',201,684,'2017-01-01'),(12,'1','TAILING MANAGEMENT FACILITIES DESIGN (ADM FLUOR)','Gl',1.00,343615354.00,343615354.00,'',201,629,'2017-01-01'),(13,'1','SERVICIO DE ASESORIA JURIDICA','Gl',1.00,3215.00,3215.00,'',185,459,'2015-01-01'),(14,'1','SERVICIO POR SALA DE PROCEDIMIENOS Y AMBULANCIA 4X','Gl',1.00,675.00,675.00,'',207,557,'2016-01-01'),(15,'1','PREPARACIÓN MUEST ANÁLI QUÍMICOS A','Gl',1.00,198227.73,198227.73,'',207,685,'2017-01-01'),(16,'2','PREPARACIÓN MUEST ANÁLI QUÍMICOS A','Gl',1.00,198227.73,198227.73,'',208,685,'2017-01-01'),(17,'1','<NAME>','Mes',12.00,900000.00,10800000.00,'',170,686,'2017-01-01'),(18,'1','VIGILANCIA Y RESGUARDO DE PROPIEDAD MINERA','Gl',1.00,384.00,384.00,'',184,452,'2015-01-01'),(19,'1','SERVICIO DE HABILITACIÓN INST SANITARIAS','Gl',1.00,57038588.00,57038588.00,'',207,654,'2017-01-01'),(20,'1','SERVICIO MANTENCION OFICINA','Gl',1.00,200.00,200.00,'',165,463,'2015-01-01'),(21,'1','SERVICIO CAMPAMENTO EL PINGO','Gl',1.00,34265000.00,34265000.00,'',169,598,'2016-01-01'),(22,'1','<NAME>','Gl',1.00,2342728572.00,2342728572.00,'',207,604,'2017-01-01'),(23,'1','PFS AND EIA SUPPORT ON-SHORE','Gl',1.00,1982012196.00,1982012196.00,'',192,626,'2017-01-01'),(24,'1','<NAME>','Gl',1.00,13490000.00,13490000.00,'',169,519,'2016-01-01'),(25,'1','Sup. Perforación Pozos de Monitoreo e Infor','Gl',1.00,53520000.00,53520000.00,'',203,687,'2017-01-01'),(26,'1','DISEÑO GEOTECNICO DE OPEN PIT','Gl',1.00,913043.00,913043.00,'',212,605,'2016-01-01'),(27,'1','MONITOREO REDES SOCIALES','Gl',1.00,192.50,192.50,'',197,551,'2016-01-01'),(28,'1','SERVICIO DE CLIPPING Y BOLETIN INTERNO','Gl',1.00,23400000.00,23400000.00,'',197,456,'2015-01-01'),(29,'1','DESALINATION PLANT','Gl',1.00,331400000.00,331400000.00,'',201,628,'2017-01-01'),(30,'1','DESARROLLO ESTRATEGIA PARA LOS DERECHOS HUMANOS','Gl',1.00,68400.00,68400.00,'',199,468,'2016-01-01'),(31,'1','Servicio Coord EIA','Gl',1.00,145710253.70,145710253.70,'',189,473,'2016-01-01'),(32,'1','PAS BOSQUES Y FORMACION XEROFITICA','Gl',1.00,6835.30,6835.30,'',203,481,'2016-01-01'),(33,'01','SERVICIO ALIMENTACION CAMPANA SONDAJE LA FORTUNA','Gl',1.00,794118279.00,794118279.00,'',207,603,'2017-01-01'),(34,'1','PFS AND EIA SUPPORT OFF-SHORE SERVICES','Gl',1.00,9057472.00,9057472.00,'',192,634,'2017-01-01'),(35,'1','WATER PIPILINES (ADM FLUOR)','Gl',1.00,475225059.00,475225059.00,'',201,627,'2017-01-01'),(36,'1','OFFSITE POWER SUPPLY & TRANSMISSION (ADM FLUOR)','Gl',1.00,156223114.00,156223114.00,'',201,630,'2017-01-01'),(37,'1','OFFSITE ROADS (ADM FLUOR)','Gl',1.00,308124520.00,308124520.00,'',201,631,'2017-01-01'),(38,'1','IDROLOGICO PARA DISEÑO INFRAESTRUCTURA','Gl',1.00,2800.00,2800.00,'',189,648,'2016-01-01'),(39,'1','INGENIERÍA DE PRE-FACTIBILIDAD MANEJO DE RESIDUOS','Gl',1.00,187949242.00,187949242.00,'',201,673,'2017-01-01'),(40,'1','SERVICIO DE TRASLADO, CORTE Y ENVÍO DE MUESTRAS SO','Gl',1.00,195967891.00,195967891.00,'',207,674,'2017-01-01'),(41,'1','APOYO A DESARROLLO PLAN CONTRACTUAL 2017','Gl',1.00,4752.00,4752.00,'',193,655,'2017-01-01'),(42,'1','SERVICIO DE ARRIENDO CAMIONETAS 2017','Gl',1.00,5136.36,5136.36,'',169,663,'2017-01-01'),(43,'1','SERVICIO POLICLINICO CAMPAMENTO LA FORTUNA','Gl',1.00,7564.00,7564.00,'',207,675,'2017-01-01'),(44,'1','ELABORACIÓN CAPÍTULO RIESG. NATURALES EIA','Gl',1.00,6130.00,6130.00,'',203,670,'2017-01-01'),(45,'1','CONTRAPARTE TÉCNICA EIA - CLIMA Y METEOROLOGÍA','Gl',1.00,250.00,250.00,'',203,485,'2016-01-01'),(46,'1','CONTRAPARTE TÉCNICA EIA - MEDIO MARINO','Gl',1.00,56.00,56.00,'',203,487,'2016-01-01'),(47,'1','CONTRAPARTE TÉCNICA EIA - HIDROLOGÍA','Gl',1.00,275.00,275.00,'',203,488,'2016-01-01'),(48,'1','CONTRAPARTE TÉCNICA EIA - PAISAJE','Gl',1.00,70.00,70.00,'',203,489,'2016-01-01'),(49,'1','CONTRAPARTE TÉCNICA EIA - MEDIO HUMANO','Gl',1.00,300.00,300.00,'',203,490,'2016-01-01'),(50,'1','CONTRAPARTE TÉCNICA EIA - GEOLOGÍA','Gl',1.00,250.00,250.00,'',203,491,'2016-01-01'),(51,'1','SERVICIO CONTROL LABORAL, CONTROL ACCESO Y AUDITOR','Gl',1.00,1204.00,1204.00,'',207,658,'2017-01-01'),(52,'1','ARRIENDO Y RECAMBIO CONTENEDOR','Gl',1.00,1600000.00,1600000.00,'',208,550,'2015-01-01'),(53,'1','ASESORES DE SEGURIDAD','Gl',1.00,14677895.10,14677895.10,'',207,577,'2016-01-01'),(54,'1','PACKED BED COMPRESSION TEST','Gl',1.00,66000.00,66000.00,'',188,624,'2016-01-01'),(55,'1','SUMINISTRO Y TRANSPORTE DE AGUA POTABLE','Gl',1.00,7500000.00,7500000.00,'',169,666,'2017-01-01'),(56,'1','ASESORÍA EN RECURSOS HÍDRICOS','Gl',1.00,1320.00,1320.00,'',203,672,'2017-01-01'),(57,'1','SERVICIO TRANSPORTE PERSONAL LA FORTUNA','Gl',1.00,57833284.00,57833284.00,'',207,688,'2017-01-01'),(58,'01','Plan Reasentamiento Fase I','Gl',1.00,2338.00,2338.00,'',211,689,'2017-01-01'),(60,'1','Servicio Medición de Trayectoria','Gl',1.00,140080000.00,140080000.00,'',207,691,'2017-01-01'),(61,'01','TECHNICAL SERVCE (GRP Mine WaterMc Pty Ltda) (2017)','Gl',1.00,77400.00,77400.00,'',212,694,'2017-01-01'),(62,'1','TECHNICAL SERVCE (Marc Ruest)','Gl',1.00,214560.00,214560.00,'',212,695,'2017-01-01'),(63,'1','TECHNICAL SERVICE LEITNER (AGUDIO)','Gl',1.00,165000.00,165000.00,'',201,696,'2017-01-01'),(64,'01','DISEÑO DE OPEN PIT (OPTIMIZACIÓN)','Gl',1.00,33600.00,33600.00,'',213,697,'2017-01-01'),(65,'01','Arriendo de contenedor para residuos domésticos','Mes',8.00,180000.00,1440000.00,'',207,698,'2017-01-01'),(66,'02','Movilización y/o recambio de contenedor residuos','Viaje',20.00,548941.00,10978820.00,'',207,698,'2017-01-01'),(67,'03','Disposición final residuos domésticos','Ton',80.00,12500.00,1000000.00,'',207,698,'2017-01-01'),(68,'04','Arriendo de contenedor para residuos industriales','Mes',5.00,180000.00,900000.00,'',207,698,'2017-01-01'),(69,'05','Movilización y/o recambio de contenedor residuos n','Viaje',7.00,548941.00,3842587.00,'',207,698,'2017-01-01'),(70,'06','Disposición final residuos industriales no peligro','Ton',28.00,72875.00,2040500.00,'',207,698,'2017-01-01'),(71,'07','Suministro de agua potable (18 m3 min)','M3',2025.00,4500.00,9112500.00,'',207,698,'2017-01-01'),(72,'08','Transporte de agua potable (18 m3 min)','M3',2025.00,34000.00,68850000.00,'',207,698,'2017-01-01'),(73,'09','Succión y retiro de aguas servidas','M3',500.00,76077.00,38038500.00,'',207,698,'2017-01-01'),(74,'10','Mantención Mes 10 baños quimicos (3 limpieza sem)','Unid',13.00,376325.00,4892225.00,'',207,698,'2017-01-01'),(75,'11','Arriendo Mensual de baños','Baños/Mes',20.00,47250.00,945000.00,'',207,698,'2017-01-01'),(76,'01','Contratación de Colaboradores Para Proyecto NU','Gl',1.00,35405560.00,35405560.00,'',161,699,'2017-01-01'),(81,'01','SERVICIO DE CUSTODIA DE DOCUMENTOS','Gl',1.00,72.00,72.00,'Item Automatico',161,448,'2012-01-01'),(83,'01','SERVICIO DE CONSULTORIA PROFESIONAL TRAMITACION PROPIEDAD MINERA','Gl',1.00,9996200.00,9996200.00,'Item Automatico',184,451,'2015-01-01'),(84,'01','SERVICIO DE ASEO OFICINAS','Gl',1.00,42677032.00,42677032.00,'Item Automatico',165,449,'2014-01-01'),(85,'01','SERVICIO DE MANTENIMIENTO CAMPAMENTOS Y ASEO DE OFICINAS','Gl',1.00,171909000.00,171909000.00,'Item Automatico',170,450,'2014-01-01'),(86,'01','SERVICIO DE MONITOREO DE CALIDAD DEL AIRE Y PARAMETROS METEOROLOGICOS','Gl',1.00,2534.00,2534.00,'Item Automatico',210,453,'2015-01-01'),(87,'01','SERVICIO DE CONSULTORIA EN TEMAS COMUNITARIOS','Gl',1.00,70908000.00,70908000.00,'Item Automatico',199,454,'2015-01-01'),(88,'01','SERVICIO DE LABORATORIO','Gl',1.00,47801628.00,47801628.00,'Item Automatico',210,455,'2015-01-01'),(89,'01','SERVICIO DE MANTENCION Y REPARACION DE IMPRESORAS','Gl',1.00,33600000.00,33600000.00,'Item Automatico',164,457,'2015-01-01'),(90,'01','SERVICIO EIA (2016)','Gl',1.00,31935.45,31935.45,'Item Automatico',203,460,'2016-01-01'),(91,'01','MONITOREO DE AGUAS SUPERFICIALES Y SUBTERRANEAS','Gl',1.00,30037956.00,30037956.00,'Item Automatico',210,461,'2015-01-01'),(92,'01','SERVICIO DE MONITOREO DE SERVIDORES Y SOPORTE DE RED','Gl',1.00,560.00,560.00,'Item Automatico',164,462,'2015-01-01'),(93,'01','ACTIVIDADES CULTURALES 2015-2016','Gl',1.00,30000000.00,30000000.00,'Item Automatico',198,464,'2015-01-01'),(94,'01','ELABORACION BASES TECNICAS EIA','Gl',1.00,728.40,728.40,'Item Automatico',203,465,'2015-01-01'),(95,'01','PLAN DE CORRECCION FORMACIONES XEROFITICAS','Gl',1.00,327.00,327.00,'Item Automatico',203,466,'2015-01-01'),(96,'01','ING. CONCEPTUAL TRANSPORTE CONCENTRADO COBRE/AGUA DESALADA','Gl',1.00,7912.00,7912.00,'Item Automatico',201,467,'2016-01-01'),(97,'01','ASESORAMIENTO COMUNICACIONAL HUASCOALTINOS','Gl',1.00,1907.42,1907.42,'Item Automatico',197,469,'2015-01-01'),(98,'01','SERV. MANTENCION Y REPARACION DE IMPRESORAS','Gl',1.00,19800000.00,19800000.00,'Item Automatico',164,470,'2016-01-01'),(99,'01','SERVICIO DE SOPORTE PARA RED DE GOLDCORP CHILE','Gl',1.00,85992000.00,85992000.00,'Item Automatico',164,471,'2016-01-01'),(100,'01','SERVICIO SONDAJE LOS QUIJOS','Gl',1.00,352707427.00,352707427.00,'Item Automatico',208,472,'2016-01-01'),(101,'01','PROYECTO DE BIODIVERSIDAD AGRICOLA 2016','Gl',1.00,54900000.00,54900000.00,'Item Automatico',198,474,'2016-01-01'),(102,'01','ESTRATEGIA DE REASENTAMIENTO PROYECTO CORREDOR','Gl',1.00,114460.00,114460.00,'Item Automatico',211,475,'2016-01-01'),(103,'01','ELABORACION DE DECLARACION DE IMPACTO AMBIENTAL PROSPECCION LA FORTUNA','Gl',1.00,2702.00,2702.00,'Item Automatico',185,476,'2016-01-01'),(104,'01','SERVICIO DE ASEO OFICINAS','Gl',1.00,18900000.00,18900000.00,'Item Automatico',165,477,'2016-01-01'),(105,'01','SERVICIOS PROFESIONALES DE APOYO A AREA SERVICIO PROYECTO CORREDOR','Gl',1.00,2777778.00,2777778.00,'Item Automatico',161,478,'2016-01-01'),(106,'01','SUPERVICION CAMPANA DE SONDAJE SECTOR LOS QUIJOS','Gl',1.00,6839.10,6839.10,'Item Automatico',208,479,'2016-01-01'),(107,'01','DESARROLLO DOCUMENTACION HSEC','Gl',1.00,12555556.00,12555556.00,'Item Automatico',161,480,'2016-01-01'),(108,'01','EARLY WORKS','Gl',1.00,825203.00,825203.00,'Item Automatico',201,482,'2016-01-01'),(109,'01','CONTRATO ASESORIA TECNICA Y OTROS','Gl',1.00,273600.00,273600.00,'Item Automatico',167,483,'2016-01-01'),(110,'01','CONTRATO ASESORIA TECNICA Y OTROS','Gl',1.00,286080.00,286080.00,'Item Automatico',167,484,'2016-01-01'),(111,'01','CONTRAPARTE TÉCNICA EIA - ECOSISTEMAS TERRESTRES','Gl',1.00,350.00,350.00,'Item Automatico',203,486,'2016-01-01'),(112,'01','SERVICIO DE MENSAJERÍA Y ADMINISTRATIVO','Gl',1.00,3366000.00,3366000.00,'Item Automatico',161,492,'2016-01-01'),(113,'01','CULTURA ORGANIZACIONAL','Gl',1.00,3664.00,3664.00,'Item Automatico',161,493,'2016-01-01'),(114,'01','ARRIENDO DE CAMIONETAS','Gl',1.00,2975.00,2975.00,'Item Automatico',169,495,'2010-01-01'),(115,'01','RESCATE MEDICO DE URGENCIA','Gl',1.00,91200.00,91200.00,'Item Automatico',169,496,'2011-01-01'),(116,'01','SERVICIO DE SEGURIDAD INDUSTRIAL','Gl',1.00,180003154.00,180003154.00,'Item Automatico',170,497,'2012-01-01'),(117,'01','ASESORIA AMBIENTAL ESPECIALIZADA-MODIFICACION DE MUESTRERA','Gl',1.00,952.60,952.60,'Item Automatico',210,498,'2013-01-01'),(118,'01','ASEO OFICINA DE VALLENAR','Gl',1.00,14166139.00,14166139.00,'Item Automatico',170,500,'2013-01-01'),(119,'01','RESCATE DE LA DIVERSIDAD AGRICOLA DE LA PROVINCIA DEL HUASCO','Gl',1.00,24110000.00,24110000.00,'Item Automatico',198,501,'2013-01-01'),(120,'01','<NAME>','Gl',1.00,4000000.00,4000000.00,'Item Automatico',170,504,'2016-01-01'),(121,'01','CONSTRUCCION CAMINO SECTOR QUEBRADA LAS GUIAS (4KM)','Gl',1.00,33980000.00,33980000.00,'Item Automatico',169,505,'2015-01-01'),(122,'01','PREVENCION Y CONTROL INTEGRADO DE PLAGAS','Gl',1.00,562.00,562.00,'Item Automatico',169,508,'2010-01-01'),(123,'01','ASESORIA ESTRATEGICA RELACIONAMIENTO COMUNITARIO','Gl',1.00,76209400.00,76209400.00,'Item Automatico',199,512,'2016-01-01'),(124,'01','ESTRATEGIA RECURSO HIDRICO Y ASESORIA AMBIENTAL','Gl',1.00,180.00,180.00,'Item Automatico',203,513,'2015-01-01'),(125,'01','ARRIENDO OFICINA PISO N7','Gl',1.00,10692.15,10692.15,'Item Automatico',165,514,'2015-01-01'),(126,'01','DESALINATION PLANT','Gl',1.00,350000.00,350000.00,'Item Automatico',201,515,'2016-01-01'),(127,'01','REVISON DE SISTEMA DE CORREAS ENTRE EL MORRO Y RELINCHO','Gl',1.00,109100.00,109100.00,'Item Automatico',201,516,'2015-01-01'),(128,'01','SERVICIO DE TOPOGRAFIA SATELITAL','Gl',1.00,58650.00,58650.00,'Item Automatico',201,517,'2015-01-01'),(129,'01','SERVICIO DE TRANSPORTE REFRIGERADO','Gl',1.00,86.00,86.00,'Item Automatico',169,518,'2016-01-01'),(130,'01','ARRIENDO DE CAMIONETAS 2016','Gl',1.00,270.90,270.90,'Item Automatico',169,520,'2016-01-01'),(131,'01','TAXI ACTIVIDAD FIESTA DE FREIRINA','Gl',1.00,700000.00,700000.00,'Item Automatico',198,521,'2016-01-01'),(132,'01','HOTEL ACTIVIDAD FIESTA DE FREIRINA','Gl',1.00,878151.00,878151.00,'Item Automatico',198,522,'2016-01-01'),(133,'01','STREAMING TV ACTIVIDAD FIESTA DE FREIRINA','Gl',1.00,2016807.00,2016807.00,'Item Automatico',198,523,'2016-01-01'),(134,'01','RADIODIFUCION ACTIVIDAD FIESTA DE FREIRINA','Gl',1.00,855002.00,855002.00,'Item Automatico',198,524,'2016-01-01'),(135,'01','DISENO DE CIRCUITOS DE FLOTACION SFR','Gl',1.00,10200.00,10200.00,'Item Automatico',201,525,'2016-01-01'),(136,'01','REVISION DE SISTEMA ROPECON PARA CORREA','Gl',1.00,90300.00,90300.00,'Item Automatico',201,526,'2016-01-01'),(137,'01','ACONDICIONAMIENTO EDIFICIO OFICINA CALLE OCHANDIA (EX OF. RELINCHO)','Gl',1.00,3870240.00,3870240.00,'Item Automatico',170,527,'2016-01-01'),(138,'01','COMET TECHNICAL SUPPORT (MAR)','Gl',1.00,2500.00,2500.00,'Item Automatico',202,528,'2016-01-01'),(139,'01','TRADUCCION PLAN DE SEGURIDAD CORREDOR','Gl',1.00,168480.00,168480.00,'Item Automatico',161,529,'2016-01-01'),(140,'01','SERVICIO DE PREPARACION INFORME CLACC 02','Gl',1.00,180.00,180.00,'Item Automatico',169,531,'2016-01-01'),(141,'01','CONSULTORIA HAULAGE ANALYSIS PROYECTO CORREDOR','Gl',1.00,2980.00,2980.00,'Item Automatico',202,532,'2016-01-01'),(142,'01','SUMINISTRO DE MOCHILA CON LOGO','Gl',1.00,3437650.00,3437650.00,'Item Automatico',197,533,'2015-01-01'),(143,'01','TRADUCCIONES 2016','Gl',1.00,2700000.00,2700000.00,'Item Automatico',161,535,'2016-01-01'),(144,'01','TRANSPORTE SERGIO MOLINA','Gl',1.00,4280000.00,4280000.00,'Item Automatico',161,536,'2015-01-01'),(145,'01','SERVICIO CAPACITACION CURSO4X4 Y EXAMEN PSICOSENSOMETRICO (VALLENAR)','Gl',1.00,2290000.00,2290000.00,'Item Automatico',161,537,'2016-01-01'),(146,'01','SUMINITRO DE AGUA CAMPAMENTO','Gl',1.00,10260000.00,10260000.00,'Item Automatico',208,538,'2016-01-01'),(147,'01','AUDITORIA LABORAL CONTRATOS NU','Gl',1.00,2493752.00,2493752.00,'Item Automatico',208,540,'2016-01-01'),(148,'01','SERVICIO HELICOPETORO SECTOR LA FORTUNA','Gl',1.00,25674.00,25674.00,'Item Automatico',207,541,'2016-01-01'),(149,'01','SERVICIO CAPACITACION CURSO4X4 Y EXAMEN PSICOSENSOMETRICO (SANTIAGO)','Gl',1.00,4550000.00,4550000.00,'Item Automatico',161,544,'2015-01-01'),(150,'01','CURSO USO DE EXTINTORES','Gl',1.00,1350000.00,1350000.00,'Item Automatico',161,547,'2016-01-01'),(151,'01','RETIRO, SUMINISTRO E INSTALACION DE PUERTA PISO 7','Gl',1.00,1551714.00,1551714.00,'Item Automatico',165,548,'2016-01-01'),(152,'01','PETROLEO DISEL (TARJETA ABASTECIMIENTO) CAMPAMENTO Y SONDAJE','Gl',1.00,10000000.00,10000000.00,'Item Automatico',169,549,'2016-01-01'),(153,'01','DISENO DE MATERIALES COMUNICACION NUEVAUNION','Gl',1.00,315.00,315.00,'Item Automatico',197,553,'2016-01-01'),(154,'01','CONSULTORIA MEDIO AMBIENTAL','Gl',1.00,24910000.00,24910000.00,'Item Automatico',203,554,'2016-01-01'),(155,'01','REVISION Y VALIDACION DE RESULTADOS METALURGICOS PROPUESOS PARA LOS CRITERIOS DE DISENO','Gl',1.00,67840.00,67840.00,'Item Automatico',188,555,'2016-01-01'),(156,'01','CURSO DE CAPACITACION EN REANIMACION TRAUMA PRE HOSPITALARIO','Gl',1.00,8000000.00,8000000.00,'Item Automatico',198,556,'2016-01-01'),(157,'01','ASESORIA LEGAL','Gl',1.00,50000.00,50000.00,'Item Automatico',185,558,'2016-01-01'),(158,'01','ASESORIA LEGAL','Gl',1.00,300.00,300.00,'Item Automatico',185,559,'2015-01-01'),(159,'01','REGISTRO FOTOGRAFICO AREA INFLUENCIA P NUEVA UNION','Gl',1.00,1360000.00,1360000.00,'Item Automatico',197,560,'2016-01-01'),(160,'01','SERVICIO ARRIENDO MAQUINARIA PREPARACION PLATAFORMA SONDAJE LOS QUIJOS','Gl',1.00,29686375.00,29686375.00,'Item Automatico',207,561,'2016-01-01'),(161,'01','RETIRO DE AGUAS SERVIDAS Y CAMARA DE INSPECCION CAMPAMENTO RELINCHO','Gl',1.00,2411524.00,2411524.00,'Item Automatico',169,562,'2016-01-01'),(162,'01','MANTENCION DE REPETIDORES','Gl',1.00,5959154.00,5959154.00,'Item Automatico',207,563,'2016-01-01'),(163,'01','PROGRAMA PAUSA ACTIVA','Gl',1.00,1440000.00,1440000.00,'Item Automatico',161,564,'2016-01-01'),(164,'01','EVALUACION NUTRICIONAL','Gl',1.00,858000.00,858000.00,'Item Automatico',161,565,'2016-01-01'),(165,'01','ENTRENAMIENTO FUNCIONAL','Gl',1.00,1600000.00,1600000.00,'Item Automatico',161,566,'2016-01-01'),(166,'01','DISENO Y PRODUCCION LOGO Y DUSTED','Gl',1.00,606200.00,606200.00,'Item Automatico',197,567,'2016-01-01'),(167,'01','TALLER DE VOCERIA PARA EJECUTIVOS NUEVAUNION','Gl',1.00,155.00,155.00,'Item Automatico',197,568,'2016-01-01'),(168,'01','REALIZACION ESTUDIO DE PERCEPCION NUEVAUNION','Gl',1.00,1253.00,1253.00,'Item Automatico',197,569,'2016-01-01'),(169,'01','ARRIENDO SALON ENTRENAMIENTO FUNCIONAL','Gl',1.00,540000.00,540000.00,'Item Automatico',161,570,'2016-01-01'),(170,'01','TALLER DE CAPACITACION ACTUALIDAD INDIGENA','Gl',1.00,700000.00,700000.00,'Item Automatico',198,571,'2016-01-01'),(171,'01','AUDITORIA DE EXPEDIENTES DE TRAMITACION MINERA (27 CONCESIONES)','Gl',1.00,65.00,65.00,'Item Automatico',183,572,'2016-01-01'),(172,'01','SERVICIO ALIMENTACION ASISTENTES SEMINARIO PHART','Gl',1.00,3053145.00,3053145.00,'Item Automatico',198,573,'2016-01-01'),(173,'01','SERVICIO ALIMENTACION CAMPANA SONDAJE','Gl',1.00,52604676.00,52604676.00,'Item Automatico',207,574,'2016-01-01'),(174,'01','SUSCRIPCION BOLETIN DEL TRABAJO','Gl',1.00,721400.00,721400.00,'Item Automatico',161,575,'2016-01-01'),(175,'01','SOPORTE DE DOPPELMAYR PARA WORKSHOP MAYO 2016 (VANCOUVER)','Gl',1.00,3325.40,3325.40,'Item Automatico',201,578,'2016-01-01'),(176,'01','CURSO INGLES','Gl',1.00,8640000.00,8640000.00,'Item Automatico',161,579,'2016-01-01'),(177,'01','APOYO DE INGENIERIA CIRCUITO DE CONMINUCION','Gl',1.00,97000.00,97000.00,'Item Automatico',188,580,'2016-01-01'),(178,'01','REVISION Y ANALISIS DE CIRCUITOS DE MOLIENDA','Gl',1.00,40000.00,40000.00,'Item Automatico',188,581,'2016-01-01'),(179,'01','SOPORTE CONVEYANCE TOS','Gl',1.00,26972.00,26972.00,'Item Automatico',201,582,'2016-01-01'),(180,'01','ESTUDIO CONCEPTUAL DE SISTEMA DE TRANSPORTE DE MINERAL','Gl',1.00,50000.00,50000.00,'Item Automatico',201,583,'2016-01-01'),(181,'01','ARRIENDO DE BODEGA FAEZ 1058, VALLENAR.','Gl',1.00,290.00,290.00,'Item Automatico',169,584,'2016-01-01'),(182,'01','ARRIENDO DE BODEGA SARGENTO ALDEA 460, VALLENAR.','Gl',1.00,184.00,184.00,'Item Automatico',169,585,'2016-01-01'),(183,'01','ARRIENDO DE OFICINA Y BODEGA MARANON EN, BRASIL 308, VALLENAR.','Gl',1.00,7366655.00,7366655.00,'Item Automatico',170,586,'2016-01-01'),(184,'01','<NAME>','Gl',1.00,140.00,140.00,'Item Automatico',170,587,'2016-01-01'),(185,'01','<NAME>','Gl',1.00,57.50,57.50,'Item Automatico',170,588,'2016-01-01'),(186,'01','PROJECT NUEVAUNION FLOTATION WORKSHOP SUPPORT','Gl',1.00,5800.00,5800.00,'Item Automatico',188,589,'2016-01-01'),(187,'01','ARRIENDO LOCAL PARA INDUCCIÓN PERSONAL LINEA BASE KP','Gl',1.00,935000.00,935000.00,'Item Automatico',161,590,'2016-01-01'),(188,'01','CAPEX AND OPEX UPDATE OF EL MORRO BC PROJECT','Gl',1.00,16234.00,16234.00,'Item Automatico',202,591,'2016-01-01'),(189,'01','SERVICIO INTERPRETACIÓN SIMULTÁNEA WORKSHOP EIA','Gl',1.00,1360000.00,1360000.00,'Item Automatico',161,592,'2016-01-01'),(190,'01','PERTINENCIA SONDAJES LA FORTUNA 2018','Gl',1.00,142.74,142.74,'Item Automatico',207,593,'2016-01-01'),(191,'01','<NAME> EL MORRO 2016','Gl',1.00,995.40,995.40,'Item Automatico',169,594,'2016-01-01'),(192,'01','MANTENCIÓN GENERADOR OLYMPIAN GEP65-11','Gl',1.00,2555102.00,2555102.00,'Item Automatico',169,595,'2016-01-01'),(193,'01','SERVICIO CORTE TESTIGO SONDAJES LOS QUIJOS','Gl',1.00,1774780.00,1774780.00,'Item Automatico',207,596,'2016-01-01'),(194,'01','ASESORIA ESPECIALIZADA PERMISOS CAMPAMENTO EL MORRO','Gl',1.00,1360000.00,1360000.00,'Item Automatico',207,597,'2016-01-01'),(195,'01','SERVICIOS DE INGENIERÍA PARA EL COSTEO DE SOLUCIONES DE TRANSMISIÓN PARA NUEVAUNIÓN','Gl',1.00,515.00,515.00,'Item Automatico',189,599,'2016-01-01'),(196,'01','PREPARACIÓN PSU LICEO ALTO DEL CARMEN','Gl',1.00,11574998.00,11574998.00,'Item Automatico',198,600,'2016-01-01'),(197,'01','<NAME>','Gl',1.00,8330000.00,8330000.00,'Item Automatico',198,601,'2016-01-01'),(198,'01','APOYO A DESARROLLO PLAN CONTRACTUAL','Gl',1.00,648.00,648.00,'Item Automatico',193,602,'2016-01-01'),(199,'01','DISEÑO DE BOTADEROS Y STOCKPILES PARA LA FORTUNA Y RELINCHO','Gl',1.00,3250.00,3250.00,'Item Automatico',202,606,'2016-01-01'),(200,'01','REEMPLAZO ASISTENTE GERENCIA LO<NAME>','Gl',1.00,1746000.00,1746000.00,'Item Automatico',161,607,'2016-01-01'),(201,'01','TRADUCCIÓN SIMULTÁNEA <NAME> OCTUBRE 2016','Gl',1.00,1385320.00,1385320.00,'Item Automatico',199,608,'2016-01-01'),(202,'01','SERVICIO DE COMUNICACIÓN SATELITAL CAMP EL PINGO','Gl',1.00,32812.00,32812.00,'Item Automatico',164,609,'2016-01-01'),(203,'01','CONTROL DE PLAGA OFICINA, BODEGA Y CASAS DE HUÉSPEDES','Gl',1.00,807326.00,807326.00,'Item Automatico',170,610,'2016-01-01'),(204,'01','SERVICIO DE VIGILANCIA CAMPAÑA SONDAJE LA FORTUNA','Gl',1.00,44390188.00,44390188.00,'Item Automatico',207,611,'2017-01-01'),(205,'01','SERVICIO DE REHABILITACIÓN CAMPAMENTO LA FORTUNA','Gl',1.00,332631660.00,332631660.00,'Item Automatico',207,612,'2016-01-01'),(206,'01','CONSTRUCCIÓN CAFETERÍA OFICINA VALLENAR','Gl',1.00,4820000.00,4820000.00,'Item Automatico',170,613,'2016-01-01'),(207,'01','ESTUDIO PARA DESARROLLO PRODUCTIVO PROV HUASCO','Gl',1.00,45000000.00,45000000.00,'Item Automatico',198,614,'2016-01-01'),(208,'01','PRUEBAS DE COMPRESIÓN EN LABORATORIO','Gl',1.00,23688.00,23688.00,'Item Automatico',188,615,'2016-01-01'),(209,'01','INSTALACIÓN STAND FOREDE 2016','Gl',1.00,805000.00,805000.00,'Item Automatico',197,619,'2016-01-01'),(210,'01','AUSPICIO FORADE 2016','Gl',1.00,2500000.00,2500000.00,'Item Automatico',197,620,'2016-01-01'),(211,'01','COMPRA DE INSUMOS VETERINARIOS','Gl',1.00,4201683.00,4201683.00,'Item Automatico',198,621,'2016-01-01'),(212,'01','EVALUACIONES PSICOLÓGICAS','Gl',1.00,13.20,13.20,'Item Automatico',161,622,'2016-01-01'),(213,'01','ASESORIA EN FINANZAS PROYECTO NUEVAUNIÓN','Gl',1.00,20070000.00,20070000.00,'Item Automatico',167,623,'2016-01-01'),(214,'01','SERVICIO DE AMBULANCIA','Gl',1.00,1276750.00,1276750.00,'Item Automatico',203,625,'2016-01-01'),(215,'01','CONVEN<NAME>','Gl',1.00,25000000.00,25000000.00,'Item Automatico',198,635,'2016-01-01'),(216,'01','CONVENIO FUNDACIÓN CHILE','Gl',1.00,64000000.00,64000000.00,'Item Automatico',198,636,'2016-01-01'),(217,'01','CONVENIO MUNICIPALIDAD VALLENAR','Gl',1.00,7000000.00,7000000.00,'Item Automatico',198,637,'2016-01-01'),(218,'01','CONVENIO MUNICIPALIDAD ALTO DEL CARMEN','Gl',1.00,7000000.00,7000000.00,'Item Automatico',198,638,'2016-01-01'),(219,'01','CONVENIO MUNICIPALIDAD HUASCO PROMOCION SALUD','Gl',1.00,7000000.00,7000000.00,'Item Automatico',198,639,'2016-01-01'),(220,'01','CONVENIO MUNICIPALIDAD ALTO DEL CARMEN - PRG NIVELACION ESTUDIOS','Gl',1.00,10000000.00,10000000.00,'Item Automatico',198,640,'2016-01-01'),(221,'01','CONVENIO MUNICIPALIDAD ALTO DEL CARMEN- PRODESAL','Gl',1.00,10000000.00,10000000.00,'Item Automatico',198,642,'2016-01-01'),(222,'01','ALMUERZO FIN DE AÑO 2016','Gl',1.00,10000000.00,10000000.00,'Item Automatico',161,643,'2016-01-01'),(223,'01','SERVICIO INGENIERO EN COMPUTACION','Gl',1.00,111.67,111.67,'Item Automatico',164,644,'2016-01-01'),(224,'01','PROYECTO FIESTA ARTE RIO','Gl',1.00,35000000.00,35000000.00,'Item Automatico',198,645,'2016-01-01'),(225,'01','ASESORIA LEGAL EXTERNA DERECHOS HUMANOS','Gl',1.00,6000.00,6000.00,'Item Automatico',185,646,'2016-01-01'),(226,'01','SEMINARIO DE PLANIFICACIÓN URBANA SUSTENTABLE','Gl',1.00,11633426.00,11633426.00,'Item Automatico',198,647,'2016-01-01'),(227,'01','AUTONOMIA ESTUDIO DE PREFACTIBILIDAD','Gl',1.00,59967.50,59967.50,'Item Automatico',202,649,'2017-01-01'),(228,'01','MAPEO SUPERFICIAL DISTRITO EL MORRO','Gl',1.00,29908870.00,29908870.00,'Item Automatico',180,650,'2017-01-01'),(229,'01','SERVICIO DE ASESORIA METEOROLOGIA','Gl',1.00,4400000.00,4400000.00,'Item Automatico',207,651,'2017-01-01'),(230,'01','ESTUDIO DE FLUJOS DE POTENCIA DE SOLUCIONES DE TRANSMISIÓN PARA NU','Gl',1.00,244.25,244.25,'Item Automatico',201,652,'2017-01-01'),(231,'01','SERVICIO DE ALOJAMIENTO Y ALIMENTACIÓN SECTOR CHANCHOQUIN','Gl',1.00,12000000.00,12000000.00,'Item Automatico',203,653,'2016-01-01'),(232,'01','ASESORIA COMUNICACIONAL ESTRATÉGICA','Gl',1.00,1500.00,1500.00,'Item Automatico',197,656,'2017-01-01'),(233,'01','RECOPILACIÓN EN TERRENO DATOS DUEÑOS PREDIOS FREIRINA-HUASCO','Gl',1.00,6000000.00,6000000.00,'Item Automatico',199,657,'2017-01-01'),(234,'01','APOYO EN REVISIÓN DE BASE DATOS Y ORDENAMIENTO DOCUMENTOS RRHH','Gl',1.00,2000016.00,2000016.00,'Item Automatico',161,659,'2017-01-01'),(235,'01','TECHNICAL SERVICES AGREEMENT FINANCIAL','Gl',1.00,250000.00,250000.00,'Item Automatico',167,660,'2017-01-01'),(236,'01','COMUNICACIÓN RADIAL CAMPAÑA SONDAJE LA FORTUNA 2017','Gl',1.00,55100000.00,55100000.00,'Item Automatico',164,661,'2017-01-01'),(237,'01','CONSULTORIA ANALISIS SISTEMA TURNOS Y ESTIMACION DOTACION','Gl',1.00,19800.00,19800.00,'Item Automatico',202,662,'2017-01-01'),(238,'01','EJECUCIÓN DE CALICATAS PROYECTO NUEVAUNIÓN','Gl',1.00,18483000.00,18483000.00,'Item Automatico',189,665,'2017-01-01'),(239,'01','SERVICIO DE PREPARACIÓN DE PLATAFORMA SONDAJE LA FORTUNA','Gl',1.00,33847555.00,33847555.00,'Item Automatico',207,667,'2017-01-01'),(240,'01','PREPARACIÓN DE MUESTRAS Y ANALISIS QUIMICOS SONDJE','Gl',1.00,14820.00,14820.00,'Item Automatico',180,668,'2017-01-01'),(241,'01','REHABILITACIÓN DE CACHIMBAS PARA SONDAJE LA FORTUNA','Gl',1.00,5819418.00,5819418.00,'Item Automatico',207,669,'2017-01-01'),(242,'01','ARRIENDO DE GENERADORES 635 KVA','Gl',1.00,1665.00,1665.00,'Item Automatico',207,671,'2017-01-01'),(243,'01','DISEÑO E IMPLEMENTACIÓN SITIO WEB PROYECTO NUEVAUNIÓN','Gl',1.00,280.00,280.00,'Item Automatico',197,676,'2017-01-01'),(244,'01','ASESORÍA REMEDIACIÓN DERRAME COMBUSTIBLE LA FORTUNA','Gl',1.00,1620.00,1620.00,'Item Automatico',203,692,'2017-01-01'),(245,'01','TECHNICAL SERVICES AGREEMENT (GRP DIRK VAN ZYL)','Gl',1.00,246900.00,246900.00,'Item Automatico',212,693,'2017-01-01'),(246,'01','SERVICIO DE REGISTRO DE PROVEEDORES “REGIC””','Gl',1.00,0.00,0.00,'Item Automatico',157,458,'2015-01-01'),(247,'01','RED METEROLOGICA PROYECTO RELINCHO','Gl',1.00,0.00,0.00,'Item Automatico',210,494,'2015-01-01'),(248,'01','ASESORIA ESPECIALIZADA CIENTIFICO-TECNOLOGICA (CONSERVACION SEMILLA)','Gl',1.00,0.00,0.00,'Item Automatico',203,499,'2015-01-01'),(249,'01','SERVICIO DE LABORATORIO SGS PRUEBAS GEOQUIMICAS','Gl',1.00,0.00,0.00,'Item Automatico',203,502,'2015-01-01'),(250,'01','SERVICIO DE ANALISIS QUIMICOS','Gl',1.00,0.00,0.00,'Item Automatico',203,503,'2015-01-01'),(251,'01','RENOVACION SERVICIO ANUAL SPOT GEN3','Gl',1.00,0.00,0.00,'Item Automatico',169,506,'2015-01-01'),(252,'01','ABASTECIMIENTO DE PETROLEO - COPEC','Gl',1.00,0.00,0.00,'Item Automatico',169,507,'2015-01-01'),(253,'01','SERVICIO DE TELECOMUNICACIONES','Gl',1.00,0.00,0.00,'Item Automatico',164,509,'2015-01-01'),(254,'01','SUMINISTRO DE AGUA POTABLE A GRANEL','Gl',1.00,0.00,0.00,'Item Automatico',169,510,'2015-01-01'),(255,'01','SUMINISTRO DE AGUA ENVASADA','Gl',1.00,0.00,0.00,'Item Automatico',169,511,'2015-01-01'),(256,'01','NULA','Gl',1.00,0.00,0.00,'Item Automatico',157,530,'2015-01-01'),(257,'01','SERVICIO DE PRODUCCION E IMPRESION MATERIAL NUEVA IMAGEN','Gl',1.00,0.00,0.00,'Item Automatico',157,534,'2015-01-01'),(258,'01','NULA','Gl',1.00,0.00,0.00,'Item Automatico',157,539,'2015-01-01'),(259,'01','INSCRIPCION DE MARCAS','Gl',1.00,0.00,0.00,'Item Automatico',197,542,'2015-01-01'),(260,'01','ASESORIA LEGAL','Gl',1.00,0.00,0.00,'Item Automatico',185,543,'2015-01-01'),(261,'01','ASESORIA LEGAL','Gl',1.00,0.00,0.00,'Item Automatico',185,545,'2015-01-01'),(262,'01','NULA','Gl',1.00,0.00,0.00,'Item Automatico',157,546,'2015-01-01'),(263,'01','NULA','Gl',1.00,0.00,0.00,'Item Automatico',197,552,'2015-01-01'),(264,'01','NULA','Gl',1.00,0.00,0.00,'Item Automatico',157,576,'2016-01-01'),(265,'01','INSTALACIONES SANITARIAS CAMPAMENTO LA FORTUNA','Gl',1.00,0.00,0.00,'Item Automatico',207,616,'2016-01-01'),(266,'01','HABILITACIÓN INSTALACIONES DE GAS CAMPAMENTO LA FORTUNA','Gl',1.00,0.00,0.00,'Item Automatico',207,617,'2016-01-01'),(267,'01','HABILITACIÓN ESTACIÓN DE COMBUSTIBLES CAMPAMENTO LA FORTUNA','Gl',1.00,0.00,0.00,'Item Automatico',207,618,'2016-01-01'),(268,'01','PERMANENT CAMPS, OXYGEN PLANT','Gl',1.00,0.00,0.00,'Item Automatico',157,632,'2017-01-01'),(269,'01','AGUAS CHAÑAR SERVICIO HABILITACIÓN INST SANITARIAS','Gl',1.00,0.00,0.00,'Item Automatico',207,633,'2016-01-01'),(270,'01','CONVENIO MUNICIPALIDAD VALLENAR - APOYO ACTIVIDAD PRODUCTIVA','Gl',1.00,0.00,0.00,'Item Automatico',198,641,'2016-01-01'),(271,'01','SERVICIO PREVENCION PLAGA','Gl',1.00,205.20,205.20,'',169,700,'2017-01-01'),(272,'01','SERVICIO DE ASESORIA LEGAL CORPORATIVA','Gl',1.00,115000.00,115000.00,'',185,701,'2017-01-01'),(273,'02','Plan Reasentamiento Fase II(hasta Dic17)','Gl',1.00,5642.00,5642.00,'',211,689,'2017-01-01'),(274,'03','Plan Reasentamiento Fase II(Ene-Mar 18)','Gl',1.00,2418.00,2418.00,'',211,689,'2018-01-01'),(275,'04','Gastos Reembolsables 2017','Gl',1.00,900.00,900.00,'',211,689,'2017-01-01'),(276,'05','Gastos Reembolsables 2017','Gl',1.00,460.00,460.00,'',211,689,'2018-01-01'),(277,'02','SERVICIO EIA (2017)','Gl',1.00,112325.55,112325.55,'',203,460,'2017-01-01'),(278,'01','INFRAESTRUCTURE PROJECTS SUPPORTING MINE DEVELOPMENT','Gl',1.00,50400.00,50400.00,'',167,702,'2017-01-01'),(279,'01','SERVICIO MANTENCION CAMINOS Y MOV TIERRA LA FORUNA','Gl',1.00,414022774.00,414022774.00,'',207,703,'2017-01-01'),(280,'01','REVISIÓN DEL OPEX DEL PROYECTO NUEVAUNIÓN','Gl',1.00,795000.00,795000.00,'',167,704,'2017-01-01'),(281,'01','CTTACiÓN PERSONAL TRANSITORIO PROYECTO CC01','Gl',1.00,147789247.00,147789247.00,'',207,705,'2017-01-01'),(282,'02','CTTACiÓN PERSONAL TRANSITORIO PROYECTO CC02','Gl',1.00,57041464.00,57041464.00,'',208,705,'2017-01-01'),(283,'03','CTTACiÓN PERSONAL TRANSITORIO PROYECTO CC03','G',1.00,54448670.00,54448670.00,'',203,705,'2017-01-01'),(284,'01','ESTUDIO DE VALORES DE TERRENO EN 4 SECTORES DE LA CIUDAD DE VALLENAR','Gl',1.00,113.20,113.20,'',212,706,'2017-01-01'),(285,'01','REVIEW OF THE PROCESSES AND SCOPE FOR THE FS CONTRACT','Gl',1.00,15882.35,15882.35,'',167,707,'2017-01-01'),(286,'01','REIMBURSE EXPENSES','Gl',1.00,10000.00,10000.00,'',167,707,'2017-01-01'),(287,'01','PREPARACIÓN PSU AL<NAME>','Gl',1.00,15000000.00,15000000.00,'',198,708,'2017-01-01'),(288,'01','Owner\'s Engineer for the Port Facility Operations','Gl',1.00,74708.00,74708.00,'',214,709,'2017-01-01'),(289,'01','ENCUESTA PERCEPCIÓN USO CONCENTRADO PROYECTO NU','Gl',1.00,667.00,667.00,'',197,710,'2017-01-01'),(290,'01','ASESORIA PARA LEVANTAMIENTO DE INSCRIPCIONES TITULARES VIGENTES','Gl',1.00,450.00,450.00,'',189,711,'2017-01-01'),(291,'01','PROYECTO HUASCO ESCENCIAL: HISTORIA CONTEMPORANEA PROV HUASCO','Gl',1.00,8888888.89,8888888.89,'',198,712,'2017-01-01'),(292,'01','TRADUCCIÓN SeCCIONES PFS y FS (W. Diaz)','Gl',1.00,2520000.00,2520000.00,'',189,713,'2017-01-01'),(293,'01','SERVICIO ASESORÍA LEGAL LABORAL','Gl',1.00,800.00,800.00,'',185,714,'2017-01-01'),(294,'01','METALLURGICAL TEST PROGRAM AND PROCESS FACILITY DESIGN SUPPORT','Gl',1.00,82200.00,82200.00,'',188,715,'2017-01-01'),(295,'01','MEJORAMIENTO BODEGA SARGENTO ALDEA','Gl',1.00,4697500.00,4697500.00,'',180,716,'2017-01-01'),(296,'01','SERVICIO ASEO OFICINAS VALLENAR NUEVAUNIÓN','Gl',1.00,29663697.00,29663697.00,'',170,717,'2017-01-01'),(297,'01','ARRIENDO DE OFICINAS PARA REUNIONES SANTIAGO','Gl',1.00,10000.00,10000.00,'',161,718,'2017-01-01'),(298,'01','DESARROLLAR LOS SONDAJE GEOMETALURGICO E HIDROGEOLOGICO','Gl',1.00,1047298128.00,1047298128.00,'',208,719,'2017-01-01'),(299,'02','TECHNICAL SERVCE (GRP Mine WaterMc Pty Ltda) (2018)','Gl',1.00,86000.00,86000.00,'',212,694,'2017-01-01'),(300,'03','TECHNICAL SERVCE (GRP Mine WaterMc Pty Ltda) (2019)','Gl',1.00,107800.00,107800.00,'',212,694,'2017-01-01'),(301,'02','Travel Expenses (Estimate)','Gl',1.00,50000.00,50000.00,'',201,684,'2017-01-01'),(302,'01','ASESORÍA TECNICA Y AMBIENTAL EN EL MARCO DE DESARROLLO DEL EIA','Gl',1.00,62400000.00,62400000.00,'',203,720,'2017-01-01'),(303,'01','Desarrollo Sistema Documental','Gl',1.00,585.50,585.50,'',193,721,'2017-01-01'),(304,'01','SERVICIO DE METEREOLOGIA Y CALIDAD DEL AIRE PARA EIA','Gl',1.00,141729397.00,141729397.00,'',210,722,'2017-01-01'),(305,'01','REGULARIZACIÓN DE SERVICIOS DE ABASTECIMIENTO DE AGUA POTABLE','Gl',1.00,5500000.00,5500000.00,'',208,723,'2017-01-01'),(306,'01','EXTRACCIÓN DE LODOS CLOACALES DE FOSA SEPTICA CAMPAMENTO EL PINGO','Gl',1.00,1230000.00,1230000.00,'',169,724,'2017-01-01'),(307,'01','DESARROLLO ASESORIA AMBIENTAL PARA APOYO EN LA ELABORACIÓN EIA','Gl',1.00,32900000.00,32900000.00,'',203,725,'2017-01-01'),(308,'01','SERVICIO EN TIEMPO REAL A PERSONAS Y CAMIONETAS EN LUGARES REMOTOS Y TRASLAFOS DESDE VALLENAR','Gl',1.00,828.00,828.00,'',215,726,'2017-01-01'),(309,'01','Control y Gestion de Riesgos Proyecto Nuevaunión','Gl',1.00,666.67,666.67,'',193,727,'2017-01-01'),(310,'01','PROGRAMA EDUCACIÓN Y EMPRENDIMIENTO- PROGRAMA ROCKSTARS PARA ATACAMA','Gl',1.00,60000000.00,60000000.00,'',198,728,'2017-01-01');
/*!40000 ALTER TABLE `personas_itemctto` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `personas_itemodc`
--
DROP TABLE IF EXISTS `personas_itemodc`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `personas_itemodc` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`NumItem` varchar(8) NOT NULL,
`DescripItem` varchar(150) DEFAULT NULL,
`UnidItem` varchar(50) DEFAULT NULL,
`CantItem` decimal(21,2) DEFAULT NULL,
`PuItem` decimal(21,2) DEFAULT NULL,
`ObservItem` varchar(100) DEFAULT NULL,
`IdCecoODC_id` int(11) NOT NULL,
`IdODC_id` int(11) NOT NULL,
`TotalItem` decimal(21,2) DEFAULT NULL,
`PresupuestoItem` date DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `personas_itemodc_IdCecoODC_id_bf5be421_fk_personas_ceco_id` (`IdCecoODC_id`),
KEY `personas_itemodc_IdODC_id_32956d59_fk_personas_odc_id` (`IdODC_id`),
CONSTRAINT `personas_itemodc_IdCecoODC_id_bf5be421_fk_personas_ceco_id` FOREIGN KEY (`IdCecoODC_id`) REFERENCES `personas_ceco` (`id`),
CONSTRAINT `personas_itemodc_IdODC_id_32956d59_fk_personas_odc_id` FOREIGN KEY (`IdODC_id`) REFERENCES `personas_odc` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=315 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `personas_itemodc`
--
LOCK TABLES `personas_itemodc` WRITE;
/*!40000 ALTER TABLE `personas_itemodc` DISABLE KEYS */;
INSERT INTO `personas_itemodc` VALUES (45,'1','PERSONAL: ELECTROMECANICO PUESTO A DISPOSICION (2','mes',7.00,2640000.00,'',169,750,18480000.00,'2017-01-01'),(46,'2','PERSONAL: GASFITER PUESTO A DISPOSICION (2)','mes',7.00,2640000.00,'',169,750,18480000.00,'2017-01-01'),(47,'3','SERVICIOS DE ALIMENTACION $12,500 DIA C/U (2)','mes',7.00,750000.00,'',169,750,5250000.00,'2017-01-01'),(48,'4','CAMIONETA 4X4, EQUIPAMIENTO MINERO - MAR<NAME>','mes',7.00,1000000.00,'',169,750,7000000.00,'2017-01-01'),(49,'5','DIESEL 100Lt/Mes a $500 Lt.','mes',7.00,50000.00,'',169,750,350000.00,'2017-01-01'),(50,'6','GRUPO ELECTROGENO 44 KVA','mes',7.00,840000.00,'',169,750,5880000.00,'2017-01-01'),(51,'7','MANTENCION GRUPO ELECTROGENO CADA 300 HORAS','mes',7.00,150000.00,'',169,750,1050000.00,'2017-01-01'),(52,'8','CONSUMO DE COMBUSTIBLE APROX. 80 Lt/Día a $500 Lt','mes',7.00,1200000.00,'',169,750,8400000.00,'2017-01-01'),(53,'9','MOVILIZACIÓN CAMBIO DE TURNO 8X6','mes',7.00,480000.00,'',169,750,3360000.00,'2017-01-01'),(54,'10','SERVICIO DE TELEVISIÓN SATELITAL (DIRECTv)','mes',7.00,40000.00,'',169,750,280000.00,'2017-01-01'),(55,'1','No Aplica aumento costos, Solo Aumento Plazo','N/A',0.00,0.00,'',189,751,0.00,'2017-01-01'),(56,'1','No Aplica aumento costos, Solo Aumento Plazo','N/A',0.00,0.00,'',169,752,0.00,'2017-01-01'),(57,'1','No Aplica aumento costos, Solo Aumento Plazo','N/A',1.00,0.00,'',207,753,0.00,'2017-01-01'),(58,'1','No Aplica aumento costos, Solo Aumento Plazo','N/A',0.00,0.00,'',170,754,0.00,'2017-01-01'),(59,'1','No Aplica aumento costos, Solo Aumento Plazo','N/A',0.00,0.00,'',189,755,0.00,'2017-01-01'),(60,'01','EXTENSIÓN DE SERVICIOS HASTA 31 DIC 2017','N/A',0.00,0.00,'',207,756,0.00,'2017-01-01'),(61,'1','No Aplica aumento costos, Solo Aumento Plazo','N/A',0.00,0.00,'',161,757,0.00,'2017-01-01'),(62,'01','Gastos Colegiatura','Gl',1.00,31449.20,NULL,167,758,31449.20,'2017-01-01'),(63,'02','Bono STI','dias',125.00,200.00,NULL,167,758,25000.00,'2017-01-01'),(64,'01','SERVICIO MES CONSUTORÍA C JORDÁN','Mes',10.00,2700000.00,NULL,199,759,27000000.00,'2017-01-01'),(65,'01','ADDENDUM 01 ALCANCE GEOTÉCNICO','Gl',1.00,149762811.00,NULL,201,760,149762811.00,'2017-01-01'),(66,'01','<NAME>','Gl',1.00,143836820.00,NULL,210,761,143836820.00,'2017-01-01'),(67,'01','PROYECTO BIODIVERSIDAD Y MANUTENCIÓN DE PARCELAS','Gl',1.00,40000000.00,NULL,198,762,40000000.00,'2017-01-01'),(68,'01','MONITOREOS REDES SOCIALES 2017','mes',12.00,28.00,NULL,197,764,336.00,'2017-01-01'),(69,'01','DISMINUCIÓN SERVICIOS 2015','Gl',1.00,-6300000.00,NULL,197,765,-6300000.00,'2015-01-01'),(70,'01','SERVICIO CLIPPING Y BOLETIN HASTA 31-12-2016','Gl',1.00,13050000.00,NULL,197,766,13050000.00,'2016-01-01'),(71,'01','SERVICIO CLIPPING HASTA 31-12-2017','Gl',1.00,10800000.00,NULL,197,767,10800000.00,'2017-01-01'),(72,'01','EXTENSION DE PLAZO','Gl',1.00,0.00,NULL,161,768,0.00,'2017-01-01'),(73,'01','AUMENTO DE PLAZO Y MONTO por Tecnical Support','Gl',1.00,200.00,NULL,197,769,200.00,'2017-01-01'),(74,'01','SERVICIO DISEÑO MATERIALES HASTA 31-12-2017','Gl',1.00,200.00,NULL,197,771,200.00,'2017-01-01'),(75,'01','ADICIONAL SCOPE 100 HOURS OF WORK FOR TRADE STUDY','Gl',1.00,15000.00,NULL,201,772,15000.00,'2016-01-01'),(76,'01','ARCHIVO FOTOGRAFICO NU','Gl',1.00,1888889.00,NULL,197,773,1888889.00,'2016-01-01'),(77,'01','SERVICIOS FOTOGRAFICOS 2017','Gl',1.00,5666670.00,NULL,197,774,5666670.00,'2017-01-01'),(78,'01','ACTUALIZACIÓN DE CAPEX Y OPEX EL MORRO','Gl',1.00,1435.00,NULL,202,775,1435.00,'2016-01-01'),(79,'01','ESTUDIO DE ALTERNATIVA Nª5','Gl',1.00,2125.69,NULL,201,776,2125.69,'2016-01-01'),(80,'01','EXTENSION DE PLAZO','Gl',1.00,0.00,NULL,201,777,0.00,'2016-01-01'),(81,'01','AJUSTE POR TÉRMINO DE CONTRATO','Gl',1.00,-354.10,NULL,201,778,-354.10,'2016-01-01'),(82,'1','SERVICIOS PUESTA A DISPOSICIÓN HASTA 31/03/2017','Gl',1.00,58252571.00,NULL,208,779,58252571.00,'2017-01-01'),(83,'01','INCORPORA AREA ADICIONAL','Gl',1.00,11616.00,NULL,201,780,11616.00,'2016-01-01'),(84,'01','AUMENTO DE PLAZO Y MONTO POR TECHNICAL SUPPORT','Gl',1.00,7500.00,NULL,201,781,7500.00,'2016-01-01'),(85,'01','Item of in-house Engineering, Simulations, Reviews','Unidad',1.00,40000.00,NULL,189,782,40000.00,'2017-01-01'),(86,'02','Travel and Living','Unidad',2.00,4000.00,NULL,189,782,8000.00,'2017-01-01'),(87,'01','REASIGNACIÓN PARA INCLUIR GASTOS REEMBOLSABLES','Gl',1.00,-295189.00,NULL,207,785,-295189.00,'2017-01-01'),(88,'1','Servicios Adicionales por aumento plazo','Gl',1.00,6410210.00,NULL,189,786,6410210.00,'2017-01-01'),(89,'01','ACTUALIZACIÓN FASE II','Gl',1.00,56844.73,NULL,203,663,56844.73,'2017-01-01'),(90,'01','INSTRUMENTACIÓN CUERDA VIBRANTE','Gl',1.00,77163238.00,NULL,207,787,77163238.00,'2017-01-01'),(91,'02','COSTOS ADMINISTRACIÓN (5%)','Gl',1.00,3858162.00,NULL,207,787,3858162.00,'2017-01-01'),(92,'01','Adicionales segun propuesta 15may17','Gl',1.00,3328.00,NULL,189,791,3328.00,'2017-01-01'),(94,'01','AJUSTE POR TÉRMINO DE CONTRATO','Gl',1.00,-10259314.00,NULL,210,793,-10259314.00,'2016-01-01'),(96,'01','SERVICIOS 2014','Gl',1.00,0.00,'Item Automatico',161,568,0.00,'2014-01-01'),(97,'01','SERVICIOS 2015','Gl',1.00,15395946.00,'Item Automatico',161,569,15395946.00,'2015-01-01'),(98,'01','SERVICIOS 2015','Gl',1.00,1696036.00,'Item Automatico',161,570,1696036.00,'2015-01-01'),(99,'01','SERVICIOS 2015','Gl',1.00,2740947.00,'Item Automatico',161,571,2740947.00,'2015-01-01'),(100,'01','SERVICIOS 2016','Gl',1.00,5390564.00,'Item Automatico',161,572,5390564.00,'2016-01-01'),(101,'01','SERVICIO ASEO OFICINAS 2015','Gl',1.00,10198000.00,'Item Automatico',170,573,10198000.00,'2015-01-01'),(102,'01','SERVICIO ASEO OFICINAS 2015','Gl',1.00,8617600.00,'Item Automatico',170,574,8617600.00,'2015-01-01'),(103,'01','SERVICIO ASEO OFICINAS 2015','Gl',1.00,2100000.00,'Item Automatico',170,575,2100000.00,'2015-01-01'),(104,'01','SERVICIO ASEO OFICINAS 2015','Gl',1.00,3400000.00,'Item Automatico',170,576,3400000.00,'2015-01-01'),(105,'01','SERVICIO ASEO OFICINAS 2015','Gl',1.00,79941603.00,'Item Automatico',170,577,79941603.00,'2015-01-01'),(106,'01','SERVICIO ASEO OFICINAS 2015','Gl',1.00,-6341276.00,'Item Automatico',170,578,-6341276.00,'2015-01-01'),(107,'01','SERVICIO ASEO OFICINAS 2016','Gl',1.00,0.00,'Item Automatico',170,579,0.00,'2016-01-01'),(108,'01','SERVICIO ASEO OFICINAS 2016','Gl',1.00,52367879.00,'Item Automatico',170,580,52367879.00,'2016-01-01'),(109,'01','AJUSTE SERVICIOS 2015','Gl',1.00,-6630800.00,'Item Automatico',184,581,-6630800.00,'2015-01-01'),(110,'01','SERVICIOS 2016','Gl',1.00,384.00,'Item Automatico',184,582,384.00,'2016-01-01'),(111,'01','SERVICIOS 2016 (JUNIO 2016)','Gl',1.00,535.00,'Item Automatico',210,583,535.00,'2016-01-01'),(112,'01','SERVICIOS 2016 (DIC2016)','Gl',1.00,396.20,'Item Automatico',210,584,396.20,'2016-01-01'),(113,'01','0','Gl',1.00,0.00,'Item Automatico',199,585,0.00,'2015-01-01'),(114,'01','SERVICIOS CONSULTORIA 2016','Gl',1.00,63817201.00,'Item Automatico',199,586,63817201.00,'2016-01-01'),(115,'01','AJUSTE SERVICIO AÑO 2015','Gl',1.00,-37529275.00,'Item Automatico',210,587,-37529275.00,'2015-01-01'),(116,'01','SERVICIOS 2015','Gl',1.00,10857390.00,'Item Automatico',164,590,10857390.00,'2015-01-01'),(117,'01','AJUSTE POR TÉRMINO DE CONTRATO','Gl',1.00,-1029997.75,'Item Automatico',164,591,-1029997.75,'2016-01-01'),(118,'01','SERVICIO 2016','Gl',1.00,2387.79,'Item Automatico',185,592,2387.79,'2016-01-01'),(119,'01','SERVICIO 2016','Gl',1.00,456.84,'Item Automatico',185,593,456.84,'2016-01-01'),(120,'01','SERVICIOS 2016','Gl',1.00,21982335.00,'Item Automatico',210,594,21982335.00,'2016-01-01'),(121,'01','SERVICIOS 2016','Gl',1.00,8792934.00,'Item Automatico',210,595,8792934.00,'2016-01-01'),(122,'01','SERVICIO 2015','Gl',1.00,848.00,'Item Automatico',164,596,848.00,'2015-01-01'),(123,'01','AJUSTE POR TÉRMINO DE CONTRATO','Gl',1.00,-2264034.30,'Item Automatico',198,597,-2264034.30,'2016-01-01'),(124,'01','AUMENTO DE ALCANCE','Gl',1.00,561.00,'Item Automatico',203,598,561.00,'2016-01-01'),(125,'01','AUMENTO PLAZO Y MONTO','Gl',1.00,694445.00,'Item Automatico',161,601,694445.00,'2016-01-01'),(126,'01','AUMENTO DE PARTIDAS','Gl',1.00,366.00,'Item Automatico',208,602,366.00,'2016-01-01'),(127,'01','0','Gl',1.00,4260.00,'Item Automatico',169,603,4260.00,'2015-01-01'),(128,'01','0','Gl',1.00,3828.00,'Item Automatico',169,604,3828.00,'2015-01-01'),(129,'01','0','Gl',1.00,748.00,'Item Automatico',169,605,748.00,'2015-01-01'),(130,'01','0','Gl',1.00,990.00,'Item Automatico',169,606,990.00,'2015-01-01'),(131,'01','0','Gl',1.00,64.08,'Item Automatico',169,607,64.08,'2015-01-01'),(132,'01','0','Gl',1.00,990.00,'Item Automatico',169,608,990.00,'2015-01-01'),(133,'01','0','Gl',1.00,20140.00,'Item Automatico',169,609,20140.00,'2015-01-01'),(134,'01','0','Gl',1.00,45600.00,'Item Automatico',169,610,45600.00,'2015-01-01'),(135,'01','0','Gl',1.00,45600.00,'Item Automatico',169,611,45600.00,'2015-01-01'),(136,'01','SERVICIO 2016','Gl',1.00,7600.00,'Item Automatico',169,612,7600.00,'2016-01-01'),(137,'01','SERVICIO 2016','Gl',1.00,38000.00,'Item Automatico',169,613,38000.00,'2016-01-01'),(138,'01','0','Gl',1.00,17154865.00,'Item Automatico',170,614,17154865.00,'2015-01-01'),(139,'01','0','Gl',1.00,3995000.00,'Item Automatico',170,615,3995000.00,'2015-01-01'),(140,'01','0','Gl',1.00,20164200.00,'Item Automatico',170,616,20164200.00,'2015-01-01'),(141,'01','0','Gl',1.00,84134166.00,'Item Automatico',170,617,84134166.00,'2015-01-01'),(142,'01','0','Gl',1.00,-15744479.00,'Item Automatico',170,618,-15744479.00,'2015-01-01'),(143,'01','0','Gl',1.00,41071303.00,'Item Automatico',170,619,41071303.00,'2015-01-01'),(144,'01','0','Gl',1.00,41571302.00,'Item Automatico',170,620,41571302.00,'2015-01-01'),(145,'01','0','Gl',1.00,7281884.00,'Item Automatico',170,621,7281884.00,'2016-01-01'),(146,'01','0','Gl',1.00,-2520012.00,'Item Automatico',170,622,-2520012.00,'2016-01-01'),(147,'01','0','Gl',1.00,-620.58,'Item Automatico',203,623,-620.58,'2016-01-01'),(148,'01','0','Gl',1.00,818.32,'Item Automatico',203,624,818.32,'2016-01-01'),(149,'01','0','Gl',1.00,72.70,'Item Automatico',203,625,72.70,'2016-01-01'),(150,'01','0','Gl',1.00,529.38,'Item Automatico',203,626,529.38,'2016-01-01'),(151,'01','0','Gl',1.00,10804604.00,'Item Automatico',170,627,10804604.00,'2015-01-01'),(152,'01','0','Gl',1.00,14304398.00,'Item Automatico',170,628,14304398.00,'2015-01-01'),(153,'01','0','Gl',1.00,1166598.00,'Item Automatico',170,629,1166598.00,'2015-01-01'),(154,'01','SERVICIO 2015','Gl',1.00,64534.00,'Item Automatico',170,630,64534.00,'2015-01-01'),(155,'01','0','Gl',1.00,50000000.00,'Item Automatico',198,631,50000000.00,'2015-01-01'),(156,'01','0','Gl',1.00,50000000.00,'Item Automatico',198,632,50000000.00,'2015-01-01'),(157,'01','0','Gl',1.00,393.00,'Item Automatico',169,633,393.00,'2015-01-01'),(158,'01','0','Gl',1.00,103.60,'Item Automatico',169,634,103.60,'2015-01-01'),(159,'01','0','Gl',1.00,621.60,'Item Automatico',169,635,621.60,'2015-01-01'),(160,'01','0','Gl',1.00,520.50,'Item Automatico',169,636,520.50,'2015-01-01'),(161,'01','0','Gl',1.00,514.80,'Item Automatico',169,637,514.80,'2015-01-01'),(162,'01','SERVICIO 2015','Gl',1.00,128.70,'Item Automatico',169,638,128.70,'2015-01-01'),(163,'01','0','Gl',1.00,328.50,'Item Automatico',169,639,328.50,'2016-01-01'),(164,'01','0','Gl',1.00,3745000.00,'Item Automatico',169,642,3745000.00,'2016-01-01'),(165,'01','0','Gl',1.00,2640000.00,'Item Automatico',207,643,2640000.00,'2016-01-01'),(166,'01','0','Gl',1.00,13900000.00,'Item Automatico',169,644,13900000.00,'2016-01-01'),(167,'01','0','Gl',1.00,8090000.00,'Item Automatico',169,645,8090000.00,'2016-01-01'),(168,'01','0','Gl',1.00,4200000.00,'Item Automatico',169,646,4200000.00,'2016-01-01'),(169,'01','0','Gl',1.00,0.00,'Item Automatico',207,647,0.00,'2016-01-01'),(170,'01','0','Gl',1.00,5022000.00,'Item Automatico',157,650,5022000.00,'2016-01-01'),(171,'01','0','Gl',1.00,76200.00,'Item Automatico',157,651,76200.00,'2016-01-01'),(172,'01','Serv Cami SERA','Gl',1.00,2441794.00,'Item Automatico',169,652,2441794.00,'2016-01-01'),(173,'01','LAVADO INTERIOR ESTANQUE 20M3 CAMPAMENTO EL PINGO','Gl',1.00,4260805.00,'Item Automatico',169,653,4260805.00,'2016-01-01'),(174,'01','TRABAJO DE DESPEJE CAMINO SECTOR LA TOTORA','Gl',1.00,7273920.00,'Item Automatico',169,654,7273920.00,'2016-01-01'),(175,'01','SERVICIOS COMPLEMENTARIOS PROGRAMACION RADIOS','Gl',1.00,917450.00,'Item Automatico',164,655,917450.00,'2016-01-01'),(176,'01','SUMINISTRO Y TRANSPORTE AGUA POTABLE C. EL PINGO','Gl',1.00,1770000.00,'Item Automatico',169,656,1770000.00,'2016-01-01'),(177,'01','','Gl',1.00,379.60,'Item Automatico',207,657,379.60,'2016-01-01'),(178,'01','Servicio Arriendo de Generador 150 Kva y Topografí','Gl',1.00,9960000.00,'Item Automatico',207,658,9960000.00,'2016-01-01'),(179,'01','APOYO TALLER DE FLOTACIÓN','Gl',1.00,210.26,'Item Automatico',188,659,210.26,'2016-01-01'),(180,'01','SERVICIO CONTROL LABORAL(3 Meses)','Gl',1.00,2850000.00,'Item Automatico',203,660,2850000.00,'2016-01-01'),(181,'01','SUMINISTRO DOS PREVISIONISTAS','Gl',1.00,39233836.00,'Item Automatico',203,661,39233836.00,'2017-01-01'),(182,'01','Aumenta Matención Preventiva','Gl',1.00,50.00,'Item Automatico',165,664,50.00,'2016-01-01'),(183,'01','Arriendo Camioneta Linea Base (8 meses)','Gl',1.00,284.40,'Item Automatico',203,665,284.40,'2017-01-01'),(184,'01','Apoyo Gestión de Contratos y Ordenes de Compra','Gl',1.00,540.00,'Item Automatico',189,667,540.00,'2017-01-01'),(185,'01','Servicio Control de Plaga El Pingo','Gl',1.00,59.20,'Item Automatico',169,668,59.20,'2016-01-01'),(186,'01','Reparación Techumbre de Galpón Aconcagua Nª970','Gl',1.00,650000.00,'Item Automatico',170,669,650000.00,'2016-01-01'),(187,'01','Servicios Adicionales(Arriend Camión Pluma, otros)','Gl',1.00,4400000.00,'Item Automatico',169,670,4400000.00,'2016-01-01'),(188,'01','ORDEN DE CAMBIO DE AJUSTE HH (NO AUMNTA VALOR)','Gl',1.00,0.00,'Item Automatico',189,673,0.00,'2016-01-01'),(189,'01','SERVICIO ATENCIÓN SALA PROCED PRIM AUX LINEA BASE','Gl',1.00,979.45,'Item Automatico',203,674,979.45,'2017-01-01'),(190,'01','SERV PARAMEDICO Y AMBULANCIA 4x4 LB LA FORTUNA','Gl',1.00,556.03,'Item Automatico',203,675,556.03,'2017-01-01'),(191,'01','SUMINISTRO DOS PREVISIONISTAS CAMPAÑA LB PRIMAV','Gl',1.00,18544073.00,'Item Automatico',203,677,18544073.00,'2017-01-01'),(192,'01','VISITA AVALLENAR MIGRACION TELEFONICA','Gl',1.00,1117000.00,'Item Automatico',164,678,1117000.00,'2016-01-01'),(193,'01','SERVICIO ALIMENTACION 06-10-2016','Gl',1.00,924236.00,'Item Automatico',169,679,924236.00,'2016-01-01'),(194,'01','SERVICIO ALIMENTACION CAMP RELINCHO Y PINGO LB','Gl',1.00,28406412.00,'Item Automatico',169,680,28406412.00,'2016-01-01'),(195,'01','ORDEN DE CAMBIO DE AJUSTE DE PARTIDAS','Gl',1.00,0.00,'Item Automatico',208,681,0.00,'2016-01-01'),(196,'01','AJUSTE POR TÉRMINO DE CONTRATO','Gl',1.00,-1178.80,'Item Automatico',208,682,-1178.80,'2016-01-01'),(197,'01','FASE 2 DEL SERVICIO, AUMENTO DE HORAS Y PLAZO','Gl',1.00,39500.00,'Item Automatico',189,683,39500.00,'2017-01-01'),(198,'01','AUMENTO DE GASTOS REEMBOLSABLES FASE2','Gl',1.00,8773.60,'Item Automatico',211,684,8773.60,'2016-01-01'),(199,'01','AJUSTE POR CIERRE DE CTTO','Gl',1.00,-27883932.00,'Item Automatico',207,685,-27883932.00,'2016-01-01'),(200,'01','REACONDICIONAMIENTO OFICINA MEDIO AMBIENTE VALLENA','Gl',1.00,660000.00,'Item Automatico',203,686,660000.00,'2017-01-01'),(201,'01','AUMENTO DE HORAS SERVICIO 2016','Gl',1.00,30300.00,'Item Automatico',198,687,30300.00,'2016-01-01'),(202,'01','SERV ADIC PARAMEDICO AMBULANCIA 4x4 CONDUCT LB','Gl',1.00,112.94,'Item Automatico',207,688,112.94,'2017-01-01'),(203,'01','Servicios 2017','Gl',1.00,28216610.00,'Item Automatico',165,689,28216610.00,'2017-01-01'),(204,'01','SERVICIO 2017','Gl',1.00,825.00,'Item Automatico',183,690,825.00,'2017-01-01'),(205,'01','DESPEJE CAMINO SECTOR LA TOTORA','Gl',1.00,10874216.00,'Item Automatico',169,691,10874216.00,'2016-01-01'),(206,'01','SERVICIO DESPEJE CAMINO LA FORTUNA ENE2017','Gl',1.00,10110672.00,'Item Automatico',169,692,10110672.00,'2017-01-01'),(207,'01','SERVICIOS 2017','Gl',1.00,4000.00,'Item Automatico',185,693,4000.00,'2017-01-01'),(208,'01','<NAME> 3 PARA EIA','Gl',1.00,284.40,'Item Automatico',203,694,284.40,'2017-01-01'),(209,'01','AUMENTO SERVICIO 3 MESES (HASTA MAYO 2017)','Gl',1.00,20070000.00,'Item Automatico',167,695,20070000.00,'2017-01-01'),(210,'01','Recambio de Contenedor 10 m3 hasta 31-03-2017','Gl',1.00,3300000.00,'Item Automatico',169,697,3300000.00,'2017-01-01'),(211,'01','Acondicionamiento cafeteria y muebles MA Vallenar','Gl',1.00,2107000.00,'Item Automatico',170,698,2107000.00,'2017-01-01'),(212,'01','COMPRA DE BOMBA HYDROPACK SONDAJE LA FORTUNA 2017','Gl',1.00,474433.00,'Item Automatico',207,701,474433.00,'2017-01-01'),(213,'01','SOLO EXTENSION DE PLAZO','Gl',1.00,0.00,'Item Automatico',161,702,0.00,'2017-01-01'),(214,'01','Servicio Mantenimiento Camp Relincho 1 Sem 2017','Gl',1.00,24340000.00,'Item Automatico',207,705,24340000.00,'2017-01-01'),(215,'01','SERVICIO MONITOREO HASTA 30-04-2017','Gl',1.00,29144000.00,'Item Automatico',164,706,29144000.00,'2017-01-01'),(216,'01','INSTALACIÓN DE RED GAS CAMPAMENTO EL PINGO','Gl',1.00,1480000.00,'Item Automatico',169,707,1480000.00,'2017-01-01'),(217,'01','SERVICIO MANTENCIÓN OFICINA HASTA 31-12-2017','Gl',1.00,550.00,'Item Automatico',165,708,550.00,'2017-01-01'),(218,'01','SERVICIO COORDINACIÓN EIA HASTA OCT-17','Gl',1.00,143460000.00,'Item Automatico',192,709,143460000.00,'2017-01-01'),(219,'01','SERV PARAMEDiC TURNO NOCHE LA FORTUNA (PROVISORIO)','Gl',1.00,121.00,'Item Automatico',203,710,121.00,'2017-01-01'),(220,'01','SERVICIOCONTROL LABORAL 2017 HASTA MAR-2017','Gl',1.00,846000.00,'Item Automatico',203,711,846000.00,'2017-01-01'),(221,'01','ENTRENAMIENTO FUNCIONAL 1 SEM 2017','Gl',1.00,666667.00,'Item Automatico',170,712,666667.00,'2017-01-01'),(222,'01','PAUSA ACTIVA SERV 2017','Gl',1.00,3888889.00,'Item Automatico',170,713,3888889.00,'2017-01-01'),(223,'01','SERVICIO ASEO OFICINAS NU HASTA 30-04-2017','Gl',1.00,12810264.00,'Item Automatico',170,714,12810264.00,'2017-01-01'),(224,'01','APOYO REVISIÓN BD de RHH y PROP MINERA','Gl',1.00,1666680.00,'Item Automatico',161,715,1666680.00,'2017-01-01'),(225,'01','NOTIFICACION Y GEOREFRENCIACIÓN AUMENTO PREDIOS','Gl',1.00,7800000.00,'Item Automatico',203,716,7800000.00,'2017-01-01'),(226,'01','Ruta Adicional','Gl',1.00,251816542.00,'Item Automatico',201,717,251816542.00,'2017-01-01'),(227,'01','Aumento de días en el Servicio (11 dias)','Gl',1.00,6963008.00,'Item Automatico',209,718,6963008.00,'2017-01-01'),(228,'01','SERVICIO MANT IMPRESORAS 2017, AUMENTO CANT IMP','Gl',1.00,27120000.00,'Item Automatico',164,719,27120000.00,'2017-01-01'),(229,'01','SERVICIO HASTA ABRIL 2017','Gl',1.00,2720000.00,'Item Automatico',161,720,2720000.00,'2017-01-01'),(230,'01','Extensión Servicio Horas e Imágenes Satelitales','Gl',1.00,2360.00,'Item Automatico',189,749,2360.00,'2017-01-01'),(231,'01','Asesoria Programa de Reasentamiento (Abril-Dic 18)','Gl',1.00,196585.00,'Item Automatico',211,763,196585.00,'2017-01-01'),(233,'01','','Gl',1.00,59900.00,'Item Automatico',207,789,59900.00,'2017-01-01'),(234,'01','Servicio Aseo Oficinas Abril 2017 a Mayo 2017','Gl',1.00,3314791.00,NULL,170,795,3314791.00,'2017-01-01'),(235,'01','PDN Aprobadas a Mayo 2017','Gl',1.00,508100463.00,NULL,192,796,508100463.00,'2017-01-01'),(236,'01','PDN Aprobadas a Mayo 2017','Gl',1.00,2282923.00,NULL,192,797,2282923.00,'2017-01-01'),(237,'01','GASTOS REEMBOLSABLES COLEGIATURA','Gl',1.00,15000.00,NULL,167,798,15000.00,'2017-01-01'),(238,'01','Curso ingles oficina Stgo(A.Soto','Gl',1.00,1440000.00,NULL,161,799,1440000.00,'2016-01-01'),(239,'01','Curso ingles oficina Stgo(Jun-Dic 2017)','Gl',1.00,8640000.00,NULL,161,800,8640000.00,'2017-01-01'),(240,'02','Asesoria Programa de Reasentamiento (Ene -Mar 18)','Gl',1.00,44100.00,NULL,211,763,44100.00,'2018-01-01'),(241,'02','ACTUALIZACIÓN FASE II (Estimado 2018)','Gl',1.00,33000.00,NULL,203,663,33000.00,'2018-01-01'),(242,'03','SERVICIO ABRIL-DIC 2017','Gl',1.00,450.00,NULL,197,801,450.00,'2017-01-01'),(243,'01','SERVICIO INTEGRACION DDHH NUEVAUNION 2017','Gl',1.00,82245.00,NULL,198,802,82245.00,'2017-01-01'),(244,'01','Route and Profile Development','Gl',1.00,37800.00,NULL,201,803,37800.00,'2017-01-01'),(245,'02','Engineering (specifications, drawings)','Gl',1.00,36300.00,NULL,201,803,36300.00,'2017-01-01'),(246,'03','Cost estimate and schedules','Gl',1.00,7200.00,NULL,201,803,7200.00,'2017-01-01'),(247,'04','Administration and project management','Gl',1.00,8300.00,NULL,201,803,8300.00,'2017-01-01'),(248,'05','Gastos Reembolsables (KOM)','Gl',1.00,35000.00,NULL,201,803,35000.00,'2017-01-01'),(249,'01','G.Reembolsables por Viajes KOM y V. Site','Gl',1.00,35000.00,NULL,201,804,35000.00,'2017-01-01'),(250,'01','SOPORTE EJECUCIÖN PROGRAMA. METALURG (TEST)','Gl',1.00,82200.00,NULL,189,805,82200.00,'2017-01-01'),(251,'02','Gastos reembolsables (viajes)','Gl',1.00,23000.00,NULL,189,805,23000.00,'2017-01-01'),(252,'01','TRABAJOS MOTONIVELADORA LA FORTUNA (ADICIONAL)','Gl',1.00,8408592.00,NULL,204,806,8408592.00,'2017-01-01'),(253,'02','SERVICIOS 2016','Gl',1.00,9996200.00,NULL,184,581,9996200.00,'2016-01-01'),(254,'01','AJUSTE SERVICIO AÑO 2015','Gl',1.00,-516.20,NULL,210,807,-516.20,'2015-01-01'),(255,'02','SERVICIO AÑO 2016','Gl',1.00,516.20,NULL,210,807,516.20,'2016-01-01'),(256,'01','AJUSTE SERVICIO AÑO 2015','Gl',1.00,-1029098.00,NULL,164,809,-1029098.00,'2015-01-01'),(257,'02','SERVICIOS 2016','Gl',1.00,1029098.00,NULL,164,809,1029098.00,'2016-01-01'),(258,'02','SERVICIOS 2016','Gl',1.00,17400000.00,NULL,210,587,17400000.00,'2016-01-01'),(259,'02','AJUSTE SERVICIO 2015','Gl',1.00,-692.21,NULL,185,592,-692.21,'2015-01-01'),(260,'03','SERVICIO 2016 (SALDO 2015)','Gl',1.00,692.21,NULL,185,592,692.21,'2016-01-01'),(261,'02','AJUSTE SERVICIO 2015','Gl',1.00,-5006326.00,NULL,210,594,-5006326.00,'2015-01-01'),(262,'03','SERVICIO 2016 (SALDO 2015)','Gl',1.00,5006326.00,NULL,210,594,5006326.00,'2016-01-01'),(263,'01','AJUSTE SERVICIO 2015','Gl',1.00,-219.27,NULL,203,598,-219.27,'2015-01-01'),(264,'01','SERVICIO 2016 (SALDO 2015)','Gl',1.00,219.27,NULL,203,598,219.27,'2016-01-01'),(267,'02','AJUSTE SERVICIO 2015','Gl',1.00,-155.43,NULL,165,664,-155.43,'2015-01-01'),(268,'03','SERVICIO 2016 (SALDO 2015)','Gl',1.00,155.43,NULL,165,664,155.43,'2016-01-01'),(269,'02','AJUSTE SERVICIO 2015','Gl',1.00,-3500011.00,NULL,170,620,-3500011.00,'2015-01-01'),(270,'03','SERVICIO 2016 (SALDO 2015)','Gl',1.00,3500011.00,NULL,170,620,3500011.00,'2016-01-01'),(271,'01','AJUSTE SERVICIO AÑO 2015','Gl',1.00,-42.65,NULL,203,810,-42.65,'2015-01-01'),(272,'02','SERVICIOS 2016','Gl',1.00,42.65,NULL,203,810,42.65,'2016-01-01'),(273,'02','AJUSTE SERVICIO 2015','Gl',1.00,-1176699.00,NULL,170,630,-1176699.00,'2015-01-01'),(274,'03','SERVICIO 2016 (SALDO 2015)','Gl',1.00,1176699.00,NULL,170,630,1176699.00,'2016-01-01'),(275,'02','AJUSTE SERVICIO 2015','Gl',1.00,-81.50,NULL,169,638,-81.50,'2015-01-01'),(276,'03','SERVICIO 2016 (SALDO 2015)','Gl',1.00,81.50,NULL,169,638,81.50,'2016-01-01'),(277,'01','AUMENTO DE HORAS JUNIO 2017','Gl',1.00,300.00,NULL,203,811,300.00,'2017-01-01'),(278,'01','STRENGTHEN THE NUEVAUNIÓN MANAGEMENT TEAM; \"MAINTENANCE\"','Gl',1.00,1768.80,NULL,161,812,1768.80,'2017-01-01'),(279,'02','FACILITATE THE INTER-AREA TEAM WORK WHICH WILL DEVELOP THE ORGANIZATIONAL CAPACITIES OF THE NUEVAUNIÓN NEW CULTURE','Gl',1.00,1724.80,NULL,161,812,1724.80,'2017-01-01'),(280,'01','RETROEXCAVADORA 420 O SIMILAR (OPERADOR INCLUIDO)','HM',230.00,46000.00,NULL,208,813,10580000.00,'2017-01-01'),(281,'02','BULLDOZER D-8 O SIMILAR (OPERADOR INCLUIDO)','HM',130.00,120551.00,NULL,208,813,15671630.00,'2017-01-01'),(282,'03','MOVILIZACIÓN POR MAQUINA','Gl',1.00,1000000.00,NULL,208,813,1000000.00,'2017-01-01'),(283,'04','DESMOVILIZACIÓN POR MAQUINA','Gl',1.00,1000000.00,NULL,208,813,1000000.00,'2017-01-01'),(284,'05','GASTOS GENERALES (25%)','Gl',1.00,8026117.00,NULL,208,813,8026117.00,'2017-01-01'),(285,'06','UTILIDAD (15%)','Gl',1.00,4237745.00,NULL,208,813,4237745.00,'2017-01-01'),(286,'01','TRABAJOS Y MATERRIALES HABILITACIÓN CAMPAMENTO','Gl',1.00,47859914.00,NULL,207,814,47859914.00,'2017-01-01'),(287,'01','AUMENTO DE HORAS MAQUINA SERV PREPARACION PLATAFORMA LA FORTUNA','Gl',1.00,49798582.00,NULL,207,815,49798582.00,'2017-01-01'),(288,'01','SAMPLE PREPARATION OF DRILL CORE -SPL-334a( 01 SPLIT DE PULPA)','Unidad',10688.00,0.70,NULL,207,816,7481.60,'2017-01-01'),(289,'03','HABILITACIÓN DE POZOS E INSTALACIÖN DE PIESOMETROS (ESTMACIÓN)','Gl',1.00,33798526.00,NULL,207,787,33798526.00,'2017-01-01'),(290,'04','ACTA DE ACUERDO 31-05-2017 - COSTOS EFECTIVOS PERSONAL EN ESPERA (8-05-17 al 31-05-2017)','Gl',1.00,68811702.00,NULL,207,787,68811702.00,'2017-01-01'),(291,'01','ACTIVIDADES GEOTECNICAS E HIDROGEOLOGICAS SUPLEMENTARIAS (PTTO JUNI 2017)','Gl',1.00,164409.00,NULL,207,817,164409.00,'2017-01-01'),(293,'01','AJUSTE DE PARTIDAS','Gl',1.00,0.00,'Item Automatico',164,808,0.00,'2015-01-01'),(294,'01','INSTALACIÓN CABLEADO ESTRUCTURADO OFICINA ALTO DEL CARMEN','Gl',1.00,1750000.00,NULL,164,818,1750000.00,'2017-01-01'),(295,'01','INCORPORACIÓN DE BULLDOZER ADICIONAL','Gl',1.00,24543038.00,NULL,207,819,24543038.00,'2017-01-01'),(296,'ODC 02','AUMENTO POR AJUSTE REMUNERACIONES','Gl',1.00,900000.00,NULL,165,820,900000.00,'2017-01-01'),(297,'01','AUMENTO SERV, (TOMA MUESTRA Y ANALISIS LABORATORIO AGUAS SUP) PDN7','Gl',1.00,387.85,NULL,203,821,387.85,'2017-01-01'),(298,'01','Ingreso <NAME>','Gl',1.00,11128998.00,NULL,198,822,11128998.00,'2017-01-01'),(299,'01','WATER FOR CONSTRUCTION STUDY','Gl',1.00,54910544.00,NULL,189,823,54910544.00,'2017-01-01'),(300,'01','PARTICIPACIÓN WORKSHOP PERMITING STRATEGY y GASTOS POR VIAJES','Gl',1.00,2817264.00,NULL,192,824,2817264.00,'2016-01-01'),(301,'02','SERVICIO PLANNER HASTA OCT-17','Gl',1.00,116409600.00,NULL,193,709,116409600.00,'2017-01-01'),(305,'01','MANTENCIÓN GENERADOR OLYMPIAN GEP65-11','Gl',1.00,1193445.00,NULL,169,828,1193445.00,'2016-01-01'),(306,'05','ACTA DE ACUERDO 31-05-2017 - COSTOS EFECTIVOS SUB ARRIENDO EQUIPOS DETENIDOS','Gl',1.00,17384056.00,NULL,207,787,17384056.00,'2017-01-01'),(307,'06','EXTENSIÓN ADMINISTRATIVA DEL CONTRATO HASTA 31-10-2017','Gl',1.00,0.00,NULL,207,787,0.00,'2017-01-01'),(308,'01','REGULARIZACIÖN DE ARRIENDO DE CAMIONETA Y SUPERVISOR DE APOYO','Gl',1.00,30952000.00,NULL,169,829,30952000.00,'2017-01-01'),(309,'01','CORRECCION EN TARIFAS PROFESIONALES TRANSITORIOS','Gl',1.00,5194066.00,NULL,161,830,5194066.00,'2017-01-01'),(310,'01','AUMENTO POR DIAS ADICIONALES Y GASTOS REEMBOLSABLES HASTA 18/8/2017','Gl',1.00,80000.00,NULL,167,831,80000.00,'2017-01-01'),(311,'01','AUMENTO DE PLAZO HASTA 31 AGOSTO 2017','Gl',1.00,29144000.00,NULL,164,832,29144000.00,'2017-01-01'),(312,'01','EXTENSIÓN DE SERVICIOS HASTA 31 DIC 2017','Mes',6.00,206.00,NULL,193,833,1236.00,'2017-01-01'),(313,'01','AJUSTE FINAL DEL CONTRATO','Gl',1.00,-20.00,NULL,185,834,-20.00,'2017-01-01'),(314,'01','SERVICIO ATENCION SALA PRIMEROS AUXILIOS RELINCHO (REASIGNACIÖN RECURSOS)','Gl',1.00,0.00,NULL,203,835,0.00,'2017-01-01');
/*!40000 ALTER TABLE `personas_itemodc` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `personas_mdte`
--
DROP TABLE IF EXISTS `personas_mdte`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `personas_mdte` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`IdMandante` int(11) DEFAULT NULL,
`NomMandte` varchar(50) NOT NULL,
`DirecMandte` varchar(100) NOT NULL,
`RutMandte` varchar(20) NOT NULL,
`CiudadMandte` varchar(50) DEFAULT NULL,
`ComunaMandte` varchar(50) DEFAULT NULL,
`FechDocpersonMandte` date DEFAULT NULL,
`NotariapersonMandte` varchar(100) DEFAULT NULL,
`NotarioMandte` varchar(100) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `personas_mdte`
--
LOCK TABLES `personas_mdte` WRITE;
/*!40000 ALTER TABLE `personas_mdte` DISABLE KEYS */;
INSERT INTO `personas_mdte` VALUES (16,1,'N.A','N.A','N.A',NULL,NULL,NULL,NULL,NULL),(17,2,'SOCIEDAD CONTRACTUAL MINERA EL MORRO','Brasil N308, Vallenar','78.840.880-3','Vallenar','Vallenar','2015-06-08','Antonieta Mendoza Escalas','Antonieta Mendoza Escalas'),(19,4,'GOLDCORP EXPLORACIONES CHILE SpA','Apoquindo N 4501, oficina 701, Las Condes, Santiago','76.141.878-5',NULL,NULL,NULL,NULL,NULL),(20,5,'GOLDCORP SERVICIOS CHILE Ltda','Apoquindo N 4501, oficina 702, Las Condes, Santiago','76.141.894-7',NULL,NULL,NULL,NULL,NULL),(21,NULL,'NUEVAUNION SPA','Isidora Goyenechea 2800, oficina 802, Las Condes, Santiago','99.509.930-2','Santiago','Las Condes','2016-06-23','Antonieta Mendoza Escalas','Antonieta Mendoza Escalas');
/*!40000 ALTER TABLE `personas_mdte` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `personas_monedas`
--
DROP TABLE IF EXISTS `personas_monedas`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `personas_monedas` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`NomMoneda` varchar(4) NOT NULL,
`ValorMoneda` decimal(10,2) DEFAULT NULL,
`FechMoneda` date DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `personas_monedas`
--
LOCK TABLES `personas_monedas` WRITE;
/*!40000 ALTER TABLE `personas_monedas` DISABLE KEYS */;
INSERT INTO `personas_monedas` VALUES (1,'USD',680.00,'2016-01-01'),(2,'UF',26657.10,'2017-06-21'),(3,'CLP',1.00,NULL),(4,'EUR',738.50,'2017-06-21'),(5,'CAD',500.88,'2017-06-21'),(6,'AUD',503.19,'2017-06-21');
/*!40000 ALTER TABLE `personas_monedas` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `personas_multasperclavectto`
--
DROP TABLE IF EXISTS `personas_multasperclavectto`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `personas_multasperclavectto` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`NumItem` varchar(8) NOT NULL,
`NomPersClave` varchar(50) DEFAULT NULL,
`CargPersClave` varchar(50) DEFAULT NULL,
`Multa` decimal(21,2) DEFAULT NULL,
`Moneda` varchar(5) DEFAULT NULL,
`ObsMulta` varchar(100) DEFAULT NULL,
`IdCtto_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `personas_multasperclavectto_6ef3f09f` (`IdCtto_id`),
CONSTRAINT `personas_multasperclavect_IdCtto_id_57a52a38_fk_personas_ctto_id` FOREIGN KEY (`IdCtto_id`) REFERENCES `personas_ctto` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `personas_multasperclavectto`
--
LOCK TABLES `personas_multasperclavectto` WRITE;
/*!40000 ALTER TABLE `personas_multasperclavectto` DISABLE KEYS */;
/*!40000 ALTER TABLE `personas_multasperclavectto` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `personas_odc`
--
DROP TABLE IF EXISTS `personas_odc`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `personas_odc` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`IdODC` int(11) DEFAULT NULL,
`NumODC` varchar(8) NOT NULL,
`FechT_ODC` date DEFAULT NULL,
`ValorODC` decimal(21,2) DEFAULT NULL,
`DescripODC` varchar(100) DEFAULT NULL,
`IdCecoODC_id` int(11) NOT NULL,
`IdCtto_id` int(11) NOT NULL,
`FechAppOdc` date DEFAULT NULL,
`FechSolOdc` date DEFAULT NULL,
`ObservOdc` varchar(100) DEFAULT NULL,
`FechI_ODC` date DEFAULT NULL,
`Solicitante_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `personas_odc_IdCecoODC_id_7faebe24_fk_personas_ceco_id` (`IdCecoODC_id`),
KEY `personas_odc_IdCtto_id_5e3228b3_fk_personas_ctto_id` (`IdCtto_id`),
KEY `personas_odc_65bbe6be` (`Solicitante_id`),
CONSTRAINT `personas_Solicitante_id_e2edce8e_fk_personas_personalproyecto_id` FOREIGN KEY (`Solicitante_id`) REFERENCES `personas_personalproyecto` (`id`),
CONSTRAINT `personas_odc_IdCecoODC_id_7faebe24_fk_personas_ceco_id` FOREIGN KEY (`IdCecoODC_id`) REFERENCES `personas_ceco` (`id`),
CONSTRAINT `personas_odc_IdCtto_id_5e3228b3_fk_personas_ctto_id` FOREIGN KEY (`IdCtto_id`) REFERENCES `personas_ctto` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=836 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `personas_odc`
--
LOCK TABLES `personas_odc` WRITE;
/*!40000 ALTER TABLE `personas_odc` DISABLE KEYS */;
INSERT INTO `personas_odc` VALUES (568,1,'ODC 01','2014-07-01',0.00,'SERVICIOS 2014',161,449,NULL,NULL,'',NULL,1),(569,2,'ODC 02','2015-11-01',15395946.00,'SERVICIOS 2015',161,449,NULL,NULL,'',NULL,1),(570,3,'ODC 03','2015-11-01',1696036.00,'SERVICIOS 2015',161,449,NULL,NULL,'',NULL,1),(571,4,'ODC 04','2015-11-01',2740947.00,'SERVICIOS 2015',161,449,NULL,NULL,'',NULL,1),(572,5,'ODC 05','2016-03-01',5390564.00,'SERVICIOS 2016',161,449,NULL,NULL,'',NULL,1),(573,6,'ODC 01','2015-11-01',10198000.00,'SERVICIO ASEO OFICINAS 2015',170,450,NULL,NULL,'',NULL,1),(574,7,'ODC 02','2015-11-01',8617600.00,'SERVICIO ASEO OFICINAS 2015',170,450,NULL,NULL,'',NULL,1),(575,8,'ODC 03','2015-11-01',2100000.00,'SERVICIO ASEO OFICINAS 2015',170,450,NULL,NULL,'',NULL,1),(576,9,'ODC 04','2016-11-01',3400000.00,'SERVICIO ASEO OFICINAS 2015',170,450,NULL,NULL,'',NULL,1),(577,10,'ODC 05','2015-12-31',79941603.00,'SERVICIO ASEO OFICINAS 2015',170,450,NULL,NULL,'',NULL,1),(578,11,'ODC 06','2015-11-01',-6341276.00,'SERVICIO ASEO OFICINAS 2015',170,450,NULL,NULL,'',NULL,1),(579,12,'ODC 07','2016-01-31',0.00,'SERVICIO ASEO OFICINAS 2016',170,450,NULL,NULL,'',NULL,1),(580,13,'ODC 08','2016-12-31',52367879.00,'SERVICIO ASEO OFICINAS 2016',170,450,NULL,NULL,'',NULL,1),(581,14,'ODC 01','2016-12-31',3365400.00,'SERVICIOS 2016',184,451,NULL,NULL,'',NULL,1),(582,15,'ODC 01','2016-12-31',384.00,'SERVICIOS 2016',184,452,NULL,NULL,'',NULL,1),(583,16,'ODC 02','2016-06-30',535.00,'SERVICIOS 2016 (JUNIO 2016)',210,453,NULL,NULL,'',NULL,1),(584,17,'ODC 03','2016-12-31',396.20,'SERVICIOS 2016 (DIC2016)',210,453,NULL,NULL,'',NULL,1),(585,18,'ODC 01','2015-12-31',0.00,'SERVICIOS CONSULTORIA 2015',199,454,NULL,NULL,'',NULL,1),(586,19,'ODC 02','2016-01-01',63817201.00,'SERVICIOS CONSULTORIA 2016',199,454,NULL,NULL,'',NULL,1),(587,20,'ODC 01','2016-06-30',-20129275.00,'0',210,455,NULL,NULL,'',NULL,1),(590,23,'ODC 01','2015-12-31',10857390.00,'SERVICIOS 2016',164,457,NULL,NULL,'',NULL,1),(591,24,'ODC 04','2016-11-01',-1029998.00,'Ajuste Final del Contrato',164,457,NULL,NULL,'',NULL,1),(592,25,'ODC 01','2016-12-31',2387.79,'SERVICIOS 2016',185,459,NULL,NULL,'',NULL,1),(593,26,'ODC 02','2016-11-01',456.84,'SERVICIO 2016',185,459,NULL,NULL,'',NULL,1),(594,27,'ODC 01','2016-07-31',21982335.00,'SERVICIOS 2016',210,461,NULL,NULL,'',NULL,1),(595,28,'ODC 02','2016-12-31',8792934.00,'SERVICIOS 2016',210,461,NULL,NULL,'',NULL,1),(596,29,'ODC 01','2016-11-01',848.00,'SERVICIO 2016',164,462,NULL,NULL,'',NULL,1),(597,30,'ODC 01','2016-11-01',-2264034.30,'AJUSTE POR TÉRMINO DE CONTRATO',198,464,NULL,NULL,'',NULL,1),(598,31,'ODC 01','2016-11-01',561.00,'AUMENTO DE ALCANCE',203,465,NULL,NULL,'',NULL,1),(601,34,'ODC 01','2016-11-01',694445.00,'AUMENTO PLAZO Y MONTO',161,478,NULL,NULL,'',NULL,1),(602,35,'ODC 01','2016-11-01',366.00,'AUMENTO DE PARTIDAS',208,479,'2016-10-05','2016-10-01','',NULL,1),(603,36,'ODC 01','2015-12-31',4260.00,'0',169,495,NULL,NULL,'',NULL,1),(604,37,'ODC 02','2015-12-31',3828.00,'0',169,495,NULL,NULL,'',NULL,1),(605,38,'ODC 03','2015-12-31',748.00,'0',169,495,NULL,NULL,'',NULL,1),(606,39,'ODC 04','2015-12-31',990.00,'0',169,495,NULL,NULL,'',NULL,1),(607,40,'ODC 05','2015-12-31',64.08,'0',169,495,NULL,NULL,'',NULL,1),(608,41,'ODC 06','2015-12-31',990.00,'0',169,495,NULL,NULL,'',NULL,1),(609,42,'ODC 01','2016-11-01',20140.00,'0',169,496,NULL,NULL,'',NULL,1),(610,43,'ODC 02','2016-11-01',45600.00,'0',169,496,NULL,NULL,'',NULL,1),(611,44,'ODC 03','2016-11-01',45600.00,'0',169,496,NULL,NULL,'',NULL,1),(612,45,'ODC 04','2016-11-01',7600.00,'SERVICIO 2016',169,496,NULL,NULL,'',NULL,1),(613,46,'ODC 05','2016-12-31',38000.00,'SERVICIO 2016',169,496,NULL,NULL,'',NULL,1),(614,47,'ODC 01','2016-11-01',17154865.00,'0',170,497,NULL,NULL,'',NULL,1),(615,48,'ODC 02','2016-11-01',3995000.00,'0',170,497,NULL,NULL,'',NULL,1),(616,49,'ODC 03','2016-11-01',20164200.00,'0',170,497,NULL,NULL,'',NULL,1),(617,50,'ODC 04','2016-11-01',84134166.00,'0',170,497,NULL,NULL,'',NULL,1),(618,51,'ODC 05','2016-11-01',-15744479.00,'0',170,497,NULL,NULL,'',NULL,1),(619,52,'ODC 06','2016-11-01',41071303.00,'0',170,497,NULL,NULL,'',NULL,1),(620,53,'ODC 07','2016-11-01',41571302.00,'0',170,497,NULL,NULL,'',NULL,1),(621,54,'ODC 08','2016-11-01',7281884.00,'0',170,497,NULL,NULL,'',NULL,1),(622,55,'ODC 09','2016-11-01',-2520012.00,'0',170,497,NULL,NULL,'',NULL,1),(623,56,'ODC 01','2016-11-01',-620.58,'0',203,498,NULL,NULL,'',NULL,1),(624,57,'ODC 02','2016-11-01',818.32,'0',203,498,NULL,NULL,'',NULL,1),(625,58,'ODC 03','2016-11-01',72.70,'0',203,498,NULL,NULL,'',NULL,1),(626,59,'ODC 05','2016-11-01',529.38,'0',203,498,NULL,NULL,'',NULL,1),(627,60,'ODC 01','2015-11-01',10804604.00,'0',170,500,NULL,NULL,'',NULL,1),(628,61,'ODC 02','2015-11-01',14304398.00,'0',170,500,NULL,NULL,'',NULL,1),(629,62,'ODC 03','2015-11-01',1166598.00,'0',170,500,NULL,NULL,'',NULL,1),(630,63,'ODC 04','2016-01-31',64534.00,'0',170,500,NULL,NULL,'',NULL,1),(631,64,'ODC 03','2016-11-01',50000000.00,'0',198,501,NULL,NULL,'',NULL,1),(632,65,'ODC 05','2016-11-01',50000000.00,'0',198,501,NULL,NULL,'',NULL,1),(633,66,'ODC 01','2016-11-01',393.00,'0',169,508,NULL,NULL,'',NULL,1),(634,67,'ODC 02','2016-11-01',103.60,'0',169,508,NULL,NULL,'',NULL,1),(635,68,'ODC 03','2016-11-01',621.60,'0',169,508,NULL,NULL,'',NULL,1),(636,69,'ODC 04','2016-11-01',520.50,'0',169,508,NULL,NULL,'',NULL,1),(637,70,'ODC 05','2016-11-01',514.80,'0',169,508,NULL,NULL,'',NULL,1),(638,71,'ODC 06','2016-11-01',128.70,'0',169,508,NULL,NULL,'',NULL,1),(639,72,'ODC 07','2016-11-01',328.50,'0',169,508,NULL,NULL,'',NULL,1),(642,75,'ODC 01','2016-11-01',3745000.00,'0',169,519,NULL,NULL,'',NULL,1),(643,76,'ODC 02','2016-11-01',2640000.00,'0',207,519,NULL,NULL,'',NULL,1),(644,77,'ODC 03','2016-11-01',13900000.00,'0',169,519,NULL,NULL,'',NULL,1),(645,78,'ODC 04','2016-11-01',8090000.00,'0',169,519,NULL,NULL,'',NULL,1),(646,79,'ODC 05','2016-11-01',4200000.00,'0',169,519,NULL,NULL,'',NULL,1),(647,80,'ODC 01',NULL,0.00,'0',207,520,NULL,NULL,'existia valor indicado de 93.93 (Borrado 12-10-2016)',NULL,1),(650,83,'ODC 01','2016-11-01',5022000.00,'0',157,535,NULL,NULL,'',NULL,1),(651,84,'ODC 01','2016-11-01',76200.00,'0',157,582,NULL,NULL,'',NULL,1),(652,NULL,'ODC 01',NULL,2441794.00,'Serv Cami SERA',169,574,'2016-09-20','2016-09-10','',NULL,1),(653,NULL,'ODC 01','2016-12-31',4260805.00,'LAVADO INTERIOR ESTANQUE 20M3 CAMPAMENTO EL PINGO',169,562,'2016-09-12','2016-09-07','',NULL,1),(654,NULL,'ODC 02',NULL,7273920.00,'TRABAJO DE DESPEJE CAMINO SECTOR LA TOTORA',169,562,'2016-09-20','2016-09-10','',NULL,1),(655,NULL,'ODC 01',NULL,917450.00,'SERVICIOS COMPLEMENTARIOS PROGRAMACION RADIOS',164,563,'2016-09-20','2016-09-08','',NULL,1),(656,NULL,'ODC 01','2016-12-31',1770000.00,'SUMINISTRO Y TRANSPORTE AGUA POTABLE C. EL PINGO',169,538,'2016-09-20','2016-09-10','',NULL,1),(657,NULL,'ODC 02','2016-12-31',379.60,'',207,520,NULL,NULL,'',NULL,1),(658,NULL,'ODC 01','2016-09-15',9960000.00,'Servicio Arriendo de Generador 150 Kva y Topografí',207,561,'2016-09-29','2016-08-23','',NULL,1),(659,NULL,'ODC 01','2016-08-16',210.26,'APOYO TALLER DE FLOTACIÓN',188,589,'2016-08-16','2016-08-15','',NULL,1),(660,NULL,'ODC 01','2016-12-31',2850000.00,'SERVICIO CONTROL LABORAL(3 Meses)',203,540,'2016-10-20','2016-09-25','',NULL,1),(661,NULL,'ODC 01','2017-04-30',39233836.00,'SUMINISTRO DOS PREVISIONISTAS',203,577,'2016-10-20','2016-09-25','',NULL,1),(663,NULL,'ODC 01','2018-12-30',89844.73,'ACTUALIZACIÓN FASE II',203,460,'2016-11-15','2016-09-01','Falta Formalización ODC 01',NULL,1),(664,NULL,'ODC 01',NULL,50.00,'Aumenta Matención Preventiva',165,463,NULL,NULL,'Es por aire acondicionado?',NULL,1),(665,NULL,'ODC 01',NULL,284.40,'Arriendo Camioneta Linea Base (8 meses)',203,594,NULL,NULL,'una o dos camionetas?',NULL,1),(667,NULL,'ODC 01','2017-02-08',540.00,'Apoyo Gestión de Contratos y Ordenes de Compra',189,602,'2016-11-15','2016-10-25','',NULL,1),(668,NULL,'ODC 08',NULL,59.20,'Servicio Control de Plaga El Pingo',169,508,'2016-11-18','2016-11-11','',NULL,1),(669,NULL,'ODC 01',NULL,650000.00,'Reparación Techumbre de Galpón Aconcagua Nª970',170,613,'2016-11-25','2016-11-20','',NULL,1),(670,NULL,'ODC 06','2016-12-31',4400000.00,'Servicios Adicionales(Arriend Camión Pluma, otros)',169,519,NULL,NULL,'',NULL,1),(673,NULL,'ODC 01','2016-10-12',0.00,'ORDEN DE CAMBIO DE AJUSTE HH (NO AUMNTA VALOR)',189,555,'2016-11-17','2016-11-17','ODC PDF NO INDICA AUMENTO DE PLAZO',NULL,1),(674,NULL,'ODC 01','2017-03-31',979.45,'SERVICIO ATENCIÓN SALA PROCED PRIM AUX LINEA BASE',203,557,'2016-11-10','2016-11-03','',NULL,1),(675,NULL,'ODC 02','2017-02-28',556.03,'SERV PARAMEDICO Y AMBULANCIA 4x4 LB LA FORTUNA',203,557,'2016-12-07','2016-12-07','',NULL,1),(677,NULL,'ODC 02','2017-04-30',18544073.00,'SUMINISTRO DOS PREVISIONISTAS CAMPAÑA LB PRIMAV',203,577,'2016-12-13','2016-12-07','',NULL,1),(678,NULL,'ODC 01',NULL,1117000.00,'VISITA AVALLENAR MIGRACION TELEFONICA',164,471,'2016-11-01','2016-10-25','',NULL,1),(679,NULL,'ODC 02',NULL,924236.00,'SERVICIO ALIMENTACION 06-10-2016',169,574,'2016-10-16','2016-10-03','',NULL,1),(680,NULL,'ODC 03','2016-12-20',28406412.00,'SERVICIO ALIMENTACION CAMP RELINCHO Y PINGO LB',169,574,'2016-12-12','2016-12-05','',NULL,1),(681,NULL,'ODC 02',NULL,0.00,'ORDEN DE CAMBIO DE AJUSTE DE PARTIDAS',208,479,'2016-09-05','2016-09-05','ODC valor cero',NULL,1),(682,NULL,'ODC 03',NULL,-1178.80,'AJUSTE POR TÉRMINO DE CONTRATO',208,479,'2016-12-14','2016-12-14','',NULL,1),(683,NULL,'ODC 02','2017-01-31',39500.00,'FASE 2 DEL SERVICIO, AUMENTO DE HORAS Y PLAZO',189,555,'2016-12-19','2016-12-14','',NULL,1),(684,NULL,'ODC 01','2016-12-31',8773.60,'AUMENTO DE GASTOS REEMBOLSABLES FASE2',211,475,'2016-12-23','2016-12-16','',NULL,1),(685,NULL,'ODC 01',NULL,-27883932.00,'AJUSTE POR CIERRE DE CTTO',208,472,'2016-12-23','2016-11-30','',NULL,1),(686,NULL,'ODC 02','2017-01-03',660000.00,'REACONDICIONAMIENTO OFICINA MEDIO AMBIENTE VALLENA',203,613,'2016-12-23','2016-12-23','',NULL,1),(687,NULL,'ODC 01','2016-12-31',30300.00,'AUMENTO DE HORAS SERVICIO 2016',198,468,'2016-10-27','2016-10-01','',NULL,1),(688,NULL,'ODC 03','2017-02-28',112.94,'SERV ADIC PARAMEDICO AMBULANCIA 4x4 CONDUCT LB',207,557,'2017-01-11','2017-01-10','',NULL,1),(689,NULL,'ODC 01','2017-12-31',28216610.00,'Servicios 2017',165,477,'2017-01-03','2016-12-31','',NULL,1),(690,NULL,'ODC 02','2017-12-31',825.00,'SERVICIO 2017',183,452,'2017-01-17','2017-01-01','',NULL,1),(691,NULL,'ODC 03','2016-11-12',10874216.00,'DESPEJE CAMINO SECTOR LA TOTORA',169,562,'2017-10-17','2016-10-15','',NULL,1),(692,NULL,'ODC 04','2017-02-10',10110672.00,'SERVICIO DESPEJE CAMINO LA FORTUNA ENE2017',169,562,'2017-01-27','2017-01-25','',NULL,1),(693,NULL,'ODC 03','2017-12-31',4000.00,'SERVICIOS 2017',185,459,'2017-01-27','2017-01-01','',NULL,1),(694,NULL,'ODC 03','2017-04-12',284.40,'<NAME> 3 PARA EIA',203,520,'2017-01-27','2017-01-20','REGULARIZACION',NULL,1),(695,NULL,'ODC 01','2017-05-21',20070000.00,'AUMENTO SERVICIO 3 MESES (HASTA MAYO 2017)',167,623,'2017-01-20','2017-01-15','',NULL,1),(697,NULL,'ODC 01','2017-03-02',3300000.00,'Recambio de Contenedor 10 m3 hasta 31-03-2017',169,550,'2017-02-03','2017-02-02','',NULL,1),(698,NULL,'ODC 03','2017-02-10',2107000.00,'Acondicionamiento cafeteria y muebles MA Vallenar',170,613,'2017-02-01','2017-02-01','',NULL,1),(701,NULL,'ODC 01','2017-02-15',474433.00,'COMPRA DE BOMBA HYDROPACK SONDAJE LA FORTUNA 2017',207,654,'2017-02-20','2017-02-15','',NULL,1),(702,NULL,'ODC 02','2017-01-31',0.00,'SOLO EXTENSION DE PLAZO',161,535,'2017-02-21','2017-02-10','',NULL,1),(705,NULL,'ODC 07','2017-03-31',24340000.00,'Servicio Mantenimiento Camp Relincho 1 Sem 2017',207,519,NULL,NULL,'',NULL,1),(706,NULL,'ODC 02','2017-04-30',29144000.00,'SERVICIO MONITOREO HASTA 30-04-2017',164,471,'2017-03-06','2017-01-03','',NULL,1),(707,NULL,'ODC 01','2017-03-10',1480000.00,'INSTALACIÓN DE RED GAS CAMPAMENTO EL PINGO',169,667,'2017-03-06','2017-03-06','',NULL,1),(708,NULL,'ODC 02','2017-12-31',550.00,'SERVICIO MANTENCIÓN OFICINA HASTA 31-12-2017',165,463,'2017-03-10','2017-03-01','',NULL,1),(709,NULL,'ODC 02','2017-10-31',259869600.00,'SERVICIO COORDINACIÓN EIA y PLANNER HASTA OCT-17',192,473,'2017-03-17',NULL,'',NULL,1),(710,NULL,'ODC 04','2017-04-30',121.00,'SERV PARAMEDiC TURNO NOCHE LA FORTUNA (PROVISORIO)',203,557,'2017-03-17',NULL,'',NULL,1),(711,NULL,'ODC 02','2017-03-15',846000.00,'SERVICIOCONTROL LABORAL 2017 HASTA MAR-2017',203,540,'2017-03-17',NULL,'',NULL,1),(712,NULL,'ODC 01','2017-06-30',666667.00,'ENTRENAMIENTO FUNCIONAL 1 SEM 2017',170,566,'2017-03-21','2017-03-21','',NULL,1),(713,NULL,'ODC 01','2017-12-31',3888889.00,'PAUSA ACTIVA SERV 2017',170,564,'2017-12-31','2017-03-08','',NULL,1),(714,NULL,'ODC 09','2017-04-30',12810264.00,'SERVICIO ASEO OFICINAS NU HASTA 30-04-2017',170,450,'2017-03-06',NULL,'',NULL,1),(715,NULL,'ODC 01','2017-02-24',1666680.00,'APOYO REVISIÓN BD de RHH y PROP MINERA',161,659,'2017-03-24','2017-03-24','',NULL,1),(716,NULL,'ODC 01','2017-04-04',7800000.00,'NOTIFICACION Y GEOREFRENCIACIÓN AUMENTO PREDIOS',203,657,'2017-03-24','2017-04-08','',NULL,1),(717,NULL,'ODC 01','2017-07-21',251816542.00,'Ruta Adicional',201,631,'2017-02-23',NULL,'',NULL,1),(718,NULL,'ODC 01','2017-04-30',6963008.00,'Aumento de días en el Servicio (11 dias)',209,650,'2017-03-16',NULL,'',NULL,1),(719,NULL,'ODC 01','2017-12-31',27120000.00,'SERVICIO MANT IMPRESORAS 2017, AUMENTO CANT IMP',164,470,'2017-03-14',NULL,'',NULL,1),(720,NULL,'ODC 01','2017-04-30',2720000.00,'SERVICIO HASTA ABRIL 2017',161,492,'2017-01-30',NULL,'',NULL,1),(749,NULL,'ODC 01','2017-02-24',2360.00,'Extensión Servicio Horas e Imágenes Satelitales',189,648,'2017-03-31','2017-03-20','',NULL,1),(750,NULL,'ODC 01','2017-07-31',68530000.00,'Extensión Servicio 2017 al 31/7/2017',169,598,'2017-04-10','2017-04-10','',NULL,1),(751,NULL,'ODC 01','2017-05-31',0.00,'Ext. plazo en ejecución Calicatas hasta 31/05/2017',189,665,'2017-04-11','2017-04-10','',NULL,1),(752,NULL,'ODC 08','2017-07-31',0.00,'Extensión de Servicios hasta 31 julio 2017',169,519,'2017-04-12','2017-04-11','',NULL,1),(753,NULL,'ODC 02','2017-05-15',0.00,'Extensión de Servicios hasta 15 mayo 2017',207,667,'2017-04-12','2017-04-11','',NULL,1),(754,NULL,'ODC 10','2017-07-31',0.00,'Extensión de Servicios hasta 31 julio 2017',170,450,'2017-04-12','2017-04-11','',NULL,1),(755,NULL,'ODC 02','2017-05-31',0.00,'Extensión de Servicios hasta 31 mayo 2017',189,648,'2017-04-12','2017-04-11','',NULL,1),(756,NULL,'ODC 04','2017-12-31',0.00,'EXTENSIÓN DE SERVICIOS HASTA 31 DIC 2017',207,577,'2017-04-12','2017-04-11','',NULL,1),(757,NULL,'ODC 03','2017-12-31',0.00,'Extensión de Servicios hasta 31 dic 2017',161,535,'2017-04-13','2017-04-12','',NULL,1),(758,NULL,'ODC 01',NULL,56449.00,'GASTOS COLEGIATURA Y BONOS STI',167,660,'2017-03-20','2017-03-17','',NULL,1),(759,NULL,'ODC 03','2017-12-31',27000000.00,'CONSULTORÍA RELA. Y DES. COMUNITARIOS 2017',199,454,NULL,'2017-04-01','',NULL,1),(760,NULL,'ODC 01','2017-07-25',149762811.00,'ADDENDUM 01 ALCANCE GEOTÉCNICO',201,629,'2017-03-17',NULL,'',NULL,1),(761,NULL,'ODC 01',NULL,143836820.00,'<NAME>',210,604,'2017-04-04',NULL,'',NULL,1),(762,NULL,'ODC 01','2017-12-31',40000000.00,'PROYECTO BIODIVERSIDAD Y MANUTENCIÓN DE PARCELAS',198,474,'2017-04-17','2017-04-01','',NULL,1),(763,NULL,'ODC 02','2018-03-31',240685.00,'ASESORÍA PROGRAMA DE REASENTAMIENTO',211,475,'2017-03-24',NULL,'',NULL,1),(764,NULL,'ODC 01','2017-12-31',336.00,'MONITOREOS REDES SOCIALES 2017',197,551,'2017-04-20',NULL,'',NULL,1),(765,NULL,'ODC 01','2015-12-31',-6300000.00,'DISMINUCIÓN SERVICIOS 2015',197,456,'2015-08-11',NULL,'',NULL,1),(766,NULL,'ODC 02','2016-12-31',13050000.00,'SERVICIO CLIPPING Y BOLETIN HASTA 31-12-2016',197,456,'2015-08-11',NULL,'',NULL,1),(767,NULL,'ODC 03','2017-12-31',10800000.00,'SERVICIO CLIPPING HASTA 31-12-2017',197,456,'2017-01-03','2017-01-03','',NULL,1),(768,NULL,'ODC 01','2017-07-31',0.00,'EXTENSION DE PLAZO',161,622,'2017-02-28','2017-02-28','',NULL,1),(769,NULL,'ODC 01','2017-12-31',200.00,'AUMENTO DE PLAZO Y MONTO',197,553,'2016-11-29',NULL,'',NULL,1),(771,NULL,'ODC 02','2017-12-31',200.00,'SERVICIO DISEÑO MATERIALES HASTA 31-12-2017',197,553,'2016-11-29','2016-11-20','',NULL,1),(772,NULL,'ODC 01','2016-08-12',15000.00,'ADICIONAL SCOPE 100 HOURS OF WORK FOR TRADE STUDY',201,525,'2016-08-19',NULL,'',NULL,1),(773,NULL,'ODC 01','2016-12-22',1888889.00,'ARCHIVO FOTOGRAFICO NU',197,560,'2016-11-24',NULL,'',NULL,1),(774,NULL,'ODC 02','2017-12-31',5666670.00,'SERVICIOS FOTOGRAFICOS 2017',197,560,'2017-02-09',NULL,'',NULL,1),(775,NULL,'ODC 01','2016-12-05',1435.00,'ACTUALIZACIÓN DE CAPEX Y OPEX EL MORRO',202,591,'2016-11-30',NULL,'',NULL,1),(776,NULL,'ODC 01','2016-05-31',2125.69,'ESTUDIO DE ALTERNATIVA Nª5',201,467,'2016-04-08',NULL,'',NULL,1),(777,NULL,'ODC 02','2016-07-15',0.00,'EXTENSION DE PLAZO',201,467,NULL,'2016-03-21','',NULL,1),(778,NULL,'ODC 03',NULL,-354.10,'AJUSTE POR TÉRMINO DE CONTRATO',201,467,'2016-03-21',NULL,'',NULL,1),(779,NULL,'ODC 03','2017-03-31',58252571.00,'SERVICIOS PUESTA A DISPOSICIÓN HASTA 31/03/2017',208,577,'2017-03-15',NULL,'',NULL,1),(780,NULL,'ODC 01','2016-04-19',11616.00,'INCORPORA AREA ADICIONAL',201,517,'2016-03-29',NULL,'',NULL,1),(781,NULL,'ODC 01','2016-03-25',7500.00,'AUMENTO DE PLAZO Y MONTO POR TECHNICAL SUPPORT',201,528,NULL,'2016-05-19','',NULL,1),(782,NULL,'ODC 01','2017-04-21',48000.00,'DELIBERABLES:A9PC NU PFS COMMINUTION TOS SCOPE',189,624,'2017-05-11','2017-04-03','',NULL,1),(785,NULL,'ODC 01','2017-05-31',-295189.00,'REASIGNACIÓN PARA INCLUIR GASTOS REEMBOLSABLES',207,597,'2017-05-18','2017-05-16','',NULL,1),(786,NULL,'ODC 02','2017-05-31',6410210.00,'Servicios Adicionales por aumento plazo',189,665,'2017-05-17','2017-05-08','',NULL,1),(787,NULL,'ODC 02','2017-10-31',201015684.00,'INSTRUMENTACIÓN CUERDA VIBRANTE',207,604,'2017-05-17','2017-05-10','',NULL,1),(789,NULL,'ODC 01',NULL,59900.00,'',207,605,NULL,NULL,'En Desarrollo (Carlos)',NULL,1),(791,NULL,'ODC 03','2017-06-30',3328.00,'Adicionales segun propuesta 15may17',189,648,NULL,NULL,'',NULL,1),(793,NULL,'ODC 03',NULL,-10259314.00,'Ajuste Final del Contrato',210,461,NULL,NULL,'',NULL,1),(795,NULL,'ODC 11','2017-12-31',3314791.00,'Servicio Aseo Oficinas Abril 2017 a Mayo 2017',170,450,NULL,NULL,'',NULL,1),(796,NULL,'ODC 01',NULL,508100463.00,'PDN Aprobadas a Mayo 2017',192,626,'2017-06-02','2017-05-25','',NULL,1),(797,NULL,'ODC 01',NULL,2282923.00,'PDN Aprobadas a Mayo 2017',192,634,'2017-06-02','2017-05-25','',NULL,1),(798,NULL,'ODC 02','2017-06-30',15000.00,'GASTOS REEMBOLSABLES COLEGIATURA',167,660,'2017-06-02','2017-06-01','',NULL,1),(799,NULL,'ODC 01','2016-08-01',1440000.00,'Curso ingles oficina Stgo(A.Soto)',161,579,'2016-10-26',NULL,'',NULL,1),(800,NULL,'ODC 02','2017-12-31',8640000.00,'Curso ingles oficina Stgo(Jun-Dic 2017)',161,579,'2017-06-06','2017-06-05','',NULL,1),(801,NULL,'ODC 03','2017-12-31',450.00,'SERVICIO AUMENTO MONTO SERVICIO 2017',197,553,'2017-06-08','2017-06-06','',NULL,1),(802,NULL,'ODC 02','2017-12-31',82245.00,'SERVICIO INTEGRACION DDHH NUEVAUNION 2017',198,468,'2017-07-07',NULL,'',NULL,1),(803,NULL,'ODC 01','2017-06-30',124600.00,'G.R POR VIAJES Y EXTENSIÓN SERVICIO MAIL 14/4/17',201,684,'2017-06-08','2017-05-19','',NULL,1),(804,NULL,'ODC 01','2017-06-30',35000.00,'G.Reembolsables por Viajes KOM y V. Site',201,696,'2017-06-08',NULL,'',NULL,1),(805,NULL,'ODC 03','2017-12-31',105200.00,'SOPORTE EJECUCIÖN PROGRAMA. METALURG (TEST)',189,555,'2017-06-08',NULL,'',NULL,1),(806,NULL,'ODC 05','2017-05-30',8408592.00,'TRABAJOS MOTONIVELADORA LA FORTUNA (ADICIONAL)',207,562,'2017-06-09','2017-06-08','',NULL,1),(807,NULL,'ODC 01',NULL,0.00,'AJUSTE SERVICIO AÑO 2015',210,453,NULL,NULL,'',NULL,1),(808,NULL,'ODC 02','2015-12-31',0.00,'AJUSTE DE PARTIDAS',164,457,NULL,NULL,'',NULL,1),(809,NULL,'ODC 03','2015-12-31',0.00,'AJUSTE SERVICIO AÑO 2015',164,457,NULL,NULL,'',NULL,1),(810,NULL,'ODC 04',NULL,0.00,'AJUSTE SERVICIO AÑO 2015',203,498,NULL,NULL,'',NULL,1),(811,NULL,'ODC 01','2017-06-01',300.00,'AUMENTO DE HORAS JUNIO 2017',203,490,'2017-06-01','2017-05-15','',NULL,1),(812,NULL,'ODC 01','2017-12-31',3493.60,'SEG. ETAPA ESTUDIO- DESARR. CULTURA ORGANIZACIONAL',161,493,'2017-06-12','2017-05-29','',NULL,1),(813,NULL,'ODC 09','2017-07-12',40515492.00,'MEJORAMIENTO CAMINO VALLENAR-RELINCHO',208,519,'2017-06-20','2017-06-13','',NULL,1),(814,NULL,'ODC 01','2017-03-12',47859914.00,'TRABAJOS Y MATERRIALES HABILITACIÓN CAMPAMENTO',207,612,'2017-06-15','2017-05-14','',NULL,1),(815,NULL,'ODC 03','2017-04-03',49798582.00,'AUMENTO DE HORAS MAQUINA SERV PREPARACION PLATAFORMA LA FORTUNA',207,667,'2017-06-16','2017-06-10','',NULL,1),(816,NULL,'ODC 01','2017-08-30',7481.60,'GENERACIÓN DE UN SPLIT ADICIONAL PULPA PARA ALMACENAR EN CAJAS CUTTING',207,685,'2017-06-19','2017-06-12','',NULL,1),(817,NULL,'ODC 02',NULL,164409.00,'SERVICIOS ADICIONALES SEGUN DETALLE',207,605,'2017-06-19','2017-06-01','',NULL,1),(818,NULL,'ODC 02','2017-07-31',1750000.00,'INSTALACIÓN CABLEADO ESTRUCTURADO OFICINA ALTO DEL CARMEN',164,470,'2017-06-20','2017-06-16','',NULL,1),(819,NULL,'ODC 01','2017-07-31',24543038.00,'INCORPORACIÓN DE BULLDOZER ADICIONAL',207,703,'2017-06-19','2017-06-15','',NULL,1),(820,NULL,'ODC 02','2017-12-31',900000.00,'AUMENTO POR AJUSTE REMUNERACIONES',165,477,'2017-06-20',NULL,'Regularización',NULL,1),(821,NULL,'ODC 02',NULL,387.85,'AUMENTO SERV, (TOMA MUESTRA Y ANALISIS LABORATORIO AGUAS SUP) PDN7',203,460,'2017-06-20','2017-04-10','',NULL,1),(822,NULL,'ODC 01','2017-12-31',11128998.00,'Ingreso <NAME>',198,699,'2017-06-23','2017-06-02','',NULL,1),(823,NULL,'ODC 03',NULL,54910544.00,'WATER FOR CONSTRUCTION STUDY',189,473,'2017-06-05','2017-05-01','',NULL,1),(824,NULL,'ODC 01','2016-12-31',2817264.00,'PARTICIPACIÓN WORKSHOP PERMITING STRATEGY y GASTOS POR VIAJES',189,473,'2016-11-30','2016-10-30','',NULL,1),(828,NULL,'ODC 01','2016-12-31',1193445.00,'MANTENCIÓN GENERADOR OLYMPIAN GEP65-11',169,595,'2016-11-14','2016-10-30','',NULL,1),(829,NULL,'ODC 10','2017-12-31',30952000.00,'REGULARIZACIÖN DE ARRIENDO DE CAMIONETA Y SUPERVISOR DE APOYO',169,519,'2017-07-07','2017-04-01','',NULL,1),(830,NULL,'ODC 05','2017-03-31',5194066.00,'CORRECCION EN TARIFAS PROFESIONALES TRANSITORIOS',161,577,'2017-06-23','2017-06-10','Regularización',NULL,1),(831,NULL,'ODC 03','2017-08-18',80000.00,'AUMENTO POR DIAS ADICIONALES Y GASTOS REEMBOLSABLES HASTA 18/8/2017',167,660,'2017-07-07','2017-07-06','',NULL,1),(832,NULL,'ODC 03','2017-08-31',29144000.00,'AUMENTO DE PLAZO HASTA 31 AGOSTO 2017',164,471,'2017-06-28','2017-06-20','',NULL,1),(833,NULL,'ODC 01','2017-12-31',1236.00,'EXTENSIÓN DE SERVICIOS HASTA 31 DIC 2017',193,680,'2017-07-07','2017-07-06','',NULL,1),(834,NULL,'ODC 01',NULL,-20.00,'AJUSTE FINAL DEL CONTRATO',185,706,'2017-07-10','2017-07-10','',NULL,1),(835,NULL,'ODC 01','2017-07-17',0.00,'SERVICIO ATENCION SALA PRIMEROS AUXILIOS RELINCHO (REASIGNACIÖN RECURSOS)',203,675,'2017-07-10',NULL,'',NULL,1);
/*!40000 ALTER TABLE `personas_odc` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `personas_persona`
--
DROP TABLE IF EXISTS `personas_persona`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `personas_persona` (
`dni` varchar(8) NOT NULL,
`nombre` varchar(100) NOT NULL,
`apellido_paterno` varchar(100) NOT NULL,
`apellido_materno` varchar(100) NOT NULL,
PRIMARY KEY (`dni`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `personas_persona`
--
LOCK TABLES `personas_persona` WRITE;
/*!40000 ALTER TABLE `personas_persona` DISABLE KEYS */;
/*!40000 ALTER TABLE `personas_persona` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `personas_personaladminproyecto`
--
DROP TABLE IF EXISTS `personas_personaladminproyecto`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `personas_personaladminproyecto` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`Nombre` varchar(100) DEFAULT NULL,
`Cargo` varchar(50) DEFAULT NULL,
`Correo` varchar(50) DEFAULT NULL,
`Cel` varchar(20) DEFAULT NULL,
`CI` varchar(20) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `personas_personaladminproyecto`
--
LOCK TABLES `personas_personaladminproyecto` WRITE;
/*!40000 ALTER TABLE `personas_personaladminproyecto` DISABLE KEYS */;
INSERT INTO `personas_personaladminproyecto` VALUES (1,'No Asignado',NULL,NULL,NULL,NULL),(2,'<NAME>','Administrador','','',''),(3,'<NAME>','Administrador','','',''),(4,'<NAME>','Administrador','','',''),(5,'<NAME>','','','','');
/*!40000 ALTER TABLE `personas_personaladminproyecto` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `personas_personalctta`
--
DROP TABLE IF EXISTS `personas_personalctta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `personas_personalctta` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`Nombre` varchar(100) DEFAULT NULL,
`Cargo` varchar(50) DEFAULT NULL,
`Correo` varchar(50) DEFAULT NULL,
`Cel` varchar(20) DEFAULT NULL,
`CI` varchar(20) DEFAULT NULL,
`IdCtta_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `personas_personalctta_228b4dc6` (`IdCtta_id`),
CONSTRAINT `personas_personalctta_IdCtta_id_d2decc71_fk_personas_ctta_id` FOREIGN KEY (`IdCtta_id`) REFERENCES `personas_ctta` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=88 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `personas_personalctta`
--
LOCK TABLES `personas_personalctta` WRITE;
/*!40000 ALTER TABLE `personas_personalctta` DISABLE KEYS */;
INSERT INTO `personas_personalctta` VALUES (1,'No Asignado',NULL,NULL,NULL,NULL,451),(2,'<NAME>','Consultor','<EMAIL>','+56 966876371','',660),(3,'<NAME>','Consultor','<EMAIL>','56977648218','15.339.819-4',620),(4,'<NAME>','Dueño','','','8.644.028-8',661),(5,'<NAME>','Administrador','<EMAIL>','','',556),(6,'<NAME>','Gerente Proyecto','<EMAIL>','+56 2 2594 6400','',476),(7,'<NAME>','Comercial','<EMAIL>','','',476),(8,'<NAME>','Gerente de Proyecto','<EMAIL>','+56 9 7765 8651','',658),(9,'<NAME>','Consultor','<EMAIL>','+56 2 3223 9752','',474),(10,'<NAME>','Administrador de Contratos','<EMAIL>','569 964686515','',544),(11,'<NAME>','Dueño','<EMAIL>','','13.303.712-8',663),(12,'<NAME>','Consultor','<EMAIL>','+56998740718','',458),(13,'<NAME>','Gerente','<EMAIL>','+56 9 4216 9224','',585),(14,'<NAME>','Gerente','<EMAIL>','56 9 5001 4766','',480),(15,'<NAME>','Gerente','<EMAIL>','+56 9 91395058','',523),(16,'<NAME>','Gerente','<EMAIL>','+56 51 267 2200','',475),(17,'<NAME>','Gerente Proyecto','<EMAIL>','','',547),(18,'<NAME>','Comercial','<EMAIL>','+56.2.2340 8671','',547),(20,'<NAME>','Consultor','<EMAIL>','','',664),(21,'<NAME>','Coordinadora Tecnica','<EMAIL>','+56 99 5192478','',596),(22,'<NAME>','Asistente Comerciañ','<EMAIL>','+56 9 89859197','',492),(23,'<NAME>','Gerente Comercial','<EMAIL>','+56 9 7749 3944','',492),(24,'<NAME>','Gerente','<EMAIL>','','',638),(25,'<NAME>','Asistente Comercial','<EMAIL>','','',638),(26,'<NAME>','Gerente','<EMAIL>','','',499),(27,'<NAME>','Consultor','<EMAIL>','','',538),(28,'<NAME>','Gerente','<EMAIL>','+56 85550469','',466),(29,'<NAME>','Gerente de Proyecto','','','',665),(30,'<NAME>','Consultor','<EMAIL>','','',573),(31,'<NAME>','Gerente Proyecto','<EMAIL>','','',547),(32,'<NAME>','<NAME>','<EMAIL>','+56 2 2840 5350','',611),(33,'<NAME>','Administrador','<EMAIL>','51 2 618386','',568),(34,'<NAME>','Project Manager, Fluor Canada Ltd.','<EMAIL>','+1 604-488-2148','',576),(35,'<NAME>','Consultor','<EMAIL>','','',633),(36,'<NAME>','Geólogo Senior, Gerente Comercial','<EMAIL>','+56 2 2331 0280','',598),(37,'<NAME>','Director, Heredia-santana','<EMAIL>','(56 2) 22691720','',606),(38,'<NAME>','Comercial','<EMAIL>','','',544),(39,'<NAME>','<NAME>','<EMAIL>','(9) 7478 2742','',544),(41,'<NAME>','Gerente General','<EMAIL>','56998226460','6.975.340-K',590),(42,'Humberto <NAME>','Gerente Medio Ambiente y Sustentab.','<EMAIL>','56-32-2189200','',592),(43,'<NAME>','Gerente Comecial','<EMAIL>','56-32-2189200','',592),(44,'<NAME>','Gerente Desarrollo e Innovación','<EMAIL>','9 8705808','',657),(45,'<NAME>','Gerente','<EMAIL>','761893688','',594),(46,'<NAME>','Consultor','<EMAIL>','569 77534884','',595),(47,'<NAME>','Jefe Operaciones Zona Centro Sur','<EMAIL>','944026257','',644),(48,'<NAME>','Gerente General','<EMAIL>','55-2555924','10.646.840-0',644),(49,'<NAME>','','<EMAIL>','56 9 91395058','',537),(50,'<NAME>','Coordinador Técnico','<EMAIL>','+56 9 4216 9224','',537),(51,'<NAME>','Adinistrador','<EMAIL>','+56 28629112','',570),(52,'<NAME>','Comercial','<EMAIL>','+56 9 8409 6166','',570),(53,'TeresaBurris','','<EMAIL>','717 849 7165','',567),(54,'<NAME>','Comercial','<EMAIL>','+56 52 220 3378','',520),(55,'<NAME>','Consultor','<EMAIL>','998954648','',656),(56,'<NAME>.','Gerente','<EMAIL>','8.958.271-7','',667),(57,'<NAME>','Administrador','<EMAIL>','','',666),(58,'<NAME>','Administrador','<EMAIL>','','',654),(59,'<NAME>','Gerente Comercial','<EMAIL>','+56 9 9128 9455','',669),(60,'<NAME>','Administrador','<EMAIL>','','',670),(61,'<NAME>','Consultor','<EMAIL>','','',671),(62,'<NAME>','Gerente General','<EMAIL>','+56 22 364 4258','',675),(63,'<NAME>','Gerente Comercial','<EMAIL>','51 2 677293','76.126.367-6',585),(64,'<NAME>','Administrador','<EMAIL>','+56 2 2617-2000','',676),(65,'<NAME>','Administrador','<EMAIL>','','',456),(66,'<NAME>','Representante','<EMAIL>','','',462),(67,'<NAME>','Representante','<EMAIL>','','',470),(68,'<NAME>','Representante','<EMAIL>','','',468),(69,'<NAME>','Gerente General','<EMAIL>','Avenida 11 de sepiem','',491),(70,'<NAME>','Representante','<EMAIL>','','',560),(71,'<NAME>','Gerente General','<EMAIL>','56 52 2 525521','',649),(72,'<NAME>','Administrador','<EMAIL>','','',571),(73,'<NAME>','Representante','<EMAIL>','','',662),(74,'<NAME>','Consultor','<EMAIL>','1-303-931-8597','',677),(75,'<NAME>','Consultor','<EMAIL>','52121089','',678),(76,'<NAME>','Director','<EMAIL>','+56 2 2898 2019','',679),(77,'<NAME>','Consultor','<EMAIL>','+1 303790-4807','',680),(78,'<NAME>','Gerente General','<EMAIL>','9 7809 3564','8.378.451-2',600),(79,'<NAME>','Administrador','<EMAIL>','82-8800187-2','',681),(80,'<NAME>','Contacto','<EMAIL>','222463070','',534),(81,'<NAME>','Gerente General','<EMAIL>','992436296','17.037.846-6',647),(82,'<NAME>','Contacto','<EMAIL>','69910840','',685),(83,'<NAME>','Consultor','<EMAIL>','+56 9 98745689','',686),(84,'<NAME>','Gerente General','<EMAIL>','+56 2 2470749','',687),(85,'<NAME>','Jefe Operaciones','<EMAIL>','9 9436 4935','',688),(86,'<NAME>','Gerente Comercial','<EMAIL>','+-56 2 32244685','',689),(87,'<NAME>','Consultor','<EMAIL>','+56 9 72488162','12.797.977-4',690);
/*!40000 ALTER TABLE `personas_personalctta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `personas_personalproyecto`
--
DROP TABLE IF EXISTS `personas_personalproyecto`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `personas_personalproyecto` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`Nombre` varchar(100) DEFAULT NULL,
`Cargo` varchar(50) DEFAULT NULL,
`Correo` varchar(50) DEFAULT NULL,
`Cel` varchar(20) DEFAULT NULL,
`CI` varchar(20) DEFAULT NULL,
`IdArea_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `personas_personalproyecto_IdArea_id_42a74c00_fk_personas_area_id` (`IdArea_id`),
CONSTRAINT `personas_personalproyecto_IdArea_id_42a74c00_fk_personas_area_id` FOREIGN KEY (`IdArea_id`) REFERENCES `personas_area` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `personas_personalproyecto`
--
LOCK TABLES `personas_personalproyecto` WRITE;
/*!40000 ALTER TABLE `personas_personalproyecto` DISABLE KEYS */;
INSERT INTO `personas_personalproyecto` VALUES (1,'No Asignado',NULL,NULL,NULL,NULL,40),(4,'<NAME>','Gerente SERA','<EMAIL>','+56 9 9799 8842','',51),(5,'<NAME>','Gerente Contratos','<EMAIL>','+56962488735','10.945.422-2',54),(6,'<NAME>','Gerente de Proyecto','<EMAIL>','','',52),(8,'<NAME>','Encargado de Campamento','<EMAIL>','','',52),(10,'<NAME>','Coordinador Medio Ambiente','<EMAIL>','','',51),(11,'<NAME>','Coordinador Med<NAME>','<EMAIL>','','',51),(12,'<NAME>','Gerente de RRHH','<EMAIL>','','',43),(13,'<NAME>','Gerente Negocios','<EMAIL>','','',54),(14,'<NAME>','Gerente EIA','<EMAIL>','+56 2 2898 9324','',51),(15,'<NAME>','Gerente Legal y Propiedad Minera, Legal','<EMAIL>','+56 2 2898 9370','',46),(16,'<NAME>','Senior Geologist, The Americas','<EMAIL>','+1 604-699-5021','',53),(17,'<NAME>','Gerente Comunidades','<EMAIL>','+56 2 2898 9320','',51),(18,'<NAME>','Superintendente Tranque de Relaves','<EMAIL>','+569 68997890','',52),(19,'<NAME>','','<EMAIL>','+56 2 2464 5451','',53),(20,'<NAME>','Gerente Relaciones gubernamentales','<EMAIL>','','',51),(21,'<NAME>','Gerente Eléctrico, Ingeniería y Construcción','<EMAIL>','+56 2 2898 9311','',52),(22,'<NAME>','Gerente Procesos','<EMAIL>','','',52),(23,'<NAME>','Supervisor IT','<EMAIL>','','',43),(24,'<NAME>','Coordinador Relaciones Comuniarias','<EMAIL>','','',51),(25,'<NAME>','Gerente de Operaciones','<EMAIL>','','',54);
/*!40000 ALTER TABLE `personas_personalproyecto` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `personas_question`
--
DROP TABLE IF EXISTS `personas_question`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `personas_question` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`question_text` varchar(200) NOT NULL,
`pub_date` datetime(6) NOT NULL,
`slug` varchar(10) NOT NULL,
`author_id` int(11) DEFAULT NULL,
`fecha_creacion` datetime(6) NOT NULL,
`fecha_ultima_modificacion` datetime(6) NOT NULL,
`modificado_por_id` int(11) DEFAULT NULL,
`status` varchar(255) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `slug` (`slug`),
KEY `personas_question_4f331e2f` (`author_id`),
KEY `personas_question_41b13719` (`modificado_por_id`),
CONSTRAINT `personas_question_author_id_28e1b8f7_fk_auth_user_id` FOREIGN KEY (`author_id`) REFERENCES `auth_user` (`id`),
CONSTRAINT `personas_question_modificado_por_id_3b862007_fk_auth_user_id` FOREIGN KEY (`modificado_por_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `personas_question`
--
LOCK TABLES `personas_question` WRITE;
/*!40000 ALTER TABLE `personas_question` DISABLE KEYS */;
INSERT INTO `personas_question` VALUES (1,'cual es tu pro fav','2016-10-04 15:00:00.000000','question',NULL,'2016-10-09 01:49:03.769145','2016-10-09 02:22:52.845073',NULL,'Local'),(2,'hola','2016-10-11 12:00:00.000000','question2',NULL,'2016-10-09 01:49:03.769145','2016-10-09 02:22:52.845073',NULL,'Local'),(3,'gcd','2016-10-11 16:00:00.000000','question3',NULL,'2016-10-09 01:49:03.769145','2016-10-09 02:22:52.845073',NULL,'Local'),(4,'jgjg','2016-10-04 15:00:00.000000','question5',1,'2016-10-09 01:49:03.769145','2016-10-09 02:22:52.845073',NULL,'Local'),(27,'bfsd','2016-10-12 11:00:00.000000','trysts',1,'2016-10-10 04:01:17.467004','2016-10-10 04:01:29.622887',1,'Nacional'),(28,'dsfgdsg','2016-10-12 15:00:00.000000','utrawsa',1,'2016-10-10 04:03:24.890893','2016-10-10 04:03:24.890908',1,'Extranjero');
/*!40000 ALTER TABLE `personas_question` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `personas_reprentantes`
--
DROP TABLE IF EXISTS `personas_reprentantes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `personas_reprentantes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`IdDuenoCeco_id` int(11) NOT NULL,
`IdMandante_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `personas_reprentante_IdDuenoCeco_id_200ecd0b_fk_personas_ceco_id` (`IdDuenoCeco_id`),
KEY `personas_reprentantes_7e9115d4` (`IdMandante_id`),
CONSTRAINT `personas_reprentante_IdDuenoCeco_id_200ecd0b_fk_personas_ceco_id` FOREIGN KEY (`IdDuenoCeco_id`) REFERENCES `personas_ceco` (`id`),
CONSTRAINT `personas_reprentantes_IdMandante_id_eb1bb153_fk_personas_mdte_id` FOREIGN KEY (`IdMandante_id`) REFERENCES `personas_mdte` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `personas_reprentantes`
--
LOCK TABLES `personas_reprentantes` WRITE;
/*!40000 ALTER TABLE `personas_reprentantes` DISABLE KEYS */;
/*!40000 ALTER TABLE `personas_reprentantes` 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 2017-07-13 7:06:40
|
create table occurrence (
id bigserial not null,
delivery_id bigint not null,
description text not null,
record_date timestamp not null,
primary key (id)
);
alter table occurrence add constraint fk_occurrence_delivery
foreign key (delivery_id) references delivery (id); |
<gh_stars>1-10
/*
Navicat Premium Data Transfer
Source Server : Aliyun ECS MySQL
Source Server Type : MySQL
Source Server Version : 80021
Source Host : bj.kevinkda.cn:3306
Source Schema : university
Target Server Type : MySQL
Target Server Version : 80021
File Encoding : 65001
Date: 23/09/2020 16:04:15
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for tb_Profile
-- ----------------------------
DROP TABLE IF EXISTS `tb_Profile`;
CREATE TABLE `tb_Profile` (
`Profile_ID` int NOT NULL AUTO_INCREMENT COMMENT '人员id',
`Profile_Name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '人员姓名',
`Profile_Birthday` datetime NOT NULL COMMENT '人员年龄',
`Profile_Gender` varchar(255) NOT NULL COMMENT '人员性别',
`Profile_Career` varchar(255) NOT NULL COMMENT '人员职业',
`Profile_Address` varchar(255) NOT NULL COMMENT '人员住所',
`Profile_Mobile` varchar(11) NOT NULL COMMENT '人员手机号',
PRIMARY KEY (`Profile_ID`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of tb_Profile
-- ----------------------------
BEGIN;
INSERT INTO `tb_Profile` VALUES (1, '张三', '1982-01-01 06:19:41', '男', '程序员', '玉桃园小区3号', '13718944477');
INSERT INTO `tb_Profile` VALUES (2, '李想', '1990-01-01 14:20:28', '女', '程序员', '玉桃区', '12900445631');
COMMIT;
SET FOREIGN_KEY_CHECKS = 1;
|
/*
SQLyog Community v13.1.2 (64 bit)
MySQL - 5.5.60-0+deb7u1-log : Database - db_masjid
*********************************************************************
*/
/*!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 */;
USE `db_potensi_pajak`;
/*Table structure for table `tbl_hotel` */
DROP TABLE IF EXISTS `tbl_hotel`;
CREATE TABLE `tbl_hotel` (
`id_hotel` int(11) NOT NULL AUTO_INCREMENT,
`masa_pajak` varchar(20) DEFAULT NULL,
`tahun` varchar(10) DEFAULT NULL,
`tgl_transaksi` date DEFAULT NULL,
`jumlah_pajak` varchar(30) DEFAULT NULL,
`date_validation` datetime DEFAULT NULL,
PRIMARY KEY (`id_hotel`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*Data for the table `tbl_hotel` */
/*Table structure for table `tbl_hotel_c1` */
DROP TABLE IF EXISTS `tbl_hotel_c1`;
CREATE TABLE `tbl_hotel_c1` (
`id_transaksi` int(11) NOT NULL AUTO_INCREMENT,
`tgl_transaksi` date DEFAULT NULL,
`nominal` varchar(20) DEFAULT NULL,
PRIMARY KEY (`id_transaksi`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*Data for the table `tbl_hotel_c1` */
/*Table structure for table `tbl_hotel_camplong` */
DROP TABLE IF EXISTS `tbl_hotel_camplong`;
CREATE TABLE `tbl_hotel_camplong` (
`id_transaksi` int(11) NOT NULL AUTO_INCREMENT,
`tgl_transaksi` date DEFAULT NULL,
`nominal` varchar(20) DEFAULT NULL,
PRIMARY KEY (`id_transaksi`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*Data for the table `tbl_hotel_camplong` */
/*Table structure for table `tbl_hotel_musdalifah` */
DROP TABLE IF EXISTS `tbl_hotel_musdalifah`;
CREATE TABLE `tbl_hotel_musdalifah` (
`id_transaksi` int(11) NOT NULL AUTO_INCREMENT,
`tgl_transaksi` date DEFAULT NULL,
`nominal` varchar(20) DEFAULT NULL,
PRIMARY KEY (`id_transaksi`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*Data for the table `tbl_hotel_musdalifah` */
/*Table structure for table `tbl_restoran` */
DROP TABLE IF EXISTS `tbl_restoran`;
CREATE TABLE `tbl_restoran` (
`id_resto` int(11) NOT NULL AUTO_INCREMENT,
`masa_pajak` varchar(20) DEFAULT NULL,
`tahun` varchar(30) DEFAULT NULL,
`tgl_transaksi` date DEFAULT NULL,
`jumlah_pajak` varchar(50) DEFAULT NULL,
`date_validation` datetime DEFAULT NULL,
PRIMARY KEY (`id_resto`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
/*Data for the table `tbl_restoran` */
insert into `tbl_restoran`(`id_resto`,`masa_pajak`,`tahun`,`tgl_transaksi`,`jumlah_pajak`,`date_validation`) values
(2,'Januari','2017','2017-01-01','350000','2019-11-07 13:37:53'),
(3,'Januari','2017','2017-01-02','409400','2019-11-07 13:38:33'),
(4,'Januari','2017','2017-01-03','712600','2019-11-07 13:41:33'),
(5,'Januari','2017','2017-01-04','340400','2019-11-07 13:50:58');
/*Table structure for table `tbl_rm_amanis` */
DROP TABLE IF EXISTS `tbl_rm_amanis`;
CREATE TABLE `tbl_rm_amanis` (
`id_transaksi` int(11) NOT NULL AUTO_INCREMENT,
`tgl_transaksi` date DEFAULT NULL,
`nominal` varchar(20) DEFAULT NULL,
`nama_wp` varchar(20) DEFAULT 'RM Amanis',
`validasi` datetime DEFAULT NULL,
PRIMARY KEY (`id_transaksi`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*Data for the table `tbl_rm_amanis` */
insert into `tbl_rm_amanis`(`id_transaksi`,`tgl_transaksi`,`nominal`,`nama_wp`,`validasi`) values
(1,'2019-11-21','55000','RM Amanis','2019-11-21 10:27:49'),
(2,'2019-11-28','200000000','RM Amanis','2019-11-28 15:22:30');
/*Table structure for table `tbl_rm_brewok` */
DROP TABLE IF EXISTS `tbl_rm_brewok`;
CREATE TABLE `tbl_rm_brewok` (
`id_transaksi` int(11) NOT NULL AUTO_INCREMENT,
`tgl_transaksi` date DEFAULT NULL,
`nominal` varchar(20) DEFAULT NULL,
`nama_wp` varchar(20) DEFAULT 'RM Brewok',
`validasi` datetime DEFAULT NULL,
PRIMARY KEY (`id_transaksi`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*Data for the table `tbl_rm_brewok` */
insert into `tbl_rm_brewok`(`id_transaksi`,`tgl_transaksi`,`nominal`,`nama_wp`,`validasi`) values
(1,'2019-11-21','250000','RM Brewok','2019-11-21 16:15:54');
/*Table structure for table `tbl_rm_sumber_hidup` */
DROP TABLE IF EXISTS `tbl_rm_sumber_hidup`;
CREATE TABLE `tbl_rm_sumber_hidup` (
`id_transaksi` int(11) NOT NULL AUTO_INCREMENT,
`tgl_transaksi` date DEFAULT NULL,
`nominal` varchar(20) DEFAULT NULL,
`nama_wp` varchar(20) DEFAULT 'RM Sumber Hidup',
`validasi` datetime DEFAULT NULL,
PRIMARY KEY (`id_transaksi`)
) ENGINE=InnoDB AUTO_INCREMENT=299 DEFAULT CHARSET=latin1;
/*Data for the table `tbl_rm_sumber_hidup` */
insert into `tbl_rm_sumber_hidup`(`id_transaksi`,`tgl_transaksi`,`nominal`,`nama_wp`,`validasi`) values
(1,'2019-01-01','396750','RM Sumber Hidup','2019-11-29 08:37:38'),
(2,'2019-01-02','442800','RM Sumber Hidup','2019-11-29 08:37:51'),
(3,'2019-01-03','497950','RM Sumber Hidup','2019-11-29 08:39:36'),
(4,'2019-01-04','388100','RM Sumber Hidup','2019-11-29 08:39:56'),
(5,'2019-01-05','456800','RM Sumber Hidup','2019-11-29 08:40:11'),
(6,'2019-01-06','422700','RM Sumber Hidup','2019-11-29 08:40:48'),
(7,'2019-01-07','404300','RM Sumber Hidup','2019-11-29 08:43:23'),
(8,'2019-01-08','290400','RM Sumber Hidup','2019-11-29 08:44:36'),
(9,'2019-01-09','273850','RM Sumber Hidup','2019-11-29 08:45:05'),
(10,'2019-01-10','368850','RM Sumber Hidup','2019-11-29 08:46:34'),
(11,'2019-01-11','405300','RM Sumber Hidup','2019-11-29 08:48:35'),
(12,'2019-01-12','267150','RM Sumber Hidup','2019-11-29 08:51:36'),
(13,'2019-01-13','404050','RM Sumber Hidup','2019-11-29 08:56:02'),
(14,'2019-01-14','255200','RM Sumber Hidup','2019-11-29 08:56:21'),
(15,'2019-01-15','312800','RM Sumber Hidup','2019-11-29 08:56:36'),
(16,'2019-01-16','345850','RM Sumber Hidup','2019-11-29 08:57:12'),
(17,'2019-01-17','243700','RM Sumber Hidup','2019-11-29 09:01:44'),
(18,'2019-01-18','256900','RM Sumber Hidup','2019-11-29 09:03:19'),
(19,'2019-01-19','358600','RM Sumber Hidup','2019-11-29 09:11:45'),
(20,'2019-01-20','502150','RM Sumber Hidup','2019-11-29 09:12:03'),
(21,'2019-01-21','331850','RM Sumber Hidup','2019-11-29 09:12:52'),
(22,'2019-01-22','325250','RM Sumber Hidup','2019-11-29 09:13:49'),
(23,'2019-01-23','260000','RM Sumber Hidup','2019-11-29 09:14:01'),
(24,'2019-01-24','320050','RM Sumber Hidup','2019-11-29 09:16:14'),
(25,'2019-01-25','241650','RM Sumber Hidup','2019-11-29 09:16:30'),
(26,'2019-01-26','347950','RM Sumber Hidup','2019-11-29 09:18:09'),
(27,'2019-01-27','370900','RM Sumber Hidup','2019-11-29 09:18:26'),
(28,'2019-01-28','278350','RM Sumber Hidup','2019-11-29 09:18:43'),
(29,'2019-01-29','258450','RM Sumber Hidup','2019-12-04 10:50:17'),
(30,'2019-01-30','296600','RM Sumber Hidup','2019-12-04 10:50:31'),
(31,'2019-01-31','299400','RM Sumber Hidup','2019-12-04 10:50:47'),
(32,'2019-02-01','282350','RM Sumber Hidup','2019-12-04 10:51:22'),
(33,'2019-02-02','288250','RM Sumber Hidup','2019-12-04 10:51:33'),
(34,'2019-02-03','549150','RM Sumber Hidup','2019-12-04 10:51:45'),
(35,'2019-02-04','372350','RM Sumber Hidup','2019-12-04 11:00:23'),
(36,'2019-02-05','384100','RM Sumber Hidup','2019-12-04 11:00:38'),
(37,'2019-02-06','348200','RM Sumber Hidup','2019-12-04 11:00:54'),
(38,'2019-02-07','393300','RM Sumber Hidup','2019-12-04 11:03:47'),
(39,'2019-02-08','339850','RM Sumber Hidup','2019-12-04 11:04:07'),
(40,'2019-02-09','315550','RM Sumber Hidup','2019-12-04 11:04:20'),
(41,'2019-02-10','369550','RM Sumber Hidup','2019-12-04 11:04:46'),
(42,'2019-02-11','283600','RM Sumber Hidup','2019-12-04 11:04:57'),
(43,'2019-02-12','266850','RM Sumber Hidup','2019-12-04 11:05:10'),
(44,'2019-02-13','286400','RM Sumber Hidup','2019-12-04 11:05:20'),
(45,'2019-02-14','316150','RM Sumber Hidup','2019-12-04 11:05:31'),
(46,'2019-02-15','304100','RM Sumber Hidup','2019-12-04 11:05:40'),
(47,'2019-02-16','503500','RM Sumber Hidup','2019-12-04 11:05:51'),
(48,'2019-02-17','848350','RM Sumber Hidup','2019-12-04 11:06:02'),
(49,'2019-02-18','548400','RM Sumber Hidup','2019-12-04 11:06:11'),
(50,'2019-02-19','488100','RM Sumber Hidup','2019-12-04 11:06:21'),
(51,'2019-02-20','673000','RM Sumber Hidup','2019-12-04 11:06:30'),
(52,'2019-02-21','450200','RM Sumber Hidup','2019-12-04 11:06:38'),
(53,'2019-02-22','481350','RM Sumber Hidup','2019-12-04 11:06:46'),
(54,'2019-02-23','542150','RM Sumber Hidup','2019-12-04 11:06:57'),
(55,'2019-02-24','632000','RM Sumber Hidup','2019-12-04 11:07:07'),
(56,'2019-02-25','535350','RM Sumber Hidup','2019-12-04 11:07:19'),
(57,'2019-02-26','528350','RM Sumber Hidup','2019-12-04 11:07:29'),
(58,'2019-02-27','557000','RM Sumber Hidup','2019-12-04 11:07:38'),
(59,'2019-02-28','627800','RM Sumber Hidup','2019-12-04 11:07:56'),
(60,'2019-03-01','472150','RM Sumber Hidup','2019-12-06 14:48:09'),
(61,'2019-03-02','662000','RM Sumber Hidup','2019-12-06 14:48:19'),
(62,'2019-03-03','724650','RM Sumber Hidup','2019-12-06 14:48:29'),
(63,'2019-03-04','581550','RM Sumber Hidup','2019-12-06 14:48:38'),
(64,'2019-03-05','572250','RM Sumber Hidup','2019-12-06 14:48:53'),
(65,'2019-03-06','450450','RM Sumber Hidup','2019-12-06 14:49:09'),
(66,'2019-03-07','808100','RM Sumber Hidup','2019-12-06 14:49:21'),
(67,'2019-03-08','470600','RM Sumber Hidup','2019-12-06 14:49:38'),
(69,'2019-03-09','606650','RM Sumber Hidup','2019-12-06 15:20:38'),
(70,'2019-03-10','773100','RM Sumber Hidup','2019-12-06 15:24:47'),
(72,'2019-03-12','539000','RM Sumber Hidup','2019-12-06 15:43:44'),
(73,'2019-03-11','539000','RM Sumber Hidup','2019-12-06 16:05:23'),
(74,'2019-03-13','463900','RM Sumber Hidup','2019-12-06 16:06:11'),
(75,'2019-03-14','595400','RM Sumber Hidup','2019-12-06 16:09:36'),
(76,'2019-03-15','471550','RM Sumber Hidup','2019-12-06 16:10:19'),
(77,'2019-03-16','581400','RM Sumber Hidup','2019-12-06 16:11:19'),
(78,'2019-03-17','569850','RM Sumber Hidup','2019-12-06 16:11:55'),
(79,'2019-03-18','450100','RM Sumber Hidup','2019-12-06 16:12:26'),
(80,'2019-03-19','350650','RM Sumber Hidup','2019-12-06 16:12:59'),
(81,'2019-03-20','331150','RM Sumber Hidup','2019-12-06 16:13:38'),
(82,'2019-03-21','553150','RM Sumber Hidup','2019-12-06 16:14:09'),
(83,'2019-03-22','453850','RM Sumber Hidup','2019-12-06 16:14:42'),
(84,'2019-03-23','673050','RM Sumber Hidup','2019-12-06 16:15:18'),
(85,'2019-03-24','627050','RM Sumber Hidup','2019-12-06 16:15:50'),
(86,'2019-03-25','536250','RM Sumber Hidup','2019-12-06 16:16:50'),
(87,'2019-03-26','544150','RM Sumber Hidup','2019-12-06 16:17:20'),
(88,'2019-03-27','348450','RM Sumber Hidup','2019-12-06 16:17:55'),
(89,'2019-03-28','625350','RM Sumber Hidup','2019-12-06 16:18:56'),
(90,'2019-03-29','611600','RM Sumber Hidup','2019-12-06 16:19:23'),
(91,'2019-03-30','735000','RM Sumber Hidup','2019-12-06 16:20:10'),
(92,'2019-03-31','773750','RM Sumber Hidup','2019-12-06 16:20:52'),
(93,'2019-04-01','467100','RM Sumber Hidup','2019-12-06 16:28:20'),
(94,'2019-04-02','496500','RM Sumber Hidup','2019-12-06 16:29:42'),
(95,'2019-04-02','496500','RM Sumber Hidup','2019-12-06 16:29:54'),
(96,'2019-04-03','740650','RM Sumber Hidup','2019-12-06 16:30:39'),
(97,'2019-04-04','646100','RM Sumber Hidup','2019-12-06 16:31:06'),
(98,'2019-04-05','412350','RM Sumber Hidup','2019-12-06 16:31:33'),
(99,'2019-04-06','683000','RM Sumber Hidup','2019-12-06 16:32:00'),
(100,'2019-04-07','738150','RM Sumber Hidup','2019-12-06 16:32:56'),
(101,'2019-04-07','738150','RM Sumber Hidup','2019-12-06 16:33:03'),
(102,'2019-04-08','270500','RM Sumber Hidup','2019-12-06 16:33:53'),
(103,'2019-04-09','352400','RM Sumber Hidup','2019-12-06 16:34:18'),
(104,'2019-04-10','509650','RM Sumber Hidup','2019-12-06 16:34:44'),
(105,'2019-04-11','479250','RM Sumber Hidup','2019-12-06 16:35:14'),
(106,'2019-04-12','555500','RM Sumber Hidup','2019-12-06 16:35:46'),
(107,'2019-04-13','617100','RM Sumber Hidup','2019-12-06 16:37:44'),
(108,'2019-04-14','737650','RM Sumber Hidup','2019-12-06 16:38:21'),
(109,'2019-04-15','455450','RM Sumber Hidup','2019-12-06 16:39:18'),
(110,'2019-04-16','577300','RM Sumber Hidup','2019-12-06 16:39:53'),
(111,'2019-04-17','695000','RM Sumber Hidup','2019-12-06 16:41:02'),
(112,'2019-04-18','551650','RM Sumber Hidup','2019-12-06 16:41:44'),
(113,'2019-04-19','704700','RM Sumber Hidup','2019-12-06 16:42:20'),
(114,'2019-04-20','554100','RM Sumber Hidup','2019-12-06 16:44:06'),
(115,'2019-04-21','768600','RM Sumber Hidup','2019-12-06 16:45:14'),
(116,'2019-04-22','498900','RM Sumber Hidup','2019-12-06 16:45:41'),
(117,'2019-04-23','457500','RM Sumber Hidup','2019-12-06 16:46:11'),
(118,'2019-04-24','568500','RM Sumber Hidup','2019-12-06 16:46:37'),
(119,'2019-04-25','629950','RM Sumber Hidup','2019-12-06 16:47:09'),
(120,'2019-04-26','459200','RM Sumber Hidup','2019-12-06 16:47:38'),
(122,'2019-04-28','760100','RM Sumber Hidup','2019-12-06 16:48:31'),
(123,'2019-04-29','561850','RM Sumber Hidup','2019-12-06 16:49:11'),
(124,'2019-04-30','388550','RM Sumber Hidup','2019-12-06 16:49:49'),
(125,'2019-04-27','366300','RM Sumber Hidup','2019-12-06 16:51:39'),
(126,'2019-05-01','719100','RM Sumber Hidup','2019-12-06 16:56:49'),
(127,'2019-05-02','547050','RM Sumber Hidup','2019-12-06 16:57:52'),
(128,'2019-05-03','495300','RM Sumber Hidup','2019-12-06 16:58:15'),
(129,'2019-05-04','615450','RM Sumber Hidup','2019-12-06 16:58:39'),
(130,'2019-05-05','707600','RM Sumber Hidup','2019-12-06 16:59:07'),
(131,'2019-05-06','575550','RM Sumber Hidup','2019-12-06 16:59:37'),
(132,'2019-05-07','494250','RM Sumber Hidup','2019-12-06 16:59:59'),
(133,'2019-05-08','511300','RM Sumber Hidup','2019-12-06 17:00:21'),
(134,'2019-05-09','599000','RM Sumber Hidup','2019-12-06 17:00:43'),
(135,'2019-05-10','531900','RM Sumber Hidup','2019-12-06 17:01:07'),
(136,'2019-05-11','679700','RM Sumber Hidup','2019-12-06 17:01:32'),
(137,'2019-05-12','668200','RM Sumber Hidup','2019-12-06 17:01:58'),
(138,'2019-05-13','435200','RM Sumber Hidup','2019-12-06 17:02:28'),
(139,'2019-05-14','451400','RM Sumber Hidup','2019-12-06 17:03:02'),
(140,'2019-05-15','487550','RM Sumber Hidup','2019-12-06 17:03:29'),
(141,'2019-05-16','773600','RM Sumber Hidup','2019-12-06 17:03:59'),
(142,'2019-05-17','692800','RM Sumber Hidup','2019-12-06 17:18:15'),
(143,'2019-05-18','763000','RM Sumber Hidup','2019-12-06 17:18:43'),
(144,'2019-05-19','945600','RM Sumber Hidup','2019-12-06 17:19:24'),
(145,'2019-05-20','661000','RM Sumber Hidup','2019-12-06 17:19:48'),
(146,'2019-05-21','476700','RM Sumber Hidup','2019-12-06 17:20:22'),
(147,'2019-05-22','511300','RM Sumber Hidup','2019-12-06 17:20:48'),
(148,'2019-05-23','693000','RM Sumber Hidup','2019-12-06 17:21:21'),
(149,'2019-05-24','748850','RM Sumber Hidup','2019-12-06 17:21:52'),
(150,'2019-05-25','775000','RM Sumber Hidup','2019-12-06 17:22:19'),
(151,'2019-05-26','1022850','RM Sumber Hidup','2019-12-06 17:22:51'),
(152,'2019-05-27','752100','RM Sumber Hidup','2019-12-06 17:23:18'),
(153,'2019-05-28','699250','RM Sumber Hidup','2019-12-06 17:23:43'),
(154,'2019-05-29','716700','RM Sumber Hidup','2019-12-06 17:24:05'),
(155,'2019-05-30','977150','RM Sumber Hidup','2019-12-06 17:24:27'),
(156,'2019-05-31','930300','RM Sumber Hidup','2019-12-06 17:24:59'),
(157,'2019-06-01','1063250','RM Sumber Hidup','2019-12-06 17:27:15'),
(158,'2019-06-01','1063250','RM Sumber Hidup','2019-12-06 17:27:22'),
(159,'2019-06-02','1152650','RM Sumber Hidup','2019-12-06 17:28:37'),
(160,'2019-06-03','1183850','RM Sumber Hidup','2019-12-06 17:29:18'),
(161,'2019-06-04','1204500','RM Sumber Hidup','2019-12-06 17:31:54'),
(162,'2019-06-05','850700','RM Sumber Hidup','2019-12-06 17:32:16'),
(163,'2019-06-06','1182850','RM Sumber Hidup','2019-12-06 17:32:49'),
(164,'2019-06-07','1149900','RM Sumber Hidup','2019-12-06 17:33:19'),
(165,'2019-06-08','1172250','RM Sumber Hidup','2019-12-06 17:33:48'),
(166,'2019-06-09','1172250','RM Sumber Hidup','2019-12-06 17:34:16'),
(167,'2019-06-10','660300','RM Sumber Hidup','2019-12-06 17:34:37'),
(168,'2019-06-11','704500','RM Sumber Hidup','2019-12-06 17:35:00'),
(169,'2019-06-12','630250','RM Sumber Hidup','2019-12-06 17:35:27'),
(170,'2019-06-13','767150','RM Sumber Hidup','2019-12-06 17:35:55'),
(171,'2019-06-14','670900','RM Sumber Hidup','2019-12-06 17:36:29'),
(172,'2019-06-15','506450','RM Sumber Hidup','2019-12-06 17:36:50'),
(173,'2019-06-16','551600','RM Sumber Hidup','2019-12-06 17:37:13'),
(174,'2019-06-17','695250','RM Sumber Hidup','2019-12-06 17:37:45'),
(175,'2019-06-18','709150','RM Sumber Hidup','2019-12-06 17:38:21'),
(176,'2019-06-19','727850','RM Sumber Hidup','2019-12-06 17:38:43'),
(177,'2019-06-20','901150','RM Sumber Hidup','2019-12-06 17:39:10'),
(178,'2019-06-21','634150','RM Sumber Hidup','2019-12-06 17:39:35'),
(179,'2019-06-22','467100','RM Sumber Hidup','2019-12-06 17:39:58'),
(180,'2019-06-23','745650','RM Sumber Hidup','2019-12-06 17:40:24'),
(181,'2019-06-24','604500','RM Sumber Hidup','2019-12-06 17:40:46'),
(182,'2019-06-25','478600','RM Sumber Hidup','2019-12-06 17:41:09'),
(183,'2019-06-26','591400','RM Sumber Hidup','2019-12-06 17:41:35'),
(184,'2019-06-27','697650','RM Sumber Hidup','2019-12-06 17:41:58'),
(185,'2019-06-28','734250','RM Sumber Hidup','2019-12-06 17:42:17'),
(186,'2019-06-29','850750','RM Sumber Hidup','2019-12-06 17:42:45'),
(187,'2019-06-30','894750','RM Sumber Hidup','2019-12-06 17:43:12'),
(188,'2019-07-01','765150','RM Sumber Hidup','2019-12-09 15:40:26'),
(189,'2019-07-02','690250','RM Sumber Hidup','2019-12-09 15:40:51'),
(190,'2019-07-03','645500','RM Sumber Hidup','2019-12-09 15:41:10'),
(191,'2019-07-04','812150','RM Sumber Hidup','2019-12-09 15:41:27'),
(192,'2019-07-05','585650','RM Sumber Hidup','2019-12-09 15:41:43'),
(193,'2019-07-06','726600','RM Sumber Hidup','2019-12-09 15:42:13'),
(194,'2019-07-07','855300','RM Sumber Hidup','2019-12-09 15:42:38'),
(195,'2019-07-08','604750','RM Sumber Hidup','2019-12-09 15:42:58'),
(196,'2019-07-09','576450','RM Sumber Hidup','2019-12-09 15:43:16'),
(197,'2019-07-10','739950','RM Sumber Hidup','2019-12-09 15:43:40'),
(198,'2019-07-11','828350','RM Sumber Hidup','2019-12-09 15:43:56'),
(199,'2019-07-12','737900','RM Sumber Hidup','2019-12-09 15:44:16'),
(200,'2019-07-13','922400','RM Sumber Hidup','2019-12-09 15:45:02'),
(201,'2019-07-14','868650','RM Sumber Hidup','2019-12-09 15:46:22'),
(202,'2019-07-15','868650','RM Sumber Hidup','2019-12-09 15:47:27'),
(203,'2019-07-16','297900','RM Sumber Hidup','2019-12-09 15:47:43'),
(204,'2019-07-17','490100','RM Sumber Hidup','2019-12-09 15:48:11'),
(205,'2019-07-18','779950','RM Sumber Hidup','2019-12-09 15:48:38'),
(206,'2019-07-19','598300','RM Sumber Hidup','2019-12-09 15:48:55'),
(207,'2019-07-20','777000','RM Sumber Hidup','2019-12-09 15:50:24'),
(208,'2019-07-21','666700','RM Sumber Hidup','2019-12-09 15:50:42'),
(209,'2019-07-22','504700','RM Sumber Hidup','2019-12-12 11:10:51'),
(210,'2019-07-23','375550','RM Sumber Hidup','2019-12-12 11:11:02'),
(211,'2019-07-24','688800','RM Sumber Hidup','2019-12-12 11:11:11'),
(212,'2019-07-25','818450','RM Sumber Hidup','2019-12-12 11:11:23'),
(213,'2019-07-26','609750','RM Sumber Hidup','2019-12-12 11:11:39'),
(214,'2019-07-27','682750','RM Sumber Hidup','2019-12-12 11:11:50'),
(215,'2019-07-28','745400','RM Sumber Hidup','2019-12-12 11:12:02'),
(216,'2019-07-29','498500','RM Sumber Hidup','2019-12-12 11:12:16'),
(217,'2019-07-30','516000','RM Sumber Hidup','2019-12-12 11:12:26'),
(218,'2019-07-31','561450','RM Sumber Hidup','2019-12-12 11:12:37'),
(219,'2019-08-01','650900','RM Sumber Hidup','2019-12-12 11:17:49'),
(220,'2019-08-02','626700','RM Sumber Hidup','2019-12-12 11:17:58'),
(221,'2019-08-03','664400','RM Sumber Hidup','2019-12-12 11:18:07'),
(222,'2019-08-04','750350','RM Sumber Hidup','2019-12-12 11:18:15'),
(223,'2019-08-05','582650','RM Sumber Hidup','2019-12-12 11:18:22'),
(224,'2019-08-06','607200','RM Sumber Hidup','2019-12-12 11:18:30'),
(227,'2019-08-07','453600','RM Sumber Hidup','2019-12-12 11:20:37'),
(228,'2019-08-08','599700','RM Sumber Hidup','2019-12-12 11:20:47'),
(229,'2019-08-09','559050','RM Sumber Hidup','2019-12-12 11:21:03'),
(230,'2019-08-10','950300','RM Sumber Hidup','2019-12-12 11:21:11'),
(231,'2019-08-11','823650','RM Sumber Hidup','2019-12-12 11:21:22'),
(232,'2019-08-12','544300','RM Sumber Hidup','2019-12-12 11:21:30'),
(233,'2019-08-13','604900','RM Sumber Hidup','2019-12-12 11:21:41'),
(234,'2019-08-14','585150','RM Sumber Hidup','2019-12-12 11:21:51'),
(235,'2019-08-15','734600','RM Sumber Hidup','2019-12-12 11:21:59'),
(236,'2019-08-16','694400','RM Sumber Hidup','2019-12-12 11:22:07'),
(237,'2019-08-17','917500','RM Sumber Hidup','2019-12-12 11:22:14'),
(238,'2019-08-18','738550','RM Sumber Hidup','2019-12-12 11:22:26'),
(239,'2019-08-19','449800','RM Sumber Hidup','2019-12-12 11:22:37'),
(240,'2019-08-20','502050','RM Sumber Hidup','2019-12-12 11:22:47'),
(241,'2019-08-21','537200','RM Sumber Hidup','2019-12-12 11:22:58'),
(242,'2019-08-22','615150','RM Sumber Hidup','2019-12-12 11:23:10'),
(243,'2019-08-23','543900','RM Sumber Hidup','2019-12-12 11:23:23'),
(244,'2019-08-24','658300','RM Sumber Hidup','2019-12-12 11:23:31'),
(245,'2019-08-25','732750','RM Sumber Hidup','2019-12-12 11:23:47'),
(246,'2019-08-26','533350','RM Sumber Hidup','2019-12-12 11:24:01'),
(247,'2019-08-27','595850','RM Sumber Hidup','2019-12-12 11:24:09'),
(248,'2019-08-28','558450','RM Sumber Hidup','2019-12-12 11:24:18'),
(249,'2019-08-29','433150','RM Sumber Hidup','2019-12-12 11:24:25'),
(250,'2019-08-30','563650','RM Sumber Hidup','2019-12-12 11:24:34'),
(251,'2019-08-31','646800','RM Sumber Hidup','2019-12-12 11:24:42'),
(252,'2019-09-01','519400','RM Sumber Hidup','2019-12-12 12:18:56'),
(253,'2019-09-02','420050','RM Sumber Hidup','2019-12-12 13:35:02'),
(254,'2019-09-03','531450','RM Sumber Hidup','2019-12-12 13:35:11'),
(255,'2019-09-04','693600','RM Sumber Hidup','2019-12-12 13:35:21'),
(256,'2019-09-05','711200','RM Sumber Hidup','2019-12-12 13:35:37'),
(257,'2019-09-06','690250','RM Sumber Hidup','2019-12-12 13:36:06'),
(258,'2019-09-07','888050','RM Sumber Hidup','2019-12-12 13:37:10'),
(259,'2019-09-08','888050','RM Sumber Hidup','2019-12-12 13:37:26'),
(260,'2019-09-09','888050','RM Sumber Hidup','2019-12-12 13:38:14'),
(261,'2019-09-10','503250','RM Sumber Hidup','2019-12-12 13:38:37'),
(262,'2019-09-11','779250','RM Sumber Hidup','2019-12-12 13:38:55'),
(263,'2019-09-12','497870','RM Sumber Hidup','2019-12-12 13:39:07'),
(264,'2019-09-13','556800','RM Sumber Hidup','2019-12-12 13:39:32'),
(265,'2019-09-14','671800','RM Sumber Hidup','2019-12-12 13:40:10'),
(266,'2019-09-15','773350','RM Sumber Hidup','2019-12-12 13:40:31'),
(267,'2019-09-16','599250','RM Sumber Hidup','2019-12-12 13:40:40'),
(268,'2019-10-01','614350','RM Sumber Hidup','2019-12-18 09:21:14'),
(269,'2019-10-02','525400','RM Sumber Hidup','2019-12-18 09:21:27'),
(270,'2019-10-03','667400','RM Sumber Hidup','2019-12-18 09:21:36'),
(271,'2019-10-04','708800','RM Sumber Hidup','2019-12-18 09:21:46'),
(272,'2019-10-05','795350','RM Sumber Hidup','2019-12-18 09:21:54'),
(273,'2019-10-06','825050','RM Sumber Hidup','2019-12-18 09:22:02'),
(274,'2019-10-07','517050','RM Sumber Hidup','2019-12-18 09:22:10'),
(275,'2019-10-08','488250','RM Sumber Hidup','2019-12-18 09:22:21'),
(276,'2019-10-09','539250','RM Sumber Hidup','2019-12-18 09:22:30'),
(277,'2019-10-10','601400','RM Sumber Hidup','2019-12-18 09:22:37'),
(278,'2019-10-11','829900','RM Sumber Hidup','2019-12-18 09:22:55'),
(279,'2019-10-12','857950','RM Sumber Hidup','2019-12-18 09:23:04'),
(280,'2019-10-13','437550','RM Sumber Hidup','2019-12-18 09:23:13'),
(281,'2019-10-14','704200','RM Sumber Hidup','2019-12-18 09:23:20'),
(282,'2019-10-15','737650','RM Sumber Hidup','2019-12-18 09:23:28'),
(283,'2019-10-16','619300','RM Sumber Hidup','2019-12-18 09:23:35'),
(284,'2019-10-17','752800','RM Sumber Hidup','2019-12-18 09:23:42'),
(285,'2019-10-18','721950','RM Sumber Hidup','2019-12-18 09:23:49'),
(286,'2019-10-19','733450','RM Sumber Hidup','2019-12-18 09:23:56'),
(287,'2019-10-20','641400','RM Sumber Hidup','2019-12-18 09:24:04'),
(288,'2019-10-21','590950','RM Sumber Hidup','2019-12-18 09:24:10'),
(289,'2019-10-22','647650','RM Sumber Hidup','2019-12-18 09:24:17'),
(290,'2019-10-23','555850','RM Sumber Hidup','2019-12-18 09:24:25'),
(291,'2019-10-24','650600','RM Sumber Hidup','2019-12-18 09:24:32'),
(292,'2019-10-25','736650','RM Sumber Hidup','2019-12-18 09:24:40'),
(293,'2019-10-26','871100','RM Sumber Hidup','2019-12-18 09:24:49'),
(294,'2019-10-27','617400','RM Sumber Hidup','2019-12-18 09:24:57'),
(295,'2019-10-28','485250','RM Sumber Hidup','2019-12-18 09:25:07'),
(296,'2019-10-30','622350','RM Sumber Hidup','2019-12-18 09:25:38'),
(297,'2019-10-31','583250','RM Sumber Hidup','2019-12-18 09:25:51'),
(298,'2019-10-29','630500','RM Sumber Hidup','2019-12-18 09:26:26');
/*Table structure for table `tbl_target` */
DROP TABLE IF EXISTS `tbl_target`;
CREATE TABLE `tbl_target` (
`id_target` int(11) NOT NULL AUTO_INCREMENT,
`bulan` varchar(30) DEFAULT NULL,
`target` varchar(30) DEFAULT NULL,
`tahun` varchar(10) DEFAULT NULL,
PRIMARY KEY (`id_target`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*Data for the table `tbl_target` */
insert into `tbl_target`(`id_target`,`bulan`,`target`,`tahun`) values
(1,'Oktober','100000000','2018'),
(2,'Oktober','10250000','2018');
/*Table structure for table `tbl_user` */
DROP TABLE IF EXISTS `tbl_user`;
CREATE TABLE `tbl_user` (
`id_user` int(11) NOT NULL AUTO_INCREMENT,
`nama` varchar(50) DEFAULT NULL,
`username` varchar(40) DEFAULT NULL,
`password` text,
`level` int(11) DEFAULT NULL,
PRIMARY KEY (`id_user`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*Data for the table `tbl_user` */
insert into `tbl_user`(`id_user`,`nama`,`username`,`password`,`level`) values
(1,'<NAME>','admin','<PASSWORD>',1);
/*!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 */;
|
-- Revert schemas/inflection/procedures/camel from pg
BEGIN;
DROP FUNCTION inflection.camel;
COMMIT;
|
<gh_stars>100-1000
--
-- PostgreSQL database dump
--
-- Dumped from database version 10.3
-- Dumped by pg_dump version 10.3 (Debian 10.3-1.pgdg90+1)
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;
SET row_security = off;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: image; Type: TABLE; Schema: public; Owner: deploy
--
CREATE TABLE public.image (
id integer NOT NULL,
created_on timestamp with time zone NOT NULL,
updated_on timestamp with time zone NOT NULL,
identifier character varying(255),
perceptual_hash character varying(255),
provider character varying(80),
source character varying(80),
foreign_identifier character varying(1000),
foreign_landing_url character varying(1000),
url character varying(1000) NOT NULL,
thumbnail character varying(1000),
width integer,
height integer,
filesize integer,
license character varying(50) NOT NULL,
license_version character varying(25),
creator character varying(2000),
creator_url character varying(2000),
title character varying(2000),
tags_list character varying(255)[],
last_synced_with_source timestamp with time zone,
removed_from_source boolean NOT NULL,
meta_data jsonb,
view_count integer NOT NULL,
tags jsonb NOT NULL,
watermarked boolean NOT NULL
);
ALTER TABLE public.image OWNER TO deploy;
--
-- Name: image_id_seq; Type: SEQUENCE; Schema: public; Owner: deploy
--
CREATE SEQUENCE public.image_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.image_id_seq OWNER TO deploy;
--
-- Name: image_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: deploy
--
ALTER SEQUENCE public.image_id_seq OWNED BY public.image.id;
--
-- Name: image id; Type: DEFAULT; Schema: public; Owner: deploy
--
ALTER TABLE ONLY public.image ALTER COLUMN id SET DEFAULT nextval('public.image_id_seq'::regclass);
--
-- Name: image image_foreign_identifier_key; Type: CONSTRAINT; Schema: public; Owner: deploy
--
ALTER TABLE ONLY public.image
ADD CONSTRAINT image_foreign_identifier_key UNIQUE (foreign_identifier);
--
-- Name: image image_identifier_key; Type: CONSTRAINT; Schema: public; Owner: deploy
--
ALTER TABLE ONLY public.image
ADD CONSTRAINT image_identifier_key UNIQUE (identifier);
--
-- Name: image image_pkey; Type: CONSTRAINT; Schema: public; Owner: deploy
--
ALTER TABLE ONLY public.image
ADD CONSTRAINT image_pkey PRIMARY KEY (id);
--
-- Name: image image_url_key; Type: CONSTRAINT; Schema: public; Owner: deploy
--
ALTER TABLE ONLY public.image
ADD CONSTRAINT image_url_key UNIQUE (url);
--
-- Name: image_foreign_identifier_4c72d3ee_like; Type: INDEX; Schema: public; Owner: deploy
--
CREATE INDEX image_foreign_identifier_4c72d3ee_like ON public.image USING btree (foreign_identifier varchar_pattern_ops);
--
-- Name: image_identifier_d102a6e0_like; Type: INDEX; Schema: public; Owner: deploy
--
CREATE INDEX image_identifier_d102a6e0_like ON public.image USING btree (identifier varchar_pattern_ops);
--
-- Name: image_last_synced_with_source_187adf09; Type: INDEX; Schema: public; Owner: deploy
--
CREATE INDEX image_last_synced_with_source_187adf09 ON public.image USING btree (last_synced_with_source);
--
-- Name: image_perceptual_hash_0d126a7a; Type: INDEX; Schema: public; Owner: deploy
--
CREATE INDEX image_perceptual_hash_0d126a7a ON public.image USING btree (perceptual_hash);
--
-- Name: image_perceptual_hash_0d126a7a_like; Type: INDEX; Schema: public; Owner: deploy
--
CREATE INDEX image_perceptual_hash_0d126a7a_like ON public.image USING btree (perceptual_hash varchar_pattern_ops);
--
-- Name: image_provider_7d11f847; Type: INDEX; Schema: public; Owner: deploy
--
CREATE INDEX image_provider_7d11f847 ON public.image USING btree (provider);
--
-- Name: image_provider_7d11f847_like; Type: INDEX; Schema: public; Owner: deploy
--
CREATE INDEX image_provider_7d11f847_like ON public.image USING btree (provider varchar_pattern_ops);
--
-- Name: image_source_d5a89e97; Type: INDEX; Schema: public; Owner: deploy
--
CREATE INDEX image_source_d5a89e97 ON public.image USING btree (source);
--
-- Name: image_source_d5a89e97_like; Type: INDEX; Schema: public; Owner: deploy
--
CREATE INDEX image_source_d5a89e97_like ON public.image USING btree (source varchar_pattern_ops);
--
-- Name: image_url_c6aabda2_like; Type: INDEX; Schema: public; Owner: deploy
--
CREATE INDEX image_url_c6aabda2_like ON public.image USING btree (url varchar_pattern_ops);
--
-- PostgreSQL database dump complete
--
|
<filename>SQLServer/2008/ZGWSecurity/Stored Procedures/Delete_Entity.sql
/*
Usage:
DECLARE
@P_Security_Entity_SeqID int = 4,
@P_Debug INT = 0
exec ZGWSecurity.Delete_Function
@P_Security_Entity_SeqID ,
@P_Debug
*/
-- =============================================
-- Author: <NAME>
-- Create date: 08/08/2011
-- Description: Deletes a record from ZGWSecurity.Security_Entities
-- given the Security_Entity_SeqID
-- =============================================
CREATE PROCEDURE [ZGWSecurity].[Delete_Entity]
@P_Security_Entity_SeqID int,
@P_Debug INT = 0
AS
IF @P_Debug = 1 PRINT 'Start [ZGWSecurity].[Delete_Entity]'
DELETE FROM ZGWSecurity.Security_Entities
WHERE
Security_Entity_SeqID = @P_Security_Entity_SeqID
IF @P_Debug = 1 PRINT 'End [ZGWSecurity].[Delete_Entity]'
RETURN 0 |
-- file:rules.sql ln:738 expect:true
insert into pparent values (1,'parent1')
|
<filename>assets/phpgrid/lib/inc/adodb/session/adodb-sessions.oracle.sql
-- $CVSHeader$
DROP TABLE adodb_sessions;
CREATE TABLE sessions (
sesskey CHAR(32) DEFAULT '' NOT NULL,
expiry INT DEFAULT 0 NOT NULL,
expireref VARCHAR(64) DEFAULT '',
data VARCHAR(4000) DEFAULT '',
PRIMARY KEY (sesskey),
INDEX expiry (expiry)
);
CREATE INDEX ix_expiry ON sessions (expiry);
QUIT;
|
<filename>Code/Components/Services/skymodel/service/datamodel/Polarisation-mysql.sql
/* This file was generated by ODB, object-relational mapping (ORM)
* compiler for C++.
*/
DROP TABLE IF EXISTS `Polarisation`;
CREATE TABLE IF NOT EXISTS `schema_version` (
`name` VARCHAR(255) NOT NULL PRIMARY KEY,
`version` BIGINT UNSIGNED NOT NULL,
`migration` TINYINT(1) NOT NULL)
ENGINE=InnoDB;
DELETE FROM `schema_version`
WHERE `name` = '';
CREATE TABLE `Polarisation` (
`version` BIGINT NOT NULL,
`polarisation_component_id` BIGINT NOT NULL PRIMARY KEY AUTO_INCREMENT,
`component_id` TEXT NOT NULL,
`flux_I_median` DOUBLE NOT NULL,
`flux_Q_median` DOUBLE NOT NULL,
`flux_U_median` DOUBLE NOT NULL,
`flux_V_median` DOUBLE NOT NULL,
`rms_I` DOUBLE NOT NULL,
`rms_Q` DOUBLE NOT NULL,
`rms_U` DOUBLE NOT NULL,
`rms_V` DOUBLE NOT NULL,
`co_1` DOUBLE NOT NULL,
`co_2` DOUBLE NOT NULL,
`co_3` DOUBLE NOT NULL,
`co_4` DOUBLE NOT NULL,
`co_5` DOUBLE NOT NULL,
`lambda_ref_sq` DOUBLE NOT NULL,
`rmsf_fwhm` DOUBLE NOT NULL,
`pol_peak` DOUBLE NOT NULL,
`pol_peak_debias` DOUBLE NOT NULL,
`pol_peak_err` DOUBLE NOT NULL,
`pol_peak_fit` DOUBLE NOT NULL,
`pol_peak_fit_debias` DOUBLE NOT NULL,
`pol_peak_fit_err` DOUBLE NOT NULL,
`pol_peak_fit_snr` DOUBLE NOT NULL,
`pol_peak_fit_snr_err` DOUBLE NOT NULL,
`fd_peak` DOUBLE NOT NULL,
`fd_peak_err` DOUBLE NOT NULL,
`fd_peak_fit` DOUBLE NOT NULL,
`fd_peak_fit_err` DOUBLE NOT NULL,
`pol_ang_ref` DOUBLE NOT NULL,
`pol_ang_ref_err` DOUBLE NOT NULL,
`pol_ang_zero` DOUBLE NOT NULL,
`pol_ang_zero_err` DOUBLE NOT NULL,
`pol_frac` DOUBLE NOT NULL,
`pol_frac_err` DOUBLE NOT NULL,
`complex_1` DOUBLE NOT NULL,
`complex_2` DOUBLE NOT NULL,
`flag_p1` INT NOT NULL,
`flag_p2` INT NOT NULL,
`flag_p3` INT NOT NULL,
`flag_p4` INT NOT NULL)
ENGINE=InnoDB;
CREATE INDEX `polarisation_component_id_i`
ON `Polarisation` (`polarisation_component_id`);
INSERT IGNORE INTO `schema_version` (
`name`, `version`, `migration`)
VALUES ('', 2, 0);
|
<reponame>smith750/kc
INSERT INTO KRIM_ROLE_PERM_T (ROLE_PERM_ID, OBJ_ID, VER_NBR, ROLE_ID, PERM_ID, ACTV_IND) VALUES
(KRIM_ROLE_PERM_ID_BS_S.NEXTVAL,SYS_GUID(), 1,
(SELECT ROLE_ID FROM KRIM_ROLE_T WHERE ROLE_NM = 'Template Viewer' AND NMSPC_CD='KC-AWARD'),
(SELECT PERM_ID FROM KRIM_PERM_T WHERE NM = 'View Award Sponsor Template' AND NMSPC_CD='KC-AWARD'), 'Y')
/
|
<reponame>mfooo/wow
UPDATE sd2_db_version SET version='ScriptDev2 (for MaNGOS 10610+) ';
|
<reponame>aravi5/drill-test-framework
select variance(c_float) over w from j1 WINDOW w as ();
|
<filename>1.32.0/var/www/html/indicia/modules/summary_builder/db/version_0_1_2/201505261200_SD_columns.sql
ALTER TABLE summariser_definitions
ADD COLUMN check_for_missing BOOLEAN NOT NULL DEFAULT 'f',
ADD COLUMN max_records_per_cycle INTEGER NOT NULL DEFAULT 1000;
COMMENT ON COLUMN summariser_definitions.check_for_missing IS 'Enable checking for missed occurrences on this survey (can be switched off for performance reasons)';
COMMENT ON COLUMN summariser_definitions.max_records_per_cycle IS 'The maximum number of occurrence records processed per survey per invocation of the scheduled task.';
|
--CREATE DATABASE tracker;
CREATE TABLE roles (
id SERIAL PRIMARY KEY,
name VARCHAR(2000)
);
CREATE TABLE rules (
id SERIAL PRIMARY KEY,
rule VARCHAR(2000)
);
CREATE TABLE roles_rules_compose (
id SERIAL PRIMARY KEY,
role_id INTEGER REFERENCES roles(id),
rule_id INTEGER REFERENCES rules(id)
);
CREATE TABLE users (
id SERIAL PRIMARY KEY,
name VARCHAR(2000),
role_id INTEGER REFERENCES roles(id)
);
CREATE TABLE categories (
id SERIAL PRIMARY KEY,
name VARCHAR(2000)
);
CREATE TABLE states (
id SERIAL PRIMARY KEY,
name VARCHAR(2000)
);
CREATE TABLE items (
id SERIAL PRIMARY KEY,
user_id INTEGER REFERENCES users(id),
category_id INTEGER REFERENCES categories(id),
state_id INTEGER REFERENCES states(id),
item VARCHAR(2000)
);
CREATE TABLE comments (
id SERIAL PRIMARY KEY,
comment VARCHAR(2000),
item_id INTEGER REFERENCES items(id)
);
CREATE TABLE attachs (
id SERIAL PRIMARY KEY,
path_to_file VARCHAR(2000),
item_id INTEGER REFERENCES items(id)
);
-- Init
INSERT INTO rules(rule) VALUES ('Admin');
INSERT INTO roles(name) VALUES ('Admin');
INSERT INTO roles_rules_compose (rule_id, role_id) VALUES (1, 1);
INSERT INTO users(name, role_id) VALUES ('Eugene', 1);
INSERT INTO categories(name) VALUES ('Category1');
INSERT INTO states(name) VALUES ('State1');
INSERT INTO items(user_id, category_id, state_id, item) VALUES (1, 1, 1, 'Item1');
INSERT INTO comments (item_id, comment) VALUES (1, 'Comment1');
INSERT INTO attachs (item_id, path_to_file) VALUES (1, 'Path1');
|
CREATE TABLE config_properties (
id int(10) NOT NULL AUTO_INCREMENT,
key1 varchar(50) NOT NULL,
value1 varchar(500) DEFAULT '',
application varchar(50) NOT NULL,
profile varchar(50) NOT NULL,
label varchar(50) DEFAULT NULL,
PRIMARY KEY (id)
);
insert into config_properties(key1, value1, application, profile, label)
values('server.port', '8080', 'config-client', 'dev', 'master');
insert into config_properties(key1, value1, application, profile, label)
values('foo', 'bar-jdbc', 'config-client', 'dev', 'master');
insert into config_properties(key1, value1, application, profile, label)
values('server.port', '8090', 'mcd-config', 'test', 'master');
insert into config_properties(key1, value1, application, profile, label)
values('foo', 'bar-jms', 'mcd-config', 'test', 'master');
|
CREATE TABLE IF NOT EXISTS "users"(
"id" SERIAL primary key,
"email" VARCHAR,
"username" VARCHAR,
"name" VARCHAR,
"password" VARCHAR,
"role" INT,
"branch_id" INT,
FOREIGN KEY (branch_id) REFERENCES branches(id)
); |
delete from APP.TD_INSTRUMENT_SCD;
call syscs_util.import_table_ex('APP', 'TD_INSTRUMENT_SCD', '<path_prefix>/lib/ImportData/TD_INSTRUMENT_SCD.dat', '|', NULL, NULL, 0, 0, 2, 0, 'ImportOra', 'TD_INSTRUMENT_SCD.dat');
|
#standardSQL
# CSP on home pages: most prevalent allowed hosts
CREATE TEMPORARY FUNCTION getHeader(headers STRING, headername STRING)
RETURNS STRING
DETERMINISTIC
LANGUAGE js AS '''
const parsed_headers = JSON.parse(headers);
const matching_headers = parsed_headers.filter(h => h.name.toLowerCase() == headername.toLowerCase());
if (matching_headers.length > 0) {
return matching_headers[0].value;
}
return null;
''';
SELECT
client,
csp_allowed_host,
SUM(COUNT(DISTINCT page)) OVER (PARTITION BY client) AS total_pages,
COUNT(DISTINCT page) AS freq,
COUNT(DISTINCT page) / SUM(COUNT(DISTINCT page)) OVER (PARTITION BY client) AS pct
FROM (
SELECT
client,
page,
getHeader(JSON_EXTRACT(payload, '$.response.headers'), 'Content-Security-Policy') AS csp_header
FROM
`httparchive.almanac.requests`
WHERE
date = "2020-08-01" AND
firstHtml
),
UNNEST(REGEXP_EXTRACT_ALL(csp_header, r'(?i)(https*://[^\s;]+)[\s;]')) AS csp_allowed_host
WHERE
csp_header IS NOT NULL
GROUP BY
client,
csp_allowed_host
ORDER BY
pct DESC
LIMIT 100
|
CREATE TYPE [IQ].[IdentifierTableType] AS TABLE
(
[Id] UNIQUEIDENTIFIER NOT NULL,
PRIMARY KEY NONCLUSTERED ([Id] ASC)
)
|
# Tests for comments
DROP TABLE IF EXISTS t1;
CREATE TABLE t1(i INT) $$
-- INSERT INTO t1 VALUES(1);
# INSERT INTO t1 VALUES(1);
SELECT COUNT(*) = 0 FROM t1;
DROP TABLE t1;
|
<reponame>SKalt/pg_sql_parser_tests<gh_stars>0
a_output := a_output || $$ if v_$$ || referrer_keys.kind || $$ like '$$
|| referrer_keys.key_string || $$'
then return '$$ || referrer_keys.referrer_type
|| $$'; end if;$$;
|
--TEST: pass string type values to the second param
drop table if exists p_disc;
create table p_disc(
col1 char(20),
col2 varchar(100),
col3 char(10),
col4 string,
col5 enum('character', 'string'),
col6 varchar(10)
);
insert into p_disc values('aaaaa', 'This is a dog.', '0.5', '0.7', 'character', 3.5);
insert into p_disc values('aaaaa', 'This is a cat.', '0.5', '0.7', 'character', 1.9);
insert into p_disc values('aaaaa', 'This is a dog.', '0.5', '0.7', 'character', 2.2);
insert into p_disc values('aaaaa', 'This is a cat.', '0.5', '0.7', 'character', 1.9);
insert into p_disc values('aaaaa', 'This is a dog.', '0.5', '0.7', 'character', 3.5);
insert into p_disc values('eeeee', 'This is a cat.', '0.5', '0.7', 'character', 1.9);
insert into p_disc values('eeeee', 'This is a dog.', '0.5', '0.7', 'character', 2.2);
insert into p_disc values('eeeee', 'This is a dog.', '0.5', '0.7', 'character', 1.9);
insert into p_disc values('eeeee', 'This is a rabbit.', '0.5', '0.7', 'character', 3.5);
insert into p_disc values('ccccc', 'This is a dog.', '0.5', '0.7', 'character', 1.9);
insert into p_disc values('ccccc', 'This is a dog.', '0.5', '0.7', 'string', 1.9);
insert into p_disc values('ccccc', 'This is a rabbit.', '0.5', '0.7', 'string', 2.2);
insert into p_disc values('zzzzz', 'This is a dog.', '0.5', '0.7', 'string', 1.9);
insert into p_disc values('bbbbb', 'This is a dog.', '0.5', '0.7', 'string', 1.9);
insert into p_disc values('bbbbb', 'This is a cat.', '0.5', '0.7', 'string', 1.9);
insert into p_disc values('bbbbb', 'This is a dog.', '0.5', '0.7', 'string', 2.2);
insert into p_disc values('bbbbb', 'This is a dog.', '0.5', '0.7', 'string', 1.9);
insert into p_disc values('bbbbb', 'This is a rabbit.', '0.5', '0.7', 'string', 1.9);
insert into p_disc values('bbbbb', 'This is a dog.', '0.5', '0.7', 'string', 1.9);
insert into p_disc values('bbbbb', 'This is a dog.', '0.5', '0.7', 'string', 3.5);
--test: pass constant numeric string values to the second param
select col2, percentile_disc(0.5) within group(order by '1') p_disc from p_disc group by col2 order by 1, 2;
select col2, col3, percentile_disc(0.8) within group(order by '2') p_disc from p_disc group by col2 order by 1, 2;
select col2, percentile_disc('0.5') within group(order by '3') p_disc from p_disc group by col2 order by 1, 2;
select col2, percentile_disc('0.5') within group(order by '0.8') p_disc from p_disc group by col2 order by 1, 2;
select col2, percentile_disc(0.8) within group(order by '100') p_disc from p_disc group by col2 order by 1, 2;
select col2, percentile_disc(0.4) within group(order by '-2') p_disc from p_disc group by col2 order by 1, 2;
--test: pass constant character string values to the second param
select col2, percentile_disc(0.1) within group(order by 'abc') p_disc from p_disc group by col2 order by 1, 2;
select col2, percentile_disc(0.9) within group(order by 'This is a dog') p_disc from p_disc group by col2 order by 1, 2;
--test: pass character string type columns to the second param
select col2, percentile_disc(0.1) within group(order by col1) p_disc from p_disc group by col2 order by 1, 2;
select col2, percentile_disc(0.2) within group(order by col2) p_disc from p_disc group by col2 order by 1, 2;
select col2, percentile_disc(0.3) within group(order by col3) p_disc from p_disc group by col2 order by 1, 2;
select col2, percentile_disc(0.4) within group(order by col4) p_disc from p_disc group by col2 order by 1, 2;
select col2, percentile_disc(0.5) within group(order by col5) p_disc from p_disc group by col2 order by 1, 2;
select col2, percentile_disc(0.6) within group(order by col6) p_disc from p_disc group by col2 order by 1, 2;
--test: [er] pass more than 1 columns to the second param
select col2, percentile_disc(0.1) within group(order by col1, col3) from p_disc group by col2 order by 1, 2;
select col2, percentile_disc(0.1) within group(order by col5, col4, col3) from p_disc group by col2 order by 1, 2;
select col2, col3, col4, col5, percentile_disc(0.5) within group(order by 4, 3, 2, 1) from p_disc group by col2, col3, col4, col5 order by 1, 2;
drop table p_disc;
|
<filename>null.sql
-- List the teachers who have NULL for their department.
SELECT name
FROM teacher
WHERE dept IS NULL
-- Note the INNER JOIN misses the teachers with no department and the departments with no teacher.
SELECT teacher.name, dept.name
FROM teacher INNER JOIN dept
ON (teacher.dept=dept.id)
-- Use a different JOIN so that all teachers are listed
SELECT teacher.name, dept.name
FROM teacher LEFT OUTER JOIN dept
ON (teacher.dept=dept.id)
-- Use a different JOIN so that all departments are listed
SELECT teacher.name, dept.name
FROM teacher RIGHT OUTER JOIN dept
ON (teacher.dept=dept.id)
-- Use COALESCE to print the mobile number
SELECT name,COALESCE(mobile,'07986 444 2266') AS numb
FROM teacher
-- Use the COALESCE function and a LEFT JOIN to print the teacher name and department name. Use the string 'None' where there is no department.
SELECT teacher.name,COALESCE(dept.name,'None')
FROM teacher LEFT OUTER JOIN dept ON (dept.id=teacher.dept)
-- Use COUNT to show the number of teachers and the number of mobile phones.
SELECT COUNT(teacher.name),COUNT(teacher.mobile)
FROM teacher
-- Use COUNT and GROUP BY dept.name to show each department and the number of staff.
SELECT dept.name,COUNT(teacher.name)
FROM teacher RIGHT OUTER JOIN dept ON (dept.id=teacher.dept)
GROUP BY dept.name
-- Use CASE to show the name of each teacher followed by 'Sci' if the teacher is in dept 1 or 2 and 'Art' otherwise.
SELECT name,
CASE WHEN dept=1 OR dept=2 THEN 'Sci' ELSE 'Art' END AS dept
FROM teacher
-- Use CASE to show the name of each teacher followed by 'Sci' if the teacher is in dept 1 or 2, show 'Art' if the teacher's dept is 3 and 'None' otherwise.
SELECT name,
CASE WHEN dept=1 OR dept=2 THEN 'Sci'
WHEN dept = 3 THEN 'Art' ELSE 'None' END AS dept
FROM teacher
|
<reponame>webvaloa/webvaloa
-- phpMyAdmin SQL Dump
-- version 3.4.11.1deb2+deb7u1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Sep 04, 2014 at 08:19 PM
-- Server version: 5.5.38
-- PHP Version: 5.4.4-14+deb7u14
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: `vanillavaloa`
--
-- --------------------------------------------------------
--
-- Table structure for table `alias`
--
CREATE TABLE IF NOT EXISTS `alias` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`alias` varchar(32) NOT NULL COMMENT 'Alias for controller',
`controller` varchar(32) NOT NULL COMMENT 'Controller name',
`method` varchar(32) DEFAULT NULL COMMENT 'Method in controller (optional)',
`locale` varchar(6) NOT NULL DEFAULT 'en_US' COMMENT 'Locale for this alias. en_US aliases work with all other languages too.',
PRIMARY KEY (`id`),
KEY `alias` (`alias`,`controller`,`method`),
KEY `locale` (`locale`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='URL aliases' AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `category`
--
CREATE TABLE IF NOT EXISTS `category` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`parent_id` int(11) DEFAULT NULL,
`category` varchar(48) NOT NULL,
`deleted` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `parent_id` (`parent_id`,`category`,`deleted`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Categories' AUTO_INCREMENT=2 ;
ALTER TABLE `category` ADD `layout` VARCHAR( 64 ) NULL DEFAULT NULL AFTER `category` ;
ALTER TABLE `category` ADD `layout_list` VARCHAR( 64 ) NULL DEFAULT NULL AFTER `layout` ;
ALTER TABLE `category` ADD `template` VARCHAR( 64 ) NULL AFTER `category` ;
--
-- Dumping data for table `category`
--
INSERT INTO `category` (`id`, `parent_id`, `category`, `deleted`) VALUES
(1, NULL, 'Uncategorized', 0);
-- --------------------------------------------------------
--
-- Table structure for table `category_field_group`
--
CREATE TABLE IF NOT EXISTS `category_field_group` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`field_group_id` int(11) NOT NULL,
`category_id` int(11) NOT NULL,
`recursive` tinyint(1) NOT NULL,
PRIMARY KEY (`id`),
KEY `field_group_id` (`field_group_id`,`category_id`,`recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `category_field_group`
--
INSERT INTO `category_field_group` (`id`, `field_group_id`, `category_id`, `recursive`) VALUES
(1, 1, 1, 0);
-- --------------------------------------------------------
--
-- Table structure for table `category_tag`
--
CREATE TABLE IF NOT EXISTS `category_tag` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`category_id` int(11) NOT NULL,
`tag_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `content_id` (`category_id`,`tag_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Links tags to content' AUTO_INCREMENT=2 ;
--
-- Dumping data for table `category_tag`
--
INSERT INTO `category_tag` (`id`, `category_id`, `tag_id`) VALUES
(1, 1, 1);
-- --------------------------------------------------------
--
-- Table structure for table `component`
--
CREATE TABLE IF NOT EXISTS `component` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`controller` varchar(32) NOT NULL COMMENT 'Controller name',
`system_component` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'System components cannot be directly edited or deleted.',
`blocked` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Blocked disables the component',
PRIMARY KEY (`id`),
UNIQUE KEY `controller` (`controller`),
KEY `system_component` (`system_component`,`blocked`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Components' AUTO_INCREMENT=7 ;
-- --------------------------------------------------------
--
-- Table structure for table `component_role`
--
CREATE TABLE IF NOT EXISTS `component_role` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`component_id` int(11) NOT NULL COMMENT 'Component ID',
`role_id` int(11) NOT NULL COMMENT 'Role ID',
PRIMARY KEY (`id`),
KEY `component_id` (`component_id`,`role_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Links components to roles' AUTO_INCREMENT=7 ;
-- --------------------------------------------------------
--
-- Table structure for table `configuration`
--
CREATE TABLE IF NOT EXISTS `configuration` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`component_id` int(11) DEFAULT NULL,
`type` enum('int','select','checkbox','text') NOT NULL DEFAULT 'text',
`key` varchar(48) NOT NULL,
`value` varchar(255) NOT NULL,
`values` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `type` (`type`),
KEY `component` (`component_id`),
KEY `values` (`values`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;
--
-- Dumping data for table `configuration`
--
INSERT INTO `configuration` (`id`, `component_id`, `type`, `key`, `value`, `values`) VALUES
(1, NULL, 'select', 'webvaloa_fixed_administrator_bar', 'yes', 'yes,no'),
(2, NULL, 'select', 'webvaloa_hide_developer_tools', 'no', 'yes,no'),
(3, NULL, 'text', 'webmaster_email', '', NULL),
(4, NULL, 'text', 'sitename', '', NULL),
(5, NULL, 'text', 'webvaloa_branding', 'webvaloa-logo.png', NULL),
(7, NULL, 'select', 'template', 'default', 'default'),
(6, NULL, 'select', 'template_backend', 'no', 'yes,no');
-- --------------------------------------------------------
--
-- Table structure for table `content`
--
CREATE TABLE IF NOT EXISTS `content` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Content ID',
`title` varchar(128) DEFAULT NULL,
`publish_up` datetime NOT NULL COMMENT 'Start publishing at this time',
`publish_down` datetime NOT NULL COMMENT 'Stop publishing at this time',
`published` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Is this article published or not?',
`associated_content_id` int(11) DEFAULT NULL,
`user_id` int(11) NOT NULL COMMENT 'User ID of content creator',
`locale` varchar(6) NOT NULL DEFAULT '*',
PRIMARY KEY (`id`),
KEY `id` (`id`,`publish_up`,`publish_down`,`published`,`user_id`),
KEY `associated_content_id` (`associated_content_id`),
KEY `title` (`title`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Content' AUTO_INCREMENT=1 ;
ALTER TABLE `content` ADD `alias` VARCHAR( 64 ) NULL DEFAULT NULL AFTER `title` ,
ADD INDEX ( `alias` ) ;
-- --------------------------------------------------------
--
-- Table structure for table `content_category`
--
CREATE TABLE IF NOT EXISTS `content_category` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`content_id` int(11) NOT NULL,
`category_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `content_id` (`content_id`,`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Link content to categories' AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `content_field_value`
--
CREATE TABLE IF NOT EXISTS `content_field_value` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`content_id` int(11) NOT NULL,
`field_id` int(11) NOT NULL,
`value` text NOT NULL,
`locale` varchar(6) NOT NULL DEFAULT '*',
`ordering` int(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `content_id` (`content_id`,`field_id`),
KEY `locale` (`locale`),
KEY `ordering` (`ordering`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `content_tag`
--
CREATE TABLE IF NOT EXISTS `content_tag` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`content_id` int(11) NOT NULL,
`tag_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `content_id` (`content_id`,`tag_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Links tags to content' AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `field`
--
CREATE TABLE IF NOT EXISTS `field` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`field_group_id` int(11) NOT NULL,
`name` varchar(32) NOT NULL,
`translation` varchar(64) NOT NULL,
`repeatable` tinyint(1) NOT NULL DEFAULT '0',
`type` varchar(64) NOT NULL DEFAULT 'text',
`ordering` int(3) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `field_group_id` (`field_group_id`,`name`),
KEY `type` (`type`),
KEY `field_translation` (`translation`),
KEY `repeatable` (`repeatable`),
KEY `ordering` (`ordering`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Extra fields' AUTO_INCREMENT=2 ;
ALTER TABLE `field` ADD `settings` TEXT NULL AFTER `type`;
ALTER TABLE `field` ADD `help_text` TEXT NULL AFTER `settings`;
--
-- Dumping data for table `field`
--
INSERT INTO `field` (`id`, `field_group_id`, `name`, `translation`, `repeatable`, `type`, `ordering`) VALUES
(1, 1, 'content', 'Content', 0, 'Wysiwyg', 0);
-- --------------------------------------------------------
--
-- Table structure for table `field_group`
--
CREATE TABLE IF NOT EXISTS `field_group` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(32) NOT NULL,
`translation` varchar(64) NOT NULL,
`repeatable` tinyint(1) NOT NULL DEFAULT '0',
`global` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `field_group` (`name`),
KEY `group_translation` (`translation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Field groups' AUTO_INCREMENT=2 ;
--
-- Dumping data for table `field_group`
--
INSERT INTO `field_group` (`id`, `name`, `translation`, `repeatable`, `global`) VALUES
(1, 'uncategorized', 'Uncategorized', 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `plugin`
--
CREATE TABLE IF NOT EXISTS `plugin` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`plugin` varchar(32) NOT NULL COMMENT 'Plugin name',
`system_plugin` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'System plugins cannot be directly edited or deleted.',
`blocked` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Blocked disables the plugin',
`ordering` int(3) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `plugin` (`plugin`),
KEY `system_plugin` (`system_plugin`,`blocked`,`ordering`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Plugins' AUTO_INCREMENT=3 ;
-- --------------------------------------------------------
--
-- Table structure for table `role`
--
CREATE TABLE IF NOT EXISTS `role` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Role ID',
`role` varchar(64) NOT NULL COMMENT 'Role (group) name',
`system_role` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'System role 0 or 1. System roles cannot be directly edited or deleted',
`parent_of` int(11) DEFAULT NULL COMMENT 'ID of parent role',
`meta` text COMMENT 'JSON metadata',
PRIMARY KEY (`id`),
UNIQUE KEY `role` (`role`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Roles (groups)' AUTO_INCREMENT=4 ;
--
-- Dumping data for table `role`
--
INSERT INTO `role` (`id`, `role`, `system_role`, `parent_of`, `meta`) VALUES
(1, 'Administrator', 1, NULL, NULL),
(2, 'Registered', 1, NULL, NULL),
(3, 'Public', 1, NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `structure`
--
CREATE TABLE IF NOT EXISTS `structure` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`parent_id` int(11) DEFAULT NULL,
`type` enum('content_listing','content','component','alias','url') NOT NULL,
`target_id` int(11) DEFAULT NULL,
`target_url` varchar(512) DEFAULT NULL,
`translation` varchar(512) NOT NULL,
`locale` varchar(6) NOT NULL DEFAULT '*',
`ordering` int(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `id` (`id`,`parent_id`,`type`,`target_id`,`locale`),
KEY `translation` (`translation`),
KEY `ordering` (`ordering`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Site structure' AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `structure_tag`
--
CREATE TABLE IF NOT EXISTS `structure_tag` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`structure_id` int(11) NOT NULL,
`tag_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `content_id` (`structure_id`,`tag_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Links tags to content' AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `tag`
--
CREATE TABLE IF NOT EXISTS `tag` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`parent_id` int(11) DEFAULT NULL,
`tag` varchar(32) NOT NULL,
PRIMARY KEY (`id`),
KEY `tag` (`tag`),
KEY `parent_id` (`parent_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tags' AUTO_INCREMENT=2 ;
--
-- Dumping data for table `tag`
--
INSERT INTO `tag` (`id`, `parent_id`, `tag`) VALUES
(1, NULL, 'Starred');
-- --------------------------------------------------------
--
-- Table structure for table `user`
--
CREATE TABLE IF NOT EXISTS `user` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'User ID',
`login` varchar(48) NOT NULL,
`email` varchar(48) NOT NULL COMMENT 'Email / Username',
`password` varchar(128) DEFAULT NULL,
`firstname` varchar(32) DEFAULT NULL COMMENT 'Firstname',
`lastname` varchar(32) DEFAULT NULL COMMENT 'Lastname',
`blocked` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Block account',
`locale` varchar(6) NOT NULL DEFAULT '*',
`meta` text COMMENT 'JSON metadata',
`created` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Created',
`last_modified` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT 'Last modified',
PRIMARY KEY (`id`),
UNIQUE KEY `login` (`login`),
KEY `firstname` (`firstname`,`lastname`),
KEY `email` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Users' AUTO_INCREMENT=2 ;
-- --------------------------------------------------------
--
-- Table structure for table `user_role`
--
CREATE TABLE IF NOT EXISTS `user_role` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL COMMENT 'User ID',
`role_id` int(11) NOT NULL COMMENT 'Role ID',
PRIMARY KEY (`id`),
KEY `user_id` (`user_id`,`role_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Links roles to users' AUTO_INCREMENT=2 ;
-- --------------------------------------------------------
--
-- Table structure for table `user_sso`
--
CREATE TABLE IF NOT EXISTS `user_sso` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`service` varchar(64) NOT NULL,
`ext_user_id` varchar(128) NOT NULL,
`ext_auth_url` varchar(255) DEFAULT NULL,
`meta` text,
PRIMARY KEY (`id`),
KEY `user_id` (`user_id`,`service`,`ext_user_id`,`ext_auth_url`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='External Single Sign on information for users' AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `version_history`
--
CREATE TABLE IF NOT EXISTS `version_history` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`target_table` varchar(32) NOT NULL COMMENT 'Target table',
`target_id` int(11) NOT NULL COMMENT 'Target id',
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Revision timestamp',
`content` longtext NOT NULL COMMENT 'Old revision as JSON',
`user_id` int(11) NOT NULL COMMENT 'Created by user id',
PRIMARY KEY (`id`),
KEY `target_table` (`target_table`,`target_id`,`created`,`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Version history' AUTO_INCREMENT=1 ;
/*!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 */;
/* 1.0.2 schema update */
ALTER TABLE `structure`
ADD `alias` varchar(128) NOT NULL AFTER `id`,
ADD INDEX ( `alias` ) ;
/* 1.0.3 schema update */
CREATE TABLE IF NOT EXISTS `media` (
`id` int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
`filename` varchar(255) NOT NULL,
`alt` varchar(255) NULL,
`title` varchar(255) NULL,
`meta` text NULL
) ENGINE='InnoDB' COLLATE 'utf8_general_ci';
CREATE TABLE IF NOT EXISTS `category_role` (
`id` int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
`category_id` int(11) NOT NULL,
`role_id` int(11) NOT NULL,
FOREIGN KEY (`category_id`) REFERENCES `category` (`id`),
FOREIGN KEY (`role_id`) REFERENCES `role` (`id`)
) ENGINE='InnoDB' COLLATE 'utf8_general_ci';
ALTER TABLE `category`
ADD `apply_permissions` tinyint(1) NOT NULL DEFAULT '0' AFTER `layout_list`;
|
\COPY Product_Categories FROM 'Product_Categories.csv' WITH DELIMITER ',' NULL '' CSV
\COPY Users FROM 'Users.csv' WITH DELIMITER ',' NULL '' CSV
SELECT pg_catalog.setval('public.users_id_seq', 1000, false);
\COPY Sellers FROM 'Sellers.csv' WITH DELIMITER ',' NULL '' CSV
\COPY Products FROM 'Products.csv' WITH DELIMITER ',' NULL '' CSV
\COPY Orders FROM 'Orders.csv' WITH DELIMITER ',' NULL '' CSV
\COPY Inventory FROM 'Inventory.csv' WITH DELIMITER ',' NULL '' CSV
\COPY Seller_ratings FROM 'Seller_Ratings.csv' WITH DELIMITER ',' NULL '' CSV
\COPY Product_ratings FROM 'Product_Ratings.csv' WITH DELIMITER ',' NULL '' CSV
\COPY Items_ordered FROM 'Items_Ordered.csv' WITH DELIMITER ',' NULL '' CSV
\COPY Cart FROM 'Cart.csv' WITH DELIMITER ',' NULL '' CSV |
CREATE DATABASE IF NOT EXISTS `fridge_tracker` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci */ /*!80016 DEFAULT ENCRYPTION='N' */;
USE `fridge_tracker`;
-- MySQL dump 10.13 Distrib 8.0.19, for macos10.15 (x86_64)
--
-- Host: localhost Database: fridge_tracker
-- ------------------------------------------------------
-- Server version 8.0.19
/*!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 */;
/*!50503 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 `favorite_recipes`
--
DROP TABLE IF EXISTS `favorite_recipes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `favorite_recipes` (
`recipe_id` int NOT NULL,
`user_id` varchar(255) NOT NULL,
PRIMARY KEY (`recipe_id`,`user_id`),
KEY `userid_fk` (`user_id`),
CONSTRAINT `recipeid_fk` FOREIGN KEY (`recipe_id`) REFERENCES `recipes` (`recipe_id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `userid_fk` FOREIGN KEY (`user_id`) REFERENCES `recipes` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `favorite_recipes`
--
LOCK TABLES `favorite_recipes` WRITE;
/*!40000 ALTER TABLE `favorite_recipes` DISABLE KEYS */;
INSERT INTO `favorite_recipes` VALUES (2,'clairesaffitz'),(4,'mollybaz'),(3,'stanleyliu');
/*!40000 ALTER TABLE `favorite_recipes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ingredients`
--
DROP TABLE IF EXISTS `ingredients`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ingredients` (
`ingredient_id` int NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`expiration_time_days` int NOT NULL,
PRIMARY KEY (`ingredient_id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ingredients`
--
LOCK TABLES `ingredients` WRITE;
/*!40000 ALTER TABLE `ingredients` DISABLE KEYS */;
INSERT INTO `ingredients` VALUES (1,'olive oil',1095),(2,'butter',180),(3,'pasta',730),(4,'parsley',7),(5,'lemon',21),(6,'red chili flakes',730),(7,'garlic',21),(8,'salt',1825),(9,'black pepper',1095),(10,'rice',1460),(11,'vegetable oil',365),(12,'peas',7),(13,'green onion',7);
/*!40000 ALTER TABLE `ingredients` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `recipe_ingredients`
--
DROP TABLE IF EXISTS `recipe_ingredients`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `recipe_ingredients` (
`ingredient_id` int NOT NULL,
`recipe_id` int NOT NULL,
`amount` int NOT NULL,
PRIMARY KEY (`ingredient_id`,`recipe_id`),
KEY `recipe_fk` (`recipe_id`),
CONSTRAINT `ingredient_fk` FOREIGN KEY (`ingredient_id`) REFERENCES `ingredients` (`ingredient_id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `recipe_fk` FOREIGN KEY (`recipe_id`) REFERENCES `recipes` (`recipe_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `recipe_ingredients`
--
LOCK TABLES `recipe_ingredients` WRITE;
/*!40000 ALTER TABLE `recipe_ingredients` DISABLE KEYS */;
INSERT INTO `recipe_ingredients` VALUES (1,1,10),(1,2,10),(2,3,1),(3,1,1),(3,2,1),(3,3,1),(4,1,1),(4,2,1),(5,1,1),(5,2,1),(6,1,5),(6,2,5),(7,1,3),(7,2,3),(8,1,1),(8,2,1),(9,1,1),(9,2,1),(10,4,1),(10,5,1),(10,6,1),(11,4,10),(12,4,1),(13,4,1);
/*!40000 ALTER TABLE `recipe_ingredients` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `recipes`
--
DROP TABLE IF EXISTS `recipes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `recipes` (
`recipe_id` int NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`description` varchar(255) DEFAULT NULL,
`preparation_time` int DEFAULT NULL,
`user_id` varchar(255) NOT NULL,
PRIMARY KEY (`recipe_id`),
KEY `user_fk` (`user_id`),
CONSTRAINT `user_fk` FOREIGN KEY (`user_id`) REFERENCES `users` (`username`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `recipes`
--
LOCK TABLES `recipes` WRITE;
/*!40000 ALTER TABLE `recipes` DISABLE KEYS */;
INSERT INTO `recipes` VALUES (1,'pasta aglio e olio','simple pasta dish',20,'stanleyliu'),(2,'pasta aglio e olio','simple pasta dish',20,'clairesaffitz'),(3,'butter pasta','butter and pasta',10,'stanleyliu'),(4,'fried rice','basic fried rice',25,'mollybaz'),(5,'white rice','just rice',15,'bradleone'),(6,'white rice','just rice',15,'mollybaz');
/*!40000 ALTER TABLE `recipes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `user_ingredients`
--
DROP TABLE IF EXISTS `user_ingredients`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_ingredients` (
`username` varchar(255) NOT NULL,
`ingredient_id` int NOT NULL,
`quantity` int NOT NULL,
`expiration_date` date NOT NULL,
PRIMARY KEY (`username`,`ingredient_id`),
KEY `ingredientid_fk` (`ingredient_id`),
CONSTRAINT `ingredientid_fk` FOREIGN KEY (`ingredient_id`) REFERENCES `ingredients` (`ingredient_id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `username_fk` FOREIGN KEY (`username`) REFERENCES `users` (`username`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `user_ingredients`
--
LOCK TABLES `user_ingredients` WRITE;
/*!40000 ALTER TABLE `user_ingredients` DISABLE KEYS */;
INSERT INTO `user_ingredients` VALUES ('bradleone',10,100,'2030-02-02'),('clairesaffitz',1,100,'2025-01-01'),('clairesaffitz',2,4,'2020-04-22'),('clairesaffitz',3,2,'2022-02-02'),('clairesaffitz',4,1,'2020-04-20'),('clairesaffitz',5,2,'2020-04-30'),('clairesaffitz',6,100,'2022-02-02'),('clairesaffitz',7,5,'2022-04-27'),('clairesaffitz',8,100,'2026-02-03'),('clairesaffitz',9,100,'2025-12-31'),('milesbarker',1,100,'2025-01-01'),('milesbarker',6,100,'2022-02-02'),('milesbarker',7,5,'2022-04-27'),('milesbarker',8,100,'2026-02-03'),('milesbarker',9,100,'2025-12-31'),('mollybaz',10,100,'2030-02-02'),('mollybaz',11,100,'2021-02-04'),('mollybaz',12,4,'2020-04-21'),('mollybaz',13,4,'2020-04-21'),('stanleyliu',1,100,'2025-01-01'),('stanleyliu',2,4,'2020-04-22'),('stanleyliu',3,2,'2022-02-02'),('stanleyliu',4,1,'2020-04-20'),('stanleyliu',5,2,'2020-04-30'),('stanleyliu',6,100,'2022-02-02'),('stanleyliu',7,5,'2022-04-27'),('stanleyliu',8,100,'2026-02-03'),('stanleyliu',9,100,'2025-12-31');
/*!40000 ALTER TABLE `user_ingredients` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `users` (
`username` varchar(255) NOT NULL,
`password` varchar(255) NOT NULL,
PRIMARY KEY (`username`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `users`
--
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES ('andybaraghani','<PASSWORD>'),('bradleone','bradrocks23'),('clairesaffitz','downwithbrad'),('gordonramsay','whereisthelambsauce'),('milesbarker','<PASSWORD>'),('mollybaz','<PASSWORD>'),('stanleyliu','password');
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping routines for database 'fridge_tracker'
--
/*!50003 DROP PROCEDURE IF EXISTS `makeable_recipes` */;
/*!50003 SET @saved_cs_client = @@character_set_client */ ;
/*!50003 SET @saved_cs_results = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client = utf8mb4 */ ;
/*!50003 SET character_set_results = utf8mb4 */ ;
/*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ;
/*!50003 SET @saved_sql_mode = @@sql_mode */ ;
/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ;
DELIMITER ;;
CREATE DEFINER=`root`@`localhost` PROCEDURE `makeable_recipes`(input_username VARCHAR(255))
BEGIN
SELECT * FROM recipes
WHERE recipe_id IN
(SELECT recipe_id FROM
(SELECT num_ingredient_query.recipe_id, num_ingredients, num_ingredients_can_make FROM
(SELECT recipe_id, COUNT(ingredient_id) as "num_ingredients" FROM
(SELECT u.username, u.recipe_id, u.name, u.description, u.preparation_time, u.ingredient_id, u.amount, user_ingredients.quantity, user_ingredients.quantity >= u.amount as "can_make" FROM
(SELECT username, recipe_id, name, description, preparation_time, ingredient_id, amount FROM users NATURAL JOIN
(SELECT * FROM recipes NATURAL JOIN recipe_ingredients WHERE user_id = input_username) AS user_recipe_ingredients
WHERE username = input_username
GROUP BY ingredient_id, username, recipe_id) AS u
LEFT JOIN user_ingredients ON user_ingredients.ingredient_id = u.ingredient_id
WHERE user_ingredients.username = u.username
UNION
SELECT u.username, u.recipe_id, u.name, u.description, u.preparation_time, u.ingredient_id, u.amount, 0 as "quantity", 0 as "can_make" FROM
(SELECT username, recipe_id, name, description, preparation_time, ingredient_id, amount FROM users NATURAL JOIN
(SELECT * FROM recipes NATURAL JOIN recipe_ingredients WHERE user_id = input_username) AS user_recipe_ingredients
WHERE username = input_username
GROUP BY ingredient_id, username, recipe_id) AS u
WHERE u.ingredient_id NOT IN (SELECT ingredient_id FROM user_ingredients WHERE username = input_username)) AS results
GROUP BY recipe_id) as num_ingredient_query
JOIN
(SELECT recipe_id, SUM(can_make) as "num_ingredients_can_make" FROM
(SELECT u.username, u.recipe_id, u.name, u.description, u.preparation_time, u.ingredient_id, u.amount, user_ingredients.quantity, user_ingredients.quantity >= u.amount as "can_make" FROM
(SELECT username, recipe_id, name, description, preparation_time, ingredient_id, amount FROM users NATURAL JOIN
(SELECT * FROM recipes NATURAL JOIN recipe_ingredients WHERE user_id = input_username) AS user_recipe_ingredients
WHERE username = input_username
GROUP BY ingredient_id, username, recipe_id) AS u
LEFT JOIN user_ingredients ON user_ingredients.ingredient_id = u.ingredient_id
WHERE user_ingredients.username = u.username
UNION
SELECT u.username, u.recipe_id, u.name, u.description, u.preparation_time, u.ingredient_id, u.amount, 0 as "quantity", 0 as "can_make" FROM
(SELECT username, recipe_id, name, description, preparation_time, ingredient_id, amount FROM users NATURAL JOIN
(SELECT * FROM recipes NATURAL JOIN recipe_ingredients WHERE user_id = input_username) AS user_recipe_ingredients
WHERE username = input_username
GROUP BY ingredient_id, username, recipe_id) AS u
WHERE u.ingredient_id NOT IN (SELECT ingredient_id FROM user_ingredients WHERE username = input_username)) AS results
GROUP BY recipe_id) as num_can_make_query
ON num_ingredient_query.recipe_id = num_can_make_query.recipe_id) AS lastquery
WHERE num_ingredients_can_make = num_ingredients);
END ;;
DELIMITER ;
/*!50003 SET sql_mode = @saved_sql_mode */ ;
/*!50003 SET character_set_client = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection = @saved_col_connection */ ;
/*!50003 DROP PROCEDURE IF EXISTS `recipes_ingredient_list` */;
/*!50003 SET @saved_cs_client = @@character_set_client */ ;
/*!50003 SET @saved_cs_results = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client = utf8mb4 */ ;
/*!50003 SET character_set_results = utf8mb4 */ ;
/*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ;
/*!50003 SET @saved_sql_mode = @@sql_mode */ ;
/*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ;
DELIMITER ;;
CREATE DEFINER=`root`@`localhost` PROCEDURE `recipes_ingredient_list`(input_recipe_id INT)
BEGIN
SELECT ingredients.name, recipe_ingredients.ingredient_id, recipe_ingredients.recipe_id, recipe_ingredients.amount FROM ingredients NATURAL JOIN recipe_ingredients
WHERE recipe_id = input_recipe_id;
END ;;
DELIMITER ;
/*!50003 SET sql_mode = @saved_sql_mode */ ;
/*!50003 SET character_set_client = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection = @saved_col_connection */ ;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2020-04-14 22:28:31
|
INSERT INTO w209."iZone" ("Zone", "Context") VALUES ('801','Canada');
INSERT INTO w209."iZone" ("Zone", "Context") VALUES ('802','Mexico');
INSERT INTO w209."iZone" ("Zone", "Context") VALUES ('803','Rest of Americas');
INSERT INTO w209."iZone" ("Zone", "Context") VALUES ('804','Europe');
INSERT INTO w209."iZone" ("Zone", "Context") VALUES ('805','Africa');
INSERT INTO w209."iZone" ("Zone", "Context") VALUES ('806','SW & Central Asia');
INSERT INTO w209."iZone" ("Zone", "Context") VALUES ('807','Eastern Asia');
INSERT INTO w209."iZone" ("Zone", "Context") VALUES ('808','SE Asia & Oceania');
|
/*
You will need to set related configuration values in the
arcsql_user_setting package or the arcsql_config table.
Review arcsql_default_setting package to see which values need to be set.
*/
whenever sqlerror exit failure;
-- set echo on
exec arcsql.set_app_version('sendgrid', .01);
@sendgrid_pkgh.sql
@sendgrid_pkgb.sql
exec arcsql.confirm_app_version('sendgrid');
|
<reponame>morontt/zend-blog-3-backend
CREATE VIEW `v_comments` AS
SELECT
c.id,
c.parent_id,
c.post_id,
IF (c.user_id IS NULL, c.commentator_id, 10000000 + c.user_id) AS uid,
IF (c.user_id IS NULL, t.name, u.username) AS username,
IF (c.user_id IS NULL, t.mail, u.mail) AS mail,
t.website,
c.text,
c.ip_addr,
gci.city,
gci.region,
gco.country_name,
IF (c.user_id IS NULL, t.email_hash, u.email_hash) AS email_hash,
c.disqus_id,
c.deleted,
c.time_created
FROM comments AS c
LEFT JOIN geo_location AS gl ON c.geo_location_id = gl.id
LEFT JOIN geo_location_city AS gci ON gl.city_id = gci.id
LEFT JOIN geo_location_country AS gco ON gci.country_id = gco.id
LEFT JOIN commentators AS t ON c.commentator_id = t.id
LEFT JOIN users AS u ON c.user_id = u.id
|
-- SLOW QUERY!
-- compute and resets all the basic counters for a queue metrics
DROP FUNCTION IF EXISTS fetchq_metric_reset(CHARACTER VARYING);
CREATE OR REPLACE FUNCTION fetchq_metric_reset (
PAR_queue VARCHAR,
OUT cnt INTEGER,
OUT pln INTEGER,
OUT pnd INTEGER,
OUT act INTEGER,
OUT cpl INTEGER,
OUT kll INTEGER
) AS
$BODY$
DECLARE
VAR_res RECORD;
BEGIN
SELECT * INTO VAR_res FROM fetchq_metric_compute(PAR_queue);
PERFORM fetchq_metric_set(PAR_queue, 'cnt', VAR_res.cnt);
PERFORM fetchq_metric_set(PAR_queue, 'pln', VAR_res.pln);
PERFORM fetchq_metric_set(PAR_queue, 'pnd', VAR_res.pnd);
PERFORM fetchq_metric_set(PAR_queue, 'act', VAR_res.act);
PERFORM fetchq_metric_set(PAR_queue, 'cpl', VAR_res.cpl);
PERFORM fetchq_metric_set(PAR_queue, 'kll', VAR_res.kll);
-- forward data out
cnt = VAR_res.cnt;
pln = VAR_res.pln;
pnd = VAR_res.pnd;
act = VAR_res.act;
cpl = VAR_res.cpl;
kll = VAR_res.kll;
END;
$BODY$
LANGUAGE plpgsql;
|
<reponame>Dans-labs/shebanq
REVOKE SELECT ON `shebanq\_etcbc%`.* FROM 'shebanq'@'localhost';
REVOKE SELECT ON `shebanq\_passage%`.* FROM 'shebanq'@'localhost';
REVOKE SELECT, INSERT, UPDATE, DELETE, CREATE, ALTER ON shebanq_web.* FROM 'shebanq'@'localhost';
REVOKE SELECT, INSERT, UPDATE, DELETE, CREATE, ALTER ON shebanq_note.* FROM 'shebanq'@'localhost';
REVOKE USAGE ON *.* FROM 'shebanq_admin'@'localhost';
REVOKE ALL PRIVILEGES ON `shebanq%`.* FROM 'shebanq_admin'@'localhost';
FLUSH PRIVILEGES;
DROP USER shebanq@localhost;
DROP USER shebanq_admin@localhost;
|
<filename>src/test/resources/sql/insert/e8e35353.sql
-- file:numeric.sql ln:359 expect:true
INSERT INTO num_exp_div VALUES (8,3,'17373.78190255220417633410')
|
{#
# pgAdmin 4 - PostgreSQL Tools
#
# Copyright (C) 2013 - 2017, The pgAdmin Development Team
# This software is released under the PostgreSQL Licence
#}
{% if scid %}
SELECT
cl.oid as oid,
relname as name,
nsp.nspname as schema,
pg_get_userbyid(relowner) AS seqowner,
description as comment,
array_to_string(relacl::text[], ', ') as acl,
(SELECT array_agg(provider || '=' || label) FROM pg_seclabels sl1 WHERE sl1.objoid=cl.oid) AS securities
FROM pg_class cl
LEFT OUTER JOIN pg_namespace nsp ON cl.relnamespace = nsp.oid
LEFT OUTER JOIN pg_description des ON (des.objoid=cl.oid
AND des.classoid='pg_class'::regclass)
WHERE relkind = 'S' AND relnamespace = {{scid}}::oid
{% if seid %}AND cl.oid = {{seid}}::oid {% endif %}
ORDER BY relname
{% endif %}
|
<reponame>landhuangstudio/jeecg-boot
-- 创建mysql库
-- create database `jetendb` default character set utf8mb4 collate utf8mb4_general_ci;
DROP TABLE IF EXISTS t_bill;
CREATE TABLE t_bill (
id char(32) NOT NULL COMMENT '主键ID',
cust_name char(32) NOT NULL COMMENT '客户姓名',
national_area TINYINT NOT NULL COMMENT '国家地区,1-西马、2-新加坡',
express_no varchar(256) NOT NULL COMMENT '快递单号',
cust_addr varchar(256) NOT NULL COMMENT '客户地址',
contacts char(32) NOT NULL COMMENT '联系人',
contacts_number char(16) NOT NULL COMMENT '联系电话',
sensitive_goods TINYINT NOT NULL COMMENT '敏感货 0 否 1 是 ',
weight DECIMAL(4,2) COMMENT '重量',
volume_len_width_height char(16) COMMENT '体积长、宽、高,逗号分开',
volume_weight DECIMAL(4,2) COMMENT '体积重(KG)',
tracking_number char(16) COMMENT '运单号',
deliver_company varchar(36) COMMENT '派送公司',
freight_unit_price DECIMAL(4,2) COMMENT '运费单价',
total_amount DECIMAL(10,2) COMMENT '运费',
cust_pay_date char(19) COMMENT '客户付款时间,yyyy-MM-dd HH:mm:ss',
cust_pay_channel char(10) COMMENT '客户付款渠道',
cust_settlement TINYINT COMMENT '客户结算渠道,11-微信转账,12-微信红包,21-支付宝、31-马币',
exchange_rate DECIMAL(4,2) COMMENT '马币汇率,两位小数',
company_settlement TINYINT COMMENT '公司结算渠道,11-微信转账,12-微信红包,21-支付宝',
company_settlement_date char(19) COMMENT '公司结算渠道日期,yyyy-MM-dd HH:mm:ss',
remark varchar(128) COMMENT '备注',
del_flag TINYINT COMMENT '删除状态,0-正常,1-已删除',
create_by char(32) COMMENT '创建人',
create_time DATETIME COMMENT '创建时间',
update_by char(32) COMMENT '更新人',
update_time DATETIME COMMENT '更新时间',
PRIMARY KEY (id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
DROP TABLE IF EXISTS buss_bill;
CREATE TABLE buss_bill (
id char(32) NOT NULL COMMENT '主键ID',
transportation char(1) NOT NULL COMMENT '运输方式,A-空运air、S-海运sea',
cust_name char(32) NOT NULL COMMENT '客户姓名',
national_area char(1) NOT NULL COMMENT '国家地区,1-西马、2-新加坡',
express_no varchar(256) NOT NULL COMMENT '快递单号',
cust_addr varchar(256) NOT NULL COMMENT '客户地址',
contacts char(32) NOT NULL COMMENT '联系人',
contacts_number char(16) NOT NULL COMMENT '联系电话',
sensitive_goods char(1) NOT NULL COMMENT '敏感货 0 否 1 是 ',
weight char(8) COMMENT '重量',
volume_len_width_height char(16) COMMENT '体积长、宽、高,逗号分开',
volume_weight char(8) COMMENT '体积重(KG)',
tracking_number char(16) COMMENT '运单号',
deliver_company varchar(36) COMMENT '派送公司',
freight_unit_price char(8) COMMENT '运费单价',
total_amount char(10) COMMENT '运费',
cust_pay_date char(19) COMMENT '客户付款时间,yyyy-MM-dd HH:mm:ss',
cust_pay_channel char(10) COMMENT '客户付款渠道',
cust_settlement char(2) COMMENT '客户结算渠道,11-微信转账,12-微信红包,21-支付宝、31-马币',
exchange_rate char(8) COMMENT '马币汇率,两位小数',
company_settlement char(2) COMMENT '公司结算渠道,11-微信转账,12-微信红包,21-支付宝',
company_settlement_date char(19) COMMENT '公司结算渠道日期,yyyy-MM-dd HH:mm:ss',
remark varchar(128) COMMENT '备注',
del_flag char(1) COMMENT '删除状态,0-正常,1-已删除',
create_by char(32) COMMENT '创建人',
create_time char(17) COMMENT '创建时间',
update_by char(32) COMMENT '更新人',
update_time char(17) COMMENT '更新时间',
PRIMARY KEY (id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT = '接单表';
|
/*创建叮咚的数据库*/
SET NAMES UTF8;
DROP DATABASE IF EXISTS ddo;
CREATE DATABASE ddo CHARSET=UTF8;
USE ddo;
/*创建叮咚登录数据库*/
CREATE TABLE dd_login(
id INT PRIMARY KEY AUTO_INCREMENT,
uname VARCHAR(50),
upwd VARCHAR(32)
);
/*插入两条测试数据*/
INSERT INTO dd_login VALUES(null,'tom1',md5('123456'));
INSERT INTO dd_login VALUES(null,'jerry',md5('123456'));
/*创建商品详情列表*/
CREATE TABLE dd_product(
pid INT PRIMARY KEY AUTO_INCREMENT, #商品编号
title VARCHAR(60), #商品标题
p_title VARCHAR(60), #商品副标题
price DECIMAL(10,2), #商品价格
img_url VARCHAR(255), #商品图片
p_product VARCHAR(255) #商品详情图片
);
/*插入商品详情信息*/
INSERT INTO dd_product VALUES(null,'百威啤酒 500ml*3罐','清爽 清醇 清澈 致敬真我 (新老包装随机发货)',25.90,'baiwei/baiwei.jpg','baiwei/product.jpg,baiwei/product2.png,baiwei/product3.png,baiwei/product4.png');
INSERT INTO dd_product VALUES(null,'派力特 休闲零食 掌心干脆面','办公室休闲零食方便面 干吃面 混合口味 50包1050g',24.80,'gcm/gancuim.png','gcm/gcm1.png,gcm/gcm2.png,gcm/gcm3.png,gcm/gcm4.png,gcm/gcm5.png,gcm/gcm4.png');
INSERT INTO dd_product VALUES(null,'百威啤酒 500ml*3罐','清爽 清醇 清澈 致敬真我 (新老包装随机发货)',25.90,'baiwei/baiwei.jpg','baiwei/product.jpg,baiwei/product2.png,baiwei/product3.png,baiwei/product4.png');
INSERT INTO dd_product VALUES(null,'派力特 休闲零食 掌心干脆面','办公室休闲零食方便面 干吃面 混合口味 50包1050g',24.80,'gcm/gancuim.png','gcm/gcm1.png,gcm/gcm2.png,gcm/gcm3.png,gcm/gcm4.png,gcm/gcm5.png,gcm/gcm4.png');
INSERT INTO dd_product VALUES(null,'百威啤酒 500ml*3罐','清爽 清醇 清澈 致敬真我 (新老包装随机发货)',25.90,'baiwei/baiwei.jpg','baiwei/product.jpg,baiwei/product2.png,baiwei/product3.png,baiwei/product4.png');
INSERT INTO dd_product VALUES(null,'派力特 休闲零食 掌心干脆面','办公室休闲零食方便面 干吃面 混合口味 50包1050g',24.80,'gcm/gancuim.png','gcm/gcm1.png,gcm/gcm2.png,gcm/gcm3.png,gcm/gcm4.png,gcm/gcm5.png,gcm/gcm4.png');
INSERT INTO dd_product VALUES(null,'百威啤酒 500ml*3罐','清爽 清醇 清澈 致敬真我 (新老包装随机发货)',25.90,'baiwei/baiwei.jpg','baiwei/product.jpg,baiwei/product2.png,baiwei/product3.png,baiwei/product4.png');
INSERT INTO dd_product VALUES(null,'派力特 休闲零食 掌心干脆面','办公室休闲零食方便面 干吃面 混合口味 50包1050g',24.80,'gcm/gancuim.png','gcm/gcm1.png,gcm/gcm2.png,gcm/gcm3.png,gcm/gcm4.png,gcm/gcm5.png,gcm/gcm4.png');
/*创建购物车列表*/
CREATE TABLE dd_shoppingCart (
sid INT PRIMARY KEY AUTO_INCREMENT, #购物车商品编号
id INT, #用户编号
pid INT, #商品编号
count INT, #商品数量
price DECIMAL(10,2), #商品价格
pname VARCHAR(255) #商品名称
);
/*创建优惠券列表*/
CREATE TABLE dd_coupon (
cid INT PRIMARY KEY AUTO_INCREMENT, #优惠券id
cimg_url VARCHAR(255) #优惠券路径
);
INSERT INTO dd_coupon VALUES(
null,'http://127.0.0.1:3001/youhui/youhui.png'
);
/*创建轮播图数据列表*/
CREATE TABLE dd_carousel (
aid INT PRIMARY KEY AUTO_INCREMENT, #轮播图id
aimg_url VARCHAR(255) #轮播图路径
);
/*插入轮播图数据*/
INSERT INTO dd_carousel VALUES(null,'http://127.0.0.1:3001/carousel/bine1.jpg');
INSERT INTO dd_carousel VALUES(null,'http://127.0.0.1:3001/carousel/bine2.jpg');
INSERT INTO dd_carousel VALUES(null,'http://127.0.0.1:3001/carousel/bine3.jpg');
INSERT INTO dd_carousel VALUES(null,'http://127.0.0.1:3001/carousel/bine4.jpg');
INSERT INTO dd_carousel VALUES(null,'http://1172.16.17.32:3001/carousel/bine5.jpg');
/*创建导航数据列表*/
CREATE TABLE dd_gp (
gid INT PRIMARY KEY AUTO_INCREMENT, #id
gimg_url VARCHAR(255), #图片路径
title VARCHAR(50) #标题
);
/*插入数据*/
INSERT INTO dd_gp VALUES (null,'http://127.0.0.1:3001/gp/c-1.png','买二付一');
INSERT INTO dd_gp VALUES (null,'http://127.0.0.1:3001/gp/c-2.png','原箱佳沛');
INSERT INTO dd_gp VALUES (null,'http://127.0.0.1:3001/gp/c-3.png','会员福利');
INSERT INTO dd_gp VALUES (null,'http://127.0.0.1:3001/gp/c-4.png','银行活动');
INSERT INTO dd_gp VALUES (null,'http://127.0.0.1:3001/gp/c-5.png','新品惠萃');
INSERT INTO dd_gp VALUES (null,'http://127.0.0.1:3001/gp/c-6.png','精选肉类');
INSERT INTO dd_gp VALUES (null,'http://127.0.0.1:3001/gp/c-7.png','海鲜水产');
INSERT INTO dd_gp VALUES (null,'http://127.0.0.1:3001/gp/c-8.png','食品饮料');
/*创建首页横向商品列表*/
CREATE TABLE dd_merrec (
mid INT PRIMARY KEY AUTO_INCREMENT, #首页商品id
did INT, #商品类型编号
mimg_url VARCHAR(255), #商品标题图
carousel VARCHAR(255), #商品轮播图
title VARCHAR(50), #商品标题
mtitle VARCHAR(50), #商品副标题
price DECIMAL(10,2), #商品价格
price_m DECIMAL(10,2), #商品折价
preference VARCHAR(50), #商品特惠
madein VARCHAR(50), #商品产地
details VARCHAR(255), #商品详情
specs VARCHAR(50) #商品规格
);
/*插入数据*/
INSERT INTO dd_merrec VALUES (null,1,'merrec/1/1-1.jpg','merrec/1/1-1.jpg,merrec/1/1-2.jpg,merrec/1/1-3.jpg','泰国金枕榴莲礼盒装1个(1.5-2.5kg/个)','入口软糯绵甜 对“TA"爱不释手',99,128,'直降29元','泰国','merrec/1/1-1-1.jpg,merrec/1/1-1-2.jpg,merrec/1/1-1-3.jpg,merrec/1/1-1-3.jpg,merrec/1/1-1-4.jpg,merrec/1/1-1-5.jpg,merrec/1/1-1-6.jpg,merrec/1/1-1-7.jpg,merrec/1/1-1-8.jpg','1个/箱');
INSERT INTO dd_merrec VALUES (null,1,'merrec/2/2-2.jpg','merrec/2/2-1.jpg,merrec/2/2-2.jpg,merrec/2/2-3.jpg','山东锦绣黄桃4个礼盒装200g以上/个','清甜黄润 软糯香甜',19.9,50,'限时抢购','山东','merrec/2/2-2-1.jpg,merrec/2/2-2-2.jpg,merrec/2/2-2-3.jpg,merrec/2/2-2-4.jpg,merrec/2/2-2-5.jpg,merrec/2/2-2-6.jpg,merrec/2/2-2-7.jpg,merrec/2/2-2-8.jpg,merrec/2/2-2-9.jpg','4个/盒');
INSERT INTO dd_merrec VALUES (null,1,'merrec/3/3-1.jpg','merrec/3/3-1.jpg,merrec/3/3-2.jpg,merrec/3/3-3.jpg','河北皇冠梨6个(250g以上/个)','清脆多汁 肉质酥脆',19.9,29.9,'限时抢购','河北','merrec/3/3-3-1.jpg,merrec/3/3-3-2.jpg,merrec/3/3-3-3.jpg,merrec/3/3-3-4.jpg,merrec/3/3-3-5.jpg,merrec/3/3-3-6.jpg,merrec/3/3-3-7.jpg','6个/盒');
INSERT INTO dd_merrec VALUES (null,1,'merrec/4/4-1.jpg','merrec/4/4-1.jpg,merrec/4/4-2.jpg,merrec/4/4-3.jpg','新疆西梅400g','一“梅”两吃 软硬皆宜',29.9,38,'惊喜价29.9元','新疆','merrec/4/4-4-1.jpg,merrec/4/4-4-2.jpg,merrec/4/4-4-3.jpg,merrec/4/4-4-4.jpg,merrec/4/4-4-5.jpg,merrec/4/4-4-6.jpg,merrec/4/4-4-7.jpg,merrec/4/4-4-8.jpg,merrec/4/4-4-9.jpg,merrec/4/4-4-10.jpg','1kg/袋');
INSERT INTO dd_merrec VALUES (null,1,'merrec/5/5-1.jpg','merrec/5/5-1.jpg,merrec/5/5-2.jpg,merrec/5/5-3.jpg','优诺优丝原味风味发酵乳135g*3','采用法式慢发酵工艺制作',22.9,24,'限时抢购','江苏','merrec/5/5-5-1.jpg,merrec/5/5-5-2.jpg,merrec/5/5-5-3.jpg,merrec/5/5-5-4.jpg,merrec/5/5-5-5.jpg,merrec/5/5-5-6.jpg,merrec/5/5-5-7.jpg','135g*3/组');
INSERT INTO dd_merrec VALUES (null,1,'merrec/6/6-1.jpg','merrec/6/6-1.jpg,merrec/6/6-2.jpg,merrec/6/6-3.jpg','伊利褐色炭烧风味发酵乳1.05kg','甄选生牛乳发酵调制',17.9,29,'限时抢购','黑龙江绥化','merrec/6/6-6-1.jpg,merrec/6/6-6-2.jpg,merrec/6/6-6-3.jpg,merrec/6/6-6-4.jpg,merrec/6/6-6-5.jpg,merrec/6/6-6-6.jpg,merrec/6/6-6-7.jpg,merrec/6/6-6-8.jpg,merrec/6/6-6-9.jpg','1.05kg/瓶');
INSERT INTO dd_merrec VALUES (null,1,'merrec/7/7-1.jpg','merrec/7/7-1.jpg,merrec/7/7-2.jpg,merrec/7/7-3.jpg','云南蒙自石榴6个225g以上/个','颗粒饱满 清甜不酸涩',35,45,'惊喜价35元','云南','merrec/7/7-7-1.jpg,merrec/7/7-7-2.jpg,merrec/7/7-7-3.jpg,merrec/7/7-7-4.jpg,merrec/7/7-7-5.jpg,merrec/7/7-7-6.jpg,merrec/7/7-7-8.jpg','6个/盒');
INSERT INTO dd_merrec VALUES (null,1,'merrec/8/8-1.jpg','merrec/8/8-1.jpg,merrec/8/8-2.jpg,merrec/8/8-3.jpg','泰国山竹1kg/盒','果肉雪白,清香甜蜜',29.9,69,'限时抢购','泰国','merrec/8/8-8-1.jpg,merrec/8/8-8-2.jpg,merrec/8/8-8-3.jpg,merrec/8/8-8-4.jpg,merrec/8/8-8-5.jpg,merrec/8/8-8-6.jpg,merrec/8/8-8-7.jpg','1盒/份');
INSERT INTO dd_merrec VALUES (null,1,'merrec/9/9-1.jpg','merrec/9/9-1.jpg,merrec/9/9-2.jpg,merrec/9/9-3.jpg','泰国龙眼1kg/盒','果肉晶莹剔透,甜蜜涌上心头',19.9,39.4,'惊喜价19.9元','泰国','merrec/9/9-9-1.jpg,merrec/9/9-9-2.jpg,merrec/9/9-9-3.jpg,merrec/9/9-9-4.jpg,merrec/9/9-9-5.jpg,merrec/9/9-9-6.jpg','1盒/份');
INSERT INTO dd_merrec VALUES (null,1,'merrec/10/10-1.jpg','merrec/10/10-1.jpg,merrec/10/10-2.jpg,merrec/10/10-3.jpg','天润浓缩酸奶全脂风味发酵乳(原味)180g*12','经典原味 口感香醇 含丰富蛋白质',49.9,59.9,'限时抢购','新疆乌鲁木齐','merrec/10/10-10-1.jpg,merrec/10/10-10-2.jpg,merrec/10/10-10-3.jpg,merrec/10/10-10-4.jpg,merrec/10/10-10-5.jpg,merrec/10/10-10-6.jpg,merrec/10/10-10-7.jpg,merrec/10/10-10-8.jpg,merrec/10/10-10-9.jpg,merrec/10/10-10-11.jpg,merrec/10/10-10-12.jpg,merrec/10/10-10-13.jpg,merrec/10/10-10-14.jpg','180g*12/箱');
INSERT INTO dd_merrec VALUES (null,1,'merrec/11/11-1.jpg','merrec/11/11-1.jpg,merrec/11/11-2.jpg,merrec/11/11-3.jpg','天润冰淇淋化了全脂风味发酵乳180g*12','网红酸奶 吸着喝的“冰淇淋”',49.9,59.9,'限时抢购','新疆乌鲁木齐','merrec/11/11-11-1.jpg,merrec/11/11-11-2.jpg,merrec/11/11-11-3.jpg,merrec/11/11-11-4.jpg,merrec/11/11-11-5.jpg,merrec/11/11-11-6.jpg,merrec/11/11-11-7.jpg,merrec/11/11-11-8.jpg,merrec/11/11-11-9.jpg,merrec/11/11-11-10.jpg,merrec/11/11-11-11.jpg,merrec/11/11-11-12.jpg,merrec/11/11-11-13.jpg,merrec/11/11-11-14.jpg','180g*12/箱');
INSERT INTO dd_merrec VALUES (null,1,'merrec/12/12-1.jpg','merrec/12/12-1.jpg,merrec/12/12-2.jpg,merrec/12/12-3.jpg','禧美海产红鱼鱼片350g','',19.9,69.9,'爆款直降','挪威','merrec/12/12-12-1.jpg,merrec/12/12-12-2.jpg,merrec/12/12-12-3.jpg,merrec/12/12-12-4.jpg,merrec/12/12-12-5.jpg,merrec/12/12-12-6.jpg,merrec/12/12-12-7.jpg,merrec/12/12-12-8.jpg,merrec/12/12-12-9.jpg,merrec/12/12-12-10.jpg,merrec/12/12-12-11.jpg,merrec/12/12-12-12.jpg,merrec/12/12-12-13.jpg','400g/包');
INSERT INTO dd_merrec VALUES (null,1,'merrec/13/13-1.jpg','merrec/13/13-1.jpg,merrec/13/13-2.jpg,merrec/13/13-3.jpg','国产麒麟瓜1个2.4kg以上/个','水润清甜 大口啃食才过瘾',22.8,26.8,'限时抢购','中国','merrec/13/13-13-1.jpg,merrec/13/13-13-2.jpg,merrec/13/13-13-3.jpg,merrec/13/13-13-4.jpg,merrec/13/13-13-5.jpg,merrec/13/13-13-6.jpg,merrec/13/13-13-7.jpg,merrec/13/13-13-8.jpg,merrec/13/13-13-9.jpg,merrec/13/13-13-10.jpg,merrec/13/13-13-11.jpg','1个/份');
INSERT INTO dd_merrec VALUES (null,1,'merrec/14/14-1.jpg','merrec/14/14-1.jpg,merrec/14/14-2.jpg,merrec/14/14-3.jpg','莎得徕兹原味泡芙89g','一口咬下 享受酥、软、甜美味三重奏',15.8,19.8,'下单仅15.8元','日本','merrec/14/14-14-1.jpg,merrec/14/14-14-2.jpg,merrec/14/14-14-3.jpg,merrec/14/14-14-4.jpg,merrec/14/14-14-5.jpg,merrec/14/14-14-6.jpg,merrec/14/14-14-7.jpg,merrec/14/14-14-8.jpg,merrec/14/14-14-9.jpg,merrec/14/14-14-10.jpg,merrec/14/14-14-11.jpg,merrec/14/14-14-12.jpg,merrec/14/14-14-13.jpg,merrec/14/14-14-14.jpg','89g/袋');
INSERT INTO dd_merrec VALUES (null,1,'merrec/15/15-1.jpg','merrec/15/15-1.jpg,merrec/15/15-2.jpg,merrec/15/15-3.jpg','国产特小凤西瓜1个1kg/个','皮薄多汁 脆甜好过瘾',12.8,16.8,'限时抢购','海南三亚','merrec/15/15-15-1.jpg,merrec/15/15-15-2.jpg,merrec/15/15-15-3.jpg,merrec/15/15-15-4.jpg,merrec/15/15-15-5.jpg,merrec/15/15-15-6.jpg,merrec/15/15-15-7.jpg,merrec/15/15-15-8.jpg','1个/份');
INSERT INTO dd_merrec VALUES (null,1,'merrec/16/16-1.jpg','merrec/16/16-1.jpg,merrec/16/16-2.jpg,merrec/16/16-3.jpg','云南精品夏黑葡萄1kg','甜美“黑珍珠” 细腻脆嫩',29.9,34.9,'限时抢购','云南','merrec/16/16-16-1.jpg,merrec/16/16-16-2.jpg,merrec/16/16-16-3.jpg,merrec/16/16-16-4.jpg,merrec/16/16-16-5.jpg,merrec/16/16-16-6.jpg,merrec/16/16-16-7.jpg,merrec/16/16-16-8.jpg','1kg/袋');
INSERT INTO dd_merrec VALUES (null,1,'merrec/17/17-1.jpg','merrec/17/17-1.jpg,merrec/17/17-2.jpg,merrec/17/17-3.jpg','鹰嘴芒果4个(200g以上/个)','甘甜果肉 浓郁芳香',25,35,'限时抢购','云南红河','merrec/17/17-17-1.jpg,merrec/17/17-17-2.jpg,merrec/17/17-17-3.jpg,merrec/17/17-17-4.jpg,merrec/17/17-17-5.jpg,merrec/17/17-17-6.jpg,merrec/17/17-17-7.jpg,merrec/17/17-17-8.jpg,merrec/17/17-17-9.jpg','4个/盒');
INSERT INTO dd_merrec VALUES (null,1,'merrec/18/18-1.jpg','merrec/18/18-1.jpg,merrec/18/18-2.jpg,merrec/18/18-3.jpg','云南阳光玫瑰青提1盒500g/盒','浓浓葡萄香气 一口一个好过瘾',29.9,37.8,'限时抢购','云南','merrec/18/18-18-1.jpg,merrec/18/18-18-2.jpg,merrec/18/18-18-3.jpg,merrec/18/18-18-4.jpg,merrec/18/18-18-5.jpg,merrec/18/18-18-6.jpg,merrec/18/18-18-7.jpg,merrec/18/18-18-8.jpg','500g/盒');
INSERT INTO dd_merrec VALUES (null,1,'merrec/19/19-1.jpg','merrec/19/19-1.jpg,merrec/19/19-2.jpg,merrec/19/19-3.jpg','百吉福棒棒奶酪水果味500g','一包含25支 不怕宝贝不够吃',59.9,68,'59.9元限时抢','天津','merrec/19/19-19-1.jpg,merrec/19/19-19-2.jpg,merrec/19/19-19-3.jpg,merrec/19/19-19-4.jpg,merrec/19/19-19-5.jpg,merrec/19/19-19-6.jpg,merrec/19/19-19-7.jpg,merrec/19/19-19-8.jpg,merrec/19/19-19-9.jpg,merrec/19/19-19-10.jpg,merrec/19/19-19-11.jpg,merrec/19/19-19-12.jpg','500g/份');
INSERT INTO dd_merrec VALUES (null,1,'merrec/20/20-1.jpg','merrec/20/20-1.jpg,merrec/20/20-2.jpg,merrec/20/20-3.jpg','原膳皖南山坡散养土鸡蛋(6枚装)','蛋白Q弹 烹饪香醇不腥',7.9,8.9,'限时抢购','安徽芜湖','merrec/20/20-20-1.jpg,merrec/20/20-20-2.jpg,merrec/20/20-20-3.jpg,merrec/20/20-20-4.jpg,merrec/20/20-20-5.jpg,merrec/20/20-20-6.jpg,merrec/20/20-20-7.jpg,merrec/20/20-20-8.jpg','6枚/盒');
INSERT INTO dd_merrec VALUES (null,1,'merrec/21/21-1.jpg','merrec/21/21-1.jpg,merrec/21/21-2.jpg,merrec/21/21-3.jpg','新疆无核白葡萄1kg','脆甜无籽 一口一颗停不下来',25.8,29,'限时抢购','新疆吐鲁番','merrec/21/21-21-1.jpg,merrec/21/21-21-2.jpg,merrec/21/21-21-3.jpg,merrec/21/21-21-4.jpg,merrec/21/21-21-5.jpg,merrec/21/21-21-6.jpg,merrec/21/21-21-7.jpg,merrec/21/21-21-8.jpg','1kg/份');
INSERT INTO dd_merrec VALUES (null,1,'merrec/22/22-1.jpg','merrec/22/22-1.jpg,merrec/22/22-2.jpg,merrec/22/22-3.jpg','伊利优选牧场奶源纯牛奶180ml*16','透明包装 安心看得见 随时随地喝一袋',39.9,48,'39.9元限时抢','辽宁沈阳','merrec/22/22-22-1.jpg,merrec/22/22-22-2.jpg,merrec/22/22-22-3.jpg,merrec/22/22-22-4.jpg,merrec/22/22-22-5.jpg,merrec/22/22-22-6.jpg,merrec/22/22-22-7.jpg','180ml/袋*16');
INSERT INTO dd_merrec VALUES (null,1,'merrec/23/23-1.jpg','merrec/23/23-1.jpg,merrec/23/23-2.jpg,merrec/23/23-3.jpg','上海南汇8424西瓜1个2.8kg以上/个','皮薄肉嫩 实力网红瓜',29.9,49.9,'限时抢购','上海南汇','merrec/23/23-23-1.jpg,merrec/23/23-23-2.jpg,merrec/23/23-23-3.jpg,merrec/23/23-23-4.jpg,merrec/23/23-23-5.jpg,merrec/23/23-23-6.jpg,merrec/23/23-23-7.jpg,merrec/23/23-23-8.jpg','2.8kg/个');
INSERT INTO dd_merrec VALUES (null,1,'merrec/24/24-1.jpg','merrec/24/24-1.jpg,merrec/24/24-2.jpg,merrec/24/24-3.jpg','养乐多活菌型乳酸菌乳饮品100ml*5','该商品不与其他优惠券、现金券及抵用卡同享',12,12.9,'限时抢购','中国','merrec/24/24-24-1.jpg,merrec/24/24-24-2.jpg,merrec/24/24-24-3.jpg,merrec/24/24-24-4.jpg,merrec/24/24-24-5.jpg,merrec/24/24-24-6.jpg,merrec/24/24-24-7.jpg,merrec/24/24-24-8.jpg,merrec/24/24-24-9.jpg,merrec/24/24-24-10.jpg,merrec/24/24-24-11.jpg,merrec/24/24-24-12.jpg','100ml*5/份');
INSERT INTO dd_merrec VALUES (null,1,'merrec/25/25-1.jpg','merrec/25/25-1.jpg,merrec/25/25-2.jpg,merrec/25/25-3.jpg,merrec/25/25-4.jpg','浙仙梅鲜杨梅汁(果蔬汁饮料)386ml','东魁杨梅 冰镇口感 酸甜可口 清凉解暑',12.8,18.8,'限时抢购','浙江嘉兴','merrec/25/25-25-1.jpg,merrec/25/25-25-2.jpg,merrec/25/25-25-3.jpg,merrec/25/25-25-4.jpg,merrec/25/25-25-5.jpg,merrec/25/25-25-6.jpg,merrec/25/25-25-7.jpg,merrec/25/25-25-8.jpg,merrec/25/25-25-9.jpg,merrec/25/25-25-10.jpg','386ml/盒');
INSERT INTO dd_merrec VALUES (null,1,'merrec/26/26-1.jpg','merrec/26/26-1.jpg,merrec/26/26-2.jpg,merrec/26/26-3.jpg','原膳加拿大北极甜虾熟冻500g(120+/kg)','粉嫩清甜,肉质紧实,鲜美营养',29.9,41.9,'限时抢购','加拿大','merrec/26/26-26-1.jpg,merrec/26/26-26-2.jpg,merrec/26/26-26-3.jpg,merrec/26/26-26-4.jpg,merrec/26/26-26-5.jpg,merrec/26/26-26-6.jpg,merrec/26/26-26-7.jpg,merrec/26/26-26-8.jpg','500g/份');
/*插入商品类型为2的商品信息*/
INSERT INTO dd_merrec VALUES (null,2,'merrec2/1/1-1.jpg','merrec2/1/1-1.jpg,merrec2/1/1-2.jpg,merrec2/1/1-3.jpg','红钻突尼斯软籽石榴6个礼盒装(320-370g/个)','基地发货 不支持合单 颗粒红润 汁水甜度更高',88,108,'基地发货','四川','merrec2/1/1-1-1.jpg,merrec2/1/1-1-2.jpg,merrec2/1/1-1-3.jpg,merrec2/1/1-1-4.jpg,merrec2/1/1-1-5.jpg,merrec2/1/1-1-6.jpg,merrec2/1/1-1-7.jpg,merrec2/1/1-1-8.jpg,merrec2/1/1-1-9.jpg,merrec2/1/1-1-10.jpg,merrec2/1/1-1-11.jpg,merrec2/1/1-1-12.jpg,merrec2/1/1-1-13.jpg,merrec2/1/1-1-14.jpg,merrec2/1/1-1-15.jpg','6个/箱');
INSERT INTO dd_merrec VALUES (null,2,'merrec2/2/2-1.jpg','merrec2/2/2-1.jpg,merrec2/2/2-2.jpg,merrec2/2/2-3.jpg','台湾麻豆文旦柚3kg礼盒装约380g/个','预售最快9月2日开始发货 不支持合单',128,148,'预售单品包邮','中国台湾','merrec2/2/2-2-1.jpg,merrec2/2/2-2-2.jpg,merrec2/2/2-2-3.jpg,merrec2/2/2-2-4.jpg,merrec2/2/2-2-5.jpg,merrec2/2/2-2-6.jpg,merrec2/2/2-2-7.jpg,merrec2/2/2-2-8.jpg,merrec2/2/2-2-9.jpg','3kg/盒');
INSERT INTO dd_merrec VALUES (null,2,'merrec2/3/3-1.jpg','merrec2/3/3-1.jpg,merrec2/3/3-2.jpg,merrec2/3/3-3.jpg','澳大利亚脐橙6个/箱(150g以上/个)','皮薄宜剥 橙香浓郁',49,'','第2件0元','澳大利亚','merrec2/3/3-3-1.jpg,merrec2/3/3-3-2.jpg,merrec2/3/3-3-3.jpg,merrec2/3/3-3-4.jpg,merrec2/3/3-3-5.jpg,merrec2/3/3-3-6.jpg,merrec2/3/3-3-7.jpg','6个/箱');
INSERT INTO dd_merrec VALUES (null,2,'merrec2/4/4-1.jpg','merrec2/4/4-1.jpg,merrec2/4/4-2.jpg,merrec2/4/4-3.jpg','台湾麻豆文旦柚2个400g以上/个','季节限定 甘甜爆汁',49,59,'直降10元','中国台湾','merrec2/4/4-4-1.jpg,merrec2/4/4-4-2.jpg,merrec2/4/4-4-3.jpg,merrec2/4/4-4-4.jpg,merrec2/4/4-4-5.jpg,merrec2/4/4-4-6.jpg,merrec2/4/4-4-7.jpg,merrec2/4/4-4-8.jpg,merrec2/4/4-4-9.jpg','2个/盒');
INSERT INTO dd_merrec VALUES (null,2,'merrec2/5/5-1.jpg','merrec2/5/5-1.jpg,merrec2/5/5-2.jpg,merrec2/5/5-3.jpg','四川攀枝花凯特芒5斤礼盒装(400g以上/个)','产地直发 果实硕大 肉厚多汁',59.9,69,'产地直发','四川','merrec2/5/5-5-1.jpg,merrec2/5/5-5-2.jpg,merrec2/5/5-5-3.jpg,merrec2/5/5-5-4.jpg,merrec2/5/5-5-5.jpg,merrec2/5/5-5-6.jpg,merrec2/5/5-5-7.jpg,merrec2/5/5-5-8.jpg','5斤/盒');
INSERT INTO dd_merrec VALUES (null,2,'merrec2/6/6-1.jpg','merrec2/6/6-1.jpg,merrec2/6/6-2.jpg,merrec2/6/6-3.jpg','越南红心火龙果2个410g以上/个(大果)','嫩滑多汁 清甜回味',49.9,'','第2份0元','越南','merrec2/6/6-6-1.jpg,merrec2/6/6-6-2.jpg,merrec2/6/6-6-3.jpg,merrec2/6/6-6-4.jpg,merrec2/6/6-6-5.jpg,merrec2/6/6-6-6.jpg,merrec2/6/6-6-7.jpg,merrec2/6/6-6-8.jpg','1盒/份');
/*插入商品类型为3的商品信息*/
INSERT INTO dd_merrec VALUES (null,3,'merrec/12/12-1.jpg','merrec/12/12-1.jpg,merrec/12/12-2.jpg,merrec/12/12-3.jpg','禧美海产红鱼鱼片350g','',19.9,69.9,'爆款直降','挪威','merrec/12/12-12-1.jpg,merrec/12/12-12-2.jpg,merrec/12/12-12-3.jpg,merrec/12/12-12-4.jpg,merrec/12/12-12-5.jpg,merrec/12/12-12-6.jpg,merrec/12/12-12-7.jpg,merrec/12/12-12-8.jpg,merrec/12/12-12-9.jpg,merrec/12/12-12-10.jpg,merrec/12/12-12-11.jpg,merrec/12/12-12-12.jpg,merrec/12/12-12-13.jpg','400g/包');
INSERT INTO dd_merrec VALUES (null,3,'merrec/13/13-1.jpg','merrec/13/13-1.jpg,merrec/13/13-2.jpg,merrec/13/13-3.jpg','国产麒麟瓜1个2.4kg以上/个','水润清甜 大口啃食才过瘾',22.8,26.8,'限时抢购','中国','merrec/13/13-13-1.jpg,merrec/13/13-13-2.jpg,merrec/13/13-13-3.jpg,merrec/13/13-13-4.jpg,merrec/13/13-13-5.jpg,merrec/13/13-13-6.jpg,merrec/13/13-13-7.jpg,merrec/13/13-13-8.jpg,merrec/13/13-13-9.jpg,merrec/13/13-13-10.jpg,merrec/13/13-13-11.jpg','1个/份');
INSERT INTO dd_merrec VALUES (null,1,'merrec/14/14-1.jpg','merrec/14/14-1.jpg,merrec/14/14-2.jpg,merrec/14/14-3.jpg','莎得徕兹原味泡芙89g','一口咬下 享受酥、软、甜美味三重奏',15.8,19.8,'下单仅15.8元','日本','merrec/14/14-14-1.jpg,merrec/14/14-14-2.jpg,merrec/14/14-14-3.jpg,merrec/14/14-14-4.jpg,merrec/14/14-14-5.jpg,merrec/14/14-14-6.jpg,merrec/14/14-14-7.jpg,merrec/14/14-14-8.jpg,merrec/14/14-14-9.jpg,merrec/14/14-14-10.jpg,merrec/14/14-14-11.jpg,merrec/14/14-14-12.jpg,merrec/14/14-14-13.jpg,merrec/14/14-14-14.jpg','89g/袋');
INSERT INTO dd_merrec VALUES (null,3,'merrec/15/15-1.jpg','merrec/15/15-1.jpg,merrec/15/15-2.jpg,merrec/15/15-3.jpg','国产特小凤西瓜1个1kg/个','皮薄多汁 脆甜好过瘾',12.8,16.8,'限时抢购','海南三亚','merrec/15/15-15-1.jpg,merrec/15/15-15-2.jpg,merrec/15/15-15-3.jpg,merrec/15/15-15-4.jpg,merrec/15/15-15-5.jpg,merrec/15/15-15-6.jpg,merrec/15/15-15-7.jpg,merrec/15/15-15-8.jpg','1个/份');
INSERT INTO dd_merrec VALUES (null,3,'merrec/16/16-1.jpg','merrec/16/16-1.jpg,merrec/16/16-2.jpg,merrec/16/16-3.jpg','云南精品夏黑葡萄1kg','甜美“黑珍珠” 细腻脆嫩',29.9,34.9,'限时抢购','云南','merrec/16/16-16-1.jpg,merrec/16/16-16-2.jpg,merrec/16/16-16-3.jpg,merrec/16/16-16-4.jpg,merrec/16/16-16-5.jpg,merrec/16/16-16-6.jpg,merrec/16/16-16-7.jpg,merrec/16/16-16-8.jpg','1kg/袋');
INSERT INTO dd_merrec VALUES (null,3,'merrec/17/17-1.jpg','merrec/17/17-1.jpg,merrec/17/17-2.jpg,merrec/17/17-3.jpg','鹰嘴芒果4个(200g以上/个)','甘甜果肉 浓郁芳香',25,35,'限时抢购','云南红河','merrec/17/17-17-1.jpg,merrec/17/17-17-2.jpg,merrec/17/17-17-3.jpg,merrec/17/17-17-4.jpg,merrec/17/17-17-5.jpg,merrec/17/17-17-6.jpg,merrec/17/17-17-7.jpg,merrec/17/17-17-8.jpg,merrec/17/17-17-9.jpg','4个/盒');
INSERT INTO dd_merrec VALUES (null,3,'merrec/18/18-1.jpg','merrec/18/18-1.jpg,merrec/18/18-2.jpg,merrec/18/18-3.jpg','云南阳光玫瑰青提1盒500g/盒','浓浓葡萄香气 一口一个好过瘾',29.9,37.8,'限时抢购','云南','merrec/18/18-18-1.jpg,merrec/18/18-18-2.jpg,merrec/18/18-18-3.jpg,merrec/18/18-18-4.jpg,merrec/18/18-18-5.jpg,merrec/18/18-18-6.jpg,merrec/18/18-18-7.jpg,merrec/18/18-18-8.jpg','500g/盒');
INSERT INTO dd_merrec VALUES (null,3,'merrec/19/19-1.jpg','merrec/19/19-1.jpg,merrec/19/19-2.jpg,merrec/19/19-3.jpg','百吉福棒棒奶酪水果味500g','一包含25支 不怕宝贝不够吃',59.9,68,'59.9元限时抢','天津','merrec/19/19-19-1.jpg,merrec/19/19-19-2.jpg,merrec/19/19-19-3.jpg,merrec/19/19-19-4.jpg,merrec/19/19-19-5.jpg,merrec/19/19-19-6.jpg,merrec/19/19-19-7.jpg,merrec/19/19-19-8.jpg,merrec/19/19-19-9.jpg,merrec/19/19-19-10.jpg,merrec/19/19-19-11.jpg,merrec/19/19-19-12.jpg','500g/份');
INSERT INTO dd_merrec VALUES (null,3,'merrec/20/20-1.jpg','merrec/20/20-1.jpg,merrec/20/20-2.jpg,merrec/20/20-3.jpg','原膳皖南山坡散养土鸡蛋(6枚装)','蛋白Q弹 烹饪香醇不腥',7.9,8.9,'限时抢购','安徽芜湖','merrec/20/20-20-1.jpg,merrec/20/20-20-2.jpg,merrec/20/20-20-3.jpg,merrec/20/20-20-4.jpg,merrec/20/20-20-5.jpg,merrec/20/20-20-6.jpg,merrec/20/20-20-7.jpg,merrec/20/20-20-8.jpg','6枚/盒');
INSERT INTO dd_merrec VALUES (null,3,'merrec/21/21-1.jpg','merrec/21/21-1.jpg,merrec/21/21-2.jpg,merrec/21/21-3.jpg','新疆无核白葡萄1kg','脆甜无籽 一口一颗停不下来',25.8,29,'限时抢购','新疆吐鲁番','merrec/21/21-21-1.jpg,merrec/21/21-21-2.jpg,merrec/21/21-21-3.jpg,merrec/21/21-21-4.jpg,merrec/21/21-21-5.jpg,merrec/21/21-21-6.jpg,merrec/21/21-21-7.jpg,merrec/21/21-21-8.jpg','1kg/份');
INSERT INTO dd_merrec VALUES (null,3,'merrec/22/22-1.jpg','merrec/22/22-1.jpg,merrec/22/22-2.jpg,merrec/22/22-3.jpg','伊利优选牧场奶源纯牛奶180ml*16','透明包装 安心看得见 随时随地喝一袋',39.9,48,'39.9元限时抢','辽宁沈阳','merrec/22/22-22-1.jpg,merrec/22/22-22-2.jpg,merrec/22/22-22-3.jpg,merrec/22/22-22-4.jpg,merrec/22/22-22-5.jpg,merrec/22/22-22-6.jpg,merrec/22/22-22-7.jpg','180ml/袋*16');
INSERT INTO dd_merrec VALUES (null,3,'merrec/23/23-1.jpg','merrec/23/23-1.jpg,merrec/23/23-2.jpg,merrec/23/23-3.jpg','上海南汇8424西瓜1个2.8kg以上/个','皮薄肉嫩 实力网红瓜',29.9,49.9,'限时抢购','上海南汇','merrec/23/23-23-1.jpg,merrec/23/23-23-2.jpg,merrec/23/23-23-3.jpg,merrec/23/23-23-4.jpg,merrec/23/23-23-5.jpg,merrec/23/23-23-6.jpg,merrec/23/23-23-7.jpg,merrec/23/23-23-8.jpg','2.8kg/个');
INSERT INTO dd_merrec VALUES (null,3,'merrec/24/24-1.jpg','merrec/24/24-1.jpg,merrec/24/24-2.jpg,merrec/24/24-3.jpg','养乐多活菌型乳酸菌乳饮品100ml*5','该商品不与其他优惠券、现金券及抵用卡同享',12,12.9,'限时抢购','中国','merrec/24/24-24-1.jpg,merrec/24/24-24-2.jpg,merrec/24/24-24-3.jpg,merrec/24/24-24-4.jpg,merrec/24/24-24-5.jpg,merrec/24/24-24-6.jpg,merrec/24/24-24-7.jpg,merrec/24/24-24-8.jpg,merrec/24/24-24-9.jpg,merrec/24/24-24-10.jpg,merrec/24/24-24-11.jpg,merrec/24/24-24-12.jpg','100ml*5/份');
INSERT INTO dd_merrec VALUES (null,3,'merrec/25/25-1.jpg','merrec/25/25-1.jpg,merrec/25/25-2.jpg,merrec/25/25-3.jpg,merrec/25/25-4.jpg','浙仙梅鲜杨梅汁(果蔬汁饮料)386ml','东魁杨梅 冰镇口感 酸甜可口 清凉解暑',12.8,18.8,'限时抢购','浙江嘉兴','merrec/25/25-25-1.jpg,merrec/25/25-25-2.jpg,merrec/25/25-25-3.jpg,merrec/25/25-25-4.jpg,merrec/25/25-25-5.jpg,merrec/25/25-25-6.jpg,merrec/25/25-25-7.jpg,merrec/25/25-25-8.jpg,merrec/25/25-25-9.jpg,merrec/25/25-25-10.jpg','386ml/盒');
INSERT INTO dd_merrec VALUES (null,3,'merrec/26/26-1.jpg','merrec/26/26-1.jpg,merrec/26/26-2.jpg,merrec/26/26-3.jpg','原膳加拿大北极甜虾熟冻500g(120+/kg)','粉嫩清甜,肉质紧实,鲜美营养',29.9,41.9,'限时抢购','加拿大','merrec/26/26-26-1.jpg,merrec/26/26-26-2.jpg,merrec/26/26-26-3.jpg,merrec/26/26-26-4.jpg,merrec/26/26-26-5.jpg,merrec/26/26-26-6.jpg,merrec/26/26-26-7.jpg,merrec/26/26-26-8.jpg','500g/份');
/*中间广告图片商品信息*/
CREATE TABLE dd_prod_img (
id INT PRIMARY KEY AUTO_INCREMENT, #商品id
iid INT , #图片类型id
iimg_url VARCHAR(255) #广告图片路径
);
INSERT INTO dd_prod_img VALUES (null,1,'product_img/1/pi-1.jpg,product_img/1/pi-2.jpg,product_img/1/pi-3.jpg,product_img/1/pi-4.jpg,product_img/1/pi-5.jpg,product_img/1/pi-6.jpg,product_img/1/pi-7.jpg,product_img/1/pi-8.jpg');
/*创建首页大图数据*/
CREATE TABLE dd_bigimg (
id INT PRIMARY KEY AUTO_INCREMENT, #大图id
bid INT, #图片类型id
bimg_url VARCHAR(255) #大图路径
);
/*插入数据*/
INSERT INTO dd_bigimg VALUES (null,1,'bigimg/bi-1.jpg');
INSERT INTO dd_bigimg VALUES (null,2,'bigimg/bi-2.jpg');
INSERT INTO dd_bigimg VALUES (null,3,'bigimg/bi-3.jpg');
INSERT INTO dd_bigimg VALUES (null,4,'bigimg/bi-4.jpg');
INSERT INTO dd_bigimg VALUES (null,5,'bigimg/bi-5.jpg');
INSERT INTO dd_bigimg VALUES (null,6,'bigimg/bi-6.jpg');
INSERT INTO dd_bigimg VALUES (null,7,'bigimg/bi-7.jpg');
INSERT INTO dd_bigimg VALUES (null,8,'bigimg/bi-8.jpg');
INSERT INTO dd_bigimg VALUES (null,9,'bigimg/bi-9.jpg'); |
<gh_stars>1-10
INSERT INTO COMPETITOR (competitor_id, full_name, email, company, start_time, stop_time, time) VALUES ('999999', 'Red Hat Forum 2018 Spain', '<EMAIL>', 'Red Hat', null, null, 99999994);
INSERT INTO COMPETITOR (competitor_id, full_name, email, company, start_time, stop_time, time) VALUES ('99119999', '<NAME>', null, 'Red Hat', null, null, 99999994);
INSERT INTO COMPETITOR (competitor_id, full_name, email, company, start_time, stop_time, time) VALUES ('999', '<NAME>', null, 'Red Hat', null, null, 99999993);
INSERT INTO COMPETITOR (competitor_id, full_name, email, company, start_time, stop_time, time) VALUES ('99991', '<NAME>', null, 'Red Hat', null, null, 99999995);
INSERT INTO COMPETITOR (competitor_id, full_name, email, company, start_time, stop_time, time) VALUES ('9999', '<NAME>', null, 'Red Hat', null, null, 99999991);
INSERT INTO COMPETITOR (competitor_id, full_name, email, company, start_time, stop_time, time) VALUES ('99999', '<NAME>', null, 'Red Hat', null, null, 99999929);
INSERT INTO COMPETITOR (competitor_id, full_name, email, company, start_time, stop_time, time) VALUES ('9999912', '<NAME>', null, 'Red Hat', null, null, 99999929);
INSERT INTO COMPETITOR (competitor_id, full_name, email, company, start_time, stop_time, time) VALUES ('9999922', '<NAME>era', null, 'Red Hat', null, null, 99999929);
|
<filename>jinengbang.sql
/*
Navicat MySQL Data Transfer
Source Server : localhost_3306
Source Server Version : 50505
Source Host : localhost:3306
Source Database : jinengbang
Target Server Type : MYSQL
Target Server Version : 50505
File Encoding : 65001
Date: 2019-05-10 23:26:43
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for apply
-- ----------------------------
DROP TABLE IF EXISTS `apply`;
CREATE TABLE `apply` (
`apply_id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`help_id` int(11) NOT NULL,
`content` varchar(255) NOT NULL,
`status` enum('1','2','0') NOT NULL DEFAULT '0' COMMENT '0表示待确认,1为成功,2为失败',
`score` int(11) NOT NULL DEFAULT '0' COMMENT '得分,不通过为0分',
`create_time` datetime NOT NULL,
`update_time` datetime NOT NULL,
`delete_time` datetime NOT NULL,
PRIMARY KEY (`apply_id`)
) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for help
-- ----------------------------
DROP TABLE IF EXISTS `help`;
CREATE TABLE `help` (
`help_id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`content` varchar(255) NOT NULL,
`picture` text,
`browse` int(11) NOT NULL DEFAULT '0',
`like` int(11) NOT NULL DEFAULT '0',
`reply` int(11) NOT NULL DEFAULT '0',
`apply_num` int(11) NOT NULL DEFAULT '0' COMMENT '已报名人数',
`create_time` datetime NOT NULL,
`update_time` datetime NOT NULL,
`delete_time` datetime NOT NULL,
`is_free` enum('1','3','2','0') NOT NULL DEFAULT '0' COMMENT '0代表有酬,1代表无酬,2代表工时,3代表其他',
`askfor_type` enum('4','3','2','1','0') NOT NULL COMMENT '0为其他,1为学霸大神,2为艺术天才,3为技术大佬,4为生活雷锋',
`is_complaint` enum('1','0') NOT NULL DEFAULT '0' COMMENT '1表示被投诉',
`type` enum('1','0') NOT NULL DEFAULT '0' COMMENT '0为需要个人,1为需要多人',
`title` varchar(255) NOT NULL,
`has_finished` enum('1','0') NOT NULL DEFAULT '0' COMMENT '0表示未完成',
`publisher` enum('2','1','0') NOT NULL DEFAULT '0' COMMENT '0表示普通用户,1表示社团组织,2表示开发者',
PRIMARY KEY (`help_id`)
) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for help_comment
-- ----------------------------
DROP TABLE IF EXISTS `help_comment`;
CREATE TABLE `help_comment` (
`help_comment_id` int(255) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`content` varchar(255) NOT NULL,
`prior` int(11) NOT NULL DEFAULT '-1',
`help_id` int(11) NOT NULL,
`create_time` datetime NOT NULL,
`update_time` datetime NOT NULL,
`delete_time` datetime NOT NULL,
PRIMARY KEY (`help_comment_id`)
) ENGINE=InnoDB AUTO_INCREMENT=64 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for label
-- ----------------------------
DROP TABLE IF EXISTS `label`;
CREATE TABLE `label` (
`label_id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`type` enum('0','1','2','3','4') NOT NULL DEFAULT '0' COMMENT '具体表示暂定',
`score` int(11) NOT NULL DEFAULT '0',
`create_time` datetime NOT NULL,
`update_time` datetime NOT NULL,
`delete_time` datetime NOT NULL,
`description` varchar(255) DEFAULT NULL,
PRIMARY KEY (`label_id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for message
-- ----------------------------
DROP TABLE IF EXISTS `message`;
CREATE TABLE `message` (
`message_id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`content` varchar(255) NOT NULL,
`create_time` datetime NOT NULL,
`update_time` datetime NOT NULL,
`delete_time` datetime NOT NULL,
`is_office` enum('1','0') NOT NULL DEFAULT '1' COMMENT '1为官方消息',
`status` enum('1','0') NOT NULL DEFAULT '0' COMMENT '0表示未读,1表示已读',
`type` enum('5','4','3','2','1','0') NOT NULL COMMENT '0官方系统消息 1求助id(被评论,或有人报名)2求助评论id3提问id4提问评论id5求助完成,获得分数',
`type_id` int(11) NOT NULL COMMENT '对应类型要跳转的id',
PRIMARY KEY (`message_id`)
) ENGINE=InnoDB AUTO_INCREMENT=52 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for question
-- ----------------------------
DROP TABLE IF EXISTS `question`;
CREATE TABLE `question` (
`question_id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`type` enum('1','2','3','5','4','0') NOT NULL DEFAULT '0' COMMENT '0提问 1吐槽 2表白 3其他 4寻主寻物 5组队',
`content` varchar(255) NOT NULL,
`picture` text,
`like` int(11) NOT NULL DEFAULT '0',
`browse` int(11) NOT NULL DEFAULT '0',
`reply` int(11) NOT NULL DEFAULT '0',
`is_complaint` enum('1','0') NOT NULL DEFAULT '0',
`create_time` datetime NOT NULL,
`update_time` datetime NOT NULL,
`delete_time` datetime NOT NULL,
`is_anonymous` enum('1','0') NOT NULL DEFAULT '0' COMMENT '是否匿名 0非1匿',
`title` varchar(255) DEFAULT NULL,
`publisher` enum('2','1','0') NOT NULL DEFAULT '0' COMMENT '0表示普通用户,1表示社团组织,2表示开发者',
PRIMARY KEY (`question_id`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for question_comment
-- ----------------------------
DROP TABLE IF EXISTS `question_comment`;
CREATE TABLE `question_comment` (
`question_comment_id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`content` varchar(255) NOT NULL,
`question_id` int(11) NOT NULL,
`prior` int(11) NOT NULL DEFAULT '-1',
`create_time` datetime NOT NULL,
`update_time` datetime NOT NULL,
`delete_time` datetime NOT NULL,
PRIMARY KEY (`question_comment_id`)
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for suggestion
-- ----------------------------
DROP TABLE IF EXISTS `suggestion`;
CREATE TABLE `suggestion` (
`suggestion_id` int(255) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`content` varchar(255) NOT NULL,
`create_time` datetime NOT NULL,
`update_time` datetime NOT NULL,
`delete_time` datetime NOT NULL,
`reply` varchar(255) DEFAULT NULL,
`status` enum('1','0') NOT NULL DEFAULT '0' COMMENT '0代表为未被回复',
PRIMARY KEY (`suggestion_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for user
-- ----------------------------
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`user_id` int(11) NOT NULL AUTO_INCREMENT,
`user_name` varchar(255) NOT NULL,
`wechat` varchar(255) NOT NULL COMMENT '此处手机号微信号都可以,能查找到即可',
`mobile` bigint(11) NOT NULL,
`is_cert` enum('1','2','0') NOT NULL DEFAULT '0' COMMENT '0表示未认证,1表示正在审核认证,2表示已认证(此处的认证为检验是否为校内成员)',
`is_official` enum('2','1','0') DEFAULT '0' COMMENT '0表示普通用户1表示社团组织2表示官方',
`nickname` varchar(255) NOT NULL,
`wechat_id` varchar(255) NOT NULL,
`photo` varchar(255) DEFAULT NULL COMMENT '存放头像地址',
`update_time` datetime NOT NULL,
`create_time` datetime NOT NULL,
`delete_time` datetime NOT NULL,
`role` enum('2','1','0') NOT NULL DEFAULT '0' COMMENT '0为普通用户 1为管理员 2为开发者兼管理员',
`new_message` enum('1','0') NOT NULL DEFAULT '0',
`gender` enum('1','0') NOT NULL COMMENT '0表示男性1表示女性',
`major` varchar(255) NOT NULL,
`grade` varchar(255) NOT NULL,
`qq` int(11) NOT NULL,
`intro` varchar(255) DEFAULT NULL COMMENT '个人介绍',
`score` int(11) NOT NULL DEFAULT '0' COMMENT '总积分',
`help_num` int(11) NOT NULL DEFAULT '0' COMMENT '总帮助次数',
`cert_photo` varchar(255) DEFAULT NULL,
PRIMARY KEY (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8;
|
--
-- Copyright 2018 Google Inc.
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
SET CLIENT_MIN_MESSAGES TO WARNING;
--Check if the table already exists.
--Return TRUE/FALSE based on whether tables exists or not.
CREATE OR REPLACE FUNCTION check_table_exists(table_name varchar)
RETURNS BOOLEAN AS $$
BEGIN
IF EXISTS(SELECT 1 FROM pg_tables WHERE tablename = table_name) THEN
RETURN TRUE;
ELSE
RETURN FALSE;
END IF;
END;
$$ LANGUAGE plpgsql;
--create tables 'db_table','poi_table','db_poi_table'
--and 'search_def_table' if they don't exist already.
CREATE OR REPLACE FUNCTION create_tables()
RETURNS VOID AS $$
BEGIN
IF NOT check_table_exists('db_table') THEN
CREATE TABLE db_table (
db_id serial,
host_name varchar(150) not null,
db_name varchar(300) not null,
db_pretty_name varchar(300) not null
);
alter table db_table add primary key (host_name, db_name);
RAISE INFO 'TABLE % CREATED', 'db_table';
END IF;
IF check_table_exists('poi_table') THEN
IF EXISTS(select column_name from information_schema.columns where table_name = 'poi_table' and column_name = 'poi_file_size' and data_type = 'integer') THEN
alter table poi_table alter column poi_file_size set data type bigint;
END IF;
ELSE
create table poi_table (
poi_id serial,
query_str varchar(500) not null,
host_name varchar(150) not null,
poi_file_path varchar(300) not null,
poi_file_size bigint not null,
style varchar(500) not null,
num_fields integer not null,
status integer not null
);
alter table poi_table add primary key (host_name, poi_file_path);
RAISE INFO 'TABLE % CREATED', 'poi_table';
END IF;
IF NOT check_table_exists('db_poi_table') THEN
create table db_poi_table (
db_id integer not null,
poi_id integer not null
);
alter table db_poi_table add primary key (db_id, poi_id);
RAISE INFO 'TABLE % CREATED', 'db_poi_table';
END IF;
IF NOT check_table_exists('search_def_table') THEN
create table search_def_table (
search_def_id serial,
search_def_name varchar(150) not null, -- search definition identifier/nickname.
search_def_content text not null
);
alter table search_def_table add primary key (search_def_name);
RAISE INFO 'TABLE % CREATED', 'search_def_table';
END IF;
END;
$$ LANGUAGE plpgsql;
-- search_def_content is
-- search_def_label, --label for search def block in html page.
-- service_url, --search service path/URL.
-- search_fields, --search fields: (label, suggestion, key) tuples.
-- --filed label is empty for all one-field searches.
-- additional_query_param,
-- additional_config_param
-- html_transform_url
-- kml_transform_url
-- result_type
-- suggest_server
--upsert_searchdef_content() performs either an insert or an update of the
--'search_def_table' table in 'gesearch' database based on whether
--the search_name already exists or not.
--In case the search_name already exists, a unique_violation exception occurs
--in which case an update statement is run.
CREATE OR REPLACE FUNCTION upsert_searchdef_content(search_name varchar, search_content varchar)
--search_name - This is the search definition name.
--search_content - This is the search definition content for search_name.
RETURNS VOID AS $$
BEGIN
INSERT INTO search_def_table(search_def_name, search_def_content) values(search_name, search_content);
EXCEPTION WHEN unique_violation THEN
UPDATE search_def_table SET search_def_content = search_content WHERE search_def_name = search_name;
END;
$$ LANGUAGE plpgsql;
--Function to trigger the 'upsert_searchdef_content' function.
--Any changes to the existing search services or
--any new system search services should be added here.
--run_searchdef_upsert() iterates through an array of search definition names
--and triggers the upsert_searchdef_content() passing the search definition name
--and the search definition content to be inserted/updated in the
--'search_def_table' table in the 'gesearch' database.
CREATE OR REPLACE FUNCTION run_searchdef_upsert()
RETURNS VOID AS $$
DECLARE
searchDefNames VARCHAR[6] := ARRAY['POISearch','GeocodingFederated', 'Coordinate', 'Places', 'ExampleSearch', 'SearchGoogle'];
searchDefContents VARCHAR[6] := ARRAY[
'{"additional_config_param": null, "label": "POI", "additional_query_param": "flyToFirstElement=true&displayKeys=location", "service_url": "POISearch", "result_type": "KML", "html_transform_url": "about:blank", "kml_transform_url": "about:blank", "suggest_server": "about:blank", "fields": [{"key": "q", "suggestion": "Point of interest", "label": null}]}',
'{"additional_config_param": null, "label": "Places or coordinates", "additional_query_param": "flyToFirstElement=true&displayKeys=location", "service_url": "/gesearch/FederatedSearch", "result_type": "KML", "html_transform_url": "about:blank", "kml_transform_url": "about:blank", "suggest_server": "about:blank", "fields": [{"key": "q", "suggestion": "City, country or lat, lng (e.g., 23.47, -132.67)", "label": null}]}',
'{"additional_config_param": null, "label": "Coordinates", "additional_query_param": "flyToFirstElement=true&displayKeys=location", "service_url": "/gesearch/CoordinateSearch", "result_type": "KML", "html_transform_url": "about:blank", "kml_transform_url": "about:blank", "suggest_server": "about:blank", "fields": [{"key": "q", "suggestion": "Latitude, longitude (e.g., 23.47, -132.67)", "label": null}]}',
'{"additional_config_param": null, "label": "Places", "additional_query_param": "flyToFirstElement=true&displayKeys=location", "service_url": "/gesearch/PlacesSearch", "result_type": "KML", "html_transform_url": "about:blank", "kml_transform_url": "about:blank", "suggest_server": "about:blank", "fields": [{"key": "q", "suggestion": "City, country", "label": null}]}',
'{"additional_config_param": null, "label": "Example search", "additional_query_param": "flyToFirstElement=true&displayKeys=location", "service_url": "/gesearch/ExampleSearch", "result_type": "KML", "html_transform_url": "about:blank", "kml_transform_url": "about:blank", "suggest_server": "about:blank", "fields": [{"key": "q", "suggestion": "San Francisco neighborhoods", "label": null}]}',
'{"additional_config_param": null, "label": "Search Google", "additional_query_param": "flyToFirstElement=true&displayKeys=location", "service_url": "/gesearch/SearchGoogle", "result_type": "XML", "html_transform_url": "https://www.google.com/earth/client/unifiedsearch/syndication_to_html_$[hl].xsl", "kml_transform_url": "https://www.google.com/earth/client/unifiedsearch/syndication_to_kml_$[hl].xsl", "suggest_server": "http://maps.google.com/maps/suggest", "fields": [{"key": "q", "suggestion": "5520 Quebec Place Washington", "label": null}]}'
];
BEGIN
FOR i IN 1..array_length(searchDefNames,1) LOOP
PERFORM upsert_searchdef_content(searchDefNames[i], searchDefContents[i]);
END LOOP;
END;
$$ LANGUAGE plpgsql;
--create tables.
SELECT create_tables();
--insert/update system search services.
SELECT run_searchdef_upsert();
|
INSERT INTO `skill_template` (`id`, `entry`, `name`, `min`, `max`) VALUES
(1, 6, 'Frost', 1, 1),
(2, 8, 'Fire', 1, 1),
(3, 26, 'Arms', 1, 1),
(4, 38, 'Combat', 1, 1),
(5, 39, 'Subtlety', 1, 1),
(6, 40, 'Poisons', 1, 350),
(7, 43, 'Swords', 1, 350),
(8, 44, 'Axes', 1, 350),
(9, 45, 'Bows', 1, 350),
(10, 46, 'Guns', 1, 350),
(11, 50, 'Beast Mastery', 1, 1),
(12, 51, 'Survival', 1, 1),
(13, 54, 'Maces', 1, 350),
(14, 55, 'Two Swords', 1, 350),
(15, 56, 'Holy', 1, 1),
(16, 78, 'Shadow', 1, 1),
(17, 95, 'Defense', 1, 350),
(18, 98, 'Language Common', 300, 300),
(19, 101, 'Racial Dwarven', 1, 1),
(20, 109, 'Language Orcish', 300, 300),
(21, 111, 'Language Dwarven', 300, 300),
(22, 113, 'Language Darnassian', 300, 300),
(23, 115, 'Language Taurahe', 300, 300),
(24, 118, 'Dual Wield', 1, 1),
(25, 124, 'R<NAME>', 1, 1),
(26, 125, 'Racial Orc', 1, 1),
(27, 126, 'Racial Night Elf', 1, 1),
(28, 129, 'First Aid', 1, 350),
(29, 134, 'Feral Combat', 1, 1),
(30, 137, 'Language Thalassian', 300, 300),
(31, 136, 'Staves', 1, 350),
(32, 138, 'Language Draconic', 300, 300),
(33, 139, 'Language Demon Tongue', 300, 300),
(34, 140, 'Language Titan', 300, 300),
(35, 141, 'Language Old Tongue', 300, 300),
(36, 142, 'Survival2', 1, 1),
(37, 148, 'Riding Horse', 1, 1),
(38, 149, 'Riding Wolf', 1, 1),
(39, 152, 'Riding Ram', 1, 1),
(40, 150, 'Riding Tiger', 1, 1),
(41, 155, 'Swimming', 1, 1),
(42, 160, 'Two Maces', 1, 350),
(43, 162, 'Unarmed', 1, 350),
(44, 163, 'Marksmanship', 1, 1),
(45, 164, 'Blacksmithing', 1, 350),
(46, 165, 'Leatherworking', 1, 350),
(47, 171, 'Alchemy', 1, 350),
(48, 172, 'Two Axes', 1, 350),
(49, 173, 'Daggers', 1, 350),
(50, 176, 'Thrown', 1, 350),
(51, 182, 'Herbalism', 1, 350),
(52, 183, 'Generic DND', 1, 1),
(53, 184, 'Retribution', 1, 1),
(54, 185, 'Cooking', 1, 350),
(55, 186, 'Mining', 1, 350),
(56, 188, 'Pet Imp', 1, 1),
(57, 189, 'Pet Felhunter', 1, 1),
(58, 197, 'Tailoring', 1, 350),
(59, 202, 'Engineering', 1, 350),
(60, 203, 'Pet Spider', 1, 1),
(61, 204, 'Pet Voidwalker', 1, 1),
(62, 205, 'Pet Succubus', 1, 1),
(63, 206, 'Pet Infernal', 1, 1),
(64, 207, 'Pet Doomguard', 1, 1),
(65, 208, 'Pet Wolf', 1, 1),
(66, 209, 'Pet Cat', 1, 1),
(67, 210, 'Pet Bear', 1, 1),
(68, 211, 'Pet Boar', 1, 1),
(69, 212, 'Pet Crocolisk', 1, 1),
(70, 213, 'Pet Carrion Bird', 1, 1),
(71, 215, 'Pet Gorilla', 1, 1),
(72, 214, 'Pet Crab', 1, 1),
(73, 217, 'Pet Raptor', 1, 1),
(74, 218, 'Pet Tallstrider', 1, 1),
(75, 220, 'Racial Undead', 1, 1),
(76, 226, 'Crossbows', 1, 350),
(77, 227, 'Spears', 1, 350),
(78, 229, 'Polearms', 1, 350),
(79, 333, 'Enchanting', 1, 350),
(80, 236, 'Pet Scorpid', 1, 1),
(81, 237, 'Arcane', 1, 1),
(82, 251, 'Pet Turtle', 1, 1),
(83, 253, 'Assassination', 1, 1),
(84, 256, 'Fury', 1, 1),
(85, 257, 'Protection', 1, 1),
(86, 267, 'Protection2 (Paladin)', 1, 1),
(87, 270, 'Pet Generic Hunter', 1, 1),
(88, 293, 'Plate Mail', 1, 1),
(89, 313, 'Language Gnomish', 300, 300),
(90, 315, 'Language Troll', 300, 300),
(91, 354, 'Demonology', 1, 1),
(92, 355, 'Affliction', 1, 1),
(93, 356, 'Fishing', 1, 350),
(94, 373, 'Enchancement', 1, 1),
(95, 374, 'Restoration', 1, 1),
(96, 375, 'Elemental Combat', 1, 1),
(97, 393, 'Skinning', 1, 350),
(98, 413, 'Mail', 1, 1),
(99, 414, 'Leather', 1, 1),
(100, 415, 'Cloth', 1, 1),
(101, 433, 'Shield', 1, 1),
(102, 733, 'Racial Troll', 1, 1),
(103, 753, 'Racial Gnome', 1, 1),
(104, 754, 'Racial Human', 1, 1),
(105, 756, 'Racial Blood Elf', 1, 1),
(106, 759, 'Language Draenei', 300, 300),
(107, 760, 'Racial Draenei', 1, 1),
(108, 673, 'Language Gutterspeak', 300, 300);
|
CREATE PROCEDURE SP40(OUT MYCOUNT INTEGER) SPECIFIC SP40_52514 LANGUAGE SQL NOT DETERMINISTIC READS SQL DATA NEW SAVEPOINT LEVEL BEGIN ATOMIC DECLARE MYVAR INT;SELECT COUNT(*)INTO MYCOUNT FROM TABLE226;SELECT COUNT(*)INTO MYCOUNT FROM TABLE340;SELECT COUNT(*)INTO MYCOUNT FROM TABLE345;SELECT COUNT(*)INTO MYCOUNT FROM VIEW93;SELECT COUNT(*)INTO MYCOUNT FROM VIEW92;SELECT COUNT(*)INTO MYCOUNT FROM VIEW41;CALL SP506(MYVAR);CALL SP198(MYVAR);CALL SP6(MYVAR);CALL SP196(MYVAR);END
GO |
<gh_stars>1000+
CREATE TABLE BPM_CONF_OPERATION(
ID BIGINT NOT NULL,
VALUE VARCHAR(200),
PRIORITY INT,
NODE_ID BIGINT,
CONSTRAINT PK_BPM_CONF_OPERATION PRIMARY KEY(ID),
CONSTRAINT FK_BPM_CONF_OPERATION_NODE FOREIGN KEY(NODE_ID) REFERENCES BPM_CONF_NODE(ID)
) ENGINE=INNODB CHARSET=UTF8;
|
ALTER TABLE targets ADD COLUMN modules text[];
|
<gh_stars>1-10
insert into table result select * from bigdatabench_dw_item where GOODS_AMOUNT > 750000;
|
<gh_stars>0
CREATE TABLE sys.dm_cryptographic_provider_properties
(
provider_id int,
guid uniqueidentifier,
provider_version nvarchar(128),
sqlcrypt_version nvarchar(128),
friendly_name nvarchar(1024),
authentication_type nvarchar(128),
symmetric_key_support tinyint,
symmetric_key_persistance tinyint,
symmetric_key_export tinyint,
symmetric_key_import tinyint,
asymmetric_key_support tinyint,
asymmetric_key_persistance tinyint,
asymmetric_key_export tinyint,
asymmetric_key_import tinyint
); |
<gh_stars>0
INSERT INTO employee (firstName, lastName, roleId, managerId)
VALUES
("Niki", "C", 1, null),
("Jon", "G", 2, 1),
("Chris", "H", 2, 1),
("Austin", "McLeod", 2, 1),
("Jon", "Saunders", 3, 6),
("Michel", "Cheng", 4, null),
("Dave", "Rubin", 5, null);
INSERT INTO department (deptName)
VALUES
("Engineering"),
("Executive"),
("Information Technology"),
("Legal"),
("Accounting"),
("Marketing"),
("Human Relations");
INSERT INTO role (title, salary, department_id)
VALUES
("Senior Software Engineer", 130000, 1),
("Junior Engineer", 85000, 1),
("CEO", 100000, 2),
("Database Administrator", 95000, 3),
("Lawyer", 180000, 4),
("Accounts R/P", 47000, 5),
("Social Media", 50000, 6),
("HR", 130000, 7); |
SELECT
DISTINCT JobTitle
FROM Employees |
-- phpMyAdmin SQL Dump
-- version 4.4.15.10
-- https://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: 18-Jan-2019 às 10:31
-- Versão do servidor: 5.5.60-MariaDB
-- PHP Version: 7.2.11
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 utf8mb4 */;
--
-- Database: `financeiro`
--
CREATE DATABASE IF NOT EXISTS `financeiro` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
USE `financeiro`;
-- --------------------------------------------------------
--
-- Estrutura da tabela `backup`
--
CREATE TABLE IF NOT EXISTS `backup` (
`id` bigint(20) NOT NULL,
`linha` int(11) NOT NULL,
`hostname` varchar(255) NOT NULL,
`abbrev_tipo` varchar(255) NOT NULL,
`dia_x` varchar(255) NOT NULL,
`mes_3` float NOT NULL,
`mes_2` float NOT NULL,
`mes_1` float NOT NULL,
`validacao` varchar(255) NOT NULL,
`status` tinyint(4) NOT NULL,
`mes` int(11) NOT NULL,
`ano` year(4) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Estrutura da tabela `planilha_consolidada`
--
CREATE TABLE IF NOT EXISTS `planilha_consolidada` (
`id` bigint(20) NOT NULL,
`hostname` varchar(255) NOT NULL,
`externalizacao` varchar(10) NOT NULL,
`diario1` float NOT NULL,
`diario2` float NOT NULL,
`diario3` float NOT NULL,
`diario4` float NOT NULL,
`diario5` float NOT NULL,
`diario6` float NOT NULL,
`semanal1` float NOT NULL,
`semanal2` float NOT NULL,
`semanal3` float NOT NULL,
`semanal4` float NOT NULL,
`mensal1` float NOT NULL,
`mensal2` float NOT NULL,
`mensal3` float NOT NULL,
`anual1` float NOT NULL,
`anual2` float NOT NULL,
`anual3` float NOT NULL,
`anual4` float NOT NULL,
`anual5` float NOT NULL,
`total` float NOT NULL,
`replicacao` varchar(10) NOT NULL,
`high_mes_atual` float NOT NULL,
`medium_mes_atual` float NOT NULL,
`priority` varchar(255) NOT NULL,
`obs` text NOT NULL,
`jobs` bigint(20) NOT NULL,
`high_mes_anterior` float NOT NULL,
`medium_mes_anterior` float NOT NULL,
`diferenca_high` float NOT NULL,
`diferenca_medium` float NOT NULL,
`descricao_validacao` text NOT NULL,
`mes` int(11) NOT NULL,
`ano` year(4) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `backup`
--
ALTER TABLE `backup`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `planilha_consolidada`
--
ALTER TABLE `planilha_consolidada`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `backup`
--
ALTER TABLE `backup`
MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `planilha_consolidada`
--
ALTER TABLE `planilha_consolidada`
MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
<reponame>ivconsult/eNeg
CREATE PROC [dbo].[uspNegotiationOrganizationDelete]
@NegotiationOrganizationID uniqueidentifier
AS
SET NOCOUNT ON
SET XACT_ABORT ON
BEGIN TRAN
UPDATE [dbo].[NegotiationOrganization]
SET
Deleted=1,
DeletedOn=GETDATE()
WHERE [NegotiationOrganizationID] = @NegotiationOrganizationID;
COMMIT
GO |
<reponame>jake-hansen/agora
rename table meeting_providers to meeting_platforms; |
<reponame>kevinGarcia15/mecanicamendoza
INSERT INTO `car_color_dbs` (`color_id`,`color_name`) VALUES
(1,' BLANCO'),
(2,'NEGRO'),
(3,'PLATA'),
(4,'GRIS'),
(5,'AZUL'),
(6,'ROJO'),
(7,'BEIGE'),
(8,'AMARILLO'),
(9,'VERDE'),
(10,'MORADO'),
(11,'CORINTO');
|
<gh_stars>1-10
SELECT val FROM $this->table WHERE dirname = :dirname
SELECT table_name FROM all_tables');
SELECT val FROM $this->table WHERE filename = :filename AND filesize = '-1' AND filetime = '-1' AND analyzetime = '-1'
CREATE TABLE IF NOT EXISTS `%PREFIX%processes` ( `id` int unsigned NOT NULL auto_increment, `class` varchar(255) collate utf8_unicode_ci NOT NULL, `user_id` int unsigned NOT NULL, `pid` int unsigned default NULL, `status` enum('starting', 'in progress', 'completed', 'paused', 'error', 'stopped') collate utf8_unicode_ci NOT NULL, `args` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `started` timestamp NOT NULL DEFAULT '2000-01-01 00:00:00', `stopped` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `user_id` (`user_id`), KEY `pid` (`pid`), KEY `started` ( `started` ), KEY `stopped` ( `stopped` ))
SELECT * FROM outer_tbl WHERE \"ZEND_DB_ROWNUM\" BETWEEN $start AND $end";
CREATE INDEX tag_id_index ON tag(id)');
SELECT salt FROM omeka_users WHERE id = 1
SELECT * FROM (SELECT
CREATE TABLE IF NOT EXISTS $this->table (filename VARCHAR(255) NOT NULL DEFAULT '', dirname VARCHAR(255) NOT NULL DEFAULT '', filesize INT(11) NOT NULL DEFAULT '0', filetime INT(11) NOT NULL DEFAULT '0', analyzetime INT(11) NOT NULL DEFAULT '0', val text not null, PRIMARY KEY (filename, filesize, filetime))
CREATE TABLE IF NOT EXISTS `%PREFIX%search_texts` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `record_type` varchar(30) COLLATE utf8_unicode_ci NOT NULL, `record_id` int(10) unsigned NOT NULL, `public` tinyint(1) NOT NULL, `title` mediumtext COLLATE utf8_unicode_ci, `text` longtext COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `record_name` (`record_type`,`record_id`), FULLTEXT KEY `text` (`text`))
CREATE TABLE queue( queue_id serial NOT NULL, queue_name character varying(100) NOT NULL, timeout smallint NOT NULL DEFAULT 30, CONSTRAINT queue_pk PRIMARY KEY (queue_id))
SELECT url FROM omeka_users_activations LIMIT 1
CREATE TABLE version (num INTEGER PRIMARY KEY)
CREATE TABLE IF NOT EXISTS `queue` ( `queue_id` int(10) unsigned NOT NULL auto_increment, `queue_name` varchar(100) NOT NULL, `timeout` smallint(5) unsigned NOT NULL default '30', PRIMARY KEY (`queue_id`))
CREATE TABLE IF NOT EXISTS `%PREFIX%plugins` ( `id` int unsigned NOT NULL auto_increment, `name` varchar(255) collate utf8_unicode_ci NOT NULL, `active` tinyint NOT NULL, `version` varchar(20) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`), KEY `active_idx` (`active`))
SELECT lastModified,expire FROM cache WHERE id='$id'
CREATE TABLE IF NOT EXISTS `message` ( `message_id` bigint(20) unsigned NOT NULL auto_increment, `queue_id` int(10) unsigned NOT NULL, `handle` char(32) default NULL, `body` varchar(8192) NOT NULL, `md5` char(32) NOT NULL, `timeout` decimal(14,4) unsigned default NULL, `created` int(10) unsigned NOT NULL, PRIMARY KEY (`message_id`), UNIQUE KEY `message_handle` (`handle`), KEY `message_queueid` (`queue_id`))
SELECT COUNT(id) FROM $db->ElementText WHERE html = 1 AND
CREATE INDEX cache_id_expire_index ON cache(id, expire)');
CREATE TABLE IF NOT EXISTS `%PREFIX%element_sets` ( `id` int unsigned NOT NULL auto_increment, `record_type` varchar(50) default NULL, `name` varchar(255) collate utf8_unicode_ci NOT NULL, `description` text collate utf8_unicode_ci, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`), KEY `record_type` (`record_type`))
SELECT name, value FROM $db->Option
SELECT id FROM cache WHERE expire>0 AND expire<=$mktime)");
CREATE TABLE IF NOT EXISTS `%PREFIX%element_texts` ( `id` int unsigned NOT NULL auto_increment, `record_id` int unsigned NOT NULL, `record_type` varchar(50) NOT NULL, `element_id` int unsigned NOT NULL, `html` tinyint NOT NULL, `text` mediumtext collate utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `record_type_record_id` (`record_type`, `record_id`), KEY `element_id` (`element_id`), KEY `text` (`text`(20)))
CREATE TABLE tag (name TEXT, id TEXT)
SELECT value FROM omeka_options WHERE name = 'omeka_version'
SELECT public FROM {$this->db->Item} WHERE id = {$this->item->id}
SELECT name FROM sysobjects WHERE type = 'U' ORDER BY name
SELECT COUNT(*) FROM $tableName
CREATE TABLE cache (id TEXT PRIMARY KEY, content BLOB, lastModified INTEGER, expire INTEGER)
CREATE TABLE IF NOT EXISTS `%PREFIX%users_activations` ( `id` int unsigned NOT NULL auto_increment, `user_id` int unsigned NOT NULL, `url` varchar(100) collate utf8_unicode_ci default NULL, `added` datetime default NULL, PRIMARY KEY (`id`))
SELECT password FROM omeka_users WHERE id = 1
CREATE TABLE `{$this->db->prefix}keys` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(11) unsigned NOT NULL, `label` varchar(100) NOT NULL, `key` char(40) NOT NULL, `ip` varbinary(16) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `key` (`key`))
CREATE TABLE IF NOT EXISTS `{$this->db->prefix}sessions` ( `id` char(32), `modified` int, `lifetime` int, `data` text, PRIMARY KEY (`id`))
CREATE TABLE IF NOT EXISTS `%PREFIX%items` ( `id` int unsigned NOT NULL auto_increment, `item_type_id` int unsigned default NULL, `collection_id` int unsigned default NULL, `featured` tinyint NOT NULL, `public` tinyint NOT NULL, `modified` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, `added` timestamp NOT NULL DEFAULT '2000-01-01 00:00:00', `owner_id` int unsigned default NULL, PRIMARY KEY (`id`), KEY `item_type_id` (`item_type_id`), KEY `collection_id` (`collection_id`), KEY `public` (`public`), KEY `featured` (`featured`), KEY `owner_id` (`owner_id`))
CREATE TABLE message( message_id bigserial NOT NULL, queue_id integer, handle character(32), body character varying(8192) NOT NULL, md5 character(32) NOT NULL, timeout double precision, created integer, CONSTRAINT message_pk PRIMARY KEY (message_id), CONSTRAINT message_ibfk_1 FOREIGN KEY (queue_id) REFERENCES queue (queue_id) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE)
CREATE TABLE message( message_id INTEGER PRIMARY KEY AUTOINCREMENT, queue_id INTEGER PRIMARY KEY, handle CHAR(32), body VARCHAR(8192) NOT NULL, md5 CHAR(32) NOT NULL, timeout REAL, created INTEGER, FOREIGN KEY (queue_id) REFERENCES queue(queue_id))
CREATE TABLE IF NOT EXISTS `%PREFIX%files` ( `id` int unsigned NOT NULL auto_increment, `item_id` int unsigned NOT NULL, `order` int(10) unsigned DEFAULT NULL, `size` int unsigned NOT NULL, `has_derivative_image` tinyint(1) NOT NULL, `authentication` char(32) collate utf8_unicode_ci default NULL, `mime_type` varchar(255) collate utf8_unicode_ci default NULL, `type_os` varchar(255) collate utf8_unicode_ci default NULL, `filename` text collate utf8_unicode_ci NOT NULL, `original_filename` text collate utf8_unicode_ci NOT NULL, `modified` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, `added` timestamp NOT NULL DEFAULT '2000-01-01 00:00:00', `stored` tinyint(1) NOT NULL default '0', `metadata` text collate utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `item_id` (`item_id`))
CREATE TABLE `test_table` (`id` int(11), `name` varchar(20))
UPDATE cache SET lastModified=$time, expire=$time WHERE id=$id
CREATE TABLE IF NOT EXISTS `%PREFIX%collections` ( `id` int unsigned NOT NULL auto_increment, `public` tinyint NOT NULL, `featured` tinyint NOT NULL, `added` timestamp NOT NULL DEFAULT '2000-01-01 00:00:00', `modified` timestamp NOT NULL DEFAULT '2000-01-01 00:00:00', `owner_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `public` (`public`), KEY `featured` (`featured`), KEY `owner_id` (`owner_id`))
CREATE INDEX tag_name_index ON tag(name)');
SELECT name FROM sqlite_master WHERE type='table'
SELECT public FROM $db->Item WHERE id = {$item->id}
SELECT * FROM outer_tbl WHERE \"ZEND_DB_ROWNUM\" >= $start";
SELECT lastModified FROM cache WHERE id='$id' AND (expire=0 OR expire>
CREATE TABLE IF NOT EXISTS `%PREFIX%users` ( `id` int unsigned NOT NULL auto_increment, `username` varchar(30) collate utf8_unicode_ci NOT NULL, `name` text collate utf8_unicode_ci NOT NULL, `email` text collate utf8_unicode_ci NOT NULL, `password` varchar(40) collate utf8_unicode_ci default NULL, `salt` varchar(16) collate utf8_unicode_ci default NULL, `active` tinyint NOT NULL, `role` varchar(40) collate utf8_unicode_ci NOT NULL default 'default', PRIMARY KEY (`id`), UNIQUE KEY `username` (`username`), KEY `active_idx` (`active`))
SELECT * FROM (SELECT TOP ' . $count . ' * FROM (' . $sql . ') AS inner_tbl';
SELECT num FROM version
SELECT val FROM $this->table WHERE filename = :filename AND filesize = :filesize AND filetime = :filetime
SELECT content FROM cache WHERE id='$id'
CREATE TABLE IF NOT EXISTS `%PREFIX%options` ( `id` int unsigned NOT NULL auto_increment, `name` varchar(200) collate utf8_unicode_ci NOT NULL, `value` text collate utf8_unicode_ci, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`))
CREATE TABLE IF NOT EXISTS `%PREFIX%elements` ( `id` int unsigned NOT NULL auto_increment, `element_set_id` int unsigned NOT NULL, `order` int unsigned default NULL, `name` varchar(255) collate utf8_unicode_ci NOT NULL, `description` text collate utf8_unicode_ci, `comment` text collate utf8_unicode_ci, PRIMARY KEY (`id`), UNIQUE KEY `name_element_set_id` (`element_set_id`,`name`), UNIQUE KEY `order_element_set_id` (`element_set_id`,`order`), KEY `element_set_id` (`element_set_id`))
SELECT id FROM cache
SELECT version FROM " . $this->_getMigrationTableName());
CREATE TABLE IF NOT EXISTS $this->table (filename VARCHAR(255) DEFAULT '', dirname VARCHAR(255) DEFAULT '', filesize INT(11) DEFAULT '0', filetime INT(11) DEFAULT '0', analyzetime INT(11) DEFAULT '0', val text, PRIMARY KEY (filename, filesize, filetime))
CREATE TABLE IF NOT EXISTS `%PREFIX%tags` ( `id` int unsigned NOT NULL auto_increment, `name` varchar(255) collate utf8_unicode_ci default NULL, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`))
SELECT COUNT(id) FROM $db->Element WHERE name = ? AND element_set_id = ?
SELECT service_level, fixpack_num FROM TABLE (sysproc.env_get_inst_info()) as INSTANCEINFO');
CREATE TABLE IF NOT EXISTS `%PREFIX%item_types_elements` ( `id` int unsigned NOT NULL auto_increment, `item_type_id` int unsigned NOT NULL, `element_id` int unsigned NOT NULL, `order` int unsigned default NULL, PRIMARY KEY (`id`), UNIQUE KEY `item_type_id_element_id` (`item_type_id`,`element_id`), KEY `item_type_id` (`item_type_id`), KEY `element_id` (`element_id`))
CREATE TABLE queue( queue_id INTEGER PRIMARY KEY AUTOINCREMENT, queue_name VARCHAR(100) NOT NULL, timeout INTEGER NOT NULL DEFAULT 30)
CREATE TABLE IF NOT EXISTS `{$this->db->SearchText}` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `record_name` varchar(30) COLLATE utf8_unicode_ci NOT NULL, `record_id` int(10) unsigned NOT NULL, `public` BOOLEAN NOT NULL, `title` TINYTEXT NULL DEFAULT NULL, `text` longtext COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `record_name` (`record_name`,`record_id`), FULLTEXT KEY `text` (`text`))
CREATE TABLE IF NOT EXISTS `%PREFIX%item_types` ( `id` int unsigned NOT NULL auto_increment, `name` varchar(255) collate utf8_unicode_ci NOT NULL, `description` text collate utf8_unicode_ci, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`))
SELECT name FROM tag WHERE id='$id'
SELECT * FROM `{$db->Key}` WHERE `key` = ?
CREATE TABLE IF NOT EXISTS `%PREFIX%records_tags` ( `id` int unsigned NOT NULL auto_increment, `record_id` int unsigned NOT NULL, `record_type` varchar(50) collate utf8_unicode_ci NOT NULL default '', `tag_id` int unsigned NOT NULL, `time` timestamp NOT NULL default CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `tag` (`record_type`, `record_id`,`tag_id`), KEY `tag_id` (`tag_id`))
SELECT expire FROM cache WHERE id='$id' AND (expire=0 OR expire>
SELECT value FROM omeka_options WHERE name = 'migration'
CREATE TABLE IF NOT EXISTS `%PREFIX%sessions` (`id` varchar(128),`modified` bigint,`lifetime` int,`data` blob,PRIMARY KEY (`id`))
CREATE TABLE IF NOT EXISTS `$db->prefix" . self::MIGRATION_TABLE_NAME . "` (`version` varchar(16) NOT NULL, UNIQUE KEY `unique_schema_migrations` (`version`))
SELECT id FROM cache WHERE (expire=0 OR expire>" . time() . ")
CREATE TABLE IF NOT EXISTS `%PREFIX%keys` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(11) unsigned NOT NULL, `label` varchar(100) NOT NULL, `key` char(40) NOT NULL, `ip` varbinary(16) DEFAULT NULL, `accessed` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `key` (`key`))
|
ALTER TABLE contact_person_profile
ADD COLUMN photo_url varchar (1030); |
create database tp_db;
CREATE TABLE cri_crianca
(
cri_cod_crianca SERIAL PRIMARY KEY,
cri_nome VARCHAR(70) NOT NULL,
cri_idade INT(3) UNSIGNED NOT NULL,
cri_escola VARCHAR(70) NOT NULL,
cri_ano_escolar VARCHAR(50) NOT NULL,
cri_responsavel VARCHAR(100) NOT NULL,
cri_responsavel2 VARCHAR(100) DEFAULT '-',
cri_periodo VARCHAR(50) NOT NULL,
cri_telefone BIGINT(15) UNSIGNED NOT NULL,
cri_telefone2 BIGINT(15) UNSIGNED
);
CREATE TABLE pag_pagamento
(
pag_cod_pagamento SERIAL PRIMARY KEY,
pag_valor_pago DECIMAL(15,2) UNSIGNED NOT NULL,
pag_data DATETIME(6) NOT NULL,
cri_cod_crianca BIGINT UNSIGNED NOT NULL,
FOREIGN KEY(cri_cod_crianca) REFERENCES cri_crianca(cri_cod_crianca)
);
CREATE TABLE senha
(
senha_id SERIAL PRIMARY KEY,
senha VARCHAR(8) NOT NULL
);
|
<filename>municipal-services/pgr-services/src/main/resources/db/migration/main/V20200717133931__create_table.sql
CREATE TABLE eg_pgr_service_v2(
id character varying(64),
tenantId character varying(256),
serviceCode character varying(256) NOT NULL,
serviceRequestId character varying(256),
description character varying(4000) NOT NULL,
accountId character varying(256),
additionalDetails JSONB,
applicationStatus character varying(128),
rating smallint,
source character varying(256),
createdby character varying(256) NOT NULL,
createdtime bigint NOT NULL,
lastmodifiedby character varying(256),
lastmodifiedtime bigint,
CONSTRAINT uk_eg_pgr_service_v2 UNIQUE (id),
CONSTRAINT pk_eg_pgr_serviceReq_v2 PRIMARY KEY (tenantId,serviceRequestId)
);
CREATE TABLE eg_pgr_address_v2 (
tenantId CHARACTER VARYING(256) NOT NULL,
id CHARACTER VARYING(256) NOT NULL,
parentid CHARACTER VARYING(256) NOT NULL,
doorno CHARACTER VARYING(128),
plotno CHARACTER VARYING(256),
buildingName CHARACTER VARYING(1024),
street CHARACTER VARYING(1024),
landmark CHARACTER VARYING(1024),
city CHARACTER VARYING(512),
pincode CHARACTER VARYING(16),
locality CHARACTER VARYING(128) NOT NULL,
district CHARACTER VARYING(256),
region CHARACTER VARYING(256),
state CHARACTER VARYING(256),
country CHARACTER VARYING(512),
latitude NUMERIC(9,6),
longitude NUMERIC(10,7),
createdby CHARACTER VARYING(128) NOT NULL,
createdtime BIGINT NOT NULL,
lastmodifiedby CHARACTER VARYING(128),
lastmodifiedtime BIGINT,
additionaldetails JSONB,
CONSTRAINT pk_eg_pgr_address_v2 PRIMARY KEY (id),
CONSTRAINT fk_eg_pgr_address_v2 FOREIGN KEY (parentid) REFERENCES eg_pgr_service_v2 (id)
);
|
IF NOT EXISTS (
select * from INFORMATION_SCHEMA.TABLES
where TABLE_SCHEMA='sa' and TABLE_NAME='sa_virta_otp_okmaloittaneetopintopisteetyo'
) BEGIN
CREATE TABLE sa.sa_virta_otp_okmaloittaneetopintopisteetyo(
id bigint IDENTITY(1,1) NOT NULL,
kk varchar(2) null,
fuksi varchar(2) NULL,
olosyys varchar(2) NULL,
kirtu varchar(5) NULL,
opoik varchar(5) NULL,
koulk varchar(6) NULL,
opsyksy int NULL,
opiskelijaavain nvarchar(100) NULL,
opiskeluoikeusavain nvarchar(100) NULL,
opiskelijaId bigint NULL,
opiskeluoikeusId bigint NULL,
luoja nvarchar(255) NULL,
luontipaivamaara bigint null, --date
loadtime datetime2(4) NOT NULL,
source nvarchar(255) NULL,
username nvarchar(128) NOT NULL,
CONSTRAINT PK__sa_virta_otp_okmaloittaneetopintopisteetyo PRIMARY KEY CLUSTERED (id ASC)
)
;
ALTER TABLE sa.sa_virta_otp_okmaloittaneetopintopisteetyo
ADD CONSTRAINT DF__sa_virta_otp_okmaloittaneetopintopisteetyo__loadtime
DEFAULT (getdate()) FOR loadtime
;
ALTER TABLE sa.sa_virta_otp_okmaloittaneetopintopisteetyo
ADD CONSTRAINT DF__sa_virta_otp_okmaloittaneetopintopisteetyo__username
DEFAULT (suser_name()) FOR username
;
END
|
SELECT prd.name, pvd.name, ctg.name
FROM providers pvd
INNER JOIN products prd ON prd.id_providers = pvd.id
INNER JOIN categories ctg ON prd.id_categories = ctg.id
WHERE pvd.name LIKE '%Sansul SA%' AND ctg.name LIKE '%Imported%'
|
<gh_stars>10-100
\set VERBOSITY terse
set client_min_messages to ERROR;
INSERT INTO spatial_ref_sys ( auth_name, auth_srid, srid, proj4text ) VALUES ( 'EPSG', 4326, 4326, '+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs' );
-- Import city_data
\i load_topology-4326.sql
-- Utility functions for the test {
CREATE TEMP TABLE orig_node_summary(node_id integer, containing_face integer);
CREATE OR REPLACE FUNCTION save_nodes()
RETURNS VOID
AS $$
TRUNCATE TABLE orig_node_summary;
INSERT INTO orig_node_summary
SELECT node_id,
containing_face
FROM city_data.node;
$$ LANGUAGE 'sql';
CREATE OR REPLACE FUNCTION check_nodes(lbl text)
RETURNS TABLE (l text, o text, node_id int,
containing_face int)
AS $$
DECLARE
sql1 text;
sql2 text;
q text;
BEGIN
sql1 := 'node_id,
containing_face
FROM city_data.node';
sql2 := 'node_id, containing_face
FROM orig_node_summary';
q := '(' ||
'SELECT ' || quote_literal(lbl) || ',''+'' as op,' || sql1 ||
' EXCEPT ' ||
'SELECT ' || quote_literal(lbl) || ',''+'',' || sql2 ||
') UNION ( ' ||
'SELECT ' || quote_literal(lbl) || ',''-'',' || sql2 ||
' EXCEPT ' ||
'SELECT ' || quote_literal(lbl) || ',''-'',' || sql1 ||
') ORDER BY node_id, op';
RAISE DEBUG '%', q;
RETURN QUERY EXECUTE q;
END
$$ LANGUAGE 'plpgsql';
CREATE TEMP TABLE orig_edge_summary (edge_id integer, next_left_edge integer, next_right_edge integer, left_face integer, right_face integer);
CREATE OR REPLACE FUNCTION save_edges()
RETURNS VOID
AS $$
TRUNCATE orig_edge_summary;
INSERT INTO orig_edge_summary
SELECT edge_id,
next_left_edge, next_right_edge, left_face, right_face
FROM city_data.edge_data;
$$ LANGUAGE 'sql';
CREATE OR REPLACE FUNCTION check_edges(lbl text)
RETURNS TABLE (l text, o text, edge_id int,
next_left_edge int, next_right_edge int,
left_face int, right_face int)
AS $$
DECLARE
rec RECORD;
sql1 text;
sql2 text;
q text;
BEGIN
sql1 := 'edge_id,
next_left_edge, next_right_edge, left_face, right_face
FROM city_data.edge_data';
sql2 := 'edge_id,
next_left_edge, next_right_edge, left_face, right_face
FROM orig_edge_summary';
q := '(' ||
'SELECT ' || quote_literal(lbl) || ',''+'' as op,' || sql1 ||
' EXCEPT ' ||
'SELECT ' || quote_literal(lbl) || ',''+'',' || sql2 ||
') UNION ( ' ||
'SELECT ' || quote_literal(lbl) || ',''-'',' || sql2 ||
' EXCEPT ' ||
'SELECT ' || quote_literal(lbl) || ',''-'',' || sql1 ||
') order by edge_id, op';
RAISE DEBUG '%', q;
RETURN QUERY EXECUTE q;
END
$$ LANGUAGE 'plpgsql';
CREATE TEMP TABLE orig_face_summary(face_id integer, mbr geometry);
CREATE OR REPLACE FUNCTION save_faces()
RETURNS VOID
AS $$
TRUNCATE orig_face_summary;
INSERT INTO orig_face_summary
SELECT face_id, mbr
FROM city_data.face;
$$ LANGUAGE 'sql';
CREATE OR REPLACE FUNCTION check_faces(lbl text)
RETURNS TABLE (l text, o text, face_id int, mbr text)
AS $$
DECLARE
sql1 text;
sql2 text;
q text;
BEGIN
sql1 := 'face_id, ST_AsEWKT(mbr) FROM city_data.face';
sql2 := 'face_id, ST_AsEWKT(mbr) FROM orig_face_summary';
q := '(' ||
'SELECT ' || quote_literal(lbl) || ',''+'' as op,' || sql1 ||
' EXCEPT ' ||
'SELECT ' || quote_literal(lbl) || ',''+'',' || sql2 ||
') UNION ( ' ||
'SELECT ' || quote_literal(lbl) || ',''-'',' || sql2 ||
' EXCEPT ' ||
'SELECT ' || quote_literal(lbl) || ',''-'',' || sql1 ||
') ORDER BY face_id, op';
RAISE DEBUG '%', q;
RETURN QUERY EXECUTE q;
END
$$ language 'plpgsql';
-- Runs a query and returns whether an error was thrown
-- Useful when the error message depends on the execution plan taken (parallelism)
CREATE OR REPLACE FUNCTION catch_error(query text)
RETURNS bool
AS $$
BEGIN
EXECUTE query;
RETURN FALSE;
EXCEPTION
WHEN OTHERS THEN
RETURN TRUE;
END
$$ LANGUAGE 'plpgsql';
-- }
-- Save current state
SELECT save_edges(); SELECT save_faces(); SELECT save_nodes();
-- Bogus calls -- {
SELECT topology.ST_RemEdgeModFace('city_data', null);
SELECT topology.ST_RemEdgeModFace(null, 1);
SELECT topology.ST_RemEdgeModFace('', 1);
SELECT topology.ST_RemEdgeModFace('city_data', 0); -- non-existent
SELECT topology.ST_RemEdgeModFace('city_data', 143); -- non-existent
SELECT * FROM check_nodes('bogus');
SELECT * FROM check_edges('bogus');
SELECT * FROM check_faces('bogus');
-- }
-- Remove isolated edge
SELECT 'RM(25)', topology.ST_RemEdgeModFace('city_data', 25);
SELECT * FROM check_nodes('RM(25)/nodes');
SELECT * FROM check_edges('RM(25)/edges');
SELECT * FROM check_faces('RM(25)/faces');
SELECT save_edges(); SELECT save_faces(); SELECT save_nodes();
-- Remove edge not forming a ring
SELECT 'RM(4)', topology.ST_RemEdgeModFace('city_data', 4);
SELECT * FROM check_nodes('RM(4)/nodes');
SELECT * FROM check_edges('RM(4)/edges');
SELECT * FROM check_faces('RM(4)/faces');
SELECT save_edges(); SELECT save_faces(); SELECT save_nodes();
-- Heal faces 1 and 9 -- should drop them and create a new face
-- New face has the same mbr as old one
SELECT 'RM(26)', topology.ST_RemEdgeModFace('city_data', 26);
SELECT * FROM check_nodes('RM(26)/nodes');
SELECT * FROM check_edges('RM(26)/edges');
SELECT * FROM check_faces('RM(26)/faces');
SELECT save_edges(); SELECT save_faces(); SELECT save_nodes();
-- Heal faces 3 and 6 -- should drop them and create a new face
-- New face has a mbr being the union of the dropped faces
SELECT 'RM(9)', topology.ST_RemEdgeModFace('city_data', 9);
SELECT * FROM check_nodes('RM(9)/nodes');
SELECT * FROM check_edges('RM(9)/edges');
SELECT * FROM check_faces('RM(9)/faces');
SELECT save_edges(); SELECT save_faces(); SELECT save_nodes();
-- Heal faces 4 and 11 -- should drop them and create a new face
-- New face has a mbr being the union of the dropped faces
SELECT 'RM(19)', topology.ST_RemEdgeModFace('city_data', 19);
SELECT * FROM check_nodes('RM(19)/nodes');
SELECT * FROM check_edges('RM(19)/edges');
SELECT * FROM check_faces('RM(19)/faces');
SELECT save_edges(); SELECT save_faces(); SELECT save_nodes();
-- Heal faces 7 and 12 -- should drop them and create a new face
-- New face has a mbr equal to previous face 12.
-- This healing leaves edge 20 dangling
SELECT 'RM(10)', topology.ST_RemEdgeModFace('city_data', 10);
SELECT * FROM check_nodes('RM(10)/nodes');
SELECT * FROM check_edges('RM(10)/edges');
SELECT * FROM check_faces('RM(10)/faces');
SELECT save_edges(); SELECT save_faces(); SELECT save_nodes();
-- Drop dangling edge, no faces change
SELECT 'RM(20)', topology.ST_RemEdgeModFace('city_data', 20);
SELECT * FROM check_nodes('RM(20)/nodes');
SELECT * FROM check_edges('RM(20)/edges');
SELECT * FROM check_faces('RM(20)/faces');
SELECT save_edges(); SELECT save_faces(); SELECT save_nodes();
-- Universe flooding existing face
SELECT 'RM(15)', topology.ST_RemEdgeModFace('city_data', 15);
SELECT * FROM check_nodes('RM(15)/nodes');
SELECT * FROM check_edges('RM(15)/edges');
SELECT * FROM check_faces('RM(15)/faces');
SELECT save_edges(); SELECT save_faces(); SELECT save_nodes();
-- Universe flooding existing single-edge (closed) face
-- with dangling edge starting from the closing node and
-- going inside.
-- Closed edge is in CW order.
SELECT 'RM(2)', topology.ST_RemEdgeModFace('city_data', 2);
SELECT * FROM check_nodes('RM(2)/nodes');
SELECT * FROM check_edges('RM(2)/edges');
SELECT * FROM check_faces('RM(2)/faces');
SELECT save_edges(); SELECT save_faces(); SELECT save_nodes();
-- Universe flooding existing single-edge (closed) face
-- with dangling edge coming from inside and ending to the closing node
-- Closed edge is in CW order.
-- Requires reconstructing the outer ring
SELECT 'NE(27)', topology.ST_AddEdgeNewFaces('city_data', 3, 3, 'SRID=4326;LINESTRING(25 35, 30 27, 20 27, 25 35)');
SELECT * FROM check_nodes('NE(27)/nodes');
SELECT * FROM check_edges('NE(27)/edges');
SELECT * FROM check_faces('NE(27)/faces');
SELECT save_edges(); SELECT save_faces(); SELECT save_nodes();
-- Here's the removal
SELECT 'RM(27)', topology.ST_RemEdgeModFace('city_data', 27);
SELECT * FROM check_nodes('RM(27)/nodes');
SELECT * FROM check_edges('RM(27)/edges');
SELECT * FROM check_faces('RM(27)/faces');
SELECT save_edges(); SELECT save_faces(); SELECT save_nodes();
-- Universe flooding existing single-edge (closed) face
-- with dangling edge coming from inside and ending to the closing node
-- Closed edge is in CCW order.
-- Requires reconstructing the outer ring
SELECT 'NE(28)', topology.ST_AddEdgeNewFaces('city_data', 3, 3, 'SRID=4326;LINESTRING(25 35, 20 27, 30 27, 25 35)');
SELECT * FROM check_nodes('NE(28)/nodes');
SELECT * FROM check_edges('NE(28)/edges');
SELECT * FROM check_faces('NE(28)/faces');
SELECT save_edges(); SELECT save_faces(); SELECT save_nodes();
-- Here's the removal
SELECT 'RM(28)', topology.ST_RemEdgeModFace('city_data', 28);
SELECT * FROM check_nodes('RM(28)/nodes');
SELECT * FROM check_edges('RM(28)/edges');
SELECT * FROM check_faces('RM(28)/faces');
SELECT save_edges(); SELECT save_faces(); SELECT save_nodes();
-- Universe flooding existing single-edge (closed) face
-- with dangling edge starting from closing node and going inside.
-- Closed edge is in CCW order.
-- Requires reconstructing the outer ring
SELECT 'NE(29)', topology.ST_AddEdgeNewFaces('city_data', 2, 2, 'SRID=4326;LINESTRING(25 30, 28 37, 22 37, 25 30)');
SELECT * FROM check_nodes('NE(29)/nodes');
SELECT * FROM check_edges('NE(29)/edges');
SELECT * FROM check_faces('NE(29)/faces');
SELECT save_edges(); SELECT save_faces(); SELECT save_nodes();
-- Here's the removal
SELECT 'RM(29)', topology.ST_RemEdgeModFace('city_data', 29);
SELECT * FROM check_nodes('RM(29)/nodes');
SELECT * FROM check_edges('RM(29)/edges');
SELECT * FROM check_faces('RM(29)/faces');
SELECT save_edges(); SELECT save_faces(); SELECT save_nodes();
-- Universe flooding existing single-edge (closed) face
-- with dangling edges both inside and outside
-- Closed edge in CW order.
-- Requires adding an edge and reconstructing the outer ring
SELECT 'NE(30)', topology.ST_AddEdgeNewFaces('city_data', 4, 3, 'SRID=4326;LINESTRING(20 37, 25 35)');
SELECT 'NE(31)', topology.ST_AddEdgeNewFaces('city_data', 3, 3, 'SRID=4326;LINESTRING(25 35, 18 35, 18 40, 25 35)');
SELECT * FROM check_nodes('NE(30,31)/nodes');
SELECT * FROM check_edges('NE(30,31)/edges');
SELECT * FROM check_faces('NE(30,31)/faces');
SELECT save_edges(); SELECT save_faces(); SELECT save_nodes();
-- Here's the removal
SELECT 'RM(31)', topology.ST_RemEdgeModFace('city_data', 31);
SELECT * FROM check_nodes('RM(31)/nodes');
SELECT * FROM check_edges('RM(31)/edges');
SELECT * FROM check_faces('RM(31)/faces');
SELECT save_edges(); SELECT save_faces(); SELECT save_nodes();
-- Universe flooding existing single-edge (closed) face
-- with dangling edges both inside
-- Closed edge in CW order.
-- Requires reconstructing the outer ring
SELECT 'NE(32)', topology.ST_AddEdgeNewFaces('city_data', 3, 3, 'SRID=4326;LINESTRING(25 35, 18 35, 18 40, 28 40, 28 27, 18 27, 25 35)');
SELECT * FROM check_nodes('NE(32)/nodes');
SELECT * FROM check_edges('NE(32)/edges');
SELECT * FROM check_faces('NE(32)/faces');
SELECT save_edges(); SELECT save_faces(); SELECT save_nodes();
-- Here's the removal
SELECT 'RM(32)', topology.ST_RemEdgeModFace('city_data', 32);
SELECT * FROM check_nodes('RM(32)/nodes');
SELECT * FROM check_edges('RM(32)/edges');
SELECT * FROM check_faces('RM(32)/faces');
SELECT save_edges(); SELECT save_faces(); SELECT save_nodes();
-- Universe flooding existing single-edge (closed) face
-- with dangling edges both inside
-- Closed edge in CCW order.
-- Requires reconstructing the outer ring
SELECT 'NE(33)', topology.ST_AddEdgeNewFaces('city_data', 3, 3,
'SRID=4326;LINESTRING(25 35,18 27,28 27,28 40,18 40,18 35,25 35)');
SELECT * FROM check_nodes('NE(33)/nodes');
SELECT * FROM check_edges('NE(33)/edges');
SELECT * FROM check_faces('NE(33)/faces');
SELECT save_edges(); SELECT save_faces(); SELECT save_nodes();
-- Here's the removal
SELECT 'RM(33)', topology.ST_RemEdgeModFace('city_data', 33);
SELECT * FROM check_nodes('RM(33)/nodes');
SELECT * FROM check_edges('RM(33)/edges');
SELECT * FROM check_faces('RM(33)/faces');
SELECT save_edges(); SELECT save_faces(); SELECT save_nodes();
-- Universe flooding existing single-edge (closed) face
-- with dangling edge starting from closing node and going outside.
-- Closed edge is in CW order.
-- Requires reconstructing the outer ring
SELECT 'NE(34)', topology.ST_AddEdgeNewFaces('city_data', 2, 2,
'SRID=4326;LINESTRING(25 30, 28 27, 22 27, 25 30)');
SELECT * FROM check_nodes('NE(34)/nodes');
SELECT * FROM check_edges('NE(34)/edges');
SELECT * FROM check_faces('NE(34)/faces');
SELECT save_edges(); SELECT save_faces(); SELECT save_nodes();
-- Here's the removal
SELECT 'RM(34)', topology.ST_RemEdgeModFace('city_data', 34);
SELECT * FROM check_nodes('RM(34)/nodes');
SELECT * FROM check_edges('RM(34)/edges');
SELECT * FROM check_faces('RM(34)/faces');
SELECT save_edges(); SELECT save_faces(); SELECT save_nodes();
-- Universe flooding existing single-edge (closed) face
-- with dangling edge starting from closing node and going outside.
-- Closed edge is in CCW order.
-- Requires reconstructing the outer ring
SELECT 'NE(35)', topology.ST_AddEdgeNewFaces('city_data', 2, 2,
'SRID=4326;LINESTRING(25 30,22 27,28 27,25 30)'
);
SELECT * FROM check_nodes('NE(35)/nodes');
SELECT * FROM check_edges('NE(35)/edges');
SELECT * FROM check_faces('NE(35)/faces');
SELECT save_edges(); SELECT save_faces(); SELECT save_nodes();
-- Here's the removal
SELECT 'RM(35)', topology.ST_RemEdgeModFace('city_data', 35);
SELECT * FROM check_nodes('RM(35)/nodes');
SELECT * FROM check_edges('RM(35)/edges');
SELECT * FROM check_faces('RM(35)/faces');
SELECT save_edges(); SELECT save_faces(); SELECT save_nodes();
SELECT topology.DropTopology('city_data');
-------------------------------------------------------------------------
-- Now test in presence of features
-------------------------------------------------------------------------
-- {
-- Import city_data
\i load_topology.sql
\i load_features.sql
\i cache_geometries.sql
-- A city_street is defined by edge 3, can't drop
SELECT '*RM(3)', topology.ST_RemEdgeModFace('city_data', 3);
-- A city_street is defined by edge 4 and 5, can't drop any of the two
SELECT '*RM(4)', topology.ST_RemEdgeModFace('city_data', 4);
SELECT '*RM(5)', topology.ST_RemEdgeModFace('city_data', 5);
-- Two land_parcels (P2 and P3) are defined by either face
-- 5 but not face 4 or by face 4 but not face 5, so we can't heal
-- the faces by dropping edge 17
SELECT '*RM(17)', catch_error($$SELECT topology.ST_RemEdgeModFace('city_data', 17)$$);
-- Dropping edge 11 is fine as it heals faces 5 and 8, which
-- only serve definition of land_parcel P3 which contains both
SELECT 'RM(11)', 'relations_before:', count(*) FROM city_data.relation;
SELECT 'RM(11)', topology.ST_RemEdgeModFace('city_data', 11);
SELECT 'RM(11)', 'relations_after:', count(*) FROM city_data.relation;
-- Land parcel P3 is now defined by face 8, so we can't drop
-- any edge which would destroy that face.
SELECT '*RM(8)', topology.ST_RemEdgeModFace('city_data', 8); -- face_right=8
SELECT '*RM(15)', topology.ST_RemEdgeModFace('city_data', 15); -- face_left=8
-- Check that no land_parcel objects had topology changed
SELECT 'RM(11)', feature_name,
ST_Equals( ST_Multi(feature::geometry), ST_Multi(the_geom) ) as unchanged
FROM features.land_parcels;
SELECT topology.DropTopology('city_data');
DROP SCHEMA features CASCADE;
-- }
-------------------------------------------------------------------------
-------------------------------------------------------------------------
-------------------------------------------------------------------------
-- clean up
DROP FUNCTION save_edges();
DROP FUNCTION check_edges(text);
DROP FUNCTION save_faces();
DROP FUNCTION check_faces(text);
DROP FUNCTION save_nodes();
DROP FUNCTION check_nodes(text);
DROP FUNCTION catch_error(text);
DELETE FROM spatial_ref_sys where srid = 4326;
|
<filename>banco_de_dados/SAB.sql
CREATE TABLE autor (
id_autor INT NOT NULL,
nome VARCHAR(10),
sobrenome VARCHAR(45),
ultima_atualizacao TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
);
ALTER TABLE autor ADD CONSTRAINT PK_autor PRIMARY KEY (id_autor);
CREATE TABLE categoria (
id_categoria INT NOT NULL,
nome VARCHAR(20),
ultima_atualizacao TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
);
ALTER TABLE categoria ADD CONSTRAINT PK_categoria PRIMARY KEY (id_categoria);
CREATE TABLE idioma (
id_idioma INT NOT NULL,
nome VARCHAR(20),
ultima_atualizacao TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
);
ALTER TABLE idioma ADD CONSTRAINT PK_idioma PRIMARY KEY (id_idioma);
CREATE TABLE livro (
id_livro INT NOT NULL,
titulo VARCHAR(255),
descricao VARCHAR(1000),
ano_lancamento CHAR(10),
qtd_paginas INT,
valor_multa NUMERIC(10),
custo_reposicao NUMERIC(10),
avaliacao CHAR(1),
ultima_atualizacao TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
observacao VARCHAR(350),
resumo VARCHAR(5000),
id_idioma INT
);
ALTER TABLE livro ADD CONSTRAINT PK_livro PRIMARY KEY (id_livro);
CREATE TABLE pais (
id_pais INT NOT NULL,
pais VARCHAR(50),
ultima_atualizacao TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
);
ALTER TABLE pais ADD CONSTRAINT PK_pais PRIMARY KEY (id_pais);
CREATE TABLE autor_livro (
id_livro INT NOT NULL,
id_autor INT NOT NULL,
ultima_atualizacao TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
);
ALTER TABLE autor_livro ADD CONSTRAINT PK_autor_livro PRIMARY KEY (id_livro,id_autor);
CREATE TABLE categoria_livro (
id_categoria INT NOT NULL,
id_livro INT NOT NULL,
ultima_atualizacao TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
);
ALTER TABLE categoria_livro ADD CONSTRAINT PK_categoria_livro PRIMARY KEY (id_categoria,id_livro);
CREATE TABLE cidade (
id_cidade INT NOT NULL,
cidade VARCHAR(50),
ultima_atualizacao TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
id_pais INT
);
ALTER TABLE cidade ADD CONSTRAINT PK_cidade PRIMARY KEY (id_cidade);
CREATE TABLE endereco (
id_endereco INT NOT NULL,
endereco VARCHAR(50),
endereco2 VARCHAR(50),
estado VARCHAR(20),
celular VARCHAR(15),
ultima_atualizacao TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
cep VARCHAR(10),
id_cidade INT
);
ALTER TABLE endereco ADD CONSTRAINT PK_endereco PRIMARY KEY (id_endereco);
CREATE TABLE bib (
id_bib INT NOT NULL,
id_bibliotecario INT,
ultima_atualizacao TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
id_endereco INT NOT NULL
);
ALTER TABLE bib ADD CONSTRAINT PK_bib PRIMARY KEY (id_bib);
CREATE TABLE bibliotecario (
id_bibliotecario INT NOT NULL,
nome VARCHAR(10),
sobrenome VARCHAR(45),
email VARCHAR(50),
ativo BIT(1),
nome_usuario VARCHAR(16),
senha VARCHAR(8),
ultima_atualizacao TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
foto VARCHAR(100),
id_bib INT,
id_endereco INT
);
ALTER TABLE bibliotecario ADD CONSTRAINT PK_bibliotecario PRIMARY KEY (id_bibliotecario);
CREATE TABLE registro (
id_registro INT NOT NULL,
ultima_atualizacao TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
id_livro INT,
id_bib INT
);
ALTER TABLE registro ADD CONSTRAINT PK_registro PRIMARY KEY (id_registro);
CREATE TABLE usuario (
id_usuario INT NOT NULL,
nome VARCHAR(10),
sobrenome VARCHAR(45),
email VARCHAR(50),
ativo_boleano BIT(1),
data_criacao DATE,
ultima_atualizacao TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
ativo INT,
id_endereco INT,
id_bib INT
);
ALTER TABLE usuario ADD CONSTRAINT PK_usuario PRIMARY KEY (id_usuario);
CREATE TABLE emprestimo (
id_emprestimo INT NOT NULL,
data_emprestimo DATE WITH TIME ZONE NOT NULL,
data_retorno DATE WITH TIME ZONE NOT NULL,
ultima_atualizacao TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
id_usuario INT,
id_registro INT,
id_bibliotecario INT
);
ALTER TABLE emprestimo ADD CONSTRAINT PK_emprestimo PRIMARY KEY (id_emprestimo);
CREATE TABLE pagamento_multa (
id_pm INT NOT NULL,
preco NUMERIC(10),
data_pagamento TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
id_usuario INT,
id_emprestimo INT,
id_bibliotecario INT
);
ALTER TABLE pagamento_multa ADD CONSTRAINT PK_pagamento_multa PRIMARY KEY (id_pm);
ALTER TABLE livro ADD CONSTRAINT FK_livro_0 FOREIGN KEY (id_idioma) REFERENCES idioma (id_idioma);
ALTER TABLE autor_livro ADD CONSTRAINT FK_autor_livro_0 FOREIGN KEY (id_livro) REFERENCES livro (id_livro);
ALTER TABLE autor_livro ADD CONSTRAINT FK_autor_livro_1 FOREIGN KEY (id_autor) REFERENCES autor (id_autor);
ALTER TABLE categoria_livro ADD CONSTRAINT FK_categoria_livro_0 FOREIGN KEY (id_categoria) REFERENCES categoria (id_categoria);
ALTER TABLE categoria_livro ADD CONSTRAINT FK_categoria_livro_1 FOREIGN KEY (id_livro) REFERENCES livro (id_livro);
ALTER TABLE cidade ADD CONSTRAINT FK_cidade_0 FOREIGN KEY (id_pais) REFERENCES pais (id_pais);
ALTER TABLE endereco ADD CONSTRAINT FK_endereco_0 FOREIGN KEY (id_cidade) REFERENCES cidade (id_cidade);
ALTER TABLE bib ADD CONSTRAINT FK_bib_0 FOREIGN KEY (id_endereco) REFERENCES endereco (id_endereco);
ALTER TABLE bibliotecario ADD CONSTRAINT FK_bibliotecario_0 FOREIGN KEY (id_bib) REFERENCES bib (id_bib);
ALTER TABLE bibliotecario ADD CONSTRAINT FK_bibliotecario_1 FOREIGN KEY (id_endereco) REFERENCES endereco (id_endereco);
ALTER TABLE registro ADD CONSTRAINT FK_registro_0 FOREIGN KEY (id_livro) REFERENCES livro (id_livro);
ALTER TABLE registro ADD CONSTRAINT FK_registro_1 FOREIGN KEY (id_bib) REFERENCES bib (id_bib);
ALTER TABLE usuario ADD CONSTRAINT FK_usuario_0 FOREIGN KEY (id_endereco) REFERENCES endereco (id_endereco);
ALTER TABLE usuario ADD CONSTRAINT FK_usuario_1 FOREIGN KEY (id_bib) REFERENCES bib (id_bib);
ALTER TABLE emprestimo ADD CONSTRAINT FK_emprestimo_0 FOREIGN KEY (id_usuario) REFERENCES usuario (id_usuario);
ALTER TABLE emprestimo ADD CONSTRAINT FK_emprestimo_1 FOREIGN KEY (id_registro) REFERENCES registro (id_registro);
ALTER TABLE emprestimo ADD CONSTRAINT FK_emprestimo_2 FOREIGN KEY (id_bibliotecario) REFERENCES bibliotecario (id_bibliotecario);
ALTER TABLE pagamento_multa ADD CONSTRAINT FK_pagamento_multa_0 FOREIGN KEY (id_usuario) REFERENCES usuario (id_usuario);
ALTER TABLE pagamento_multa ADD CONSTRAINT FK_pagamento_multa_1 FOREIGN KEY (id_emprestimo) REFERENCES emprestimo (id_emprestimo);
ALTER TABLE pagamento_multa ADD CONSTRAINT FK_pagamento_multa_2 FOREIGN KEY (id_bibliotecario) REFERENCES bibliotecario (id_bibliotecario);
|
drop procedure if exists getObservationsTermCode;
DELIMITER //
CREATE PROCEDURE getObservationsTermCode (
IN codeSetId int,
IN filterType int, -- 1 latest, 0 earliest, 2 pivot
IN col varchar(50), -- The root of the column name
IN datasetTable varchar(50), -- Table name of dataset
IN reset bit -- 1 reset, 0 no reset
)
BEGIN
call getObservations( codeSetId, filterType );
-- Reset
if (reset = 1) then
SET @reset_sql = CONCAT('UPDATE ', datasetTable, ' SET ',
col, "Code = null, ",
col, "Term = null");
PREPARE resetStmt FROM @reset_sql;
EXECUTE resetStmt;
DEALLOCATE PREPARE resetStmt;
end if;
-- Update
SET @sql = CONCAT('UPDATE ', datasetTable, ' d join filteredObservations f ON d.patient_id = f.patient_id SET ',
col, "Code = f.original_code, ",
col, "Term = f.original_term");
PREPARE stmt FROM @sql;
EXECUTE stmt;
DEALLOCATE PREPARE stmt;
END//
DELIMITER ;
|
<filename>public/databak/20171110094537.sql
/*
MySQL Database Backup Tools
Server:127.0.0.1:
Database:tp5api
Data:2017-11-10 09:45:37
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for mk_common_file
-- ----------------------------
DROP TABLE IF EXISTS `mk_common_file`;
CREATE TABLE `mk_common_file` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '文件ID',
`guid` char(40) DEFAULT NULL,
`uuid` char(40) DEFAULT NULL,
`name` varchar(100) DEFAULT '' COMMENT '原始文件名',
`savename` varchar(100) DEFAULT '' COMMENT '保存名称',
`savepath` varchar(255) DEFAULT '' COMMENT '文件保存路径',
`ext` char(5) DEFAULT '' COMMENT '文件后缀',
`mime` char(40) DEFAULT '' COMMENT '文件mime类型',
`size` int(10) unsigned DEFAULT '0' COMMENT '文件大小',
`md5` char(32) DEFAULT '' COMMENT '文件md5',
`sha1` char(40) DEFAULT '' COMMENT '文件 sha1编码',
`location` tinyint(3) unsigned DEFAULT '0' COMMENT '文件保存位置',
`create_time` int(10) unsigned DEFAULT NULL COMMENT '上传时间',
PRIMARY KEY (`id`),
UNIQUE KEY `uk_md5` (`md5`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='文件表';
-- ----------------------------
-- Records of mk_common_file
-- ----------------------------
-- ----------------------------
-- Table structure for mk_common_images
-- ----------------------------
DROP TABLE IF EXISTS `mk_common_images`;
CREATE TABLE `mk_common_images` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键id自增',
`uuid` char(40) DEFAULT NULL,
`name` varchar(100) DEFAULT NULL,
`type` varchar(50) DEFAULT NULL,
`path` varchar(255) DEFAULT '' COMMENT '路径',
`url` varchar(255) DEFAULT '' COMMENT '图片链接',
`md5` char(32) DEFAULT '' COMMENT '文件md5',
`sha1` char(40) DEFAULT '' COMMENT '文件 sha1编码',
`status` tinyint(2) DEFAULT '0' COMMENT '状态',
`create_time` int(10) unsigned DEFAULT '0' COMMENT '创建时间',
`width` int(11) DEFAULT NULL,
`height` int(11) DEFAULT NULL,
`channels` tinyint(4) DEFAULT NULL,
`dpi` int(11) DEFAULT NULL,
`exif` text,
`size` int(11) DEFAULT NULL,
`star` tinyint(4) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of mk_common_images
-- ----------------------------
-- ----------------------------
-- Table structure for tp_admin
-- ----------------------------
DROP TABLE IF EXISTS `tp_admin`;
CREATE TABLE `tp_admin` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`username` varchar(50) NOT NULL COMMENT '管理员名称',
`password` char(32) NOT NULL COMMENT '<PASSWORD>',
`phone` varchar(11) NOT NULL DEFAULT '' COMMENT '手机',
`logintime` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '上一次登录时间',
`loginip` char(20) NOT NULL DEFAULT '' COMMENT '上一次登录ip',
`lock` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否锁定',
`admin` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '是否是超级管理员【0:超级管理员,1:普通管理员】',
`session_id` varchar(255) NOT NULL COMMENT 'session_id',
`num` int(11) NOT NULL DEFAULT '0' COMMENT '登陆次数',
`create_time` int(10) unsigned NOT NULL COMMENT '创建时间',
`update_time` int(10) unsigned NOT NULL COMMENT '修改时间',
PRIMARY KEY (`id`),
KEY `id` (`id`),
KEY `username` (`username`)
) ENGINE=MyISAM AUTO_INCREMENT=43 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of tp_admin
-- ----------------------------
INSERT INTO `tp_admin` (`id`,`username`,`password`,`phone`,`logintime`,`loginip`,`lock`,`admin`,`session_id`,`num`,`create_time`,`update_time`) VALUES ('41','admin','21232f297a57a5a743894a0e4a801fc3','15617578175','1510276259','127.0.0.1','0','0','rju31o11299ck3v9b5ksi7fl27','16','1509074875','1510276259');
INSERT INTO `tp_admin` (`id`,`username`,`password`,`phone`,`logintime`,`loginip`,`lock`,`admin`,`session_id`,`num`,`create_time`,`update_time`) VALUES ('42','admin3','32cacb2f994f6b42183a1300d9a3e8d6','13033333332','1510276208','127.0.0.1','0','1','<PASSWORD>','1','1509167593','1510276208');
INSERT INTO `tp_admin` (`id`,`username`,`password`,`phone`,`logintime`,`loginip`,`lock`,`admin`,`session_id`,`num`,`create_time`,`update_time`) VALUES ('40','admin2','c84258e9c39059a89ab77d846ddab909','15033333333','1510217983','127.0.0.1','0','1','u2k318jb6385qgg3js4e3ic263','6','1509074512','1510217983');
-- ----------------------------
-- Table structure for tp_auth_group
-- ----------------------------
DROP TABLE IF EXISTS `tp_auth_group`;
CREATE TABLE `tp_auth_group` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`title` char(100) NOT NULL DEFAULT '',
`status` tinyint(1) NOT NULL DEFAULT '1',
`rules` varchar(255) NOT NULL DEFAULT '',
`create_time` int(10) unsigned NOT NULL,
`update_time` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of tp_auth_group
-- ----------------------------
INSERT INTO `tp_auth_group` (`id`,`title`,`status`,`rules`,`create_time`,`update_time`) VALUES ('12','超级管理员','1','95,96,101,102,103,104,97,105,106,107,108,98,109,110,111,112,99,113,114,115,116,117,100,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136','1509167505','1510278148');
INSERT INTO `tp_auth_group` (`id`,`title`,`status`,`rules`,`create_time`,`update_time`) VALUES ('13','普通管理员','1','95,96,101,97,105,99,113,114,115,116,100','1509167523','1510218583');
-- ----------------------------
-- Table structure for tp_auth_group_access
-- ----------------------------
DROP TABLE IF EXISTS `tp_auth_group_access`;
CREATE TABLE `tp_auth_group_access` (
`uid` mediumint(8) unsigned NOT NULL,
`group_id` mediumint(8) unsigned NOT NULL,
`create_time` int(11) NOT NULL DEFAULT '0',
`update_time` int(11) NOT NULL DEFAULT '0',
UNIQUE KEY `uid_group_id` (`uid`,`group_id`),
KEY `uid` (`uid`),
KEY `group_id` (`group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of tp_auth_group_access
-- ----------------------------
INSERT INTO `tp_auth_group_access` (`uid`,`group_id`,`create_time`,`update_time`) VALUES ('41','12','1509168238','1509168238');
INSERT INTO `tp_auth_group_access` (`uid`,`group_id`,`create_time`,`update_time`) VALUES ('40','13','1509168251','1509168251');
INSERT INTO `tp_auth_group_access` (`uid`,`group_id`,`create_time`,`update_time`) VALUES ('42','13','1509168962','1510219260');
-- ----------------------------
-- Table structure for tp_auth_rule
-- ----------------------------
DROP TABLE IF EXISTS `tp_auth_rule`;
CREATE TABLE `tp_auth_rule` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`name` char(80) NOT NULL DEFAULT '',
`title` char(20) NOT NULL DEFAULT '',
`type` tinyint(1) NOT NULL DEFAULT '1',
`status` tinyint(1) NOT NULL DEFAULT '1',
`condition` char(100) NOT NULL DEFAULT '',
`pid` int(11) NOT NULL DEFAULT '0',
`level` tinyint(1) NOT NULL DEFAULT '0',
`icon` varchar(255) NOT NULL DEFAULT 'fa-list-ol' COMMENT '菜单显示图标',
`sort` int(5) NOT NULL DEFAULT '50',
`create_time` int(10) unsigned NOT NULL,
`update_time` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=137 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of tp_auth_rule
-- ----------------------------
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('95','#','后台管理','1','0','','0','0','fa-list-ol','50','1510217371','1510277435');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('96','admin/lst','用户管理','1','1','','95','1','fa-list-ol','50','1510217514','1510219747');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('97','auth_group/lst','角色管理','1','1','','95','1','fa-list-ol','50','1510217563','1510277674');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('98','auth_rule/lst','权限管理','1','1','','95','1','fa-list-ol','50','1510217607','1510217912');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('99','conf/lst','系统管理','1','1','','95','1','fa-list-ol','50','1510217650','1510217922');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('100','#','功能管理','1','1','','95','1','fa-list-ol','50','1510217700','1510277734');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('101','admin/admin/lst','用户列表','1','1','','96','2','fa-list-ol','50','1510218087','1510277704');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('102','admin/admin/add','添加用户','1','0','','96','2','fa-list-ol','50','1510218128','1510277658');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('103','admin/admin/edit','编辑用户','1','0','','96','2','fa-list-ol','50','1510218179','1510277666');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('104','admi/admin/del','删除用户','1','0','','96','2','fa-list-ol','50','1510218200','1510277656');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('105','admin/auth_group/lst','角色列表','1','1','','97','2','fa-list-ol','50','1510218230','1510277705');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('106',' admin/auth_group/add','添加角色','1','0','','97','2','fa-list-ol','50','1510218251','1510277669');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('107','admin/auth_group/edit','编辑角色','1','0','','97','2','fa-list-ol','50','1510218274','1510277668');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('108','admin/auth_group/del','删除角色','1','0','','97','2','fa-list-ol','50','1510218301','1510277665');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('109','admin/auth_rule/lst','权限列表','1','1','','98','2','fa-list-ol','50','1510218322','1510277702');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('110','admin/auth_rule/add','添加权限','1','0','','98','2','fa-list-ol','50','1510218342','1510277676');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('111','admin/auth_rule/edit','编辑权限','1','0','','98','2','fa-list-ol','50','1510218358','1510277672');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('112','admin/auth_rule/del','删除权限','1','0','','98','2','fa-list-ol','50','1510218388','1510277649');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('113','admin/conf/lst','配置列表','1','1','','99','2','fa-list-ol','50','1510218420','1510277689');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('114','admin/conf/conf','设置配置','1','1','','99','2','fa-list-ol','50','1510218449','1510218449');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('115','admin/conf/add','添加配置','1','0','','99','2','fa-list-ol','50','1510218476','1510277696');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('116','admin/conf/edit','编辑配置','1','0','','99','2','fa-list-ol','50','1510218497','1510277694');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('117','admin/conf/del','删除配置','1','0','','99','2','fa-list-ol','50','1510218513','1510277692');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('118','index/alipay/index','支付宝支付','1','1','','100','2','fa-list-ol','50','1510276493','1510276493');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('119','index/wxpay/index','微信支付','1','1','','100','2','fa-list-ol','50','1510276687','1510276687');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('120','index/appstore/index','AppStore支付','1','1','','100','2','fa-list-ol','50','1510277778','1510277778');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('121','funs/rong','容联云短信','1','1','','100','2','fa-list-ol','50','1510277803','1510277803');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('122','funs/sms','云之讯短信','1','1','','100','2','fa-list-ol','50','1510277827','1510277827');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('123','funs/sms1','阿里大鱼短信','1','1','','100','2','fa-list-ol','50','1510277844','1510277844');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('124','funs/email','邮件','1','1','','100','2','fa-list-ol','50','1510277865','1510277865');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('125','funs/qrcode','二维码','1','1','','100','2','fa-list-ol','50','1510277892','1510277892');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('126','funs/qrcode1','详细二维码','1','1','','100','2','fa-list-ol','50','1510277907','1510277907');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('127','funs/map','地图','1','1','','100','2','fa-list-ol','50','1510277924','1510277924');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('128','funs/pinyin','汉字转拼音','1','1','','100','2','fa-list-ol','50','1510277938','1510277938');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('129','funs/excel','excel','1','1','','100','2','fa-list-ol','50','1510277967','1510277967');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('130','funs/pdf','生成pdf','1','1','','100','2','fa-list-ol','50','1510277984','1510277984');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('131','Sqlbak/index','数据库备份','1','1','','100','2','fa-list-ol','50','1510278003','1510278003');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('132','sfun/uploadfile','上传图片','1','1','','100','2','fa-list-ol','50','1510278020','1510278020');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('133','funs/chou','概率抽奖','1','1','','100','2','fa-list-ol','50','1510278048','1510278048');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('134','funs/short','短连接生成','1','1','','100','2','fa-list-ol','50','1510278062','1510278062');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('135','funs/editor','模板标签','1','1','','100','2','fa-list-ol','50','1510278077','1510278077');
INSERT INTO `tp_auth_rule` (`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`icon`,`sort`,`create_time`,`update_time`) VALUES ('136','sfun/index','功能列表','1','1','','100','2','fa-list-ol','50','1510278120','1510278120');
-- ----------------------------
-- Table structure for tp_conf
-- ----------------------------
DROP TABLE IF EXISTS `tp_conf`;
CREATE TABLE `tp_conf` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`cnname` varchar(50) NOT NULL COMMENT '中文名称',
`enname` varchar(50) NOT NULL COMMENT '英文名称',
`type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '配置类型[1:单行文本框2:文本域3:单选按钮4:复选框5:下拉菜单]',
`value` varchar(255) NOT NULL COMMENT '配置值',
`values` varchar(255) DEFAULT NULL COMMENT '配置可选值[1.单行文本2.多行文本3.单选按钮4.复选框5.下拉菜单]',
`sort` int(11) NOT NULL DEFAULT '50' COMMENT '排序',
`create_time` int(10) unsigned NOT NULL,
`update_time` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of tp_conf
-- ----------------------------
INSERT INTO `tp_conf` (`id`,`cnname`,`enname`,`type`,`value`,`values`,`sort`,`create_time`,`update_time`) VALUES ('10','站点名称','sitename','1','thinkphp5功能集成','thinkphp5功能集成','1','1510122582','1510123095');
INSERT INTO `tp_conf` (`id`,`cnname`,`enname`,`type`,`value`,`values`,`sort`,`create_time`,`update_time`) VALUES ('11','站点描述','desc','2','thinkphp5功能集成','关于thinkphp5的功能集合','2','1510122724','1510123095');
INSERT INTO `tp_conf` (`id`,`cnname`,`enname`,`type`,`value`,`values`,`sort`,`create_time`,`update_time`) VALUES ('13','是否启用验证码','code','3','是','是,否','50','1510124164','1510124503');
INSERT INTO `tp_conf` (`id`,`cnname`,`enname`,`type`,`value`,`values`,`sort`,`create_time`,`update_time`) VALUES ('14','自动清空缓存','cache','5','3小时','1小时,2小时,3小时','50','1510124354','1510124354');
INSERT INTO `tp_conf` (`id`,`cnname`,`enname`,`type`,`value`,`values`,`sort`,`create_time`,`update_time`) VALUES ('15','是否允许评论','comment','4','是','是','50','1510124391','1510124536');
INSERT INTO `tp_conf` (`id`,`cnname`,`enname`,`type`,`value`,`values`,`sort`,`create_time`,`update_time`) VALUES ('16','status','status','3','开启','开启,关闭','50','1510124425','1510124448');
-- ----------------------------
-- Table structure for tp_menu
-- ----------------------------
DROP TABLE IF EXISTS `tp_menu`;
CREATE TABLE `tp_menu` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL DEFAULT '' COMMENT '栏目名称',
`path` varchar(255) NOT NULL DEFAULT '' COMMENT '路径',
`pid` int(11) NOT NULL COMMENT '父级id',
`level` int(11) NOT NULL DEFAULT '0' COMMENT '级别',
`sort` int(11) NOT NULL DEFAULT '50' COMMENT '排序',
`status` int(11) NOT NULL DEFAULT '1' COMMENT '显示隐藏',
`icon` varchar(255) NOT NULL DEFAULT 'fa-th-large' COMMENT '图标',
`create_time` int(11) NOT NULL DEFAULT '0',
`update_time` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=76 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of tp_menu
-- ----------------------------
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('25','权限列表','auth_rule/lst','24','1','50','1','fa-list-ol','1509154487','1510025895');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('24','权限管理','#','0','0','5','1','fa-sitemap','1509154464','1510119940');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('19','首页','admin/index/index','0','0','1','1','fa-th-large','1509154316','1510216413');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('20','用户管理','#','0','0','3','1','fa-user','1509154344','1510216413');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('21','用户列表','admin/lst','20','1','50','1','fa-list-ol','1509154372','1510216413');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('22','角色管理','#','0','0','4','1','fa-smile-o','1509154405','1510216413');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('23','角色列表','auth_group/lst','22','1','50','1','fa-list-ol','1509154427','1510216413');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('26','菜单管理','#','0','0','2','1','fa-th-list','1509154585','1510216413');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('27','菜单列表','menu/lst','26','1','50','1','fa-list-ol','1509154616','1510216413');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('28','功能展示','#','0','0','6','1','fa-tasks','1509327731','1510216413');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('29','邮件','funs/email','28','1','1','1','fa-envelope','1509328488','1510216413');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('30','云之讯短信','funs/sms','28','1','2','1','fa-envelope-o','1509328586','1510216413');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('31','二维码','funs/qrcode','28','1','5','1','fa-qrcode','1509336331','1510216413');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('32','汉字转拼音','funs/pinyin','28','1','7','1','fa-random','1509336408','1510216413');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('33','地图','funs/map','28','1','8','1','fa-map-marker','1509336459','1510216413');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('35','阿里大鱼短信','funs/sms1','28','1','3','1','fa-envelope-o','1509338406','1510216413');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('36','详细二维码','funs/qrcode1','28','1','6','1','fa-qrcode','1509353445','1510216413');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('37','小功能','#','0','0','5','1','fa-gears','1509418254','1510216413');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('38','excel','funs/excel','28','1','10','1','fa-list-ol','1509499104','1510216413');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('39','上传图片','sfun/uploadfile','37','1','2','1',' fa-upload','1509499193','1510216413');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('65','功能列表','sfun/index','37','1','1','1','fa-list-ol','1509519643','1510216413');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('67','数据库备份','Sqlbak/index','28','1','9','1','fa-list-ol','1509954034','1510216413');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('68','文件系统','#','0','0','50','1','fa-list-ol','1510019243','1510216413');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('48','生成pdf','funs/pdf','28','1','11','1','fa-level-down','1509499848','1510216413');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('49','支付宝支付','index/alipay/index','28','1','12','1',' fa-credit-card','1509499916','1510216413');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('50','微信支付','index/wxpay/index','28','1','13','1','fa-comments','1509499941','1510216413');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('51','AppStore支付','index/appstore/index','28','1','14','1',' fa-cloud','1509499976','1510216413');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('69','容联云短信','funs/rong','28','1','4','1','fa-envelope-o','1510022256','1510216413');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('70','概率抽奖','funs/chou','28','1','50','1','fa-list-ol','1510035054','1510216413');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('71','短连接生成','funs/short','28','1','50','1','fa-chain','1510107294','1510120794');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('72','系统配置','#','0','0','50','1',' fa-gear','1510120703','1510120882');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('73','配置列表','conf/lst','72','1','50','1','fa-list-ol','1510121145','1510121145');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('74','配置项','conf/conf','72','1','50','1','fa-cog','1510123663','1510123689');
INSERT INTO `tp_menu` (`id`,`title`,`path`,`pid`,`level`,`sort`,`status`,`icon`,`create_time`,`update_time`) VALUES ('75','模板标签','funs/editor','28','1','50','1','fa-list-ol','1510130912','1510130912');
-- ----------------------------
-- Table structure for tp_order
-- ----------------------------
DROP TABLE IF EXISTS `tp_order`;
CREATE TABLE `tp_order` (
`id` int(11) unsigned zerofill NOT NULL AUTO_INCREMENT,
`body` varchar(50) DEFAULT NULL,
`total_fee` int(11) DEFAULT NULL,
`transaction_id` varchar(50) DEFAULT NULL,
`out_trade_no` varchar(50) DEFAULT NULL,
`product_id` varchar(30) DEFAULT NULL,
`status` tinyint(4) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=91 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of tp_order
-- ----------------------------
INSERT INTO `tp_order` (`id`,`body`,`total_fee`,`transaction_id`,`out_trade_no`,`product_id`,`status`) VALUES ('00000000086','支付测试','1','','20351265531509764764','1509764764','0');
INSERT INTO `tp_order` (`id`,`body`,`total_fee`,`transaction_id`,`out_trade_no`,`product_id`,`status`) VALUES ('00000000087','支付测试','1','','21129272631509772415','1509772415','0');
INSERT INTO `tp_order` (`id`,`body`,`total_fee`,`transaction_id`,`out_trade_no`,`product_id`,`status`) VALUES ('00000000088','支付测试','1','','14371266331509772610','1509772610','0');
INSERT INTO `tp_order` (`id`,`body`,`total_fee`,`transaction_id`,`out_trade_no`,`product_id`,`status`) VALUES ('00000000089','支付测试','1','','21457212951509773457','1509773457','0');
INSERT INTO `tp_order` (`id`,`body`,`total_fee`,`transaction_id`,`out_trade_no`,`product_id`,`status`) VALUES ('00000000090','支付测试','1','','10883928111509773938','1509773938','0');
-- ----------------------------
-- Table structure for tp_sns
-- ----------------------------
DROP TABLE IF EXISTS `tp_sns`;
CREATE TABLE `tp_sns` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`type` varchar(255) NOT NULL COMMENT '第三方登录类别',
`name` varchar(255) NOT NULL COMMENT '用户名',
`nick` varchar(255) NOT NULL COMMENT '昵称',
`head` varchar(255) NOT NULL COMMENT '头像',
`openid` varchar(255) NOT NULL COMMENT 'openid',
`create_time` int(11) NOT NULL,
`update_time` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of tp_sns
-- ----------------------------
-- ----------------------------
-- Table structure for tp_url
-- ----------------------------
DROP TABLE IF EXISTS `tp_url`;
CREATE TABLE `tp_url` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`uid` int(11) NOT NULL,
`original` text CHARACTER SET utf8 NOT NULL,
`short` varchar(16) NOT NULL COMMENT '最大16个字符串',
`ip` varchar(128) NOT NULL,
`click` int(11) NOT NULL,
`visitor` longtext NOT NULL,
`create_time` int(11) NOT NULL DEFAULT '0',
`update_time` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=55 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of tp_url
-- ----------------------------
INSERT INTO `tp_url` (`id`,`uid`,`original`,`short`,`ip`,`click`,`visitor`,`create_time`,`update_time`) VALUES ('50','41','https://zhidao.baidu.com/question/243549397747984004.html','AvOLL','127.0.0.1','1','[{"short":"AvOLL","ip":"127.0.0.1","time":1510119282}]','1510119281','1510119281');
INSERT INTO `tp_url` (`id`,`uid`,`original`,`short`,`ip`,`click`,`visitor`,`create_time`,`update_time`) VALUES ('51','41','http://blog.csdn.net/flygoa/article/details/49998373','8c3pQ','127.0.0.1','1','[{"short":"8c3pQ","ip":"127.0.0.1","time":1510119974}]','1510119970','1510119970');
INSERT INTO `tp_url` (`id`,`uid`,`original`,`short`,`ip`,`click`,`visitor`,`create_time`,`update_time`) VALUES ('52','41','http://blog.csdn.net/flygoa/article/details/49998373','UbuOD','127.0.0.1','1','[{"short":"UbuOD","ip":"127.0.0.1","time":1510120668}]','1510120667','1510120667');
INSERT INTO `tp_url` (`id`,`uid`,`original`,`short`,`ip`,`click`,`visitor`,`create_time`,`update_time`) VALUES ('53','41','https://segmentfault.com/q/1010000004319802','1BlBd','127.0.0.1','0','','1510192422','1510192422');
INSERT INTO `tp_url` (`id`,`uid`,`original`,`short`,`ip`,`click`,`visitor`,`create_time`,`update_time`) VALUES ('54','41','http://www.thinkphp.cn/code/250.html','D3uk0','127.0.0.1','1','[{"short":"D3uk0","ip":"127.0.0.1","time":1510278325}]','1510278324','1510278324');
-- ----------------------------
-- Table structure for tp_user
-- ----------------------------
DROP TABLE IF EXISTS `tp_user`;
CREATE TABLE `tp_user` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`username` varchar(255) NOT NULL COMMENT '账号',
`password` varchar(32) NOT NULL COMMENT '密码',
`phone` varchar(11) NOT NULL COMMENT '手机号',
`sid` bigint(20) NOT NULL COMMENT '第三方id',
`create_time` int(11) NOT NULL,
`update_time` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of tp_user
-- ----------------------------
|
insert into person (address, first_name, gender, last_name, enabled) values ('60914 <NAME>', 'Robinet', 'Male', 'Madill', true);
insert into person (address, first_name, gender, last_name, enabled) values ('40 Bellgrove Plaza', 'Lemmy', 'Male', 'Coggeshall', true);
insert into person (address, first_name, gender, last_name, enabled) values ('7 Donald Park', 'Wake', 'Male', 'Collister', true);
insert into person (address, first_name, gender, last_name, enabled) values ('03 Golden Leaf Crossing', 'Tracee', 'Female', 'Sparkwell', false);
insert into person (address, first_name, gender, last_name, enabled) values ('484 Donald Place', 'Perceval', 'Male', 'Colls', true);
insert into person (address, first_name, gender, last_name, enabled) values ('1322 Bunker Hill Plaza', 'Myles', 'Male', 'Pessolt', true);
insert into person (address, first_name, gender, last_name, enabled) values ('0 Homewood Hill', 'Nadean', 'Female', 'Cappell', true);
insert into person (address, first_name, gender, last_name, enabled) values ('739 Moose Center', 'Kearney', 'Male', 'Hurcombe', true);
insert into person (address, first_name, gender, last_name, enabled) values ('4 Heath Drive', 'Reynolds', 'Male', 'Vaar', true);
insert into person (address, first_name, gender, last_name, enabled) values ('606 Farmco Junction', 'Ferdie', 'Male', 'Scothern', false);
insert into person (address, first_name, gender, last_name, enabled) values ('46 Lakeland Hill', 'Lexie', 'Female', 'Chotty', false);
insert into person (address, first_name, gender, last_name, enabled) values ('86476 Memorial Circle', 'Trudie', 'Female', 'Bowen', true);
insert into person (address, first_name, gender, last_name, enabled) values ('4 <NAME>way', 'Bobbee', 'Female', 'Collete', true);
insert into person (address, first_name, gender, last_name, enabled) values ('897 John Wall Trail', 'Ronnica', 'Female', 'Kulvear', true);
insert into person (address, first_name, gender, last_name, enabled) values ('3 Little Fleur Drive', 'Tremaine', 'Male', 'Cheatle', false);
insert into person (address, first_name, gender, last_name, enabled) values ('7 Grim Trail', 'Harriett', 'Female', 'Heisham', false);
insert into person (address, first_name, gender, last_name, enabled) values ('48852 Steensland Alley', 'Izzy', 'Male', 'Keeves', true);
insert into person (address, first_name, gender, last_name, enabled) values ('4960 David Trail', 'Gwynne', 'Female', 'Abatelli', true);
insert into person (address, first_name, gender, last_name, enabled) values ('54 Darwin Way', 'Leeland', 'Male', 'Delos', true);
insert into person (address, first_name, gender, last_name, enabled) values ('87 Memorial Crossing', 'Eziechiele', 'Male', 'Kinch', true);
insert into person (address, first_name, gender, last_name, enabled) values ('193 Almo Lane', 'Halsey', 'Male', 'Beville', true);
insert into person (address, first_name, gender, last_name, enabled) values ('02937 Lerdahl Lane', 'Ki', 'Female', 'Ludlam', false);
insert into person (address, first_name, gender, last_name, enabled) values ('86099 Clyde Gallagher Street', 'Marlow', 'Male', 'Legon', false);
insert into person (address, first_name, gender, last_name, enabled) values ('4298 Superior Lane', 'Thorsten', 'Male', 'Hovenden', true);
insert into person (address, first_name, gender, last_name, enabled) values ('54 Graceland Center', 'Nadine', 'Female', 'Blonden', false);
insert into person (address, first_name, gender, last_name, enabled) values ('5740 Eastlawn Road', 'Isabella', 'Female', 'Coldman', true);
insert into person (address, first_name, gender, last_name, enabled) values ('46 Doe Crossing Hill', 'Vittorio', 'Male', 'Melloi', true);
insert into person (address, first_name, gender, last_name, enabled) values ('09 Warrior Drive', 'Mabel', 'Female', 'Targe', true);
insert into person (address, first_name, gender, last_name, enabled) values ('4290 Northland Parkway', 'Urbano', 'Male', 'Allender', false);
insert into person (address, first_name, gender, last_name, enabled) values ('3 Bluestem Point', 'Celle', 'Female', 'Hlavac', true);
insert into person (address, first_name, gender, last_name, enabled) values ('01725 3rd Park', 'Elset', 'Female', 'Gout', false);
insert into person (address, first_name, gender, last_name, enabled) values ('16577 Killdeer Court', 'Wynn', 'Male', 'Lewknor', true);
insert into person (address, first_name, gender, last_name, enabled) values ('5988 Carioca Way', 'Findley', 'Male', 'Vaen', true);
insert into person (address, first_name, gender, last_name, enabled) values ('36583 Lakewood Avenue', 'Odo', 'Male', 'De Coursey', true);
insert into person (address, first_name, gender, last_name, enabled) values ('94796 Corry Circle', 'Ruttger', 'Male', 'Zannotelli', false);
insert into person (address, first_name, gender, last_name, enabled) values ('5 Anniversary Parkway', 'Garvey', 'Male', 'Bagnal', true);
insert into person (address, first_name, gender, last_name, enabled) values ('2618 R<NAME>', 'Lea', 'Female', 'Bracher', false);
insert into person (address, first_name, gender, last_name, enabled) values ('3 Basil Place', 'Ailina', 'Female', 'Troke', false);
insert into person (address, first_name, gender, last_name, enabled) values ('88 Blaine Center', 'Zora', 'Female', '<NAME>', false);
insert into person (address, first_name, gender, last_name, enabled) values ('52 Jana Avenue', 'Stevana', 'Female', 'Kenyam', true);
insert into person (address, first_name, gender, last_name, enabled) values ('15 Butternut Plaza', 'Neron', 'Male', 'Petche', false);
insert into person (address, first_name, gender, last_name, enabled) values ('6 Fremont Trail', 'Lilllie', 'Female', 'Clynter', false);
insert into person (address, first_name, gender, last_name, enabled) values ('11188 Laurel Avenue', 'Omero', 'Male', 'Dooley', true);
insert into person (address, first_name, gender, last_name, enabled) values ('61464 Texas Circle', 'Merry', 'Male', 'Bwye', true);
insert into person (address, first_name, gender, last_name, enabled) values ('6 Menomonie Circle', 'Iolande', 'Female', 'Patemore', false);
insert into person (address, first_name, gender, last_name, enabled) values ('35237 1st Alley', 'Tadeo', 'Male', 'Haire', true);
insert into person (address, first_name, gender, last_name, enabled) values ('5078 Express Parkway', 'Davy', 'Male', 'Petrak', true);
insert into person (address, first_name, gender, last_name, enabled) values ('9 Mallard Plaza', 'Ansley', 'Female', 'Moir', false);
insert into person (address, first_name, gender, last_name, enabled) values ('7517 Bluestem Lane', 'Esteban', 'Male', 'Sciacovelli', false);
insert into person (address, first_name, gender, last_name, enabled) values ('9022 Shasta Center', 'Forest', 'Male', 'Hake', false);
insert into person (address, first_name, gender, last_name, enabled) values ('6388 Melby Place', 'Rosalind', 'Female', 'Durnford', false);
insert into person (address, first_name, gender, last_name, enabled) values ('349 Mayfield Crossing', 'Finn', 'Male', 'Roalfe', false);
insert into person (address, first_name, gender, last_name, enabled) values ('974 3rd Trail', 'Taryn', 'Female', 'Hancorn', true);
insert into person (address, first_name, gender, last_name, enabled) values ('2481 Boyd Way', 'Harbert', 'Male', 'Westley', false);
insert into person (address, first_name, gender, last_name, enabled) values ('8 Susan Avenue', 'Fred', 'Male', 'Tessier', false);
insert into person (address, first_name, gender, last_name, enabled) values ('742 Barby Plaza', 'Juliet', 'Female', 'Arthan', false);
insert into person (address, first_name, gender, last_name, enabled) values ('77 School Trail', 'Elbert', 'Male', 'Tyler', false);
insert into person (address, first_name, gender, last_name, enabled) values ('3 High Crossing Crossing', 'Federica', 'Female', 'Sired', false);
insert into person (address, first_name, gender, last_name, enabled) values ('72 Golden Leaf Street', 'Lizzy', 'Female', 'Hatcher', true);
insert into person (address, first_name, gender, last_name, enabled) values ('49938 Iowa Street', 'Bernardine', 'Female', 'Gawke', true);
insert into person (address, first_name, gender, last_name, enabled) values ('6652 Heffernan Crossing', 'Catherina', 'Female', 'Slot', true);
insert into person (address, first_name, gender, last_name, enabled) values ('0708 Pankratz Park', 'Alecia', 'Female', 'Leipoldt', true);
insert into person (address, first_name, gender, last_name, enabled) values ('33 Karstens Way', 'Florella', 'Female', 'Sperling', true);
insert into person (address, first_name, gender, last_name, enabled) values ('818 Mitchell Plaza', 'Beulah', 'Female', 'Physick', true);
insert into person (address, first_name, gender, last_name, enabled) values ('889 Arizona Pass', 'Wakefield', 'Male', 'Matejovsky', false);
insert into person (address, first_name, gender, last_name, enabled) values ('083 Dapin Terrace', 'Emmeline', 'Female', 'Elnaugh', true);
insert into person (address, first_name, gender, last_name, enabled) values ('2849 Valley Edge Avenue', 'Ardelia', 'Female', 'Janman', true);
insert into person (address, first_name, gender, last_name, enabled) values ('6206 Magdeline Crossing', 'Mattie', 'Female', 'Esmonde', true);
insert into person (address, first_name, gender, last_name, enabled) values ('32 Fremont Terrace', 'Lauretta', 'Female', 'May', false);
insert into person (address, first_name, gender, last_name, enabled) values ('90124 Arizona Alley', 'Brendon', 'Male', 'Onge', false);
insert into person (address, first_name, gender, last_name, enabled) values ('15487 Southridge Alley', 'Noel', 'Female', 'Ryce', true);
insert into person (address, first_name, gender, last_name, enabled) values ('24 Evergreen Park', 'Sammie', 'Male', 'Bunney', false);
insert into person (address, first_name, gender, last_name, enabled) values ('2435 Pepper Wood Park', 'Kirsteni', 'Female', 'Trenfield', true);
insert into person (address, first_name, gender, last_name, enabled) values ('0254 Golf Trail', 'Toddy', 'Male', 'Simonazzi', true);
insert into person (address, first_name, gender, last_name, enabled) values ('65 Texas Center', 'Adara', 'Female', 'Froggatt', true);
insert into person (address, first_name, gender, last_name, enabled) values ('9554 Carpenter Terrace', 'Chrissy', 'Female', 'Rosenstengel', false);
insert into person (address, first_name, gender, last_name, enabled) values ('9231 Mayfield Park', 'Hart', 'Male', 'Tash', true);
insert into person (address, first_name, gender, last_name, enabled) values ('60937 Heffernan Center', 'Montague', 'Male', 'Lashford', false);
insert into person (address, first_name, gender, last_name, enabled) values ('18 Upham Plaza', 'Ali', 'Male', 'Huyhton', false);
insert into person (address, first_name, gender, last_name, enabled) values ('84754 Loftsgordon Circle', 'Kaia', 'Female', 'Cazereau', true);
insert into person (address, first_name, gender, last_name, enabled) values ('032 Garrison Alley', 'Justus', 'Male', 'Aronovitz', false);
insert into person (address, first_name, gender, last_name, enabled) values ('179 Bay Parkway', 'Lucias', 'Male', 'Ivchenko', true);
insert into person (address, first_name, gender, last_name, enabled) values ('2 Service Crossing', 'Bee', 'Female', 'Sleeman', false);
insert into person (address, first_name, gender, last_name, enabled) values ('54 Talisman Crossing', 'Lynnell', 'Female', 'Gerhts', true);
insert into person (address, first_name, gender, last_name, enabled) values ('8 Sommers Point', 'Sydel', 'Female', 'Woolen', true);
insert into person (address, first_name, gender, last_name, enabled) values ('9 International Park', 'Gipsy', 'Female', 'Gritskov', true);
insert into person (address, first_name, gender, last_name, enabled) values ('6383 Red Cloud Pass', 'Gilberta', 'Female', 'Tonry', false);
insert into person (address, first_name, gender, last_name, enabled) values ('10637 Grayhawk Drive', 'Alex', 'Male', 'Bruster', false);
insert into person (address, first_name, gender, last_name, enabled) values ('171 Sloan Drive', 'Dyann', 'Female', 'Mathes', true);
insert into person (address, first_name, gender, last_name, enabled) values ('271 Shelley Center', 'Gaylord', 'Male', 'Matej', true);
insert into person (address, first_name, gender, last_name, enabled) values ('630 Bluestem Parkway', 'Simon', 'Male', 'Glader', true);
insert into person (address, first_name, gender, last_name, enabled) values ('95 Cordelia Road', 'Sergio', 'Male', 'Ciciari', false);
insert into person (address, first_name, gender, last_name, enabled) values ('3312 Rieder Terrace', 'Stormi', 'Female', 'Jenno', false);
insert into person (address, first_name, gender, last_name, enabled) values ('293 Shelley Road', 'Mellisent', 'Female', 'Caldayrou', true);
insert into person (address, first_name, gender, last_name, enabled) values ('4 Ridgeview Street', 'Latrena', 'Female', 'Rains', false);
insert into person (address, first_name, gender, last_name, enabled) values ('6252 <NAME>', 'Carlen', 'Female', 'Eversfield', true);
insert into person (address, first_name, gender, last_name, enabled) values ('83635 Stang Circle', 'Dennis', 'Male', 'Sayers', false);
insert into person (address, first_name, gender, last_name, enabled) values ('07183 <NAME>', 'Burnaby', 'Male', 'Mayhew', true);
insert into person (address, first_name, gender, last_name, enabled) values ('12219 <NAME>', 'Quinn', 'Female', 'Leyborne', false);
insert into person (address, first_name, gender, last_name, enabled) values ('8 Eastlawn Park', 'Constantine', 'Female', 'MacPike', true);
insert into person (address, first_name, gender, last_name, enabled) values ('2 Hook<NAME>', 'Joyous', 'Female', 'Megarry', true);
insert into person (address, first_name, gender, last_name, enabled) values ('03235 <NAME>', 'Kaleena', 'Female', 'Clemitt', false);
insert into person (address, first_name, gender, last_name, enabled) values ('13 <NAME>', 'Aron', 'Male', 'Joice', false);
insert into person (address, first_name, gender, last_name, enabled) values ('47445 Canary Road', 'Joelle', 'Female', 'Boggers', true);
insert into person (address, first_name, gender, last_name, enabled) values ('755 Eastlawn Road', 'Silvain', 'Male', 'Showers', false);
insert into person (address, first_name, gender, last_name, enabled) values ('571 <NAME>', 'Ambur', 'Female', 'Murley', false);
insert into person (address, first_name, gender, last_name, enabled) values ('858 Pierstorff Street', 'Hannie', 'Female', 'Faunt', false);
insert into person (address, first_name, gender, last_name, enabled) values ('05126 Scofield Circle', 'Worth', 'Male', 'Creeber', false);
insert into person (address, first_name, gender, last_name, enabled) values ('1414 Maywood Way', 'Luigi', 'Male', 'Warnock', true);
insert into person (address, first_name, gender, last_name, enabled) values ('5 Kim Crossing', 'Torr', 'Male', 'Akrigg', false);
insert into person (address, first_name, gender, last_name, enabled) values ('1 Muir Road', 'Bibi', 'Female', 'Briddock', false);
insert into person (address, first_name, gender, last_name, enabled) values ('73343 Bunting Avenue', 'Daryl', 'Male', 'Vala', true);
insert into person (address, first_name, gender, last_name, enabled) values ('8214 Carey Point', 'Carlie', 'Female', 'Norcutt', false);
insert into person (address, first_name, gender, last_name, enabled) values ('2 Northview Junction', 'Herta', 'Female', 'Cuddehay', true);
insert into person (address, first_name, gender, last_name, enabled) values ('15901 Di Loreto Court', 'Cissy', 'Female', 'Fluck', true);
insert into person (address, first_name, gender, last_name, enabled) values ('66 Marquette Avenue', 'Tedra', 'Female', 'Baroux', true);
insert into person (address, first_name, gender, last_name, enabled) values ('3 Maywood Lane', 'Dominga', 'Female', 'Tayler', false);
insert into person (address, first_name, gender, last_name, enabled) values ('56129 West Avenue', 'Minna', 'Female', 'Grzesiak', true);
insert into person (address, first_name, gender, last_name, enabled) values ('395 Roth Junction', 'Dagny', 'Male', 'Thurnham', true);
insert into person (address, first_name, gender, last_name, enabled) values ('05 Gulseth Court', 'Margit', 'Female', 'Bowes', false);
insert into person (address, first_name, gender, last_name, enabled) values ('16412 Talmadge Plaza', 'Petr', 'Male', 'Blayney', false);
insert into person (address, first_name, gender, last_name, enabled) values ('8 Coolidge Avenue', 'Ulberto', 'Male', 'Peagrim', true);
insert into person (address, first_name, gender, last_name, enabled) values ('64 Hanover Way', 'Ricki', 'Female', 'Zeale', true);
insert into person (address, first_name, gender, last_name, enabled) values ('55673 Grasskamp Alley', 'Levey', 'Male', 'Bonnefin', false);
insert into person (address, first_name, gender, last_name, enabled) values ('038 Hoepker Place', 'Ethyl', 'Female', 'Robertucci', true);
insert into person (address, first_name, gender, last_name, enabled) values ('61553 Myrtle Junction', 'Daven', 'Male', 'Casali', true);
insert into person (address, first_name, gender, last_name, enabled) values ('639 Packers Circle', 'Weston', 'Male', 'Patek', false);
insert into person (address, first_name, gender, last_name, enabled) values ('07 Cody Way', 'Corney', 'Male', 'Le Noire', false);
insert into person (address, first_name, gender, last_name, enabled) values ('977 Dunning Center', 'Rodie', 'Female', 'Bridgen', true);
insert into person (address, first_name, gender, last_name, enabled) values ('47 Monica Crossing', 'Caryl', 'Male', 'Heinel', true);
insert into person (address, first_name, gender, last_name, enabled) values ('0095 Pawling Street', 'Garv', 'Male', 'Amery', false);
insert into person (address, first_name, gender, last_name, enabled) values ('51 Glacier Hill Avenue', 'Catlaina', 'Female', 'Keates', true);
insert into person (address, first_name, gender, last_name, enabled) values ('84 La Follette Court', 'Ofilia', 'Female', 'Eaglestone', false);
insert into person (address, first_name, gender, last_name, enabled) values ('4901 Roth Crossing', 'Zorine', 'Female', 'Beatey', false);
insert into person (address, first_name, gender, last_name, enabled) values ('2 Me<NAME>', 'Hercule', 'Male', 'Karchewski', true);
insert into person (address, first_name, gender, last_name, enabled) values ('6 Fairfield Crossing', 'Evvy', 'Female', 'Pirelli', false);
insert into person (address, first_name, gender, last_name, enabled) values ('2335 Del Sol Crossing', 'Anselm', 'Male', 'Menichini', true);
insert into person (address, first_name, gender, last_name, enabled) values ('69096 Crescent Oaks Circle', 'Dione', 'Female', 'Hulle', false);
insert into person (address, first_name, gender, last_name, enabled) values ('38 Westport Crossing', 'Beverie', 'Female', 'Swann', true);
insert into person (address, first_name, gender, last_name, enabled) values ('2 Melody Place', 'Christophe', 'Male', 'Jurasek', true);
insert into person (address, first_name, gender, last_name, enabled) values ('51132 Rockefeller Road', 'Denise', 'Female', 'Leel', false);
insert into person (address, first_name, gender, last_name, enabled) values ('185 Dawn Junction', 'Uriel', 'Male', 'Horsley', true);
insert into person (address, first_name, gender, last_name, enabled) values ('43338 <NAME>', 'Rice', 'Male', 'Abbott', true);
insert into person (address, first_name, gender, last_name, enabled) values ('17 <NAME>', 'Davon', 'Male', 'Barrows', false);
insert into person (address, first_name, gender, last_name, enabled) values ('45799 Blackbird Pass', 'Vasily', 'Male', 'Down', false);
insert into person (address, first_name, gender, last_name, enabled) values ('834 Kennedy Crossing', 'Colline', 'Female', 'Cossem', true);
insert into person (address, first_name, gender, last_name, enabled) values ('5662 Forest Run Circle', 'Alice', 'Female', 'Broomfield', true);
insert into person (address, first_name, gender, last_name, enabled) values ('189 Melvin Crossing', 'Charmian', 'Female', 'Janssens', false);
insert into person (address, first_name, gender, last_name, enabled) values ('3396 Eggendart Place', 'Carroll', 'Male', 'Duncklee', false);
insert into person (address, first_name, gender, last_name, enabled) values ('26075 Bartillon Point', 'Inessa', 'Female', 'Gashion', true);
insert into person (address, first_name, gender, last_name, enabled) values ('0 Transport Place', 'Jehanna', 'Female', 'Baselli', true);
insert into person (address, first_name, gender, last_name, enabled) values ('4 Redwing Plaza', 'Lenci', 'Male', 'De Malchar', false);
insert into person (address, first_name, gender, last_name, enabled) values ('1 Kennedy Park', 'Auberon', 'Male', 'Kirrage', false);
insert into person (address, first_name, gender, last_name, enabled) values ('26 Oxford Drive', 'Howie', 'Male', 'Gresham', false);
insert into person (address, first_name, gender, last_name, enabled) values ('01 South Way', 'Klement', 'Male', 'Menhci', true);
insert into person (address, first_name, gender, last_name, enabled) values ('52 Lillian Crossing', 'Carson', 'Male', 'Hewins', false);
insert into person (address, first_name, gender, last_name, enabled) values ('3136 Sloan Place', 'Norine', 'Female', 'Brome', true);
insert into person (address, first_name, gender, last_name, enabled) values ('6 Darwin Circle', 'Alisa', 'Female', 'Myrick', true);
insert into person (address, first_name, gender, last_name, enabled) values ('2 Swallow Center', 'Curr', 'Male', 'Burwood', false);
insert into person (address, first_name, gender, last_name, enabled) values ('85 Hanson Pass', 'Ella', 'Female', 'Musso', false);
insert into person (address, first_name, gender, last_name, enabled) values ('063 Mayer Way', 'Jackqueline', 'Female', 'Carabet', false);
insert into person (address, first_name, gender, last_name, enabled) values ('8 Crest Line Court', 'Lindsey', 'Male', 'Peete', false);
insert into person (address, first_name, gender, last_name, enabled) values ('417 Holy Cross Junction', 'Derril', 'Male', 'Hause', true);
insert into person (address, first_name, gender, last_name, enabled) values ('1 Hallows Court', 'Odilia', 'Female', 'Mathiot', false);
insert into person (address, first_name, gender, last_name, enabled) values ('25497 Mallory Circle', 'Carce', 'Male', 'Fairebrother', true);
insert into person (address, first_name, gender, last_name, enabled) values ('2609 Blue Bill Park Center', 'Lyndsay', 'Female', 'Claris', false);
insert into person (address, first_name, gender, last_name, enabled) values ('93 Rowland Road', 'Ailee', 'Female', 'MacTrustie', false);
insert into person (address, first_name, gender, last_name, enabled) values ('9 Prentice Plaza', 'Dur', 'Male', 'Akred', true);
insert into person (address, first_name, gender, last_name, enabled) values ('7 Carpenter Alley', 'Wolfie', 'Male', 'Tripett', true);
insert into person (address, first_name, gender, last_name, enabled) values ('7359 North Park', 'Vic', 'Male', 'Dalgliesh', false);
insert into person (address, first_name, gender, last_name, enabled) values ('1558 Hollow Ridge Road', 'Norah', 'Female', 'Brennon', true);
insert into person (address, first_name, gender, last_name, enabled) values ('1 Norway Maple Street', 'Eileen', 'Female', 'Trousdale', true);
insert into person (address, first_name, gender, last_name, enabled) values ('6 Main Avenue', 'Margo', 'Female', 'Terram', false);
insert into person (address, first_name, gender, last_name, enabled) values ('431 Elka Road', 'Jacques', 'Male', 'Nemchinov', false);
insert into person (address, first_name, gender, last_name, enabled) values ('5953 Grim Pass', 'Romain', 'Male', 'Dougary', false);
insert into person (address, first_name, gender, last_name, enabled) values ('567 Tomscot Lane', 'Donny', 'Male', 'Hugh', true);
insert into person (address, first_name, gender, last_name, enabled) values ('4 Harper Pass', 'Tommy', 'Male', 'Woodwind', true);
insert into person (address, first_name, gender, last_name, enabled) values ('7814 Carberry Lane', 'Mozes', 'Male', 'Segot', false);
insert into person (address, first_name, gender, last_name, enabled) values ('286 Del Mar Way', 'Vonni', 'Female', 'Heeran', true);
insert into person (address, first_name, gender, last_name, enabled) values ('00859 Clemons Crossing', 'Letisha', 'Female', 'Tussaine', true);
insert into person (address, first_name, gender, last_name, enabled) values ('6 Harbort Street', 'Robbin', 'Female', 'Northbridge', false);
insert into person (address, first_name, gender, last_name, enabled) values ('46861 Schmedeman Plaza', 'Quinn', 'Male', 'Coombes', false);
insert into person (address, first_name, gender, last_name, enabled) values ('5 Arrowood Place', 'Hamish', 'Male', 'Peckham', true);
insert into person (address, first_name, gender, last_name, enabled) values ('11068 Carberry Pass', 'Tabatha', 'Female', 'MacFarlane', true);
insert into person (address, first_name, gender, last_name, enabled) values ('51975 Macpherson Way', 'Debbie', 'Female', 'Pasfield', false);
insert into person (address, first_name, gender, last_name, enabled) values ('056 Morningstar Hill', 'Adamo', 'Male', 'Brosio', false);
insert into person (address, first_name, gender, last_name, enabled) values ('561 Pleasure Plaza', 'Felike', 'Male', 'Daggett', true);
insert into person (address, first_name, gender, last_name, enabled) values ('17 Gerald Road', 'Roxine', 'Female', 'Drayson', true);
insert into person (address, first_name, gender, last_name, enabled) values ('9818 Haas Park', 'Kevan', 'Male', 'Willatt', true);
insert into person (address, first_name, gender, last_name, enabled) values ('7 Cody Center', 'Ailbert', 'Male', 'Comizzoli', false);
insert into person (address, first_name, gender, last_name, enabled) values ('7 Karstens Park', 'Creigh', 'Male', 'McKie', false);
insert into person (address, first_name, gender, last_name, enabled) values ('56 Lien Lane', 'Quentin', 'Female', 'Kohnen', true);
insert into person (address, first_name, gender, last_name, enabled) values ('1 Rowland Crossing', 'Lovell', 'Male', 'Godfroy', true);
insert into person (address, first_name, gender, last_name, enabled) values ('49663 Holy Cross Lane', 'Webb', 'Male', 'Nesbit', false);
insert into person (address, first_name, gender, last_name, enabled) values ('029 Dottie Park', 'Arluene', 'Female', 'Kilbride', true);
insert into person (address, first_name, gender, last_name, enabled) values ('6 Daystar Crossing', 'Jobina', 'Female', 'Roback', false);
insert into person (address, first_name, gender, last_name, enabled) values ('431 Anderson Center', 'Franny', 'Male', 'Pavlovic', true);
insert into person (address, first_name, gender, last_name, enabled) values ('9 Maple Junction', 'Burch', 'Male', 'Tassel', true);
insert into person (address, first_name, gender, last_name, enabled) values ('14451 Surrey Plaza', 'Farlee', 'Male', 'Klas', true);
insert into person (address, first_name, gender, last_name, enabled) values ('909 Golf Course Lane', 'Earle', 'Male', 'Grzesiewicz', true);
insert into person (address, first_name, gender, last_name, enabled) values ('3046 <NAME>', 'Devin', 'Male', 'Clemow', true);
insert into person (address, first_name, gender, last_name, enabled) values ('2 Morning Court', 'Cass', 'Male', 'Laurance', true);
insert into person (address, first_name, gender, last_name, enabled) values ('378 Arapahoe Circle', 'Marybelle', 'Female', 'Deyes', true);
insert into person (address, first_name, gender, last_name, enabled) values ('86378 Atwood Trail', 'Corette', 'Female', 'Ortiga', true);
insert into person (address, first_name, gender, last_name, enabled) values ('0 Brickson Park Avenue', 'Griffith', 'Male', 'Hukins', false);
insert into person (address, first_name, gender, last_name, enabled) values ('7324 <NAME>', 'Beryle', 'Female', 'McCauley', false);
insert into person (address, first_name, gender, last_name, enabled) values ('4 Superior Parkway', 'Magnum', 'Male', 'Slad', true);
insert into person (address, first_name, gender, last_name, enabled) values ('0849 Northland Court', 'Syd', 'Male', 'Gherarducci', true);
insert into person (address, first_name, gender, last_name, enabled) values ('2 Chinook Park', 'Zacharia', 'Male', 'Humbee', false);
insert into person (address, first_name, gender, last_name, enabled) values ('963 Eastlawn Point', 'Shir', 'Female', 'Holehouse', true);
insert into person (address, first_name, gender, last_name, enabled) values ('2 Grayhawk Street', 'Gav', 'Male', 'Gianulli', false);
insert into person (address, first_name, gender, last_name, enabled) values ('935 Stang Park', 'Dino', 'Male', 'Oliff', false);
insert into person (address, first_name, gender, last_name, enabled) values ('76 West Street', 'Boyd', 'Male', 'Elwel', false);
insert into person (address, first_name, gender, last_name, enabled) values ('00692 Ilene Way', 'Missy', 'Female', 'Grossman', true);
insert into person (address, first_name, gender, last_name, enabled) values ('604 Montana Circle', 'Moira', 'Female', 'Arnatt', false);
insert into person (address, first_name, gender, last_name, enabled) values ('61936 Gulseth Terrace', 'Ole', 'Male', 'Grieg', false);
insert into person (address, first_name, gender, last_name, enabled) values ('5 Eastwood Lane', 'Mareah', 'Female', 'Garm', true);
insert into person (address, first_name, gender, last_name, enabled) values ('36 Stuart Circle', 'Laurena', 'Female', 'Mortel', true);
insert into person (address, first_name, gender, last_name, enabled) values ('95 Northfield Drive', 'Nero', 'Male', 'Overall', true);
insert into person (address, first_name, gender, last_name, enabled) values ('97267 Northridge Lane', 'Tait', 'Male', 'Isitt', false);
insert into person (address, first_name, gender, last_name, enabled) values ('68221 Hintze Place', 'Noami', 'Female', 'Maycock', true);
insert into person (address, first_name, gender, last_name, enabled) values ('25 Schiller Junction', 'Robby', 'Female', 'Briant', false);
insert into person (address, first_name, gender, last_name, enabled) values ('39832 Meadow Valley Terrace', 'Lock', 'Male', 'Ledwich', false);
insert into person (address, first_name, gender, last_name, enabled) values ('7814 Del Sol Plaza', 'Latia', 'Female', 'Heintzsch', false);
insert into person (address, first_name, gender, last_name, enabled) values ('9994 Eagle Crest Street', 'Sherwynd', 'Male', 'Burchell', true);
insert into person (address, first_name, gender, last_name, enabled) values ('704 <NAME>', 'Avram', 'Male', 'Dorricott', true);
insert into person (address, first_name, gender, last_name, enabled) values ('8 Leroy Park', 'Leonhard', 'Male', 'Busfield', true);
insert into person (address, first_name, gender, last_name, enabled) values ('1 Stang Parkway', 'Darb', 'Female', 'MacAllister', false);
insert into person (address, first_name, gender, last_name, enabled) values ('44398 Hayes Point', 'Christophe', 'Male', 'Leatherbarrow', true);
insert into person (address, first_name, gender, last_name, enabled) values ('86122 Dayton Parkway', 'Sharleen', 'Female', 'Teasey', true);
insert into person (address, first_name, gender, last_name, enabled) values ('56 Forest Run Place', 'Chuck', 'Male', 'Hallybone', true);
insert into person (address, first_name, gender, last_name, enabled) values ('389 Cody Point', 'Petunia', 'Female', 'Mulvenna', false);
insert into person (address, first_name, gender, last_name, enabled) values ('47 Monterey Plaza', 'Benjamin', 'Male', 'Kinzel', true);
insert into person (address, first_name, gender, last_name, enabled) values ('15368 Maywood Drive', 'Chrysa', 'Female', 'Abbott', false);
insert into person (address, first_name, gender, last_name, enabled) values ('316 Rockefeller Lane', 'Katharyn', 'Female', 'Burth', false);
insert into person (address, first_name, gender, last_name, enabled) values ('24807 Ludington Alley', 'Daryle', 'Male', 'Weightman', false);
insert into person (address, first_name, gender, last_name, enabled) values ('482 Moland Plaza', 'Norma', 'Female', 'Hammonds', false);
insert into person (address, first_name, gender, last_name, enabled) values ('6 Homewood Junction', 'Kylila', 'Female', 'Newvell', false);
insert into person (address, first_name, gender, last_name, enabled) values ('173 Pearson Terrace', 'Perice', 'Male', 'Lawfull', true);
insert into person (address, first_name, gender, last_name, enabled) values ('7761 Eastwood Circle', 'Patton', 'Male', 'Celes', false);
insert into person (address, first_name, gender, last_name, enabled) values ('4480 Carey Junction', 'Noell', 'Female', 'Clemenceau', false);
insert into person (address, first_name, gender, last_name, enabled) values ('0826 Stang Plaza', 'Dyann', 'Female', 'Lebell', true);
insert into person (address, first_name, gender, last_name, enabled) values ('02801 Red Cloud Plaza', 'Waldo', 'Male', 'O''Gaven', true);
insert into person (address, first_name, gender, last_name, enabled) values ('4087 Kenwood Way', 'Davin', 'Male', 'Bretherton', true);
insert into person (address, first_name, gender, last_name, enabled) values ('734 Dakota Road', 'Sherwin', 'Male', 'Bywater', false);
insert into person (address, first_name, gender, last_name, enabled) values ('6 Briar Crest Trail', 'Joellyn', 'Female', 'Hindmoor', false);
insert into person (address, first_name, gender, last_name, enabled) values ('048 Logan Center', 'Pieter', 'Male', 'Coupar', true);
insert into person (address, first_name, gender, last_name, enabled) values ('0986 Linden Crossing', 'Jilly', 'Female', 'Pleven', true);
insert into person (address, first_name, gender, last_name, enabled) values ('05 Garrison Drive', 'Nerte', 'Female', 'Brende', false);
insert into person (address, first_name, gender, last_name, enabled) values ('6 Bellgrove Center', 'Sheilakathryn', 'Female', 'Rawood', true);
insert into person (address, first_name, gender, last_name, enabled) values ('08 Schlimgen Point', 'Gerek', 'Male', 'Witty', false);
insert into person (address, first_name, gender, last_name, enabled) values ('06074 Bluejay Crossing', 'Benedikt', 'Male', 'Cullotey', false);
insert into person (address, first_name, gender, last_name, enabled) values ('52 <NAME>', 'Tonye', 'Female', 'Docksey', false);
insert into person (address, first_name, gender, last_name, enabled) values ('58 Bellgrove Circle', 'Yetty', 'Female', 'Stain', false);
insert into person (address, first_name, gender, last_name, enabled) values ('23 <NAME>', 'Trudie', 'Female', 'Keigher', false);
insert into person (address, first_name, gender, last_name, enabled) values ('177 <NAME>', 'Rudiger', 'Male', 'Trevena', true);
insert into person (address, first_name, gender, last_name, enabled) values ('6863 Kinsman Avenue', 'Fernandina', 'Female', 'Stable', true);
insert into person (address, first_name, gender, last_name, enabled) values ('82 Toban Circle', 'Andrus', 'Male', 'Fontanet', true);
insert into person (address, first_name, gender, last_name, enabled) values ('31156 Truax Avenue', 'Cort', 'Male', 'Jacobbe', true);
insert into person (address, first_name, gender, last_name, enabled) values ('722 Barnett Plaza', 'Sisile', 'Female', 'Frisch', true);
insert into person (address, first_name, gender, last_name, enabled) values ('40643 Browning Street', 'Jessey', 'Male', 'Grayland', false);
insert into person (address, first_name, gender, last_name, enabled) values ('79417 Summer Ridge Parkway', 'Noble', 'Male', 'Jewis', true);
insert into person (address, first_name, gender, last_name, enabled) values ('73771 Erie Trail', 'Blondelle', 'Female', 'MacNally', true);
insert into person (address, first_name, gender, last_name, enabled) values ('946 Fallview Hill', 'Whitby', 'Male', 'Cuolahan', true);
insert into person (address, first_name, gender, last_name, enabled) values ('054 Northridge Lane', 'Felicio', 'Male', 'Guidelli', true);
insert into person (address, first_name, gender, last_name, enabled) values ('31 Memorial Trail', 'Phyllis', 'Female', 'Labram', false);
insert into person (address, first_name, gender, last_name, enabled) values ('70 Westridge Alley', 'Morten', 'Male', 'Demange', true);
insert into person (address, first_name, gender, last_name, enabled) values ('35 Annamark Drive', 'Kile', 'Male', 'Greetham', false);
insert into person (address, first_name, gender, last_name, enabled) values ('0 Sundown Hill', 'Jilleen', 'Female', 'Prescot', false);
insert into person (address, first_name, gender, last_name, enabled) values ('792 Cherokee Crossing', 'Carlie', 'Male', 'Copozio', true);
insert into person (address, first_name, gender, last_name, enabled) values ('52246 Portage Way', 'Sylvia', 'Female', 'Tickle', false);
insert into person (address, first_name, gender, last_name, enabled) values ('5479 Cambridge Hill', 'Gabrielle', 'Female', 'Owttrim', false);
insert into person (address, first_name, gender, last_name, enabled) values ('7 Pankratz Crossing', 'Myron', 'Male', 'Telford', true);
insert into person (address, first_name, gender, last_name, enabled) values ('95 Delladonna Plaza', 'Gaelan', 'Male', 'Josilevich', false);
insert into person (address, first_name, gender, last_name, enabled) values ('77473 Spaight Terrace', 'Nanon', 'Female', 'Licari', true);
insert into person (address, first_name, gender, last_name, enabled) values ('36088 Dennis Park', 'Stan', 'Male', 'Gledhill', true);
insert into person (address, first_name, gender, last_name, enabled) values ('13091 Hudson Trail', 'Gordie', 'Male', 'Frankowski', true);
insert into person (address, first_name, gender, last_name, enabled) values ('1688 Kipling Court', 'Staford', 'Male', 'Oloshin', true);
insert into person (address, first_name, gender, last_name, enabled) values ('4 <NAME>', 'Angel', 'Male', 'Eliot', false);
insert into person (address, first_name, gender, last_name, enabled) values ('10 Trailsway Circle', 'Skipp', 'Male', 'Elstob', true);
insert into person (address, first_name, gender, last_name, enabled) values ('12 Hagan Junction', 'Rhoda', 'Female', 'Stanman', true);
insert into person (address, first_name, gender, last_name, enabled) values ('2818 Old Shore Circle', 'Mel', 'Male', 'Moffett', true);
insert into person (address, first_name, gender, last_name, enabled) values ('54 Karstens Plaza', 'Sheba', 'Female', 'Bellwood', true);
insert into person (address, first_name, gender, last_name, enabled) values ('38007 W<NAME>t', 'Noell', 'Female', 'Pleasaunce', true);
insert into person (address, first_name, gender, last_name, enabled) values ('4 Pawling Lane', 'Tirrell', 'Male', 'Eisak', true);
insert into person (address, first_name, gender, last_name, enabled) values ('424 Heffernan Avenue', 'Richy', 'Male', 'Wiley', true);
insert into person (address, first_name, gender, last_name, enabled) values ('09972 Oak Junction', 'Marris', 'Female', 'Shrive', true);
insert into person (address, first_name, gender, last_name, enabled) values ('44 1st Alley', 'Adria', 'Female', 'Gorrissen', true);
insert into person (address, first_name, gender, last_name, enabled) values ('98927 Hauk Road', 'Olivero', 'Male', 'Burgill', true);
insert into person (address, first_name, gender, last_name, enabled) values ('2361 American Road', 'Jonah', 'Male', 'Sapson', false);
insert into person (address, first_name, gender, last_name, enabled) values ('97928 Waubesa Parkway', 'Gweneth', 'Female', 'Sheber', false);
insert into person (address, first_name, gender, last_name, enabled) values ('3 Mccormick Lane', 'Adriano', 'Male', 'Pruvost', false);
insert into person (address, first_name, gender, last_name, enabled) values ('84 Utah Junction', 'Misha', 'Female', 'Meaton', false);
insert into person (address, first_name, gender, last_name, enabled) values ('93687 Nobel Lane', 'Olly', 'Male', 'Peers', false);
insert into person (address, first_name, gender, last_name, enabled) values ('1 <NAME>', 'Katy', 'Female', 'McLukie', true);
insert into person (address, first_name, gender, last_name, enabled) values ('366 <NAME>', 'Jennie', 'Female', 'Itschakov', false);
insert into person (address, first_name, gender, last_name, enabled) values ('291 <NAME>', 'Kaleb', 'Male', 'Troy', false);
insert into person (address, first_name, gender, last_name, enabled) values ('79226 Nobel Street', 'Asia', 'Female', 'Pentelow', false);
insert into person (address, first_name, gender, last_name, enabled) values ('015 <NAME>', 'Patrizio', 'Male', 'Sinnott', true);
insert into person (address, first_name, gender, last_name, enabled) values ('15303 Northfield Way', 'Analise', 'Female', 'Suddell', false);
insert into person (address, first_name, gender, last_name, enabled) values ('553 Mcbride Avenue', 'Oren', 'Male', 'Anderl', true);
insert into person (address, first_name, gender, last_name, enabled) values ('764 Southridge Road', 'Kettie', 'Female', 'Monnelly', true);
insert into person (address, first_name, gender, last_name, enabled) values ('6025 Eliot Drive', 'Eula', 'Female', 'Scrane', false);
insert into person (address, first_name, gender, last_name, enabled) values ('9708 <NAME>', 'Allister', 'Male', 'Tiler', false);
insert into person (address, first_name, gender, last_name, enabled) values ('603 Menomon<NAME>', 'Nedda', 'Female', 'Ouslem', false);
insert into person (address, first_name, gender, last_name, enabled) values ('74947 Pawling Crossing', 'Jule', 'Male', 'Gecke', false);
insert into person (address, first_name, gender, last_name, enabled) values ('86795 <NAME>', 'Georgeanna', 'Female', 'Ceaplen', true);
insert into person (address, first_name, gender, last_name, enabled) values ('39189 Surrey Alley', 'Loren', 'Female', 'Crunkhorn', true);
insert into person (address, first_name, gender, last_name, enabled) values ('959 Evergreen Way', 'Arabella', 'Female', 'O''Dare', false);
insert into person (address, first_name, gender, last_name, enabled) values ('30564 Valley Edge Court', 'Ofella', 'Female', 'Farryann', true);
insert into person (address, first_name, gender, last_name, enabled) values ('49224 <NAME>', 'Hasheem', 'Male', 'Perin', false);
insert into person (address, first_name, gender, last_name, enabled) values ('8 Nancy Crossing', 'Millie', 'Female', 'Timeby', true);
insert into person (address, first_name, gender, last_name, enabled) values ('32335 Dovetail Road', 'Feodora', 'Female', 'Sawney', false);
insert into person (address, first_name, gender, last_name, enabled) values ('4 Myrtle Court', 'Jacinta', 'Female', 'Lemar', true);
insert into person (address, first_name, gender, last_name, enabled) values ('120 Carberry Road', 'Paten', 'Male', 'Clothier', true);
insert into person (address, first_name, gender, last_name, enabled) values ('942 Weeping Birch Parkway', 'Alexei', 'Male', 'Petruskevich', false);
insert into person (address, first_name, gender, last_name, enabled) values ('32463 Rieder Center', 'Christoffer', 'Male', 'Brayley', true);
insert into person (address, first_name, gender, last_name, enabled) values ('06911 Prentice Plaza', 'Druci', 'Female', 'Humpherston', true);
insert into person (address, first_name, gender, last_name, enabled) values ('664 Porter Crossing', 'Cherice', 'Female', 'Offa', true);
insert into person (address, first_name, gender, last_name, enabled) values ('05564 Goodland Pass', 'Christal', 'Female', 'Brigg', true);
insert into person (address, first_name, gender, last_name, enabled) values ('35633 Bayside Place', 'Reese', 'Male', 'Henze', true);
insert into person (address, first_name, gender, last_name, enabled) values ('13 Anderson Park', 'Jeddy', 'Male', 'Rosier', true);
insert into person (address, first_name, gender, last_name, enabled) values ('588 <NAME>', 'Hermione', 'Female', 'Gherardelli', true);
insert into person (address, first_name, gender, last_name, enabled) values ('33 Gulseth Way', 'Pearl', 'Female', 'Parker', false);
insert into person (address, first_name, gender, last_name, enabled) values ('10 Forster Park', 'Maurise', 'Male', 'Ales', true);
insert into person (address, first_name, gender, last_name, enabled) values ('6 Maple Terrace', 'Johnath', 'Female', 'Dibling', false);
insert into person (address, first_name, gender, last_name, enabled) values ('9 Orin Way', 'Yank', 'Male', 'Leyban', false);
insert into person (address, first_name, gender, last_name, enabled) values ('9 Welch Junction', 'Verile', 'Female', 'MacFadin', false);
insert into person (address, first_name, gender, last_name, enabled) values ('06 Springs Road', 'Leah', 'Female', 'McGann', false);
insert into person (address, first_name, gender, last_name, enabled) values ('75167 Lotheville Alley', 'Trina', 'Female', 'Rupert', false);
insert into person (address, first_name, gender, last_name, enabled) values ('097 Pawling Court', 'Juanita', 'Female', 'Nettles', true);
insert into person (address, first_name, gender, last_name, enabled) values ('9228 Brentwood Terrace', 'Perice', 'Male', 'Bennetto', false);
insert into person (address, first_name, gender, last_name, enabled) values ('7372 Loomis Park', 'Juan', 'Male', 'Dixey', false);
insert into person (address, first_name, gender, last_name, enabled) values ('33 American Ash Junction', 'Tedda', 'Female', 'Crumpe', true);
insert into person (address, first_name, gender, last_name, enabled) values ('3271 Sachtjen Street', 'Graehme', 'Male', 'Ybarra', false);
insert into person (address, first_name, gender, last_name, enabled) values ('7370 Riverside Park', 'Tomasine', 'Female', 'Haggarty', false);
insert into person (address, first_name, gender, last_name, enabled) values ('37 Karstens Park', 'Luce', 'Female', 'Torrecilla', true);
insert into person (address, first_name, gender, last_name, enabled) values ('0 Bartelt Terrace', 'Javier', 'Male', 'Ashman', false);
insert into person (address, first_name, gender, last_name, enabled) values ('74231 7th Way', 'Nert', 'Female', 'Bohman', false);
insert into person (address, first_name, gender, last_name, enabled) values ('6045 Grasskamp Parkway', 'Gibbie', 'Male', 'Leroy', true);
insert into person (address, first_name, gender, last_name, enabled) values ('6 Stone Corner Terrace', 'Cozmo', 'Male', 'Rummings', true);
insert into person (address, first_name, gender, last_name, enabled) values ('18 Cardinal Alley', 'Christyna', 'Female', 'Wickson', false);
insert into person (address, first_name, gender, last_name, enabled) values ('82161 Autumn Leaf Way', 'Arden', 'Female', 'Blethyn', true);
insert into person (address, first_name, gender, last_name, enabled) values ('146 Starling Street', 'Nelie', 'Female', 'Chamley', true);
insert into person (address, first_name, gender, last_name, enabled) values ('15542 Declaration Circle', 'Calv', 'Male', 'Bellas', false);
insert into person (address, first_name, gender, last_name, enabled) values ('5 Birchwood Crossing', 'Simona', 'Female', 'Mcettrick', true);
insert into person (address, first_name, gender, last_name, enabled) values ('61633 Northridge Parkway', 'Dru', 'Male', 'Molan', true);
insert into person (address, first_name, gender, last_name, enabled) values ('0 Helena Place', 'Cal', 'Male', 'Bamlett', false);
insert into person (address, first_name, gender, last_name, enabled) values ('32396 Arapahoe Place', 'Matti', 'Female', 'Ingreda', true);
insert into person (address, first_name, gender, last_name, enabled) values ('498 Sundown Junction', 'Roze', 'Female', 'Lowing', true);
insert into person (address, first_name, gender, last_name, enabled) values ('4 Clove Lane', 'Mureil', 'Female', 'Rosenbusch', true);
insert into person (address, first_name, gender, last_name, enabled) values ('1211 <NAME>ing', 'Chick', 'Male', 'Redihough', false);
insert into person (address, first_name, gender, last_name, enabled) values ('59419 Canary Way', 'Thibaut', 'Male', 'Tebb', true);
insert into person (address, first_name, gender, last_name, enabled) values ('133 Toban Avenue', 'Allyn', 'Male', 'Gleadle', true);
insert into person (address, first_name, gender, last_name, enabled) values ('341 Mcguire Point', 'Barnard', 'Male', 'Babin', true);
insert into person (address, first_name, gender, last_name, enabled) values ('30 Homewood Drive', 'Lucienne', 'Female', 'Firidolfi', false);
insert into person (address, first_name, gender, last_name, enabled) values ('96 Morning Pass', 'Regan', 'Female', 'Caunt', true);
insert into person (address, first_name, gender, last_name, enabled) values ('0 Waywood Road', 'Cross', 'Male', 'Horche', true);
insert into person (address, first_name, gender, last_name, enabled) values ('140 Maywood Hill', 'Di', 'Female', 'Westphal', false);
insert into person (address, first_name, gender, last_name, enabled) values ('2672 Truax Parkway', 'Blinny', 'Female', 'Surgeoner', false);
insert into person (address, first_name, gender, last_name, enabled) values ('496 Warrior Road', 'Jolie', 'Female', 'Semrad', true);
insert into person (address, first_name, gender, last_name, enabled) values ('628 Mcguire Trail', 'Maryjane', 'Female', 'Jamison', false);
insert into person (address, first_name, gender, last_name, enabled) values ('7 Reinke Terrace', 'Blane', 'Male', 'Maskell', false);
insert into person (address, first_name, gender, last_name, enabled) values ('3 Crowley Hill', 'Lynne', 'Female', 'Fleet', true);
insert into person (address, first_name, gender, last_name, enabled) values ('3 Ridge Oak Point', 'Giorgio', 'Male', 'Whittington', false);
insert into person (address, first_name, gender, last_name, enabled) values ('606 Cherokee Avenue', 'Elset', 'Female', 'Jirick', false);
insert into person (address, first_name, gender, last_name, enabled) values ('3552 Forest Plaza', 'Floyd', 'Male', 'Lovelock', false);
insert into person (address, first_name, gender, last_name, enabled) values ('397 Stuart Junction', 'Brigg', 'Male', 'Filisov', true);
insert into person (address, first_name, gender, last_name, enabled) values ('38958 Mall<NAME>t', 'Ikey', 'Male', 'Martinek', false);
insert into person (address, first_name, gender, last_name, enabled) values ('8925 Jana Center', 'Evvie', 'Female', 'Jarrad', true);
insert into person (address, first_name, gender, last_name, enabled) values ('5623 Union Crossing', 'Rod', 'Male', 'Sherston', true);
insert into person (address, first_name, gender, last_name, enabled) values ('0972 Glendale Lane', 'Jamill', 'Male', 'Shoreman', false);
insert into person (address, first_name, gender, last_name, enabled) values ('31 Dwight Junction', 'Jeffy', 'Male', 'Ryce', false);
insert into person (address, first_name, gender, last_name, enabled) values ('23 Westport Point', 'Charlotte', 'Female', 'McGeagh', true);
insert into person (address, first_name, gender, last_name, enabled) values ('1 Arizona Junction', 'Mommy', 'Female', 'Spight', true);
insert into person (address, first_name, gender, last_name, enabled) values ('3264 Grasskamp Drive', 'Alfie', 'Female', 'Siege', true);
insert into person (address, first_name, gender, last_name, enabled) values ('64166 Schmedeman Plaza', 'Matthiew', 'Male', 'Slot', true);
insert into person (address, first_name, gender, last_name, enabled) values ('089 Victoria Crossing', 'Drona', 'Female', 'Uman', false);
insert into person (address, first_name, gender, last_name, enabled) values ('726 Independence Place', 'Lin', 'Female', 'Pozzi', true);
insert into person (address, first_name, gender, last_name, enabled) values ('4246 Vera Hill', 'Otto', 'Male', 'Shewen', true);
insert into person (address, first_name, gender, last_name, enabled) values ('3 Mitchell Court', 'Shae', 'Male', '<NAME>anke', true);
insert into person (address, first_name, gender, last_name, enabled) values ('7933 Badeau Point', 'Norean', 'Female', 'Kingsley', false);
insert into person (address, first_name, gender, last_name, enabled) values ('2 Briar Crest Pass', 'Dacy', 'Female', 'Grayshon', false);
insert into person (address, first_name, gender, last_name, enabled) values ('87661 Old Shore Point', 'Maxim', 'Male', 'Verma', true);
insert into person (address, first_name, gender, last_name, enabled) values ('3 Becker Crossing', 'Ange', 'Male', 'Demoge', false);
insert into person (address, first_name, gender, last_name, enabled) values ('804 Continental Court', 'Tarrance', 'Male', 'Lodder', false);
insert into person (address, first_name, gender, last_name, enabled) values ('810 Derek Center', 'Quill', 'Male', 'Barock', false);
insert into person (address, first_name, gender, last_name, enabled) values ('86954 Warrior Crossing', 'Chelsie', 'Female', 'Georg', true);
insert into person (address, first_name, gender, last_name, enabled) values ('572 Muir Point', 'Gale', 'Male', 'Blacker', true);
insert into person (address, first_name, gender, last_name, enabled) values ('5361 Katie Plaza', 'Willi', 'Female', 'McGurgan', true);
insert into person (address, first_name, gender, last_name, enabled) values ('8 Hallows Court', 'Lovell', 'Male', 'Andrzejczak', true);
insert into person (address, first_name, gender, last_name, enabled) values ('626 Everett Lane', 'Skelly', 'Male', 'Rand', false);
insert into person (address, first_name, gender, last_name, enabled) values ('201 Ridgeview Alley', 'Nessy', 'Female', 'Edlin', true);
insert into person (address, first_name, gender, last_name, enabled) values ('44 Stuart Circle', 'Ruthann', 'Female', 'Paddie', false);
insert into person (address, first_name, gender, last_name, enabled) values ('1 Golden Leaf Junction', 'Emelina', 'Female', 'Pledger', true);
insert into person (address, first_name, gender, last_name, enabled) values ('7289 Magdeline Road', 'Clevie', 'Male', 'Fenby', false);
insert into person (address, first_name, gender, last_name, enabled) values ('625 Sloan Trail', 'Stanislaus', 'Male', 'Alliband', true);
insert into person (address, first_name, gender, last_name, enabled) values ('299 Prentice Terrace', 'Lindsey', 'Female', 'Vuitte', true);
insert into person (address, first_name, gender, last_name, enabled) values ('0 Hooker Pass', 'Maegan', 'Female', 'Shury', true);
insert into person (address, first_name, gender, last_name, enabled) values ('9 Forest Crossing', 'Kenny', 'Male', 'Treat', false);
insert into person (address, first_name, gender, last_name, enabled) values ('56000 Nova Avenue', 'Peter', 'Male', 'Sagg', false);
insert into person (address, first_name, gender, last_name, enabled) values ('177 <NAME>', 'Vittoria', 'Female', 'Skyme', false);
insert into person (address, first_name, gender, last_name, enabled) values ('6 Caliangt Place', 'Granger', 'Male', 'MacTeggart', true);
insert into person (address, first_name, gender, last_name, enabled) values ('729 Ridge Oak Trail', 'Cassey', 'Female', 'Chace', false);
insert into person (address, first_name, gender, last_name, enabled) values ('58 Iowa Hill', 'Merlina', 'Female', 'Romaynes', true);
insert into person (address, first_name, gender, last_name, enabled) values ('07761 Doe Crossing Place', 'Sonnie', 'Male', 'Bwy', false);
insert into person (address, first_name, gender, last_name, enabled) values ('98 Tennyson Lane', 'Edan', 'Male', 'Lewens', true);
insert into person (address, first_name, gender, last_name, enabled) values ('54849 6th Point', 'Salvatore', 'Male', 'Belchamp', true);
insert into person (address, first_name, gender, last_name, enabled) values ('815 Mendota Point', 'Zandra', 'Female', 'Flory', false);
insert into person (address, first_name, gender, last_name, enabled) values ('757 Carioca Pass', 'Holmes', 'Male', 'Caselli', false);
insert into person (address, first_name, gender, last_name, enabled) values ('19 Crest Line Terrace', 'Erena', 'Female', 'Beggin', true);
insert into person (address, first_name, gender, last_name, enabled) values ('80 Luster Center', 'Darsey', 'Female', 'Wormell', true);
insert into person (address, first_name, gender, last_name, enabled) values ('8317 <NAME> Way', 'Dulsea', 'Female', 'Basketfield', false);
insert into person (address, first_name, gender, last_name, enabled) values ('2685 Maryland Way', 'Bennie', 'Male', 'Veldstra', true);
insert into person (address, first_name, gender, last_name, enabled) values ('03977 Susan Alley', 'Clayton', 'Male', 'Yeardley', true);
insert into person (address, first_name, gender, last_name, enabled) values ('94095 Kenwood Lane', 'Evie', 'Female', 'Bexley', false);
insert into person (address, first_name, gender, last_name, enabled) values ('667 Scofield Plaza', 'Marni', 'Female', 'Landsberg', false);
insert into person (address, first_name, gender, last_name, enabled) values ('4 <NAME>', 'Herrick', 'Male', 'Ganforth', true);
insert into person (address, first_name, gender, last_name, enabled) values ('938 Vernon Circle', 'Osborn', 'Male', 'MacGille', false);
insert into person (address, first_name, gender, last_name, enabled) values ('2231 Westend Place', 'Julina', 'Female', 'Looker', true);
insert into person (address, first_name, gender, last_name, enabled) values ('9761 Forest Dale Junction', 'Bobby', 'Male', 'Grand', false);
insert into person (address, first_name, gender, last_name, enabled) values ('60 Namekagon Place', 'Raleigh', 'Male', 'Ramberg', false);
insert into person (address, first_name, gender, last_name, enabled) values ('2095 Gulseth Avenue', 'Dorrie', 'Female', 'Sprules', false);
insert into person (address, first_name, gender, last_name, enabled) values ('11429 Manufacturers Trail', 'Paulita', 'Female', 'Garfoot', false);
insert into person (address, first_name, gender, last_name, enabled) values ('1482 Superior Trail', 'Felipe', 'Male', 'Clausewitz', false);
insert into person (address, first_name, gender, last_name, enabled) values ('3341 Heffernan Hill', 'Maryellen', 'Female', 'Late', false);
insert into person (address, first_name, gender, last_name, enabled) values ('71 Forest Dale Drive', 'Janella', 'Female', 'Clist', true);
insert into person (address, first_name, gender, last_name, enabled) values ('31 Lighthouse Bay Center', 'Ernest', 'Male', 'Bleyman', true);
insert into person (address, first_name, gender, last_name, enabled) values ('561 Eagan Plaza', 'Gasparo', 'Male', 'Batten', false);
insert into person (address, first_name, gender, last_name, enabled) values ('117 Reindahl Circle', 'Ilysa', 'Female', 'Simmonite', false);
insert into person (address, first_name, gender, last_name, enabled) values ('517 Bluejay Trail', 'Ernie', 'Male', 'Auger', true);
insert into person (address, first_name, gender, last_name, enabled) values ('97998 Crest Line Street', 'Juliana', 'Female', 'Maylam', false);
insert into person (address, first_name, gender, last_name, enabled) values ('23876 Thierer Place', 'Sidney', 'Male', 'Pinor', false);
insert into person (address, first_name, gender, last_name, enabled) values ('39084 Bashford Road', 'Lizette', 'Female', 'Kornyakov', false);
insert into person (address, first_name, gender, last_name, enabled) values ('5 Carberry Terrace', 'Jack', 'Male', 'Trevethan', true);
insert into person (address, first_name, gender, last_name, enabled) values ('803 Corscot Terrace', 'Nada', 'Female', 'Gleeton', false);
insert into person (address, first_name, gender, last_name, enabled) values ('522 Porter Place', 'Oliviero', 'Male', 'Escalante', false);
insert into person (address, first_name, gender, last_name, enabled) values ('0130 Sunfield Place', 'Quintilla', 'Female', 'Loxton', false);
insert into person (address, first_name, gender, last_name, enabled) values ('551 Gale Avenue', 'Nerte', 'Female', 'Castagne', true);
insert into person (address, first_name, gender, last_name, enabled) values ('7 Sachs Plaza', 'Danya', 'Female', 'Bernaert', true);
insert into person (address, first_name, gender, last_name, enabled) values ('3656 Hagan Road', 'Valentia', 'Female', 'Divill', false);
insert into person (address, first_name, gender, last_name, enabled) values ('6355 Lakeland Place', 'Fidelity', 'Female', 'Beany', true);
insert into person (address, first_name, gender, last_name, enabled) values ('6119 Portage Center', 'Matty', 'Female', 'Kun', false);
insert into person (address, first_name, gender, last_name, enabled) values ('27 Blue Bill Park Way', 'Verena', 'Female', 'Johnsson', true);
insert into person (address, first_name, gender, last_name, enabled) values ('8298 Upham Court', 'Gussi', 'Female', 'Keniwell', false);
insert into person (address, first_name, gender, last_name, enabled) values ('6 Ridgeway Crossing', 'Davidson', 'Male', 'Eddins', false);
insert into person (address, first_name, gender, last_name, enabled) values ('26 <NAME>', 'Dix', 'Female', 'Hagard', true);
insert into person (address, first_name, gender, last_name, enabled) values ('0 <NAME>', 'Clarissa', 'Female', 'Yukhnini', false);
insert into person (address, first_name, gender, last_name, enabled) values ('8521 Myrtle Street', 'Stanwood', 'Male', 'Reihm', false);
insert into person (address, first_name, gender, last_name, enabled) values ('60 Sundown Pass', 'Giana', 'Female', 'Choules', false);
insert into person (address, first_name, gender, last_name, enabled) values ('61517 Loeprich Circle', 'Skyler', 'Male', 'Groocock', false);
insert into person (address, first_name, gender, last_name, enabled) values ('389 Buell Plaza', 'Jose', 'Male', 'Teare', true);
insert into person (address, first_name, gender, last_name, enabled) values ('8872 Lotheville Place', 'Delly', 'Female', 'Yeaman', false);
insert into person (address, first_name, gender, last_name, enabled) values ('86109 John Wall Circle', 'Hewitt', 'Male', 'Hulls', true);
insert into person (address, first_name, gender, last_name, enabled) values ('5 Stephen Park', 'Cordi', 'Female', 'Strongman', false);
insert into person (address, first_name, gender, last_name, enabled) values ('10 Londonderry Place', 'Norina', 'Female', 'Castiblanco', true);
insert into person (address, first_name, gender, last_name, enabled) values ('2358 Haas Crossing', 'Walker', 'Male', 'Eyres', true);
insert into person (address, first_name, gender, last_name, enabled) values ('624 <NAME>', 'Brittne', 'Female', 'Jeeks', true);
insert into person (address, first_name, gender, last_name, enabled) values ('8 Meadow Vale Park', 'Forster', 'Male', 'Penn', true);
insert into person (address, first_name, gender, last_name, enabled) values ('09440 Arkansas Avenue', 'Sayer', 'Male', 'Pither', false);
insert into person (address, first_name, gender, last_name, enabled) values ('785 <NAME>', 'Alwyn', 'Male', 'Jeandillou', false);
insert into person (address, first_name, gender, last_name, enabled) values ('22443 <NAME>', 'Delphine', 'Female', 'Gludor', false);
insert into person (address, first_name, gender, last_name, enabled) values ('6129 Westend Place', 'Nathaniel', 'Male', 'Ramelot', false);
insert into person (address, first_name, gender, last_name, enabled) values ('6 Erie Circle', 'Alexandros', 'Male', 'Battams', false);
insert into person (address, first_name, gender, last_name, enabled) values ('97223 Summerview Crossing', 'Fancy', 'Female', 'Corking', true);
insert into person (address, first_name, gender, last_name, enabled) values ('6609 Karstens Point', 'Oliver', 'Male', 'Bahlmann', true);
insert into person (address, first_name, gender, last_name, enabled) values ('68182 Hooker Point', 'Milicent', 'Female', 'Gudyer', true);
insert into person (address, first_name, gender, last_name, enabled) values ('9268 Kensington Point', 'Rocky', 'Male', 'Sherman', false);
insert into person (address, first_name, gender, last_name, enabled) values ('0979 Hanover Trail', 'Cassandra', 'Female', 'Lethibridge', true);
insert into person (address, first_name, gender, last_name, enabled) values ('1 Marquette Avenue', 'Grazia', 'Female', 'Stook', true);
insert into person (address, first_name, gender, last_name, enabled) values ('027 Crest Line Way', 'Elsworth', 'Male', 'Bestwerthick', true);
insert into person (address, first_name, gender, last_name, enabled) values ('25799 Shasta Lane', 'Isaak', 'Male', 'Madrell', true);
insert into person (address, first_name, gender, last_name, enabled) values ('22 Weeping Birch Road', 'Kalila', 'Female', 'Vogelein', true);
insert into person (address, first_name, gender, last_name, enabled) values ('91 Harper Hill', 'Chelsea', 'Female', 'Greenwell', false);
insert into person (address, first_name, gender, last_name, enabled) values ('74 Bashford Avenue', 'Ervin', 'Male', 'Sabbin', false);
insert into person (address, first_name, gender, last_name, enabled) values ('715 Westerfield Lane', 'Pier', 'Female', 'Baldacco', false);
insert into person (address, first_name, gender, last_name, enabled) values ('29428 Crescent Oaks Crossing', 'Melitta', 'Female', 'Ondrusek', true);
insert into person (address, first_name, gender, last_name, enabled) values ('6528 Beilfuss Crossing', 'Eldin', 'Male', 'Connew', true);
insert into person (address, first_name, gender, last_name, enabled) values ('771 Lotheville Hill', 'Ned', 'Male', 'Bruineman', false);
insert into person (address, first_name, gender, last_name, enabled) values ('66637 Dakota Point', 'Quintana', 'Female', 'Lurcock', true);
insert into person (address, first_name, gender, last_name, enabled) values ('75 Lindbergh Terrace', 'Roselia', 'Female', 'Jozsa', false);
insert into person (address, first_name, gender, last_name, enabled) values ('751 <NAME>', 'Tessa', 'Female', 'Caddock', true);
insert into person (address, first_name, gender, last_name, enabled) values ('51 Lindbergh Avenue', 'Swen', 'Male', 'Laux', false);
insert into person (address, first_name, gender, last_name, enabled) values ('46 Barnett Trail', 'Yul', 'Male', 'Gawkroge', true);
insert into person (address, first_name, gender, last_name, enabled) values ('902 Dovetail Avenue', 'Keriann', 'Female', 'Trorey', false);
insert into person (address, first_name, gender, last_name, enabled) values ('7 Schiller Avenue', 'Sharia', 'Female', 'Elman', false);
insert into person (address, first_name, gender, last_name, enabled) values ('4848 Summer Ridge Circle', 'Caesar', 'Male', 'Inston', false);
insert into person (address, first_name, gender, last_name, enabled) values ('8473 Sutherland Circle', 'Hyacinthie', 'Female', 'Lias', false);
insert into person (address, first_name, gender, last_name, enabled) values ('384 Duke Court', 'Liz', 'Female', 'Ivashintsov', true);
insert into person (address, first_name, gender, last_name, enabled) values ('0903 Anhalt Circle', 'Hi', 'Male', 'Hearmon', false);
insert into person (address, first_name, gender, last_name, enabled) values ('2066 Wayridge Drive', 'Charmain', 'Female', 'Fitch', true);
insert into person (address, first_name, gender, last_name, enabled) values ('1331 Acker Center', 'Hildy', 'Female', 'Yukhnevich', true);
insert into person (address, first_name, gender, last_name, enabled) values ('6 Hooker Terrace', 'Reynard', 'Male', 'Dunnett', true);
insert into person (address, first_name, gender, last_name, enabled) values ('601 School Center', 'Dmitri', 'Male', 'Swinerd', true);
insert into person (address, first_name, gender, last_name, enabled) values ('0619 Anniversary Terrace', 'Sioux', 'Female', 'Lumox', false);
insert into person (address, first_name, gender, last_name, enabled) values ('386 Dexter Place', 'Charlena', 'Female', 'Sibbet', false);
insert into person (address, first_name, gender, last_name, enabled) values ('793 Eastwood Street', 'Brigitte', 'Female', 'Faulconer', true);
insert into person (address, first_name, gender, last_name, enabled) values ('4084 Shopko Terrace', 'Brannon', 'Male', 'Jeandon', false);
insert into person (address, first_name, gender, last_name, enabled) values ('404 Blue Bill Park Drive', 'Alaster', 'Male', 'Whitters', false);
insert into person (address, first_name, gender, last_name, enabled) values ('3341 Graceland Way', 'Rhianon', 'Female', 'Doni', true);
insert into person (address, first_name, gender, last_name, enabled) values ('724 American Ash Point', 'Engelbert', 'Male', 'Plevin', true);
insert into person (address, first_name, gender, last_name, enabled) values ('4374 Oriole Terrace', 'Avery', 'Male', 'Segeswoeth', false);
insert into person (address, first_name, gender, last_name, enabled) values ('29960 Thierer Street', 'Patience', 'Female', 'Aylett', true);
insert into person (address, first_name, gender, last_name, enabled) values ('10433 Fordem Drive', 'Juieta', 'Female', 'Gouda', false);
insert into person (address, first_name, gender, last_name, enabled) values ('68 Schlimgen Lane', 'Betta', 'Female', 'Kilshall', true);
insert into person (address, first_name, gender, last_name, enabled) values ('490 Melody Plaza', 'Bertrand', 'Male', 'Lynam', false);
insert into person (address, first_name, gender, last_name, enabled) values ('08772 Moland Way', 'Delmor', 'Male', 'Gerritzen', false);
insert into person (address, first_name, gender, last_name, enabled) values ('5465 Kipling Park', 'Frederick', 'Male', 'Rowaszkiewicz', false);
insert into person (address, first_name, gender, last_name, enabled) values ('7 Portage Street', 'Reinhard', 'Male', 'Hayselden', true);
insert into person (address, first_name, gender, last_name, enabled) values ('03145 Golf Way', 'Brigham', 'Male', 'Woffinden', true);
insert into person (address, first_name, gender, last_name, enabled) values ('47346 Lighthouse Bay Lane', 'Stanley', 'Male', 'D''Onisi', false);
insert into person (address, first_name, gender, last_name, enabled) values ('66063 Nevada Lane', 'Homer', 'Male', 'Donwell', false);
insert into person (address, first_name, gender, last_name, enabled) values ('9 Ilene Plaza', 'Ginger', 'Male', 'Richardson', true);
insert into person (address, first_name, gender, last_name, enabled) values ('64260 Stephen Avenue', 'Kellby', 'Male', 'Cud', false);
insert into person (address, first_name, gender, last_name, enabled) values ('88 Talmadge Park', 'Rawley', 'Male', 'Carmont', true);
insert into person (address, first_name, gender, last_name, enabled) values ('69532 Nevada Crossing', 'Wang', 'Male', 'MacRinn', true);
insert into person (address, first_name, gender, last_name, enabled) values ('55986 Montana Center', 'Conroy', 'Male', 'Simonou', true);
insert into person (address, first_name, gender, last_name, enabled) values ('1461 Norway Maple Circle', 'Cheslie', 'Female', 'Turneux', true);
insert into person (address, first_name, gender, last_name, enabled) values ('416 Messerschmidt Court', 'Bary', 'Male', 'Kos', true);
insert into person (address, first_name, gender, last_name, enabled) values ('4 Evergreen Center', 'Daven', 'Male', 'Arnall', true);
insert into person (address, first_name, gender, last_name, enabled) values ('0 Hooker Trail', 'Zacharie', 'Male', 'Terrington', false);
insert into person (address, first_name, gender, last_name, enabled) values ('1497 Sullivan Crossing', 'Brennen', 'Male', 'Sarle', true);
insert into person (address, first_name, gender, last_name, enabled) values ('588 Hintze Park', 'Mortimer', 'Male', 'Sketh', false);
insert into person (address, first_name, gender, last_name, enabled) values ('3330 Vidon Circle', 'Lindsay', 'Male', 'Gridon', true);
insert into person (address, first_name, gender, last_name, enabled) values ('73 Ridgeview Park', 'Ephraim', 'Male', 'Ayars', true);
insert into person (address, first_name, gender, last_name, enabled) values ('05 Burning Wood Drive', 'Brose', 'Male', 'Dyerson', false);
insert into person (address, first_name, gender, last_name, enabled) values ('4 Grim Circle', 'Candide', 'Female', 'Costard', false);
insert into person (address, first_name, gender, last_name, enabled) values ('9046 D<NAME>', 'Gratia', 'Female', 'Antonio', false);
insert into person (address, first_name, gender, last_name, enabled) values ('13817 Loeprich Park', 'Lew', 'Male', 'Manchett', true);
insert into person (address, first_name, gender, last_name, enabled) values ('1798 Raven Plaza', 'Merwin', 'Male', 'Ilyushkin', true);
insert into person (address, first_name, gender, last_name, enabled) values ('567 Lerdahl Avenue', 'Temp', 'Male', 'Maddicks', true);
insert into person (address, first_name, gender, last_name, enabled) values ('27436 Veith Pass', 'Kelcie', 'Female', 'Holtham', true);
insert into person (address, first_name, gender, last_name, enabled) values ('35 Steensland Terrace', 'Bride', 'Female', 'Bertome', false);
insert into person (address, first_name, gender, last_name, enabled) values ('4275 Northwestern Trail', 'Petr', 'Male', 'Corps', true);
insert into person (address, first_name, gender, last_name, enabled) values ('373 Nelson Drive', 'Barrie', 'Female', 'Hilliam', true);
insert into person (address, first_name, gender, last_name, enabled) values ('8085 Armistice Drive', 'Bartlett', 'Male', 'Cockrell', false);
insert into person (address, first_name, gender, last_name, enabled) values ('78 Sullivan Circle', 'Kelvin', 'Male', 'Kahn', false);
insert into person (address, first_name, gender, last_name, enabled) values ('2 Bluestem Terrace', 'Gavin', 'Male', 'Kingcote', false);
insert into person (address, first_name, gender, last_name, enabled) values ('4058 Elmside Trail', 'Giraud', 'Male', 'Bygraves', true);
insert into person (address, first_name, gender, last_name, enabled) values ('484 <NAME>', 'Royal', 'Male', 'Pridding', false);
insert into person (address, first_name, gender, last_name, enabled) values ('6 Hintze Place', 'Rozina', 'Female', 'Mussett', false);
insert into person (address, first_name, gender, last_name, enabled) values ('7 Center Circle', 'Andeee', 'Female', 'Scholer', false);
insert into person (address, first_name, gender, last_name, enabled) values ('09252 Sunfield Circle', 'Theodore', 'Male', 'Breslau', false);
insert into person (address, first_name, gender, last_name, enabled) values ('3781 Rockefeller Center', 'Hamlin', 'Male', 'Manton', false);
insert into person (address, first_name, gender, last_name, enabled) values ('46494 Charing Cross Avenue', 'Nicolette', 'Female', 'Janczak', true);
insert into person (address, first_name, gender, last_name, enabled) values ('94 Gateway Trail', 'Arturo', 'Male', 'Crumb', false);
insert into person (address, first_name, gender, last_name, enabled) values ('2738 Bowman Hill', 'Tarah', 'Female', 'Shimoni', true);
insert into person (address, first_name, gender, last_name, enabled) values ('60421 Kings Junction', 'Arturo', 'Male', 'Masser', false);
insert into person (address, first_name, gender, last_name, enabled) values ('42 Lillian Center', 'Alonzo', 'Male', 'Ianizzi', false);
insert into person (address, first_name, gender, last_name, enabled) values ('05481 Pierstorff Park', 'Lutero', 'Male', 'Richfield', true);
insert into person (address, first_name, gender, last_name, enabled) values ('367 South Alley', 'Adan', 'Female', 'Reede', true);
insert into person (address, first_name, gender, last_name, enabled) values ('402 La<NAME>', 'Angelico', 'Male', 'Salvatore', false);
insert into person (address, first_name, gender, last_name, enabled) values ('5 Pankratz Hill', 'Burr', 'Male', 'Furney', true);
insert into person (address, first_name, gender, last_name, enabled) values ('672 Rutledge Road', 'Daryle', 'Male', 'Varnals', true);
insert into person (address, first_name, gender, last_name, enabled) values ('58 Carey Road', 'Borg', 'Male', 'Denington', false);
insert into person (address, first_name, gender, last_name, enabled) values ('87200 Montana Junction', 'Don', 'Male', 'Bossom', true);
insert into person (address, first_name, gender, last_name, enabled) values ('121 Dapin Pass', 'Hartwell', 'Male', 'Ashburner', true);
insert into person (address, first_name, gender, last_name, enabled) values ('61 Steensland Crossing', 'Muire', 'Female', 'Mechi', false);
insert into person (address, first_name, gender, last_name, enabled) values ('1 Brickson Park Drive', 'Charita', 'Female', 'Faull', true);
insert into person (address, first_name, gender, last_name, enabled) values ('1872 Lerdahl Pass', 'Drake', 'Male', 'Rozalski', false);
insert into person (address, first_name, gender, last_name, enabled) values ('823 Eggendart Hill', 'Abdel', 'Male', 'Ashfold', false);
insert into person (address, first_name, gender, last_name, enabled) values ('4 Anderson Parkway', 'Hansiain', 'Male', 'Briffett', false);
insert into person (address, first_name, gender, last_name, enabled) values ('2549 Mesta Point', 'Colby', 'Male', 'Itzkovwitch', true);
insert into person (address, first_name, gender, last_name, enabled) values ('65377 Loftsgordon Plaza', 'Lorenzo', 'Male', 'Minster', true);
insert into person (address, first_name, gender, last_name, enabled) values ('384 Forest Hill', 'Artie', 'Male', 'Itzak', false);
insert into person (address, first_name, gender, last_name, enabled) values ('52 Esch Park', 'Kristoffer', 'Male', 'Elintune', false);
insert into person (address, first_name, gender, last_name, enabled) values ('6078 Linden Avenue', 'Gusella', 'Female', 'de Cullip', false);
insert into person (address, first_name, gender, last_name, enabled) values ('90484 Eggendart Parkway', 'Rafaelita', 'Female', 'Yurocjhin', false);
insert into person (address, first_name, gender, last_name, enabled) values ('948 Dexter Crossing', 'Conway', 'Male', 'Scurrey', false);
insert into person (address, first_name, gender, last_name, enabled) values ('19 Reindahl Road', 'Jenni', 'Female', 'Beden', true);
insert into person (address, first_name, gender, last_name, enabled) values ('0 Union Pass', 'Jard', 'Male', 'Laminman', true);
insert into person (address, first_name, gender, last_name, enabled) values ('2586 Ilene Lane', 'Gilda', 'Female', 'Weatherell', true);
insert into person (address, first_name, gender, last_name, enabled) values ('82545 Washington Court', 'Darwin', 'Male', 'Jinks', true);
insert into person (address, first_name, gender, last_name, enabled) values ('5013 <NAME>', 'Kariotta', 'Female', 'Hanlon', true);
insert into person (address, first_name, gender, last_name, enabled) values ('8406 Namekagon Junction', 'Errol', 'Male', 'Lathwell', true);
insert into person (address, first_name, gender, last_name, enabled) values ('429 Ohio Circle', 'Cobbie', 'Male', 'Joinsey', false);
insert into person (address, first_name, gender, last_name, enabled) values ('30286 Dottie Court', 'Alane', 'Female', 'Anders', false);
insert into person (address, first_name, gender, last_name, enabled) values ('33 Cordelia Road', 'Reagan', 'Male', 'Biskupek', false);
insert into person (address, first_name, gender, last_name, enabled) values ('06 Bayside Terrace', 'Keen', 'Male', 'Ower', false);
insert into person (address, first_name, gender, last_name, enabled) values ('48630 Golf Course Circle', 'Weber', 'Male', 'Harnor', false);
insert into person (address, first_name, gender, last_name, enabled) values ('31520 Hoffman Way', 'Pollyanna', 'Female', 'O''Donegan', false);
insert into person (address, first_name, gender, last_name, enabled) values ('72 Milwaukee Park', 'Olwen', 'Female', 'Cherry', false);
insert into person (address, first_name, gender, last_name, enabled) values ('200 Michigan Drive', 'Ker', 'Male', 'Prydie', false);
insert into person (address, first_name, gender, last_name, enabled) values ('0 Union Parkway', 'Harbert', 'Male', 'Kenrick', false);
insert into person (address, first_name, gender, last_name, enabled) values ('233 <NAME>', 'Hi', 'Male', 'Lindwall', false);
insert into person (address, first_name, gender, last_name, enabled) values ('03 <NAME>', 'Jessica', 'Female', 'Bartosinski', false);
insert into person (address, first_name, gender, last_name, enabled) values ('2 Utah Way', 'Baird', 'Male', 'Pedley', false);
insert into person (address, first_name, gender, last_name, enabled) values ('0 Susan Park', 'Norrie', 'Male', 'Andriessen', false);
insert into person (address, first_name, gender, last_name, enabled) values ('5 Killdeer Drive', 'Rosina', 'Female', 'Jamblin', false);
insert into person (address, first_name, gender, last_name, enabled) values ('27961 <NAME>', 'Desdemona', 'Female', 'Gaskin', false);
insert into person (address, first_name, gender, last_name, enabled) values ('1 <NAME>ill', 'Aili', 'Female', 'Tempest', false);
insert into person (address, first_name, gender, last_name, enabled) values ('2347 Shopko Park', 'Barbee', 'Female', 'McLaren', false);
insert into person (address, first_name, gender, last_name, enabled) values ('51551 Milwaukee Trail', 'Brocky', 'Male', 'Geoghegan', true);
insert into person (address, first_name, gender, last_name, enabled) values ('09 Haas Alley', 'Lethia', 'Female', 'Chainey', true);
insert into person (address, first_name, gender, last_name, enabled) values ('85 Pawling Center', 'Tracie', 'Male', 'Olwen', true);
insert into person (address, first_name, gender, last_name, enabled) values ('781 1st Hill', 'Sebastian', 'Male', 'Gonnelly', true);
insert into person (address, first_name, gender, last_name, enabled) values ('098 Anniversary Plaza', 'Hank', 'Male', 'Loker', true);
insert into person (address, first_name, gender, last_name, enabled) values ('05 Hayes Park', 'Bartram', 'Male', 'Brister', false);
insert into person (address, first_name, gender, last_name, enabled) values ('51641 <NAME>', 'Con', 'Female', 'Bather', true);
insert into person (address, first_name, gender, last_name, enabled) values ('257 R<NAME>', 'Freddie', 'Male', 'Maidens', true);
insert into person (address, first_name, gender, last_name, enabled) values ('4 Memorial Alley', 'Delia', 'Female', 'Dumphry', false);
insert into person (address, first_name, gender, last_name, enabled) values ('3 Karstens Drive', 'Hartley', 'Male', 'Terris', true);
insert into person (address, first_name, gender, last_name, enabled) values ('44655 Menomonie Avenue', 'Francesco', 'Male', 'Beedie', false);
insert into person (address, first_name, gender, last_name, enabled) values ('71635 Eastwood Pass', 'Jeannine', 'Female', 'Buist', true);
insert into person (address, first_name, gender, last_name, enabled) values ('23737 Dennis Drive', 'Dugald', 'Male', 'Povlsen', true);
insert into person (address, first_name, gender, last_name, enabled) values ('79 <NAME>', 'Lynnette', 'Female', 'Jermyn', true);
insert into person (address, first_name, gender, last_name, enabled) values ('5 Monica Terrace', 'Buiron', 'Male', 'Gaspar', true);
insert into person (address, first_name, gender, last_name, enabled) values ('3 Columbus Point', 'Adriano', 'Male', 'Bellhanger', false);
insert into person (address, first_name, gender, last_name, enabled) values ('526 <NAME>', 'Violetta', 'Female', 'Jago', false);
insert into person (address, first_name, gender, last_name, enabled) values ('3472 Talmadge Place', 'Daffi', 'Female', 'Hart', false);
insert into person (address, first_name, gender, last_name, enabled) values ('45277 Hollow Ridge Avenue', 'April', 'Female', 'Knevet', false);
insert into person (address, first_name, gender, last_name, enabled) values ('41 Independence Drive', 'Eleonora', 'Female', 'Bennellick', false);
insert into person (address, first_name, gender, last_name, enabled) values ('14 Blackbird Trail', 'Lezley', 'Male', 'Sayward', false);
insert into person (address, first_name, gender, last_name, enabled) values ('00089 Pankratz Center', 'Idette', 'Female', 'Brownett', false);
insert into person (address, first_name, gender, last_name, enabled) values ('562 Gina Way', 'Francklyn', 'Male', 'Readings', true);
insert into person (address, first_name, gender, last_name, enabled) values ('6884 Anthes Junction', 'Agustin', 'Male', 'Alentyev', true);
insert into person (address, first_name, gender, last_name, enabled) values ('4 Dryden Lane', 'Erika', 'Female', 'Koppens', true);
insert into person (address, first_name, gender, last_name, enabled) values ('11572 Dryden Park', 'Franny', 'Female', 'Danzig', true);
insert into person (address, first_name, gender, last_name, enabled) values ('33451 Harbort Avenue', 'Hanna', 'Female', 'Moxham', false);
insert into person (address, first_name, gender, last_name, enabled) values ('9747 Service Terrace', 'Livy', 'Female', 'Ingham', true);
insert into person (address, first_name, gender, last_name, enabled) values ('9822 Dryden Terrace', 'Deonne', 'Female', 'Compson', true);
insert into person (address, first_name, gender, last_name, enabled) values ('0 Coleman Center', 'Moises', 'Male', 'Lapping', false);
insert into person (address, first_name, gender, last_name, enabled) values ('01 Crescent Oaks Lane', 'Menard', 'Male', 'Harty', false);
insert into person (address, first_name, gender, last_name, enabled) values ('7670 Eagle Crest Terrace', 'Deeanne', 'Female', 'Slessar', false);
insert into person (address, first_name, gender, last_name, enabled) values ('37679 Butternut Avenue', 'Elihu', 'Male', 'Yukhnevich', false);
insert into person (address, first_name, gender, last_name, enabled) values ('330 Huxley Park', 'Janean', 'Female', 'Wilcock', true);
insert into person (address, first_name, gender, last_name, enabled) values ('169 Eastlawn Place', 'Linus', 'Male', 'Linnitt', true);
insert into person (address, first_name, gender, last_name, enabled) values ('79326 Bellgrove Terrace', 'Tabby', 'Male', 'Philipsson', true);
insert into person (address, first_name, gender, last_name, enabled) values ('1 Rieder Crossing', 'Pen', 'Female', 'Mewburn', true);
insert into person (address, first_name, gender, last_name, enabled) values ('955 Meadow Valley Avenue', 'Hagan', 'Male', 'Beek', false);
insert into person (address, first_name, gender, last_name, enabled) values ('678 Sachtjen Circle', 'Nappy', 'Male', 'Jowsey', true);
insert into person (address, first_name, gender, last_name, enabled) values ('410 6th Street', 'Aurthur', 'Male', 'Kops', true);
insert into person (address, first_name, gender, last_name, enabled) values ('90224 Oak Lane', 'Jasen', 'Male', 'Collacombe', true);
insert into person (address, first_name, gender, last_name, enabled) values ('67 Northwestern Road', 'Antonina', 'Female', 'Siseland', true);
insert into person (address, first_name, gender, last_name, enabled) values ('8 Vernon Drive', 'Clayton', 'Male', 'Shippam', true);
insert into person (address, first_name, gender, last_name, enabled) values ('5578 Esch Center', 'Saxe', 'Male', 'Skiggs', true);
insert into person (address, first_name, gender, last_name, enabled) values ('50110 <NAME>', 'Richart', 'Male', 'Mordon', false);
insert into person (address, first_name, gender, last_name, enabled) values ('837 International Plaza', 'Langston', 'Male', 'Silcock', true);
insert into person (address, first_name, gender, last_name, enabled) values ('52 La Follette Drive', 'Lelah', 'Female', 'Olufsen', true);
insert into person (address, first_name, gender, last_name, enabled) values ('2500 Hovde Hill', 'Jorge', 'Male', 'Naish', false);
insert into person (address, first_name, gender, last_name, enabled) values ('188 Buhler Terrace', 'Jerrome', 'Male', 'Goose', true);
insert into person (address, first_name, gender, last_name, enabled) values ('331 Vermont Plaza', 'Rosemaria', 'Female', 'McCahey', false);
insert into person (address, first_name, gender, last_name, enabled) values ('06757 Quincy Place', 'Davida', 'Female', 'Grzes', false);
insert into person (address, first_name, gender, last_name, enabled) values ('8 Old Shore Crossing', 'Mirna', 'Female', 'McReedy', false);
insert into person (address, first_name, gender, last_name, enabled) values ('6163 Washington Plaza', 'Ripley', 'Male', 'Rippen', true);
insert into person (address, first_name, gender, last_name, enabled) values ('8308 Waywood Trail', 'Berthe', 'Female', 'Fendley', true);
insert into person (address, first_name, gender, last_name, enabled) values ('56031 Spaight Hill', 'Eachelle', 'Female', 'felip', false);
insert into person (address, first_name, gender, last_name, enabled) values ('102 Farmco Hill', 'Finn', 'Male', 'Snowden', false);
insert into person (address, first_name, gender, last_name, enabled) values ('14263 Green Ridge Alley', 'Alley', 'Male', 'Drewett', true);
insert into person (address, first_name, gender, last_name, enabled) values ('8583 John Wall Street', 'Wake', 'Male', 'Aldren', false);
insert into person (address, first_name, gender, last_name, enabled) values ('588 Birchwood Point', 'Aldus', 'Male', 'Chessil', true);
insert into person (address, first_name, gender, last_name, enabled) values ('8052 Northland Street', 'Stearne', 'Male', 'Tingle', true);
insert into person (address, first_name, gender, last_name, enabled) values ('8 Pawling Park', 'Arnie', 'Male', 'Capozzi', false);
insert into person (address, first_name, gender, last_name, enabled) values ('69 Luster Court', 'Bette-ann', 'Female', 'Scardafield', true);
insert into person (address, first_name, gender, last_name, enabled) values ('45 Del <NAME>ill', 'Aurilia', 'Female', 'Hulson', false);
insert into person (address, first_name, gender, last_name, enabled) values ('810 Bowman Junction', 'Holden', 'Male', 'Bernardotti', true);
insert into person (address, first_name, gender, last_name, enabled) values ('72 Raven Junction', 'Kinny', 'Male', 'Blissitt', false);
insert into person (address, first_name, gender, last_name, enabled) values ('99115 Golf View Road', 'Deloris', 'Female', 'Geroldo', false);
insert into person (address, first_name, gender, last_name, enabled) values ('13702 Continental Trail', 'Dell', 'Female', 'Munns', true);
insert into person (address, first_name, gender, last_name, enabled) values ('00 Clemons Road', 'Ardelle', 'Female', 'Domelow', false);
insert into person (address, first_name, gender, last_name, enabled) values ('540 Gerald Park', 'Jesse', 'Male', 'Claige', false);
insert into person (address, first_name, gender, last_name, enabled) values ('3 Loeprich Parkway', 'Babbette', 'Female', 'Streetfield', true);
insert into person (address, first_name, gender, last_name, enabled) values ('2 Esch Plaza', 'Deanne', 'Female', 'Giovannazzi', false);
insert into person (address, first_name, gender, last_name, enabled) values ('3019 Sherman Way', 'Royce', 'Male', 'Quoit', false);
insert into person (address, first_name, gender, last_name, enabled) values ('07162 Kingsford Way', 'Jarib', 'Male', 'Warwicker', false);
insert into person (address, first_name, gender, last_name, enabled) values ('01807 Warb<NAME>t', 'Ronnica', 'Female', 'Hablet', true);
insert into person (address, first_name, gender, last_name, enabled) values ('7 Waxwing Drive', 'Delcine', 'Female', 'Cattell', true);
insert into person (address, first_name, gender, last_name, enabled) values ('78044 Meadow Ridge Parkway', 'Karoline', 'Female', 'Wims', true);
insert into person (address, first_name, gender, last_name, enabled) values ('5 Sheridan Point', 'Grace', 'Female', 'Collumbine', true);
insert into person (address, first_name, gender, last_name, enabled) values ('340 Sundown Plaza', 'Celestia', 'Female', 'Gilderoy', false);
insert into person (address, first_name, gender, last_name, enabled) values ('594 Morning Point', 'Jayne', 'Female', 'Keyte', false);
insert into person (address, first_name, gender, last_name, enabled) values ('77140 Hoepker Way', 'Thomasina', 'Female', 'Jovicic', false);
insert into person (address, first_name, gender, last_name, enabled) values ('5 Glendale Crossing', 'Daphene', 'Female', 'Paschek', true);
insert into person (address, first_name, gender, last_name, enabled) values ('71 Ruskin Way', 'Lester', 'Male', 'Pendrich', false);
insert into person (address, first_name, gender, last_name, enabled) values ('9230 Meadow Vale Alley', 'Bord', 'Male', 'Preuvost', false);
insert into person (address, first_name, gender, last_name, enabled) values ('7617 Larry Point', 'Annabal', 'Female', 'Sheerin', false);
insert into person (address, first_name, gender, last_name, enabled) values ('76 Schmedeman Plaza', 'Maddy', 'Female', 'Ducker', true);
insert into person (address, first_name, gender, last_name, enabled) values ('15 Blaine Way', 'Rudiger', 'Male', 'Clyburn', false);
insert into person (address, first_name, gender, last_name, enabled) values ('67157 Lukken Pass', 'Madison', 'Male', 'Boyet', true);
insert into person (address, first_name, gender, last_name, enabled) values ('15048 Alpine Street', 'Randall', 'Male', 'Kinghorn', true);
insert into person (address, first_name, gender, last_name, enabled) values ('190 Lotheville Way', 'Drusilla', 'Female', 'Breitler', true);
insert into person (address, first_name, gender, last_name, enabled) values ('9 8th Hill', 'Bobina', 'Female', 'Klaff', true);
insert into person (address, first_name, gender, last_name, enabled) values ('9 Sachtjen Road', 'Casper', 'Male', 'Brumpton', false);
insert into person (address, first_name, gender, last_name, enabled) values ('38229 Harper Pass', 'Putnem', 'Male', 'Leadston', true);
insert into person (address, first_name, gender, last_name, enabled) values ('1276 Mockingbird Circle', 'Livvyy', 'Female', 'Gooddy', true);
insert into person (address, first_name, gender, last_name, enabled) values ('44 Debra Hill', 'Cory', 'Female', 'Hucke', false);
insert into person (address, first_name, gender, last_name, enabled) values ('79014 Canary Alley', 'Lyda', 'Female', 'Wardingly', true);
insert into person (address, first_name, gender, last_name, enabled) values ('34 Golf Course Place', 'Siward', 'Male', 'Stinchcombe', false);
insert into person (address, first_name, gender, last_name, enabled) values ('8 Sachtjen Parkway', 'Dix', 'Female', 'Dudman', true);
insert into person (address, first_name, gender, last_name, enabled) values ('37 Annamark Road', 'Vassily', 'Male', 'Groger', false);
insert into person (address, first_name, gender, last_name, enabled) values ('565 <NAME>', 'Emmye', 'Female', 'Fane', true);
insert into person (address, first_name, gender, last_name, enabled) values ('26561 Waubesa Way', 'Berkie', 'Male', 'Burbidge', false);
insert into person (address, first_name, gender, last_name, enabled) values ('3094 Sycamore Center', 'Dirk', 'Male', 'Yetton', false);
insert into person (address, first_name, gender, last_name, enabled) values ('9 Schurz Way', 'Agatha', 'Female', 'Reay', true);
insert into person (address, first_name, gender, last_name, enabled) values ('5215 Oak Valley Center', 'Artur', 'Male', 'Burns', true);
insert into person (address, first_name, gender, last_name, enabled) values ('3512 Grim Alley', 'Les', 'Male', 'Turnock', true);
insert into person (address, first_name, gender, last_name, enabled) values ('0 Farragut Hill', 'Donall', 'Male', 'Townshend', true);
insert into person (address, first_name, gender, last_name, enabled) values ('395 Sunfield Place', 'Alfy', 'Male', 'Edmonstone', true);
insert into person (address, first_name, gender, last_name, enabled) values ('2 Leroy Crossing', 'Langsdon', 'Male', 'Kingwell', true);
insert into person (address, first_name, gender, last_name, enabled) values ('339 Autumn Leaf Junction', 'Marthe', 'Female', 'Masdon', true);
insert into person (address, first_name, gender, last_name, enabled) values ('8358 Merrick Road', 'Yardley', 'Male', 'Derl', true);
insert into person (address, first_name, gender, last_name, enabled) values ('1 La Follette Road', 'Ermin', 'Male', 'Alldre', false);
insert into person (address, first_name, gender, last_name, enabled) values ('5704 5th Court', 'Brittni', 'Female', 'Laboune', true);
insert into person (address, first_name, gender, last_name, enabled) values ('4051 Saint Paul Court', 'Verne', 'Male', 'Jarlmann', false);
insert into person (address, first_name, gender, last_name, enabled) values ('3 Holmberg Plaza', 'Renate', 'Female', 'Fontel', false);
insert into person (address, first_name, gender, last_name, enabled) values ('391 Northland Circle', 'Tabatha', 'Female', '<NAME>', false);
insert into person (address, first_name, gender, last_name, enabled) values ('7994 Schiller Point', 'Gabriellia', 'Female', 'Emnoney', true);
insert into person (address, first_name, gender, last_name, enabled) values ('9 Twin Pines Point', 'Katherina', 'Female', 'Dodd', true);
insert into person (address, first_name, gender, last_name, enabled) values ('514 Melody Circle', 'Paulo', 'Male', 'De Luna', true);
insert into person (address, first_name, gender, last_name, enabled) values ('4 Summit Trail', 'Sherill', 'Female', 'Keal', true);
insert into person (address, first_name, gender, last_name, enabled) values ('29 Briar Crest Place', 'Marlie', 'Female', 'Rizon', false);
insert into person (address, first_name, gender, last_name, enabled) values ('02 Ridgeway Drive', 'Bliss', 'Female', 'Ivanusyev', false);
insert into person (address, first_name, gender, last_name, enabled) values ('3249 Armistice Terrace', 'Haywood', 'Male', 'Razzell', false);
insert into person (address, first_name, gender, last_name, enabled) values ('0474 <NAME>', 'Rebecka', 'Female', 'Fluger', true);
insert into person (address, first_name, gender, last_name, enabled) values ('48 <NAME>', 'Lenette', 'Female', 'Binch', false);
insert into person (address, first_name, gender, last_name, enabled) values ('13 Eastwood Way', 'Gregoire', 'Male', 'Loeber', true);
insert into person (address, first_name, gender, last_name, enabled) values ('0 <NAME>', 'Rockwell', 'Male', 'Presdie', true);
insert into person (address, first_name, gender, last_name, enabled) values ('253 Sugar Lane', 'Nesta', 'Female', 'Rives', false);
insert into person (address, first_name, gender, last_name, enabled) values ('90887 Holmberg Trail', 'Kristo', 'Male', 'Wanka', false);
insert into person (address, first_name, gender, last_name, enabled) values ('1578 Lukken Circle', 'Kellsie', 'Female', 'Rogeron', true);
insert into person (address, first_name, gender, last_name, enabled) values ('3286 Arkansas Place', 'Harriett', 'Female', 'Parlot', true);
insert into person (address, first_name, gender, last_name, enabled) values ('8637 Nelson Trail', 'Inna', 'Female', 'Fortie', false);
insert into person (address, first_name, gender, last_name, enabled) values ('0733 Karstens Junction', 'Giustina', 'Female', 'Tumielli', true);
insert into person (address, first_name, gender, last_name, enabled) values ('5 Moulton Drive', 'Sherill', 'Female', 'Simonutti', false);
insert into person (address, first_name, gender, last_name, enabled) values ('0325 Mendota Center', 'Emmalynn', 'Female', 'Bedlington', true);
insert into person (address, first_name, gender, last_name, enabled) values ('15 Roth Plaza', 'Sansone', 'Male', 'Danilovic', false);
insert into person (address, first_name, gender, last_name, enabled) values ('65309 International Crossing', 'Arlen', 'Male', 'Haysey', false);
insert into person (address, first_name, gender, last_name, enabled) values ('292 Eastwood Drive', 'Kerry', 'Male', 'Charrier', false);
insert into person (address, first_name, gender, last_name, enabled) values ('19 Sundown Crossing', 'Rahal', 'Female', 'Groll', true);
insert into person (address, first_name, gender, last_name, enabled) values ('996 Butternut Hill', 'Reeva', 'Female', 'Barenski', true);
insert into person (address, first_name, gender, last_name, enabled) values ('8 Briar Crest Lane', 'Cordell', 'Male', 'Golledge', true);
insert into person (address, first_name, gender, last_name, enabled) values ('2434 Bunker Hill Way', 'Ryan', 'Male', 'Chantler', true);
insert into person (address, first_name, gender, last_name, enabled) values ('60 Del Sol Road', 'Gus', 'Male', 'McKinna', false);
insert into person (address, first_name, gender, last_name, enabled) values ('6907 Pepper Wood Way', 'Pat', 'Female', 'Rispen', false);
insert into person (address, first_name, gender, last_name, enabled) values ('158 Scoville Street', 'Ameline', 'Female', 'Rook', true);
insert into person (address, first_name, gender, last_name, enabled) values ('04 Hintze Park', 'Gray', 'Male', 'Attrey', true);
insert into person (address, first_name, gender, last_name, enabled) values ('71 Grim Plaza', 'Hildagarde', 'Female', 'Aspray', true);
insert into person (address, first_name, gender, last_name, enabled) values ('82216 Green Ridge Plaza', 'Ulrike', 'Female', 'Feldhammer', false);
insert into person (address, first_name, gender, last_name, enabled) values ('52 Reindahl Parkway', 'Karla', 'Female', 'Dyball', false);
insert into person (address, first_name, gender, last_name, enabled) values ('2340 Grim Alley', 'Darice', 'Female', 'Frayn', false);
insert into person (address, first_name, gender, last_name, enabled) values ('135 Holy Cross Way', 'Joyann', 'Female', 'Moro', true);
insert into person (address, first_name, gender, last_name, enabled) values ('775 Toban Point', 'Carling', 'Male', 'Rustadge', true);
insert into person (address, first_name, gender, last_name, enabled) values ('11 <NAME>', 'Fancie', 'Female', 'Wrightim', false);
insert into person (address, first_name, gender, last_name, enabled) values ('63855 Knutson Center', 'Aeriela', 'Female', 'Chrippes', true);
insert into person (address, first_name, gender, last_name, enabled) values ('37822 School Center', 'Janeen', 'Female', 'Perrin', false);
insert into person (address, first_name, gender, last_name, enabled) values ('9 Autumn Leaf Lane', 'Inness', 'Male', 'Lilleyman', false);
insert into person (address, first_name, gender, last_name, enabled) values ('4311 Chive Point', 'Maridel', 'Female', 'Edel', false);
insert into person (address, first_name, gender, last_name, enabled) values ('25 <NAME>', 'Riley', 'Male', 'Trehearn', false);
insert into person (address, first_name, gender, last_name, enabled) values ('0 <NAME>', 'Baxy', 'Male', 'Amps', false);
insert into person (address, first_name, gender, last_name, enabled) values ('97453 <NAME>', 'Elnar', 'Male', 'Abraham', true);
insert into person (address, first_name, gender, last_name, enabled) values ('7 Thierer Street', 'Claresta', 'Female', 'Quickenden', true);
insert into person (address, first_name, gender, last_name, enabled) values ('1990 <NAME>', 'Fionna', 'Female', 'Gutsell', true);
insert into person (address, first_name, gender, last_name, enabled) values ('8594 <NAME>', 'Anastasie', 'Female', 'Finker', false);
insert into person (address, first_name, gender, last_name, enabled) values ('01789 Melody Junction', 'Beverlie', 'Female', 'Fain', false);
insert into person (address, first_name, gender, last_name, enabled) values ('549 <NAME>', 'Arnie', 'Male', 'Tingley', true);
insert into person (address, first_name, gender, last_name, enabled) values ('88 Homewood Road', 'Dilly', 'Male', 'Stetlye', false);
insert into person (address, first_name, gender, last_name, enabled) values ('1393 Ridgeview Place', 'Donovan', 'Male', 'Szreter', true);
insert into person (address, first_name, gender, last_name, enabled) values ('87801 Huxley Junction', 'Lillian', 'Female', 'Guisby', false);
insert into person (address, first_name, gender, last_name, enabled) values ('02 Golden Leaf Lane', 'Virgie', 'Female', 'Blacklawe', false);
insert into person (address, first_name, gender, last_name, enabled) values ('5 Tony Crossing', 'Desiree', 'Female', 'Langstone', false);
insert into person (address, first_name, gender, last_name, enabled) values ('2 Main Street', 'Gene', 'Female', 'Aslin', false);
insert into person (address, first_name, gender, last_name, enabled) values ('5068 Moland Lane', 'Dione', 'Female', 'LaBastida', false);
insert into person (address, first_name, gender, last_name, enabled) values ('8101 Texas Junction', 'Elmer', 'Male', 'O''Sesnane', false);
insert into person (address, first_name, gender, last_name, enabled) values ('38 Cherokee Hill', 'Mackenzie', 'Male', 'Franceschi', true);
insert into person (address, first_name, gender, last_name, enabled) values ('299 Northfield Way', 'Norah', 'Female', 'Haresnape', true);
insert into person (address, first_name, gender, last_name, enabled) values ('7 Blaine Pass', 'Dulcinea', 'Female', 'Shoveller', false);
insert into person (address, first_name, gender, last_name, enabled) values ('7331 Tony Way', 'Allyn', 'Female', 'Goning', true);
insert into person (address, first_name, gender, last_name, enabled) values ('9 Memorial Park', 'Marilyn', 'Female', 'Wright', true);
insert into person (address, first_name, gender, last_name, enabled) values ('26 Mallory Junction', 'Marthena', 'Female', 'Elmes', false);
insert into person (address, first_name, gender, last_name, enabled) values ('82 American Ash Center', 'Bessy', 'Female', 'Biskup', false);
insert into person (address, first_name, gender, last_name, enabled) values ('20856 Warbler Street', 'Bondie', 'Male', 'Bowler', false);
insert into person (address, first_name, gender, last_name, enabled) values ('4 Chive Drive', 'Colet', 'Male', 'Prawle', true);
insert into person (address, first_name, gender, last_name, enabled) values ('28 Schmedeman Road', 'Emilio', 'Male', 'Buller', false);
insert into person (address, first_name, gender, last_name, enabled) values ('9786 Moulton Junction', 'Debbi', 'Female', 'Mostyn', true);
insert into person (address, first_name, gender, last_name, enabled) values ('35 Tony Trail', 'Sonny', 'Male', 'Lumly', false);
insert into person (address, first_name, gender, last_name, enabled) values ('097 Shoshone Lane', 'Rutter', 'Male', 'Sterrie', false);
insert into person (address, first_name, gender, last_name, enabled) values ('2 Macpherson Point', 'Helga', 'Female', 'Uridge', false);
insert into person (address, first_name, gender, last_name, enabled) values ('8369 Dorton Park', 'Guillema', 'Female', 'Lehrer', true);
insert into person (address, first_name, gender, last_name, enabled) values ('90135 David Street', 'Jaclin', 'Female', 'Ead', false);
insert into person (address, first_name, gender, last_name, enabled) values ('4731 Magdeline Junction', 'Everard', 'Male', 'Bertson', false);
insert into person (address, first_name, gender, last_name, enabled) values ('3393 Iowa Center', 'Aretha', 'Female', 'Ferne', true);
insert into person (address, first_name, gender, last_name, enabled) values ('3934 Maple Street', 'Inglis', 'Male', 'Dinneen', true);
insert into person (address, first_name, gender, last_name, enabled) values ('4 Fulton Alley', 'Tabbie', 'Male', 'Soames', true);
insert into person (address, first_name, gender, last_name, enabled) values ('7 Spaight Circle', 'Giselbert', 'Male', 'Beachem', false);
insert into person (address, first_name, gender, last_name, enabled) values ('3 Ohio Place', 'Robin', 'Male', 'Leahey', true);
insert into person (address, first_name, gender, last_name, enabled) values ('942 Almo Parkway', 'Kylila', 'Female', 'Ship', true);
insert into person (address, first_name, gender, last_name, enabled) values ('08 Forest Terrace', 'Chan', 'Male', 'Yakunin', false);
insert into person (address, first_name, gender, last_name, enabled) values ('549 Carberry Trail', 'Dorothee', 'Female', 'Chinnery', true);
insert into person (address, first_name, gender, last_name, enabled) values ('97461 Heffernan Point', 'Enrichetta', 'Female', 'Bilbrey', true);
insert into person (address, first_name, gender, last_name, enabled) values ('8 Dayton Circle', 'Sybil', 'Female', 'Eddie', true);
insert into person (address, first_name, gender, last_name, enabled) values ('08374 Scoville Avenue', 'Jilly', 'Female', 'Askin', true);
insert into person (address, first_name, gender, last_name, enabled) values ('91 Truax Court', 'Marielle', 'Female', 'Ringe', false);
insert into person (address, first_name, gender, last_name, enabled) values ('9 Kingsford Court', 'Derrek', 'Male', 'Charke', false);
insert into person (address, first_name, gender, last_name, enabled) values ('879 Lukken Hill', 'Alexi', 'Female', 'Normavell', true);
insert into person (address, first_name, gender, last_name, enabled) values ('88 Anniversary Trail', 'Libby', 'Female', 'Fawcitt', true);
insert into person (address, first_name, gender, last_name, enabled) values ('9 Mariners Cove Terrace', 'Gaspar', 'Male', 'Bedford', true);
insert into person (address, first_name, gender, last_name, enabled) values ('406 Swallow Alley', 'Marc', 'Male', 'Legerton', true);
insert into person (address, first_name, gender, last_name, enabled) values ('637 Bellgrove Crossing', 'Garv', 'Male', 'Pyford', false);
insert into person (address, first_name, gender, last_name, enabled) values ('59114 Parkside Place', 'Duncan', 'Male', 'Twinbrow', false);
insert into person (address, first_name, gender, last_name, enabled) values ('4 Monterey Center', 'Janice', 'Female', 'Livingstone', false);
insert into person (address, first_name, gender, last_name, enabled) values ('34 Jackson Junction', 'Anallise', 'Female', 'Marcussen', false);
insert into person (address, first_name, gender, last_name, enabled) values ('4 Artisan Road', 'Vincenz', 'Male', 'Oulet', true);
insert into person (address, first_name, gender, last_name, enabled) values ('7 Fair Oaks Drive', 'Win', 'Male', 'Beatens', true);
insert into person (address, first_name, gender, last_name, enabled) values ('000 Fuller Circle', 'Alexis', 'Male', 'Tilby', false);
insert into person (address, first_name, gender, last_name, enabled) values ('43463 Russell Lane', 'Budd', 'Male', 'Monini', true);
insert into person (address, first_name, gender, last_name, enabled) values ('67 Barby Plaza', 'Joana', 'Female', 'Russan', true);
insert into person (address, first_name, gender, last_name, enabled) values ('3 West Center', 'Briny', 'Female', 'Issacov', false);
insert into person (address, first_name, gender, last_name, enabled) values ('77246 Scofield Avenue', 'Silvan', 'Male', 'Gopsall', false);
insert into person (address, first_name, gender, last_name, enabled) values ('04646 Kipling Street', 'Emmie', 'Female', 'Younger', false);
insert into person (address, first_name, gender, last_name, enabled) values ('078 Monterey Circle', 'Abbi', 'Female', 'McLarnon', false);
insert into person (address, first_name, gender, last_name, enabled) values ('9909 Ilene Center', 'Caldwell', 'Male', 'McGuff', false);
insert into person (address, first_name, gender, last_name, enabled) values ('60438 <NAME>', 'Hadleigh', 'Male', 'Feldhuhn', false);
insert into person (address, first_name, gender, last_name, enabled) values ('516 <NAME>', 'Ida', 'Female', 'Malinowski', true);
insert into person (address, first_name, gender, last_name, enabled) values ('5768 Pepper Wood Court', 'Kale', 'Male', 'Bridgewood', false);
insert into person (address, first_name, gender, last_name, enabled) values ('6 Lakewood Court', 'Richy', 'Male', 'Maccraw', false);
insert into person (address, first_name, gender, last_name, enabled) values ('8593 Riverside Junction', 'Ilsa', 'Female', 'Duddan', false);
insert into person (address, first_name, gender, last_name, enabled) values ('271 <NAME>', 'Renie', 'Female', 'Biffen', true);
insert into person (address, first_name, gender, last_name, enabled) values ('0420 Marquette Junction', 'Kate', 'Female', 'Cosbee', false);
insert into person (address, first_name, gender, last_name, enabled) values ('14364 Del Mar Parkway', 'Parsifal', 'Male', 'Scholey', true);
insert into person (address, first_name, gender, last_name, enabled) values ('139 Daystar Hill', 'Berte', 'Female', 'Bolino', false);
insert into person (address, first_name, gender, last_name, enabled) values ('6 Valley Edge Parkway', 'Ambrosio', 'Male', 'Gritsaev', true);
insert into person (address, first_name, gender, last_name, enabled) values ('976 Northland Trail', 'Johann', 'Male', 'Bailey', false);
insert into person (address, first_name, gender, last_name, enabled) values ('5328 Boyd Trail', 'Tybalt', 'Male', 'Minger', false);
insert into person (address, first_name, gender, last_name, enabled) values ('75 Service Plaza', 'Hanny', 'Female', 'Goodger', false);
insert into person (address, first_name, gender, last_name, enabled) values ('480 Ridge Oak Place', 'Elyn', 'Female', 'Henrichs', true);
insert into person (address, first_name, gender, last_name, enabled) values ('8 Old Shore Plaza', 'Alwyn', 'Male', 'Bussen', false);
insert into person (address, first_name, gender, last_name, enabled) values ('4 <NAME>ill', 'Colline', 'Female', 'Goldhill', true);
insert into person (address, first_name, gender, last_name, enabled) values ('30 Randy Lane', 'August', 'Male', 'Rosenstiel', false);
insert into person (address, first_name, gender, last_name, enabled) values ('172 Delaware Hill', 'Sally', 'Female', 'Trail', true);
insert into person (address, first_name, gender, last_name, enabled) values ('387 Myrtle Court', 'Danette', 'Female', 'Applegarth', true);
insert into person (address, first_name, gender, last_name, enabled) values ('7114 Scofield Point', 'Sayer', 'Male', 'McCane', true);
insert into person (address, first_name, gender, last_name, enabled) values ('33180 Brickson Park Road', 'Oliver', 'Male', 'Tiddeman', true);
insert into person (address, first_name, gender, last_name, enabled) values ('0 6th Street', 'Bobbee', 'Female', 'Hansford', true);
insert into person (address, first_name, gender, last_name, enabled) values ('497 Fremont Crossing', 'Irma', 'Female', '<NAME>', true);
insert into person (address, first_name, gender, last_name, enabled) values ('3 Browning Park', 'Mac', 'Male', 'Matelaitis', true);
insert into person (address, first_name, gender, last_name, enabled) values ('231 Maywood Way', 'Matteo', 'Male', 'Challener', true);
insert into person (address, first_name, gender, last_name, enabled) values ('90367 Cody Park', 'Linette', 'Female', 'Blakeley', true);
insert into person (address, first_name, gender, last_name, enabled) values ('0 Cardinal Junction', 'Say', 'Male', 'Roncelli', false);
insert into person (address, first_name, gender, last_name, enabled) values ('9 Aberg Crossing', 'Shea', 'Male', 'Duncan', false);
insert into person (address, first_name, gender, last_name, enabled) values ('79 Michigan Center', 'Bryn', 'Female', 'Parsall', true);
insert into person (address, first_name, gender, last_name, enabled) values ('91 Thompson Alley', 'Waneta', 'Female', 'Noddles', false);
insert into person (address, first_name, gender, last_name, enabled) values ('37380 Cambridge Circle', 'Oralie', 'Female', 'Sherborne', true);
insert into person (address, first_name, gender, last_name, enabled) values ('2339 Dawn Pass', 'Lazare', 'Male', 'Delucia', false);
insert into person (address, first_name, gender, last_name, enabled) values ('77 Sutteridge Alley', 'Barbe', 'Female', 'Letten', true);
insert into person (address, first_name, gender, last_name, enabled) values ('89 Norway Maple Plaza', 'Rubina', 'Female', 'Fabry', true);
insert into person (address, first_name, gender, last_name, enabled) values ('61 Warbler Junction', 'Creight', 'Male', 'Prop', true);
insert into person (address, first_name, gender, last_name, enabled) values ('422 <NAME>', 'Tye', 'Male', 'Glassard', false);
insert into person (address, first_name, gender, last_name, enabled) values ('8767 Northland Drive', 'Alikee', 'Female', 'Ruddin', true);
insert into person (address, first_name, gender, last_name, enabled) values ('7642 Marquette Circle', 'Kym', 'Female', 'Luckie', true);
insert into person (address, first_name, gender, last_name, enabled) values ('210 Aberg Plaza', 'Fredi', 'Female', 'Jiroutka', false);
insert into person (address, first_name, gender, last_name, enabled) values ('7 <NAME>', 'Mavis', 'Female', 'Birchner', true);
insert into person (address, first_name, gender, last_name, enabled) values ('023 Express Alley', 'Orson', 'Male', 'Elster', false);
insert into person (address, first_name, gender, last_name, enabled) values ('92108 Shopko Center', 'Pietro', 'Male', 'Feeny', true);
insert into person (address, first_name, gender, last_name, enabled) values ('4373 Red Cloud Court', 'Ester', 'Female', 'Joss', false);
insert into person (address, first_name, gender, last_name, enabled) values ('24921 Fuller Junction', 'Hamil', 'Male', 'Lally', false);
insert into person (address, first_name, gender, last_name, enabled) values ('679 Valley Edge Park', 'Alison', 'Female', 'Moniker', true);
insert into person (address, first_name, gender, last_name, enabled) values ('11 Farmco Terrace', 'Edik', 'Male', 'Durak', true);
insert into person (address, first_name, gender, last_name, enabled) values ('13510 Monica Street', 'Otis', 'Male', 'Picheford', true);
insert into person (address, first_name, gender, last_name, enabled) values ('03 Montana Street', 'Aurthur', 'Male', 'Ferschke', false);
insert into person (address, first_name, gender, last_name, enabled) values ('5419 Barnett Pass', 'Shayna', 'Female', 'Stonehewer', true);
insert into person (address, first_name, gender, last_name, enabled) values ('19 Jenifer Street', 'Ferris', 'Male', 'Auston', false);
insert into person (address, first_name, gender, last_name, enabled) values ('80556 Fairview Avenue', 'Dallon', 'Male', 'Stoffels', true);
insert into person (address, first_name, gender, last_name, enabled) values ('3465 Redwing Place', 'Lief', 'Male', 'Birkett', true);
insert into person (address, first_name, gender, last_name, enabled) values ('39218 Scoville Point', 'Jerrie', 'Male', 'Butner', true);
insert into person (address, first_name, gender, last_name, enabled) values ('44 Oakridge Parkway', 'Michal', 'Male', 'oldey', true);
insert into person (address, first_name, gender, last_name, enabled) values ('439 Schur<NAME>', 'Davidson', 'Male', '<NAME>', true);
insert into person (address, first_name, gender, last_name, enabled) values ('8973 Riverside Point', 'Marinna', 'Female', 'Girardin', false);
insert into person (address, first_name, gender, last_name, enabled) values ('39409 Golden Leaf Circle', 'Ashien', 'Female', 'Farloe', true);
insert into person (address, first_name, gender, last_name, enabled) values ('49052 Tennyson Parkway', 'Merilee', 'Female', 'Backsal', true);
insert into person (address, first_name, gender, last_name, enabled) values ('90375 Melvin Circle', 'Veronike', 'Female', 'Izon', true);
insert into person (address, first_name, gender, last_name, enabled) values ('37790 Kim Lane', 'Marcel', 'Male', 'Tinmouth', false);
insert into person (address, first_name, gender, last_name, enabled) values ('475 Waywood Place', 'Griff', 'Male', 'Batrip', true);
insert into person (address, first_name, gender, last_name, enabled) values ('574 Farmco Lane', 'Keith', 'Male', 'Morritt', true);
insert into person (address, first_name, gender, last_name, enabled) values ('7 <NAME>', 'Hephzibah', 'Female', 'Shatliff', true);
insert into person (address, first_name, gender, last_name, enabled) values ('23180 Melody Center', 'Alfredo', 'Male', 'Ventham', true);
insert into person (address, first_name, gender, last_name, enabled) values ('9376 Golf Park', 'Gustaf', 'Male', 'Thomason', true);
insert into person (address, first_name, gender, last_name, enabled) values ('398 Novick Road', 'Valeda', 'Female', 'Scarre', true);
insert into person (address, first_name, gender, last_name, enabled) values ('56538 St<NAME>ley', 'Angelica', 'Female', 'Kovalski', true);
insert into person (address, first_name, gender, last_name, enabled) values ('9 Gale Drive', 'Sharleen', 'Female', 'Haydock', false);
insert into person (address, first_name, gender, last_name, enabled) values ('56 Dovetail Way', 'Olympia', 'Female', 'Simoncini', true);
insert into person (address, first_name, gender, last_name, enabled) values ('6957 Marcy Plaza', 'Ruthi', 'Female', 'Apted', true);
insert into person (address, first_name, gender, last_name, enabled) values ('50769 T<NAME>ace', 'Barrie', 'Female', 'Guare', false);
insert into person (address, first_name, gender, last_name, enabled) values ('005 <NAME>', 'Ingar', 'Male', 'Penwell', false);
insert into person (address, first_name, gender, last_name, enabled) values ('9882 Bultman Pass', 'Kit', 'Female', 'D''Angeli', false);
insert into person (address, first_name, gender, last_name, enabled) values ('59955 Nevada Street', 'Frasier', 'Male', 'Redish', true);
insert into person (address, first_name, gender, last_name, enabled) values ('86 Marquette Center', 'Avictor', 'Male', 'Widmoor', false);
insert into person (address, first_name, gender, last_name, enabled) values ('381 Arrowood Way', 'Grace', 'Male', 'Pedican', false);
insert into person (address, first_name, gender, last_name, enabled) values ('93 Leroy Place', 'Rey', 'Male', 'Nucator', false);
insert into person (address, first_name, gender, last_name, enabled) values ('13695 Ramsey Trail', 'Miof mela', 'Female', 'Heinrich', true);
insert into person (address, first_name, gender, last_name, enabled) values ('6726 Dapin Street', 'Kakalina', 'Female', 'Grandin', true);
insert into person (address, first_name, gender, last_name, enabled) values ('726 Nova Junction', 'Sampson', 'Male', 'Hindenburg', true);
insert into person (address, first_name, gender, last_name, enabled) values ('0 <NAME>', 'Maurene', 'Female', 'Feldmus', true);
insert into person (address, first_name, gender, last_name, enabled) values ('74 Bayside Place', 'Dionysus', 'Male', 'Butfield', false);
insert into person (address, first_name, gender, last_name, enabled) values ('1147 Pankratz Road', 'Inga', 'Female', 'Trazzi', false);
insert into person (address, first_name, gender, last_name, enabled) values ('006 Green Parkway', 'Natalee', 'Female', 'Phant', false);
insert into person (address, first_name, gender, last_name, enabled) values ('96621 Bonner Place', 'Saree', 'Female', 'O''Dempsey', true);
insert into person (address, first_name, gender, last_name, enabled) values ('54 Calypso Court', 'Skippy', 'Male', 'Ionn', true);
insert into person (address, first_name, gender, last_name, enabled) values ('014 Golf Course Way', 'Nelie', 'Female', 'Hails', true);
insert into person (address, first_name, gender, last_name, enabled) values ('14194 Mallory Avenue', 'Elias', 'Male', 'Beccero', true);
insert into person (address, first_name, gender, last_name, enabled) values ('282 Iowa Point', 'Paulette', 'Female', 'Quarmby', false);
insert into person (address, first_name, gender, last_name, enabled) values ('8 Morningstar Avenue', 'Milli', 'Female', 'Borthwick', false);
insert into person (address, first_name, gender, last_name, enabled) values ('92362 Corry Hill', 'Chane', 'Male', 'Sedwick', true);
insert into person (address, first_name, gender, last_name, enabled) values ('445 Arizona Avenue', 'Eal', 'Male', 'Burgess', true);
insert into person (address, first_name, gender, last_name, enabled) values ('44423 Charing Cross Place', 'Junie', 'Female', 'O''Siaghail', true);
insert into person (address, first_name, gender, last_name, enabled) values ('9199 Meadow Valley Crossing', 'Donna', 'Female', 'Cadell', false);
insert into person (address, first_name, gender, last_name, enabled) values ('18 Iowa Pass', 'Dynah', 'Female', 'McPhelim', false);
insert into person (address, first_name, gender, last_name, enabled) values ('8381 Lotheville Drive', 'Diahann', 'Female', 'Sausman', false);
insert into person (address, first_name, gender, last_name, enabled) values ('87986 Memorial Terrace', 'Alford', 'Male', 'Flasby', true);
insert into person (address, first_name, gender, last_name, enabled) values ('4790 Manitowish Place', 'Jeanna', 'Female', 'Bazley', false);
insert into person (address, first_name, gender, last_name, enabled) values ('555 Oriole Hill', 'Ara', 'Male', 'Aloshikin', false);
insert into person (address, first_name, gender, last_name, enabled) values ('60 Monterey Court', 'Hyacinthe', 'Female', 'Feehan', false);
insert into person (address, first_name, gender, last_name, enabled) values ('2853 Mockingbird Lane', 'Nicoline', 'Female', 'Tellenbrook', false);
insert into person (address, first_name, gender, last_name, enabled) values ('1 Pankratz Park', 'Chlo', 'Female', 'Slade', false);
insert into person (address, first_name, gender, last_name, enabled) values ('05 Hagan Road', 'Kit', 'Male', 'Ipsly', false);
insert into person (address, first_name, gender, last_name, enabled) values ('1923 Bunting Place', 'Cosmo', 'Male', 'Wallenger', false);
insert into person (address, first_name, gender, last_name, enabled) values ('6 Texas Hill', 'Benedict', 'Male', 'Itzkovitch', false);
insert into person (address, first_name, gender, last_name, enabled) values ('696 Roxbury Hill', 'Tara', 'Female', 'Dilks', true);
insert into person (address, first_name, gender, last_name, enabled) values ('373 Hovde Court', 'Adelheid', 'Female', 'Wimes', false);
insert into person (address, first_name, gender, last_name, enabled) values ('54184 Northland Road', 'Dorey', 'Female', 'Perrygo', false);
insert into person (address, first_name, gender, last_name, enabled) values ('471 Talmadge Hill', 'Desmond', 'Male', 'Royste', false);
insert into person (address, first_name, gender, last_name, enabled) values ('97 Cascade Court', 'Lanny', 'Male', 'McCurt', true);
insert into person (address, first_name, gender, last_name, enabled) values ('088 Del Sol Terrace', 'Gianina', 'Female', 'Meachan', false);
insert into person (address, first_name, gender, last_name, enabled) values ('5 Schurz Crossing', 'Onfre', 'Male', 'Kemster', false);
insert into person (address, first_name, gender, last_name, enabled) values ('25 American Parkway', 'Glynis', 'Female', 'Itschakov', false);
insert into person (address, first_name, gender, last_name, enabled) values ('51 Merry Drive', 'Nicko', 'Male', 'Glendenning', false);
insert into person (address, first_name, gender, last_name, enabled) values ('9149 Lerdahl Pass', 'Arnoldo', 'Male', 'Burnand', false);
insert into person (address, first_name, gender, last_name, enabled) values ('1 Reinke Crossing', 'Mandi', 'Female', 'Padmore', false);
insert into person (address, first_name, gender, last_name, enabled) values ('78 Starling Terrace', 'Dermot', 'Male', 'Mathivat', false);
insert into person (address, first_name, gender, last_name, enabled) values ('9 Cottonwood Place', 'Vernen', 'Male', 'Layton', true);
insert into person (address, first_name, gender, last_name, enabled) values ('9173 Rutledge Lane', 'Izabel', 'Female', 'Lapwood', false);
insert into person (address, first_name, gender, last_name, enabled) values ('7 Montana Avenue', 'Berty', 'Female', 'Dagworthy', false);
insert into person (address, first_name, gender, last_name, enabled) values ('239 Browning Way', 'Gawain', 'Male', 'Derby', true);
insert into person (address, first_name, gender, last_name, enabled) values ('959 Menomonie Court', 'Harald', 'Male', 'Servant', true);
insert into person (address, first_name, gender, last_name, enabled) values ('5 Evergreen Court', 'Beatrisa', 'Female', 'McClure', true);
insert into person (address, first_name, gender, last_name, enabled) values ('0 Kim Street', 'Cortney', 'Female', 'Hirsthouse', true);
insert into person (address, first_name, gender, last_name, enabled) values ('6710 Esch Circle', 'Ahmad', 'Male', 'McKinty', false);
insert into person (address, first_name, gender, last_name, enabled) values ('012 <NAME>', 'Berkly', 'Male', 'Warkup', true);
insert into person (address, first_name, gender, last_name, enabled) values ('57 Superior Way', 'Carie', 'Female', 'Ebbett', true);
insert into person (address, first_name, gender, last_name, enabled) values ('876 Spohn Point', 'Dana', 'Male', 'Blasetti', false);
insert into person (address, first_name, gender, last_name, enabled) values ('872 Iowa Court', 'Farlee', 'Male', 'Mebs', false);
insert into person (address, first_name, gender, last_name, enabled) values ('895 Dennis Pass', 'Elset', 'Female', 'Lewnden', false);
insert into person (address, first_name, gender, last_name, enabled) values ('0 Tr<NAME>way', 'Merry', 'Female', 'Dagleas', false);
insert into person (address, first_name, gender, last_name, enabled) values ('5873 Mariners Cove Way', 'Charlena', 'Female', 'Lardge', false);
insert into person (address, first_name, gender, last_name, enabled) values ('0 M<NAME>', 'Johnnie', 'Male', 'Wigg', true);
insert into person (address, first_name, gender, last_name, enabled) values ('7 Ruskin Circle', 'Goraud', 'Male', 'Banes', true);
insert into person (address, first_name, gender, last_name, enabled) values ('27 Troy Circle', 'Hillard', 'Male', 'Scarr', false);
insert into person (address, first_name, gender, last_name, enabled) values ('35055 Independence Circle', 'Robinet', 'Female', 'Gander', true);
insert into person (address, first_name, gender, last_name, enabled) values ('2440 <NAME>', 'Billie', 'Female', 'Ninotti', false);
insert into person (address, first_name, gender, last_name, enabled) values ('65339 Pepper Wood Junction', 'Mona', 'Female', 'Gegg', false);
insert into person (address, first_name, gender, last_name, enabled) values ('863 Summit Park', 'Giacopo', 'Male', 'Droghan', false);
insert into person (address, first_name, gender, last_name, enabled) values ('0 Crownhardt Circle', 'Connor', 'Male', 'Rosterne', false);
insert into person (address, first_name, gender, last_name, enabled) values ('89053 2nd Park', 'Emelyne', 'Female', 'Marshalleck', false);
insert into person (address, first_name, gender, last_name, enabled) values ('737 Tennyson Plaza', 'Matias', 'Male', 'Marunchak', false);
insert into person (address, first_name, gender, last_name, enabled) values ('60995 Hagan Drive', 'Pablo', 'Male', 'Freear', true);
insert into person (address, first_name, gender, last_name, enabled) values ('73538 Shoshone Way', 'Aguistin', 'Male', 'Brimilcombe', true);
insert into person (address, first_name, gender, last_name, enabled) values ('5 Northwestern Plaza', 'Claire', 'Female', 'Pickerin', false);
insert into person (address, first_name, gender, last_name, enabled) values ('73802 <NAME>', 'Alphard', 'Male', 'Longstaff', false);
insert into person (address, first_name, gender, last_name, enabled) values ('7 Forest Run Avenue', 'Yettie', 'Female', 'Halvosen', false);
insert into person (address, first_name, gender, last_name, enabled) values ('74 Birchwood Point', 'Mariann', 'Female', 'Verzey', true);
insert into person (address, first_name, gender, last_name, enabled) values ('7191 Bunker Hill Street', 'Barret', 'Male', 'Woolmer', true);
insert into person (address, first_name, gender, last_name, enabled) values ('2431 <NAME>', 'Jeddy', 'Male', 'Dyzart', true);
insert into person (address, first_name, gender, last_name, enabled) values ('52 Waubesa Crossing', 'Odey', 'Male', 'Evers', true);
insert into person (address, first_name, gender, last_name, enabled) values ('9740 Division Circle', 'Celestina', 'Female', 'Stiling', true);
insert into person (address, first_name, gender, last_name, enabled) values ('91 Thompson Center', 'Alisa', 'Female', 'Huetson', false);
insert into person (address, first_name, gender, last_name, enabled) values ('802 Buena Vista Circle', 'Fitzgerald', 'Male', 'Dilrew', false);
insert into person (address, first_name, gender, last_name, enabled) values ('0 Luster Road', 'Gertrud', 'Female', 'Jonuzi', false);
insert into person (address, first_name, gender, last_name, enabled) values ('07652 7th Center', 'Andria', 'Female', 'Kennington', true);
insert into person (address, first_name, gender, last_name, enabled) values ('0 Tennessee Lane', 'Kenton', 'Male', 'Klaffs', true);
insert into person (address, first_name, gender, last_name, enabled) values ('59699 Morning Hill', 'Giulietta', 'Female', 'Ferenc', true);
insert into person (address, first_name, gender, last_name, enabled) values ('99171 Oneill Alley', 'Gennifer', 'Female', 'Grigson', true);
insert into person (address, first_name, gender, last_name, enabled) values ('00 Oak Lane', 'Skell', 'Male', 'Upstell', false);
insert into person (address, first_name, gender, last_name, enabled) values ('7 <NAME>', 'Vittorio', 'Male', 'Parsons', false);
insert into person (address, first_name, gender, last_name, enabled) values ('656 M<NAME>', 'Templeton', 'Male', 'Danniel', false);
insert into person (address, first_name, gender, last_name, enabled) values ('6 Hollow Ridge Trail', 'Aldis', 'Male', 'Pike', false);
insert into person (address, first_name, gender, last_name, enabled) values ('1783 Novick Crossing', 'Gustave', 'Male', 'Ferie', false);
insert into person (address, first_name, gender, last_name, enabled) values ('8899 La Follette Lane', 'Lavina', 'Female', 'Trusse', true);
insert into person (address, first_name, gender, last_name, enabled) values ('40572 Fairview Junction', 'Jonah', 'Male', 'Jerisch', true);
insert into person (address, first_name, gender, last_name, enabled) values ('0 Delaware Court', '<NAME>', 'Female', 'O''Neill', false);
insert into person (address, first_name, gender, last_name, enabled) values ('444 Heath Trail', 'Itch', 'Male', 'Hayes', false);
insert into person (address, first_name, gender, last_name, enabled) values ('6166 Eastlawn Pass', 'Clayborne', 'Male', 'Sizland', true);
insert into person (address, first_name, gender, last_name, enabled) values ('2518 Duke Park', 'Glynnis', 'Female', 'Belt', false);
insert into person (address, first_name, gender, last_name, enabled) values ('61775 Clove Road', 'Jeremiah', 'Male', 'Repper', false);
insert into person (address, first_name, gender, last_name, enabled) values ('4652 Crownhardt Trail', 'Quincey', 'Male', 'Littler', false);
insert into person (address, first_name, gender, last_name, enabled) values ('6 Butterfield Plaza', 'Francisco', 'Male', 'Locke', true);
insert into person (address, first_name, gender, last_name, enabled) values ('83601 Morning Street', 'Kris', 'Female', 'Pauncefoot', false);
insert into person (address, first_name, gender, last_name, enabled) values ('0685 Barnett Avenue', 'Stacia', 'Female', 'De Ortega', false);
insert into person (address, first_name, gender, last_name, enabled) values ('1 Reindahl Center', 'Jermain', 'Male', 'Castle', true);
insert into person (address, first_name, gender, last_name, enabled) values ('391 Schmedeman Pass', 'Joice', 'Female', 'Dougher', false);
insert into person (address, first_name, gender, last_name, enabled) values ('500 Meadow Ridge Way', 'Tammara', 'Female', 'Blenkinship', true);
insert into person (address, first_name, gender, last_name, enabled) values ('94 Emmet Point', 'Yorgos', 'Male', 'Nilges', false);
insert into person (address, first_name, gender, last_name, enabled) values ('5427 Roxbury Avenue', 'Francisca', 'Female', 'Dufall', true);
insert into person (address, first_name, gender, last_name, enabled) values ('957 Moose Drive', 'Iormina', 'Female', 'Viney', false);
insert into person (address, first_name, gender, last_name, enabled) values ('0317 Lien Parkway', 'Carena', 'Female', 'Lethem', true);
insert into person (address, first_name, gender, last_name, enabled) values ('716 Declaration Alley', 'Sayre', 'Male', 'Stibbs', true);
insert into person (address, first_name, gender, last_name, enabled) values ('694 Ludington Drive', 'Kizzie', 'Female', 'Betje', false);
insert into person (address, first_name, gender, last_name, enabled) values ('5327 High Crossing Terrace', 'Shellie', 'Female', '<NAME>', false);
insert into person (address, first_name, gender, last_name, enabled) values ('8606 Vahlen Court', 'Celestyn', 'Female', 'Jowers', false);
insert into person (address, first_name, gender, last_name, enabled) values ('540 Packers Lane', 'Ardis', 'Female', 'Bispham', false);
insert into person (address, first_name, gender, last_name, enabled) values ('0872 Dawn Point', 'Yorker', 'Male', 'Causley', false);
insert into person (address, first_name, gender, last_name, enabled) values ('1974 Blackbird Court', 'Margareta', 'Female', 'MacAllen', false);
|
<filename>query/src/test/resources/query/sql/query60.sql
select test_kylin_fact.cal_dt, sum(test_kylin_fact.price) as sum_price, count(1) as cnt_1
from test_kylin_fact
left join test_cal_dt on test_kylin_fact.cal_dt=test_cal_dt.cal_dt
group by test_kylin_fact.cal_dt
order by 2 desc
limit 3 |
-- BP 6.1D content: domain syschar: 3
INSERT INTO S_DOM
VALUES (36762,
'ca_smsmc_test',
'',
0,
1);
INSERT INTO S_CDT
VALUES (524289,
0);
INSERT INTO S_DT
VALUES (524289,
36762,
'void',
'');
INSERT INTO S_CDT
VALUES (524290,
1);
INSERT INTO S_DT
VALUES (524290,
36762,
'boolean',
'');
INSERT INTO S_CDT
VALUES (524291,
2);
INSERT INTO S_DT
VALUES (524291,
36762,
'integer',
'');
INSERT INTO S_CDT
VALUES (524292,
3);
INSERT INTO S_DT
VALUES (524292,
36762,
'real',
'');
INSERT INTO S_CDT
VALUES (524293,
4);
INSERT INTO S_DT
VALUES (524293,
36762,
'string',
'');
INSERT INTO S_CDT
VALUES (524294,
5);
INSERT INTO S_DT
VALUES (524294,
36762,
'unique_id',
'');
INSERT INTO S_CDT
VALUES (524295,
6);
INSERT INTO S_DT
VALUES (524295,
36762,
'state<State_Model>',
'');
INSERT INTO S_CDT
VALUES (524296,
7);
INSERT INTO S_DT
VALUES (524296,
36762,
'same_as<Base_Attribute>',
'');
INSERT INTO S_CDT
VALUES (524297,
8);
INSERT INTO S_DT
VALUES (524297,
36762,
'inst_ref<Object>',
'');
INSERT INTO S_CDT
VALUES (524298,
9);
INSERT INTO S_DT
VALUES (524298,
36762,
'inst_ref_set<Object>',
'');
INSERT INTO S_CDT
VALUES (524299,
10);
INSERT INTO S_DT
VALUES (524299,
36762,
'inst<Event>',
'');
INSERT INTO S_CDT
VALUES (524300,
11);
INSERT INTO S_DT
VALUES (524300,
36762,
'inst<Mapping>',
'');
INSERT INTO S_CDT
VALUES (524301,
12);
INSERT INTO S_DT
VALUES (524301,
36762,
'inst_ref<Mapping>',
'');
INSERT INTO S_UDT
VALUES (524302,
524300,
1);
INSERT INTO S_DT
VALUES (524302,
36762,
'date',
'');
INSERT INTO S_UDT
VALUES (524303,
524300,
2);
INSERT INTO S_DT
VALUES (524303,
36762,
'timestamp',
'');
INSERT INTO S_UDT
VALUES (524304,
524301,
3);
INSERT INTO S_DT
VALUES (524304,
36762,
'inst_ref<Timer>',
'');
INSERT INTO GD_MD
VALUES (524289,
1,
36762,
1,
1,
0,
1,
1,
0,
12,
1600,
4200,
1.000000,
0);
INSERT INTO GD_GE
VALUES (524293,
524289,
1048578,
11);
INSERT INTO GD_SHP
VALUES (524293,
1696,
1312,
1904,
1456);
INSERT INTO GD_GE
VALUES (524297,
524289,
1572867,
11);
INSERT INTO GD_SHP
VALUES (524297,
2032,
1312,
2240,
1456);
INSERT INTO GD_MD
VALUES (524290,
2,
36762,
1,
1,
0,
1,
1,
0,
12,
1600,
4200,
1.000000,
0);
INSERT INTO GD_GE
VALUES (524294,
524290,
1048578,
11);
INSERT INTO GD_SHP
VALUES (524294,
1696,
1312,
1904,
1456);
INSERT INTO GD_GE
VALUES (524298,
524290,
1572867,
11);
INSERT INTO GD_SHP
VALUES (524298,
2032,
1312,
2240,
1456);
INSERT INTO GD_MD
VALUES (524291,
3,
36762,
1,
1,
0,
1,
1,
0,
12,
1600,
4200,
1.000000,
0);
INSERT INTO GD_GE
VALUES (524295,
524291,
1048578,
11);
INSERT INTO GD_SHP
VALUES (524295,
1696,
1312,
1904,
1456);
INSERT INTO GD_GE
VALUES (524299,
524291,
1572867,
11);
INSERT INTO GD_SHP
VALUES (524299,
2032,
1312,
2240,
1456);
INSERT INTO GD_MD
VALUES (524292,
4,
36762,
1,
1,
0,
1,
1,
0,
12,
1600,
4200,
1.000000,
0);
INSERT INTO GD_GE
VALUES (524296,
524292,
1048578,
11);
INSERT INTO GD_SHP
VALUES (524296,
1696,
1312,
1904,
1456);
INSERT INTO GD_GE
VALUES (524300,
524292,
1572867,
11);
INSERT INTO GD_SHP
VALUES (524300,
2032,
1312,
2240,
1456);
INSERT INTO S_SS
VALUES (1048578,
'One Subsystem',
'',
'',
1,
36762,
1048578);
INSERT INTO O_OBJ
VALUES (1048577,
'A Class',
1,
'A',
'',
1048578);
INSERT INTO O_NBATTR
VALUES (1048578,
1048577);
INSERT INTO O_BATTR
VALUES (1048578,
1048577);
INSERT INTO O_ATTR
VALUES (1048578,
1048577,
0,
'id',
'',
'',
'id',
0,
524294);
INSERT INTO O_NBATTR
VALUES (1048577,
1048577);
INSERT INTO O_BATTR
VALUES (1048577,
1048577);
INSERT INTO O_ATTR
VALUES (1048577,
1048577,
1048578,
'current_state',
'',
'',
'current_state',
0,
524295);
INSERT INTO O_ID
VALUES (0,
1048577);
INSERT INTO O_OIDA
VALUES (1048578,
1048577,
0);
INSERT INTO SM_ISM
VALUES (2097156,
1048577);
INSERT INTO SM_SM
VALUES (2097156,
'',
4);
INSERT INTO SM_MOORE
VALUES (2097156);
INSERT INTO SM_SUPDT
VALUES (2097153,
2097156,
0);
INSERT INTO SM_STATE
VALUES (2097153,
2097156,
2097153,
'State Name',
1,
0);
INSERT INTO SM_LEVT
VALUES (2097153,
2097156,
2097153);
INSERT INTO SM_SEVT
VALUES (2097153,
2097156,
2097153);
INSERT INTO SM_EVT
VALUES (2097153,
2097156,
2097153,
1,
'test1',
0,
'',
'A1',
'');
INSERT INTO SM_SEME
VALUES (2097153,
2097153,
2097156,
2097153);
INSERT INTO SM_NSTXN
VALUES (2097153,
2097156,
2097153,
2097153,
2097153);
INSERT INTO SM_TXN
VALUES (2097153,
2097156,
2097153,
2097153);
INSERT INTO SM_MOAH
VALUES (2097153,
2097156,
2097153);
INSERT INTO SM_AH
VALUES (2097153,
2097156);
INSERT INTO SM_ACT
VALUES (2097153,
2097156,
1,
'',
'');
INSERT INTO GD_MD
VALUES (2097153,
8,
2097156,
40,
1,
0,
1,
1,
0,
12,
1600,
4200,
1.000000,
0);
INSERT INTO GD_GE
VALUES (2097154,
2097153,
2097153,
41);
INSERT INTO GD_SHP
VALUES (2097154,
1776,
1328,
2064,
1488);
INSERT INTO GD_GE
VALUES (2097155,
2097153,
2097153,
42);
INSERT INTO GD_CON
VALUES (2097155,
2097154,
2097154,
0);
INSERT INTO GD_CTXT
VALUES (2097155,
0,
0,
0,
0,
0,
0,
2033,
1219,
2095,
1241,
-27,
-100,
0,
0,
0,
0,
0,
0);
INSERT INTO GD_LS
VALUES (2097156,
2097155,
2064,
1408,
2128,
1408,
0);
INSERT INTO GD_LS
VALUES (2097157,
2097155,
2128,
1408,
2128,
1248,
2097156);
INSERT INTO GD_LS
VALUES (2097158,
2097155,
2128,
1248,
2000,
1248,
2097157);
INSERT INTO GD_LS
VALUES (2097159,
2097155,
2000,
1248,
2000,
1328,
2097158);
INSERT INTO O_IOBJ
VALUES (1048577,
1572865,
6,
1048578,
'B Class',
'B');
INSERT INTO CA_SMSMC
VALUES (1048577,
2621445,
2097156,
0,
1048577);
INSERT INTO CA_COMM
VALUES (1048577,
1048578);
INSERT INTO CA_SMSME
VALUES (1048577,
2097156,
2097153);
INSERT INTO GD_MD
VALUES (1048577,
5,
1048578,
11,
1,
0,
1,
1,
0,
12,
1600,
4200,
1.000000,
0);
INSERT INTO GD_GE
VALUES (1048580,
1048577,
1048577,
21);
INSERT INTO GD_SHP
VALUES (1048580,
1712,
1296,
1904,
1472);
INSERT INTO GD_MD
VALUES (1048578,
6,
1048578,
11,
1,
0,
1,
1,
0,
12,
1600,
4200,
1.000000,
0);
INSERT INTO GD_GE
VALUES (1048582,
1048578,
1048577,
21);
INSERT INTO GD_SHP
VALUES (1048582,
1712,
1296,
1904,
1360);
INSERT INTO GD_GE
VALUES (1048583,
1048578,
1048577,
23);
INSERT INTO GD_SHP
VALUES (1048583,
1712,
1456,
1920,
1552);
INSERT INTO GD_GE
VALUES (1048584,
1048578,
1048584,
1005);
INSERT INTO GD_CON
VALUES (1048584,
1048583,
1048582,
0);
INSERT INTO GD_CTXT
VALUES (1048584,
0,
0,
0,
0,
0,
0,
1765,
1406,
1827,
1428,
-7,
7,
0,
0,
0,
0,
0,
0);
INSERT INTO GD_LS
VALUES (1048587,
1048584,
1840,
1456,
1840,
1360,
0);
INSERT INTO GD_GE
VALUES (1048588,
1048578,
1048577,
28);
INSERT INTO GD_CON
VALUES (1048588,
1048583,
1048582,
0);
INSERT INTO GD_CTXT
VALUES (1048588,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0);
INSERT INTO GD_LS
VALUES (1048589,
1048588,
1808,
1456,
1808,
1360,
0);
INSERT INTO GD_MD
VALUES (1048579,
7,
1048578,
11,
1,
0,
1,
1,
0,
12,
1600,
4200,
1.000000,
0);
INSERT INTO GD_GE
VALUES (1048581,
1048579,
1048577,
21);
INSERT INTO GD_SHP
VALUES (1048581,
1712,
1296,
1904,
1360);
INSERT INTO S_SS
VALUES (1572867,
'Other Subsystem',
'',
'',
100,
36762,
1572867);
INSERT INTO O_OBJ
VALUES (1572865,
'B Class',
100,
'B',
'',
1572867);
INSERT INTO O_NBATTR
VALUES (1572865,
1572865);
INSERT INTO O_BATTR
VALUES (1572865,
1572865);
INSERT INTO O_ATTR
VALUES (1572865,
1572865,
0,
'id',
'',
'',
'id',
0,
524294);
INSERT INTO O_NBATTR
VALUES (1572866,
1572865);
INSERT INTO O_BATTR
VALUES (1572866,
1572865);
INSERT INTO O_ATTR
VALUES (1572866,
1572865,
1572865,
'current_state',
'',
'',
'current_state',
0,
524295);
INSERT INTO O_ID
VALUES (0,
1572865);
INSERT INTO O_OIDA
VALUES (1572865,
1572865,
0);
INSERT INTO SM_ISM
VALUES (2621445,
1572865);
INSERT INTO SM_SM
VALUES (2621445,
'',
5);
INSERT INTO SM_MOORE
VALUES (2621445);
INSERT INTO SM_SUPDT
VALUES (2621441,
2621445,
0);
INSERT INTO SM_STATE
VALUES (2621441,
2621445,
0,
'State Name',
1,
0);
INSERT INTO SM_LEVT
VALUES (2621441,
2621445,
2621441);
INSERT INTO SM_SEVT
VALUES (2621441,
2621445,
2621441);
INSERT INTO SM_EVT
VALUES (2621441,
2621445,
2621441,
1,
'test1',
0,
'',
'B1',
'');
INSERT INTO SM_CH
VALUES (2621441,
2621441,
2621445,
2621441,
'');
INSERT INTO SM_SEME
VALUES (2621441,
2621441,
2621445,
2621441);
INSERT INTO SM_MOAH
VALUES (2621441,
2621445,
2621441);
INSERT INTO SM_AH
VALUES (2621441,
2621445);
INSERT INTO SM_ACT
VALUES (2621441,
2621445,
1,
'select any a from instances of A;
generate A1 to a;
',
'');
INSERT INTO GD_MD
VALUES (2621441,
8,
2621445,
40,
1,
0,
1,
1,
0,
12,
1600,
4200,
1.000000,
0);
INSERT INTO GD_GE
VALUES (2621442,
2621441,
2621441,
41);
INSERT INTO GD_SHP
VALUES (2621442,
1728,
1328,
2064,
1472);
INSERT INTO O_IOBJ
VALUES (1572865,
1048577,
6,
1572867,
'A Class',
'A');
INSERT INTO CA_SMSMC
VALUES (1572865,
2621445,
2097156,
1572865,
0);
INSERT INTO CA_COMM
VALUES (1572865,
1572867);
INSERT INTO CA_SMSME
VALUES (1572865,
2097156,
2097153);
INSERT INTO GD_MD
VALUES (1572865,
5,
1572867,
11,
1,
0,
1,
1,
0,
12,
1600,
4200,
1.000000,
0);
INSERT INTO GD_GE
VALUES (1572868,
1572865,
1572865,
21);
INSERT INTO GD_SHP
VALUES (1572868,
1760,
1296,
2112,
1552);
INSERT INTO GD_MD
VALUES (1572866,
6,
1572867,
11,
1,
0,
1,
1,
0,
12,
1600,
4200,
1.000000,
0);
INSERT INTO GD_GE
VALUES (1572870,
1572866,
1572865,
21);
INSERT INTO GD_SHP
VALUES (1572870,
1760,
1296,
1952,
1360);
INSERT INTO GD_GE
VALUES (1572871,
1572866,
1572865,
23);
INSERT INTO GD_SHP
VALUES (1572871,
1776,
1488,
2000,
1584);
INSERT INTO GD_GE
VALUES (1572872,
1572866,
1572872,
1005);
INSERT INTO GD_CON
VALUES (1572872,
1572870,
1572871,
0);
INSERT INTO GD_CTXT
VALUES (1572872,
0,
0,
0,
0,
0,
0,
1768,
1420,
1830,
1442,
-4,
5,
0,
0,
0,
0,
0,
0);
INSERT INTO GD_LS
VALUES (1572875,
1572872,
1840,
1360,
1840,
1488,
0);
INSERT INTO GD_GE
VALUES (1572876,
1572866,
1572865,
28);
INSERT INTO GD_CON
VALUES (1572876,
1572870,
1572871,
0);
INSERT INTO GD_CTXT
VALUES (1572876,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0);
INSERT INTO GD_LS
VALUES (1572877,
1572876,
1856,
1360,
1856,
1488,
0);
INSERT INTO GD_MD
VALUES (1572867,
7,
1572867,
11,
1,
0,
1,
1,
0,
12,
1600,
4200,
1.000000,
0);
INSERT INTO GD_GE
VALUES (1572869,
1572867,
1572865,
21);
INSERT INTO GD_SHP
VALUES (1572869,
1760,
1296,
1952,
1360);
|
-- ----------------------------
-- Type structure for roles
-- ----------------------------
DROP TYPE IF EXISTS "access"."roles";
CREATE TYPE "access"."roles" AS ENUM (
'Администратор',
'Преподаватель',
'Слушатель',
'Гость'
);
-- ----------------------------
-- Type structure for url_table
-- ----------------------------
DROP TYPE IF EXISTS "access"."url_table";
CREATE TYPE "access"."url_table" AS (
"url_ids" int4,
"user_id" int4
);
-- ----------------------------
-- Type structure for url_type
-- ----------------------------
DROP TYPE IF EXISTS "access"."url_type";
CREATE TYPE "access"."url_type" AS ENUM (
'Создание',
'Изменение',
'Удаление',
'Чтение'
);
-- ----------------------------
-- Sequence structure for access_right_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "access"."access_right_seq";
CREATE SEQUENCE "access"."access_right_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for tables_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "access"."tables_id_seq";
CREATE SEQUENCE "access"."tables_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 32767
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for url_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "access"."url_id_seq";
CREATE SEQUENCE "access"."url_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Table structure for model_type
-- ----------------------------
DROP TABLE IF EXISTS "access"."model_type";
CREATE TABLE "access"."model_type" (
"id" int2 NOT NULL DEFAULT nextval('"access".tables_id_seq'::regclass),
"schema_name" varchar COLLATE "pg_catalog"."default" NOT NULL,
"table_name" varchar COLLATE "pg_catalog"."default" NOT NULL,
"dependent_tables_ids" int2[] NOT NULL DEFAULT '{}'::smallint[],
"title" varchar(255) COLLATE "pg_catalog"."default"
)
;
-- ----------------------------
-- Table structure for right_parent
-- ----------------------------
DROP TABLE IF EXISTS "access"."right_parent";
CREATE TABLE "access"."right_parent" (
"url_id" int2 NOT NULL,
"ids" int4[],
"is_allow" bool NOT NULL,
"forbidden_selectors" varchar[] COLLATE "pg_catalog"."default"
)
;
-- ----------------------------
-- Table structure for role_right
-- ----------------------------
DROP TABLE IF EXISTS "access"."role_right";
CREATE TABLE "access"."role_right" (
"url_id" int2 NOT NULL,
"role" "access"."roles" NOT NULL,
"ids" int4[],
"is_allow" bool NOT NULL,
"forbidden_selectors" varchar[] COLLATE "pg_catalog"."default"
)
INHERITS ("access"."right_parent")
;
-- ----------------------------
-- Table structure for url
-- ----------------------------
DROP TABLE IF EXISTS "access"."url";
CREATE TABLE "access"."url" (
"id" int4 NOT NULL DEFAULT nextval('"access".url_id_seq'::regclass),
"text" varchar COLLATE "pg_catalog"."default" NOT NULL,
"name" varchar COLLATE "pg_catalog"."default",
"model_type_id" int2,
"type" "access"."url_type"
)
;
-- ----------------------------
-- Table structure for user_right
-- ----------------------------
DROP TABLE IF EXISTS "access"."user_right";
CREATE TABLE "access"."user_right" (
"url_id" int2 NOT NULL,
"user_id" int4 NOT NULL,
"ids" int4[],
"is_allow" bool NOT NULL,
"forbidden_selectors" varchar[] COLLATE "pg_catalog"."default"
)
INHERITS ("access"."right_parent")
;
-- ----------------------------
-- Table structure for user_role
-- ----------------------------
DROP TABLE IF EXISTS "access"."user_role";
CREATE TABLE "access"."user_role" (
"role" "access"."roles" NOT NULL,
"user_id" int4 NOT NULL
)
;
-- ----------------------------
-- Function structure for get_model_ids
-- ----------------------------
DROP FUNCTION IF EXISTS "access"."get_model_ids"("p_model_type_id" int2, "p_group_id" int4=NULL::integer);
CREATE OR REPLACE FUNCTION "access"."get_model_ids"("p_model_type_id" int2, "p_group_id" int4=NULL::integer)
RETURNS TABLE("id" int4, "name" varchar) AS $BODY$
DECLARE
l_model_name varchar;
BEGIN
l_model_name = (SELECT schema_name || '.' || table_name FROM "access".model_type WHERE id = p_model_type_id);
IF (p_group_id IS NULL) THEN
RETURN QUERY EXECUTE
format(
'SELECT id, name
FROM %I',
l_model_name
);
ELSE
RETURN QUERY EXECUTE
format(
'SELECT id, name
FROM %I
WHERE group_id = $1',
l_model_name
) USING p_group_id;
END IF;
END;
$BODY$
LANGUAGE plpgsql VOLATILE
COST 100
ROWS 1000;
-- ----------------------------
-- Function structure for get_models_list
-- ----------------------------
DROP FUNCTION IF EXISTS "access"."get_models_list"("p_model_type_id" int2, "p_group_id" int4=NULL::integer);
CREATE OR REPLACE FUNCTION "access"."get_models_list"("p_model_type_id" int2, "p_group_id" int4=NULL::integer)
RETURNS TABLE("id" int8, "name" varchar) AS $BODY$
DECLARE
l_schema_name varchar;
l_table_name varchar;
l_name_column_name varchar = 'name';
BEGIN
SELECT schema_name, table_name FROM "access".model_type mt WHERE mt.id = p_model_type_id
INTO l_schema_name, l_table_name;
IF (SELECT NOT EXISTS(SELECT column_name FROM information_schema.columns WHERE table_name = l_table_name AND table_schema = l_schema_name AND column_name = l_name_column_name)) THEN
l_name_column_name = 'id';
END IF;
IF (p_group_id IS NULL) THEN
RETURN QUERY EXECUTE
format(
'SELECT id::int8, %I::varchar AS name
FROM %I.%I',
l_name_column_name,
l_schema_name,
l_table_name
);
ELSE
RETURN QUERY EXECUTE
format(
'SELECT id::int8, %I::varchar AS name
FROM %I.%I
WHERE group_id = $1',
l_name_column_name,
l_schema_name,
l_table_name
) USING p_group_id;
END IF;
END;
$BODY$
LANGUAGE plpgsql VOLATILE
COST 100
ROWS 1000;
-- ----------------------------
-- View structure for urls_tmp
-- ----------------------------
DROP VIEW IF EXISTS "access"."urls_tmp";
CREATE VIEW "access"."urls_tmp" AS SELECT array_agg(u.id) AS url_ids,
pu.pu AS user_id
FROM ((access.model_type t1
LEFT JOIN access.url u ON ((u.model_type_id = ANY (array_append(t1.dependent_tables_ids, t1.id)))))
CROSS JOIN unnest(ARRAY[1]) pu(pu))
WHERE (t1.id = 39)
GROUP BY pu.pu;
-- ----------------------------
-- Alter sequences owned by
-- ----------------------------
SELECT setval('"access"."access_right_seq"', 2, true);
ALTER SEQUENCE "access"."tables_id_seq"
OWNED BY "access"."model_type"."id";
SELECT setval('"access"."tables_id_seq"', 96, true);
ALTER SEQUENCE "access"."url_id_seq"
OWNED BY "access"."url"."id";
SELECT setval('"access"."url_id_seq"', 102, true);
-- ----------------------------
-- Indexes structure for table model_type
-- ----------------------------
CREATE UNIQUE INDEX "model_type_schema_name_table_name_idx" ON "access"."model_type" USING btree (
"schema_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
"table_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
);
-- ----------------------------
-- Primary Key structure for table model_type
-- ----------------------------
ALTER TABLE "access"."model_type" ADD CONSTRAINT "tables_pkey" PRIMARY KEY ("id");
-- ----------------------------
-- Primary Key structure for table right_parent
-- ----------------------------
ALTER TABLE "access"."right_parent" ADD CONSTRAINT "right_parent_pkey" PRIMARY KEY ("url_id");
-- ----------------------------
-- Primary Key structure for table role_right
-- ----------------------------
ALTER TABLE "access"."role_right" ADD CONSTRAINT "default_right_pkey" PRIMARY KEY ("url_id", "role");
-- ----------------------------
-- Indexes structure for table url
-- ----------------------------
CREATE UNIQUE INDEX "url_text_idx" ON "access"."url" USING btree (
"text" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
);
-- ----------------------------
-- Primary Key structure for table url
-- ----------------------------
ALTER TABLE "access"."url" ADD CONSTRAINT "url_pkey" PRIMARY KEY ("id");
-- ----------------------------
-- Primary Key structure for table user_right
-- ----------------------------
ALTER TABLE "access"."user_right" ADD CONSTRAINT "access_right_pkey" PRIMARY KEY ("url_id", "user_id");
-- ----------------------------
-- Primary Key structure for table user_role
-- ----------------------------
ALTER TABLE "access"."user_role" ADD CONSTRAINT "user_role_pkey" PRIMARY KEY ("user_id");
-- ----------------------------
-- Foreign Keys structure for table role_right
-- ----------------------------
ALTER TABLE "access"."role_right" ADD CONSTRAINT "default_right_url_id_fkey" FOREIGN KEY ("url_id") REFERENCES "access"."url" ("id") ON DELETE CASCADE ON UPDATE CASCADE;
-- ----------------------------
-- Foreign Keys structure for table url
-- ----------------------------
ALTER TABLE "access"."url" ADD CONSTRAINT "url_model_type_id_fkey" FOREIGN KEY ("model_type_id") REFERENCES "access"."model_type" ("id") ON DELETE CASCADE ON UPDATE CASCADE;
-- ----------------------------
-- Foreign Keys structure for table user_right
-- ----------------------------
ALTER TABLE "access"."user_right" ADD CONSTRAINT "access_right_url_id_fkey" FOREIGN KEY ("url_id") REFERENCES "access"."url" ("id") ON DELETE CASCADE ON UPDATE CASCADE;
|
<filename>migrations/30_item_project_fill_part1.up.sql
INSERT INTO item_project(item_id, project_id) SELECT ti.item_id, launch.project_id FROM launch JOIN test_item ti ON launch.id = ti.launch_id; |
INSERT INTO perm_type(`type`) SELECT 'REGULAR_PATTERN' FROM DUAL WHERE NOT EXISTS(
SELECT 1 FROM perm_type WHERE `type` = 'REGULAR_PATTERN'
); |
--
-- PostgreSQL database dump
--
-- Dumped from database version 9.5.7
-- Dumped by pg_dump version 9.5.1
-- Started on 2017-06-12 14:35:03 EDT
SET statement_timeout = 0;
SET lock_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;
SET row_security = off;
--
-- TOC entry 1 (class 3079 OID 12393)
-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: -
--
CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
CREATE EXTENSION IF NOT EXISTS pgcrypto WITH SCHEMA public;
--
-- TOC entry 2161 (class 0 OID 0)
-- Dependencies: 1
-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: -
--
COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
SET search_path = public, pg_catalog;
SET default_with_oids = false;
--
-- TOC entry 183 (class 1259 OID 19646)
-- Name: courses; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE courses (
semester character varying(255) NOT NULL,
course character varying(255) NOT NULL,
status smallint NOT NULL default 1
);
CREATE TABLE emails (
id serial NOT NULL,
recipient varchar(255) NOT NULL,
subject TEXT NOT NULL,
body TEXT NOT NULL,
created TIMESTAMP WITHOUT TIME zone NOT NULL,
sent TIMESTAMP WITHOUT TIME zone
);
CREATE TABLE mapped_courses (
semester character varying(255) NOT NULL,
course character varying(255) NOT NULL,
registration_section character varying(255) NOT NULL,
mapped_course character varying(255) NOT NULL,
mapped_section character varying(255) NOT NULL
);
CREATE TABLE migrations_master (
id VARCHAR(100) PRIMARY KEY NOT NULL,
commit_time TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
status NUMERIC(1) DEFAULT 0 NOT NULL
);
CREATE TABLE migrations_system (
id VARCHAR(100) PRIMARY KEY NOT NULL,
commit_time TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
status NUMERIC(1) DEFAULT 0 NOT NULL
);
--
-- TOC entry 184 (class 1259 OID 19651)
-- Name: courses_users; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE courses_users (
semester character varying(255) NOT NULL,
course character varying(255) NOT NULL,
user_id character varying NOT NULL,
user_group integer NOT NULL,
registration_section character varying(255),
manual_registration boolean DEFAULT false,
CONSTRAINT users_user_group_check CHECK ((user_group >= 1) AND (user_group <= 4))
);
--
-- TOC entry 182 (class 1259 OID 19631)
-- Name: sessions; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE sessions (
session_id character varying(255) NOT NULL,
user_id character varying(255) NOT NULL,
csrf_token character varying(255) NOT NULL,
session_expires timestamp(6) with time zone NOT NULL
);
--
-- TOC entry 181 (class 1259 OID 19623)
-- Name: users; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE users (
user_id character varying NOT NULL,
user_numeric_id character varying,
user_password character varying,
user_firstname character varying NOT NULL,
user_preferred_firstname character varying,
user_lastname character varying NOT NULL,
user_preferred_lastname character varying,
user_email character varying NOT NULL,
user_updated BOOLEAN NOT NULL DEFAULT FALSE,
instructor_updated BOOLEAN NOT NULL DEFAULT FALSE,
last_updated timestamp(6) with time zone,
api_key character varying(255) NOT NULL UNIQUE DEFAULT encode(gen_random_bytes(16), 'hex')
);
CREATE TABLE courses_registration_sections (
semester character varying(255) NOT NULL,
course character varying(255) NOT NULL,
registration_section_id character varying(255) NOT NULL
);
--
-- TOC entry 2035 (class 2606 OID 19650)
-- Name: courses_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY courses
ADD CONSTRAINT courses_pkey PRIMARY KEY (semester, course);
ALTER TABLE ONLY emails
ADD CONSTRAINT emails_pkey PRIMARY KEY (id);
ALTER TABLE ONLY mapped_courses
ADD CONSTRAINT mapped_courses_pkey PRIMARY KEY (semester, course, registration_section);
--
-- TOC entry 2037 (class 2606 OID 19658)
-- Name: courses_users_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY courses_users
ADD CONSTRAINT courses_users_pkey PRIMARY KEY (semester, course, user_id);
--
-- TOC entry 2033 (class 2606 OID 19638)
-- Name: sessions_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY sessions
ADD CONSTRAINT sessions_pkey PRIMARY KEY (session_id);
--
-- TOC entry 2031 (class 2606 OID 19640)
-- Name: users_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY users
ADD CONSTRAINT users_pkey PRIMARY KEY (user_id);
ALTER TABLE ONLY courses_registration_sections
ADD CONSTRAINT courses_registration_sections_pkey PRIMARY KEY (semester, course, registration_section_id);
ALTER TABLE ONLY mapped_courses
ADD CONSTRAINT mapped_courses_fkey FOREIGN KEY (semester, mapped_course) REFERENCES courses(semester, course) ON UPDATE CASCADE;
--
-- TOC entry 2039 (class 2606 OID 19659)
-- Name: courses_users_course_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY courses_users
ADD CONSTRAINT courses_users_course_fkey FOREIGN KEY (semester, course) REFERENCES courses(semester, course) ON UPDATE CASCADE;
--
-- TOC entry 2040 (class 2606 OID 19664)
-- Name: courses_users_user_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY courses_users
ADD CONSTRAINT courses_users_user_fkey FOREIGN KEY (user_id) REFERENCES users(user_id) ON UPDATE CASCADE;
--
-- TOC entry 2038 (class 2606 OID 19641)
-- Name: sessions_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY sessions
ADD CONSTRAINT sessions_fkey FOREIGN KEY (user_id) REFERENCES users(user_id) ON UPDATE CASCADE;
ALTER TABLE ONLY courses_registration_sections
ADD CONSTRAINT courses_registration_sections_fkey FOREIGN KEY (semester, course) REFERENCES courses(semester, course) ON UPDATE CASCADE;
-- Completed on 2017-06-12 14:35:07 EDT
--
-- PostgreSQL database dump complete
--
--
-- plpgsql functions and triggers
--
CREATE EXTENSION IF NOT EXISTS dblink;
CREATE OR REPLACE FUNCTION sync_courses_user() RETURNS TRIGGER AS
-- TRIGGER function to sync users data on INSERT or UPDATE of user_record in
-- table courses_user.
$$
DECLARE
user_row record;
db_conn varchar;
query_string text;
BEGIN
db_conn := format('dbname=submitty_%s_%s', NEW.semester, NEW.course);
IF (TG_OP = 'INSERT') THEN
-- FULL data sync on INSERT of a new user record.
SELECT * INTO user_row FROM users WHERE user_id=NEW.user_id;
query_string := 'INSERT INTO users (user_id, user_numeric_id, user_firstname, user_preferred_firstname, user_lastname, user_preferred_lastname, user_email, user_updated, instructor_updated, user_group, registration_section, manual_registration) ' ||
'VALUES (' || quote_literal(user_row.user_id) || ', ' || quote_nullable(user_row.user_numeric_id) || ', ' || quote_literal(user_row.user_firstname) || ', ' || quote_nullable(user_row.user_preferred_firstname) || ', ' || quote_literal(user_row.user_lastname) || ', ' ||
'' || quote_nullable(user_row.user_preferred_lastname) || ', ' || quote_literal(user_row.user_email) || ', ' || quote_literal(user_row.user_updated) || ', ' || quote_literal(user_row.instructor_updated) || ', ' ||
'' || NEW.user_group || ', ' || quote_nullable(NEW.registration_section) || ', ' || NEW.manual_registration || ')';
IF query_string IS NULL THEN
RAISE EXCEPTION 'query_string error in trigger function sync_courses_user() when doing INSERT';
END IF;
PERFORM dblink_exec(db_conn, query_string);
ELSIF (TG_OP = 'UPDATE') THEN
-- User update on registration_section
-- CASE clause ensures user's rotating section is set NULL when
-- registration is updated to NULL. (e.g. student has dropped)
query_string = 'UPDATE users SET user_group=' || NEW.user_group || ', registration_section=' || quote_nullable(NEW.registration_section) || ', rotating_section=' || CASE WHEN NEW.registration_section IS NULL THEN 'null' ELSE 'rotating_section' END || ', manual_registration=' || NEW.manual_registration || ' WHERE user_id=' || QUOTE_LITERAL(NEW.user_id);
IF query_string IS NULL THEN
RAISE EXCEPTION 'query_string error in trigger function sync_courses_user() when doing UPDATE';
END IF;
PERFORM dblink_exec(db_conn, query_string);
END IF;
-- All done.
RETURN NULL;
END;
$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION sync_user() RETURNS trigger AS
-- TRIGGER function to sync users data on INSERT or UPDATE of user_record in
-- table users. NOTE: INSERT should not trigger this function as function
-- sync_courses_users will also sync users -- but only on INSERT.
$$
DECLARE
course_row RECORD;
db_conn VARCHAR;
query_string TEXT;
BEGIN
FOR course_row IN SELECT semester, course FROM courses_users WHERE user_id=NEW.user_id LOOP
RAISE NOTICE 'Semester: %, Course: %', course_row.semester, course_row.course;
db_conn := format('dbname=submitty_%s_%s', course_row.semester, course_row.course);
query_string := 'UPDATE users SET user_numeric_id=' || quote_nullable(NEW.user_numeric_id) || ', user_firstname=' || quote_literal(NEW.user_firstname) || ', user_preferred_firstname=' || quote_nullable(NEW.user_preferred_firstname) || ', user_lastname=' || quote_literal(NEW.user_lastname) || ', user_preferred_lastname=' || quote_nullable(NEW.user_preferred_lastname) || ', user_email=' || quote_literal(NEW.user_email) || ', user_updated=' || quote_literal(NEW.user_updated) || ', instructor_updated=' || quote_literal(NEW.instructor_updated) || ' WHERE user_id=' || quote_literal(NEW.user_id);
-- Need to make sure that query_string was set properly as dblink_exec will happily take a null and then do nothing
IF query_string IS NULL THEN
RAISE EXCEPTION 'query_string error in trigger function sync_user()';
END IF;
PERFORM dblink_exec(db_conn, query_string);
END LOOP;
-- All done.
RETURN NULL;
END;
$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION sync_insert_registration_section() RETURNS trigger AS $$
-- AFTER INSERT trigger function to INSERT registration sections to course DB, as needed.
DECLARE
registration_row RECORD;
db_conn VARCHAR;
query_string TEXT;
BEGIN
db_conn := format('dbname=submitty_%s_%s', NEW.semester, NEW.course);
query_string := 'INSERT INTO sections_registration VALUES(' || quote_literal(NEW.registration_section_id) || ') ON CONFLICT DO NOTHING';
-- Need to make sure that query_string was set properly as dblink_exec will happily take a null and then do nothing
IF query_string IS NULL THEN
RAISE EXCEPTION 'query_string error in trigger function sync_insert_registration_section()';
END IF;
PERFORM dblink_exec(db_conn, query_string);
-- All done.
RETURN NULL;
END;
$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION sync_delete_registration_section() RETURNS TRIGGER AS $$
-- BEFORE DELETE trigger function to DELETE registration sections from course DB, as needed.
DECLARE
registration_row RECORD;
db_conn VARCHAR;
query_string TEXT;
BEGIN
db_conn := format('dbname=submitty_%s_%s', OLD.semester, OLD.course);
query_string := 'DELETE FROM sections_registration WHERE sections_registration_id = ' || quote_literal(OLD.registration_section_id);
-- Need to make sure that query_string was set properly as dblink_exec will happily take a null and then do nothing
IF query_string IS NULL THEN
RAISE EXCEPTION 'query_string error in trigger function sync_delete_registration_section()';
END IF;
PERFORM dblink_exec(db_conn, query_string);
-- All done. As this is a BEFORE DELETE trigger, RETURN OLD allows original triggering DELETE query to proceed.
RETURN OLD;
-- Trying to delete a registration section while users are still enrolled will raise an integrity constraint violation exception.
-- We should catch this exception and stop execution with no rows processed.
-- No rows processed will indicate to the UsersController that deletion had an error and did not occur.
EXCEPTION WHEN integrity_constraint_violation THEN
RAISE NOTICE 'Users are still enrolled in registration section ''%''', OLD.registration_section_id;
-- Return NULL so we do not proceed with original triggering DELETE query.
RETURN NULL;
END;
$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION generate_api_key() RETURNS TRIGGER AS $generate_api_key$
-- TRIGGER function to generate api_key on INSERT or UPDATE of user_password in
-- table users.
BEGIN
NEW.api_key := encode(gen_random_bytes(16), 'hex');
RETURN NEW;
END;
$generate_api_key$ LANGUAGE plpgsql;
-- Foreign Key Constraint *REQUIRES* insert trigger to be assigned to course_users.
-- Updates can happen in either users and/or courses_users.
CREATE TRIGGER user_sync_courses_users AFTER INSERT OR UPDATE ON courses_users FOR EACH ROW EXECUTE PROCEDURE sync_courses_user();
CREATE TRIGGER user_sync_users AFTER UPDATE ON users FOR EACH ROW EXECUTE PROCEDURE sync_user();
-- INSERT and DELETE triggers for syncing registration sections happen on different instances of TG_WHEN (after vs before).
CREATE TRIGGER insert_sync_registration_id AFTER INSERT OR UPDATE ON courses_registration_sections FOR EACH ROW EXECUTE PROCEDURE sync_insert_registration_section();
CREATE TRIGGER delete_sync_registration_id BEFORE DELETE ON courses_registration_sections FOR EACH ROW EXECUTE PROCEDURE sync_delete_registration_section();
-- Generate API key when a user is created or its password is changed.
CREATE TRIGGER generate_api_key BEFORE INSERT OR UPDATE OF user_password ON users FOR EACH ROW EXECUTE PROCEDURE generate_api_key(); |
-- MySQL dump 10.13 Distrib 5.7.17, for Linux (x86_64)
--
-- Host: localhost Database: ninja
-- ------------------------------------------------------
-- Server version 5.7.17-0ubuntu0.16.04.1
/*!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 `account_gateway_settings`
--
DROP TABLE IF EXISTS `account_gateway_settings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `account_gateway_settings` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`account_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`gateway_type_id` int(10) unsigned DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`min_limit` int(10) unsigned DEFAULT NULL,
`max_limit` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `account_gateway_settings_account_id_foreign` (`account_id`),
KEY `account_gateway_settings_user_id_foreign` (`user_id`),
KEY `account_gateway_settings_gateway_type_id_foreign` (`gateway_type_id`),
CONSTRAINT `account_gateway_settings_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
CONSTRAINT `account_gateway_settings_gateway_type_id_foreign` FOREIGN KEY (`gateway_type_id`) REFERENCES `gateway_types` (`id`) ON DELETE CASCADE,
CONSTRAINT `account_gateway_settings_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `account_gateway_settings`
--
LOCK TABLES `account_gateway_settings` WRITE;
/*!40000 ALTER TABLE `account_gateway_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `account_gateway_settings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `account_gateway_tokens`
--
DROP TABLE IF EXISTS `account_gateway_tokens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `account_gateway_tokens` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`account_id` int(10) unsigned NOT NULL,
`contact_id` int(10) unsigned NOT NULL,
`account_gateway_id` int(10) unsigned NOT NULL,
`client_id` int(10) unsigned NOT NULL,
`token` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`default_payment_method_id` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `account_gateway_tokens_account_id_foreign` (`account_id`),
KEY `account_gateway_tokens_contact_id_foreign` (`contact_id`),
KEY `account_gateway_tokens_account_gateway_id_foreign` (`account_gateway_id`),
KEY `account_gateway_tokens_client_id_foreign` (`client_id`),
KEY `account_gateway_tokens_default_payment_method_id_foreign` (`default_payment_method_id`),
CONSTRAINT `account_gateway_tokens_account_gateway_id_foreign` FOREIGN KEY (`account_gateway_id`) REFERENCES `account_gateways` (`id`) ON DELETE CASCADE,
CONSTRAINT `account_gateway_tokens_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
CONSTRAINT `account_gateway_tokens_client_id_foreign` FOREIGN KEY (`client_id`) REFERENCES `clients` (`id`) ON DELETE CASCADE,
CONSTRAINT `account_gateway_tokens_contact_id_foreign` FOREIGN KEY (`contact_id`) REFERENCES `contacts` (`id`) ON DELETE CASCADE,
CONSTRAINT `account_gateway_tokens_default_payment_method_id_foreign` FOREIGN KEY (`default_payment_method_id`) REFERENCES `payment_methods` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `account_gateway_tokens`
--
LOCK TABLES `account_gateway_tokens` WRITE;
/*!40000 ALTER TABLE `account_gateway_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `account_gateway_tokens` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `account_gateways`
--
DROP TABLE IF EXISTS `account_gateways`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `account_gateways` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`account_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`gateway_id` int(10) unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`config` text COLLATE utf8_unicode_ci NOT NULL,
`public_id` int(10) unsigned NOT NULL,
`accepted_credit_cards` int(10) unsigned DEFAULT NULL,
`show_address` tinyint(1) DEFAULT '1',
`update_address` tinyint(1) DEFAULT '1',
`require_cvv` tinyint(1) DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `account_gateways_account_id_public_id_unique` (`account_id`,`public_id`),
KEY `account_gateways_gateway_id_foreign` (`gateway_id`),
KEY `account_gateways_user_id_foreign` (`user_id`),
KEY `account_gateways_public_id_index` (`public_id`),
CONSTRAINT `account_gateways_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
CONSTRAINT `account_gateways_gateway_id_foreign` FOREIGN KEY (`gateway_id`) REFERENCES `gateways` (`id`),
CONSTRAINT `account_gateways_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `account_gateways`
--
LOCK TABLES `account_gateways` WRITE;
/*!40000 ALTER TABLE `account_gateways` DISABLE KEYS */;
/*!40000 ALTER TABLE `account_gateways` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `account_tokens`
--
DROP TABLE IF EXISTS `account_tokens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `account_tokens` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`account_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`token` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`public_id` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `account_tokens_token_unique` (`token`),
UNIQUE KEY `account_tokens_account_id_public_id_unique` (`account_id`,`public_id`),
KEY `account_tokens_user_id_foreign` (`user_id`),
KEY `account_tokens_account_id_index` (`account_id`),
CONSTRAINT `account_tokens_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
CONSTRAINT `account_tokens_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `account_tokens`
--
LOCK TABLES `account_tokens` WRITE;
/*!40000 ALTER TABLE `account_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `account_tokens` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `companies`
--
DROP TABLE IF EXISTS `accounts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `accounts` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`timezone_id` int(10) unsigned DEFAULT NULL,
`date_format_id` int(10) unsigned DEFAULT NULL,
`datetime_format_id` int(10) unsigned DEFAULT NULL,
`currency_id` int(10) unsigned DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`ip` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`account_key` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`last_login` timestamp NULL DEFAULT NULL,
`address1` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`address2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`city` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`state` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`postal_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`country_id` int(10) unsigned DEFAULT NULL,
`invoice_terms` text COLLATE utf8_unicode_ci,
`email_footer` text COLLATE utf8_unicode_ci,
`industry_id` int(10) unsigned DEFAULT NULL,
`size_id` int(10) unsigned DEFAULT NULL,
`invoice_taxes` tinyint(1) NOT NULL DEFAULT '1',
`invoice_item_taxes` tinyint(1) NOT NULL DEFAULT '0',
`invoice_design_id` int(10) unsigned NOT NULL DEFAULT '1',
`work_phone` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`work_email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`language_id` int(10) unsigned NOT NULL DEFAULT '1',
`custom_label1` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`custom_value1` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`custom_label2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`custom_value2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`custom_client_label1` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`custom_client_label2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`fill_products` tinyint(1) NOT NULL DEFAULT '1',
`update_products` tinyint(1) NOT NULL DEFAULT '1',
`primary_color` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`secondary_color` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`hide_quantity` tinyint(1) NOT NULL DEFAULT '0',
`hide_paid_to_date` tinyint(1) NOT NULL DEFAULT '0',
`custom_invoice_label1` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`custom_invoice_label2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`custom_invoice_taxes1` tinyint(1) DEFAULT NULL,
`custom_invoice_taxes2` tinyint(1) DEFAULT NULL,
`vat_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`invoice_number_prefix` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`invoice_number_counter` int(11) DEFAULT '1',
`quote_number_prefix` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`quote_number_counter` int(11) DEFAULT '1',
`share_counter` tinyint(1) NOT NULL DEFAULT '1',
`id_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`email_template_invoice` text COLLATE utf8_unicode_ci,
`email_template_quote` text COLLATE utf8_unicode_ci,
`email_template_payment` text COLLATE utf8_unicode_ci,
`token_billing_type_id` smallint(6) NOT NULL DEFAULT '4',
`invoice_footer` text COLLATE utf8_unicode_ci,
`pdf_email_attachment` smallint(6) NOT NULL DEFAULT '0',
`utf8_invoices` tinyint(1) NOT NULL DEFAULT '1',
`auto_wrap` tinyint(1) NOT NULL DEFAULT '0',
`subdomain` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`font_size` smallint(6) NOT NULL DEFAULT '9',
`invoice_labels` text COLLATE utf8_unicode_ci,
`custom_design` mediumtext COLLATE utf8_unicode_ci,
`show_item_taxes` tinyint(1) NOT NULL DEFAULT '0',
`iframe_url` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`military_time` tinyint(1) NOT NULL DEFAULT '0',
`referral_user_id` int(10) unsigned DEFAULT NULL,
`email_subject_invoice` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`email_subject_quote` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`email_subject_payment` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`email_subject_reminder1` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`email_subject_reminder2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`email_subject_reminder3` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`email_template_reminder1` text COLLATE utf8_unicode_ci,
`email_template_reminder2` text COLLATE utf8_unicode_ci,
`email_template_reminder3` text COLLATE utf8_unicode_ci,
`enable_reminder1` tinyint(1) NOT NULL DEFAULT '0',
`enable_reminder2` tinyint(1) NOT NULL DEFAULT '0',
`enable_reminder3` tinyint(1) NOT NULL DEFAULT '0',
`num_days_reminder1` smallint(6) NOT NULL DEFAULT '7',
`num_days_reminder2` smallint(6) NOT NULL DEFAULT '14',
`num_days_reminder3` smallint(6) NOT NULL DEFAULT '30',
`custom_invoice_text_label1` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`custom_invoice_text_label2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`default_tax_rate_id` int(10) unsigned DEFAULT NULL,
`recurring_hour` smallint(6) NOT NULL DEFAULT '8',
`invoice_number_pattern` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`quote_number_pattern` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`quote_terms` text COLLATE utf8_unicode_ci,
`email_design_id` smallint(6) NOT NULL DEFAULT '1',
`enable_email_markup` tinyint(1) NOT NULL DEFAULT '0',
`website` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`direction_reminder1` smallint(6) NOT NULL DEFAULT '1',
`direction_reminder2` smallint(6) NOT NULL DEFAULT '1',
`direction_reminder3` smallint(6) NOT NULL DEFAULT '1',
`field_reminder1` smallint(6) NOT NULL DEFAULT '1',
`field_reminder2` smallint(6) NOT NULL DEFAULT '1',
`field_reminder3` smallint(6) NOT NULL DEFAULT '1',
`client_view_css` text COLLATE utf8_unicode_ci,
`header_font_id` int(10) unsigned NOT NULL DEFAULT '1',
`body_font_id` int(10) unsigned NOT NULL DEFAULT '1',
`auto_convert_quote` tinyint(1) NOT NULL DEFAULT '1',
`all_pages_footer` tinyint(1) NOT NULL,
`all_pages_header` tinyint(1) NOT NULL,
`show_currency_code` tinyint(1) NOT NULL,
`enable_portal_password` tinyint(1) NOT NULL DEFAULT '0',
`send_portal_password` tinyint(1) NOT NULL DEFAULT '0',
`custom_invoice_item_label1` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`custom_invoice_item_label2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`recurring_invoice_number_prefix` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'R',
`enable_client_portal` tinyint(1) NOT NULL DEFAULT '1',
`invoice_fields` text COLLATE utf8_unicode_ci,
`devices` text COLLATE utf8_unicode_ci,
`logo` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`logo_width` int(10) unsigned NOT NULL,
`logo_height` int(10) unsigned NOT NULL,
`logo_size` int(10) unsigned NOT NULL,
`invoice_embed_documents` tinyint(1) NOT NULL DEFAULT '0',
`document_email_attachment` tinyint(1) NOT NULL DEFAULT '0',
`enable_client_portal_dashboard` tinyint(1) NOT NULL DEFAULT '1',
`company_id` int(10) unsigned DEFAULT NULL,
`page_size` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'A4',
`live_preview` tinyint(1) NOT NULL DEFAULT '1',
`invoice_number_padding` smallint(6) NOT NULL DEFAULT '4',
`enable_second_tax_rate` tinyint(1) NOT NULL DEFAULT '0',
`auto_bill_on_due_date` tinyint(1) NOT NULL DEFAULT '0',
`start_of_week` int(11) NOT NULL,
`enable_buy_now_buttons` tinyint(1) NOT NULL DEFAULT '0',
`include_item_taxes_inline` tinyint(1) NOT NULL DEFAULT '0',
`financial_year_start` date DEFAULT NULL,
`enabled_modules` smallint(6) NOT NULL DEFAULT '63',
`enabled_dashboard_sections` smallint(6) NOT NULL DEFAULT '7',
`show_accept_invoice_terms` tinyint(1) NOT NULL DEFAULT '0',
`show_accept_quote_terms` tinyint(1) NOT NULL DEFAULT '0',
`require_invoice_signature` tinyint(1) NOT NULL DEFAULT '0',
`require_quote_signature` tinyint(1) NOT NULL DEFAULT '0',
`bcc_email` text COLLATE utf8_unicode_ci,
`client_number_prefix` text COLLATE utf8_unicode_ci,
`client_number_counter` int(11) DEFAULT '0',
`client_number_pattern` text COLLATE utf8_unicode_ci,
`domain_id` tinyint(3) unsigned DEFAULT '1',
`payment_terms` tinyint(4) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `accounts_account_key_unique` (`account_key`),
KEY `accounts_timezone_id_foreign` (`timezone_id`),
KEY `accounts_date_format_id_foreign` (`date_format_id`),
KEY `accounts_datetime_format_id_foreign` (`datetime_format_id`),
KEY `accounts_country_id_foreign` (`country_id`),
KEY `accounts_currency_id_foreign` (`currency_id`),
KEY `accounts_industry_id_foreign` (`industry_id`),
KEY `accounts_size_id_foreign` (`size_id`),
KEY `accounts_invoice_design_id_foreign` (`invoice_design_id`),
KEY `accounts_language_id_foreign` (`language_id`),
KEY `accounts_company_id_foreign` (`company_id`),
CONSTRAINT `accounts_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE,
CONSTRAINT `accounts_country_id_foreign` FOREIGN KEY (`country_id`) REFERENCES `countries` (`id`),
CONSTRAINT `accounts_currency_id_foreign` FOREIGN KEY (`currency_id`) REFERENCES `currencies` (`id`),
CONSTRAINT `accounts_date_format_id_foreign` FOREIGN KEY (`date_format_id`) REFERENCES `date_formats` (`id`),
CONSTRAINT `accounts_datetime_format_id_foreign` FOREIGN KEY (`datetime_format_id`) REFERENCES `datetime_formats` (`id`),
CONSTRAINT `accounts_industry_id_foreign` FOREIGN KEY (`industry_id`) REFERENCES `industries` (`id`),
CONSTRAINT `accounts_invoice_design_id_foreign` FOREIGN KEY (`invoice_design_id`) REFERENCES `invoice_designs` (`id`),
CONSTRAINT `accounts_language_id_foreign` FOREIGN KEY (`language_id`) REFERENCES `languages` (`id`),
CONSTRAINT `accounts_size_id_foreign` FOREIGN KEY (`size_id`) REFERENCES `sizes` (`id`),
CONSTRAINT `accounts_timezone_id_foreign` FOREIGN KEY (`timezone_id`) REFERENCES `timezones` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `companies`
--
LOCK TABLES `accounts` WRITE;
/*!40000 ALTER TABLE `companies` DISABLE KEYS */;
/*!40000 ALTER TABLE `companies` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `activities`
--
DROP TABLE IF EXISTS `activities`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `activities` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`account_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`client_id` int(10) unsigned DEFAULT NULL,
`contact_id` int(10) unsigned DEFAULT NULL,
`payment_id` int(10) unsigned DEFAULT NULL,
`invoice_id` int(10) unsigned DEFAULT NULL,
`credit_id` int(10) unsigned DEFAULT NULL,
`invitation_id` int(10) unsigned DEFAULT NULL,
`task_id` int(11) DEFAULT NULL,
`json_backup` text COLLATE utf8_unicode_ci,
`activity_type_id` int(11) NOT NULL,
`adjustment` decimal(13,2) DEFAULT NULL,
`balance` decimal(13,2) DEFAULT NULL,
`token_id` int(10) unsigned DEFAULT NULL,
`ip` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`is_system` tinyint(1) NOT NULL DEFAULT '0',
`expense_id` int(10) unsigned DEFAULT NULL,
`notes` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`),
KEY `activities_account_id_foreign` (`account_id`),
CONSTRAINT `activities_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `activities`
--
LOCK TABLES `activities` WRITE;
/*!40000 ALTER TABLE `activities` DISABLE KEYS */;
/*!40000 ALTER TABLE `activities` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `affiliates`
--
DROP TABLE IF EXISTS `affiliates`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `affiliates` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`affiliate_key` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`payment_title` text COLLATE utf8_unicode_ci NOT NULL,
`payment_subtitle` text COLLATE utf8_unicode_ci NOT NULL,
`price` decimal(7,2) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `affiliates_affiliate_key_unique` (`affiliate_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `affiliates`
--
LOCK TABLES `affiliates` WRITE;
/*!40000 ALTER TABLE `affiliates` DISABLE KEYS */;
/*!40000 ALTER TABLE `affiliates` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bank_accounts`
--
DROP TABLE IF EXISTS `bank_accounts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `bank_accounts` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`account_id` int(10) unsigned NOT NULL,
`bank_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`username` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`public_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `bank_accounts_account_id_public_id_unique` (`account_id`,`public_id`),
KEY `bank_accounts_user_id_foreign` (`user_id`),
KEY `bank_accounts_bank_id_foreign` (`bank_id`),
KEY `bank_accounts_public_id_index` (`public_id`),
CONSTRAINT `bank_accounts_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
CONSTRAINT `bank_accounts_bank_id_foreign` FOREIGN KEY (`bank_id`) REFERENCES `banks` (`id`),
CONSTRAINT `bank_accounts_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bank_accounts`
--
LOCK TABLES `bank_accounts` WRITE;
/*!40000 ALTER TABLE `bank_accounts` DISABLE KEYS */;
/*!40000 ALTER TABLE `bank_accounts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bank_subaccounts`
--
DROP TABLE IF EXISTS `bank_subaccounts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `bank_subaccounts` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`account_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`bank_account_id` int(10) unsigned NOT NULL,
`account_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`account_number` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`public_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `bank_subaccounts_account_id_public_id_unique` (`account_id`,`public_id`),
KEY `bank_subaccounts_user_id_foreign` (`user_id`),
KEY `bank_subaccounts_bank_account_id_foreign` (`bank_account_id`),
KEY `bank_subaccounts_public_id_index` (`public_id`),
CONSTRAINT `bank_subaccounts_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
CONSTRAINT `bank_subaccounts_bank_account_id_foreign` FOREIGN KEY (`bank_account_id`) REFERENCES `bank_accounts` (`id`) ON DELETE CASCADE,
CONSTRAINT `bank_subaccounts_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bank_subaccounts`
--
LOCK TABLES `bank_subaccounts` WRITE;
/*!40000 ALTER TABLE `bank_subaccounts` DISABLE KEYS */;
/*!40000 ALTER TABLE `bank_subaccounts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `banks`
--
DROP TABLE IF EXISTS `banks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `banks` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`remote_id` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`bank_library_id` int(11) NOT NULL DEFAULT '1',
`config` text COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=387 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `banks`
--
LOCK TABLES `banks` WRITE;
/*!40000 ALTER TABLE `banks` DISABLE KEYS */;
INSERT INTO `banks` VALUES (1,'ING DIRECT (Canada)','421',1,'{\"fid\":\"061400152\",\"org\":\"INGDirectCanada\",\"url\":\"https:\\/\\/ofx.ingdirect.ca\"}'),(2,'Safe Credit Union - OFX Beta','422',1,'{\"fid\":\"321173742\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxcert.diginsite.com\\/cmr\\/cmr.ofx\"}'),(3,'Ascentra Credit Union','423',1,'{\"fid\":\"273973456\",\"org\":\"Alcoa Employees&Community CU\",\"url\":\"https:\\/\\/alc.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(4,'American Express Card','424',1,'{\"fid\":\"3101\",\"org\":\"AMEX\",\"url\":\"https:\\/\\/online.americanexpress.com\\/myca\\/ofxdl\\/desktop\\/desktopDownload.do?request_type=nl_ofxdownload\"}'),(5,'TD Ameritrade','425',1,'{\"fid\":\"5024\",\"org\":\"ameritrade.com\",\"url\":\"https:\\/\\/ofxs.ameritrade.com\\/cgi-bin\\/apps\\/OFX\"}'),(6,'Truliant FCU','426',1,'{\"fid\":\"253177832\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(7,'AT&T Universal Card','427',1,'{\"fid\":\"24909\",\"org\":\"Citigroup\",\"url\":\"https:\\/\\/secureofx2.bankhost.com\\/citi\\/cgi-forte\\/ofx_rt?servicename=ofx_rt&pagename=ofx\"}'),(8,'Bank One','428',1,'{\"fid\":\"5811\",\"org\":\"B1\",\"url\":\"https:\\/\\/onlineofx.chase.com\\/chase.ofx\"}'),(9,'Bank of Stockton','429',1,'{\"fid\":\"3901\",\"org\":\"BOS\",\"url\":\"https:\\/\\/internetbanking.bankofstockton.com\\/scripts\\/serverext.dll\"}'),(10,'Bank of the Cascades','430',1,'{\"fid\":\"4751\",\"org\":\"JackHenry\",\"url\":\"https:\\/\\/directline.netteller.com\"}'),(11,'Centra Credit Union','431',1,'{\"fid\":\"274972883\",\"org\":\"Centra CU\",\"url\":\"https:\\/\\/centralink.org\\/scripts\\/isaofx.dll\"}'),(12,'Centura Bank','432',1,'{\"fid\":\"1901\",\"org\":\"Centura Bank\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/1901.ofxgp\"}'),(13,'Charles Schwab&Co., INC','433',1,'{\"fid\":\"5104\",\"org\":\"ISC\",\"url\":\"https:\\/\\/ofx.schwab.com\\/cgi_dev\\/ofx_server\"}'),(14,'JPMorgan Chase Bank (Texas)','434',1,'{\"fid\":\"5301\",\"org\":\"Chase Bank of Texas\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/5301.ofxgp\"}'),(15,'JPMorgan Chase Bank','435',1,'{\"fid\":\"1601\",\"org\":\"Chase Bank\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/1601.ofxgp\"}'),(16,'Colonial Bank','436',1,'{\"fid\":\"1046\",\"org\":\"Colonial Banc Group\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/1046.ofxgp\"}'),(17,'Comerica Bank','437',1,'{\"fid\":\"5601\",\"org\":\"Comerica\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/5601.ofxgp\"}'),(18,'Commerce Bank NJ, PA, NY&DE','438',1,'{\"fid\":\"1001\",\"org\":\"CommerceBank\",\"url\":\"https:\\/\\/www.commerceonlinebanking.com\\/scripts\\/serverext.dll\"}'),(19,'Commerce Bank, NA','439',1,'{\"fid\":\"4001\",\"org\":\"Commerce Bank NA\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/4001.ofxgp\"}'),(20,'Commercial Federal Bank','440',1,'{\"fid\":\"4801\",\"org\":\"CommercialFederalBank\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/4801.ofxgp\"}'),(21,'COMSTAR FCU','441',1,'{\"fid\":\"255074988\",\"org\":\"Comstar Federal Credit Union\",\"url\":\"https:\\/\\/pcu.comstarfcu.org\\/scripts\\/isaofx.dll\"}'),(22,'SunTrust','442',1,'{\"fid\":\"2801\",\"org\":\"SunTrust PC Banking\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/2801.ofxgp\"}'),(23,'Denali Alaskan FCU','443',1,'{\"fid\":\"1\",\"org\":\"Denali Alaskan FCU\",\"url\":\"https:\\/\\/remotebanking.denalifcu.com\\/ofx\\/ofx.dll\"}'),(24,'Discover Card','444',1,'{\"fid\":\"7101\",\"org\":\"Discover Financial Services\",\"url\":\"https:\\/\\/ofx.discovercard.com\"}'),(25,'E*TRADE','446',1,'{\"fid\":\"fldProv_mProvBankId\",\"org\":\"fldProv_mId\",\"url\":\"https:\\/\\/ofx.etrade.com\\/cgi-ofx\\/etradeofx\"}'),(26,'Eastern Bank','447',1,'{\"fid\":\"6201\",\"org\":\"Eastern Bank\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/6201.ofxgp\"}'),(27,'EDS Credit Union','448',1,'{\"fid\":\"311079474\",\"org\":\"EDS CU\",\"url\":\"https:\\/\\/eds.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(28,'Fidelity Investments','449',1,'{\"fid\":\"7776\",\"org\":\"fidelity.com\",\"url\":\"https:\\/\\/ofx.fidelity.com\\/ftgw\\/OFX\\/clients\\/download\"}'),(29,'Fifth Third Bancorp','450',1,'{\"fid\":\"5829\",\"org\":\"Fifth Third Bank\",\"url\":\"https:\\/\\/banking.53.com\\/ofx\\/OFXServlet\"}'),(30,'First Tech Credit Union','451',1,'{\"fid\":\"2243\",\"org\":\"First Tech Credit Union\",\"url\":\"https:\\/\\/ofx.firsttechcu.com\"}'),(31,'zWachovia','452',1,'{\"fid\":\"4301\",\"org\":\"Wachovia\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/4301.ofxgp\"}'),(32,'KeyBank','453',1,'{\"fid\":\"5901\",\"org\":\"KeyBank\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/05901.ofx\"}'),(33,'Mellon Bank','454',1,'{\"fid\":\"1226\",\"org\":\"Mellon Bank\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/1226.ofxgp\"}'),(34,'LaSalle Bank Midwest','455',1,'{\"fid\":\"1101\",\"org\":\"LaSalleBankMidwest\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/1101.ofxgp\"}'),(35,'Nantucket Bank','456',1,'{\"fid\":\"466\",\"org\":\"Nantucket\",\"url\":\"https:\\/\\/ofx.onlinencr.com\\/scripts\\/serverext.dll\"}'),(36,'National Penn Bank','457',1,'{\"fid\":\"6301\",\"org\":\"National Penn Bank\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/6301.ofxgp\"}'),(37,'Nevada State Bank - New','458',1,'{\"fid\":\"1121\",\"org\":\"295-3\",\"url\":\"https:\\/\\/quicken.metavante.com\\/ofx\\/OFXServlet\"}'),(38,'UBS Financial Services Inc.','459',1,'{\"fid\":\"7772\",\"org\":\"Intuit\",\"url\":\"https:\\/\\/ofx1.ubs.com\\/eftxweb\\/access.ofx\"}'),(39,'Patelco CU','460',1,'{\"fid\":\"2000\",\"org\":\"Patelco Credit Union\",\"url\":\"https:\\/\\/ofx.patelco.org\"}'),(40,'Mercantile Brokerage Services','461',1,'{\"fid\":\"011\",\"org\":\"Mercantile Brokerage\",\"url\":\"https:\\/\\/ofx.netxclient.com\\/cgi\\/OFXNetx\"}'),(41,'Regions Bank','462',1,'{\"fid\":\"243\",\"org\":\"regions.com\",\"url\":\"https:\\/\\/ofx.morgankeegan.com\\/begasp\\/directtocore.asp\"}'),(42,'Spectrum Connect/Reich&Tang','463',1,'{\"fid\":\"6510\",\"org\":\"SpectrumConnect\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/6510.ofxgp\"}'),(43,'<NAME> - Transactions','464',1,'{\"fid\":\"3201\",\"org\":\"SmithBarney\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/3201.ofxgp\"}'),(44,'Southwest Airlines FCU','465',1,'{\"fid\":\"311090673\",\"org\":\"Southwest Airlines EFCU\",\"url\":\"https:\\/\\/www.swacuflashbp.org\\/scripts\\/isaofx.dll\"}'),(45,'Technology Credit Union - CA','467',1,'{\"fid\":\"11257\",\"org\":\"Tech CU\",\"url\":\"https:\\/\\/webbranchofx.techcu.com\\/TekPortalOFX\\/servlet\\/TP_OFX_Controller\"}'),(46,'UMB Bank','468',1,'{\"fid\":\"0\",\"org\":\"UMB\",\"url\":\"https:\\/\\/pcbanking.umb.com\\/hs_ofx\\/hsofx.dll\"}'),(47,'Union Bank of California','469',1,'{\"fid\":\"2901\",\"org\":\"Union Bank of California\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/2901.ofxgp\"}'),(48,'United Teletech Financial','470',1,'{\"fid\":\"221276011\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxcore.digitalinsight.com:443\\/servlet\\/OFXCoreServlet\"}'),(49,'US Bank','471',1,'{\"fid\":\"1401\",\"org\":\"US Bank\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/1401.ofxgp\"}'),(50,'Bank of America (All except CA, WA,&ID)','472',1,'{\"fid\":\"6812\",\"org\":\"HAN\",\"url\":\"https:\\/\\/ofx.bankofamerica.com\\/cgi-forte\\/fortecgi?servicename=ofx_2-3&pagename=ofx\"}'),(51,'Wells Fargo','473',1,'{\"fid\":\"3000\",\"org\":\"WF\",\"url\":\"https:\\/\\/ofxdc.wellsfargo.com\\/ofx\\/process.ofx\"}'),(52,'LaSalle Bank NA','474',1,'{\"fid\":\"6501\",\"org\":\"LaSalle Bank NA\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/6501.ofxgp\"}'),(53,'BB&T','475',1,'{\"fid\":\"BB&T\",\"org\":\"BB&T\",\"url\":\"https:\\/\\/eftx.bbt.com\\/eftxweb\\/access.ofx\"}'),(54,'Los Alamos National Bank','476',1,'{\"fid\":\"107001012\",\"org\":\"LANB\",\"url\":\"https:\\/\\/ofx.lanb.com\\/ofx\\/ofxrelay.dll\"}'),(55,'Citadel FCU','477',1,'{\"fid\":\"citadel\",\"org\":\"CitadelFCU\",\"url\":\"https:\\/\\/pcu.citadelfcu.org\\/scripts\\/isaofx.dll\"}'),(56,'Clearview Federal Credit Union','478',1,'{\"fid\":\"243083237\",\"org\":\"Clearview Federal Credit Union\",\"url\":\"https:\\/\\/www.pcu.clearviewfcu.org\\/scripts\\/isaofx.dll\"}'),(57,'Vanguard Group, The','479',1,'{\"fid\":\"1358\",\"org\":\"The Vanguard Group\",\"url\":\"https:\\/\\/vesnc.vanguard.com\\/us\\/OfxDirectConnectServlet\"}'),(58,'First Citizens Bank - NC, VA, WV','480',1,'{\"fid\":\"5013\",\"org\":\"First Citizens Bank NC, VA, WV\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/5013.ofxgp\"}'),(59,'Northern Trust - Banking','481',1,'{\"fid\":\"5804\",\"org\":\"ORG\",\"url\":\"https:\\/\\/www3883.ntrs.com\\/nta\\/ofxservlet\"}'),(60,'The Mechanics Bank','482',1,'{\"fid\":\"121102036\",\"org\":\"TMB\",\"url\":\"https:\\/\\/ofx.mechbank.com\\/OFXServer\\/ofxsrvr.dll\"}'),(61,'USAA Federal Savings Bank','483',1,'{\"fid\":\"24591\",\"org\":\"USAA\",\"url\":\"https:\\/\\/service2.usaa.com\\/ofx\\/OFXServlet\"}'),(62,'Florida Telco CU','484',1,'{\"fid\":\"FTCU\",\"org\":\"FloridaTelcoCU\",\"url\":\"https:\\/\\/ppc.floridatelco.org\\/scripts\\/isaofx.dll\"}'),(63,'DuPont Community Credit Union','485',1,'{\"fid\":\"251483311\",\"org\":\"DuPont Community Credit Union\",\"url\":\"https:\\/\\/pcu.mydccu.com\\/scripts\\/isaofx.dll\"}'),(64,'Central Florida Educators FCU','486',1,'{\"fid\":\"590678236\",\"org\":\"CentralFloridaEduc\",\"url\":\"https:\\/\\/www.mattweb.cfefcu.com\\/scripts\\/isaofx.dll\"}'),(65,'California Bank&Trust','487',1,'{\"fid\":\"5006\",\"org\":\"401\",\"url\":\"https:\\/\\/pfm.metavante.com\\/ofx\\/OFXServlet\"}'),(66,'First Commonwealth FCU','488',1,'{\"fid\":\"231379199\",\"org\":\"FirstCommonwealthFCU\",\"url\":\"https:\\/\\/pcu.firstcomcu.org\\/scripts\\/isaofx.dll\"}'),(67,'Ameriprise Financial Services, Inc.','489',1,'{\"fid\":\"3102\",\"org\":\"AMPF\",\"url\":\"https:\\/\\/www25.ameriprise.com\\/AMPFWeb\\/ofxdl\\/us\\/download?request_type=nl_desktopdownload\"}'),(68,'AltaOne Federal Credit Union','490',1,'{\"fid\":\"322274462\",\"org\":\"AltaOneFCU\",\"url\":\"https:\\/\\/pcu.altaone.org\\/scripts\\/isaofx.dll\"}'),(69,'<NAME> and Sons, Inc.','491',1,'{\"fid\":\"43-0895447\",\"org\":\"A.<NAME>\",\"url\":\"https:\\/\\/ofx.agedwards.com\"}'),(70,'Educational Employees CU Fresno','492',1,'{\"fid\":\"321172594\",\"org\":\"Educational Employees C U\",\"url\":\"https:\\/\\/www.eecuonline.org\\/scripts\\/isaofx.dll\"}'),(71,'Hawthorne Credit Union','493',1,'{\"fid\":\"271979193\",\"org\":\"Hawthorne Credit Union\",\"url\":\"https:\\/\\/hwt.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(72,'Firstar','494',1,'{\"fid\":\"1255\",\"org\":\"Firstar\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/1255.ofxgp\"}'),(73,'myStreetscape','495',1,'{\"fid\":\"7784\",\"org\":\"Fidelity\",\"url\":\"https:\\/\\/ofx.ibgstreetscape.com:443\"}'),(74,'Collegedale Credit Union','496',1,'{\"fid\":\"35GFA\",\"org\":\"CollegedaleCU\",\"url\":\"https:\\/\\/www.netit.financial-net.com\\/ofx\"}'),(75,'GCS Federal Credit Union','498',1,'{\"fid\":\"281076853\",\"org\":\"Granite City Steel cu\",\"url\":\"https:\\/\\/pcu.mygcscu.com\\/scripts\\/isaofx.dll\"}'),(76,'Vantage Credit Union','499',1,'{\"fid\":\"281081479\",\"org\":\"EECU-St. Louis\",\"url\":\"https:\\/\\/secure2.eecu.com\\/scripts\\/isaofx.dll\"}'),(77,'Morgan Stanley ClientServ','500',1,'{\"fid\":\"1235\",\"org\":\"msdw.com\",\"url\":\"https:\\/\\/ofx.morganstanleyclientserv.com\\/ofx\\/ProfileMSMoney.ofx\"}'),(78,'Kennedy Space Center FCU','501',1,'{\"fid\":\"263179532\",\"org\":\"Kennedy Space Center FCU\",\"url\":\"https:\\/\\/www.pcu.kscfcu.org\\/scripts\\/isaofx.dll\"}'),(79,'Sierra Central Credit Union','502',1,'{\"fid\":\"321174770\",\"org\":\"Sierra Central Credit Union\",\"url\":\"https:\\/\\/www.sierracpu.com\\/scripts\\/isaofx.dll\"}'),(80,'Virginia Educators Credit Union','503',1,'{\"fid\":\"251481355\",\"org\":\"Virginia Educators CU\",\"url\":\"https:\\/\\/www.vecumoneylink.org\\/scripts\\/isaofx.dll\"}'),(81,'Red Crown Federal Credit Union','504',1,'{\"fid\":\"303986148\",\"org\":\"Red Crown FCU\",\"url\":\"https:\\/\\/cre.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(82,'B-M S Federal Credit Union','505',1,'{\"fid\":\"221277007\",\"org\":\"B-M S Federal Credit Union\",\"url\":\"https:\\/\\/bms.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(83,'Fort Stewart GeorgiaFCU','506',1,'{\"fid\":\"261271364\",\"org\":\"Fort Stewart FCU\",\"url\":\"https:\\/\\/fsg.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(84,'Northern Trust - Investments','507',1,'{\"fid\":\"6028\",\"org\":\"Northern Trust Investments\",\"url\":\"https:\\/\\/www3883.ntrs.com\\/nta\\/ofxservlet?accounttypegroup=INV\"}'),(85,'Picatinny Federal Credit Union','508',1,'{\"fid\":\"221275216\",\"org\":\"Picatinny Federal Credit Union\",\"url\":\"https:\\/\\/banking.picacreditunion.com\\/scripts\\/isaofx.dll\"}'),(86,'SAC FEDERAL CREDIT UNION','509',1,'{\"fid\":\"091901480\",\"org\":\"SAC Federal CU\",\"url\":\"https:\\/\\/pcu.sacfcu.com\\/scripts\\/isaofx.dll\"}'),(87,'Merrill Lynch&Co., Inc.','510',1,'{\"fid\":\"5550\",\"org\":\"Merrill Lynch & Co., Inc.\",\"url\":\"https:\\/\\/taxcert.mlol.ml.com\\/eftxweb\\/access.ofx\"}'),(88,'Southeastern CU','511',1,'{\"fid\":\"261271500\",\"org\":\"Southeastern FCU\",\"url\":\"https:\\/\\/moo.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(89,'Texas Dow Employees Credit Union','512',1,'{\"fid\":\"313185515\",\"org\":\"TexasDow\",\"url\":\"https:\\/\\/allthetime.tdecu.org\\/scripts\\/isaofx.dll\"}'),(90,'University Federal Credit Union','513',1,'{\"fid\":\"314977405\",\"org\":\"Univerisity FCU\",\"url\":\"https:\\/\\/OnDemand.ufcu.org\\/scripts\\/isaofx.dll\"}'),(91,'Yakima Valley Credit Union','514',1,'{\"fid\":\"325183796\",\"org\":\"Yakima Valley Credit Union\",\"url\":\"https:\\/\\/secure1.yvcu.org\\/scripts\\/isaofx.dll\"}'),(92,'First Community FCU','515',1,'{\"fid\":\"272483633\",\"org\":\"FirstCommunityFCU\",\"url\":\"https:\\/\\/pcu.1stcomm.org\\/scripts\\/isaofx.dll\"}'),(93,'Wells Fargo Advisor','516',1,'{\"fid\":\"1030\",\"org\":\"strong.com\",\"url\":\"https:\\/\\/ofx.wellsfargoadvantagefunds.com\\/eftxWeb\\/Access.ofx\"}'),(94,'Chicago Patrolmens FCU','517',1,'{\"fid\":\"271078146\",\"org\":\"Chicago Patrolmens CU\",\"url\":\"https:\\/\\/chp.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(95,'Signal Financial Federal Credit Union','518',1,'{\"fid\":\"255075495\",\"org\":\"Washington Telephone FCU\",\"url\":\"https:\\/\\/webpb.sfonline.org\\/scripts\\/isaofx.dll\"}'),(96,'Bank-Fund Staff FCU','520',1,'{\"fid\":\"2\",\"org\":\"Bank Fund Staff FCU\",\"url\":\"https:\\/\\/secure.bfsfcu.org\\/ofx\\/ofx.dll\"}'),(97,'APCO EMPLOYEES CREDIT UNION','521',1,'{\"fid\":\"262087609\",\"org\":\"APCO Employees Credit Union\",\"url\":\"https:\\/\\/apc.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(98,'Bank of Tampa, The','522',1,'{\"fid\":\"063108680\",\"org\":\"BOT\",\"url\":\"https:\\/\\/OFX.Bankoftampa.com\\/OFXServer\\/ofxsrvr.dll\"}'),(99,'Cedar Point Federal Credit Union','523',1,'{\"fid\":\"255077736\",\"org\":\"Cedar Point Federal Credit Union\",\"url\":\"https:\\/\\/pcu.cpfcu.com\\/scripts\\/isaofx.dll\"}'),(100,'Las Colinas FCU','524',1,'{\"fid\":\"311080573\",\"org\":\"Las Colinas Federal CU\",\"url\":\"https:\\/\\/las.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(101,'McCoy Federal Credit Union','525',1,'{\"fid\":\"263179956\",\"org\":\"McCoy Federal Credit Union\",\"url\":\"https:\\/\\/www.mccoydirect.org\\/scripts\\/isaofx.dll\"}'),(102,'Old National Bank','526',1,'{\"fid\":\"11638\",\"org\":\"ONB\",\"url\":\"https:\\/\\/www.ofx.oldnational.com\\/ofxpreprocess.asp\"}'),(103,'Citizens Bank - Consumer','527',1,'{\"fid\":\"CTZBK\",\"org\":\"CheckFree OFX\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/0CTZBK.ofxgp\"}'),(104,'Citizens Bank - Business','528',1,'{\"fid\":\"4639\",\"org\":\"CheckFree OFX\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/04639.ofxgp\"}'),(105,'Century Federal Credit Union','529',1,'{\"fid\":\"241075056\",\"org\":\"CenturyFederalCU\",\"url\":\"https:\\/\\/pcu.cenfedcu.org\\/scripts\\/isaofx.dll\"}'),(106,'ABNB Federal Credit Union','530',1,'{\"fid\":\"251481627\",\"org\":\"ABNB Federal Credit Union\",\"url\":\"https:\\/\\/cuathome.abnbfcu.org\\/scripts\\/isaofx.dll\"}'),(107,'Allegiance Credit Union','531',1,'{\"fid\":\"303085230\",\"org\":\"Federal Employees CU\",\"url\":\"https:\\/\\/fed.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(108,'<NAME> Congressional FCU','532',1,'{\"fid\":\"254074345\",\"org\":\"Wright Patman Congressional FCU\",\"url\":\"https:\\/\\/www.congressionalonline.org\\/scripts\\/isaofx.dll\"}'),(109,'America First Credit Union','533',1,'{\"fid\":\"54324\",\"org\":\"America First Credit Union\",\"url\":\"https:\\/\\/ofx.americafirst.com\"}'),(110,'Motorola Employees Credit Union','534',1,'{\"fid\":\"271984311\",\"org\":\"Motorola Employees CU\",\"url\":\"https:\\/\\/mecuofx.mecunet.org\\/scripts\\/isaofx.dll\"}'),(111,'Finance Center FCU (IN)','535',1,'{\"fid\":\"274073876\",\"org\":\"Finance Center FCU\",\"url\":\"https:\\/\\/sec.fcfcu.com\\/scripts\\/isaofx.dll\"}'),(112,'Fort Knox Federal Credit Union','536',1,'{\"fid\":\"283978425\",\"org\":\"Fort Knox Federal Credit Union\",\"url\":\"https:\\/\\/fcs1.fkfcu.org\\/scripts\\/isaofx.dll\"}'),(113,'Wachovia Bank','537',1,'{\"fid\":\"4309\",\"org\":\"Wachovia\",\"url\":\"https:\\/\\/pfmpw.wachovia.com\\/cgi-forte\\/fortecgi?servicename=ofx&pagename=PFM\"}'),(114,'Think Federal Credit Union','538',1,'{\"fid\":\"291975465\",\"org\":\"IBMCU\",\"url\":\"https:\\/\\/ofx.ibmcu.com\"}'),(115,'PSECU','539',1,'{\"fid\":\"54354\",\"org\":\"Teknowledge\",\"url\":\"https:\\/\\/ofx.psecu.com\\/servlet\\/OFXServlet\"}'),(116,'Envision Credit Union','540',1,'{\"fid\":\"263182558\",\"org\":\"Envision Credit Union\",\"url\":\"https:\\/\\/pcu.envisioncu.com\\/scripts\\/isaofx.dll\"}'),(117,'Columbia Credit Union','541',1,'{\"fid\":\"323383349\",\"org\":\"Columbia Credit Union\",\"url\":\"https:\\/\\/ofx.columbiacu.org\\/scripts\\/isaofx.dll\"}'),(118,'1st Advantage FCU','542',1,'{\"fid\":\"251480563\",\"org\":\"1st Advantage FCU\",\"url\":\"https:\\/\\/members.1stadvantage.org\\/scripts\\/isaofx.dll\"}'),(119,'Central Maine FCU','543',1,'{\"fid\":\"211287926\",\"org\":\"Central Maine FCU\",\"url\":\"https:\\/\\/cro.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(120,'Kirtland Federal Credit Union','544',1,'{\"fid\":\"307070050\",\"org\":\"Kirtland Federal Credit Union\",\"url\":\"https:\\/\\/pcu.kirtlandfcu.org\\/scripts\\/isaofx.dll\"}'),(121,'Chesterfield Federal Credit Union','545',1,'{\"fid\":\"251480327\",\"org\":\"Chesterfield Employees FCU\",\"url\":\"https:\\/\\/chf.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(122,'Campus USA Credit Union','546',1,'{\"fid\":\"263178478\",\"org\":\"Campus USA Credit Union\",\"url\":\"https:\\/\\/que.campuscu.com\\/scripts\\/isaofx.dll\"}'),(123,'Summit Credit Union (WI)','547',1,'{\"fid\":\"275979034\",\"org\":\"Summit Credit Union\",\"url\":\"https:\\/\\/branch.summitcreditunion.com\\/scripts\\/isaofx.dll\"}'),(124,'Financial Center CU','548',1,'{\"fid\":\"321177803\",\"org\":\"Fincancial Center Credit Union\",\"url\":\"https:\\/\\/fin.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(125,'Hawaiian Tel Federal Credit Union','549',1,'{\"fid\":\"321379070\",\"org\":\"Hawaiian Tel FCU\",\"url\":\"https:\\/\\/htl.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(126,'Addison Avenue Federal Credit Union','550',1,'{\"fid\":\"11288\",\"org\":\"hpcu\",\"url\":\"https:\\/\\/ofx.addisonavenue.com\"}'),(127,'Navy Army Federal Credit Union','551',1,'{\"fid\":\"111904503\",\"org\":\"Navy Army Federal Credit Union\",\"url\":\"https:\\/\\/mybranch.navyarmyfcu.com\\/scripts\\/isaofx.dll\"}'),(128,'Nevada Federal Credit Union','552',1,'{\"fid\":\"10888\",\"org\":\"PSI\",\"url\":\"https:\\/\\/ssl4.nevadafederal.org\\/ofxdirect\\/ofxrqst.aspx\"}'),(129,'66 Federal Credit Union','553',1,'{\"fid\":\"289\",\"org\":\"SixySix\",\"url\":\"https:\\/\\/ofx.cuonlineaccounts.org\"}'),(130,'FirstBank of Colorado','554',1,'{\"fid\":\"FirstBank\",\"org\":\"FBDC\",\"url\":\"https:\\/\\/www.efirstbankpfm.com\\/ofx\\/OFXServlet\"}'),(131,'Continental Federal Credit Union','555',1,'{\"fid\":\"322077559\",\"org\":\"Continenetal FCU\",\"url\":\"https:\\/\\/cnt.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(132,'Fremont Bank','556',1,'{\"fid\":\"121107882\",\"org\":\"Fremont Bank\",\"url\":\"https:\\/\\/ofx.fremontbank.com\\/OFXServer\\/FBOFXSrvr.dll\"}'),(133,'Peninsula Community Federal Credit Union','557',1,'{\"fid\":\"325182344\",\"org\":\"Peninsula Credit Union\",\"url\":\"https:\\/\\/mas.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(134,'Fidelity NetBenefits','558',1,'{\"fid\":\"8288\",\"org\":\"nbofx.fidelity.com\",\"url\":\"https:\\/\\/nbofx.fidelity.com\\/netbenefits\\/ofx\\/download\"}'),(135,'Fall River Municipal CU','559',1,'{\"fid\":\"211382591\",\"org\":\"Fall River Municipal CU\",\"url\":\"https:\\/\\/fal.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(136,'University Credit Union','560',1,'{\"fid\":\"267077850\",\"org\":\"University Credit Union\",\"url\":\"https:\\/\\/umc.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(137,'Dominion Credit Union','561',1,'{\"fid\":\"251082644\",\"org\":\"Dominion Credit Union\",\"url\":\"https:\\/\\/dom.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(138,'HFS Federal Credit Union','562',1,'{\"fid\":\"321378660\",\"org\":\"HFS Federal Credit Union\",\"url\":\"https:\\/\\/hfs.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(139,'IronStone Bank','563',1,'{\"fid\":\"5012\",\"org\":\"Atlantic States Bank\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/5012.ofxgp\"}'),(140,'Utah Community Credit Union','564',1,'{\"fid\":\"324377820\",\"org\":\"Utah Community Credit Union\",\"url\":\"https:\\/\\/ofx.uccu.com\\/scripts\\/isaofx.dll\"}'),(141,'OptionsXpress, Inc','565',1,'{\"fid\":\"10876\",\"org\":\"10876\",\"url\":\"https:\\/\\/ofx.optionsxpress.com\\/cgi-bin\\/ox.exe\"}'),(142,'Prudential Retirement','567',1,'{\"fid\":\"1271\",\"org\":\"Prudential Retirement Services\",\"url\":\"https:\\/\\/ofx.prudential.com\\/eftxweb\\/EFTXWebRedirector\"}'),(143,'Wells Fargo Investments, LLC','568',1,'{\"fid\":\"10762\",\"org\":\"wellsfargo.com\",\"url\":\"https:\\/\\/invmnt.wellsfargo.com\\/inv\\/directConnect\"}'),(144,'Penson Financial Services','570',1,'{\"fid\":\"10780\",\"org\":\"Penson Financial Services Inc\",\"url\":\"https:\\/\\/ofx.penson.com\"}'),(145,'Tri Boro Federal Credit Union','571',1,'{\"fid\":\"243382747\",\"org\":\"Tri Boro Federal Credit Union\",\"url\":\"https:\\/\\/tri.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(146,'Hewitt Associates LLC','572',1,'{\"fid\":\"242\",\"org\":\"hewitt.com\",\"url\":\"https:\\/\\/seven.was.hewitt.com\\/eftxweb\\/access.ofx\"}'),(147,'Delta Community Credit Union','573',1,'{\"fid\":\"3328\",\"org\":\"decu.org\",\"url\":\"https:\\/\\/appweb.deltacommunitycu.com\\/ofxroot\\/directtocore.asp\"}'),(148,'Huntington National Bank','574',1,'{\"fid\":\"3701\",\"org\":\"Huntington\",\"url\":\"https:\\/\\/onlinebanking.huntington.com\\/scripts\\/serverext.dll\"}'),(149,'WSECU','575',1,'{\"fid\":\"325181028\",\"org\":\"WSECU\",\"url\":\"https:\\/\\/ssl3.wsecu.org\\/ofxserver\\/ofxsrvr.dll\"}'),(150,'Baton Rouge City Parish Emp FCU','576',1,'{\"fid\":\"265473333\",\"org\":\"Baton Rouge City Parish EFCU\",\"url\":\"https:\\/\\/bat.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(151,'Schools Financial Credit Union','577',1,'{\"fid\":\"90001\",\"org\":\"Teknowledge\",\"url\":\"https:\\/\\/ofx.schools.org\\/TekPortalOFX\\/servlet\\/TP_OFX_Controller\"}'),(152,'Charles Schwab Bank, N.A.','578',1,'{\"fid\":\"101\",\"org\":\"ISC\",\"url\":\"https:\\/\\/ofx.schwab.com\\/bankcgi_dev\\/ofx_server\"}'),(153,'NW Preferred Federal Credit Union','579',1,'{\"fid\":\"323076575\",\"org\":\"NW Preferred FCU\",\"url\":\"https:\\/\\/nwf.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(154,'Camino FCU','580',1,'{\"fid\":\"322279975\",\"org\":\"Camino FCU\",\"url\":\"https:\\/\\/homebanking.caminofcu.org\\/isaofx\\/isaofx.dll\"}'),(155,'Novartis Federal Credit Union','581',1,'{\"fid\":\"221278556\",\"org\":\"Novartis FCU\",\"url\":\"https:\\/\\/cib.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(156,'U.S. First FCU','582',1,'{\"fid\":\"321076289\",\"org\":\"US First FCU\",\"url\":\"https:\\/\\/uff.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(157,'FAA Technical Center FCU','583',1,'{\"fid\":\"231277440\",\"org\":\"FAA Technical Center FCU\",\"url\":\"https:\\/\\/ftc.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(158,'Municipal Employees Credit Union of Baltimore, Inc.','584',1,'{\"fid\":\"252076468\",\"org\":\"Municipal ECU of Baltimore,Inc.\",\"url\":\"https:\\/\\/mec.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(159,'Day Air Credit Union','585',1,'{\"fid\":\"242277808\",\"org\":\"Day Air Credit Union\",\"url\":\"https:\\/\\/pcu.dayair.org\\/scripts\\/isaofx.dll\"}'),(160,'Texas State Bank - McAllen','586',1,'{\"fid\":\"114909013\",\"org\":\"Texas State Bank\",\"url\":\"https:\\/\\/www.tsb-a.com\\/OFXServer\\/ofxsrvr.dll\"}'),(161,'OCTFCU','587',1,'{\"fid\":\"17600\",\"org\":\"OCTFCU\",\"url\":\"https:\\/\\/ofx.octfcu.org\"}'),(162,'Hawaii State FCU','588',1,'{\"fid\":\"321379041\",\"org\":\"Hawaii State FCU\",\"url\":\"https:\\/\\/hse.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(163,'Community First Credit Union','592',1,'{\"fid\":\"275982801\",\"org\":\"Community First Credit Union\",\"url\":\"https:\\/\\/pcu.communityfirstcu.org\\/scripts\\/isaofx.dll\"}'),(164,'MTC Federal Credit Union','593',1,'{\"fid\":\"053285173\",\"org\":\"MTC Federal Credit Union\",\"url\":\"https:\\/\\/mic.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(165,'Home Federal Savings Bank(MN/IA)','594',1,'{\"fid\":\"291270050\",\"org\":\"VOneTwentySevenG\",\"url\":\"https:\\/\\/ofx1.evault.ws\\/ofxserver\\/ofxsrvr.dll\"}'),(166,'Reliant Community Credit Union','595',1,'{\"fid\":\"222382438\",\"org\":\"W.C.T.A Federal Credit Union\",\"url\":\"https:\\/\\/wct.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(167,'Patriots Federal Credit Union','596',1,'{\"fid\":\"322281963\",\"org\":\"PAT FCU\",\"url\":\"https:\\/\\/pat.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(168,'SafeAmerica Credit Union','597',1,'{\"fid\":\"321171757\",\"org\":\"SafeAmerica Credit Union\",\"url\":\"https:\\/\\/saf.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(169,'Mayo Employees Federal Credit Union','598',1,'{\"fid\":\"291975478\",\"org\":\"Mayo Employees FCU\",\"url\":\"https:\\/\\/homebank.mayocreditunion.org\\/ofx\\/ofx.dll\"}'),(170,'FivePoint Credit Union','599',1,'{\"fid\":\"313187571\",\"org\":\"FivePoint Credit Union\",\"url\":\"https:\\/\\/tfcu-nfuse01.texacocommunity.org\\/internetconnector\\/isaofx.dll\"}'),(171,'Community Resource Bank','600',1,'{\"fid\":\"091917160\",\"org\":\"CNB\",\"url\":\"https:\\/\\/www.cnbinternet.com\\/OFXServer\\/ofxsrvr.dll\"}'),(172,'Security 1st FCU','601',1,'{\"fid\":\"314986292\",\"org\":\"Security 1st FCU\",\"url\":\"https:\\/\\/sec.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(173,'First Alliance Credit Union','602',1,'{\"fid\":\"291975481\",\"org\":\"First Alliance Credit Union\",\"url\":\"https:\\/\\/fia.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(174,'Billings Federal Credit Union','603',1,'{\"fid\":\"6217\",\"org\":\"Billings Federal Credit Union\",\"url\":\"https:\\/\\/bfcuonline.billingsfcu.org\\/ofx\\/ofx.dll\"}'),(175,'Windward Community FCU','604',1,'{\"fid\":\"321380315\",\"org\":\"Windward Community FCU\",\"url\":\"https:\\/\\/wwc.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(176,'Siouxland Federal Credit Union','606',1,'{\"fid\":\"304982235\",\"org\":\"SIOUXLAND FCU\",\"url\":\"https:\\/\\/sio.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(177,'The Queen\'s Federal Credit Union','607',1,'{\"fid\":\"321379504\",\"org\":\"The Queens Federal Credit Union\",\"url\":\"https:\\/\\/que.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(178,'<NAME>','608',1,'{\"fid\":\"823\",\"org\":\"Edward Jones\",\"url\":\"https:\\/\\/ofx.edwardjones.com\"}'),(179,'Merck Sharp&Dohme FCU','609',1,'{\"fid\":\"231386645\",\"org\":\"MERCK, SHARPE&DOHME FCU\",\"url\":\"https:\\/\\/msd.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(180,'Credit Union 1 - IL','610',1,'{\"fid\":\"271188081\",\"org\":\"Credit Union 1\",\"url\":\"https:\\/\\/pcu.creditunion1.org\\/scripts\\/isaofx.dll\"}'),(181,'Bossier Federal Credit Union','611',1,'{\"fid\":\"311175129\",\"org\":\"Bossier Federal Credit Union\",\"url\":\"https:\\/\\/bos.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(182,'First Florida Credit Union','612',1,'{\"fid\":\"263079014\",\"org\":\"First Llorida Credit Union\",\"url\":\"https:\\/\\/pcu2.gecuf.org\\/scripts\\/isaofx.dll\"}'),(183,'NorthEast Alliance FCU','613',1,'{\"fid\":\"221982130\",\"org\":\"NorthEast Alliance FCU\",\"url\":\"https:\\/\\/nea.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(184,'ShareBuilder','614',1,'{\"fid\":\"5575\",\"org\":\"ShareBuilder\",\"url\":\"https:\\/\\/ofx.sharebuilder.com\"}'),(185,'Weitz Funds','616',1,'{\"fid\":\"weitz.com\",\"org\":\"weitz.com\",\"url\":\"https:\\/\\/www3.financialtrans.com\\/tf\\/OFXServer?tx=OFXController&cz=702110804131918&cl=52204081925\"}'),(186,'JPMorgan Retirement Plan Services','617',1,'{\"fid\":\"6313\",\"org\":\"JPMORGAN\",\"url\":\"https:\\/\\/ofx.retireonline.com\\/eftxweb\\/access.ofx\"}'),(187,'Credit Union ONE','618',1,'{\"fid\":\"14412\",\"org\":\"Credit Union ONE\",\"url\":\"https:\\/\\/cuhome.cuone.org\\/ofx\\/ofx.dll\"}'),(188,'Salt Lake City Credit Union','619',1,'{\"fid\":\"324079186\",\"org\":\"Salt Lake City Credit Union\",\"url\":\"https:\\/\\/slc.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(189,'First Southwest Company','620',1,'{\"fid\":\"7048\",\"org\":\"AFS\",\"url\":\"https:\\/\\/fswofx.automatedfinancial.com\"}'),(190,'Wells Fargo Trust-Investment Mgt','622',1,'{\"fid\":\"6955\",\"org\":\"Wells Fargo Trust\",\"url\":\"https:\\/\\/trust.wellsfargo.com\\/trust\\/directConnect\"}'),(191,'Scottrade, Inc.','623',1,'{\"fid\":\"777\",\"org\":\"Scottrade\",\"url\":\"https:\\/\\/ofxstl.scottsave.com\"}'),(192,'Silver State Schools CU','624',1,'{\"fid\":\"322484265\",\"org\":\"SSSCU\",\"url\":\"https:\\/\\/www.silverstatecu.com\\/OFXServer\\/ofxsrvr.dll\"}'),(193,'VISA Information Source','626',1,'{\"fid\":\"10942\",\"org\":\"VISA\",\"url\":\"https:\\/\\/vis.informationmanagement.visa.com\\/eftxweb\\/access.ofx\"}'),(194,'National City','627',1,'{\"fid\":\"5860\",\"org\":\"NATIONAL CITY\",\"url\":\"https:\\/\\/ofx.nationalcity.com\\/ofx\\/OFXConsumer.aspx\"}'),(195,'Capital One','628',1,'{\"fid\":\"1001\",\"org\":\"Hibernia\",\"url\":\"https:\\/\\/onlinebanking.capitalone.com\\/scripts\\/serverext.dll\"}'),(196,'Citi Credit Card','629',1,'{\"fid\":\"24909\",\"org\":\"Citigroup\",\"url\":\"https:\\/\\/www.accountonline.com\\/cards\\/svc\\/CitiOfxManager.do\"}'),(197,'Zions Bank','630',1,'{\"fid\":\"1115\",\"org\":\"244-3\",\"url\":\"https:\\/\\/quicken.metavante.com\\/ofx\\/OFXServlet\"}'),(198,'Capital One Bank','631',1,'{\"fid\":\"1001\",\"org\":\"Hibernia\",\"url\":\"https:\\/\\/onlinebanking.capitalone.com\\/scripts\\/serverext.dll\"}'),(199,'Redstone Federal Credit Union','633',1,'{\"fid\":\"2143\",\"org\":\"Harland Financial Solutions\",\"url\":\"https:\\/\\/remotebanking.redfcu.org\\/ofx\\/ofx.dll\"}'),(200,'PNC Bank','634',1,'{\"fid\":\"4501\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/04501.ofx\"}'),(201,'Bank of America (California)','635',1,'{\"fid\":\"6805\",\"org\":\"HAN\",\"url\":\"https:\\/\\/ofx.bankofamerica.com\\/cgi-forte\\/ofx?servicename=ofx_2-3&pagename=bofa\"}'),(202,'Chase (credit card) ','636',1,'{\"fid\":\"10898\",\"org\":\"B1\",\"url\":\"https:\\/\\/ofx.chase.com\"}'),(203,'Arizona Federal Credit Union','637',1,'{\"fid\":\"322172797\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(204,'UW Credit Union','638',1,'{\"fid\":\"1001\",\"org\":\"UWCU\",\"url\":\"https:\\/\\/ofx.uwcu.org\\/serverext.dll\"}'),(205,'Bank of America','639',1,'{\"fid\":\"5959\",\"org\":\"HAN\",\"url\":\"https:\\/\\/eftx.bankofamerica.com\\/eftxweb\\/access.ofx\"}'),(206,'Commerce Bank','640',1,'{\"fid\":\"1001\",\"org\":\"CommerceBank\",\"url\":\"https:\\/\\/ofx.tdbank.com\\/scripts\\/serverext.dll\"}'),(207,'Securities America','641',1,'{\"fid\":\"7784\",\"org\":\"Fidelity\",\"url\":\"https:\\/\\/ofx.ibgstreetscape.com:443\"}'),(208,'First Internet Bank of Indiana','642',1,'{\"fid\":\"074014187\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(209,'Alpine Banks of Colorado','643',1,'{\"fid\":\"1451\",\"org\":\"JackHenry\",\"url\":\"https:\\/\\/directline.netteller.com\"}'),(210,'BancFirst','644',1,'{\"fid\":\"103003632\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(211,'Desert Schools Federal Credit Union','645',1,'{\"fid\":\"1001\",\"org\":\"DSFCU\",\"url\":\"https:\\/\\/epal.desertschools.org\\/scripts\\/serverext.dll\"}'),(212,'Kinecta Federal Credit Union','646',1,'{\"fid\":\"322278073\",\"org\":\"KINECTA\",\"url\":\"https:\\/\\/ofx.kinecta.org\\/OFXServer\\/ofxsrvr.dll\"}'),(213,'Boeing Employees Credit Union','647',1,'{\"fid\":\"1001\",\"org\":\"becu\",\"url\":\"https:\\/\\/www.becuonlinebanking.org\\/scripts\\/serverext.dll\"}'),(214,'Capital One Bank - 2','648',1,'{\"fid\":\"1001\",\"org\":\"Hibernia\",\"url\":\"https:\\/\\/onlinebanking.capitalone.com\\/ofx\\/process.ofx\"}'),(215,'Michigan State University Federal CU','649',1,'{\"fid\":\"272479663\",\"org\":\"MSUFCU\",\"url\":\"https:\\/\\/ofx.msufcu.org\\/ofxserver\\/ofxsrvr.dll\"}'),(216,'The Community Bank','650',1,'{\"fid\":\"211371476\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(217,'Sacramento Credit Union','651',1,'{\"fid\":\"1\",\"org\":\"SACRAMENTO CREDIT UNION\",\"url\":\"https:\\/\\/homebank.sactocu.org\\/ofx\\/ofx.dll\"}'),(218,'TD Bank','652',1,'{\"fid\":\"1001\",\"org\":\"CommerceBank\",\"url\":\"https:\\/\\/onlinebanking.tdbank.com\\/scripts\\/serverext.dll\"}'),(219,'Suncoast Schools FCU','653',1,'{\"fid\":\"1001\",\"org\":\"SunCoast\",\"url\":\"https:\\/\\/ofx.suncoastfcu.org\"}'),(220,'Metro Bank','654',1,'{\"fid\":\"9970\",\"org\":\"MTRO\",\"url\":\"https:\\/\\/ofx.mymetrobank.com\\/ofx\\/ofx.ofx\"}'),(221,'First National Bank (Texas)','655',1,'{\"fid\":\"12840\",\"org\":\"JackHenry\",\"url\":\"https:\\/\\/directline.netteller.com\"}'),(222,'Bank of the West','656',1,'{\"fid\":\"5809\",\"org\":\"BancWest Corp\",\"url\":\"https:\\/\\/olbp.bankofthewest.com\\/ofx0002\\/ofx_isapi.dll\"}'),(223,'Mountain America Credit Union','657',1,'{\"fid\":\"324079555\",\"org\":\"MACU\",\"url\":\"https:\\/\\/ofx.macu.org\\/OFXServer\\/ofxsrvr.dll\"}'),(224,'ING DIRECT','658',1,'{\"fid\":\"031176110\",\"org\":\"ING DIRECT\",\"url\":\"https:\\/\\/ofx.ingdirect.com\\/OFX\\/ofx.html\"}'),(225,'Santa Barbara Bank & Trust','659',1,'{\"fid\":\"5524\",\"org\":\"pfm-l3g\",\"url\":\"https:\\/\\/pfm.metavante.com\\/ofx\\/OFXServlet\"}'),(226,'UMB','660',1,'{\"fid\":\"468\",\"org\":\"UMBOFX\",\"url\":\"https:\\/\\/ofx.umb.com\"}'),(227,'Bank Of America(All except CA,WA,&ID ','661',1,'{\"fid\":\"6812\",\"org\":\"HAN\",\"url\":\"Https:\\/\\/ofx.bankofamerica.com\\/cgi-forte\\/fortecgi?servicename=ofx_2-3&pagename=ofx \"}'),(228,'Centra Credit Union2','662',1,'{\"fid\":\"274972883\",\"org\":\"Centra CU\",\"url\":\"https:\\/\\/www.centralink.org\\/scripts\\/isaofx.dll\"}'),(229,'Mainline National Bank','663',1,'{\"fid\":\"9869\",\"org\":\"JackHenry\",\"url\":\"https:\\/\\/directline.netteller.com\"}'),(230,'Citizens Bank','664',1,'{\"fid\":\"4639\",\"org\":\"CheckFree OFX\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/04639.ofxgp\"}'),(231,'USAA Investment Mgmt Co','665',1,'{\"fid\":\"24592\",\"org\":\"USAA\",\"url\":\"https:\\/\\/service2.usaa.com\\/ofx\\/OFXServlet\"}'),(232,'121 Financial Credit Union','666',1,'{\"fid\":\"000001155\",\"org\":\"121 Financial Credit Union\",\"url\":\"https:\\/\\/ppc.121fcu.org\\/scripts\\/isaofx.dll\"}'),(233,'Abbott Laboratories Employee CU','667',1,'{\"fid\":\"35MXN\",\"org\":\"Abbott Laboratories ECU - ALEC\",\"url\":\"https:\\/\\/www.netit.financial-net.com\\/ofx\\/\"}'),(234,'Achieva Credit Union','668',1,'{\"fid\":\"4491\",\"org\":\"Achieva Credit Union\",\"url\":\"https:\\/\\/rbserver.achievacu.com\\/ofx\\/ofx.dll\"}'),(235,'American National Bank','669',1,'{\"fid\":\"4201\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/04201.ofx\"}'),(236,'Andrews Federal Credit Union','670',1,'{\"fid\":\"AFCUSMD\",\"org\":\"FundsXpress\",\"url\":\"https:\\/\\/ofx.fundsxpress.com\\/piles\\/ofx.pile\\/\"}'),(237,'Citi Personal Wealth Management','671',1,'{\"fid\":\"060\",\"org\":\"Citigroup\",\"url\":\"https:\\/\\/uat-ofx.netxclient.inautix.com\\/cgi\\/OFXNetx\"}'),(238,'Bank One (Chicago)','672',1,'{\"fid\":\"1501\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/01501.ofx\"}'),(239,'Bank One (Michigan and Florida)','673',1,'{\"fid\":\"6001\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/06001.ofx\"}'),(240,'Bank of America (Formerly Fleet)','674',1,'{\"fid\":\"1803\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/01803.ofx\"}'),(241,'BankBoston PC Banking','675',1,'{\"fid\":\"1801\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/01801.ofx\"}'),(242,'Beverly Co-Operative Bank','676',1,'{\"fid\":\"531\",\"org\":\"orcc\",\"url\":\"https:\\/\\/www19.onlinebank.com\\/OROFX16Listener\"}'),(243,'Cambridge Portuguese Credit Union','677',1,'{\"fid\":\"983\",\"org\":\"orcc\",\"url\":\"https:\\/\\/www20.onlinebank.com\\/OROFX16Listener\"}'),(244,'Citibank','678',1,'{\"fid\":\"2101\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/02101.ofx\"}'),(245,'Community Bank, N.A.','679',1,'{\"fid\":\"11517\",\"org\":\"JackHenry\",\"url\":\"https:\\/\\/directline2.netteller.com\"}'),(246,'Consumers Credit Union','680',1,'{\"fid\":\"12541\",\"org\":\"Consumers Credit Union\",\"url\":\"https:\\/\\/ofx.lanxtra.com\\/ofx\\/servlet\\/Teller\"}'),(247,'CPM Federal Credit Union','681',1,'{\"fid\":\"253279536\",\"org\":\"USERS, Inc.\",\"url\":\"https:\\/\\/cpm.usersonlnet.com\\/scripts\\/isaofx.dll\"}'),(248,'DATCU','682',1,'{\"fid\":\"311980725\",\"org\":\"DATCU\",\"url\":\"https:\\/\\/online.datcu.coop\\/ofxserver\\/ofxsrvr.dll\"}'),(249,'Denver Community Federal Credit Union','683',1,'{\"fid\":\"10524\",\"org\":\"Denver Community FCU\",\"url\":\"https:\\/\\/pccu.dcfcu.coop\\/ofx\\/ofx.dll\"}'),(250,'Discover Platinum','684',1,'{\"fid\":\"7102\",\"org\":\"Discover Financial Services\",\"url\":\"https:\\/\\/ofx.discovercard.com\\/\"}'),(251,'EAB','685',1,'{\"fid\":\"6505\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/06505.ofx\"}'),(252,'FAA Credit Union','686',1,'{\"fid\":\"114\",\"org\":\"FAA Credit Union\",\"url\":\"https:\\/\\/flightline.faaecu.org\\/ofx\\/ofx.dll\"}'),(253,'Fairwinds Credit Union','687',1,'{\"fid\":\"4842\",\"org\":\"OSI 2\",\"url\":\"https:\\/\\/OFX.opensolutionsTOC.com\\/eftxweb\\/access.ofx\"}'),(254,'FedChoice FCU','688',1,'{\"fid\":\"254074785\",\"org\":\"FEDCHOICE\",\"url\":\"https:\\/\\/ofx.fedchoice.org\\/ofxserver\\/ofxsrvr.dll\"}'),(255,'First Clearing, LLC','689',1,'{\"fid\":\"10033\",\"org\":\"First Clearing, LLC\",\"url\":\"https:\\/\\/pfmpw.wachovia.com\\/cgi-forte\\/fortecgi?servicename=ofxbrk&pagename=PFM\"}'),(256,'First Citizens','690',1,'{\"fid\":\"1849\",\"org\":\"First Citizens\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/01849.ofx\"}'),(257,'First Hawaiian Bank','691',1,'{\"fid\":\"3501\",\"org\":\"BancWest Corp\",\"url\":\"https:\\/\\/olbp.fhb.com\\/ofx0001\\/ofx_isapi.dll\"}'),(258,'First National Bank of St. Louis','692',1,'{\"fid\":\"162\",\"org\":\"81004601\",\"url\":\"https:\\/\\/ofx.centralbancompany.com\\/ofxserver\\/ofxsrvr.dll\"}'),(259,'First Interstate Bank','693',1,'{\"fid\":\"092901683\",\"org\":\"FIB\",\"url\":\"https:\\/\\/ofx.firstinterstatebank.com\\/OFXServer\\/ofxsrvr.dll\"}'),(260,'<NAME>','694',1,'{\"fid\":\"1234\",\"org\":\"gs.com\",\"url\":\"https:\\/\\/portfolio-ofx.gs.com:446\\/ofx\\/ofx.eftx\"}'),(261,'Hudson Valley FCU','695',1,'{\"fid\":\"10767\",\"org\":\"Hudson Valley FCU\",\"url\":\"https:\\/\\/internetbanking.hvfcu.org\\/ofx\\/ofx.dll\"}'),(262,'IBM Southeast Employees Federal Credit Union','696',1,'{\"fid\":\"1779\",\"org\":\"IBM Southeast EFCU\",\"url\":\"https:\\/\\/rb.ibmsecu.org\\/ofx\\/ofx.dll\"}'),(263,'Insight CU','697',1,'{\"fid\":\"10764\",\"org\":\"Insight Credit Union\",\"url\":\"https:\\/\\/secure.insightcreditunion.com\\/ofx\\/ofx.dll\"}'),(264,'<NAME> LLC','698',1,'{\"fid\":\"11326\",\"org\":\"AFS\",\"url\":\"https:\\/\\/jmsofx.automatedfinancial.com\"}'),(265,'JSC Federal Credit Union','699',1,'{\"fid\":\"10491\",\"org\":\"JSC Federal Credit Union\",\"url\":\"https:\\/\\/starpclegacy.jscfcu.org\\/ofx\\/ofx.dll\"}'),(266,'<NAME>','700',1,'{\"fid\":\"4701\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/04701.ofx\"}'),(267,'<NAME> Clearing Corp.','701',1,'{\"fid\":\"7315\",\"org\":\"GCS\",\"url\":\"https:\\/\\/ofxgcs.toolkit.clearco.com\"}'),(268,'M & T Bank','702',1,'{\"fid\":\"2601\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/02601.ofx\"}'),(269,'Marquette Banks','703',1,'{\"fid\":\"1301\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/01301.ofx\"}'),(270,'Mercer','704',1,'{\"fid\":\"8007527525\",\"org\":\"PutnamDefinedContributions\",\"url\":\"https:\\/\\/ofx.mercerhrs.com\\/eftxweb\\/access.ofx\"}'),(271,'<NAME>ynch Online Payment','705',1,'{\"fid\":\"7301\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/07301.ofx\"}'),(272,'Missoula Federal Credit Union','706',1,'{\"fid\":\"5097\",\"org\":\"Missoula Federal Credit Union\",\"url\":\"https:\\/\\/secure.missoulafcu.org\\/ofx\\/ofx.dll\"}'),(273,'<NAME> (<NAME>)','707',1,'{\"fid\":\"5207\",\"org\":\"Smithbarney.com\",\"url\":\"https:\\/\\/ofx.smithbarney.com\\/app-bin\\/ofx\\/servlets\\/access.ofx\"}'),(274,'Nevada State Bank - OLD','708',1,'{\"fid\":\"5401\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/05401.ofx\"}'),(275,'New England Federal Credit Union','709',1,'{\"fid\":\"2104\",\"org\":\"New England Federal Credit Union\",\"url\":\"https:\\/\\/pcaccess.nefcu.com\\/ofx\\/ofx.dll\"}'),(276,'Norwest','710',1,'{\"fid\":\"4601\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/04601.ofx\"}'),(277,'Oppenheimer & Co. Inc.','711',1,'{\"fid\":\"125\",\"org\":\"Oppenheimer\",\"url\":\"https:\\/\\/ofx.opco.com\\/eftxweb\\/access.ofx\"}'),(278,'Oregon College Savings Plan','712',1,'{\"fid\":\"51498\",\"org\":\"tiaaoregon\",\"url\":\"https:\\/\\/ofx3.financialtrans.com\\/tf\\/OFXServer?tx=OFXController&cz=702110804131918&cl=b1908000027141704061413\"}'),(279,'<NAME>','713',1,'{\"fid\":\"8035\",\"org\":\"RBC Dain Rauscher\",\"url\":\"https:\\/\\/ofx.rbcdain.com\\/\"}'),(280,'<NAME> & Co.','714',1,'{\"fid\":\"1109\",\"org\":\"Robert W. Baird & Co.\",\"url\":\"https:\\/\\/ofx.rwbaird.com\"}'),(281,'Sears Card','715',1,'{\"fid\":\"26810\",\"org\":\"CITIGROUP\",\"url\":\"https:\\/\\/secureofx.bankhost.com\\/tuxofx\\/cgi-bin\\/cgi_chip\"}'),(282,'South Trust Bank','716',1,'{\"fid\":\"6101\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/06101.ofx\"}'),(283,'Standard Federal Bank','717',1,'{\"fid\":\"6507\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/06507.ofx\"}'),(284,'United California Bank','718',1,'{\"fid\":\"2701\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/fip\\/genesis\\/prod\\/02701.ofx\"}'),(285,'United Federal CU - PowerLink','719',1,'{\"fid\":\"1908\",\"org\":\"United Federal Credit Union\",\"url\":\"https:\\/\\/remotebanking.unitedfcu.com\\/ofx\\/ofx.dll\"}'),(286,'VALIC','720',1,'{\"fid\":\"77019\",\"org\":\"valic.com\",\"url\":\"https:\\/\\/ofx.valic.com\\/eftxweb\\/access.ofx\"}'),(287,'Van Kampen Funds, Inc.','721',1,'{\"fid\":\"3625\",\"org\":\"Van Kampen Funds, Inc.\",\"url\":\"https:\\/\\/ofx3.financialtrans.com\\/tf\\/OFXServer?tx=OFXController&cz=702110804131918&cl=9210013100012150413\"}'),(288,'Vanguard Group','722',1,'{\"fid\":\"1358\",\"org\":\"The Vanguard Group\",\"url\":\"https:\\/\\/vesnc.vanguard.com\\/us\\/OfxProfileServlet\"}'),(289,'Velocity Credit Union','723',1,'{\"fid\":\"9909\",\"org\":\"Velocity Credit Union\",\"url\":\"https:\\/\\/rbserver.velocitycu.com\\/ofx\\/ofx.dll\"}'),(290,'Waddell & Reed - Ivy Funds','724',1,'{\"fid\":\"49623\",\"org\":\"waddell\",\"url\":\"https:\\/\\/ofx3.financialtrans.com\\/tf\\/OFXServer?tx=OFXController&cz=702110804131918&cl=722000303041111\"}'),(291,'Umpqua Bank','725',1,'{\"fid\":\"1001\",\"org\":\"Umpqua\",\"url\":\"https:\\/\\/ofx.umpquabank.com\\/ofx\\/process.ofx\"}'),(292,'Discover Bank','726',1,'{\"fid\":\"12610\",\"org\":\"Discover Bank\",\"url\":\"https:\\/\\/ofx.discovercard.com\"}'),(293,'Elevations Credit Union','727',1,'{\"fid\":\"1001\",\"org\":\"uocfcu\",\"url\":\"https:\\/\\/ofx.elevationscu.com\\/scripts\\/serverext.dll\"}'),(294,'Kitsap Community Credit Union','728',1,'{\"fid\":\"325180223\",\"org\":\"Kitsap Community Federal Credit\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(295,'Charles Schwab Retirement','729',1,'{\"fid\":\"1234\",\"org\":\"SchwabRPS\",\"url\":\"https:\\/\\/ofx.schwab.com\\/cgi_dev\\/ofx_server\"}'),(296,'Charles Schwab Retirement Plan Services','730',1,'{\"fid\":\"1234\",\"org\":\"SchwabRPS\",\"url\":\"https:\\/\\/ofx.schwab.com\\/cgi_dev\\/ofx_server\"}'),(297,'First Tech Federal Credit Union','731',1,'{\"fid\":\"3169\",\"org\":\"First Tech Federal Credit Union\",\"url\":\"https:\\/\\/ofx.firsttechfed.com\"}'),(298,'Affinity Plus Federal Credit Union','732',1,'{\"fid\":\"75\",\"org\":\"Affinity Plus FCU\",\"url\":\"https:\\/\\/hb.affinityplus.org\\/ofx\\/ofx.dll\"}'),(299,'Bank of George','733',1,'{\"fid\":\"122402366\",\"org\":\"122402366\",\"url\":\"https:\\/\\/ofx.internet-ebanking.com\\/CCOFXServer\\/servlet\\/TP_OFX_Controller\"}'),(300,'Franklin Templeton Investments','734',1,'{\"fid\":\"9444\",\"org\":\"franklintempleton.com\",\"url\":\"https:\\/\\/ofx.franklintempleton.com\\/eftxweb\\/access.ofx\"}'),(301,'ING Institutional Plan Services ','735',1,'{\"fid\":\"1289\",\"org\":\"ing-usa.com\",\"url\":\"https:\\/\\/ofx.ingplans.com\\/ofx\\/Server\"}'),(302,'Sterne Agee','736',1,'{\"fid\":\"2170\",\"org\":\"AFS\",\"url\":\"https:\\/\\/salofx.automatedfinancial.com\"}'),(303,'Wells Fargo Advisors','737',1,'{\"fid\":\"12748\",\"org\":\"WF\",\"url\":\"https:\\/\\/ofxdc.wellsfargo.com\\/ofxbrokerage\\/process.ofx\"}'),(304,'Community 1st Credit Union','738',1,'{\"fid\":\"325082017\",\"org\":\"Community 1st Credit Union\",\"url\":\"https:\\/\\/ib.comm1stcu.org\\/scripts\\/isaofx.dll\"}'),(305,'<NAME> Private Banking','740',1,'{\"fid\":\"0417\",\"org\":\"jpmorgan.com\",\"url\":\"https:\\/\\/ofx.jpmorgan.com\\/jpmredirector\"}'),(306,'Northwest Community CU','741',1,'{\"fid\":\"1948\",\"org\":\"Cavion\",\"url\":\"https:\\/\\/ofx.lanxtra.com\\/ofx\\/servlet\\/Teller\"}'),(307,'North Carolina State Employees Credit Union','742',1,'{\"fid\":\"1001\",\"org\":\"SECU\",\"url\":\"https:\\/\\/onlineaccess.ncsecu.org\\/secuofx\\/secu.ofx \"}'),(308,'International Bank of Commerce','743',1,'{\"fid\":\"1001\",\"org\":\"IBC\",\"url\":\"https:\\/\\/ibcbankonline2.ibc.com\\/scripts\\/serverext.dll\"}'),(309,'RaboBank America','744',1,'{\"fid\":\"11540\",\"org\":\"RBB\",\"url\":\"https:\\/\\/ofx.rabobankamerica.com\\/ofx\\/process.ofx\"}'),(310,'Hughes Federal Credit Union','745',1,'{\"fid\":\"1951\",\"org\":\"Cavion\",\"url\":\"https:\\/\\/ofx.lanxtra.com\\/ofx\\/servlet\\/Teller\"}'),(311,'Apple FCU','746',1,'{\"fid\":\"256078514\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(312,'Chemical Bank','747',1,'{\"fid\":\"072410013\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(313,'Local Government Federal Credit Union','748',1,'{\"fid\":\"1001\",\"org\":\"SECU\",\"url\":\"https:\\/\\/onlineaccess.ncsecu.org\\/lgfcuofx\\/lgfcu.ofx\"}'),(314,'Wells Fargo Bank','749',1,'{\"fid\":\"3000\",\"org\":\"WF\",\"url\":\"https:\\/\\/ofxdc.wellsfargo.com\\/ofx\\/process.ofx\"}'),(315,'Schwab Retirement Plan Services','750',1,'{\"fid\":\"11811\",\"org\":\"The 401k Company\",\"url\":\"https:\\/\\/ofx1.401kaccess.com\"}'),(316,'Southern Community Bank and Trust (SCB&T)','751',1,'{\"fid\":\"053112097\",\"org\":\"MOneFortyEight\",\"url\":\"https:\\/\\/ofx1.evault.ws\\/OFXServer\\/ofxsrvr.dll\"}'),(317,'Elevations Credit Union IB WC-DC','752',1,'{\"fid\":\"307074580\",\"org\":\"uofcfcu\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx \"}'),(318,'Credit Suisse Securities USA LLC','753',1,'{\"fid\":\"001\",\"org\":\"Credit Suisse Securities USA LLC\",\"url\":\"https:\\/\\/ofx.netxclient.com\\/cgi\\/OFXNetx\"}'),(319,'North Country FCU','754',1,'{\"fid\":\"211691004\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(320,'South Carolina Bank and Trust','755',1,'{\"fid\":\"053200983\",\"org\":\"MZeroOneZeroSCBT\",\"url\":\"https:\\/\\/ofx1.evault.ws\\/ofxserver\\/ofxsrvr.dll\"}'),(321,'Wings Financial','756',1,'{\"fid\":\"296076152\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(322,'Haverhill Bank','757',1,'{\"fid\":\"93\",\"org\":\"orcc\",\"url\":\"https:\\/\\/www20.onlinebank.com\\/OROFX16Listener\"}'),(323,'Mission Federal Credit Union','758',1,'{\"fid\":\"1001\",\"org\":\"mission\",\"url\":\"https:\\/\\/missionlink.missionfcu.org\\/scripts\\/serverext.dll\"}'),(324,'Southwest Missouri Bank','759',1,'{\"fid\":\"101203641\",\"org\":\"<NAME>\",\"url\":\"https:\\/\\/directline.netteller.com\"}'),(325,'Cambridge Savings Bank','760',1,'{\"fid\":\"211371120\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(326,'NetxClient UAT','761',1,'{\"fid\":\"1023\",\"org\":\"NetxClient\",\"url\":\"https:\\/\\/uat-ofx.netxclient.inautix.com\\/cgi\\/OFXNetx\"}'),(327,'bankfinancial','762',1,'{\"fid\":\"271972899\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(328,'AXA Equitable','763',1,'{\"fid\":\"7199\",\"org\":\"AXA\",\"url\":\"https:\\/\\/ofx.netxclient.com\\/cgi\\/OFXNetx\"}'),(329,'Premier America Credit Union','764',1,'{\"fid\":\"322283990\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(330,'Bank of America - 5959','765',1,'{\"fid\":\"5959\",\"org\":\"HAN\",\"url\":\"https:\\/\\/ofx.bankofamerica.com\\/cgi-forte\\/fortecgi?servicename=ofx_2-3&pagename=ofx\"}'),(331,'First Command Bank','766',1,'{\"fid\":\"188\",\"org\":\"First Command Bank\",\"url\":\"https:\\/\\/www19.onlinebank.com\\/OROFX16Listener\"}'),(332,'TIAA-CREF','767',1,'{\"fid\":\"041\",\"org\":\"tiaa-cref.org\",\"url\":\"https:\\/\\/ofx.netxclient.com\\/cgi\\/OFXNetx\"}'),(333,'Citizens National Bank','768',1,'{\"fid\":\"111903151\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(334,'Tower Federal Credit Union','769',1,'{\"fid\":\"255077370\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(335,'First Republic Bank','770',1,'{\"fid\":\"321081669\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(336,'Texans Credit Union','771',1,'{\"fid\":\"-1\",\"org\":\"TexansCU\",\"url\":\"https:\\/\\/www.netit.financial-net.com\\/ofx\"}'),(337,'AltaOne','772',1,'{\"fid\":\"322274462\",\"org\":\"AltaOneFCU\",\"url\":\"https:\\/\\/msconline.altaone.net\\/scripts\\/isaofx.dll\"}'),(338,'CenterState Bank','773',1,'{\"fid\":\"1942\",\"org\":\"ORCC\",\"url\":\"https:\\/\\/www20.onlinebank.com\\/OROFX16Listener\"}'),(339,'5 Star Bank','774',1,'{\"fid\":\"307087713\",\"org\":\"5 Star Bank\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(340,'Belmont Savings Bank','775',1,'{\"fid\":\"211371764\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(341,'UNIVERSITY & STATE EMPLOYEES CU','776',1,'{\"fid\":\"322281691\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(342,'Wells Fargo Bank 2013','777',1,'{\"fid\":\"3001\",\"org\":\"Wells Fargo\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/3001.ofxgp\"}'),(343,'The Golden1 Credit Union','778',1,'{\"fid\":\"1001\",\"org\":\"Golden1\",\"url\":\"https:\\/\\/homebanking.golden1.com\\/scripts\\/serverext.dll\"}'),(344,'Woodsboro Bank','779',1,'{\"fid\":\"7479\",\"org\":\"JackHenry\",\"url\":\"https:\\/\\/directline.netteller.com\\/\"}'),(345,'Sandia Laboratory Federal Credit Union','780',1,'{\"fid\":\"1001\",\"org\":\"SLFCU\",\"url\":\"https:\\/\\/ofx-prod.slfcu.org\\/ofx\\/process.ofx \"}'),(346,'Oregon Community Credit Union','781',1,'{\"fid\":\"2077\",\"org\":\"ORCC\",\"url\":\"https:\\/\\/www20.onlinebank.com\\/OROFX16Listener\"}'),(347,'Advantis Credit Union','782',1,'{\"fid\":\"323075097\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(348,'Capital One 360','783',1,'{\"fid\":\"031176110\",\"org\":\"ING DIRECT\",\"url\":\"https:\\/\\/ofx.capitalone360.com\\/OFX\\/ofx.html\"}'),(349,'Flagstar Bank','784',1,'{\"fid\":\"272471852\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(350,'Arizona State Credit Union','785',1,'{\"fid\":\"322172496\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(351,'AmegyBank','786',1,'{\"fid\":\"1165\",\"org\":\"292-3\",\"url\":\"https:\\/\\/pfm.metavante.com\\/ofx\\/OFXServlet\"}'),(352,'Bank of Internet, USA','787',1,'{\"fid\":\"122287251\",\"org\":\"Bank of Internet\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(353,'Amplify Federal Credit Union','788',1,'{\"fid\":\"1\",\"org\":\"Harland Financial Solutions\",\"url\":\"https:\\/\\/ezonline.goamplify.com\\/ofx\\/ofx.dll\"}'),(354,'Capitol Federal Savings Bank','789',1,'{\"fid\":\"1001\",\"org\":\"CapFed\",\"url\":\"https:\\/\\/ofx-prod.capfed.com\\/ofx\\/process.ofx\"}'),(355,'Bank of America - access.ofx','790',1,'{\"fid\":\"5959\",\"org\":\"HAN\",\"url\":\"https:\\/\\/eftx.bankofamerica.com\\/eftxweb\\/access.ofx\"}'),(356,'SVB','791',1,'{\"fid\":\"944\",\"org\":\"SVB\",\"url\":\"https:\\/\\/ofx.svbconnect.com\\/eftxweb\\/access.ofx\"}'),(357,'Iinvestor360','792',1,'{\"fid\":\"7784\",\"org\":\"Fidelity\",\"url\":\"https:\\/\\/www.investor360.net\\/OFX\\/FinService.asmx\\/GetData\"}'),(358,'Sound CU','793',1,'{\"fid\":\"325183220\",\"org\":\"SOUNDCUDC\",\"url\":\"https:\\/\\/mb.soundcu.com\\/OFXServer\\/ofxsrvr.dll\"}'),(359,'Tangerine (Canada)','794',1,'{\"fid\":\"10951\",\"org\":\"TangerineBank\",\"url\":\"https:\\/\\/ofx.tangerine.ca\"}'),(360,'First Tennessee','795',1,'{\"fid\":\"2250\",\"org\":\"Online Financial Services \",\"url\":\"https:\\/\\/ofx.firsttennessee.com\\/ofx\\/ofx_isapi.dll \"}'),(361,'Alaska Air Visa (Bank of America)','796',1,'{\"fid\":\"1142\",\"org\":\"BofA\",\"url\":\"https:\\/\\/akairvisa.iglooware.com\\/visa.php\"}'),(362,'TIAA-CREF Retirement Services','797',1,'{\"fid\":\"1304\",\"org\":\"TIAA-CREF\",\"url\":\"https:\\/\\/ofx-service.tiaa-cref.org\\/public\\/ofx\"}'),(363,'Bofi federal bank','798',1,'{\"fid\":\"122287251\",\"org\":\"Bofi Federal Bank - Business\",\"url\":\"https:\\/\\/directline.netteller.com\"}'),(364,'Vanguard','799',1,'{\"fid\":\"15103\",\"org\":\"Vanguard\",\"url\":\"https:\\/\\/vesnc.vanguard.com\\/us\\/OfxDirectConnectServlet\"}'),(365,'Wright Patt CU','800',1,'{\"fid\":\"242279408\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(366,'Technology Credit Union','801',1,'{\"fid\":\"15079\",\"org\":\"TECHCUDC\",\"url\":\"https:\\/\\/m.techcu.com\\/ofxserver\\/ofxsrvr.dll\"}'),(367,'Capital One Bank (after 12-15-13)','802',1,'{\"fid\":\"1001\",\"org\":\"Capital One\",\"url\":\"https:\\/\\/ofx.capitalone.com\\/ofx\\/103\\/process.ofx\"}'),(368,'Bancorpsouth','803',1,'{\"fid\":\"1001\",\"org\":\"BXS\",\"url\":\"https:\\/\\/ofx-prod.bancorpsouthonline.com\\/ofx\\/process.ofx\"}'),(369,'Monterey Credit Union','804',1,'{\"fid\":\"2059\",\"org\":\"orcc\",\"url\":\"https:\\/\\/www20.onlinebank.com\\/OROFX16Listener\"}'),(370,'<NAME>','805',1,'{\"fid\":\"59401\",\"org\":\"dadco.com\",\"url\":\"https:\\/\\/pfm.davidsoncompanies.com\\/eftxweb\\/access.ofx\"}'),(371,'Morgan Stanley ClientServ - Quicken Win Format','806',1,'{\"fid\":\"1235\",\"org\":\"msdw.com\",\"url\":\"https:\\/\\/ofx.morganstanleyclientserv.com\\/ofx\\/QuickenWinProfile.ofx\"}'),(372,'Star One Credit Union','807',1,'{\"fid\":\"321177968\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(373,'Scottrade Brokerage','808',1,'{\"fid\":\"777\",\"org\":\"Scottrade\",\"url\":\"https:\\/\\/ofx.scottrade.com\"}'),(374,'Mutual Bank','809',1,'{\"fid\":\"88\",\"org\":\"ORCC\",\"url\":\"https:\\/\\/www20.onlinebank.com\\/OROFX16Listener\"}'),(375,'Affinity Plus Federal Credit Union-New','810',1,'{\"fid\":\"15268\",\"org\":\"Affinity Plus Federal Credit Uni\",\"url\":\"https:\\/\\/mobile.affinityplus.org\\/OFX\\/OFXServer.aspx\"}'),(376,'Suncoast Credit Union','811',1,'{\"fid\":\"15469\",\"org\":\"SunCoast\",\"url\":\"https:\\/\\/ofx.suncoastcreditunion.com\"}'),(377,'Think Mutual Bank','812',1,'{\"fid\":\"10139\",\"org\":\"JackHenry\",\"url\":\"https:\\/\\/directline2.netteller.com\"}'),(378,'La Banque Postale','813',1,'{\"fid\":\"0\",\"org\":\"0\",\"url\":\"https:\\/\\/ofx.videoposte.com\\/\"}'),(379,'Pennsylvania State Employees Credit Union','814',1,'{\"fid\":\"231381116\",\"org\":\"PENNSTATEEMPLOYEES\",\"url\":\"https:\\/\\/directconnect.psecu.com\\/ofxserver\\/ofxsrvr.dll\"}'),(380,'St. Mary\'s Credit Union','815',1,'{\"fid\":\"211384214\",\"org\":\"MSevenThirtySeven\",\"url\":\"https:\\/\\/ofx1.evault.ws\\/OFXServer\\/ofxsrvr.dll\"}'),(381,'Institution For Savings','816',1,'{\"fid\":\"59466\",\"org\":\"JackHenry\",\"url\":\"https:\\/\\/directline2.netteller.com\"}'),(382,'PNC Online Banking','817',1,'{\"fid\":\"4501\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/4501.ofxgp\"}'),(383,'PNC Banking Online','818',1,'{\"fid\":\"4501\",\"org\":\"ISC\",\"url\":\"https:\\/\\/www.oasis.cfree.com\\/4501.ofx\"}'),(384,'Central Bank Utah','820',1,'{\"fid\":\"124300327\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(385,'nuVision Financial FCU','821',1,'{\"fid\":\"322282399\",\"org\":\"DI\",\"url\":\"https:\\/\\/ofxdi.diginsite.com\\/cmr\\/cmr.ofx\"}'),(386,'Landings Credit Union','822',1,'{\"fid\":\"02114\",\"org\":\"JackHenry\",\"url\":\"https:\\/\\/directline.netteller.com\"}');
/*!40000 ALTER TABLE `banks` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `clients`
--
DROP TABLE IF EXISTS `clients`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `clients` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned NOT NULL,
`account_id` int(10) unsigned NOT NULL,
`currency_id` int(10) unsigned DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`address1` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`address2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`city` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`state` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`postal_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`country_id` int(10) unsigned DEFAULT NULL,
`work_phone` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`private_notes` text COLLATE utf8_unicode_ci,
`balance` decimal(13,2) DEFAULT NULL,
`paid_to_date` decimal(13,2) DEFAULT NULL,
`last_login` timestamp NULL DEFAULT NULL,
`website` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`industry_id` int(10) unsigned DEFAULT NULL,
`size_id` int(10) unsigned DEFAULT NULL,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`payment_terms` int(11) DEFAULT NULL,
`public_id` int(10) unsigned NOT NULL,
`custom_value1` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`custom_value2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`vat_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`id_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`language_id` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `clients_account_id_public_id_unique` (`account_id`,`public_id`),
KEY `clients_user_id_foreign` (`user_id`),
KEY `clients_country_id_foreign` (`country_id`),
KEY `clients_industry_id_foreign` (`industry_id`),
KEY `clients_size_id_foreign` (`size_id`),
KEY `clients_currency_id_foreign` (`currency_id`),
KEY `clients_account_id_index` (`account_id`),
KEY `clients_public_id_index` (`public_id`),
KEY `clients_language_id_foreign` (`language_id`),
CONSTRAINT `clients_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
CONSTRAINT `clients_country_id_foreign` FOREIGN KEY (`country_id`) REFERENCES `countries` (`id`),
CONSTRAINT `clients_currency_id_foreign` FOREIGN KEY (`currency_id`) REFERENCES `currencies` (`id`),
CONSTRAINT `clients_industry_id_foreign` FOREIGN KEY (`industry_id`) REFERENCES `industries` (`id`),
CONSTRAINT `clients_language_id_foreign` FOREIGN KEY (`language_id`) REFERENCES `languages` (`id`),
CONSTRAINT `clients_size_id_foreign` FOREIGN KEY (`size_id`) REFERENCES `sizes` (`id`),
CONSTRAINT `clients_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `clients`
--
LOCK TABLES `clients` WRITE;
/*!40000 ALTER TABLE `clients` DISABLE KEYS */;
/*!40000 ALTER TABLE `clients` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `companies`
--
DROP TABLE IF EXISTS `companies`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `companies` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`plan` enum('pro','enterprise','white_label') COLLATE utf8_unicode_ci DEFAULT NULL,
`plan_term` enum('month','year') COLLATE utf8_unicode_ci DEFAULT NULL,
`plan_started` date DEFAULT NULL,
`plan_paid` date DEFAULT NULL,
`plan_expires` date DEFAULT NULL,
`payment_id` int(10) unsigned DEFAULT NULL,
`trial_started` date DEFAULT NULL,
`trial_plan` enum('pro','enterprise') COLLATE utf8_unicode_ci DEFAULT NULL,
`pending_plan` enum('pro','enterprise','free') COLLATE utf8_unicode_ci DEFAULT NULL,
`pending_term` enum('month','year') COLLATE utf8_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`plan_price` decimal(7,2) DEFAULT NULL,
`pending_plan_price` decimal(7,2) DEFAULT NULL,
`num_users` smallint(6) NOT NULL DEFAULT '1',
`pending_num_users` smallint(6) NOT NULL DEFAULT '1',
`utm_source` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`utm_medium` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`utm_campaign` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`utm_term` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`utm_content` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`discount` double(8,2) NOT NULL,
`discount_expires` date DEFAULT NULL,
`promo_expires` date DEFAULT NULL,
`bluevine_status` enum('ignored','signed_up') COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `companies_payment_id_foreign` (`payment_id`),
CONSTRAINT `companies_payment_id_foreign` FOREIGN KEY (`payment_id`) REFERENCES `payments` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `companies`
--
LOCK TABLES `companies` WRITE;
/*!40000 ALTER TABLE `companies` DISABLE KEYS */;
/*!40000 ALTER TABLE `companies` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `contacts`
--
DROP TABLE IF EXISTS `contacts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `contacts` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`account_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`client_id` int(10) unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`is_primary` tinyint(1) NOT NULL DEFAULT '0',
`send_invoice` tinyint(1) NOT NULL DEFAULT '0',
`first_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`last_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`phone` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`last_login` timestamp NULL DEFAULT NULL,
`public_id` int(10) unsigned DEFAULT NULL,
`password` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`confirmation_code` tinyint(1) DEFAULT NULL,
`remember_token` tinyint(1) DEFAULT NULL,
`contact_key` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`bot_user_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `contacts_account_id_public_id_unique` (`account_id`,`public_id`),
UNIQUE KEY `contacts_contact_key_unique` (`contact_key`),
KEY `contacts_user_id_foreign` (`user_id`),
KEY `contacts_client_id_index` (`client_id`),
CONSTRAINT `contacts_client_id_foreign` FOREIGN KEY (`client_id`) REFERENCES `clients` (`id`) ON DELETE CASCADE,
CONSTRAINT `contacts_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `contacts`
--
LOCK TABLES `contacts` WRITE;
/*!40000 ALTER TABLE `contacts` DISABLE KEYS */;
/*!40000 ALTER TABLE `contacts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `countries`
--
DROP TABLE IF EXISTS `countries`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `countries` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`capital` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`citizenship` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`country_code` varchar(3) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`currency` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`currency_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`currency_sub_unit` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`full_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`iso_3166_2` varchar(2) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`iso_3166_3` varchar(3) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`region_code` varchar(3) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`sub_region_code` varchar(3) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`eea` tinyint(1) NOT NULL DEFAULT '0',
`swap_postal_code` tinyint(1) NOT NULL DEFAULT '0',
`swap_currency_symbol` tinyint(1) NOT NULL DEFAULT '0',
`thousand_separator` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`decimal_separator` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=895 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `countries`
--
LOCK TABLES `countries` WRITE;
/*!40000 ALTER TABLE `countries` DISABLE KEYS */;
INSERT INTO `countries` VALUES (4,'Kabul','Afghan','004','afghani','AFN','pul','Islamic Republic of Afghanistan','AF','AFG','Afghanistan','142','034',0,0,0,NULL,NULL),(8,'Tirana','Albanian','008','lek','ALL','(qindar (pl. qindarka))','Republic of Albania','AL','ALB','Albania','150','039',0,0,0,NULL,NULL),(10,'Antartica','of Antartica','010','','','','Antarctica','AQ','ATA','Antarctica','','',0,0,0,NULL,NULL),(12,'Algiers','Algerian','012','Algerian dinar','DZD','centime','People’s Democratic Republic of Algeria','DZ','DZA','Algeria','002','015',0,0,0,NULL,NULL),(16,'Pago Pago','American Samoan','016','US dollar','USD','cent','Territory of American','AS','ASM','American Samoa','009','061',0,0,0,NULL,NULL),(20,'Andorra la Vella','Andorran','020','euro','EUR','cent','Principality of Andorra','AD','AND','Andorra','150','039',0,0,0,NULL,NULL),(24,'Luanda','Angolan','024','kwanza','AOA','cêntimo','Republic of Angola','AO','AGO','Angola','002','017',0,0,0,NULL,NULL),(28,'St John’s','of Antigua and Barbuda','028','East Caribbean dollar','XCD','cent','Antigua and Barbuda','AG','ATG','Antigua and Barbuda','019','029',0,0,0,NULL,NULL),(31,'Baku','Azerbaijani','031','Azerbaijani manat','AZN','kepik (inv.)','Republic of Azerbaijan','AZ','AZE','Azerbaijan','142','145',0,0,0,NULL,NULL),(32,'Buenos Aires','Argentinian','032','Argentine peso','ARS','centavo','Argentine Republic','AR','ARG','Argentina','019','005',0,1,0,NULL,NULL),(36,'Canberra','Australian','036','Australian dollar','AUD','cent','Commonwealth of Australia','AU','AUS','Australia','009','053',0,0,0,NULL,NULL),(40,'Vienna','Austrian','040','euro','EUR','cent','Republic of Austria','AT','AUT','Austria','150','155',1,1,1,NULL,NULL),(44,'Nassau','Bahamian','044','Bahamian dollar','BSD','cent','Commonwealth of the Bahamas','BS','BHS','Bahamas','019','029',0,0,0,NULL,NULL),(48,'Manama','Bahraini','048','Bahraini dinar','BHD','fils (inv.)','Kingdom of Bahrain','BH','BHR','Bahrain','142','145',0,0,0,NULL,NULL),(50,'Dhaka','Bangladeshi','050','taka (inv.)','BDT','poisha (inv.)','People’s Republic of Bangladesh','BD','BGD','Bangladesh','142','034',0,0,0,NULL,NULL),(51,'Yerevan','Armenian','051','dram (inv.)','AMD','luma','Republic of Armenia','AM','ARM','Armenia','142','145',0,0,0,NULL,NULL),(52,'Bridgetown','Barbadian','052','Barbados dollar','BBD','cent','Barbados','BB','BRB','Barbados','019','029',0,0,0,NULL,NULL),(56,'Brussels','Belgian','056','euro','EUR','cent','Kingdom of Belgium','BE','BEL','Belgium','150','155',1,1,0,NULL,NULL),(60,'Hamilton','Bermudian','060','Bermuda dollar','BMD','cent','Bermuda','BM','BMU','Bermuda','019','021',0,0,0,NULL,NULL),(64,'Thimphu','Bhutanese','064','ngultrum (inv.)','BTN','chhetrum (inv.)','Kingdom of Bhutan','BT','BTN','Bhutan','142','034',0,0,0,NULL,NULL),(68,'Sucre (BO1)','Bolivian','068','boliviano','BOB','centavo','Plurinational State of Bolivia','BO','BOL','Bolivia, Plurinational State of','019','005',0,0,0,NULL,NULL),(70,'Sarajevo','of Bosnia and Herzegovina','070','convertible mark','BAM','fening','Bosnia and Herzegovina','BA','BIH','Bosnia and Herzegovina','150','039',0,0,0,NULL,NULL),(72,'Gaborone','Botswanan','072','pula (inv.)','BWP','thebe (inv.)','Republic of Botswana','BW','BWA','Botswana','002','018',0,0,0,NULL,NULL),(74,'Bouvet island','of Bouvet island','074','','','','Bouvet Island','BV','BVT','Bouvet Island','','',0,0,0,NULL,NULL),(76,'Brasilia','Brazilian','076','real (pl. reais)','BRL','centavo','Federative Republic of Brazil','BR','BRA','Brazil','019','005',0,0,0,NULL,NULL),(84,'Belmopan','Belizean','084','Belize dollar','BZD','cent','Belize','BZ','BLZ','Belize','019','013',0,0,0,NULL,NULL),(86,'<NAME>','Changosian','086','US dollar','USD','cent','British Indian Ocean Territory','IO','IOT','British Indian Ocean Territory','','',0,0,0,NULL,NULL),(90,'Honiara','Solomon Islander','090','Solomon Islands dollar','SBD','cent','Solomon Islands','SB','SLB','Solomon Islands','009','054',0,0,0,NULL,NULL),(92,'Road Town','British Virgin Islander;','092','US dollar','USD','cent','British Virgin Islands','VG','VGB','Virgin Islands, British','019','029',0,0,0,NULL,NULL),(96,'<NAME>','Bruneian','096','Brunei dollar','BND','sen (inv.)','Brunei Darussalam','BN','BRN','Brunei Darussalam','142','035',0,0,0,NULL,NULL),(100,'Sofia','Bulgarian','100','lev (pl. leva)','BGN','stotinka','Republic of Bulgaria','BG','BGR','Bulgaria','150','151',1,0,1,NULL,NULL),(104,'Yangon','Burmese','104','kyat','MMK','pya','Union of Myanmar/','MM','MMR','Myanmar','142','035',0,0,0,NULL,NULL),(108,'Bujumbura','Burundian','108','Burundi franc','BIF','centime','Republic of Burundi','BI','BDI','Burundi','002','014',0,0,0,NULL,NULL),(112,'Minsk','Belarusian','112','Belarusian rouble','BYR','kopek','Republic of Belarus','BY','BLR','Belarus','150','151',0,0,0,NULL,NULL),(116,'<NAME>','Cambodian','116','riel','KHR','sen (inv.)','Kingdom of Cambodia','KH','KHM','Cambodia','142','035',0,0,0,NULL,NULL),(120,'Yaoundé','Cameroonian','120','CFA franc (BEAC)','XAF','centime','Republic of Cameroon','CM','CMR','Cameroon','002','017',0,0,0,NULL,NULL),(124,'Ottawa','Canadian','124','Canadian dollar','CAD','cent','Canada','CA','CAN','Canada','019','021',0,0,0,NULL,NULL),(132,'Praia','Cape Verdean','132','Cape Verde escudo','CVE','centavo','Republic of Cape Verde','CV','CPV','Cape Verde','002','011',0,0,0,NULL,NULL),(136,'George Town','Caymanian','136','Cayman Islands dollar','KYD','cent','Cayman Islands','KY','CYM','Cayman Islands','019','029',0,0,0,NULL,NULL),(140,'Bangui','Central African','140','CFA franc (BEAC)','XAF','centime','Central African Republic','CF','CAF','Central African Republic','002','017',0,0,0,NULL,NULL),(144,'Colombo','Sri Lankan','144','Sri Lankan rupee','LKR','cent','Democratic Socialist Republic of Sri Lanka','LK','LKA','Sri Lanka','142','034',0,0,0,NULL,NULL),(148,'N’Djamena','Chadian','148','CFA franc (BEAC)','XAF','centime','Republic of Chad','TD','TCD','Chad','002','017',0,0,0,NULL,NULL),(152,'Santiago','Chilean','152','Chilean peso','CLP','centavo','Republic of Chile','CL','CHL','Chile','019','005',0,0,0,NULL,NULL),(156,'Beijing','Chinese','156','renminbi-yuan (inv.)','CNY','jiao (10)','People’s Republic of China','CN','CHN','China','142','030',0,0,0,NULL,NULL),(158,'Taipei','Taiwanese','158','new Taiwan dollar','TWD','fen (inv.)','Republic of China, Taiwan (TW1)','TW','TWN','Taiwan, Province of China','142','030',0,0,0,NULL,NULL),(162,'Flying Fish Cove','Christmas Islander','162','Australian dollar','AUD','cent','Christmas Island Territory','CX','CXR','Christmas Island','','',0,0,0,NULL,NULL),(166,'Bantam','Cocos Islander','166','Australian dollar','AUD','cent','Territory of Cocos (Keeling) Islands','CC','CCK','Cocos (Keeling) Islands','','',0,0,0,NULL,NULL),(170,'Santa Fe de Bogotá','Colombian','170','Colombian peso','COP','centavo','Republic of Colombia','CO','COL','Colombia','019','005',0,0,0,NULL,NULL),(174,'Moroni','Comorian','174','Comorian franc','KMF','','Union of the Comoros','KM','COM','Comoros','002','014',0,0,0,NULL,NULL),(175,'Mamoudzou','Mahorais','175','euro','EUR','cent','Departmental Collectivity of Mayotte','YT','MYT','Mayotte','002','014',0,0,0,NULL,NULL),(178,'Brazzaville','Congolese','178','CFA franc (BEAC)','XAF','centime','Republic of the Congo','CG','COG','Congo','002','017',0,0,0,NULL,NULL),(180,'Kinshasa','Congolese','180','Congolese franc','CDF','centime','Democratic Republic of the Congo','CD','COD','Congo, the Democratic Republic of the','002','017',0,0,0,NULL,NULL),(184,'Avarua','Cook Islander','184','New Zealand dollar','NZD','cent','Cook Islands','CK','COK','Cook Islands','009','061',0,0,0,NULL,NULL),(188,'San José','Costa Rican','188','Costa Rican colón (pl. colones)','CRC','céntimo','Republic of Costa Rica','CR','CRI','Costa Rica','019','013',0,0,0,NULL,NULL),(191,'Zagreb','Croatian','191','kuna (inv.)','HRK','lipa (inv.)','Republic of Croatia','HR','HRV','Croatia','150','039',1,0,1,NULL,NULL),(192,'Havana','Cuban','192','Cuban peso','CUP','centavo','Republic of Cuba','CU','CUB','Cuba','019','029',0,0,0,NULL,NULL),(196,'Nicosia','Cypriot','196','euro','EUR','cent','Republic of Cyprus','CY','CYP','Cyprus','142','145',1,0,0,NULL,NULL),(203,'Prague','Czech','203','Czech koruna (pl. koruny)','CZK','halér','Czech Republic','CZ','CZE','Czech Republic','150','151',1,0,1,NULL,NULL),(204,'Porto Novo (BJ1)','Beninese','204','CFA franc (BCEAO)','XOF','centime','Republic of Benin','BJ','BEN','Benin','002','011',0,0,0,NULL,NULL),(208,'Copenhagen','Danish','208','Danish krone','DKK','øre (inv.)','Kingdom of Denmark','DK','DNK','Denmark','150','154',1,1,0,NULL,NULL),(212,'Roseau','Dominican','212','East Caribbean dollar','XCD','cent','Commonwealth of Dominica','DM','DMA','Dominica','019','029',0,0,0,NULL,NULL),(214,'Santo Domingo','Dominican','214','Dominican peso','DOP','centavo','Dominican Republic','DO','DOM','Dominican Republic','019','029',0,0,0,NULL,NULL),(218,'Quito','Ecuadorian','218','US dollar','USD','cent','Republic of Ecuador','EC','ECU','Ecuador','019','005',0,0,0,NULL,NULL),(222,'San Salvador','Salvadoran','222','Salvadorian colón (pl. colones)','SVC','centavo','Republic of El Salvador','SV','SLV','El Salvador','019','013',0,0,0,NULL,NULL),(226,'Malabo','Equatorial Guinean','226','CFA franc (BEAC)','XAF','centime','Republic of Equatorial Guinea','GQ','GNQ','Equatorial Guinea','002','017',0,0,0,NULL,NULL),(231,'<NAME>','Ethiopian','231','birr (inv.)','ETB','cent','Federal Democratic Republic of Ethiopia','ET','ETH','Ethiopia','002','014',0,0,0,NULL,NULL),(232,'Asmara','Eritrean','232','nakfa','ERN','cent','State of Eritrea','ER','ERI','Eritrea','002','014',0,0,0,NULL,NULL),(233,'Tallinn','Estonian','233','euro','EUR','cent','Republic of Estonia','EE','EST','Estonia','150','154',1,0,1,NULL,NULL),(234,'Tórshavn','Faeroese','234','Danish krone','DKK','øre (inv.)','Faeroe Islands','FO','FRO','Faroe Islands','150','154',0,0,0,NULL,NULL),(238,'Stanley','Falkland Islander','238','Falkland Islands pound','FKP','new penny','Falkland Islands','FK','FLK','Falkland Islands (Malvinas)','019','005',0,0,0,NULL,NULL),(239,'King Edward Point (Grytviken)','of South Georgia and the South Sandwich Islands','239','','','','South Georgia and the South Sandwich Islands','GS','SGS','South Georgia and the South Sandwich Islands','','',0,0,0,NULL,NULL),(242,'Suva','Fijian','242','Fiji dollar','FJD','cent','Republic of Fiji','FJ','FJI','Fiji','009','054',0,0,0,NULL,NULL),(246,'Helsinki','Finnish','246','euro','EUR','cent','Republic of Finland','FI','FIN','Finland','150','154',1,1,1,NULL,NULL),(248,'Mariehamn','Åland Islander','248','euro','EUR','cent','Åland Islands','AX','ALA','Åland Islands','150','154',0,0,0,NULL,NULL),(250,'Paris','French','250','euro','EUR','cent','French Republic','FR','FRA','France','150','155',1,1,1,NULL,NULL),(254,'Cayenne','Guianese','254','euro','EUR','cent','French Guiana','GF','GUF','French Guiana','019','005',0,0,0,NULL,NULL),(258,'Papeete','Polynesian','258','CFP franc','XPF','centime','French Polynesia','PF','PYF','French Polynesia','009','061',0,0,0,NULL,NULL),(260,'Port-aux-Francais','of French Southern and Antarctic Lands','260','euro','EUR','cent','French Southern and Antarctic Lands','TF','ATF','French Southern Territories','','',0,0,0,NULL,NULL),(262,'Djibouti','Djiboutian','262','Djibouti franc','DJF','','Republic of Djibouti','DJ','DJI','Djibouti','002','014',0,0,0,NULL,NULL),(266,'Libreville','Gabonese','266','CFA franc (BEAC)','XAF','centime','Gabonese Republic','GA','GAB','Gabon','002','017',0,0,0,NULL,NULL),(268,'Tbilisi','Georgian','268','lari','GEL','tetri (inv.)','Georgia','GE','GEO','Georgia','142','145',0,0,0,NULL,NULL),(270,'Banjul','Gambian','270','dalasi (inv.)','GMD','butut','Republic of the Gambia','GM','GMB','Gambia','002','011',0,0,0,NULL,NULL),(275,NULL,'Palestinian','275',NULL,NULL,NULL,NULL,'PS','PSE','Palestinian Territory','142','145',0,0,0,NULL,NULL),(276,'Berlin','German','276','euro','EUR','cent','Federal Republic of Germany','DE','DEU','Germany','150','155',1,1,1,NULL,NULL),(288,'Accra','Ghanaian','288','Ghana cedi','GHS','pesewa','Republic of Ghana','GH','GHA','Ghana','002','011',0,0,0,NULL,NULL),(292,'Gibraltar','Gibraltarian','292','Gibraltar pound','GIP','penny','Gibraltar','GI','GIB','Gibraltar','150','039',0,0,0,NULL,NULL),(296,'Tarawa','Kiribatian','296','Australian dollar','AUD','cent','Republic of Kiribati','KI','KIR','Kiribati','009','057',0,0,0,NULL,NULL),(300,'Athens','Greek','300','euro','EUR','cent','Hellenic Republic','GR','GRC','Greece','150','039',1,0,1,NULL,NULL),(304,'Nuuk','Greenlander','304','Danish krone','DKK','øre (inv.)','Greenland','GL','GRL','Greenland','019','021',0,1,0,NULL,NULL),(308,'St George’s','Grenadian','308','East Caribbean dollar','XCD','cent','Grenada','GD','GRD','Grenada','019','029',0,0,0,NULL,NULL),(312,'Basse Terre','Guadeloupean','312','euro','EUR ','cent','Guadeloupe','GP','GLP','Guadeloupe','019','029',0,0,0,NULL,NULL),(316,'Agaña (Hagåtña)','Guamanian','316','US dollar','USD','cent','Territory of Guam','GU','GUM','Guam','009','057',0,0,0,NULL,NULL),(320,'Guatemala City','Guatemalan','320','quetzal (pl. quetzales)','GTQ','centavo','Republic of Guatemala','GT','GTM','Guatemala','019','013',0,0,0,NULL,NULL),(324,'Conakry','Guinean','324','Guinean franc','GNF','','Republic of Guinea','GN','GIN','Guinea','002','011',0,0,0,NULL,NULL),(328,'Georgetown','Guyanese','328','Guyana dollar','GYD','cent','Cooperative Republic of Guyana','GY','GUY','Guyana','019','005',0,0,0,NULL,NULL),(332,'Port-au-Prince','Haitian','332','gourde','HTG','centime','Republic of Haiti','HT','HTI','Haiti','019','029',0,0,0,NULL,NULL),(334,'Territory of Heard Island and McDonald Islands','of Territory of Heard Island and McDonald Islands','334','','','','Territory of Heard Island and McDonald Islands','HM','HMD','Heard Island and McDonald Islands','','',0,0,0,NULL,NULL),(336,'Vatican City','of the Holy See/of the Vatican','336','euro','EUR','cent','the Holy See/ Vatican City State','VA','VAT','Holy See (Vatican City State)','150','039',0,0,0,NULL,NULL),(340,'Tegucigalpa','Honduran','340','lempira','HNL','centavo','Republic of Honduras','HN','HND','Honduras','019','013',0,0,0,NULL,NULL),(344,'(HK3)','Hong Kong Chinese','344','Hong Kong dollar','HKD','cent','Hong Kong Special Administrative Region of the People’s Republic of China (HK2)','HK','HKG','Hong Kong','142','030',0,0,0,NULL,NULL),(348,'Budapest','Hungarian','348','forint (inv.)','HUF','(fillér (inv.))','Republic of Hungary','HU','HUN','Hungary','150','151',1,0,1,NULL,NULL),(352,'Reykjavik','Icelander','352','króna (pl. krónur)','ISK','','Republic of Iceland','IS','ISL','Iceland','150','154',1,1,1,NULL,NULL),(356,'New Delhi','Indian','356','Indian rupee','INR','paisa','Republic of India','IN','IND','India','142','034',0,0,0,NULL,NULL),(360,'Jakarta','Indonesian','360','Indonesian rupiah (inv.)','IDR','sen (inv.)','Republic of Indonesia','ID','IDN','Indonesia','142','035',0,0,0,NULL,NULL),(364,'Tehran','Iranian','364','Iranian rial','IRR','(dinar) (IR1)','Islamic Republic of Iran','IR','IRN','Iran, Islamic Republic of','142','034',0,0,0,NULL,NULL),(368,'Baghdad','Iraqi','368','Iraqi dinar','IQD','fils (inv.)','Republic of Iraq','IQ','IRQ','Iraq','142','145',0,0,0,NULL,NULL),(372,'Dublin','Irish','372','euro','EUR','cent','Ireland (IE1)','IE','IRL','Ireland','150','154',1,0,0,',','.'),(376,'(IL1)','Israeli','376','shekel','ILS','agora','State of Israel','IL','ISR','Israel','142','145',0,1,0,NULL,NULL),(380,'Rome','Italian','380','euro','EUR','cent','Italian Republic','IT','ITA','Italy','150','039',1,1,1,NULL,NULL),(384,'Yamoussoukro (CI1)','Ivorian','384','CFA franc (BCEAO)','XOF','centime','Republic of Côte d’Ivoire','CI','CIV','Côte d\'Ivoire','002','011',0,0,0,NULL,NULL),(388,'Kingston','Jamaican','388','Jamaica dollar','JMD','cent','Jamaica','JM','JAM','Jamaica','019','029',0,0,0,NULL,NULL),(392,'Tokyo','Japanese','392','yen (inv.)','JPY','(sen (inv.)) (JP1)','Japan','JP','JPN','Japan','142','030',0,1,1,NULL,NULL),(398,'Astana','Kazakh','398','tenge (inv.)','KZT','tiyn','Republic of Kazakhstan','KZ','KAZ','Kazakhstan','142','143',0,0,0,NULL,NULL),(400,'Amman','Jordanian','400','Jordanian dinar','JOD','100 qirsh','Hashemite Kingdom of Jordan','JO','JOR','Jordan','142','145',0,0,0,NULL,NULL),(404,'Nairobi','Kenyan','404','Kenyan shilling','KES','cent','Republic of Kenya','KE','KEN','Kenya','002','014',0,0,0,NULL,NULL),(408,'Pyongyang','North Korean','408','North Korean won (inv.)','KPW','chun (inv.)','Democratic People’s Republic of Korea','KP','PRK','Korea, Democratic People\'s Republic of','142','030',0,0,0,NULL,NULL),(410,'Seoul','South Korean','410','South Korean won (inv.)','KRW','(chun (inv.))','Republic of Korea','KR','KOR','Korea, Republic of','142','030',0,0,0,NULL,NULL),(414,'Kuwait City','Kuwaiti','414','Kuwaiti dinar','KWD','fils (inv.)','State of Kuwait','KW','KWT','Kuwait','142','145',0,0,0,NULL,NULL),(417,'Bishkek','Kyrgyz','417','som','KGS','tyiyn','Kyrgyz Republic','KG','KGZ','Kyrgyzstan','142','143',0,0,0,NULL,NULL),(418,'Vientiane','Lao','418','kip (inv.)','LAK','(at (inv.))','Lao People’s Democratic Republic','LA','LAO','Lao People\'s Democratic Republic','142','035',0,0,0,NULL,NULL),(422,'Beirut','Lebanese','422','Lebanese pound','LBP','(piastre)','Lebanese Republic','LB','LBN','Lebanon','142','145',0,0,0,NULL,NULL),(426,'Maseru','Basotho','426','loti (pl. maloti)','LSL','sente','Kingdom of Lesotho','LS','LSO','Lesotho','002','018',0,0,0,NULL,NULL),(428,'Riga','Latvian','428','euro','EUR','cent','Republic of Latvia','LV','LVA','Latvia','150','154',1,0,0,NULL,NULL),(430,'Monrovia','Liberian','430','Liberian dollar','LRD','cent','Republic of Liberia','LR','LBR','Liberia','002','011',0,0,0,NULL,NULL),(434,'Tripoli','Libyan','434','Libyan dinar','LYD','dirham','Socialist People’s Libyan Arab Jamahiriya','LY','LBY','Libya','002','015',0,0,0,NULL,NULL),(438,'Vaduz','Liechtensteiner','438','Swiss franc','CHF','centime','Principality of Liechtenstein','LI','LIE','Liechtenstein','150','155',1,0,0,NULL,NULL),(440,'Vilnius','Lithuanian','440','euro','EUR','cent','Republic of Lithuania','LT','LTU','Lithuania','150','154',1,0,1,NULL,NULL),(442,'Luxembourg','Luxembourger','442','euro','EUR','cent','Grand Duchy of Luxembourg','LU','LUX','Luxembourg','150','155',1,1,0,NULL,NULL),(446,'Macao (MO3)','Macanese','446','pataca','MOP','avo','Macao Special Administrative Region of the People’s Republic of China (MO2)','MO','MAC','Macao','142','030',0,0,0,NULL,NULL),(450,'Antananarivo','Malagasy','450','ariary','MGA','iraimbilanja (inv.)','Republic of Madagascar','MG','MDG','Madagascar','002','014',0,0,0,NULL,NULL),(454,'Lilongwe','Malawian','454','Malawian kwacha (inv.)','MWK','tambala (inv.)','Republic of Malawi','MW','MWI','Malawi','002','014',0,0,0,NULL,NULL),(458,'Kuala Lumpur (MY1)','Malaysian','458','ringgit (inv.)','MYR','sen (inv.)','Malaysia','MY','MYS','Malaysia','142','035',0,1,0,NULL,NULL),(462,'Malé','Maldivian','462','rufiyaa','MVR','laari (inv.)','Republic of Maldives','MV','MDV','Maldives','142','034',0,0,0,NULL,NULL),(466,'Bamako','Malian','466','CFA franc (BCEAO)','XOF','centime','Republic of Mali','ML','MLI','Mali','002','011',0,0,0,NULL,NULL),(470,'Valletta','Maltese','470','euro','EUR','cent','Republic of Malta','MT','MLT','Malta','150','039',1,0,0,NULL,NULL),(474,'Fort-de-France','Martinican','474','euro','EUR','cent','Martinique','MQ','MTQ','Martinique','019','029',0,0,0,NULL,NULL),(478,'Nouakchott','Mauritanian','478','ouguiya','MRO','khoum','Islamic Republic of Mauritania','MR','MRT','Mauritania','002','011',0,0,0,NULL,NULL),(480,'Port Louis','Mauritian','480','Mauritian rupee','MUR','cent','Republic of Mauritius','MU','MUS','Mauritius','002','014',0,0,0,NULL,NULL),(484,'Mexico City','Mexican','484','Mexican peso','MXN','centavo','United Mexican States','MX','MEX','Mexico','019','013',0,1,0,NULL,NULL),(492,'Monaco','Monegasque','492','euro','EUR','cent','Principality of Monaco','MC','MCO','Monaco','150','155',0,0,0,NULL,NULL),(496,'Ulan Bator','Mongolian','496','tugrik','MNT','möngö (inv.)','Mongolia','MN','MNG','Mongolia','142','030',0,0,0,NULL,NULL),(498,'Chisinau','Moldovan','498','Moldovan leu (pl. lei)','MDL','ban','Republic of Moldova','MD','MDA','Moldova, Republic of','150','151',0,0,0,NULL,NULL),(499,'Podgorica','Montenegrin','499','euro','EUR','cent','Montenegro','ME','MNE','Montenegro','150','039',0,0,0,NULL,NULL),(500,'Plymouth (MS2)','Montserratian','500','East Caribbean dollar','XCD','cent','Montserrat','MS','MSR','Montserrat','019','029',0,0,0,NULL,NULL),(504,'Rabat','Moroccan','504','Moroccan dirham','MAD','centime','Kingdom of Morocco','MA','MAR','Morocco','002','015',0,0,0,NULL,NULL),(508,'Maputo','Mozambican','508','metical','MZN','centavo','Republic of Mozambique','MZ','MOZ','Mozambique','002','014',0,0,0,NULL,NULL),(512,'Muscat','Omani','512','Omani rial','OMR','baiza','Sultanate of Oman','OM','OMN','Oman','142','145',0,0,0,NULL,NULL),(516,'Windhoek','Namibian','516','Namibian dollar','NAD','cent','Republic of Namibia','NA','NAM','Namibia','002','018',0,0,0,NULL,NULL),(520,'Yaren','Nauruan','520','Australian dollar','AUD','cent','Republic of Nauru','NR','NRU','Nauru','009','057',0,0,0,NULL,NULL),(524,'Kathmandu','Nepalese','524','Nepalese rupee','NPR','paisa (inv.)','Nepal','NP','NPL','Nepal','142','034',0,0,0,NULL,NULL),(528,'Amsterdam (NL2)','Dutch','528','euro','EUR','cent','Kingdom of the Netherlands','NL','NLD','Netherlands','150','155',1,1,0,NULL,NULL),(531,'Willemstad','Curaçaoan','531','Netherlands Antillean guilder (CW1)','ANG','cent','Curaçao','CW','CUW','Curaçao','019','029',0,0,0,NULL,NULL),(533,'Oranjestad','Aruban','533','Aruban guilder','AWG','cent','Aruba','AW','ABW','Aruba','019','029',0,0,0,NULL,NULL),(534,'Philipsburg','Sint Maartener','534','Netherlands Antillean guilder (SX1)','ANG','cent','Sint Maarten','SX','SXM','Sint Maarten (Dutch part)','019','029',0,0,0,NULL,NULL),(535,NULL,'of Bonaire, Sint Eustatius and Saba','535','US dollar','USD','cent',NULL,'BQ','BES','Bonaire, Sint Eustatius and Saba','019','029',0,0,0,NULL,NULL),(540,'Nouméa','New Caledonian','540','CFP franc','XPF','centime','New Caledonia','NC','NCL','New Caledonia','009','054',0,0,0,NULL,NULL),(548,'Port Vila','Vanuatuan','548','vatu (inv.)','VUV','','Republic of Vanuatu','VU','VUT','Vanuatu','009','054',0,0,0,NULL,NULL),(554,'Wellington','New Zealander','554','New Zealand dollar','NZD','cent','New Zealand','NZ','NZL','New Zealand','009','053',0,0,0,NULL,NULL),(558,'Managua','Nicaraguan','558','córdoba oro','NIO','centavo','Republic of Nicaragua','NI','NIC','Nicaragua','019','013',0,0,0,NULL,NULL),(562,'Niamey','Nigerien','562','CFA franc (BCEAO)','XOF','centime','Republic of Niger','NE','NER','Niger','002','011',0,0,0,NULL,NULL),(566,'Abuja','Nigerian','566','naira (inv.)','NGN','kobo (inv.)','Federal Republic of Nigeria','NG','NGA','Nigeria','002','011',0,0,0,NULL,NULL),(570,'Alofi','Niuean','570','New Zealand dollar','NZD','cent','Niue','NU','NIU','Niue','009','061',0,0,0,NULL,NULL),(574,'Kingston','Norfolk Islander','574','Australian dollar','AUD','cent','Territory of Norfolk Island','NF','NFK','Norfolk Island','009','053',0,0,0,NULL,NULL),(578,'Oslo','Norwegian','578','Norwegian krone (pl. kroner)','NOK','øre (inv.)','Kingdom of Norway','NO','NOR','Norway','150','154',1,0,0,NULL,NULL),(580,'Saipan','Northern Mariana Islander','580','US dollar','USD','cent','Commonwealth of the Northern Mariana Islands','MP','MNP','Northern Mariana Islands','009','057',0,0,0,NULL,NULL),(581,'United States Minor Outlying Islands','of United States Minor Outlying Islands','581','US dollar','USD','cent','United States Minor Outlying Islands','UM','UMI','United States Minor Outlying Islands','','',0,0,0,NULL,NULL),(583,'Palikir','Micronesian','583','US dollar','USD','cent','Federated States of Micronesia','FM','FSM','Micronesia, Federated States of','009','057',0,0,0,NULL,NULL),(584,'Majuro','Marshallese','584','US dollar','USD','cent','Republic of the Marshall Islands','MH','MHL','Marshall Islands','009','057',0,0,0,NULL,NULL),(585,'Melekeok','Palauan','585','US dollar','USD','cent','Republic of Palau','PW','PLW','Palau','009','057',0,0,0,NULL,NULL),(586,'Islamabad','Pakistani','586','Pakistani rupee','PKR','paisa','Islamic Republic of Pakistan','PK','PAK','Pakistan','142','034',0,0,0,NULL,NULL),(591,'Panama City','Panamanian','591','balboa','PAB','centésimo','Republic of Panama','PA','PAN','Panama','019','013',0,0,0,NULL,NULL),(598,'Port Moresby','Papua New Guinean','598','kina (inv.)','PGK','toea (inv.)','Independent State of Papua New Guinea','PG','PNG','Papua New Guinea','009','054',0,0,0,NULL,NULL),(600,'Asunción','Paraguayan','600','guaraní','PYG','céntimo','Republic of Paraguay','PY','PRY','Paraguay','019','005',0,0,0,NULL,NULL),(604,'Lima','Peruvian','604','new sol','PEN','céntimo','Republic of Peru','PE','PER','Peru','019','005',0,0,0,NULL,NULL),(608,'Manila','Filipino','608','Philippine peso','PHP','centavo','Republic of the Philippines','PH','PHL','Philippines','142','035',0,0,0,NULL,NULL),(612,'Adamstown','Pitcairner','612','New Zealand dollar','NZD','cent','Pitcairn Islands','PN','PCN','Pitcairn','009','061',0,0,0,NULL,NULL),(616,'Warsaw','Polish','616','zloty','PLN','grosz (pl. groszy)','Republic of Poland','PL','POL','Poland','150','151',1,1,1,NULL,NULL),(620,'Lisbon','Portuguese','620','euro','EUR','cent','Portuguese Republic','PT','PRT','Portugal','150','039',1,1,1,NULL,NULL),(624,'Bissau','Guinea-Bissau national','624','CFA franc (BCEAO)','XOF','centime','Republic of Guinea-Bissau','GW','GNB','Guinea-Bissau','002','011',0,0,0,NULL,NULL),(626,'Dili','East Timorese','626','US dollar','USD','cent','Democratic Republic of East Timor','TL','TLS','Timor-Leste','142','035',0,0,0,NULL,NULL),(630,'San Juan','Puerto Rican','630','US dollar','USD','cent','Commonwealth of Puerto Rico','PR','PRI','Puerto Rico','019','029',0,0,0,NULL,NULL),(634,'Doha','Qatari','634','Qatari riyal','QAR','dirham','State of Qatar','QA','QAT','Qatar','142','145',0,0,0,NULL,NULL),(638,'Saint-Denis','Reunionese','638','euro','EUR','cent','Réunion','RE','REU','Réunion','002','014',0,0,0,NULL,NULL),(642,'Bucharest','Romanian','642','Romanian leu (pl. lei)','RON','ban (pl. bani)','Romania','RO','ROU','Romania','150','151',1,0,1,NULL,NULL),(643,'Moscow','Russian','643','Russian rouble','RUB','kopek','Russian Federation','RU','RUS','Russian Federation','150','151',0,0,0,NULL,NULL),(646,'Kigali','Rwandan; Rwandese','646','Rwandese franc','RWF','centime','Republic of Rwanda','RW','RWA','Rwanda','002','014',0,0,0,NULL,NULL),(652,'Gustavia','of Saint Barthélemy','652','euro','EUR','cent','Collectivity of Saint Barthélemy','BL','BLM','Saint Barthélemy','019','029',0,0,0,NULL,NULL),(654,'Jamestown','Saint Helenian','654','Saint Helena pound','SHP','penny','Saint Helena, Ascension and Tristan da Cunha','SH','SHN','Saint Helena, Ascension and Tristan da Cunha','002','011',0,0,0,NULL,NULL),(659,'Basseterre','Kittsian; Nevisian','659','East Caribbean dollar','XCD','cent','Federation of Saint Kitts and Nevis','KN','KNA','Saint Kitts and Nevis','019','029',0,0,0,NULL,NULL),(660,'The Valley','Anguillan','660','East Caribbean dollar','XCD','cent','Anguilla','AI','AIA','Anguilla','019','029',0,0,0,NULL,NULL),(662,'Castries','Saint Lucian','662','East Caribbean dollar','XCD','cent','Saint Lucia','LC','LCA','Saint Lucia','019','029',0,0,0,NULL,NULL),(663,'Marigot','of Saint Martin','663','euro','EUR','cent','Collectivity of Saint Martin','MF','MAF','Saint Martin (French part)','019','029',0,0,0,NULL,NULL),(666,'Saint-Pierre','St-Pierrais; Miquelonnais','666','euro','EUR','cent','Territorial Collectivity of Saint Pierre and Miquelon','PM','SPM','Saint Pierre and Miquelon','019','021',0,0,0,NULL,NULL),(670,'Kingstown','Vincentian','670','East Caribbean dollar','XCD','cent','Saint Vincent and the Grenadines','VC','VCT','Saint Vincent and the Grenadines','019','029',0,0,0,NULL,NULL),(674,'San Marino','San Marinese','674','euro','EUR ','cent','Republic of San Marino','SM','SMR','San Marino','150','039',0,0,0,NULL,NULL),(678,'São Tomé','São Toméan','678','dobra','STD','centavo','Democratic Republic of São Tomé and Príncipe','ST','STP','Sao Tome and Principe','002','017',0,0,0,NULL,NULL),(682,'Riyadh','Saudi Arabian','682','riyal','SAR','halala','Kingdom of Saudi Arabia','SA','SAU','Saudi Arabia','142','145',0,0,0,NULL,NULL),(686,'Dakar','Senegalese','686','CFA franc (BCEAO)','XOF','centime','Republic of Senegal','SN','SEN','Senegal','002','011',0,0,0,NULL,NULL),(688,'Belgrade','Serb','688','Serbian dinar','RSD','para (inv.)','Republic of Serbia','RS','SRB','Serbia','150','039',0,0,0,NULL,NULL),(690,'Victoria','Seychellois','690','Seychelles rupee','SCR','cent','Republic of Seychelles','SC','SYC','Seychelles','002','014',0,0,0,NULL,NULL),(694,'Freetown','Sierra Leonean','694','leone','SLL','cent','Republic of Sierra Leone','SL','SLE','Sierra Leone','002','011',0,0,0,NULL,NULL),(702,'Singapore','Singaporean','702','Singapore dollar','SGD','cent','Republic of Singapore','SG','SGP','Singapore','142','035',0,0,0,NULL,NULL),(703,'Bratislava','Slovak','703','euro','EUR','cent','Slovak Republic','SK','SVK','Slovakia','150','151',1,0,1,NULL,NULL),(704,'Hanoi','Vietnamese','704','dong','VND','(10 hào','Socialist Republic of Vietnam','VN','VNM','Viet Nam','142','035',0,0,0,NULL,NULL),(705,'Ljubljana','Slovene','705','euro','EUR','cent','Republic of Slovenia','SI','SVN','Slovenia','150','039',1,0,1,NULL,NULL),(706,'Mogadishu','Somali','706','Somali shilling','SOS','cent','Somali Republic','SO','SOM','Somalia','002','014',0,0,0,NULL,NULL),(710,'Pretoria (ZA1)','South African','710','rand','ZAR','cent','Republic of South Africa','ZA','ZAF','South Africa','002','018',0,0,0,NULL,NULL),(716,'Harare','Zimbabwean','716','Zimbabwe dollar (ZW1)','ZWL','cent','Republic of Zimbabwe','ZW','ZWE','Zimbabwe','002','014',0,0,0,NULL,NULL),(724,'Madrid','Spaniard','724','euro','EUR','cent','Kingdom of Spain','ES','ESP','Spain','150','039',1,1,1,NULL,NULL),(728,'Juba','South Sudanese','728','South Sudanese pound','SSP','piaster','Republic of South Sudan','SS','SSD','South Sudan','002','015',0,0,0,NULL,NULL),(729,'Khartoum','Sudanese','729','Sudanese pound','SDG','piastre','Republic of the Sudan','SD','SDN','Sudan','002','015',0,0,0,NULL,NULL),(732,'Al aaiun','Sahrawi','732','Moroccan dirham','MAD','centime','Western Sahara','EH','ESH','Western Sahara','002','015',0,0,0,NULL,NULL),(740,'Paramaribo','Surinamese','740','Surinamese dollar','SRD','cent','Republic of Suriname','SR','SUR','Suriname','019','005',0,0,0,NULL,NULL),(744,'Longyearbyen','of Svalbard','744','Norwegian krone (pl. kroner)','NOK','øre (inv.)','Svalbard and Jan Mayen','SJ','SJM','Svalbard and Jan Mayen','150','154',0,0,0,NULL,NULL),(748,'Mbabane','Swazi','748','lilangeni','SZL','cent','Kingdom of Swaziland','SZ','SWZ','Swaziland','002','018',0,0,0,NULL,NULL),(752,'Stockholm','Swedish','752','krona (pl. kronor)','SEK','öre (inv.)','Kingdom of Sweden','SE','SWE','Sweden','150','154',1,1,1,NULL,NULL),(756,'Berne','Swiss','756','Swiss franc','CHF','centime','Swiss Confederation','CH','CHE','Switzerland','150','155',1,1,0,NULL,NULL),(760,'Damascus','Syrian','760','Syrian pound','SYP','piastre','Syrian Arab Republic','SY','SYR','Syrian Arab Republic','142','145',0,0,0,NULL,NULL),(762,'Dushanbe','Tajik','762','somoni','TJS','diram','Republic of Tajikistan','TJ','TJK','Tajikistan','142','143',0,0,0,NULL,NULL),(764,'Bangkok','Thai','764','baht (inv.)','THB','satang (inv.)','Kingdom of Thailand','TH','THA','Thailand','142','035',0,0,0,NULL,NULL),(768,'Lomé','Togolese','768','CFA franc (BCEAO)','XOF','centime','Togolese Republic','TG','TGO','Togo','002','011',0,0,0,NULL,NULL),(772,'(TK2)','Tokelauan','772','New Zealand dollar','NZD','cent','Tokelau','TK','TKL','Tokelau','009','061',0,0,0,NULL,NULL),(776,'Nuku’alofa','Tongan','776','pa’anga (inv.)','TOP','seniti (inv.)','Kingdom of Tonga','TO','TON','Tonga','009','061',0,0,0,NULL,NULL),(780,'Port of Spain','Trinidadian; Tobagonian','780','Trinidad and Tobago dollar','TTD','cent','Republic of Trinidad and Tobago','TT','TTO','Trinidad and Tobago','019','029',0,0,0,NULL,NULL),(784,'Abu Dhabi','Emirian','784','UAE dirham','AED','fils (inv.)','United Arab Emirates','AE','ARE','United Arab Emirates','142','145',0,0,0,NULL,NULL),(788,'Tunis','Tunisian','788','Tunisian dinar','TND','millime','Republic of Tunisia','TN','TUN','Tunisia','002','015',0,0,0,NULL,NULL),(792,'Ankara','Turk','792','Turkish lira (inv.)','TRY','kurus (inv.)','Republic of Turkey','TR','TUR','Turkey','142','145',0,0,0,NULL,NULL),(795,'Ashgabat','Turkmen','795','Turkmen manat (inv.)','TMT','tenge (inv.)','Turkmenistan','TM','TKM','Turkmenistan','142','143',0,0,0,NULL,NULL),(796,'Cockburn Town','Turks and Caicos Islander','796','US dollar','USD','cent','Turks and Caicos Islands','TC','TCA','Turks and Caicos Islands','019','029',0,0,0,NULL,NULL),(798,'Funafuti','Tuvaluan','798','Australian dollar','AUD','cent','Tuvalu','TV','TUV','Tuvalu','009','061',0,0,0,NULL,NULL),(800,'Kampala','Ugandan','800','Uganda shilling','UGX','cent','Republic of Uganda','UG','UGA','Uganda','002','014',0,0,0,NULL,NULL),(804,'Kiev','Ukrainian','804','hryvnia','UAH','kopiyka','Ukraine','UA','UKR','Ukraine','150','151',0,0,0,NULL,NULL),(807,'Skopje','of the former Yugoslav Republic of Macedonia','807','denar (pl. denars)','MKD','deni (inv.)','the former Yugoslav Republic of Macedonia','MK','MKD','Macedonia, the former Yugoslav Republic of','150','039',0,0,0,NULL,NULL),(818,'Cairo','Egyptian','818','Egyptian pound','EGP','piastre','Arab Republic of Egypt','EG','EGY','Egypt','002','015',0,0,0,NULL,NULL),(826,'London','British','826','pound sterling','GBP','penny (pl. pence)','United Kingdom of Great Britain and Northern Ireland','GB','GBR','United Kingdom','150','154',1,0,0,NULL,NULL),(831,'St <NAME>','of Guernsey','831','Guernsey pound (GG2)','GGP (GG2)','penny (pl. pence)','Bailiwick of Guernsey','GG','GGY','Guernsey','150','154',0,0,0,NULL,NULL),(832,'St Helier','of Jersey','832','Jersey pound (JE2)','JEP (JE2)','penny (pl. pence)','Bailiwick of Jersey','JE','JEY','Jersey','150','154',0,0,0,NULL,NULL),(833,'Douglas','Manxman; Manxwoman','833','Manx pound (IM2)','IMP (IM2)','penny (pl. pence)','Isle of Man','IM','IMN','Isle of Man','150','154',0,0,0,NULL,NULL),(834,'Dodoma (TZ1)','Tanzanian','834','Tanzanian shilling','TZS','cent','United Republic of Tanzania','TZ','TZA','Tanzania, United Republic of','002','014',0,0,0,NULL,NULL),(840,'Washington DC','American','840','US dollar','USD','cent','United States of America','US','USA','United States','019','021',0,0,0,NULL,NULL),(850,'Charlotte Amalie','US Virgin Islander','850','US dollar','USD','cent','United States Virgin Islands','VI','VIR','Virgin Islands, U.S.','019','029',0,0,0,NULL,NULL),(854,'Ouagadougou','Burkinabe','854','CFA franc (BCEAO)','XOF','centime','Burkina Faso','BF','BFA','Burkina Faso','002','011',0,0,0,NULL,NULL),(858,'Montevideo','Uruguayan','858','Uruguayan peso','UYU','centésimo','Eastern Republic of Uruguay','UY','URY','Uruguay','019','005',0,1,0,NULL,NULL),(860,'Tashkent','Uzbek','860','sum (inv.)','UZS','tiyin (inv.)','Republic of Uzbekistan','UZ','UZB','Uzbekistan','142','143',0,0,0,NULL,NULL),(862,'Caracas','Venezuelan','862','bolívar fuerte (pl. bolívares fuertes)','VEF','céntimo','Bolivarian Republic of Venezuela','VE','VEN','Venezuela, Bolivarian Republic of','019','005',0,0,0,NULL,NULL),(876,'Mata-Utu','Wallisian; Futunan; Wallis and Futuna Islander','876','CFP franc','XPF','centime','Wallis and Futuna','WF','WLF','Wallis and Futuna','009','061',0,0,0,NULL,NULL),(882,'Apia','Samoan','882','tala (inv.)','WST','sene (inv.)','Independent State of Samoa','WS','WSM','Samoa','009','061',0,0,0,NULL,NULL),(887,'San’a','Yemenite','887','Yemeni rial','YER','fils (inv.)','Republic of Yemen','YE','YEM','Yemen','142','145',0,0,0,NULL,NULL),(894,'Lusaka','Zambian','894','Zambian kwacha (inv.)','ZMW','ngwee (inv.)','Republic of Zambia','ZM','ZMB','Zambia','002','014',0,0,0,NULL,NULL);
/*!40000 ALTER TABLE `countries` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `credits`
--
DROP TABLE IF EXISTS `credits`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `credits` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`account_id` int(10) unsigned NOT NULL,
`client_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`amount` decimal(13,2) NOT NULL,
`balance` decimal(13,2) NOT NULL,
`credit_date` date DEFAULT NULL,
`credit_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`private_notes` text COLLATE utf8_unicode_ci NOT NULL,
`public_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `credits_account_id_public_id_unique` (`account_id`,`public_id`),
KEY `credits_user_id_foreign` (`user_id`),
KEY `credits_account_id_index` (`account_id`),
KEY `credits_client_id_index` (`client_id`),
KEY `credits_public_id_index` (`public_id`),
CONSTRAINT `credits_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
CONSTRAINT `credits_client_id_foreign` FOREIGN KEY (`client_id`) REFERENCES `clients` (`id`) ON DELETE CASCADE,
CONSTRAINT `credits_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `credits`
--
LOCK TABLES `credits` WRITE;
/*!40000 ALTER TABLE `credits` DISABLE KEYS */;
/*!40000 ALTER TABLE `credits` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `currencies`
--
DROP TABLE IF EXISTS `currencies`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `currencies` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`symbol` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`precision` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`thousand_separator` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`decimal_separator` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`code` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`swap_currency_symbol` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=54 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `currencies`
--
LOCK TABLES `currencies` WRITE;
/*!40000 ALTER TABLE `currencies` DISABLE KEYS */;
INSERT INTO `currencies` VALUES (1,'US Dollar','$','2',',','.','USD',0),(2,'British Pound','£','2',',','.','GBP',0),(3,'Euro','€','2','.',',','EUR',0),(4,'South African Rand','R','2','.',',','ZAR',0),(5,'Danish Krone','kr','2','.',',','DKK',1),(6,'Israeli Shekel','NIS ','2',',','.','ILS',0),(7,'Swedish Krona','kr','2','.',',','SEK',1),(8,'Kenyan Shilling','KSh ','2',',','.','KES',0),(9,'Canadian Dollar','C$','2',',','.','CAD',0),(10,'Philippine Peso','P ','2',',','.','PHP',0),(11,'Indian Rupee','Rs. ','2',',','.','INR',0),(12,'Australian Dollar','$','2',',','.','AUD',0),(13,'Singapore Dollar','','2',',','.','SGD',0),(14,'Norske Kroner','kr','2','.',',','NOK',1),(15,'New Zealand Dollar','$','2',',','.','NZD',0),(16,'Vietnamese Dong','','0','.',',','VND',0),(17,'Swiss Franc','','2','\'','.','CHF',0),(18,'Guatemalan Quetzal','Q','2',',','.','GTQ',0),(19,'Malaysian Ringgit','RM','2',',','.','MYR',0),(20,'Brazilian Real','R$','2','.',',','BRL',0),(21,'Thai Baht','','2',',','.','THB',0),(22,'Nigerian Naira','','2',',','.','NGN',0),(23,'Argentine Peso','$','2','.',',','ARS',0),(24,'Bangladeshi Taka','Tk','2',',','.','BDT',0),(25,'United Arab Emirates Dirham','DH ','2',',','.','AED',0),(26,'Hong Kong Dollar','','2',',','.','HKD',0),(27,'Indonesian Rupiah','Rp','2',',','.','IDR',0),(28,'Mexican Peso','$','2',',','.','MXN',0),(29,'Egyptian Pound','E£','2',',','.','EGP',0),(30,'Colombian Peso','$','2','.',',','COP',0),(31,'West African Franc','CFA ','2',',','.','XOF',0),(32,'Chinese Renminbi','RMB ','2',',','.','CNY',0),(33,'Rwandan Franc','RF ','2',',','.','RWF',0),(34,'Tanzanian Shilling','TSh ','2',',','.','TZS',0),(35,'Netherlands Antillean Guilder','','2','.',',','ANG',0),(36,'Trinidad and Tobago Dollar','TT$','2',',','.','TTD',0),(37,'East Caribbean Dollar','EC$','2',',','.','XCD',0),(38,'Ghanaian Cedi','','2',',','.','GHS',0),(39,'Bulgarian Lev','','2',' ','.','BGN',0),(40,'Aruban Florin','Afl. ','2',' ','.','AWG',0),(41,'Turkish Lira','TL ','2','.',',','TRY',0),(42,'Romanian New Leu','','2',',','.','RON',0),(43,'Croatian Kuna','kn','2','.',',','HKR',0),(44,'Saudi Riyal','','2',',','.','SAR',0),(45,'Japanese Yen','¥','0',',','.','JPY',0),(46,'Maldivian Rufiyaa','','2',',','.','MVR',0),(47,'Costa Rican Colón','','2',',','.','CRC',0),(48,'Pakistani Rupee','Rs ','0',',','.','PKR',0),(49,'Polish Zloty','zł','2',' ',',','PLN',1),(50,'Sri Lankan Rupee','LKR','2',',','.','LKR',1),(51,'Czech Koruna','Kč','2',' ',',','CZK',1),(52,'Uruguayan Peso','$','2','.',',','UYU',0),(53,'Namibian Dollar','$','2',',','.','NAD',0);
/*!40000 ALTER TABLE `currencies` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `date_formats`
--
DROP TABLE IF EXISTS `date_formats`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `date_formats` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`format` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`picker_format` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`format_moment` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `date_formats`
--
LOCK TABLES `date_formats` WRITE;
/*!40000 ALTER TABLE `date_formats` DISABLE KEYS */;
INSERT INTO `date_formats` VALUES (1,'d/M/Y','dd/M/yyyy','DD/MMM/YYYY'),(2,'d-M-Y','dd-M-yyyy','DD-MMM-YYYY'),(3,'d/F/Y','dd/MM/yyyy','DD/MMMM/YYYY'),(4,'d-F-Y','dd-MM-yyyy','DD-MMMM-YYYY'),(5,'M j, Y','M d, yyyy','MMM D, YYYY'),(6,'F j, Y','MM d, yyyy','MMMM D, YYYY'),(7,'D M j, Y','D MM d, yyyy','ddd MMM Do, YYYY'),(8,'Y-m-d','yyyy-mm-dd','YYYY-MM-DD'),(9,'d-m-Y','dd-mm-yyyy','DD-MM-YYYY'),(10,'m/d/Y','mm/dd/yyyy','MM/DD/YYYY'),(11,'d.m.Y','dd.mm.yyyy','D.MM.YYYY'),(12,'j. M. Y','d. M. yyyy','DD. MMM. YYYY'),(13,'j. F Y','d. MM yyyy','DD. MMMM YYYY');
/*!40000 ALTER TABLE `date_formats` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `datetime_formats`
--
DROP TABLE IF EXISTS `datetime_formats`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `datetime_formats` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`format` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`format_moment` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `datetime_formats`
--
LOCK TABLES `datetime_formats` WRITE;
/*!40000 ALTER TABLE `datetime_formats` DISABLE KEYS */;
INSERT INTO `datetime_formats` VALUES (1,'d/M/Y g:i a','DD/MMM/YYYY h:mm:ss a'),(2,'d-M-Y g:i a','DD-MMM-YYYY h:mm:ss a'),(3,'d/F/Y g:i a','DD/MMMM/YYYY h:mm:ss a'),(4,'d-F-Y g:i a','DD-MMMM-YYYY h:mm:ss a'),(5,'M j, Y g:i a','MMM D, YYYY h:mm:ss a'),(6,'F j, Y g:i a','MMMM D, YYYY h:mm:ss a'),(7,'D M jS, Y g:i a','ddd MMM Do, YYYY h:mm:ss a'),(8,'Y-m-d g:i a','YYYY-MM-DD h:mm:ss a'),(9,'d-m-Y g:i a','DD-MM-YYYY h:mm:ss a'),(10,'m/d/Y g:i a','MM/DD/YYYY h:mm:ss a'),(11,'d.m.Y g:i a','D.MM.YYYY h:mm:ss a'),(12,'j. M. Y g:i a','DD. MMM. YYYY h:mm:ss a'),(13,'j. F Y g:i a','DD. MMMM YYYY h:mm:ss a');
/*!40000 ALTER TABLE `datetime_formats` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `documents`
--
DROP TABLE IF EXISTS `documents`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `documents` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`public_id` int(10) unsigned DEFAULT NULL,
`account_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`invoice_id` int(10) unsigned DEFAULT NULL,
`expense_id` int(10) unsigned DEFAULT NULL,
`path` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`preview` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`type` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`disk` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`hash` varchar(40) COLLATE utf8_unicode_ci NOT NULL,
`size` int(10) unsigned NOT NULL,
`width` int(10) unsigned DEFAULT NULL,
`height` int(10) unsigned DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `documents_account_id_public_id_unique` (`account_id`,`public_id`),
KEY `documents_user_id_foreign` (`user_id`),
KEY `documents_invoice_id_foreign` (`invoice_id`),
KEY `documents_expense_id_foreign` (`expense_id`),
CONSTRAINT `documents_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
CONSTRAINT `documents_expense_id_foreign` FOREIGN KEY (`expense_id`) REFERENCES `expenses` (`id`) ON DELETE CASCADE,
CONSTRAINT `documents_invoice_id_foreign` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`) ON DELETE CASCADE,
CONSTRAINT `documents_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `documents`
--
LOCK TABLES `documents` WRITE;
/*!40000 ALTER TABLE `documents` DISABLE KEYS */;
/*!40000 ALTER TABLE `documents` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `expense_categories`
--
DROP TABLE IF EXISTS `expense_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `expense_categories` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned NOT NULL,
`account_id` int(10) unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`public_id` int(10) unsigned NOT NULL,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `expense_categories_account_id_public_id_unique` (`account_id`,`public_id`),
KEY `expense_categories_account_id_index` (`account_id`),
KEY `expense_categories_public_id_index` (`public_id`),
KEY `expense_categories_user_id_foreign` (`user_id`),
CONSTRAINT `expense_categories_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
CONSTRAINT `expense_categories_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `expense_categories`
--
LOCK TABLES `expense_categories` WRITE;
/*!40000 ALTER TABLE `expense_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `expense_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `expenses`
--
DROP TABLE IF EXISTS `expenses`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `expenses` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`account_id` int(10) unsigned NOT NULL,
`vendor_id` int(10) unsigned DEFAULT NULL,
`user_id` int(10) unsigned NOT NULL,
`invoice_id` int(10) unsigned DEFAULT NULL,
`client_id` int(10) unsigned DEFAULT NULL,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`amount` decimal(13,2) NOT NULL,
`exchange_rate` decimal(13,4) NOT NULL,
`expense_date` date DEFAULT NULL,
`private_notes` text COLLATE utf8_unicode_ci NOT NULL,
`public_notes` text COLLATE utf8_unicode_ci NOT NULL,
`invoice_currency_id` int(10) unsigned NOT NULL,
`should_be_invoiced` tinyint(1) NOT NULL DEFAULT '1',
`public_id` int(10) unsigned NOT NULL,
`transaction_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`bank_id` int(10) unsigned DEFAULT NULL,
`expense_currency_id` int(10) unsigned DEFAULT NULL,
`expense_category_id` int(10) unsigned DEFAULT NULL,
`tax_name1` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`tax_rate1` decimal(13,3) NOT NULL,
`tax_name2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`tax_rate2` decimal(13,3) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `expenses_account_id_public_id_unique` (`account_id`,`public_id`),
KEY `expenses_user_id_foreign` (`user_id`),
KEY `expenses_account_id_index` (`account_id`),
KEY `expenses_public_id_index` (`public_id`),
KEY `expenses_expense_currency_id_index` (`expense_currency_id`),
KEY `expenses_invoice_currency_id_foreign` (`invoice_currency_id`),
KEY `expenses_expense_category_id_index` (`expense_category_id`),
CONSTRAINT `expenses_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
CONSTRAINT `expenses_expense_category_id_foreign` FOREIGN KEY (`expense_category_id`) REFERENCES `expense_categories` (`id`) ON DELETE CASCADE,
CONSTRAINT `expenses_expense_currency_id_foreign` FOREIGN KEY (`expense_currency_id`) REFERENCES `currencies` (`id`),
CONSTRAINT `expenses_invoice_currency_id_foreign` FOREIGN KEY (`invoice_currency_id`) REFERENCES `currencies` (`id`),
CONSTRAINT `expenses_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `expenses`
--
LOCK TABLES `expenses` WRITE;
/*!40000 ALTER TABLE `expenses` DISABLE KEYS */;
/*!40000 ALTER TABLE `expenses` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `failed_jobs`
--
DROP TABLE IF EXISTS `failed_jobs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `failed_jobs` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`connection` text COLLATE utf8_unicode_ci NOT NULL,
`queue` text COLLATE utf8_unicode_ci NOT NULL,
`payload` longtext COLLATE utf8_unicode_ci NOT NULL,
`failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `failed_jobs`
--
LOCK TABLES `failed_jobs` WRITE;
/*!40000 ALTER TABLE `failed_jobs` DISABLE KEYS */;
/*!40000 ALTER TABLE `failed_jobs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `fonts`
--
DROP TABLE IF EXISTS `fonts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `fonts` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`folder` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`css_stack` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`css_weight` smallint(6) NOT NULL DEFAULT '400',
`google_font` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`normal` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`bold` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`italics` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`bolditalics` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`sort_order` int(10) unsigned NOT NULL DEFAULT '10000',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `fonts`
--
LOCK TABLES `fonts` WRITE;
/*!40000 ALTER TABLE `fonts` DISABLE KEYS */;
INSERT INTO `fonts` VALUES (1,'Roboto','roboto','\'Roboto\', Arial, Helvetica, sans-serif',400,'Roboto:400,700,900,100','Roboto-Regular.ttf','Roboto-Medium.ttf','Roboto-Italic.ttf','Roboto-Italic.ttf',100),(2,'Abril Fatface','abril_fatface','\'Abril Fatface\', Georgia, serif',400,'Abril+Fatface','AbrilFatface-Regular.ttf','AbrilFatface-Regular.ttf','AbrilFatface-Regular.ttf','AbrilFatface-Regular.ttf',200),(3,'Arvo','arvo','\'Arvo\', Georgia, serif',400,'Arvo:400,700','Arvo-Regular.ttf','Arvo-Bold.ttf','Arvo-Italic.ttf','Arvo-Italic.ttf',300),(4,'Josefin Sans','josefin_sans','\'Josefin Sans\', Arial, Helvetica, sans-serif',400,'Josefin Sans:400,700,900,100','JosefinSans-Regular.ttf','JosefinSans-Bold.ttf','JosefinSans-Italic.ttf','JosefinSans-Italic.ttf',400),(5,'Josefin Sans Light','josefin_sans_light','\'Josefin Sans\', Arial, Helvetica, sans-serif',300,'Josefin+Sans:300,700,900,100','JosefinSans-Light.ttf','JosefinSans-SemiBold.ttf','JosefinSans-LightItalic.ttf','JosefinSans-LightItalic.ttf',600),(6,'Josefin Slab','josefin_slab','\'Josefin Slab\', Arial, Helvetica, sans-serif',400,'Josefin Sans:400,700,900,100','JosefinSlab-Regular.ttf','JosefinSlab-Bold.ttf','JosefinSlab-Italic.ttf','JosefinSlab-Italic.ttf',700),(7,'Josefin Slab Light','josefin_slab_light','\'Josefin Slab\', Georgia, serif',300,'Josefin+Sans:400,700,900,100','JosefinSlab-Light.ttf','JosefinSlab-SemiBold.ttf','JosefinSlab-LightItalic.ttf','JosefinSlab-LightItalic.ttf',800),(8,'Open Sans','open_sans','\'Open Sans\', Arial, Helvetica, sans-serif',400,'Open+Sans:400,700,900,100','OpenSans-Regular.ttf','OpenSans-Semibold.ttf','OpenSans-Italic.ttf','OpenSans-Italic.ttf',900),(9,'Open Sans Light','open_sans_light','\'Open Sans\', Arial, Helvetica, sans-serif',300,'Open+Sans:300,700,900,100','OpenSans-Light.ttf','OpenSans-Regular.ttf','OpenSans-LightItalic.ttf','OpenSans-LightItalic.ttf',1000),(10,'PT Sans','pt_sans','\'PT Sans\', Arial, Helvetica, sans-serif',400,'PT+Sans:400,700,900,100','PTSans-Regular.ttf','PTSans-Bold.ttf','PTSans-Italic.ttf','PTSans-Italic.ttf',1100),(11,'PT Serif','pt_serif','\'PT Serif\', Georgia, serif',400,'PT+Serif:400,700,900,100','PTSerif-Regular.ttf','PTSerif-Bold.ttf','PTSerif-Italic.ttf','PTSerif-Italic.ttf',1200),(12,'Raleway','raleway','\'Raleway\', Arial, Helvetica, sans-serif',400,'Raleway:400,700,900,100','Raleway-Regular.ttf','Raleway-Medium.ttf','Raleway-Italic.ttf','Raleway-Italic.ttf',1300),(13,'Raleway Light','raleway_light','\'Raleway\', Arial, Helvetica, sans-serif',300,'Raleway:300,700,900,100','Raleway-Light.ttf','Raleway-Medium.ttf','Raleway-LightItalic.ttf','Raleway-LightItalic.ttf',1400),(14,'Titillium','titillium','\'Titillium Web\', Arial, Helvetica, sans-serif',400,'Titillium+Web:400,700,900,100','TitilliumWeb-Regular.ttf','TitilliumWeb-Bold.ttf','TitilliumWeb-Italic.ttf','TitilliumWeb-Italic.ttf',1500),(15,'Titillium Light','titillium_light','\'Titillium Web\', Arial, Helvetica, sans-serif',300,'Titillium+Web:300,700,900,100','TitilliumWeb-Light.ttf','TitilliumWeb-SemiBold.ttf','TitilliumWeb-LightItalic.ttf','TitilliumWeb-LightItalic.ttf',1600),(16,'Ubuntu','ubuntu','\'Ubuntu\', Arial, Helvetica, sans-serif',400,'Ubuntu:400,700,900,100','Ubuntu-Regular.ttf','Ubuntu-Bold.ttf','Ubuntu-Italic.ttf','Ubuntu-Italic.ttf',1700),(17,'Ubuntu Light','ubuntu_light','\'Ubuntu\', Arial, Helvetica, sans-serif',300,'Ubuntu:200,700,900,100','Ubuntu-Light.ttf','Ubuntu-Medium.ttf','Ubuntu-LightItalic.ttf','Ubuntu-LightItalic.ttf',1800),(18,'UKai - Chinese','ukai','',400,'','UKai.ttf','UKai.ttf','UKai.ttf','UKai.ttf',1800),(19,'GenshinGothic P - Japanese','gensha_gothic_p','',400,'','GenShinGothic-P-Regular.ttf','GenShinGothic-P-Regular.ttf','GenShinGothic-P-Regular.ttf','GenShinGothic-P-Regular.ttf',1800),(20,'GenshinGothic - Japanese','gensha_gothic','',400,'','GenShinGothic-Regular.ttf','GenShinGothic-Regular.ttf','GenShinGothic-Regular.ttf','GenShinGothic-Regular.ttf',1800);
/*!40000 ALTER TABLE `fonts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `frequencies`
--
DROP TABLE IF EXISTS `frequencies`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `frequencies` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `frequencies`
--
LOCK TABLES `frequencies` WRITE;
/*!40000 ALTER TABLE `frequencies` DISABLE KEYS */;
INSERT INTO `frequencies` VALUES (1,'Weekly'),(2,'Two weeks'),(3,'Four weeks'),(4,'Monthly'),(5,'Three months'),(6,'Six months'),(7,'Annually');
/*!40000 ALTER TABLE `frequencies` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `gateway_types`
--
DROP TABLE IF EXISTS `gateway_types`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `gateway_types` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`alias` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `gateway_types`
--
LOCK TABLES `gateway_types` WRITE;
/*!40000 ALTER TABLE `gateway_types` DISABLE KEYS */;
INSERT INTO `gateway_types` VALUES (1,'credit_card','Credit Card'),(2,'bank_transfer','Bank Transfer'),(3,'paypal','PayPal'),(4,'bitcoin','Bitcoin'),(5,'dwolla','Dwolla'),(6,'custom','Custom');
/*!40000 ALTER TABLE `gateway_types` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `gateways`
--
DROP TABLE IF EXISTS `gateways`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `gateways` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`provider` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`visible` tinyint(1) NOT NULL DEFAULT '1',
`payment_library_id` int(10) unsigned NOT NULL DEFAULT '1',
`sort_order` int(10) unsigned NOT NULL DEFAULT '10000',
`recommended` tinyint(1) NOT NULL DEFAULT '0',
`site_url` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
`is_offsite` tinyint(1) NOT NULL,
`is_secure` tinyint(1) NOT NULL,
PRIMARY KEY (`id`),
KEY `gateways_payment_library_id_foreign` (`payment_library_id`),
CONSTRAINT `gateways_payment_library_id_foreign` FOREIGN KEY (`payment_library_id`) REFERENCES `payment_libraries` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=63 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `gateways`
--
LOCK TABLES `gateways` WRITE;
/*!40000 ALTER TABLE `gateways` DISABLE KEYS */;
INSERT INTO `gateways` VALUES (1,'2017-01-29 19:20:46','2017-01-29 19:20:46','Authorize.Net AIM','AuthorizeNet_AIM',1,1,4,0,NULL,0,0),(2,'2017-01-29 19:20:46','2017-01-29 19:20:46','Authorize.Net SIM','AuthorizeNet_SIM',1,2,10000,0,NULL,0,0),(3,'2017-01-29 19:20:46','2017-01-29 19:20:46','CardSave','CardSave',1,1,10000,0,NULL,0,0),(4,'2017-01-29 19:20:46','2017-01-29 19:20:46','Eway Rapid','Eway_RapidShared',1,1,10000,0,NULL,1,0),(5,'2017-01-29 19:20:46','2017-01-29 19:20:46','FirstData Connect','FirstData_Connect',1,1,10000,0,NULL,0,0),(6,'2017-01-29 19:20:46','2017-01-29 19:20:46','GoCardless','GoCardless',1,1,10000,0,NULL,1,0),(7,'2017-01-29 19:20:46','2017-01-29 19:20:46','Migs ThreeParty','Migs_ThreeParty',1,1,10000,0,NULL,0,0),(8,'2017-01-29 19:20:46','2017-01-29 19:20:46','Migs TwoParty','Migs_TwoParty',1,1,10000,0,NULL,0,0),(9,'2017-01-29 19:20:46','2017-01-29 19:20:46','Mollie','Mollie',1,1,7,0,NULL,1,0),(10,'2017-01-29 19:20:46','2017-01-29 19:20:46','MultiSafepay','MultiSafepay',1,1,10000,0,NULL,0,0),(11,'2017-01-29 19:20:46','2017-01-29 19:20:46','Netaxept','Netaxept',1,1,10000,0,NULL,0,0),(12,'2017-01-29 19:20:46','2017-01-29 19:20:46','NetBanx','NetBanx',1,1,10000,0,NULL,0,0),(13,'2017-01-29 19:20:46','2017-01-29 19:20:46','PayFast','PayFast',1,1,10000,0,NULL,1,0),(14,'2017-01-29 19:20:46','2017-01-29 19:20:46','Payflow Pro','Payflow_Pro',1,1,10000,0,NULL,0,0),(15,'2017-01-29 19:20:46','2017-01-29 19:20:46','PaymentExpress PxPay','PaymentExpress_PxPay',1,1,10000,0,NULL,0,0),(16,'2017-01-29 19:20:46','2017-01-29 19:20:46','PaymentExpress PxPost','PaymentExpress_PxPost',1,1,10000,0,NULL,0,0),(17,'2017-01-29 19:20:46','2017-01-29 19:20:46','PayPal Express','PayPal_Express',1,1,3,0,NULL,1,0),(18,'2017-01-29 19:20:46','2017-01-29 19:20:46','PayPal Pro','PayPal_Pro',1,1,10000,0,NULL,0,0),(19,'2017-01-29 19:20:46','2017-01-29 19:20:46','Pin','Pin',1,1,10000,0,NULL,0,0),(20,'2017-01-29 19:20:46','2017-01-29 19:20:46','SagePay Direct','SagePay_Direct',1,1,10000,0,NULL,0,0),(21,'2017-01-29 19:20:46','2017-01-29 19:20:46','SagePay Server','SagePay_Server',1,1,10000,0,NULL,0,0),(22,'2017-01-29 19:20:46','2017-01-29 19:20:46','SecurePay DirectPost','SecurePay_DirectPost',1,1,10000,0,NULL,0,0),(23,'2017-01-29 19:20:46','2017-01-29 19:20:46','Stripe','Stripe',1,1,1,0,NULL,0,0),(24,'2017-01-29 19:20:46','2017-01-29 19:20:46','TargetPay Direct eBanking','TargetPay_Directebanking',1,1,10000,0,NULL,0,0),(25,'2017-01-29 19:20:46','2017-01-29 19:20:46','TargetPay Ideal','TargetPay_Ideal',1,1,10000,0,NULL,0,0),(26,'2017-01-29 19:20:46','2017-01-29 19:20:46','TargetPay Mr Cash','TargetPay_Mrcash',1,1,10000,0,NULL,0,0),(27,'2017-01-29 19:20:46','2017-01-29 19:20:46','TwoCheckout','TwoCheckout',1,1,10000,0,NULL,1,0),(28,'2017-01-29 19:20:46','2017-01-29 19:20:46','WorldPay','WorldPay',1,1,10000,0,NULL,0,0),(29,'2017-01-29 19:20:46','2017-01-29 19:20:46','BeanStream','BeanStream',1,2,10000,0,NULL,0,0),(30,'2017-01-29 19:20:46','2017-01-29 19:20:46','Psigate','Psigate',1,2,10000,0,NULL,0,0),(31,'2017-01-29 19:20:46','2017-01-29 19:20:46','moolah','AuthorizeNet_AIM',1,1,10000,0,NULL,0,0),(32,'2017-01-29 19:20:46','2017-01-29 19:20:46','Alipay','Alipay_Express',1,1,10000,0,NULL,0,0),(33,'2017-01-29 19:20:46','2017-01-29 19:20:46','Buckaroo','Buckaroo_CreditCard',1,1,10000,0,NULL,0,0),(34,'2017-01-29 19:20:46','2017-01-29 19:20:46','Coinbase','Coinbase',1,1,10000,0,NULL,0,0),(35,'2017-01-29 19:20:46','2017-01-29 19:20:46','DataCash','DataCash',1,1,10000,0,NULL,0,0),(36,'2017-01-29 19:20:46','2017-01-29 19:20:46','Neteller','Neteller',1,2,10000,0,NULL,0,0),(37,'2017-01-29 19:20:46','2017-01-29 19:20:46','Pacnet','Pacnet',1,1,10000,0,NULL,0,0),(38,'2017-01-29 19:20:46','2017-01-29 19:20:46','PaymentSense','PaymentSense',1,2,10000,0,NULL,0,0),(39,'2017-01-29 19:20:46','2017-01-29 19:20:46','Realex','Realex_Remote',1,1,10000,0,NULL,0,0),(40,'2017-01-29 19:20:46','2017-01-29 19:20:46','Sisow','Sisow',1,1,10000,0,NULL,0,0),(41,'2017-01-29 19:20:46','2017-01-29 19:20:46','Skrill','Skrill',1,1,10000,0,NULL,1,0),(42,'2017-01-29 19:20:46','2017-01-29 19:20:46','BitPay','BitPay',1,1,6,0,NULL,1,0),(43,'2017-01-29 19:20:46','2017-01-29 19:20:46','Dwolla','Dwolla',1,1,5,0,NULL,1,0),(44,'2017-01-29 19:20:46','2017-01-29 19:20:46','AGMS','Agms',1,1,10000,0,NULL,0,0),(45,'2017-01-29 19:20:46','2017-01-29 19:20:46','Barclays','BarclaysEpdq\\Essential',1,1,10000,0,NULL,0,0),(46,'2017-01-29 19:20:46','2017-01-29 19:20:46','Cardgate','Cardgate',1,1,10000,0,NULL,0,0),(47,'2017-01-29 19:20:46','2017-01-29 19:20:46','Checkout.com','CheckoutCom',1,1,10000,0,NULL,0,0),(48,'2017-01-29 19:20:46','2017-01-29 19:20:46','Creditcall','Creditcall',1,1,10000,0,NULL,0,0),(49,'2017-01-29 19:20:46','2017-01-29 19:20:46','Cybersource','Cybersource',1,1,10000,0,NULL,0,0),(50,'2017-01-29 19:20:46','2017-01-29 19:20:46','ecoPayz','Ecopayz',1,1,10000,0,NULL,0,0),(51,'2017-01-29 19:20:46','2017-01-29 19:20:46','Fasapay','Fasapay',1,1,10000,0,NULL,0,0),(52,'2017-01-29 19:20:46','2017-01-29 19:20:46','Komoju','Komoju',1,1,10000,0,NULL,0,0),(53,'2017-01-29 19:20:46','2017-01-29 19:20:46','Multicards','Multicards',1,1,10000,0,NULL,0,0),(54,'2017-01-29 19:20:46','2017-01-29 19:20:46','Pagar.Me','Pagarme',1,2,10000,0,NULL,0,0),(55,'2017-01-29 19:20:46','2017-01-29 19:20:46','Paysafecard','Paysafecard',1,1,10000,0,NULL,0,0),(56,'2017-01-29 19:20:46','2017-01-29 19:20:46','Paytrace','Paytrace_CreditCard',1,1,10000,0,NULL,0,0),(57,'2017-01-29 19:20:46','2017-01-29 19:20:46','Secure Trading','SecureTrading',1,1,10000,0,NULL,0,0),(58,'2017-01-29 19:20:46','2017-01-29 19:20:46','SecPay','SecPay',1,1,10000,0,NULL,0,0),(59,'2017-01-29 19:20:46','2017-01-29 19:20:46','WeChat Express','WeChat_Express',1,2,10000,0,NULL,0,0),(60,'2017-01-29 19:20:46','2017-01-29 19:20:46','WePay','WePay',1,1,10000,0,NULL,0,0),(61,'2017-01-29 19:20:46','2017-01-29 19:20:46','Braintree','Braintree',1,1,2,0,NULL,0,0),(62,'2017-01-29 19:20:46','2017-01-29 19:20:46','Custom','Custom',1,1,8,0,NULL,1,0);
/*!40000 ALTER TABLE `gateways` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `industries`
--
DROP TABLE IF EXISTS `industries`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `industries` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `industries`
--
LOCK TABLES `industries` WRITE;
/*!40000 ALTER TABLE `industries` DISABLE KEYS */;
INSERT INTO `industries` VALUES (1,'Accounting & Legal'),(2,'Advertising'),(3,'Aerospace'),(4,'Agriculture'),(5,'Automotive'),(6,'Banking & Finance'),(7,'Biotechnology'),(8,'Broadcasting'),(9,'Business Services'),(10,'Commodities & Chemicals'),(11,'Communications'),(12,'Computers & Hightech'),(13,'Defense'),(14,'Energy'),(15,'Entertainment'),(16,'Government'),(17,'Healthcare & Life Sciences'),(18,'Insurance'),(19,'Manufacturing'),(20,'Marketing'),(21,'Media'),(22,'Nonprofit & Higher Ed'),(23,'Pharmaceuticals'),(24,'Professional Services & Consulting'),(25,'Real Estate'),(26,'Retail & Wholesale'),(27,'Sports'),(28,'Transportation'),(29,'Travel & Luxury'),(30,'Other'),(31,'Photography'),(32,'Construction');
/*!40000 ALTER TABLE `industries` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `invitations`
--
DROP TABLE IF EXISTS `invitations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `invitations` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`account_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`contact_id` int(10) unsigned NOT NULL,
`invoice_id` int(10) unsigned NOT NULL,
`invitation_key` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`transaction_reference` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`sent_date` timestamp NULL DEFAULT NULL,
`viewed_date` timestamp NULL DEFAULT NULL,
`public_id` int(10) unsigned NOT NULL,
`opened_date` timestamp NULL DEFAULT NULL,
`message_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`email_error` text COLLATE utf8_unicode_ci,
`signature_base64` text COLLATE utf8_unicode_ci,
`signature_date` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `invitations_account_id_public_id_unique` (`account_id`,`public_id`),
UNIQUE KEY `invitations_invitation_key_unique` (`invitation_key`),
KEY `invitations_user_id_foreign` (`user_id`),
KEY `invitations_contact_id_foreign` (`contact_id`),
KEY `invitations_invoice_id_index` (`invoice_id`),
KEY `invitations_public_id_index` (`public_id`),
CONSTRAINT `invitations_contact_id_foreign` FOREIGN KEY (`contact_id`) REFERENCES `contacts` (`id`) ON DELETE CASCADE,
CONSTRAINT `invitations_invoice_id_foreign` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`) ON DELETE CASCADE,
CONSTRAINT `invitations_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `invitations`
--
LOCK TABLES `invitations` WRITE;
/*!40000 ALTER TABLE `invitations` DISABLE KEYS */;
/*!40000 ALTER TABLE `invitations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `invoice_designs`
--
DROP TABLE IF EXISTS `invoice_designs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `invoice_designs` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`javascript` mediumtext COLLATE utf8_unicode_ci,
`pdfmake` mediumtext COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `invoice_designs`
--
LOCK TABLES `invoice_designs` WRITE;
/*!40000 ALTER TABLE `invoice_designs` DISABLE KEYS */;
INSERT INTO `invoice_designs` VALUES (1,'Clean','var GlobalY=0;//Y position of line at current page\n\n var client = invoice.client;\n var account = invoice.account;\n var currencyId = client.currency_id;\n\n layout.headerRight = 550;\n layout.rowHeight = 15;\n\n doc.setFontSize(9);\n\n if (invoice.image)\n {\n var left = layout.headerRight - invoice.imageWidth;\n doc.addImage(invoice.image, \'JPEG\', layout.marginLeft, 30);\n }\n \n if (!invoice.is_pro && logoImages.imageLogo1)\n {\n pageHeight=820;\n y=pageHeight-logoImages.imageLogoHeight1;\n doc.addImage(logoImages.imageLogo1, \'JPEG\', layout.marginLeft, y, logoImages.imageLogoWidth1, logoImages.imageLogoHeight1);\n }\n\n doc.setFontSize(9);\n SetPdfColor(\'LightBlue\', doc, \'primary\');\n displayAccount(doc, invoice, 220, layout.accountTop, layout);\n\n SetPdfColor(\'LightBlue\', doc, \'primary\');\n doc.setFontSize(\'11\');\n doc.text(50, layout.headerTop, (invoice.is_quote ? invoiceLabels.quote : invoiceLabels.invoice).toUpperCase());\n\n\n SetPdfColor(\'Black\',doc); //set black color\n doc.setFontSize(9);\n\n var invoiceHeight = displayInvoice(doc, invoice, 50, 170, layout);\n var clientHeight = displayClient(doc, invoice, 220, 170, layout);\n var detailsHeight = Math.max(invoiceHeight, clientHeight);\n layout.tableTop = Math.max(layout.tableTop, layout.headerTop + detailsHeight + (3 * layout.rowHeight));\n \n doc.setLineWidth(0.3); \n doc.setDrawColor(200,200,200);\n doc.line(layout.marginLeft - layout.tablePadding, layout.headerTop + 6, layout.marginRight + layout.tablePadding, layout.headerTop + 6);\n doc.line(layout.marginLeft - layout.tablePadding, layout.headerTop + detailsHeight + 14, layout.marginRight + layout.tablePadding, layout.headerTop + detailsHeight + 14);\n\n doc.setFontSize(10);\n doc.setFontType(\'bold\');\n displayInvoiceHeader(doc, invoice, layout);\n var y = displayInvoiceItems(doc, invoice, layout);\n\n doc.setFontSize(9);\n doc.setFontType(\'bold\');\n\n GlobalY=GlobalY+25;\n\n\n doc.setLineWidth(0.3);\n doc.setDrawColor(241,241,241);\n doc.setFillColor(241,241,241);\n var x1 = layout.marginLeft - 12;\n var y1 = GlobalY-layout.tablePadding;\n\n var w2 = 510 + 24;\n var h2 = doc.internal.getFontSize()*3+layout.tablePadding*2;\n\n if (invoice.discount) {\n h2 += doc.internal.getFontSize()*2;\n }\n if (invoice.tax_amount) {\n h2 += doc.internal.getFontSize()*2;\n }\n\n //doc.rect(x1, y1, w2, h2, \'FD\');\n\n doc.setFontSize(9);\n displayNotesAndTerms(doc, layout, invoice, y);\n y += displaySubtotals(doc, layout, invoice, y, layout.unitCostRight);\n\n\n doc.setFontSize(10);\n Msg = invoice.is_quote ? invoiceLabels.total : invoiceLabels.balance_due;\n var TmpMsgX = layout.unitCostRight-(doc.getStringUnitWidth(Msg) * doc.internal.getFontSize());\n \n doc.text(TmpMsgX, y, Msg);\n\n SetPdfColor(\'LightBlue\', doc, \'primary\');\n AmountText = formatMoney(invoice.balance_amount, currencyId);\n headerLeft=layout.headerRight+400;\n var AmountX = layout.lineTotalRight - (doc.getStringUnitWidth(AmountText) * doc.internal.getFontSize());\n doc.text(AmountX, y, AmountText);','{\n \"content\": [{\n \"columns\": [\n {\n \"image\": \"$accountLogo\",\n \"fit\": [120, 80]\n },\n {\n \"stack\": \"$accountDetails\",\n \"margin\": [7, 0, 0, 0]\n },\n {\n \"stack\": \"$accountAddress\"\n }\n ]\n },\n {\n \"text\": \"$entityTypeUC\",\n \"margin\": [8, 30, 8, 5],\n \"style\": \"entityTypeLabel\"\n \n },\n {\n \"table\": {\n \"headerRows\": 1,\n \"widths\": [\"auto\", \"auto\", \"*\"],\n \"body\": [\n [\n {\n \"table\": { \n \"body\": \"$invoiceDetails\"\n },\n \"margin\": [0, 0, 12, 0],\n \"layout\": \"noBorders\"\n }, \n {\n \"stack\": \"$clientDetails\"\n },\n {\n \"text\": \"\"\n }\n ]\n ]\n },\n \"layout\": {\n \"hLineWidth\": \"$firstAndLast:.5\",\n \"vLineWidth\": \"$none\",\n \"hLineColor\": \"#D8D8D8\",\n \"paddingLeft\": \"$amount:8\", \n \"paddingRight\": \"$amount:8\", \n \"paddingTop\": \"$amount:6\", \n \"paddingBottom\": \"$amount:6\"\n }\n },\n {\n \"style\": \"invoiceLineItemsTable\",\n \"table\": {\n \"headerRows\": 1,\n \"widths\": \"$invoiceLineItemColumns\",\n \"body\": \"$invoiceLineItems\"\n },\n \"layout\": {\n \"hLineWidth\": \"$notFirst:.5\",\n \"vLineWidth\": \"$none\",\n \"hLineColor\": \"#D8D8D8\",\n \"paddingLeft\": \"$amount:8\", \n \"paddingRight\": \"$amount:8\", \n \"paddingTop\": \"$amount:14\", \n \"paddingBottom\": \"$amount:14\" \n }\n },\n {\n \"columns\": [ \n \"$notesAndTerms\",\n {\n \"table\": {\n \"widths\": [\"*\", \"40%\"],\n \"body\": \"$subtotals\"\n },\n \"layout\": {\n \"hLineWidth\": \"$none\",\n \"vLineWidth\": \"$none\",\n \"paddingLeft\": \"$amount:34\", \n \"paddingRight\": \"$amount:8\", \n \"paddingTop\": \"$amount:4\", \n \"paddingBottom\": \"$amount:4\" \n }\n }\n ]\n },\n {\n \"stack\": [\n \"$invoiceDocuments\"\n ],\n \"style\": \"invoiceDocuments\"\n }\n ],\n \"defaultStyle\": {\n \"font\": \"$bodyFont\",\n \"fontSize\": \"$fontSize\",\n \"margin\": [8, 4, 8, 4]\n },\n \"footer\": {\n \"columns\": [\n {\n \"text\": \"$invoiceFooter\",\n \"alignment\": \"left\"\n }\n ],\n \"margin\": [40, -20, 40, 0]\n },\n \"styles\": {\n \"entityTypeLabel\": {\n \"font\": \"$headerFont\",\n \"fontSize\": \"$fontSizeLargest\",\n \"color\": \"$primaryColor:#37a3c6\"\n },\n \"primaryColor\":{\n \"color\": \"$primaryColor:#37a3c6\"\n },\n \"accountName\": {\n \"color\": \"$primaryColor:#37a3c6\",\n \"bold\": true\n },\n \"invoiceDetails\": {\n \"margin\": [0, 0, 8, 0]\n }, \n \"accountDetails\": {\n \"margin\": [0, 2, 0, 2]\n },\n \"clientDetails\": {\n \"margin\": [0, 2, 0, 2]\n },\n \"notesAndTerms\": {\n \"margin\": [0, 2, 0, 2]\n },\n \"accountAddress\": {\n \"margin\": [0, 2, 0, 2]\n },\n \"odd\": {\n \"fillColor\": \"#fbfbfb\"\n },\n \"productKey\": {\n \"color\": \"$primaryColor:#37a3c6\",\n \"bold\": true\n },\n \"balanceDueLabel\": {\n \"fontSize\": \"$fontSizeLarger\"\n },\n \"balanceDue\": {\n \"fontSize\": \"$fontSizeLarger\",\n \"color\": \"$primaryColor:#37a3c6\"\n }, \n \"invoiceNumber\": {\n \"bold\": true\n },\n \"tableHeader\": {\n \"bold\": true,\n \"fontSize\": \"$fontSizeLarger\"\n },\n \"costTableHeader\": {\n \"alignment\": \"right\"\n },\n \"qtyTableHeader\": {\n \"alignment\": \"right\"\n },\n \"taxTableHeader\": {\n \"alignment\": \"right\"\n },\n \"lineTotalTableHeader\": {\n \"alignment\": \"right\"\n }, \n \"invoiceLineItemsTable\": {\n \"margin\": [0, 16, 0, 16]\n },\n \"clientName\": {\n \"bold\": true\n },\n \"cost\": {\n \"alignment\": \"right\"\n },\n \"quantity\": {\n \"alignment\": \"right\"\n },\n \"tax\": {\n \"alignment\": \"right\"\n },\n \"lineTotal\": {\n \"alignment\": \"right\"\n },\n \"subtotals\": {\n \"alignment\": \"right\"\n }, \n \"termsLabel\": {\n \"bold\": true\n },\n \"header\": {\n \"font\": \"$headerFont\",\n \"fontSize\": \"$fontSizeLargest\",\n \"bold\": true\n },\n \"subheader\": {\n \"font\": \"$headerFont\",\n \"fontSize\": \"$fontSizeLarger\"\n },\n \"help\": {\n \"fontSize\": \"$fontSizeSmaller\",\n \"color\": \"#737373\"\n },\n \"invoiceDocuments\": {\n \"margin\": [7, 0, 7, 0]\n },\n \"invoiceDocument\": {\n \"margin\": [0, 10, 0, 10]\n }\n },\n \"pageMargins\": [40, 40, 40, 60]\n}\n'),(2,'Bold',' var GlobalY=0;//Y position of line at current page\n\n var client = invoice.client;\n var account = invoice.account;\n var currencyId = client.currency_id;\n\n layout.headerRight = 150;\n layout.rowHeight = 15;\n layout.headerTop = 125;\n layout.tableTop = 300;\n\n doc.setLineWidth(0.5);\n\n if (NINJA.primaryColor) {\n setDocHexFill(doc, NINJA.primaryColor);\n setDocHexDraw(doc, NINJA.primaryColor);\n } else {\n doc.setFillColor(46,43,43);\n } \n\n var x1 =0;\n var y1 = 0;\n var w2 = 595;\n var h2 = 100;\n doc.rect(x1, y1, w2, h2, \'FD\');\n\n if (invoice.image)\n {\n var left = layout.headerRight - invoice.imageWidth;\n doc.addImage(invoice.image, \'JPEG\', layout.marginLeft, 30);\n }\n\n doc.setLineWidth(0.5);\n if (NINJA.primaryColor) {\n setDocHexFill(doc, NINJA.primaryColor);\n setDocHexDraw(doc, NINJA.primaryColor);\n } else {\n doc.setFillColor(46,43,43);\n doc.setDrawColor(46,43,43);\n } \n\n // return doc.setTextColor(240,240,240);//select color Custom Report GRAY Colour\n var x1 = 0;//tableLeft-tablePadding ;\n var y1 = 750;\n var w2 = 596;\n var h2 = 94;//doc.internal.getFontSize()*length+length*1.1;//+h;//+tablePadding;\n\n doc.rect(x1, y1, w2, h2, \'FD\');\n if (!invoice.is_pro && logoImages.imageLogo2)\n {\n pageHeight=820;\n var left = 250;//headerRight ;\n y=pageHeight-logoImages.imageLogoHeight2;\n var headerRight=370;\n\n var left = headerRight - logoImages.imageLogoWidth2;\n doc.addImage(logoImages.imageLogo2, \'JPEG\', left, y, logoImages.imageLogoWidth2, logoImages.imageLogoHeight2);\n }\n\n doc.setFontSize(7);\n doc.setFontType(\'bold\');\n SetPdfColor(\'White\',doc);\n\n displayAccount(doc, invoice, 300, layout.accountTop, layout);\n\n\n var y = layout.accountTop;\n var left = layout.marginLeft;\n var headerY = layout.headerTop;\n\n SetPdfColor(\'GrayLogo\',doc); //set black color\n doc.setFontSize(7);\n\n //show left column\n SetPdfColor(\'Black\',doc); //set black color\n doc.setFontType(\'normal\');\n\n //publish filled box\n doc.setDrawColor(200,200,200);\n\n if (NINJA.secondaryColor) {\n setDocHexFill(doc, NINJA.secondaryColor);\n } else {\n doc.setFillColor(54,164,152); \n } \n\n GlobalY=190;\n doc.setLineWidth(0.5);\n\n var BlockLenght=220;\n var x1 =595-BlockLenght;\n var y1 = GlobalY-12;\n var w2 = BlockLenght;\n var h2 = getInvoiceDetailsHeight(invoice, layout) + layout.tablePadding + 2;\n\n doc.rect(x1, y1, w2, h2, \'FD\');\n\n SetPdfColor(\'SomeGreen\', doc, \'secondary\');\n doc.setFontSize(\'14\');\n doc.setFontType(\'bold\');\n doc.text(50, GlobalY, (invoice.is_quote ? invoiceLabels.your_quote : invoiceLabels.your_invoice).toUpperCase());\n\n\n var z=GlobalY;\n z=z+30;\n\n doc.setFontSize(\'8\'); \n SetPdfColor(\'Black\',doc); \n var clientHeight = displayClient(doc, invoice, layout.marginLeft, z, layout);\n layout.tableTop += Math.max(0, clientHeight - 75);\n marginLeft2=395;\n\n //publish left side information\n SetPdfColor(\'White\',doc);\n doc.setFontSize(\'8\');\n var detailsHeight = displayInvoice(doc, invoice, marginLeft2, z-25, layout) + 75;\n layout.tableTop = Math.max(layout.tableTop, layout.headerTop + detailsHeight + (2 * layout.tablePadding));\n\n y=z+60;\n x = GlobalY + 100;\n doc.setFontType(\'bold\');\n\n doc.setFontSize(12);\n doc.setFontType(\'bold\');\n SetPdfColor(\'Black\',doc);\n displayInvoiceHeader(doc, invoice, layout);\n\n var y = displayInvoiceItems(doc, invoice, layout);\n doc.setLineWidth(0.3);\n displayNotesAndTerms(doc, layout, invoice, y);\n y += displaySubtotals(doc, layout, invoice, y, layout.unitCostRight);\n\n doc.setFontType(\'bold\');\n\n doc.setFontSize(12);\n x += doc.internal.getFontSize()*4;\n Msg = invoice.is_quote ? invoiceLabels.total : invoiceLabels.balance_due;\n var TmpMsgX = layout.unitCostRight-(doc.getStringUnitWidth(Msg) * doc.internal.getFontSize());\n\n doc.text(TmpMsgX, y, Msg);\n\n //SetPdfColor(\'LightBlue\',doc);\n AmountText = formatMoney(invoice.balance_amount , currencyId);\n headerLeft=layout.headerRight+400;\n var AmountX = headerLeft - (doc.getStringUnitWidth(AmountText) * doc.internal.getFontSize());\n SetPdfColor(\'SomeGreen\', doc, \'secondary\');\n doc.text(AmountX, y, AmountText);','{\n \"content\": [\n {\n \"columns\": [\n {\n \"width\": 380,\n \"stack\": [\n {\"text\":\"$yourInvoiceLabelUC\", \"style\": \"yourInvoice\"},\n \"$clientDetails\"\n ],\n \"margin\": [60, 100, 0, 10]\n },\n {\n \"canvas\": [\n { \n \"type\": \"rect\", \n \"x\": 0, \n \"y\": 0, \n \"w\": 225, \n \"h\": \"$invoiceDetailsHeight\",\n \"r\":0, \n \"lineWidth\": 1,\n \"color\": \"$primaryColor:#36a498\"\n }\n ],\n \"width\":10,\n \"margin\":[-10,100,0,10]\n },\n { \n \"table\": { \n \"body\": \"$invoiceDetails\"\n },\n \"layout\": \"noBorders\",\n \"margin\": [0, 110, 0, 0]\n }\n ]\n },\n {\n \"style\": \"invoiceLineItemsTable\",\n \"table\": {\n \"headerRows\": 1,\n \"widths\": [\"22%\", \"*\", \"14%\", \"$quantityWidth\", \"$taxWidth\", \"22%\"],\n \"body\": \"$invoiceLineItems\"\n },\n \"layout\": {\n \"hLineWidth\": \"$none\",\n \"vLineWidth\": \"$none\",\n \"paddingLeft\": \"$amount:8\", \n \"paddingRight\": \"$amount:8\", \n \"paddingTop\": \"$amount:14\", \n \"paddingBottom\": \"$amount:14\"\n }\n },\n {\n \"columns\": [\n {\n \"width\": 46,\n \"text\": \" \"\n },\n \"$notesAndTerms\",\n {\n \"table\": {\n \"widths\": [\"*\", \"40%\"],\n \"body\": \"$subtotals\"\n },\n \"layout\": {\n \"hLineWidth\": \"$none\",\n \"vLineWidth\": \"$none\",\n \"paddingLeft\": \"$amount:8\", \n \"paddingRight\": \"$amount:8\", \n \"paddingTop\": \"$amount:4\", \n \"paddingBottom\": \"$amount:4\" \n }\n }]\n },\n {\n \"stack\": [\n \"$invoiceDocuments\"\n ],\n \"style\": \"invoiceDocuments\"\n }\n ],\n \"footer\":\n [\n {\"canvas\": [{ \"type\": \"line\", \"x1\": 0, \"y1\": 0, \"x2\": 600, \"y2\": 0,\"lineWidth\": 100,\"lineColor\":\"$secondaryColor:#292526\"}]},\n {\n \"columns\":\n [\n {\n \"text\": \"$invoiceFooter\",\n \"margin\": [40, -40, 40, 0],\n \"alignment\": \"left\",\n \"color\": \"#FFFFFF\"\n }\n ]\n }\n ],\n \"header\": [\n {\n \"canvas\": [\n {\n \"type\": \"line\",\n \"x1\": 0,\n \"y1\": 0,\n \"x2\": 600,\n \"y2\": 0,\n \"lineWidth\": 200,\n \"lineColor\": \"$secondaryColor:#292526\"\n }\n ],\n \"width\": 10\n },\n {\n \"columns\": [\n { \n \"image\": \"$accountLogo\",\n \"fit\": [120, 60],\n \"margin\": [30, 16, 0, 0]\n },\n {\n \"stack\": \"$accountDetails\",\n \"margin\": [\n 0,\n 16,\n 0,\n 0\n ],\n \"width\": 140\n },\n {\n \"stack\": \"$accountAddress\",\n \"margin\": [\n 20,\n 16,\n 0,\n 0\n ]\n }\n ]\n }\n ],\n \"defaultStyle\": {\n \"font\": \"$bodyFont\",\n \"fontSize\": \"$fontSize\",\n \"margin\": [8, 4, 8, 4]\n },\n \"styles\": {\n \"primaryColor\":{\n \"color\": \"$primaryColor:#36a498\"\n },\n \"accountName\": {\n \"bold\": true,\n \"margin\": [4, 2, 4, 1],\n \"color\": \"$primaryColor:#36a498\"\n },\n \"accountDetails\": {\n \"margin\": [4, 2, 4, 1],\n \"color\": \"#FFFFFF\"\n },\n \"accountAddress\": {\n \"margin\": [4, 2, 4, 1],\n \"color\": \"#FFFFFF\"\n },\n \"clientDetails\": {\n \"margin\": [0, 2, 0, 1]\n },\n \"odd\": {\n \"fillColor\": \"#ebebeb\",\n \"margin\": [0,0,0,0]\n },\n \"productKey\": {\n \"color\": \"$primaryColor:#36a498\"\n },\n \"balanceDueLabel\": {\n \"fontSize\": \"$fontSizeLargest\",\n \"bold\": true\n },\n \"balanceDue\": {\n \"fontSize\": \"$fontSizeLargest\",\n \"color\": \"$primaryColor:#36a498\",\n \"bold\": true\n },\n \"invoiceDetails\": {\n \"color\": \"#ffffff\"\n },\n \"invoiceNumber\": {\n \"bold\": true\n },\n \"itemTableHeader\": {\n \"margin\": [40,0,0,0]\n },\n \"totalTableHeader\": {\n \"margin\": [0,0,40,0]\n },\n \"tableHeader\": {\n \"fontSize\": 12,\n \"bold\": true\n },\n \"costTableHeader\": {\n \"alignment\": \"right\"\n },\n \"qtyTableHeader\": {\n \"alignment\": \"right\"\n },\n \"taxTableHeader\": {\n \"alignment\": \"right\"\n },\n \"lineTotalTableHeader\": {\n \"alignment\": \"right\",\n \"margin\": [0, 0, 40, 0]\n },\n \"productKey\": {\n \"color\": \"$primaryColor:#36a498\",\n \"margin\": [40,0,0,0],\n \"bold\": true\n },\n \"yourInvoice\": {\n \"font\": \"$headerFont\",\n \"bold\": true, \n \"fontSize\": 14, \n \"color\": \"$primaryColor:#36a498\",\n \"margin\": [0,0,0,8]\n },\n \"invoiceLineItemsTable\": {\n \"margin\": [0, 26, 0, 16]\n },\n \"clientName\": {\n \"bold\": true\n },\n \"cost\": {\n \"alignment\": \"right\"\n },\n \"quantity\": {\n \"alignment\": \"right\"\n },\n \"tax\": {\n \"alignment\": \"right\"\n },\n \"lineTotal\": {\n \"alignment\": \"right\",\n \"margin\": [0, 0, 40, 0]\n },\n \"subtotals\": {\n \"alignment\": \"right\",\n \"margin\": [0,0,40,0]\n },\n \"termsLabel\": {\n \"bold\": true,\n \"margin\": [0, 0, 0, 4]\n },\n \"header\": {\n \"font\": \"$headerFont\",\n \"fontSize\": \"$fontSizeLargest\",\n \"bold\": true\n },\n \"subheader\": {\n \"font\": \"$headerFont\",\n \"fontSize\": \"$fontSizeLarger\"\n },\n \"help\": {\n \"fontSize\": \"$fontSizeSmaller\",\n \"color\": \"#737373\"\n },\n \"invoiceDocuments\": {\n \"margin\": [47, 0, 47, 0]\n },\n \"invoiceDocument\": {\n \"margin\": [0, 10, 0, 10]\n }\n },\n \"pageMargins\": [0, 80, 0, 40]\n }'),(3,'Modern',' var client = invoice.client;\n var account = invoice.account;\n var currencyId = client.currency_id;\n\n layout.headerRight = 400;\n layout.rowHeight = 15;\n\n\n doc.setFontSize(7);\n\n // add header\n doc.setLineWidth(0.5);\n\n if (NINJA.primaryColor) {\n setDocHexFill(doc, NINJA.primaryColor);\n setDocHexDraw(doc, NINJA.primaryColor);\n } else {\n doc.setDrawColor(242,101,34);\n doc.setFillColor(242,101,34);\n } \n\n var x1 =0;\n var y1 = 0;\n var w2 = 595;\n var h2 = Math.max(110, getInvoiceDetailsHeight(invoice, layout) + 30);\n doc.rect(x1, y1, w2, h2, \'FD\');\n\n SetPdfColor(\'White\',doc);\n\n //second column\n doc.setFontType(\'bold\');\n var name = invoice.account.name; \n if (name) {\n doc.setFontSize(\'30\');\n doc.setFontType(\'bold\');\n doc.text(40, 50, name);\n }\n\n if (invoice.image)\n {\n y=130;\n var left = layout.headerRight - invoice.imageWidth;\n doc.addImage(invoice.image, \'JPEG\', layout.marginLeft, y);\n }\n\n // add footer \n doc.setLineWidth(0.5);\n\n if (NINJA.primaryColor) {\n setDocHexFill(doc, NINJA.primaryColor);\n setDocHexDraw(doc, NINJA.primaryColor);\n } else {\n doc.setDrawColor(242,101,34);\n doc.setFillColor(242,101,34);\n } \n\n var x1 = 0;//tableLeft-tablePadding ;\n var y1 = 750;\n var w2 = 596;\n var h2 = 94;//doc.internal.getFontSize()*length+length*1.1;//+h;//+tablePadding;\n\n doc.rect(x1, y1, w2, h2, \'FD\');\n\n if (!invoice.is_pro && logoImages.imageLogo3)\n {\n pageHeight=820;\n // var left = 25;//250;//headerRight ;\n y=pageHeight-logoImages.imageLogoHeight3;\n //var headerRight=370;\n\n //var left = headerRight - invoice.imageLogoWidth3;\n doc.addImage(logoImages.imageLogo3, \'JPEG\', 40, y, logoImages.imageLogoWidth3, logoImages.imageLogoHeight3);\n }\n\n doc.setFontSize(10); \n var marginLeft = 340;\n displayAccount(doc, invoice, marginLeft, 780, layout);\n\n\n SetPdfColor(\'White\',doc); \n doc.setFontSize(\'8\');\n var detailsHeight = displayInvoice(doc, invoice, layout.headerRight, layout.accountTop-10, layout);\n layout.headerTop = Math.max(layout.headerTop, detailsHeight + 50);\n layout.tableTop = Math.max(layout.tableTop, detailsHeight + 150);\n\n SetPdfColor(\'Black\',doc); //set black color\n doc.setFontSize(7);\n doc.setFontType(\'normal\');\n displayClient(doc, invoice, layout.headerRight, layout.headerTop, layout);\n\n\n \n SetPdfColor(\'White\',doc); \n doc.setFontType(\'bold\');\n\n doc.setLineWidth(0.3);\n if (NINJA.secondaryColor) {\n setDocHexFill(doc, NINJA.secondaryColor);\n setDocHexDraw(doc, NINJA.secondaryColor);\n } else {\n doc.setDrawColor(63,60,60);\n doc.setFillColor(63,60,60);\n } \n\n var left = layout.marginLeft - layout.tablePadding;\n var top = layout.tableTop - layout.tablePadding;\n var width = layout.marginRight - (2 * layout.tablePadding);\n var height = 20;\n doc.rect(left, top, width, height, \'FD\');\n \n\n displayInvoiceHeader(doc, invoice, layout);\n SetPdfColor(\'Black\',doc);\n var y = displayInvoiceItems(doc, invoice, layout);\n\n\n var height1 = displayNotesAndTerms(doc, layout, invoice, y);\n var height2 = displaySubtotals(doc, layout, invoice, y, layout.unitCostRight);\n y += Math.max(height1, height2);\n\n\n var left = layout.marginLeft - layout.tablePadding;\n var top = y - layout.tablePadding;\n var width = layout.marginRight - (2 * layout.tablePadding);\n var height = 20;\n if (NINJA.secondaryColor) {\n setDocHexFill(doc, NINJA.secondaryColor);\n setDocHexDraw(doc, NINJA.secondaryColor);\n } else {\n doc.setDrawColor(63,60,60);\n doc.setFillColor(63,60,60);\n } \n doc.rect(left, top, width, height, \'FD\');\n \n doc.setFontType(\'bold\');\n SetPdfColor(\'White\', doc);\n doc.setFontSize(12);\n \n var label = invoice.is_quote ? invoiceLabels.total : invoiceLabels.balance_due;\n var labelX = layout.unitCostRight-(doc.getStringUnitWidth(label) * doc.internal.getFontSize());\n doc.text(labelX, y+2, label);\n\n\n doc.setFontType(\'normal\');\n var amount = formatMoney(invoice.balance_amount , currencyId);\n headerLeft=layout.headerRight+400;\n var amountX = layout.lineTotalRight - (doc.getStringUnitWidth(amount) * doc.internal.getFontSize());\n doc.text(amountX, y+2, amount);','{\n \"content\": [\n {\n \"columns\": [\n {\n \"image\": \"$accountLogo\",\n \"fit\": [120, 80],\n \"margin\": [0, 60, 0, 30]\n },\n {\n \"stack\": \"$clientDetails\",\n \"margin\": [0, 60, 0, 0]\n }\n ]\n },\n {\n \"style\": \"invoiceLineItemsTable\",\n \"table\": {\n \"headerRows\": 1,\n \"widths\": \"$invoiceLineItemColumns\",\n \"body\": \"$invoiceLineItems\"\n },\n \"layout\": {\n \"hLineWidth\": \"$notFirst:.5\",\n \"vLineWidth\": \"$notFirstAndLastColumn:.5\",\n \"hLineColor\": \"#888888\",\n \"vLineColor\": \"#FFFFFF\",\n \"paddingLeft\": \"$amount:8\",\n \"paddingRight\": \"$amount:8\",\n \"paddingTop\": \"$amount:8\",\n \"paddingBottom\": \"$amount:8\"\n }\n },\n {\n \"columns\": [\n \"$notesAndTerms\",\n {\n \"table\": {\n \"widths\": [\"*\", \"40%\"],\n \"body\": \"$subtotalsWithoutBalance\"\n },\n \"layout\": {\n \"hLineWidth\": \"$none\",\n \"vLineWidth\": \"$none\",\n \"paddingLeft\": \"$amount:34\",\n \"paddingRight\": \"$amount:8\",\n \"paddingTop\": \"$amount:4\",\n \"paddingBottom\": \"$amount:4\"\n }\n }\n ]\n },\n {\n \"columns\": [\n {\n \"canvas\": [\n {\n \"type\": \"rect\",\n \"x\": 0,\n \"y\": 0,\n \"w\": 515,\n \"h\": 26,\n \"r\": 0,\n \"lineWidth\": 1,\n \"color\": \"$secondaryColor:#403d3d\"\n }\n ],\n \"width\": 10,\n \"margin\": [\n 0,\n 10,\n 0,\n 0\n ]\n },\n {\n \"text\": \"$balanceDueLabel\",\n \"style\": \"balanceDueLabel\",\n \"margin\": [0, 16, 0, 0],\n \"width\": 370\n },\n {\n \"text\": \"$balanceDue\",\n \"style\": \"balanceDue\",\n \"margin\": [0, 16, 8, 0]\n }\n ]\n },\n {\n \"stack\": [\n \"$invoiceDocuments\"\n ],\n \"style\": \"invoiceDocuments\"\n }\n ],\n \"footer\": [\n {\n \"canvas\": [\n {\n \"type\": \"line\", \"x1\": 0, \"y1\": 0, \"x2\": 600, \"y2\": 0,\"lineWidth\": 100,\"lineColor\":\"$primaryColor:#f26621\"\n }]\n ,\"width\":10\n },\n {\n \"columns\": [\n {\n \"width\": 350,\n \"stack\": [\n {\n \"text\": \"$invoiceFooter\",\n \"margin\": [40, -40, 40, 0],\n \"alignment\": \"left\",\n \"color\": \"#FFFFFF\"\n\n }\n ]\n },\n {\n \"stack\": \"$accountDetails\",\n \"margin\": [0, -40, 0, 0],\n \"width\": \"*\"\n },\n {\n \"stack\": \"$accountAddress\",\n \"margin\": [0, -40, 0, 0],\n \"width\": \"*\"\n }\n ]\n }\n ],\n \"header\": [\n {\n \"canvas\": [{ \"type\": \"line\", \"x1\": 0, \"y1\": 0, \"x2\": 600, \"y2\": 0,\"lineWidth\": 200,\"lineColor\":\"$primaryColor:#f26621\"}],\"width\":10\n },\n {\n \"columns\": [\n {\n \"text\": \"$accountName\", \"bold\": true,\"font\":\"$headerFont\",\"fontSize\":30,\"color\":\"#ffffff\",\"margin\":[40,20,0,0],\"width\":350\n }\n ]\n },\n {\n \"width\": 300,\n \"table\": {\n \"body\": \"$invoiceDetails\"\n },\n \"layout\": \"noBorders\",\n \"margin\": [400, -40, 0, 0]\n }\n ],\n \"defaultStyle\": {\n \"font\": \"$bodyFont\",\n \"fontSize\": \"$fontSize\",\n \"margin\": [8, 4, 8, 4]\n },\n \"styles\": {\n \"primaryColor\":{\n \"color\": \"$primaryColor:#299CC2\"\n },\n \"accountName\": {\n \"margin\": [4, 2, 4, 2],\n \"color\": \"$primaryColor:#299CC2\"\n },\n \"accountDetails\": {\n \"margin\": [4, 2, 4, 2],\n \"color\": \"#FFFFFF\"\n },\n \"accountAddress\": {\n \"margin\": [4, 2, 4, 2],\n \"color\": \"#FFFFFF\"\n },\n \"clientDetails\": {\n \"margin\": [0, 2, 4, 2]\n },\n \"invoiceDetails\": {\n \"color\": \"#FFFFFF\"\n },\n \"invoiceLineItemsTable\": {\n \"margin\": [0, 0, 0, 16]\n },\n \"productKey\": {\n \"bold\": true\n },\n \"clientName\": {\n \"bold\": true\n },\n \"tableHeader\": {\n \"bold\": true,\n \"color\": \"#FFFFFF\",\n \"fontSize\": \"$fontSizeLargest\",\n \"fillColor\": \"$secondaryColor:#403d3d\"\n },\n \"costTableHeader\": {\n \"alignment\": \"right\"\n },\n \"qtyTableHeader\": {\n \"alignment\": \"right\"\n },\n \"taxTableHeader\": {\n \"alignment\": \"right\"\n },\n \"lineTotalTableHeader\": {\n \"alignment\": \"right\"\n },\n \"balanceDueLabel\": {\n \"fontSize\": \"$fontSizeLargest\",\n \"color\":\"#FFFFFF\",\n \"alignment\":\"right\",\n \"bold\": true\n },\n \"balanceDue\": {\n \"fontSize\": \"$fontSizeLargest\",\n \"color\":\"#FFFFFF\",\n \"bold\": true,\n \"alignment\":\"right\"\n },\n \"cost\": {\n \"alignment\": \"right\"\n },\n \"quantity\": {\n \"alignment\": \"right\"\n },\n \"tax\": {\n \"alignment\": \"right\"\n },\n \"lineTotal\": {\n \"alignment\": \"right\"\n },\n \"subtotals\": {\n \"alignment\": \"right\"\n },\n \"termsLabel\": {\n \"bold\": true,\n \"margin\": [0, 0, 0, 4]\n },\n \"invoiceNumberLabel\": {\n \"bold\": true\n },\n \"invoiceNumber\": {\n \"bold\": true\n },\n \"header\": {\n \"font\": \"$headerFont\",\n \"fontSize\": \"$fontSizeLargest\",\n \"bold\": true\n },\n \"subheader\": {\n \"font\": \"$headerFont\",\n \"fontSize\": \"$fontSizeLarger\"\n },\n \"help\": {\n \"fontSize\": \"$fontSizeSmaller\",\n \"color\": \"#737373\"\n },\n \"invoiceDocuments\": {\n \"margin\": [7, 0, 7, 0]\n },\n \"invoiceDocument\": {\n \"margin\": [0, 10, 0, 10]\n }\n },\n \"pageMargins\": [40, 120, 40, 50]\n}\n'),(4,'Plain',' var client = invoice.client;\n var account = invoice.account;\n var currencyId = client.currency_id; \n \n layout.accountTop += 25;\n layout.headerTop += 25;\n layout.tableTop += 25;\n\n if (invoice.image)\n {\n var left = layout.headerRight - invoice.imageWidth;\n doc.addImage(invoice.image, \'JPEG\', left, 50);\n } \n \n /* table header */\n doc.setDrawColor(200,200,200);\n doc.setFillColor(230,230,230);\n \n var detailsHeight = getInvoiceDetailsHeight(invoice, layout);\n var left = layout.headerLeft - layout.tablePadding;\n var top = layout.headerTop + detailsHeight - layout.rowHeight - layout.tablePadding;\n var width = layout.headerRight - layout.headerLeft + (2 * layout.tablePadding);\n var height = layout.rowHeight + 1;\n doc.rect(left, top, width, height, \'FD\'); \n\n doc.setFontSize(10);\n doc.setFontType(\'normal\');\n\n displayAccount(doc, invoice, layout.marginLeft, layout.accountTop, layout);\n displayClient(doc, invoice, layout.marginLeft, layout.headerTop, layout);\n\n displayInvoice(doc, invoice, layout.headerLeft, layout.headerTop, layout, layout.headerRight);\n layout.tableTop = Math.max(layout.tableTop, layout.headerTop + detailsHeight + (2 * layout.tablePadding));\n\n var headerY = layout.headerTop;\n var total = 0;\n\n doc.setDrawColor(200,200,200);\n doc.setFillColor(230,230,230);\n var left = layout.marginLeft - layout.tablePadding;\n var top = layout.tableTop - layout.tablePadding;\n var width = layout.headerRight - layout.marginLeft + (2 * layout.tablePadding);\n var height = layout.rowHeight + 2;\n doc.rect(left, top, width, height, \'FD\'); \n\n displayInvoiceHeader(doc, invoice, layout);\n var y = displayInvoiceItems(doc, invoice, layout);\n\n doc.setFontSize(10);\n\n displayNotesAndTerms(doc, layout, invoice, y+20);\n\n y += displaySubtotals(doc, layout, invoice, y+20, 480) + 20;\n\n doc.setDrawColor(200,200,200);\n doc.setFillColor(230,230,230);\n \n var left = layout.footerLeft - layout.tablePadding;\n var top = y - layout.tablePadding;\n var width = layout.headerRight - layout.footerLeft + (2 * layout.tablePadding);\n var height = layout.rowHeight + 2;\n doc.rect(left, top, width, height, \'FD\'); \n \n doc.setFontType(\'bold\');\n doc.text(layout.footerLeft, y, invoice.is_quote ? invoiceLabels.total : invoiceLabels.balance_due);\n\n total = formatMoney(invoice.balance_amount, currencyId);\n var totalX = layout.headerRight - (doc.getStringUnitWidth(total) * doc.internal.getFontSize());\n doc.text(totalX, y, total); \n\n if (!invoice.is_pro) {\n doc.setFontType(\'normal\');\n doc.text(layout.marginLeft, 790, \'Created by InvoiceNinja.com\');\n }','{\n \"content\": [\n {\n \"columns\": [\n {\n \"stack\": \"$accountDetails\"\n },\n {\n \"stack\": \"$accountAddress\"\n },\n [\n {\n \"image\": \"$accountLogo\",\n \"fit\": [120, 80]\n }\n ] \n ]},\n {\n \"columns\": [\n {\n \"width\": 340,\n \"stack\": \"$clientDetails\",\n \"margin\": [0,40,0,0]\n },\n {\n \"width\":200,\n \"table\": { \n \"body\": \"$invoiceDetails\"\n },\n \"layout\": {\n \"hLineWidth\": \"$none\",\n \"vLineWidth\": \"$none\",\n \"hLineColor\": \"#E6E6E6\",\n \"paddingLeft\": \"$amount:10\", \n \"paddingRight\": \"$amount:10\"\n }\n }\n ]\n }, \n {\n \"canvas\": [{ \"type\": \"rect\", \"x\": 0, \"y\": 0, \"w\": 515, \"h\": 25,\"r\":0, \"lineWidth\": 1,\"color\":\"#e6e6e6\"}],\"width\":10,\"margin\":[0,30,0,-43]\n },\n {\n \"style\": \"invoiceLineItemsTable\",\n \"table\": {\n \"headerRows\": 1,\n \"widths\": \"$invoiceLineItemColumns\",\n \"body\": \"$invoiceLineItems\"\n },\n \"layout\": {\n \"hLineWidth\": \"$notFirst:1\",\n \"vLineWidth\": \"$none\",\n \"hLineColor\": \"#e6e6e6\",\n \"paddingLeft\": \"$amount:8\", \n \"paddingRight\": \"$amount:8\", \n \"paddingTop\": \"$amount:8\", \n \"paddingBottom\": \"$amount:8\" \n }\n },\n {\n \"columns\": [\n \"$notesAndTerms\",\n {\n \"width\": 160,\n \"style\": \"subtotals\",\n \"table\": {\n \"widths\": [60, 60],\n \"body\": \"$subtotals\"\n },\n \"layout\": {\n \"hLineWidth\": \"$none\",\n \"vLineWidth\": \"$none\",\n \"paddingLeft\": \"$amount:10\", \n \"paddingRight\": \"$amount:10\", \n \"paddingTop\": \"$amount:4\", \n \"paddingBottom\": \"$amount:4\" \n }\n }\n ]\n }, \n {\n \"stack\": [\n \"$invoiceDocuments\"\n ],\n \"style\": \"invoiceDocuments\"\n }\n ],\n \"footer\": {\n \"columns\": [\n {\n \"text\": \"$invoiceFooter\",\n \"alignment\": \"left\",\n \"margin\": [0, 0, 0, 12]\n\n }\n ],\n \"margin\": [40, -20, 40, 40]\n },\n \"defaultStyle\": {\n \"font\": \"$bodyFont\",\n \"fontSize\": \"$fontSize\",\n \"margin\": [8, 4, 8, 4]\n },\n \"styles\": {\n \"primaryColor\":{\n \"color\": \"$primaryColor:#299CC2\"\n },\n \"accountDetails\": {\n \"margin\": [0, 2, 0, 1]\n },\n \"accountAddress\": {\n \"margin\": [0, 2, 0, 1]\n },\n \"clientDetails\": {\n \"margin\": [0, 2, 0, 1]\n },\n \"tableHeader\": {\n \"bold\": true\n },\n \"costTableHeader\": {\n \"alignment\": \"right\"\n },\n \"qtyTableHeader\": {\n \"alignment\": \"right\"\n },\n \"lineTotalTableHeader\": {\n \"alignment\": \"right\"\n }, \n \"invoiceLineItemsTable\": {\n \"margin\": [0, 16, 0, 16]\n },\n \"cost\": {\n \"alignment\": \"right\"\n },\n \"quantity\": {\n \"alignment\": \"right\"\n },\n \"tax\": {\n \"alignment\": \"right\"\n },\n \"lineTotal\": {\n \"alignment\": \"right\"\n },\n \"subtotals\": {\n \"alignment\": \"right\"\n }, \n \"termsLabel\": {\n \"bold\": true,\n \"margin\": [0, 0, 0, 4]\n },\n \"terms\": {\n \"margin\": [0, 0, 20, 0]\n },\n \"invoiceDetailBalanceDueLabel\": {\n \"fillColor\": \"#e6e6e6\"\n },\n \"invoiceDetailBalanceDue\": {\n \"fillColor\": \"#e6e6e6\"\n },\n \"balanceDueLabel\": {\n \"fillColor\": \"#e6e6e6\"\n },\n \"balanceDue\": {\n \"fillColor\": \"#e6e6e6\"\n },\n \"header\": {\n \"font\": \"$headerFont\",\n \"fontSize\": \"$fontSizeLargest\",\n \"bold\": true\n },\n \"subheader\": {\n \"font\": \"$headerFont\",\n \"fontSize\": \"$fontSizeLarger\"\n },\n \"help\": {\n \"fontSize\": \"$fontSizeSmaller\",\n \"color\": \"#737373\"\n },\n \"invoiceDocuments\": {\n \"margin\": [7, 0, 7, 0]\n },\n \"invoiceDocument\": {\n \"margin\": [0, 10, 0, 10]\n }\n },\n \"pageMargins\": [40, 40, 40, 60]\n}\n'),(5,'Business',NULL,'{\n \"content\": [\n {\n \"columns\": \n [\n {\n \"image\": \"$accountLogo\",\n \"fit\": [120, 80]\n },\n {\n \"width\": 300,\n \"stack\": \"$accountDetails\",\n \"margin\": [140, 0, 0, 0]\n },\n {\n \"width\": 150,\n \"stack\": \"$accountAddress\"\n }\n ] \n },\n {\n \"columns\": [\n {\n \"width\": 120,\n \"stack\": [\n {\"text\": \"$invoiceIssuedToLabel\", \"style\":\"issuedTo\"},\n \"$clientDetails\"\n ],\n \"margin\": [0, 20, 0, 0]\n },\n {\n \"canvas\": [{ \"type\": \"rect\", \"x\": 20, \"y\": 0, \"w\": 174, \"h\": \"$invoiceDetailsHeight\",\"r\":10, \"lineWidth\": 1,\"color\":\"$primaryColor:#eb792d\"}], \n \"width\":36,\n \"margin\":[200,25,0,0]\n },\n {\n \"table\": { \n \"widths\": [64, 70],\n \"body\": \"$invoiceDetails\"\n },\n \"layout\": \"noBorders\",\n \"margin\": [200, 34, 0, 0]\n }\n ]\n },\n {\"canvas\": [{ \"type\": \"rect\", \"x\": 0, \"y\": 0, \"w\": 515, \"h\": 32,\"r\":8, \"lineWidth\": 1,\"color\":\"$secondaryColor:#374e6b\"}],\"width\":10,\"margin\":[0,20,0,-45]},\n {\n \"style\": \"invoiceLineItemsTable\",\n \"table\": {\n \"headerRows\": 1,\n \"widths\": \"$invoiceLineItemColumns\",\n \"body\": \"$invoiceLineItems\"\n },\n \"layout\": {\n \"hLineWidth\": \"$notFirst:1\",\n \"vLineWidth\": \"$notFirst:.5\",\n \"hLineColor\": \"#FFFFFF\",\n \"vLineColor\": \"#FFFFFF\",\n \"paddingLeft\": \"$amount:8\", \n \"paddingRight\": \"$amount:8\", \n \"paddingTop\": \"$amount:12\", \n \"paddingBottom\": \"$amount:12\" \n }\n }, \n {\n \"columns\": [\n \"$notesAndTerms\",\n {\n \"stack\": [\n {\n \"style\": \"subtotals\",\n \"table\": {\n \"widths\": [\"*\", \"35%\"],\n \"body\": \"$subtotalsWithoutBalance\"\n },\n \"layout\": {\n \"hLineWidth\": \"$none\",\n \"vLineWidth\": \"$none\",\n \"paddingLeft\": \"$amount:34\",\n \"paddingRight\": \"$amount:8\",\n \"paddingTop\": \"$amount:4\",\n \"paddingBottom\": \"$amount:4\"\n }\n },\n {\n \"canvas\": [\n {\n \"type\": \"rect\",\n \"x\": 76,\n \"y\": 20,\n \"w\": 182,\n \"h\": 30,\n \"r\": 7,\n \"lineWidth\": 1,\n \"color\": \"$secondaryColor:#374e6b\"\n }\n ]\n },\n {\n \"style\": \"subtotalsBalance\",\n \"table\": {\n \"widths\": [\"*\", \"35%\"],\n \"body\": \"$subtotalsBalance\"\n },\n \"layout\": {\n \"hLineWidth\": \"$none\",\n \"vLineWidth\": \"$none\",\n \"paddingLeft\": \"$amount:34\",\n \"paddingRight\": \"$amount:8\",\n \"paddingTop\": \"$amount:4\",\n \"paddingBottom\": \"$amount:4\"\n }\n }\n ]\n }\n ]\n },\n {\n \"stack\": [\n \"$invoiceDocuments\"\n ],\n \"style\": \"invoiceDocuments\"\n }\n ],\n \"footer\": {\n \"columns\": [\n {\n \"text\": \"$invoiceFooter\",\n \"alignment\": \"left\"\n }\n ],\n \"margin\": [40, -20, 40, 0]\n }, \n \"defaultStyle\": {\n \"fontSize\": \"$fontSize\",\n \"margin\": [8, 4, 8, 4]\n },\n \"styles\": {\n \"primaryColor\":{\n \"color\": \"$primaryColor:#299CC2\"\n },\n \"accountName\": {\n \"bold\": true\n },\n \"accountDetails\": {\n \"color\": \"#AAA9A9\",\n \"margin\": [0,2,0,1]\n },\n \"accountAddress\": {\n \"color\": \"#AAA9A9\",\n \"margin\": [0,2,0,1]\n },\n \"even\": {\n \"fillColor\":\"#E8E8E8\"\n },\n \"odd\": {\n \"fillColor\":\"#F7F7F7\"\n },\n \"productKey\": {\n \"bold\": true\n },\n \"balanceDueLabel\": {\n \"fontSize\": \"$fontSizeLargest\",\n \"color\": \"#ffffff\", \n \"bold\": true\n },\n \"balanceDue\": {\n \"fontSize\": \"$fontSizeLargest\",\n \"bold\": true,\n \"color\":\"#ffffff\",\n \"alignment\":\"right\"\n },\n \"invoiceDetails\": {\n \"color\": \"#ffffff\"\n },\n \"tableHeader\": {\n \"color\": \"#ffffff\",\n \"fontSize\": \"$fontSizeLargest\",\n \"bold\": true\n },\n \"costTableHeader\": {\n \"alignment\": \"right\"\n },\n \"qtyTableHeader\": {\n \"alignment\": \"right\"\n },\n \"taxTableHeader\": {\n \"alignment\": \"right\"\n },\n \"lineTotalTableHeader\": {\n \"alignment\": \"right\"\n }, \n \"issuedTo\": {\n \"margin\": [0,2,0,1],\n \"bold\": true,\n \"color\": \"#374e6b\"\n },\n \"clientDetails\": {\n \"margin\": [0,2,0,1]\n },\n \"clientName\": {\n \"color\": \"$primaryColor:#eb792d\"\n },\n \"invoiceLineItemsTable\": {\n \"margin\": [0, 10, 0, 10]\n },\n \"invoiceDetailsValue\": {\n \"alignment\": \"right\"\n },\n \"cost\": {\n \"alignment\": \"right\"\n },\n \"quantity\": {\n \"alignment\": \"right\"\n },\n \"tax\": {\n \"alignment\": \"right\"\n },\n \"lineTotal\": {\n \"alignment\": \"right\"\n },\n \"subtotals\": {\n \"alignment\": \"right\"\n }, \n \"subtotalsBalance\": {\n \"alignment\": \"right\",\n \"margin\": [0, -25, 0, 0]\n }, \n \"termsLabel\": {\n \"bold\": true,\n \"margin\": [0, 0, 0, 4]\n },\n \"header\": {\n \"fontSize\": \"$fontSizeLargest\",\n \"bold\": true\n },\n \"subheader\": {\n \"fontSize\": \"$fontSizeLarger\"\n },\n \"help\": {\n \"fontSize\": \"$fontSizeSmaller\",\n \"color\": \"#737373\"\n }\n },\n \"pageMargins\": [40, 40, 40, 40]\n}'),(6,'Creative',NULL,'{\n \"content\": [\n { \n \"columns\": [\n {\n \"stack\": \"$clientDetails\"\n },\n {\n \"stack\": \"$accountDetails\"\n },\n {\n \"stack\": \"$accountAddress\"\n },\n {\n \"image\": \"$accountLogo\",\n \"fit\": [120, 80],\n \"alignment\": \"right\"\n }\n ],\n \"margin\": [0, 0, 0, 20]\n },\n {\n \"columns\": [\n {\"text\": \n [\n {\"text\": \"$entityTypeUC\", \"style\": \"header1\"},\n {\"text\": \"#\", \"style\": \"header2\"},\n {\"text\": \"$invoiceNumber\", \"style\":\"header2\"}\n ],\n \"width\": \"*\"\n },\n {\n \"width\":200,\n \"table\": { \n \"body\": \"$invoiceDetails\"\n },\n \"layout\": \"noBorders\",\n \"margin\": [16, 4, 0, 0]\n }\n ],\n \"margin\": [0, 0, 0, 20]\n },\n {\"canvas\": [{ \"type\": \"line\", \"x1\": 0, \"y1\": 5, \"x2\": 515, \"y2\": 5, \"lineWidth\": 3,\"lineColor\":\"$primaryColor:#AE1E54\"}]},\n {\n \"style\": \"invoiceLineItemsTable\",\n \"table\": {\n \"headerRows\": 1,\n \"widths\": \"$invoiceLineItemColumns\",\n \"body\": \"$invoiceLineItems\"\n },\n \"layout\": {\n \"hLineWidth\": \"$none\",\n \"vLineWidth\": \"$none\",\n \"hLineColor\": \"$primaryColor:#E8E8E8\",\n \"paddingLeft\": \"$amount:8\", \n \"paddingRight\": \"$amount:8\", \n \"paddingTop\": \"$amount:8\", \n \"paddingBottom\": \"$amount:8\" \n }\n }, \n {\n \"columns\": [\n \"$notesAndTerms\",\n {\n \"style\": \"subtotals\",\n \"table\": {\n \"widths\": [\"*\", \"40%\"],\n \"body\": \"$subtotalsWithoutBalance\"\n },\n \"layout\": {\n \"hLineWidth\": \"$none\",\n \"vLineWidth\": \"$none\",\n \"paddingLeft\": \"$amount:34\", \n \"paddingRight\": \"$amount:8\", \n \"paddingTop\": \"$amount:4\", \n \"paddingBottom\": \"$amount:4\" \n }\n }\n ]\n },\n {\n \"canvas\": [{ \"type\": \"line\", \"x1\": 0, \"y1\": 20, \"x2\": 515, \"y2\": 20, \"lineWidth\": 3,\"lineColor\":\"$primaryColor:#AE1E54\"}],\n \"margin\": [0, -8, 0, -8]\n },\n {\n \"text\": \"$balanceDueLabel\",\n \"style\": \"balanceDueLabel\"\n },\n {\n \"text\": \"$balanceDue\",\n \"style\": \"balanceDue\"\n },\n {\n \"stack\": [\n \"$invoiceDocuments\"\n ],\n \"style\": \"invoiceDocuments\"\n }\n ],\n \"footer\": {\n \"columns\": [\n {\n \"text\": \"$invoiceFooter\",\n \"alignment\": \"left\"\n }\n ],\n \"margin\": [40, -20, 40, 0]\n },\n \"defaultStyle\": {\n \"fontSize\": \"$fontSize\",\n \"margin\": [8, 4, 8, 4]\n },\n \"styles\": {\n \"primaryColor\":{\n \"color\": \"$primaryColor:#AE1E54\"\n },\n \"accountName\": {\n \"margin\": [4, 2, 4, 2],\n \"color\": \"$primaryColor:#AE1E54\",\n \"bold\": true\n },\n \"accountDetails\": {\n \"margin\": [4, 2, 4, 2]\n },\n \"accountAddress\": {\n \"margin\": [4, 2, 4, 2]\n },\n \"odd\": {\n \"fillColor\":\"#F4F4F4\"\n },\n \"productKey\": {\n \"bold\": true\n },\n \"balanceDueLabel\": {\n \"fontSize\": \"$fontSizeLargest\",\n \"margin\": [320,20,0,0]\n },\n \"balanceDue\": {\n \"fontSize\": \"$fontSizeLargest\",\n \"color\": \"$primaryColor:#AE1E54\",\n \"bold\": true,\n \"margin\":[0,-10,10,0],\n \"alignment\": \"right\"\n },\n \"invoiceDetailBalanceDue\": {\n \"bold\": true,\n \"color\": \"$primaryColor:#AE1E54\"\n },\n \"invoiceDetailBalanceDueLabel\": {\n \"bold\": true\n },\n \"tableHeader\": {\n \"bold\": true,\n \"color\": \"$primaryColor:#AE1E54\",\n \"fontSize\": \"$fontSizeLargest\"\n },\n \"costTableHeader\": {\n \"alignment\": \"right\"\n },\n \"qtyTableHeader\": {\n \"alignment\": \"right\"\n },\n \"taxTableHeader\": {\n \"alignment\": \"right\"\n },\n \"lineTotalTableHeader\": {\n \"alignment\": \"right\"\n }, \n \"clientName\": {\n \"bold\": true\n },\n \"clientDetails\": {\n \"margin\": [0,2,0,1]\n },\n \"header1\": {\n \"bold\": true, \n \"margin\": [0, 30, 0, 16],\n \"fontSize\": 46 \n },\n \"header2\": {\n \"margin\": [0, 30, 0, 16],\n \"fontSize\": 46,\n \"italics\": true, \n \"color\": \"$primaryColor:#AE1E54\"\n },\n \"invoiceLineItemsTable\": {\n \"margin\": [0, 4, 0, 16]\n }, \n \"cost\": {\n \"alignment\": \"right\"\n },\n \"quantity\": {\n \"alignment\": \"right\"\n },\n \"tax\": {\n \"alignment\": \"right\"\n },\n \"lineTotal\": {\n \"alignment\": \"right\"\n },\n \"subtotals\": {\n \"alignment\": \"right\"\n }, \n \"termsLabel\": {\n \"bold\": true,\n \"margin\": [0, 0, 0, 4]\n },\n \"header\": {\n \"fontSize\": \"$fontSizeLargest\",\n \"bold\": true\n },\n \"subheader\": {\n \"fontSize\": \"$fontSizeLarger\"\n },\n \"help\": {\n \"fontSize\": \"$fontSizeSmaller\",\n \"color\": \"#737373\"\n }\n },\n \"pageMargins\": [40, 40, 40, 40]\n}'),(7,'Elegant',NULL,'{\n \"content\": [\n {\n \"image\": \"$accountLogo\",\n \"fit\": [120, 80],\n \"alignment\": \"center\",\n \"margin\": [0, 0, 0, 30]\n },\n {\"canvas\": [{ \"type\": \"line\", \"x1\": 0, \"y1\": 5, \"x2\": 515, \"y2\": 5, \"lineWidth\": 2}]},\n {\"canvas\": [{ \"type\": \"line\", \"x1\": 0, \"y1\": 3, \"x2\": 515, \"y2\": 3, \"lineWidth\": 1}]},\n {\n \"columns\": [\n {\n \"width\": 120,\n \"stack\": [\n {\"text\": \"$invoiceToLabel\", \"style\": \"header\", \"margin\": [0, 0, 0, 6]}, \n \"$clientDetails\"\n ]\n },\n {\n \"width\": 10,\n \"canvas\": [{ \"type\": \"line\", \"x1\": -2, \"y1\": 18, \"x2\": -2, \"y2\": 80, \"lineWidth\": 1,\"dash\": { \"length\": 2 }}]\n },\n {\n \"width\": 120,\n \"stack\": \"$accountDetails\",\n \"margin\": [0, 20, 0, 0]\n },\n {\n \"width\": 110,\n \"stack\": \"$accountAddress\",\n \"margin\": [0, 20, 0, 0]\n },\n {\n \"stack\": [\n {\"text\": \"$detailsLabel\", \"style\": \"header\", \"margin\": [0, 0, 0, 6]}, \n {\n \"width\":180,\n \"table\": { \n \"body\": \"$invoiceDetails\"\n },\n \"layout\": \"noBorders\"\n }\n ] \n }],\n \"margin\": [0, 20, 0, 0]\n },\n {\n \"style\": \"invoiceLineItemsTable\",\n \"table\": {\n \"headerRows\": 1,\n \"widths\": \"$invoiceLineItemColumns\",\n \"body\": \"$invoiceLineItems\"\n },\n \"layout\": {\n \"hLineWidth\": \"$notFirst:.5\",\n \"vLineWidth\": \"$none\",\n \"paddingLeft\": \"$amount:8\", \n \"paddingRight\": \"$amount:8\", \n \"paddingTop\": \"$amount:12\", \n \"paddingBottom\": \"$amount:12\"\n }\n }, \n {\n \"columns\": [\n \"$notesAndTerms\",\n {\n \"style\": \"subtotals\",\n \"table\": {\n \"widths\": [\"*\", \"40%\"],\n \"body\": \"$subtotalsWithoutBalance\"\n },\n \"layout\": {\n \"hLineWidth\": \"$none\",\n \"vLineWidth\": \"$none\",\n \"paddingLeft\": \"$amount:34\", \n \"paddingRight\": \"$amount:8\", \n \"paddingTop\": \"$amount:4\", \n \"paddingBottom\": \"$amount:4\" \n }\n }\n ]\n },\n {\n \"canvas\": [{ \"type\": \"line\", \"x1\": 270, \"y1\": 20, \"x2\": 515, \"y2\": 20, \"lineWidth\": 1,\"dash\": { \"length\": 2 }}]\n },\n {\n \"text\": \"$balanceDueLabel\",\n \"style\": \"balanceDueLabel\"\n },\n {\n \"text\": \"$balanceDue\",\n \"style\": \"balanceDue\"\n },\n {\n \"canvas\": [{ \"type\": \"line\", \"x1\": 270, \"y1\": 20, \"x2\": 515, \"y2\": 20, \"lineWidth\": 1,\"dash\": { \"length\": 2 }}]\n },\n {\n \"stack\": [\n \"$invoiceDocuments\"\n ],\n \"style\": \"invoiceDocuments\"\n }], \n \"footer\": [\n {\n \"columns\": [\n {\n \"text\": \"$invoiceFooter\",\n \"alignment\": \"left\"\n }\n ],\n \"margin\": [40, -20, 40, 0]\n },\n {\"canvas\": [{ \"type\": \"line\", \"x1\": 35, \"y1\": 5, \"x2\": 555, \"y2\": 5, \"lineWidth\": 2,\"margin\": [30,0,0,0]}]},\n {\"canvas\": [{ \"type\": \"line\", \"x1\": 35, \"y1\": 3, \"x2\": 555, \"y2\": 3, \"lineWidth\": 1,\"margin\": [30,0,0,0]}]}\n ],\n \"defaultStyle\": {\n \"fontSize\": \"$fontSize\",\n \"margin\": [8, 4, 8, 4]\n },\n \"styles\": {\n \"accountDetails\": {\n \"margin\": [0, 2, 0, 1]\n },\n \"clientDetails\": {\n \"margin\": [0, 2, 0, 1]\n },\n \"accountAddress\": {\n \"margin\": [0, 2, 0, 1]\n },\n \"clientName\": {\n \"bold\": true\n },\n \"accountName\": {\n \"bold\": true\n },\n \"odd\": {\n },\n \"balanceDueLabel\": {\n \"fontSize\": \"$fontSizeLargest\",\n \"color\": \"$primaryColor:#5a7b61\",\n \"margin\": [320,20,0,0]\n },\n \"balanceDue\": {\n \"fontSize\": \"$fontSizeLargest\",\n \"color\": \"$primaryColor:#5a7b61\",\n \"style\": true,\n \"margin\":[0,-14,8,0],\n \"alignment\":\"right\"\n }, \n \"invoiceDetailBalanceDue\": {\n \"color\": \"$primaryColor:#5a7b61\",\n \"bold\": true\n }, \n \"header\": {\n \"fontSize\": 14,\n \"bold\": true\n },\n \"tableHeader\": {\n \"bold\": true,\n \"color\": \"$primaryColor:#5a7b61\",\n \"fontSize\": \"$fontSizeLargest\"\n },\n \"costTableHeader\": {\n \"alignment\": \"right\"\n },\n \"qtyTableHeader\": {\n \"alignment\": \"right\"\n },\n \"taxTableHeader\": {\n \"alignment\": \"right\"\n },\n \"lineTotalTableHeader\": {\n \"alignment\": \"right\"\n }, \n \"invoiceLineItemsTable\": {\n \"margin\": [0, 40, 0, 16]\n },\n \"cost\": {\n \"alignment\": \"right\"\n },\n \"quantity\": {\n \"alignment\": \"right\"\n },\n \"tax\": {\n \"alignment\": \"right\"\n },\n \"lineTotal\": {\n \"alignment\": \"right\"\n },\n \"subtotals\": {\n \"alignment\": \"right\"\n }, \n \"termsLabel\": {\n \"bold\": true,\n \"margin\": [0, 0, 0, 4]\n },\n \"header\": {\n \"fontSize\": \"$fontSizeLargest\",\n \"bold\": true\n },\n \"subheader\": {\n \"fontSize\": \"$fontSizeLarger\"\n },\n \"help\": {\n \"fontSize\": \"$fontSizeSmaller\",\n \"color\": \"#737373\"\n }\n },\n \"pageMargins\": [40, 40, 40, 40]\n}\n'),(8,'Hipster',NULL,'{\n \"content\": [\n {\n \"columns\": [\n {\n \"width\":10,\n \"canvas\": [{ \"type\": \"line\", \"x1\": 0, \"y1\": 0, \"x2\": 0, \"y2\": 75, \"lineWidth\": 0.5}]\n },\n {\n \"width\":120,\n \"stack\": [\n {\"text\": \"$fromLabelUC\", \"style\": \"fromLabel\"}, \n \"$accountDetails\" \n ]\n },\n {\n \"width\":120,\n \"stack\": [\n {\"text\": \" \"},\n \"$accountAddress\"\n ],\n \"margin\": [10, 0, 0, 16]\n },\n {\n \"width\":10,\n \"canvas\": [{ \"type\": \"line\", \"x1\": 0, \"y1\": 0, \"x2\": 0, \"y2\": 75, \"lineWidth\": 0.5}]\n },\n {\n \"stack\": [\n {\"text\": \"$toLabelUC\", \"style\": \"toLabel\"}, \n \"$clientDetails\"\n ]\n },\n [\n {\n \"image\": \"$accountLogo\",\n \"fit\": [120, 80]\n }\n ]\n ]\n },\n {\n \"text\": \"$entityTypeUC\",\n \"margin\": [0, 4, 0, 8],\n \"bold\": \"true\",\n \"fontSize\": 42\n },\n {\n \"columnGap\": 16,\n \"columns\": [\n {\n \"width\":\"auto\",\n \"text\": [\"$invoiceNoLabel\",\" \",\"$invoiceNumberValue\"],\n \"bold\": true,\n \"color\":\"$primaryColor:#bc9f2b\",\n \"fontSize\":10\n },\n {\n \"width\":\"auto\",\n \"text\": [\"$invoiceDateLabel\",\" \",\"$invoiceDateValue\"],\n \"fontSize\":10\n },\n {\n \"width\":\"auto\",\n \"text\": [\"$dueDateLabel?\",\" \",\"$dueDateValue\"],\n \"fontSize\":10\n },\n {\n \"width\":\"*\",\n \"text\": [\"$balanceDueLabel\",\" \",{\"text\":\"$balanceDue\", \"bold\":true, \"color\":\"$primaryColor:#bc9f2b\"}],\n \"fontSize\":10\n }\n ]\n },\n {\n \"margin\": [0, 26, 0, 0],\n \"table\": {\n \"headerRows\": 1,\n \"widths\": \"$invoiceLineItemColumns\",\n \"body\": \"$invoiceLineItems\"\n },\n \"layout\": {\n \"hLineWidth\": \"$none\",\n \"vLineWidth\": \"$amount:.5\",\n \"paddingLeft\": \"$amount:8\", \n \"paddingRight\": \"$amount:8\", \n \"paddingTop\": \"$amount:8\", \n \"paddingBottom\": \"$amount:8\" \n }\n },\n {\n \"columns\": [\n {\n \"stack\": \"$notesAndTerms\",\n \"width\": \"*\",\n \"margin\": [0, 12, 0, 0]\n },\n {\n \"width\": 200,\n \"style\": \"subtotals\",\n \"table\": {\n \"widths\": [\"*\", \"36%\"],\n \"body\": \"$subtotals\"\n },\n \"layout\": {\n \"hLineWidth\": \"$none\",\n \"vLineWidth\": \"$notFirst:.5\",\n \"paddingLeft\": \"$amount:8\", \n \"paddingRight\": \"$amount:8\", \n \"paddingTop\": \"$amount:12\", \n \"paddingBottom\": \"$amount:4\" \n }\n }\n ]\n },\n {\n \"stack\": [\n \"$invoiceDocuments\"\n ],\n \"style\": \"invoiceDocuments\"\n }\n ],\n \"footer\": {\n \"columns\": [\n {\n \"text\": \"$invoiceFooter\",\n \"alignment\": \"left\"\n }\n ],\n \"margin\": [40, -20, 40, 0]\n },\n \"defaultStyle\": {\n \"fontSize\": \"$fontSize\",\n \"margin\": [8, 4, 8, 4]\n },\n \"styles\": {\n \"accountName\": {\n \"bold\": true\n },\n \"clientName\": {\n \"bold\": true\n },\n \"balanceDueLabel\": {\n \"fontSize\": \"$fontSizeLargest\",\n \"bold\": true\n },\n \"balanceDue\": {\n \"fontSize\": \"$fontSizeLargest\",\n \"color\": \"$primaryColor:#bc9f2b\",\n \"bold\": true\n },\n \"tableHeader\": {\n \"bold\": true,\n \"fontSize\": \"$fontSizeLargest\"\n },\n \"costTableHeader\": {\n \"alignment\": \"right\"\n },\n \"qtyTableHeader\": {\n \"alignment\": \"right\"\n },\n \"taxTableHeader\": {\n \"alignment\": \"right\"\n },\n \"lineTotalTableHeader\": {\n \"alignment\": \"right\"\n }, \n \"fromLabel\": {\n \"color\": \"$primaryColor:#bc9f2b\",\n \"bold\": true \n },\n \"toLabel\": {\n \"color\": \"$primaryColor:#bc9f2b\",\n \"bold\": true \n },\n \"accountDetails\": {\n \"margin\": [0, 2, 0, 1]\n },\n \"accountAddress\": {\n \"margin\": [0, 2, 0, 1]\n },\n \"clientDetails\": {\n \"margin\": [0, 2, 0, 1]\n },\n \"cost\": {\n \"alignment\": \"right\"\n },\n \"quantity\": {\n \"alignment\": \"right\"\n },\n \"tax\": {\n \"alignment\": \"right\"\n },\n \"lineTotal\": {\n \"alignment\": \"right\"\n },\n \"subtotals\": {\n \"alignment\": \"right\"\n }, \n \"termsLabel\": {\n \"bold\": true,\n \"margin\": [0, 16, 0, 4]\n },\n \"header\": {\n \"fontSize\": \"$fontSizeLargest\",\n \"bold\": true\n },\n \"subheader\": {\n \"fontSize\": \"$fontSizeLarger\"\n },\n \"help\": {\n \"fontSize\": \"$fontSizeSmaller\",\n \"color\": \"#737373\"\n }\n },\n \"pageMargins\": [40, 40, 40, 40]\n}'),(9,'Playful',NULL,'{\n \"content\": [\n {\n \"columns\": [\n {\n \"image\": \"$accountLogo\",\n \"fit\": [120, 80]\n },\n {\"canvas\": [{ \"type\": \"rect\", \"x\": 0, \"y\": 0, \"w\": 190, \"h\": \"$invoiceDetailsHeight\",\"r\":5, \"lineWidth\": 1,\"color\":\"$primaryColor:#009d91\"}],\"width\":10,\"margin\":[200,0,0,0]},\n {\n \"width\":400,\n \"table\": { \n \"body\": \"$invoiceDetails\"\n },\n \"layout\": \"noBorders\",\n \"margin\": [210, 10, 10, 0]\n }\n ] \n },\n {\n \"margin\": [0, 18, 0, 0],\n \"columnGap\": 50,\n \"columns\": [\n {\n \"width\": 212,\n \"stack\": [\n {\"text\": \"$invoiceToLabel:\", \"style\": \"toLabel\"},\n {\n \"canvas\": [{ \"type\": \"line\", \"x1\": 0, \"y1\": 4, \"x2\": 150, \"y2\": 4, \"lineWidth\": 1,\"dash\": { \"length\": 3 },\"lineColor\":\"$primaryColor:#009d91\"}],\n \"margin\": [0, 0, 0, 4]\n },\n \"$clientDetails\",\n {\"canvas\": [{ \"type\": \"line\", \"x1\": 0, \"y1\": 9, \"x2\": 150, \"y2\": 9, \"lineWidth\": 1,\"dash\": { \"length\": 3 },\"lineColor\":\"$primaryColor:#009d91\"}]}\n ]\n },\n {\n \"width\": \"*\",\n \"stack\": [\n {\"text\": \"$fromLabel:\", \"style\": \"fromLabel\"},\n {\n \"canvas\": [{ \"type\": \"line\", \"x1\": 0, \"y1\": 4, \"x2\": 250, \"y2\": 4, \"lineWidth\": 1,\"dash\": { \"length\": 3 },\"lineColor\":\"$primaryColor:#009d91\"}],\n \"margin\": [0, 0, 0, 4]\n },\n {\"columns\":[\n \"$accountDetails\",\n \"$accountAddress\" \n ], \"columnGap\": 4}, \n {\"canvas\": [{ \"type\": \"line\", \"x1\": 0, \"y1\": 9, \"x2\": 250, \"y2\": 9, \"lineWidth\": 1,\"dash\": { \"length\": 3 },\"lineColor\":\"$primaryColor:#009d91\"}]}\n ]\n }\n ]\n },\n {\"canvas\": [{ \"type\": \"rect\", \"x\": 0, \"y\": 0, \"w\": 515, \"h\": 35,\"r\":6, \"lineWidth\": 1,\"color\":\"$primaryColor:#009d91\"}],\"width\":10,\"margin\":[0,30,0,-30]},\n {\n \"style\": \"invoiceLineItemsTable\",\n \"table\": {\n \"headerRows\": 1,\n \"widths\": \"$invoiceLineItemColumns\",\n \"body\": \"$invoiceLineItems\"\n },\n \"layout\": {\n \"hLineWidth\": \"$notFirst:.5\",\n \"vLineWidth\": \"$none\",\n \"hLineColor\": \"$primaryColor:#009d91\",\n \"paddingLeft\": \"$amount:8\", \n \"paddingRight\": \"$amount:8\", \n \"paddingTop\": \"$amount:8\", \n \"paddingBottom\": \"$amount:8\"\n }\n }, \n {\n \"columns\": [\n \"$notesAndTerms\",\n {\n \"stack\": [\n {\n \"style\": \"subtotals\",\n \"table\": {\n \"widths\": [\"*\", \"35%\"],\n \"body\": \"$subtotalsWithoutBalance\"\n },\n \"layout\": {\n \"hLineWidth\": \"$none\",\n \"vLineWidth\": \"$none\",\n \"paddingLeft\": \"$amount:34\",\n \"paddingRight\": \"$amount:8\",\n \"paddingTop\": \"$amount:4\",\n \"paddingBottom\": \"$amount:4\"\n }\n },\n {\n \"canvas\": [\n {\n \"type\": \"rect\",\n \"x\": 76,\n \"y\": 20,\n \"w\": 182,\n \"h\": 30,\n \"r\": 4,\n \"lineWidth\": 1,\n \"color\": \"$primaryColor:#009d91\"\n }\n ]\n },\n {\n \"style\": \"subtotalsBalance\",\n \"table\": {\n \"widths\": [\"*\", \"35%\"],\n \"body\": \"$subtotalsBalance\"\n },\n \"layout\": {\n \"hLineWidth\": \"$none\",\n \"vLineWidth\": \"$none\",\n \"paddingLeft\": \"$amount:34\",\n \"paddingRight\": \"$amount:8\",\n \"paddingTop\": \"$amount:4\",\n \"paddingBottom\": \"$amount:4\"\n }\n }\n ]\n }\n ]\n }, \n {\n \"stack\": [\n \"$invoiceDocuments\"\n ],\n \"style\": \"invoiceDocuments\"\n }\n], \n \"footer\": [\n {\"canvas\": [{ \"type\": \"line\", \"x1\": 0, \"y1\": 38, \"x2\": 68, \"y2\": 38, \"lineWidth\": 6,\"lineColor\":\"#009d91\"}]},\n {\"canvas\": [{ \"type\": \"line\", \"x1\": 68, \"y1\": 0, \"x2\": 135, \"y2\": 0, \"lineWidth\": 6,\"lineColor\":\"#1d766f\"}]},\n {\"canvas\": [{ \"type\": \"line\", \"x1\": 135, \"y1\": 0, \"x2\": 201, \"y2\": 0, \"lineWidth\": 6,\"lineColor\":\"#ffb800\"}]},\n {\"canvas\": [{ \"type\": \"line\", \"x1\": 201, \"y1\": 0, \"x2\": 267, \"y2\": 0, \"lineWidth\": 6,\"lineColor\":\"#bf9730\"}]},\n {\"canvas\": [{ \"type\": \"line\", \"x1\": 267, \"y1\": 0, \"x2\": 333, \"y2\": 0, \"lineWidth\": 6,\"lineColor\":\"#ac2b50\"}]},\n {\"canvas\": [{ \"type\": \"line\", \"x1\": 333, \"y1\": 0, \"x2\": 399, \"y2\": 0, \"lineWidth\": 6,\"lineColor\":\"#e60042\"}]},\n {\"canvas\": [{ \"type\": \"line\", \"x1\": 399, \"y1\": 0, \"x2\": 465, \"y2\": 0, \"lineWidth\": 6,\"lineColor\":\"#ffb800\"}]},\n {\"canvas\": [{ \"type\": \"line\", \"x1\": 465, \"y1\": 0, \"x2\": 532, \"y2\": 0, \"lineWidth\": 6,\"lineColor\":\"#009d91\"}]},\n {\"canvas\": [{ \"type\": \"line\", \"x1\": 532, \"y1\": 0, \"x2\": 600, \"y2\": 0, \"lineWidth\": 6,\"lineColor\":\"#ac2b50\"}]},\n {\n \"text\": \"$invoiceFooter\",\n \"alignment\": \"left\",\n \"margin\": [40, -60, 40, 0]\n }\n ],\n \"header\": [\n {\"canvas\": [{ \"type\": \"line\", \"x1\": 0, \"y1\": 0, \"x2\": 68, \"y2\": 0, \"lineWidth\": 9,\"lineColor\":\"#009d91\"}]},\n {\"canvas\": [{ \"type\": \"line\", \"x1\": 68, \"y1\": 0, \"x2\": 135, \"y2\": 0, \"lineWidth\": 9,\"lineColor\":\"#1d766f\"}]},\n {\"canvas\": [{ \"type\": \"line\", \"x1\": 135, \"y1\": 0, \"x2\": 201, \"y2\": 0, \"lineWidth\": 9,\"lineColor\":\"#ffb800\"}]},\n {\"canvas\": [{ \"type\": \"line\", \"x1\": 201, \"y1\": 0, \"x2\": 267, \"y2\": 0, \"lineWidth\": 9,\"lineColor\":\"#bf9730\"}]},\n {\"canvas\": [{ \"type\": \"line\", \"x1\": 267, \"y1\": 0, \"x2\": 333, \"y2\": 0, \"lineWidth\": 9,\"lineColor\":\"#ac2b50\"}]},\n {\"canvas\": [{ \"type\": \"line\", \"x1\": 333, \"y1\": 0, \"x2\": 399, \"y2\": 0, \"lineWidth\": 9,\"lineColor\":\"#e60042\"}]},\n {\"canvas\": [{ \"type\": \"line\", \"x1\": 399, \"y1\": 0, \"x2\": 465, \"y2\": 0, \"lineWidth\": 9,\"lineColor\":\"#ffb800\"}]},\n {\"canvas\": [{ \"type\": \"line\", \"x1\": 465, \"y1\": 0, \"x2\": 532, \"y2\": 0, \"lineWidth\": 9,\"lineColor\":\"#009d91\"}]},\n {\"canvas\": [{ \"type\": \"line\", \"x1\": 532, \"y1\": 0, \"x2\": 600, \"y2\": 0, \"lineWidth\": 9,\"lineColor\":\"#ac2b50\"}]}\n ],\n \"defaultStyle\": {\n \"fontSize\": \"$fontSize\",\n \"margin\": [8, 4, 8, 4]\n },\n \"styles\": {\n \"accountName\": {\n \"color\": \"$secondaryColor:#bb3328\"\n },\n \"accountDetails\": {\n \"margin\": [0, 2, 0, 1]\n },\n \"accountAddress\": {\n \"margin\": [0, 2, 0, 1]\n },\n \"clientDetails\": {\n \"margin\": [0, 2, 0, 1]\n },\n \"clientName\": {\n \"color\": \"$secondaryColor:#bb3328\"\n },\n \"even\": {\n \"fillColor\":\"#E8E8E8\"\n },\n \"odd\": {\n \"fillColor\":\"#F7F7F7\"\n },\n \"productKey\": {\n \"color\": \"$secondaryColor:#bb3328\"\n },\n \"lineTotal\": {\n \"bold\": true\n },\n \"tableHeader\": {\n \"bold\": true,\n \"fontSize\": \"$fontSizeLargest\",\n \"color\": \"#FFFFFF\"\n },\n \"costTableHeader\": {\n \"alignment\": \"right\"\n },\n \"qtyTableHeader\": {\n \"alignment\": \"right\"\n },\n \"lineTotalTableHeader\": {\n \"alignment\": \"right\"\n }, \n \"balanceDueLabel\": {\n \"fontSize\": \"$fontSizeLargest\",\n \"color\":\"#FFFFFF\",\n \"bold\": true\n },\n \"balanceDue\": {\n \"fontSize\": \"$fontSizeLargest\",\n \"bold\": true,\n \"color\":\"#FFFFFF\",\n \"alignment\":\"right\"\n },\n \"invoiceDetails\": {\n \"color\": \"#FFFFFF\"\n },\n \"invoiceLineItemsTable\": {\n \"margin\": [0, 0, 0, 16]\n },\n \"invoiceDetailBalanceDueLabel\": {\n \"bold\": true\n },\n \"invoiceDetailBalanceDue\": {\n \"bold\": true\n },\n \"fromLabel\": {\n \"color\": \"$primaryColor:#009d91\"\n },\n \"toLabel\": {\n \"color\": \"$primaryColor:#009d91\"\n },\n \"cost\": {\n \"alignment\": \"right\"\n },\n \"quantity\": {\n \"alignment\": \"right\"\n },\n \"tax\": {\n \"alignment\": \"right\"\n },\n \"lineTotal\": {\n \"alignment\": \"right\"\n },\n \"subtotals\": {\n \"alignment\": \"right\"\n }, \n \"subtotalsBalance\": {\n \"alignment\": \"right\",\n \"margin\": [0, -25, 0, 0]\n }, \n \"termsLabel\": {\n \"bold\": true,\n \"margin\": [0, 0, 0, 4]\n },\n \"header\": {\n \"fontSize\": \"$fontSizeLargest\",\n \"bold\": true\n },\n \"subheader\": {\n \"fontSize\": \"$fontSizeLarger\"\n },\n \"help\": {\n \"fontSize\": \"$fontSizeSmaller\",\n \"color\": \"#737373\"\n }\n },\n \"pageMargins\": [40, 40, 40, 40]\n}'),(10,'Photo',NULL,'{\n \"content\": [\n {\n \"columns\": [\n {\n \"image\": \"$accountLogo\",\n \"fit\": [120, 80]\n },\n {\n \"text\": \"\",\n \"width\": \"*\"\n },\n {\n \"width\":180,\n \"table\": { \n \"body\": \"$invoiceDetails\"\n },\n \"layout\": \"noBorders\"\n }]\n },\n {\n \"image\": \"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAMCAgMCAgMDAwMEAwMEBQgFBQQ<KEY>ID<KEY>QUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQU<KEY>QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD0kT6iVJXXdaC++rXH/wAcpY59U+9/bmtED/qKXA/9nqmJuPlOR6Af/XpUuHRCD8o9CM1jqaWL5vb5+usa2p/7C1x/8XUbXOpQddd1pgf+opc//F1Thulx1B57ipzIoH3sfVR/hRqFiy11qP8A0G9aXj/oKXP9Xpst9qLfd1nWSe+dVuP/AIuq6XJjzl/M+rHj86ljuTnlwn4E0ahYkW81HIxretEjqDqtwP8A2pUp1PUFH/Ib1oH/ALCc/wD8XVQyqMmWHavZhhc0PtYDapPsGo1CxpDUtSA+XWdZc/8AYUn/APiqaNX1A5U63q6/9xOY/wDs9Uwcj5WOfRTzUABDHOB7nFGoWNRdQ1Numtaxjrk6jP8A/F1MdX1BYwF1rV947/2hPj/0Os3KvGFUqzemMVD5whbknjjAxj86Wo7I1DrGqj5v7Z1b6nUZ/wD4upY9c1Qr/wAhrVS3p/aE3/xVZJuAU3BcH+8TikS6GQMhpPTg/rRqBr/27qvT+2dVH11GX/4ulGt6sWA/tnVSPX7fN/8AFVlmd8ZZdq+o/wD1UhmV12s42nrRqFkbX9t6mqZOs6kCP+ojPn/0KmnXtVCk/wBs6qR1/wCP+b/4qsXfGg2ocnsN1Kk7KuNu0dTxmlqFjaj8R6mykHVtV3Z6i/l4/wDH6cNd1VcA63qjHt/p8v8A8VWTHdfKQGwKcWZ/u7XHtRqFjXTXdWHXWdT9s30v/wAVTh4k1dQf+JvqLfS/kP8A7NWPG4UESZU9gP8A9VIZPKI4IB/uGjUDZHiPWsYOr6muPW8l/wDiqcvifWG/5jOoJ7fa5ef/AB41lfaUf+IH6U2AomcyIc+wP9aNQNf/AISTWe2taifpdSn+tTnxTrSAY1i+Pt9sf+rVhCYHo3/juKPtYTopJ/2WH+NO4G9/wlmrr11nUfwvW/xpB4z1cMQNX1FuehupB/I1giQMclT+JpWkTHdP8/hSA6H/AIS7WTh/7Zv+ewu34/Wm/wDCW61jP9s354/5+n/xrCVuATkjseaa8odDgk0Aa7+LdcJx/bWoDtn7W/r9aRvF2tgEf2zqAPOD9qf/ABrn2uC7k8dfpmlnkAj5f5T05/SncDpdP8X65HqVp/xOb6U+cnym6cg8jqM9K96/aD8R3mj/AAN8Q3tpPNaXf2TaksUhV1YkDhhyOtfN3hhs+IdOUqWU3CjH1PSvo79pD7LD8C/EMdwuRJbBIwf75I2/ripd7j6H5r+KPiv4yhuXEXivXI8KBhdRm9P96uHk+Lvjdpc/8Jn4gA9Bqs//AMXR4uu/Nu50TAG7FcjtAfB6k4zXSYnaR/Ffxxt/5HLxDk/9RSf/AOLqKT4teOFOP+Ez8QEA/wDQVn/+KrmkxtI7gciopyVYZAz6UAd7afF3xoLQv/wmGvHA5J1Ocn/0Ks+6+LvjdiSvjLXwe/8AxNZ//i65mzkJjkjP3faqsn3zjnnJJoA6j/hbvjk8Hxl4g6f9BWf/AOLqZPiz44BH/FZ+Ic55/wCJpP8A/FVx/Qe3rihW3Px07EDqKAOuf4t+OCWx4z8Q9f8AoKT5/wDQqWL4teOB18ZeIT/3FZ//AIuuTGSrY6Z701pMD/CgDrn+Lfjlj8vjLxBg/wDUUn/+LqM/FnxyOP8AhM/EPoT/AGpPz/4/XKDO4n24BFPJAOcgY6UAdWfiz45C5PjPxD0/6Ck//wAVUY+LPjkgY8Z+IiP+wrPn/wBDrl3dSeB9eajHB657kCgDrf8AhbfjkjA8Z+IQfX+1J/8A4uhvi545PI8Z+If/AAaT8f8Aj9cox44zgU0A4PJIzQB1p+LXjnd/yOniEDH/AEFJ+v8A33TV+Lfjk9PGfiHr/wBBWf8A+LrlACV5GO4xSHIzgZOeMjrQB1Y+Lfjof8zp4h/8Gs//AMXQfi345Rs/8Jn4hPbH9qz+v+/XJ5U89D70jctwQD+lAHW/8Lb8dcZ8Z+Ic+2qT8f8Aj1TRfFvxuUP/ABWfiDP/AGFJ/wD4uuNOCeB26VYt8fN3oA67/hbPjgL/AMjl4hz0z/ak/wD8XSj4s+OWjLDxlr5AOONUn5/8erkJTzgfKB0p9ucQli2MngE0AdQnxX8cs2T408Qge2qTn/2elf4teOFGR4z8Qbv+wpP/APF1yUYLHAPHXk9KkkZQhVdpJoA6T/hbnjndz4y8QdP+grP/APF0J8WvHOB/xWniE/8AcUn/APi65XqT245+tNY7iDnAoA7Fvi545IGPGXiAf9xWf/4unRfFnxwAzHxnr+7/ALCk/wD8XXIrgoDuOAe1IXwRk4oA6g/FzxwW48aeIP8AwaT/APxdMHxb8dcg+M/EOPUapP8A/F1y7LkjHOfzppGAT0xQB1n/AAtvxycf8Vp4h6dP7Vn/APi6T/hbfjr/AKHTxBx/1FZ//iq5Xdkc5U9fSkAHHTHvQB1y/Fzxzjnxn4gBA6/2rP8A/FUjfFvx1/0OniE/9xSf/wCLrk0Hbj8KR2DA9/egDqx8WPHWT/xWniL/AMGs/wD8VS/8Lb8ckf8AI5+Icf8AYVn/APi65LkDvinYIIOcjv7UAdbH8XfHB/5nPxACRk/8TSc/+z00/FzxxuGfGfiHA7f2rP8A/FVyyozPsGc+nep7PT59QvobWCJpZ5nCIiclj0xQB7Jb+OPGFz4UbU/+Eu12Nkh4QapPyemfv+4NeweAdCvPib4o16PW/irrfhwWNrZrDawahKXlZrdCWwXAwD19zXIeNPhxp3gL4F6bcT38n/CRzNsvdKljw1sAepHX0/OvOvFlhp3iDxFcarpvjHTLZJ0iCxytNG64jVSDhO201F77FWsVPG3jnxn4T8Y6no8HxC1nU4bOdoVu4NUn2SgHgjL19O+E/hjfa34M0JLzxz4ntte1XSX1BZX12ZWRgoI2xAkMvIydw9q+SR4CjkYsvifQpGzyTeEZP4qP1rttK8UfEHR9MttO034gWCWVtG0UMKatF8iEYKgt29ulJ3toCaW56D4ff7J8FbHxv4n8eeNla41OSw8vTtSc9AcH5nHTBPWuh8NfD7Ur6+8H6bf/ABI8ZfbfE9pJf20tvfyeVDEBuUPl+WIPOOBXgs2l+LZ/C0Hht9a0y40S3uTdxWi6pblVkIILD5s9zX1Z8OPG3hnwL4V09TrI1OSwtRFbWhuYJbiJmUeYu44CqDnhX6AVMm0tGUrM8z8MeDvEF/a+F4dT+JniuHUPE93Pb6ebW9leOJY2K7pMyc5OOBWX4b+HPxR1S78WSap491/StF8OvPHNqQvbmRZ2jZgREocZPy/rWb4PvviloXkabpwtJbGG6eW0u7kQzNZl8hnjOSUyDkgZrsfjB4f8QWHwz0fwT4WsdR1uWadtR1vVIYnH2i4YfdBOCwySfwFF2na4tDzjxDB4+0fwT4V8RWnj/wAQaiPENxPb29ol9cCQeW+wH7/O7jj3rofFngv4heDtPcaj8VNQt9YjsU1GTTp9SuYzsbqiSM215BkEqKwnn+JK+A9N8L3PgWS4ttL8w2F41lMLm2Z2LMyurAA5xjjsKl8U+PviF4k0iS31XwX5+oS2iWEmpT2E0kpjUAZVWJVHOBllAJxVXYaGp4r8IfFbwh4ZbxLH8Tp9R8O/ZvPXU7PW53jaTgCAc/6wk4x9fSvMdJ+NPxMv7yG1tPGfiKa5lYJHEl/MxZicAAZ5JPFdrB8Z/Fen6Dc+Gr3wZDN4OmtVtn0Y20kaqR/y1V+SJM8lufpXkdhcaj4d16HVNOgnsZ7WcXFvvUs0ZVty/MQM4x1xTV+pLt0PcpvFXx0+HXi7w1Z+K9a8SafBqVwiJFfXL7Jl3AMOT6EZHUZFefeP/il42s/EF7bweLtehtEuJ1gRdTmGEWZ1UZ3c8D9K6ef40+JPjJ4+8F2uvbVjtNSjdVQN8zsy5Y5Pt2ry74hKTrrS7i4leZwCen+kS9Py7U0N+RMfi345PTxn4hA/7Ck5/wDZ6T/hbPjvkf8ACZ+If/BpP/8AF1yu35gPbr0oC7s55BqiTqx8WvHAbB8Z+If/AAaz/wDxVL/wtrxzyf8AhM/EOPQapP8A/F1yjAIOvPpUa5LYxt47CgDrn+LfjkjI8Z+IRz/0FJ//AIqj/hbfjkj/AJHLxBnrj+1Z/wD4uuUjG0+o96kRBu5A5oA6j/ha/joYz408QE/9hSf/AOLpU+LXjoLj/hM/EOR2/tSfn/x6uVnID8Dvio1k/izkfSgDrn+LPjrcSvjLxDt4/wCYpP8A/F0w/Fvx1/0OfiEn/sKz/wDxdc0kvG0qMetRuPn469R2NAHUr8WfHP8A0OniEH/sKz//ABdPX4ueOA4P/CZ+IOf+opP/APF1ybgdsH1NNiBJGT06ZoA7F/ir44wGXxl4hPv/AGrP/wDF0yT4t+OBhf8AhM/EC+/9qz//ABdc2TgKAQv0qvdMxc8g49KAOqT4teOiePGXiDPr/ak//wAXTf8AhbfjoHnxn4h+n9qT/wDxdcxEGI4+maRT8w4yAfXFAHXSfFvxygX/AIrLxCAQef7Un/8Aiqif4t+OOCfGniH3/wCJpP8A/Ff5zXNStuUEkn0AqCT5jkjB9KAOpPxd8dYwfGniH8NVn/8Ai6QfF3xyAD/wmniE8/8AQVn/APiq5PqRn+dKv3s9qAOs/wCFueOjyvjTxCOOB/as/wD8XSD4ueOTjPjPxFgeuqz/APxVcpx0wc0cY5INAHWj4u+OV/5nTxDgk/8AMVn/APi6P+FueOSf+R08Q4x/0FZ//i65IrkcGlPC8gD07GgDqm+LvjpTj/hM/EJ/7is//wAXRXK5UZ3Lk+9FAH22dzj7mffP/wBapYEKxnG4Y9+P5U1CAQPnxnsSRT2jDZKuVx2DYFZGoI28Zyn/AALGakc5HUj6DH8qqr5g/iz75zTstxuYP/vc4oAkgmZt29wcdN3NSEsBgv8AmwqBUOT1P1B/wpvmOB87F/QelAFmWRSq7MK3c1MjBVBZicj1AqtE5J+62KimkdP4QQT0Y0AaQ+f+79aa7YHrz3qiXMigOFAHT/IFSLLIv+7260AWGk3rtGQfYU0u4GCcL7kVHl+pOM/3s4pPM7BVz/fAOP5UAPMrpzuDKOwPNKtyWwC2F/u96rnyw5Zid3pt4pyy7XG1QB6gEGgCwZwjZUN+INAuBM20kDPY5zVaTcZN5II6fNk/pSoCxB+Xb6KMGkBa/wBX0xgejc/lSiZGPKknpzVUsqTD5W+pOTUruGOcZx03LRYCfzI1+QgBj0/yTUgYRAgsqnthg38qqKGdTkLn6UgYx8E4J6Bs0WAtK+8HMu3HtSI2z/VnGeuTiq5fb98Y9Nn9aXz8/ecKe3NFhNliSUqfmcH6im+cX+58nqACM/nVYjd987iO4JGKkBiH3irH/ZH/ANaiwx73ix44x9R/9amC5kUk9j0yMfzqIuT985HbjNRSXRAHU/T5aLAaBnYKCxU/pUQu9rcufpmq6z+YAC2O/HWomuI9xXauR36GgC/9oO3cQwB+vNK04YYwCPXPas03IOQJFwP4Rjio1uc5yQvP5e1FhXNZbr5l54zzzTRMBxwTWclySB0z/P3qUtkk8DsPrRYZ6T8DdPg1bx/YCUKRExkGR3AJH611H7enjE+F/hRptpGdrX16A3OCVVGOPzxWT+zhZC48aCXONkbZPrxjFcp/wU23ReFfBmDhDdTA+n3BUfaB7H5/T3L3Vw8jMTk5OTnrURiB6dj6U215Ygj8KsFsMMHmukyGpCWTLYUD1qvMSzf496mnuCAVHpwMcVTyScdqALEBwpI55596lcAxhiPzpLWLzEYE9TyKLsiMhFbgdRQBAeCcgZPOaarAPjocUEjJzwe1Mxg9MAdKAJy6hc45xTHbdzjBHfNHfPUYzkUmARQAuMlcjnPGacxxxweOtGCF5OSO9R7gR7ZoAGIJHGD3oUgn/Z44H+fpTm4OQcD86Z0Hp9KAFU59fqKX0JAOKavB/wAKCcg55zQAO2M9TntSglsj3pvXtn1ozznGKAAZOTzj1pBwDzu460vO0EDtk0oU9uOfzoAaQec8VZhASJifx4qsefqKsx/Kh5zngUAEmVOeuelA4jGMnrxURbccZJ/z61aVMxrzkA0AIzbUJxzj8qrE/PnJ49RxUsz5AHIXHWmiPoT39BQApGw881GTu6E4qe44Xr254qsCS3PA/nQBLswgP3hTMhScd/xqdiMKecEVGFyRt659PrQAiL16g4710/gf4eav8R9TNjo8AeRV3SSudscY9WY8AVzRIX5VyDjBr2DR/FkXw08FaTaRjf8A2rMLnUERtrvECMICOmcNSY0UPHH7O3ibwNo8OqSta6jasdrPYyF9h9+K8ve2kjJDIy9sEe9fd1h+1z8MrbwjBbRfD4nTI1WJ/N5XdjucHJ964G+8S/AvxVqVrOthdaf50wMsEM+UQE/7QB/I1mpPqiml0Z8qWWm3d9cpBbQSXEzHAjjXcT+VdBq/wy8UaFJHHf6JeWryxiZBJERvQ9xX3d8NtJ+CkfjGCDRZZtN1C2USR37Ou4naCcqwII69PSvcfG/wOsfHVkuq2eqy3WqRxnyJwU2yL12kgcex7Zo59dh8vmfkF/Y90JZIzA4Mf3l2nK/WrWn+G73VZ/ItbeSWb+6q5Nfeup2N18Ilng03w7aaXqFxKZb+41mKO4EyDqUyMY6HINfO3iXxhP478bDUp9NS10Z5yJrLSUFp5qDgMxUHk9faqUmyWrHk7aHp/hmWWLWJ/OukH/HnZkNg/wC1J0HvjNdh8B9F0vV/GSXN9rK+H/scguLZjCJSzAkhcnAH1Net6x+zx8OPGmitfeF/EN/o2tCIvJp2r4kRiBk4kCj26181tDJpG+MyL5schhOw5HHfPcdaaakLY9k+MHxR0XxFqmrypd3OoXl4cTXbxgbwDjgZAA/CvGVTRXBLPMD/ANcx/jWbJM8vyn5s+gqJYJCAdhz24ppWVg3Nd7XQsDFzMoP/AEzz/WnHTtHZsf2gwzxkxniskWrgDCN+VAtpHH3SPTApiNZdL0vzCv8AaYx/eEbU/wDsbTV4GrRg9fuMMn8qp2Oh3mpTpFDbyySMRhUXOa90+Hf7G3jLxeYZr+IaLaSjdvuR+8I9k6/nipcktxpN7HjiaDZkjbrUPT+62P5UsugxwSjydahJznKswxX2PafsHeHNKhRtS1nUbiXIAEISMH8CCaS//Yq8GNEPLv8AVLVscvJNHjP/AAJBWftYl8kj5AjsL1WIi8RopHTFyy/1q1AviNBui8TuvP8ADqLD/wBmr2nx7+xZq+kxLN4f1AaojZIhnHlOfQK33Tn8K+efEfhbVfC2ovZ6nZz2VwpIMcqEfiD3HvVpqWxLTR1BvPGcDDy/FN0c9NupsR/6FUy6v4+Vd6+JLyT6X5b+teds7tnLk+lAkZf4iD6DjNVYk9ETxF8QkZJE1e9aQHKuJQWB9j1pdU+G2u+IbfTZ9P0+7v2jtlSbyk3nzN7u2e/8Qrzr7TKp4kZenAatjRfFOpaLcRTWt5PEwOQVkIwcj0+lFuwEHiDw5eeH7g2+oWclhOqg+VOpQkH2NZC/I3TPHPevqr9p7W7X4l2XgS1mhU+IW8OQ3MdwmA0smSXjb1yoyPcY718qFTFlSCCDgqRzmkndXG1ZiO3y4C8HikVdo4JAx9KHJb2FPQlT2xjpiqEHIz6/SpYiRnI5qPzMr79OKWNjjB7Z6mgBkzAuTjg8c0q44J6E+lI6ZIYgk9eeaAcEKOOcn6UAOGAcZ+XpwaYww2TyPU04Ody4wOajcnK45oAl4fBGM05htXI69qi6kc9KlDl1YAE45oAUPlA2QSO9Qu3PI/KnRjoT1NOuArONuMfWgCOFm4x1p8q54A6/rUPKHJPHQEGpjl413AFSetADS3yAdulRuM5znr2p5wM9gfXmmdAQOCTgYHFADM88YGOc0uMHkhiOSelISc4wKU478H0xQAdMAdR7UcbuvFKOBgc59KUc9B0oAMZABAPamk9dtKWOecfWgn0GT1oAFOB1/KilPXg0UAfcn2MqcBR9QabJD5bAFyp7DOa62TR8Ngj9f/rU3+yEA5Rfq3NYXNTk3tJnGQCQBzzUcMT/ADbAR69v6V1v9lkfdVSO+FoOk89C305xRcDlngc427k+hzmjyHTqG/76rqptKiG3aFTPoKhfSsAYyP8AdWi4rHMPbStxGOffIqbyH2gfMx7gEHH510aaU0hwB09M019J6blP6Ci4zBjj8okhGyetJIrkZbp25NdDHphPBG76DNK2njOAMH0/yaLhY5tY3Q5J+X64/XFOWMh93Dg/w5FdCNNTdyoz7innTDj5Yx7HFFwMEKWXlSAf4dxxUbQMX9I/7o5/Wt4Wwjk2kDI9amWxjcbmA9yRxRcDnDbHblVKj+9/9akFuSOFJfs3T+tdCbFFn4K7Mfwnj8qc+nggsqk+4xSuBzgtCp3OhLDtn/65oa2LvlYiB0rfFi2RlMj1PWpBp6spyM/rTuBzzWzp/wAs8D6A01bZpOQgGP71dLFpaMhOChz0HFL/AGWMEnIPpwc0XA5l4HJGUA+gNJ9lVPu7UPtnmujFgCPmBX8c1GumqP4jID6Y4ouBzxtXbG5yf94EUvlPGOAy59Oa6NNKQZwhb3Apw04t1yfSi4WOSNsFPR1z7VH5BP3uR9K6waNtJ5FMj0vax2BGPei4HNmEoo2oM/7AOagZJQxOQeencV1SaaFdtq5PfcOKa+knO7YCSem00XCxzDx5UHysMOS1RSRMcDGD06V1i6M5OWVQp6Y7VXbRjheGGB0p3CxyyhlySPmJ6elTB9/94Y9q220fC/OvH1pY9Ey/3SPTPcUXEdn8ANSnsviHYpF80coZHAI6YzVn/gpFp6Xfwp8Pzuv7+PVFVGz0BifP8h+Vb3wK0JI/HFrOQp2xsQPf2rnP+Ck+oJF4I8HaeCMz6m8hX1CREf8As4qFrK43sfnH5TWrk54NSIcgsQMe5q1qMaJcFeMA8iqN1KMbVAx3IHIrpMivM+45GeBnOKYvBGeR6inqd2M/dPt+dPKhV7jJoAlsZdhZT355qO4+aX8KbCDvOO1OZgT83A5/CgCEZLd+vA9qV+Ae/wBaVjgDv2zSPgAn37UAJ91cEcdMU+IgAYJx71GPmyTyfSlPAxgCgBztzz0xwabgHHc+lByTnrn09acxxxjJ9hQAHjAOf51Gw3ZPY8c96cCeh60hAzzn0FAAOT0+bvSHgZPPtTycggmmjIYg4PrQAmdo4BFIecg+vel7gZ4pqkb/AJufxoAcFJ4zgYz0oY7gT1U5pq9+Mf0pwIHJGcetABkkjPGBVhV/EjpVZR82R261YjzkDt3oAcYtke48M3Sn2xMybB0J6Ypk7gtjoPWkiPlozZJI7YoASVMyHjg1Iqsyg456CmOfM29QCccVL/qFGep60AVnLMSDz1/Smfdx39sVK5AHDZHtTFwBk9e3FAEo5UYwD3qSIEZJwTkVEZRgjIxShio5PXpmgAb/AFgGM89q9D+K9qirouyPymFqibTxggen415/YWz3l/BEiF2dgB6nmvadVtUvvE1xqmpxK9ppEQQI33WcL8q9x2/SgDgPEjNofg3TNJZNsszfa5SDn733Rj6fzrjAxViwByOhzWl4j1ibXNWubuRi29jt7cfSsxgMkZNAHReGtav5tStAlyEkh4h3nb+Ga+vvgl8dvElloqfZdTeGWFissDgMjYPcYxXxFGMrnPNbmh+LNV8OzB7C+kgA5Kg5U49R3qWrjTsfo34o/aCt9Z0fyPFfh7TdWtEIYRzISN3r/OuY074ieBtWieTSPAGgxyEdie3qBXyr4M+JPiHx54n03SLqa0SKVtru0eBt68847U2L4j3vhnxDqUdilvCIpmSMrHnGDjPJxWfIXzHb/tJfGeS6t7PRNFS10eBlLXdtYWwj3H+H95jJHXgHFfO1hIJo2VhnBLHnnp/9avV9B1ez13wl48utX0yLVNUeFTBfzKpa3JlTlR26np615RbKRJMwwBtJrSOmhDd9SOBlMyYHGO3pV44IIB57VQgx56YyDt6DtV/B7Z/CqEKE3kDbknk10Hhvw/Nrt/BaW0DXEsrhFRFyST0wB1rEi+ZwOeK+yf2NPhhHHHP4pvoSTnyrMyICM4+dunUcAYPXNRKXKrjSu7HqPwR/Z60r4Z2EeoarbQ3uvEbhIp3CH/ZQHq3vXdeN/i5ofw+0432qXUdtGoIMRYF3H8OOMk+3bvXIfGf4p2fw60K41q4YtLGhitbUNhWcg4/HIPPBHzelfnf4++IOsfEHXJ7+/unnmkc4jDHbGD/Co7AZrmjBzd2bykoaI+pPHn7dyTytDo+lOYF5WSWXYT+Azn8a5TTP24dXt7pDdaak0WeQly0ZIz/s4/WvDPC/wa8YeM7c3GlaHd3sI48xY/k9/mPFQ+Kfg94t8IxedqmhXltCp5lMZKD8RxW6jDYycpbn298Nv2nPCXxCuf7PYtpF/ORiC5ChWb/eGFYnjhh+NdX8QvhXoXxE0prbUrNZWCEQyqfnibnleffO05B6gkV+ZVtcSWkoaMkFT696+yf2Ufj1LrLJ4R8Q3QkkCYsLiUnc+P8AliWPfup7EfnnKny+9EuMr6M+evib8NL74fa9LYXkYdcZiuE5SRfUHH5jtXFi1RtxKgem7jFfoX+0F8N4vG/gW+EcGb+BDPaOqDBcDO0E8qHUdB3HPQY/Pm5BimkjZdrA4IPY+lawlzozkrMqi3TB+QDB+lVpl2Soq4UYHvnnrVzgg8gdfWqE5zcgZB6VoSeqfG6/uINY8HKkpjkg0K0CuvVTgkEfQn9K4DxjYl7i11UbVOoIZJEXAKyqxV+nqRu/4FXoHxKtoH8b6RJcspgg06037idoHlj+ua+jfgHZ/BX4rfDu38H+IrW1tvE0ks7x3oUJKQznaVkxxgH7p44qL8qHa58LLjH6U5IwPTHTNejfHr4PX3wS+IV94duX8+EATWl12mhY/K314IPuK85xx7Hoaq9xETsqsQFHPTmkRiox+lNDbpO+Peng/N7ZxxTAeGynHb8qkjiWXOfrioG4HAz7mpoWAYAnBoAjnUI30/SoepAHJPepJypc9jTI8Ejn3oAM7Tg5P1qSKUDoCR796a6ds4BpI1yw7885FAEyxfODk8+tRvgyYUY+lWWXKbhxjqKp53OTg8+lAD5VBAGQD7UoyAAemfpmkcAlc8H1FOY4XGckUAMyNvTtjimB8A8d/WlYDA6/j3ppJA5GfwoATGcYwO9Gfm4HHbJo+7jnHsKCevp/KgBS2M5A6cYNG44yOPWkJOMd+tA9OaAAnt1OfSkY4GdxJ5FKMk49PUUuDg460AAfA5BooyO6hvfGaKAP1AksxtJJfGOmCaqrYKx4RvqT/wDWrrPsYB5O0+gBFNktV3j7xPYjGK4bnVY5SXTiSNrFB6AZzSppaAHPBP8AcGK6z7GT/AW+i002YTrETnuoxRcVjl20raBujK/VhzUi6Sx+7uH14/pXSvY7MY3HPoc/ypfspb+EH60XHY5T+xmBJTAbuc4pr6Gz/fYe3Oa6o2UYz5jYHbApRp4XlSSD0zRzCscf/YzDpGG+tKujeWS21CT2C12n2RIxkuV+nFBslYA9vU0+YLHGDS8HO1RTTphZiuVA9xgV1zWK7j8uR79P0pfsWPuxqvuAaOYLHHtpLDOTlfbOKP7N2oQBkex5rr1swW+YfUYofTkdiAuM980cwWORj01QM7HLe5pTaqW2FWX3B6fpXVf2WoO3AI/EUh0tS2wKQPXGaLhY5gWSqwVcn3LUj2A342BiR1INdQdLEJ4yWH+zx/Kmm1dpAGAXP0FHMFjmf7NIH3WVe+1TilGl7uUIIHXd1/pXUnTdpGN/4Hikex3NnaOP7opXCxy0mnqCNylj2Ix/hQunJz8pH511P2Mt7Un2Be0RH+8MU+YLHLiw8rgLnP8AdWiTTiOkefoa6g6aScjI+vNLNYsxGUQ/Q0rhY5MaZ6qE+oxSrpUjn5cD6viusuLAkLsH5Uw6dgAsD/KnzBY5X+zZ4+3meyij+ynYZEYDd811a6eAeRx6daP7NGSVDH6CjmCxyn9nM2EZQoHc0j6duBJXGB1JrrhpJI6HJ7EVE2k4IGOBz9afMFjipNP+XCx4FA03BUhOQOufrXZS6aDkbcKPbio/7KIOQn0J6mjmCx0PwSsvK8RMzH5whK5PavFv+CmLSR/8IExz5Hm3AyPXCV718OY2t9diwoGeCe4HNeT/APBSKygufh14VlfIuU1U+WB/dMT7v5LVQepMlZH53akwknZuo9h2rLlb94cDAFamoKEHc8dDWd5QlYY6n1rp2MBsRyd3Hp+NSScLuOTxT0tHywI4FDqdpBz16GmBXixux+tSeSzZOPl9+KbCP3ygirVy2IwB24/xoApSHB4+nrTCTxnn6dh70Dk5JxilzkdQcjpQAnBB9+1KCRn68c0mdx7mkwDjGfegBckcfzqQuQRyPY1GQAAQTn0FKOvuT1oAGBDE+tISfpTjnnA7Z5ppOTjjn0oAFUdWA6cUEkEjGM+opSD6Zz7dKTByQc4z270AB9/wpNuRnAz9KP4T0FABBGeOOnpQAm8dj2pQMDPb60dCMDnPQUDOBk8fyoAcvJ46+v8An6VMnLk9hzgdqjhz6DjualtlUAnkc9c/59KAGynGcAjPSlTCwjPQnvTJMNjByM9qmjUNCQfXPtQAsYBQHPH61FLKHbK5YU/cVjxgHng4qJRngYJ6YFACxkbQDgn2phY7jz+tOVcqc4xnFRtwdvb0oAk+Vfm+tKeRjOMGlUDy8cgg8ZphHTj8cUAdF8PLcz+KLV8lVgJmPfAUFv6V2PjzXHtPCVvZ5dLm/me4lLdWU9M/rXO+CIWtLPUb0xsQiCI7e248/oKoeNtYbXNUDbiY4kWNPTgUAZOoKtutukeOYwzH1Y/5/Sqe3cRnrUk1yZooldAxj4B7496iToD2HtigCUJ26ewNKgx0/wD1UB/vEAjk0xiAc/pQBoaRez6dercW7lJEBAYds8f1ok1GWW6kldss7Fi3rnvUdrbXE9ndzxRlooUDSOP4VLAfzIqrvBBB5Y/pQB6Foni60t/h94i04QKtzPEoEv8AEx81D/IGuNhYRGUnvH1HvVCGcpDMnB3AD9RVm5LREKVI+Toe9ICOFgs4boMVeEhx0zxmqEOTOvPUA5xzVsENkk9PU0wNHTwJJkyO4GOa/SjwJp3/AAj3wh0S0skEdy1nCPm3NlnAZs45xyfzr8z9Nm26hExAAyM1+qHw2mj1D4fadJhZF+xRMCwBx8lc9bZGtPqfEH7W/jq41/xydHWTdZ2CL+73ZBkI6/lt/Wqf7K3wXg+Kvjgf2ipOlWQE90BwWXso+pFcD8U5JL3x7rMjsSxuCCc556V9W/sCyRJpviSMAGcmE89Svz1cvdhoStZan1jaaLpejabFZafbRWlnCoVIUXAA9hXJaxoC6oJYJo45rdsh1cZBXnrXVXJ3E549+xrA1KdzbOFBGTjOe1cSZ1WR8FftR/BK18BX8et6TEsWmXR2vboDiJwO3sa8T8M6vcaHq1te2rtFNBIsqOpwQwOc/pX3Z+0zoyah8JtUllkAMQV13gdRXwfbWjQyZweBXdDWOpyyVmfp3pniAeIvBtrqscgCzWyXAUdMsnmDH4rIPbcfSvzx+MGmDR/iR4ghEflA3LSBAQdu/wCYAf8AfX6V9jfs46pcaj8MLC1ljLRw2+xXJz2uD+fP6V8m/tF3Yl+LuujG0oUQ5GOQoHas4aSaKlqkzzgHkj/Jqm2PtQJxncMgcd6kL4YHPHeq6tvuF6/eFdBkd38a74t4yaGMeWgtrf5QcgHyl9a47RdWuNK1O2u4ZSkkLhgVOO+cV0vxfmE/jq86jbHCmT14jWuZ0bT/ALfqNtbL96WQL+ZpdBn0Z+2L4ibxTpfw41OSNSZNNkQTA5ZwChCk+27/AMeNfNG4Ku7nHavZfjjdb/h98P4CAZIYJVVs9RhAf5CvFeoGSQOORSirIHuB5OcfTvTgeMcdacpXAyQCfWpBHGR83BxiqEQkllPb8KdEyj5iTmo3+90zTQCpGS2D+FAD5ARk9ulM4GDjPXjFT7tykYHTFRFmXjHTrxQA8fPnPapNg2ccFj3qEY6Z56YHSnr8yHJ4HPFAErECM7W/A1Vbjg5571NGh689CeT1qNlDM35ZFADx93Jxz2HWo1U5/vHpUikoMZ601lGDzgjgmgBjYK+m3rnmkyNvAzj1oY7cUmM8cHPrQAu3jByO1KAN2OPfPemEAkng0vQnoMc9KAAls8nPFHH0BNGcdCOnOKNu4Afn9aADjGR+vrSkjJ7ZpAuCR2zTsYOOmeaAGnGfu5opdq9yDRQB+vj2QZtxTH4809LUbCAq8/3jzW0lgCMjgehqVLPKkgMAOw6V5h22Oa+xlTgryac1gGPzIDj2roVstxycD6Ch7UcfcOf7v/1xQFjnBZq33F2+uTmhrDI5DfjXRLYqv3g3PqaDZhj8mfzphY53+z8fwk/Wl+yE8DPHbFbz2YAGCzH0TH9TSNaDA+Q575WkFjFXT2TkqSD0701dMy5+TH15/St4225QHUAds5/pSC0TPAP4UwMRtOBGBkGmpprI+5ThvUDn+dbXlEuVBC49qPszg8HcfzpBYxnsmIO4/N6sKQWpC7e3qpNbi22/5Tx64z/hSnTlHRst6YP+FAWMH7ASM7T9Tn+tOXTn25zx/d6GtxbQK2G4/MfoakEJUDaAV9zTAwPsH+zj680osMDorH1HFb32fc2/A/AUpgBGTjPp/kUAYSWTFcAED2JxSrYsoOFU+5Fbf2LzGDbM47jj9Kc8QTjAOR1IxSAwTaMcEqP+Ar/9ehrLzMYLPjru7VuRW4AOwfrmkFuc4ZTzQFjD/s8L0Gc/SnjTdmdij34xW2bHB4+X8RUhsfL6MWz68UAc8tishOE3EetPhtkjY5XcPQtjFbEln5fJAOfTNOWyJzuyw7AHpQBgpZK0jHaG6nC54pDZIGPBHsa3jpoXklgD/d60hsA4wuSfpz+tAGILNuMISvrjik+wAHBUZPQitv7EVBHUjtTfsuc9vw60wMF9PBJHXPWk+w7SOM10C2hK8DP1pGsse/4GgBnhO0EOtROi/lXhv/BQ6bz9D8HW/JP2mdxg8DEYFfQegWxj1GInjPb0rwT/AIKE6YYfB/hXVMk+XftbEf78bHP/AI5j8a1p7mU9j86NZZhcsueecin6LZmU7sZAGeOag1WNmuX4LHPOK2vDcWLdiwxgE8iu05yrqbpECADkce9YryFzjktnvV/Wd0k5ABK881TgtmlKgdDgH2oAIICULuCADjk+9JNLnICnFaN0qQwKgIPviqbQeZjBwM54oArEErgDgDnmkyQOQFHqakLAfLt4HeomJPB5oACOMEc+tA25xyCKB7np2xSjHXIzQAw8DnPPFKGIwcEnvinFc9DzSdwB0HqKAEDHaM/lQBkk9T1NBxjnk+g7Ui8AEflQAoyehIGOlK3IwBjHWms3Unn8KX7vI556CgBAOeeSOvFKCSMDjJznNJ9QfpQuTjGPQUADtjAHP49KQkhSMdKXAI565oUZI46DigB8Y4Y9B6ipYvuMQSOaiTIA4PIp8TDB9zzmgCSCNdzZzxRCS0jDk5pCML1685otm2Ox/Qj+VADpUKRgnrzUKL8o7Zp8jmQ/iaAuAT+FACMpQ4H/AALHeo1U98etOLZPbPrSZZR2oAfjzDinxruOevI5FRq20YOeantY2nmjjQEuzBRigDs9v9m+BhuAV7tvMLnnIHC4FcK24rwT6nvXa+NZhZ21rYB1zCio21uMgVxjctkjp6UAM5yTjoAeKVFywHXnFTQ2slyyxxRmR3bAUAk/lXr3gj9lP4k+NbZbqy8OXNvbsOJbseUD7jdzSbS3GlfY8icBMjr6c9KgKl2AHBPHvX0RffsO/E62tyfsNq5/urcAmvPvE37Pfj3wcjyX+gXBjXkvBiQfpS5k+oWZw9jqcmn6ZqFoqZF5Gsbc9MMrf+y1lgnB7fhVq4hlgZo5o2jdTgq4wR+dViuOf596oQighhjuRWjqLg3TqvZVHH0qvaoC6jA65z3qzqJIvJMjB4I46cCgCGElZjg5OMc8VZU4PrjqKhXHmHJ69ambIQnHbGKAHQt5UofkAc4HWv0M+AHiaLxd8GrFDO/nWkQhmwSpwmQRx1+Qsfwr87w2ZMkfSvdP2XPi+Ph94pOn38mdN1IojFj8sb9mwT781lNcyLg7MwPj/wCFbjw38Q7szR7Euvn3ZyN44b9RkexFbP7PHxim+Efi1Lx0aXT58Q3USgcoT1HuDyK+lPjp8IoPiT4d36c2buMB7WXAYNj+HIGSQOMd1CkZxXw5qejXvhrUJbK/he2uImxiQEdPT1HvTi1NWYO8XofqjoXjLTPGOmRX+jXsV7Yy/ddeo9QR1BFaVrpsd8kjyghB27Cvy38OeNtW8PP5mn6ncWTH+K3mKfng109z8aPFup2j2t34g1CWFxtaM3LhT+AOKxdHszT2h7n+1n8QdLvoI/DOh3ou0WTdeSRn92COiZ7nnnHTpXynNZSTzxW8ILz3DhVVe/Iq7e6qJN29i8mOFU8mvZ/2evg3d6rqsfiPWonRUx9lgI+YnqCB2b0z9TwBnbSETP4mfQvw40RPAfw8gjk+SK2tvMlZjjnbj9f3p/L1r89fiB4hPijxtrmqFt32q7kkBxtyCxxx24xX1/8AtY/FeHwb4TfwrYTh9S1CMrKIiAIk4B9wMDaPYe9fDmSQDnk85zU019pjm+hKhO0jk56ZpsRAmQkHO4fhTsnAHPTkVJp9lNeXsMcUbO7SABVGT1rYzPQvix4Vkmmn8Q2m+4sxcC1upQOIn2KyA9+RkZ/2a5Lwmjwaj9sVf+PWNpRnpnHH86978M/DLx7N4h1VbPwve6jpF0dk1ndQMtvdIR0ycDKnBB6iqF3+zN8RNOub5LTwVf29jO24Rr++KDOQNw6/lUKS7jszzb4sasb7T/C9pni2tXOOvVsf+y155jnnn8K9c+KXwq8Yxa7ufwxq0dpbW8cKyPZSBSQvzHOMdSa85k8ManDIUksriMjgq0bVSaAyGAOfUdeKfk7R/LNaZ8M6nKpKWVwcekTcfpVSW0lhZlkjZG/2lwRTEUFPzcdfWn8lRzux7YpWRkIG04pD83H64xQA9Tngj8ajkyXYj0p6YYc8MOlNbgkAZb0x1oAQHDZ6fpz0qaIgkqx4P/16hK7fQmnQjDgnkZ70ASqdm/bkKOntTIcMTnr1xUszKVJHB9KigfZkD6c0AMUHBOeKDyDkZI70oAXODupmPmH+NACZA/wFABJ9B70ZAJOOvWkZjyBgY5zQAAcdsZoPytjjP6UuFYjsetJjGB6UAIvJyOKXOR79KUHaOOaOgxzj19KADg5/WlXkZ9OKQg7/AMqABngcd6ADax/i/QUU0xljkAkdqKAP2r8puoXKdyc0CEN9w8e2ak4A+6R+VCmJgQcg9twrzDtEEe3g9/Rf/r1G0aRdC3PvViOJdpyyn6ik+6Rzu9+aAK6x5/8Ar5qXYyj5V2/U1OwDfeyPqMfzoxs5P8qAIzE6gFSmT/eP/wBaoPKyT1z3weKu7QevzfX/APXTWyeMqPwoAqvEGUZYcegpoXYfkYZ9xirqgjrIf+BEYpphOSc8f7PNAFIws3JwfoaUrhcbMf7W6rQQZ4x/wI0pRTwFQN6gc0AUvLZuOKkjjMZB4OOw61b8r5ecA+pNG0gYwGHqKAKcsRkfeFwfQjmnJAeCR+fFWzGAvCnPpmgKNmcAH0J5oAqta5O/BGO46UnlAnlVYf3gtXUAKbSgOe+OKaYwGxwoPYHigCqYUz8r49iKcIsg/KG984qw8aIeevoOaEhEwJwVA6hqAKvkIOq4+vNKqLHnBJJ7VO0K/wACKo796WKKNchTj2OaAIj+7GGBXPoM0BC+cBR/unNWRG46BU/HNL5Sxjs+fagCmItx+Y/9881KEJ6Fv+BDNSiLHTA+uaaUGfmJFAEflNn5SM+wxTmjLDHf2NThMD72fr2o2A9Tn2oAqiHJxs/Ekc0nkKMcDJ6VbwD8uwKB/FnrQRg5A5z/ADoApPDxx3zkHpTktxk4xmrDId3T8KXAIJIHsaADTkEF1G/Awe1cZ+1p4Dj8e/BLV4iha408DUbcg8howc/mpYfjXbxEKynqQfpVrxr/AKZ4B1qJcbpLGZeeQMxmtIOxEtT8WvLWfVzGMMGbr7VpXcjwOttbryeGHtTNMVbY3U7AbkYqDnvT9LnEUUt3KSxbODmu85Qlt0gT96AXIrBkuY4nZUGOcetWtT1b7QxIPPTHtWI7fN1Bz60ATvOH78+ppskpIODx+VQA8Y/HNLwf4j0oAQ9cnp+Ypw57ZWkVgByuacsmOSuT6gUAD53L1GTxTRgNnqe/FNLg5GM+9Lx7k0AP4ALHOPamFyQSM9OtLuI6Dj1poxnigBdvCnrnnmg4GcHHqB60hznOMg+1DEdP0H6UALlieDmkZvXn3oC9znn16UDg+g60AAILYJ6dMUvIOM8dPwpvfg9evpQeDjt60ADEg9MelOVx0HWjrjHSkXGSMcnvQBJzt5FLuOMk8j1700sWAwPwoTJPPftmgB8hGM/lSwnlgWz2wKjYkEc9OaIzhhnt1OaAHovz54NPkYqDxknrgUzooIJ4HNNZiy5yc460AIvzMRjJpCMcjsKmWF2ACIWPsCambTLt1O21lIPcIf8AP/6qAKeMHGcexrofBUSnXInbkQgyY9cc1Ss/Dl7PIB9naIY/5aDb+Ndro3h1fD9leX8sgkfy/LAHQZoA5XxPefbNWlccc9qyoYmmfaDkngClupjPPI/Tec8dq9z/AGP/AIRj4nfFC0+0xB9N09lubnK5DAHhT9aTdldjSvofQ/7G/wCyrBbWdl418T2aSyPHvsbSUZAB6SEfyr7S8sImFAVQOg7U2zgis4IoIEWKKNQqIvAUDgCpM88dDxj0rjbvqdCVitNAJEwwGO/Ga4PxxoEV5YygqAcHt1r0dl+Xgg+1YmuaZ9tt3XHOOKhrqNM/Pn46fC6xv5ppzbKkwPyzRDDc+uOtfK+saNJol48ErZIOVYdCK+5Pj5puo+GdWzdRSfY7g/JIq/KfYntXyV41torqORQMvGcqc84rtg7o55bnF2Dr5xJPHqata26yXEZAwAuKylyj8np34qzcztLtbJOO3rVkiwkmZs9hU5bC5IwMc1Wh4kPP4VLg+uQaAHlSw68ds0+NZFcleSvIPcfhVzS9NfUZgiIzbjgYHX6V9m/s5/sWf8JFa2niDxYGt9OcLJFZbSHlHXJz0FS2luNJs439m/4/X8SJ4a8RQTXViFIhvArFkwcgMV5wDzuzkV7N40+E3hj4sRh5FS4mcF47qAjzQxGclSQG7fdIPqpNdx8cdM+HngXwUdPis7bTH/5YwWCKJXb6Dlia+ePB/wAP/iRrkr3Hhuxl0PTXYGN9YkZDICeP3Y/xrn0fvLQ1V1o9Tjdc/ZN1KK8dNM1W3ZhnMNxII3X/AL72H/x2su0/ZV8UNOF1C9s7SAH7/wBojbP0G8V9Z6Z4e8caRbBNU1jTriUDkKHX9DxUd7p/jUh202XSXmYDCyFxt/FR/On7R9w5UeWfD39mTRvDZi1K6L30kbBo5ZvkiBHfkAn6Krf71aHxa+PmifCrS3stHmS91oKYkRV+VB3+gz3ySccnisjWdf8AGGl6/HH44gvbKyZv+PrT1MtqAD/GcBgPevT9T+BXgL4yeCoUVYUvDHm31ayKmVTjjOOGX2P6VLet5DXZH5y+JfEd/wCLNbn1PVJ2ubudixdh0yc4HoKzghcbR2/zzXr/AI//AGY/GPgvxtF4eWwfVJLk7rS5so2aKdPUHHBHGQele9fCf9hiG1FtfeMbo3EzYc6dZ/dB9HbjP0H51u5xSuZKLZ85fCf4I+JPizqHk6VabbWNlE15IcRxA+/c8dBX3p8Gf2WvCvwyjgu2tBqmrquXvblQcN1Oxei/zr0Twx4RtvCljHa2NjFYWUWAkMKBQPw/rXVwlRGPT19a5p1HLY3jBLccjmEKFX5QMcVoWV4TIqt096ypJ0XCscfypqXyRN8rZz71kaWOuRUdScZ7c1UudF0+5bMtlbyMP4niBP5kU6xvFcA542AkVaDBgcHJHb0rW6ZmZ6aPZRcJaxKv+ygFeafFT9mTwJ8W7eZ9S0uOy1VlKpqVmoSVTjALY4YfWvUZ2K5PrVNb1kIBywz371Kdh2ufkD8aPg/rHwZ8XXeh6xHypLQTp92aLJCyD646dQc156sKBSMHOSCK/Wn9p34MQ/Gf4eTtZwQt4h09Gls5HXJcYy0eevPb3r8qNc0e70LVbiyvYGiuoTseN1KlCOoIOOa64S5kc8lZmRKAmcHAHtUagk4ADetLJGxY54HXmmcMccjmtCSUjd69elHcDApFYZxUk6bSpHGe4oAZIxZffpTI8Bj2PQ4p7sVAUnA9qjDbCOM9896AFYAuTxz6U0HJHYHqacxGDzt+lNxt9v60AH8Pt1z60ZCjPHJzmkAz/EM9vSlxkYHNACDJA7++aM4HofTFAAHbvSgY6jA6k0ANxgfX2p643cDPvSE7cEd+lOA5POMUAKELJk8Zpqr6jHHSldjgDpz0FKqluilqADA78ewFFO2SKP4vwFFAH7XINq7VHH5/qKD8pA8wL7ZppuAvVvm9sChLncp5yPVmrzDtJVTcDj5/cdqYFZeFHB9aaZXX7nzL3xQsu4cL9cmgCVk2Ab1LZ/vc0wuvTIH/AAGkE4boAmKR3I6ZP+9QA9DgnOR6YGc099qgE4we5qJHZMlsYx705JFcn5h/wHrQA7IUZyT9OaCN3RQ30GDUYkidiGUcf7WKmQqPuqPxNAAN2MYb6Hn+tMVgJdo4ceuKewJHHyn1BpCUVQTs3dznBoAUtjpnf6gcU5G3L8zc96i8w/eHI7Y5pVIJ3HIb0FAEjAA8fMPbg0g2hs9/TPNNZ167mLf3etKpJIJ3H/ZJH8qABmYvnHye5p2FPzKAT24oLheCMfzpNwPIHHqaAAYkIL4D9gBTzI8fykkE9sVGdx5Vm2jqB0/lR9/nI49DQAKhXOVx+NAwDwfyo80/xAA07AH3QqjvQAoBPcj86bKSCOcfWnMFJBB59uKduY/fz7bcUAMH7vkc59R/9ekRNhJjKsT1p4K+o/nSE47E/pQAhC+mT3FKVYgZYAelPDK3DYSlUhDnJx+FADFRlOT0HIpQhySfwoVsyEc89Of6U9z8oPTNADDHycDAPJGKZs+bkA/hUgOAOp7UoUZ4IoAaEwenJPQ960btFm8PXaMOGgdf/HSKpIm0Y6GrmsyR6Z4Xv7mYiOOK2eR2Y4AAUnk1cSJH5D+I9CXSV1OGX5Cbl8jPoxGK4jUbnyYUhiPycnjvXa/EHWItQhuJyf3s8rygg9ixI/nXmTys3XPXv1rvRyiSuWzk8+tRM2D7HpSswOQST7imkcYIz/OmAAANxgADp70uQ5Ge9Aw56EfWrEFvlgWBGfXtQBDsLKeOvGKCmMZ464xU0jYYqO2ah3HnHPpzQAHI+h74pvOcfhT44zM2Ogz17f55qzPbpbBeQSRgjNAFQqeCelOJCqMgZ6cCgsxzwc9TxQE/dD1HrQAn3uAOD1oMRXGBnjin5AJH3cVJChdwD8vNAEBUsAQuR9elNVDgEAgVdNvxwc9+OamgEMZ2su5gO/0oAz1gfaeDinLbMO+MnvirV1ImdqlTx1BqJYpHXIBJ9cZoArlcE880hUg9unr2qV7Z14ZeT270ht5FXIXdxQAzp9AemKaOckDp/KnEEE8EDpkUsUDzkBELHOMCgABwOnNCKXYKBye2eauwaDe3EoAhdQfUcV3Hh7wUIwJrjCIhy0j8L9KAOV0vw1c37hdpOTxjmuos/CekWMRe9nMsvURRjP4Zq3eaqmxYNNUwQA4aZh8z1mDyBKI2O9jnJFAGvY39ppwZ47eKKPBAz8xxTJvGeFMdtC8hPAITr9KqBraBCoCk9PmOSKgj1SGBj80aKpyMYoASe/1a7bKW4jzyWc4FW9dvJtP8JfZ55d087lmCiqcviSCWRUQNKx6bab8SJPLmtIAwJ8tSVBHBwM/59qAOLDE4Az16HjFfop/wT70C30b4c6jq7Jtub65KbsfwJ/8ArNfnQBk5A9ua/Rn9jTUJbb4MWMhyVF1IpPT0rGr8JpDc+tIrpZOhIz0qyMkHn61xFlr6iQq7j6Z6109tfrNGPmHIHtmuVO2hvY1MBgOSQD1qjeXEUbbCwDsOKp6nq5soAc/M3Ari9f8AGkNtMUbB29CCMihu+wWsbPiDRrPXbKW2vbWC7hY/NFMgYH86+Kvj/wDsmT281xrHg5HlUF3m012BwOv7s/0P4V9Oz+PknmWONixYZYjoBVpNUN/KTwQ/XmhOUHcTSe5+Reo2ktneSQTRvFLGxVo3XDAjsQaVeY2weQc/Sv0D+Pv7LmmfFFH1XSiuma+qn59vyTYBwHA7+9fBOs6Je+GtUu9M1C2ktby2kMckUgIKkGu2ElJHPKLiVI+47H1q5axrM6LjAz8xz27VShbBfJJHcGuk8I6HNr+sWWn2ymSe7mWJEHU5OBx9TVkn1V+xh8AIvFt+PE+uW27RbNisEbdJpRjjHoAcmvrn4nfFH/hE7S20rR7V73Vro+TDbQJ93HU56AAfy4rM0WPSvhH4BttHtJUhh0y3JkaT5CzYy7kH3zzXMfDa1S5S/wDHWpPNO+o7XtLacbTGn8ChfU56981xOV3c6ErKw7Rvhjpmg6k3iTxLPJrmvSqWQ3O0CNe+0fdRR6mub+JP7R+heBQ0F9qIWVgf9DswScdhgYJ+rMo9BivP/wBo/wDaBPhO1nsrKZbnWLkEeYp4Ucjf1+6D90dyM18N6zrd5rF/Nd3k8lxcSsWeWQ5ZietaQp82shOXLoj6g1P9tmW3dk0fw9bR24PDXDLvP1AX+pq34d/bZik1C3Ou+HYpIQwYvauhYH1wy/1FfIhJbqTnPU0u49ug9619nHsZczP0r8J/GjSfikEi0y6tdctijm5srlPJvIuOAiHIYEk5OSAMVPa+FLnwNrltqfhKdI9PvJ1F3YSH5MMTlwP4WHPTg455FfnF4c8Tah4a1OC+0+7ltbuFg8c0TFWUj0P6V9o/B342XPxN0kxrEp8R2Ua/ardCAL2IkDzUHGHDYzyANxNZSg47bGilfc+x9M0xbrbNNmbjueFPsPyroUs4oUUqg2j9K8f8J/FKDyxDNIrTRHZKquCG9xivRLHxRa6haLLbTJMnQ7WBZfqK57W3NdzbuUjnhKNjIGAR2rjLi8aCSSM/IFPH0rVl1+FshJFMnXaDzWHqGo2kS7pZVMh68iluMilvgE67U75NYc2u+VceWDvIPas3W/F1vasVEgz7Yrlr3x3Z2iyTzfdAxzgfzquVibsew6R4jYJvkYKPU8cVv6f4njmOPMDZ6V84+L/iTb6H4Ri1CKcwPM5RU3DLYGSf5V5fp/7RkttMB5ryMxwcN/OqVOXQhzSPu2bVoyhKNuPfmsC61QLLkMeMHHt618/aH8cTfomZTlx8wByRXXaZ4yOr3yMjDbjnP8qlxa3LUk9j2zRdVVx83APGa+b/ANsH9nuDV9Hu/GXh/TUm1KIGa9iRctIoABcD1GBkV7bo8+4REEkBsnA6/wD1q7aBkvLYowDKw5UjjHvTjKzCSTR+QmmyaPqUkUF3YW6lmGHbI/Cq2qeH/C811KkkF5p+GOJI1LKCO/evsT9qz9mrw1Y+Hb/xBoVuul38ObhreL7rnqdo7fhXxj4X8SypcvHcTLvzgLcnCfQmu2MuZXOZqzsUJPht9q+fStShvAeiOdjfkaoXHgbWIEZZrRo9vViQcV6TKIWCvKlowc7gkTFSPTBq/BNhjIjybCn3GO9c0yTw2TR7vzjH5RxnGc1et/C15OoICk9MbhnFezS+HdK1tcvtguQNxaP5c/hXNeIvh/d6bG09nceaijovNAzzTUNCvbFj5sDbem4cis9oJUGChX6iunv9R1KxZobmKRCp6svBFT6RfMxSW6RZIN/zKy9vWmI48q4wSOKltdOnnU+XGXH+eK9abT9F1C1eO2SNpCNwxjmsMwy6QDvg2xDgsRQBxcWi3LAkxEY61N/Ys0zgJGwPof8APtXomi32nagskbpskbOWyOawNVM2m3rqUIj6rIBwfegDIPhi6ihLeSWCjk8UyxgUTFHgwT7ZrsPD3iCCa3ltZG2uw6sRVK9gezV5fLEqZGCgoAzU0i1nb5o9rE/rVR7BbO4ZF6Z5BrZ03ULfK5XkHGO9Z3iO3ltr77TEC0LgE47UAPaxU4IUdOflorNi12WJAuzHsc0UAfsKsyD+ID2IpJJwp+7n3GSKzRcZIPzA+g6U43W4gnj9K8w7S79qB/iA9hxUnn+nH+6f8Kzjdj0z+NMa78zk7xj1wKANYT56/J9VzmmyznA2AE96zDd5+5sHrtANAnUZ2HB7/wCcUAabTMyjAyfrihZMdMj1yTVDzmABUZPsaX7QABzz3GaAL5usfekB9iKd9qjx9/b78is5psAbUOfpmnjlQc/gRQBoG6CqCrkmn7w0YYlgT3LEVnIcN8x49lqUXAYbdpC+uKALokATAy3uOaRZ2U8sAvfJqj5iBsBefU08Nuwc/gOtAF37QM7sjHqOtKXwPMVz/KqYkI+X5j7HrSBsN0T/AHSeaALguAwydrP68GnLLuTaRye3SqbP/FgKB2HIpBIGO4ED2FAF9SI+GH5GnMwz8gBHfIFUkumII2Z9zz/KpI2dkY8YHrkUAWhKP936Gm5Y+h9dtVVnDdvzOaepVDyoXPvQBZTaAcMB9RQsqN0O76D/AOvUDNj7rLj601Zy3I3J+X9KALSzkE9RRGWUk56/3sVX+1GTv0oDM/3WGR14/wDrUAWjIF5JT6f5FOzuwV5J9M1VV2Jxu59uaUOMnK49wKALPmsRtYYA6E//AKqUMGPJIHt3qsZECnao3etSq/HrjtQBYz26EelIoySMZH9ajEmSB360/wAwAt0P1oAs2oDzICc5P5157+1742TwR8A/EE2/ZNfoNOhx/elyP5Zr0SwXfcIOgznNfOf/AAUTnVPhLokDN80urIwX12xSVtTMpn5ueIL95p+G4AwB6Vj7sZHGccjFWb9w0jswwfzNViQvT9a7TnGgDcO+KeqmTG3qamtLMzK0hGI1HJA600uq528dRjFAFiOCNIQ5+Zjxj0pHuSR82AfXiq4uG2lex557U0ZbIX9OgoAQKZn+U5J9K07fS1wTKe/SiygFsGkkGDjjP86iuLwzMQCQueRQBO2yFGCEY74HNZ0hMr7epz19anMchhGASTVm1tlgAeU5J6A0AKtksMGWHzHByRiqLRNPIUjXJyeP5VpX0uUIB6jpSaRZOxL7sKfagCsunMGG8dPSriac+zKrwPUd6uumWCggfpTmjIQKrHgde1AGJO3kZU561S3l2L9j+tXb92MhRh6c1paRpcUkaySKW9j2oAyobFpG3EYXrVz7U0PyRr0yOlaupWvlx4jTBPoO+KlsdMVFDNg4BOD2oA52Q3U0ofysiuj07T/tESh4xkDkYxV2aOIQ7QVQAjsOaii1HznMUJyqgjp3oAiudCsokLMOTxj0rX8PeGPtEyx28Y3d2YcCqtno8+p6jFDFmaaQgAKM4zX0F4T+HR0jThEWRpyoeWQ8Accik3YaOEs/BqW8D3V84isrcbpJQMYFed+KvFf/AAkd4LWwQQWEJ2qFyMj1PvWx8aPH/wBtuJNHsJCtpC+19jf6xh3P0rzGG+S1hZCCXY5JX+VJdwNbUNX8s+UiBUjxgDqTiqlvDqFwWaGNgWH3sVni7leTeqjI5x1ratdWmWE+bNtxwAB2qhCweHbqeUNc3QiGOfm6Vfh8PaSjDzZ5JmB6JyKzH1W2AJLNIx67jgVWbWdvEKDOeCoxQB2eiwWUeqxpBbJGpbq2Oe9cv451A3usP8gG0EfKPcmtHwjHez38l5IreXFEzAMD1IwD+tcrqUxl1CZzk/McUAVkwznP6Gv06/ZD0VB8C9PgkTBuC7k98k9a/MeMb5VXPPYV+sX7L+nNY/CLRISu1hECQfU81hW+E1prUZ4ue88MSJPIjGBcLvHX2NdL4S8Ww6np6zI+8AgZB6V0Ov6DBrVpJbzqCCOvQCvnjWVu/hTrJldHOnSn53jB2dep9DXMkpGzdme761rUFw4G/JUFtoNeQeLZxNK7K2XboKS88Yx3FvHdwymWGaMFWB6Dg4Nefap4gN1PguwQdVB+97ZrSMWiZNNWOy0gJC4Bbcz8swFdxo8zeWMqVyOM8cV5PpWvELgjCL3brXZabrKysqLIOeFFEkJM7p9ZhtVYuV3KNxA54rxb47fBXRfjRpL32myRReIbZGME0ZA83vsf8uD2r23wloMd7ALuZRJCc7VZc+Z/tfT0rXuvB1nIoeJfInH3ZE4P/wCqs0+V3RbVz8htZ0S98O6td6ZqMDW15buUlicYKmvZP2P9FGu/HLw6jr+6tWa6YE9QiFh+oFet/thfBQXWny+J7SELqlqo+0FEOLiIZGf94cfhXkH7IeryaR8Wo54n2v8AZJsfiAP8a7ObmjdHPblkfa/x61W6ubCx0y1EZe7uoYZPNQONjN8xI7jAPFXfHd/D4Y8Kwxq3lRWFtuAAwAxwi/kCx/CvMfiFr66r4w8EveTuhOqqEKqCpYRkAHPTgnnmug/aY1GK28Ba4PJTzmtXMc3n4YMofGE7jBbn3rlStZM2vuz8+viN4tn8ZeKL7VJmwssmIhg4WNeAB+FZmgeHZtduURNqIW2734H1P6VQnXknhua7nwBetp1m52bhICFbH3fp9f6V29DmOv1b4J6bo3h03JvjeXZIC7JAoJ74Xk49zXmep+E7hYZZYI3eGIEsxHQDgn+Vepy6jc31ms7FsF8AuvBqlq73TwfZbdl2SjMjbSO3Q8UkB4sylH5+X3rs/hd4vn8C+NNJ1aIlVimAlTs8ZOHU+oKk1i63oU+lXUSyhMPkqUOc44qKOLymjcjPI6c03sNH398UfDt9ofhW51/SgzPGHlTzHXEqAblxtGFAXdx9PSvEtI/aEu7MxvulgkKgsNzAgYB/qK+jY5GvfBlt5iOUGjRo+4HaGMRPXOOjemeDXBfCj4aWN54HivxLYXUzHi3VBJIowBk55HTI9iK54tWszVraxzI/avURhVu0U456A1iaj+0mtwxL3ikg5zvPT1/nXyvr1omm61f2qMWSCd4gWHUKxGT+VVUB9iORgitlCJnzM+mX/aJ0kzHzrppBnLMsbGuN8WfH8apdotpDJJbx5KhztBPqRXiWTkE8/UU8Eg+vOMCnZCudt4g+KOreJnjNzJ5UUS7Y4kJ2qO/41Fpt/kqXlcswzjFckgJAyckVt6Spk2AHnpmqEeq+FNWukliijctk449K+g/AN5ejyZXH7pHwxzy3r9a8T+EukyTyqz5S3DANnktx/Kvq7w5p9vcaVbQwQhdvPIOGHsR/WsJuyNYq56zoBX7LDJuK5QfKRXbaVLlF4AXtXnugWLSeSgYNCnCc5GOwNeh6dCYwDyOMHk1ydTfocP8AtB+EX8WfDTWBb5F7BbvJHjjIA5Br8k54X0bxIY7kBRHJ8wPIzX7YXUaXFrPC6ho5UKFcdQetfmB+1r8ILjwR4zuZI4G+ySkPC6oQrD6+vrXVTl0MZrqeUpok+pStPY6krhTkLkjb6DmpDYeKbGVQka3BXJDDmsnw5rAtt0bRyBAvzEHAB+tdPZ+JbaNg8F1MNvIUMGx6jBroMTPg8U32nvtvNPkV9mzjuc10mlfEmxQIj7kKsdyyjjmol1r7Y48p4ZnY5/e4BB9Kkkk0u/f/AE7SkiJG1ti9fU5FA0dLdS6b4qtsbYWl2H0IxXPaXowSxljNgDHExAyMllrIbwpaG6L6NqjWZAyI2c4Pt1pun65rXh7V0S8BdJOPNXlX/wDr0CJraKzudSU6cHsryMZNvKMK/ar9pr0N+ZtO1GBYzwMsM4PrXC+MLzUI/E096iyRZIZccY6Ulp4h+1yB7lfnHJcdTQBd8X6VPokqyWiEJvIBXoRWba67fbDHcW5uIewK5xXe+HvFdnJ5dpfhZrd2xl+oPFbGu6DZWUyS6eI2STlVPIOfelcDyHVJ4Comg3wzZ+6elMstW1EsqJLuQno1ehXWh6Zq3nIiLFd44Vu5rjItFk+0yrGuGU7Sc8A0wGas/wBnijlaMxT8E7elRweK5TFsZA+ex6VoXCS2YjjnjE0Trz3AOasQeGrK5t5Wt5FM23cEoAxZNQWVy32BD+FFSLDJHlXjBZeDmigD9Vxc7Tgkfkad9rKcAAjuQM/rVJ3Zm4AwRjGaFQAZIwR0wcV51jtZaN2D0fH0OKXz2fGCGA9TVVCHGWByPpSeYT3xUk3LvnA+h/3ef6Cn+aQeCx+tZpO3+Ld+A4qTzm7HH+9mqsUXo7gysVVeR68U9nPY8jrkVnq4kYjOPUgULJgkB1GPVgKQGgboJ2Vv0pPNyc7gfbPSqaTbSejZ/uqD/MUhmdieQoz2HNIDUS5TACjDeoqRrmTZjgr6FazA5AG45H+yRmk8zYc/Nj6UAaf2k7RjANCynO7Lf0qhHMHIHI9zj+VK0gBwpUn6/wBKANIXHPU7vYUvnbmxjJ/Ws5ZiOCuD/eVaeHYfvNxZfTofyoAvedsOCSn+yaeLjIyrDPpWeJmPzBcD0qRZSULccds0AXfPkYgkFfqDTzO4PKmT3YniqMdxGwzuKHPC461IJdw7D2zQBdNwB/AP+Aj/AApv2nb9xuvrzVQdD1/lSRlkzk7vTOBigC3HOwBy6k+1Sm6DY3YH05/lVJ7hc/Nx9KI5Q2fm/IUAXmudmD0z6nFKJR3P5KKo+dt/iB+oqTzD2cR+7Ec/nQBcEm7ofyp3nMeOmPbFUo5WydzhhTjKFOcBfcc0AXFk55cfTFTLICPU9qzkmG8Y4I7kVMkysMZzgd6ALyOSAc8A8CpY5cE84A4qgk3J7L14qaOQjGCMdaANrSZVNwCTjPSvkX/go7q+3/hD7LfmLFzKVzxnCqD+pr6x0yYG6UZ+h/Cviz/gpRayLqng28jYkGOeMr2/hOa2pbmc9mfDM7HzD9c4qMdTzn+lSSxsGPPP86lsrZppgoUsCcmu05jQuS1rpMUWMeZ82axgpI5PNbGtzGaQIPuooGM8Vn2cBkfr8vf3oAhK9cHOD+dXbNDAxkZeo4461a2QIjdyOhqhPdOcqOmegNAEl5ftMccAD0HFV4UaeUDGQTURbn1Fa2n3aW0GCuW7HFAGhtS2hUHr9KohhNdBc5XP5VWuL1ruQBeAT0NXLLT2gJkdhn60AS3FsqNubJ9Aau6UFkjyeEFZN00k8/lggkgDGc1pMo0+yCFhuI65oAZe3IWbCnIwefzqG2mknTCfO2cBfSsy4uPPZgD1P6Vf02X7Mh3d+mKAGzWReXcfulupNbdkwKARMuFGDxXPXWpFyRkNk9RUukzMBJMzkLjjOaANy8YKpdjj0z3pdKulkVmZQAOOO9YF1fPdXCqCWBOOeTV55l02x8tnBlb5j24oAfqOro6vGikc4FO0lHjiaYoNznj1/Ksyw8u4nMshConOCa9g+BPw4f4l+Isk7dJsyXmkYYHHRaTdlcaVz0D4GfDN0tH17UInWSUBYQRgAd2FXfjn8Srfwl4en0qzYLqFym1sDlV7817X4r1HTvAfhWaZvLht7aEhQOOAOAK/Pb4geLJPFviC5vHclHc4z2HYVlH33cuWhz0kj3ly8jEuznJJqxLEka7QAT1z6mm6dbrPIxJ2KvOT0q55lrEvzRlyOQzHGa2MyrGzNIAnLnoMdasRaPdXbAuNgPcn8qqyXYBzCuw9eO1S298QuHmYA+lAGjFodpESs0uXHbPWtGC1tbYosEAkl5PPGKxBqMEJDRx7245Y5pjajc3Eu2NXJI7f/WoA7O2uG/sfUC4+dQFIjbAA571548mXJIyc569a7bTo7ix8IXrToFMzg5YdgPX8a4g/McjgdARQBueBtHPiLxZpVgn/AC3uFUkdcZ5r9aPgtCtt4Ot4UOAjMo56DNfmZ+zToP8AbvxY0tc5WDdOT/uiv0n+D9yv/CORKcZPPX1rmrM2pnpEiAodvX3rhvG3h6HWbCaKWIOjKVIYcCu5RgehzkfWszUrcyI3AYduMVzbGx8Y+JbC5+FUs8ZR5tCnfevfyWPpz0rJ0/UbPXoftNlPkIeVYEFW9CK+j/HnheDUrOeC8t1e2k6g84r4/wDH3he++GmrSzafKRZSnKEchfZgeorqhLmRjJW1PS7eZ9ixqu8E447e9dHoZMl8kVwzRozBMngEd/0FeE+F/jbZ2l9HbaxE1o+donXlCf6V7hHqFj4jtIprSeJpU+aKRW3AnHqO3anJEpn0DpOtwx2kUEOCqqD8vYe1dDFeC4VCp4XHPrXh3h/xQhAiciKdTh492foR7V3Nt4ph06zeRpQDjI5rlcWbpkXxmu7OLwxdx3IUxiJi5PYEGvz3/Z/sr64+L1tc6XAZ7WFpmnw4ULCVYE8nsOcD0r6+13xr4c8Z6lqWleIdSjt7FbSSQxNKFLkDAUDIJ5PavmH4JWkVt4quE01mjVJnwQ3zeXyBkV001ZWMZu7Vj2P4uag3h2x07VUiScaffQzlpOdqnKsR6HmvV/ixYjxf4SguId7WuoWhXIjXbtlTIYvkEAHPAzn0rgvFmlw+J/DNxZzqW8yMo/tx1A9e9XP2bvGsHibwxd+CNdSObUtAbyxFMc+fCCcEA9cY/I4qXtcpb2Pgyewktbu4s5lZJ4nKFTwQQcEV2HgbVrFNNuNMvF8q5J3202Thj/dPp/8AXr1T9p/4V3aa/d+KtOsDapId11ZxAuVwMebkcc8ZA+teCw+TdkZIWQdVPc10Rd1cxasz1HS74alAsPl/MjAhsDrmvUIfgnNe6Ymp3d7FA7ReaQSFRAAeSe3HNfPekanqmjzJ9ku9hU5AdFfH5iuq1bxv4i8T2iW2p6rLNbKB+5XaienIUDP40NPoGnU5nxBZreavIiTC6hhPlpNg4Ye2ah8P+HpfEfi7SNEtIy81zMkZx2BPJ+gGfyp9/qMVm+xB5twwwqrzj619Ffs6fCafwtbyeJ9cQJqN7EqwwH78UT87T6O+Mf7K5NKUrIErs9m8Ya9daJ4F1QRqrPb2WLaOOPkF9wjXjrhCh/PtXD3caeCvhRql5IqLLa6c6iXHO4JsHP8AvYqz4gvrrxZ4q0/R7M7ra3l+03c6MCrzY+RPXC/exwAFxz24f9sDxfbeH/AemeE7SXF7dus04B5EKDv/ALzY/wC+TWKXQ1Z8dSFpXZnyxPzEtySTTov9YOOcGo/XPXrUsI2tu6ArjmukxK5UtnHFOyAo4yTXefCX4TXnxO1aSOOUWun2xU3M57ZzgAdycVzPirSI/D/iXUtPikMsVtO8aOepAJAov0AoW6FpFBz1rp9J09pZo0TljjHPvXN2OTKMkHH58V6/8M9Bjv8AFxJjI4XI+770gPWPA2mxafo0UIXfOfmz057/AIV9A/Dy/NtpsbSM0UKDp69K8R0m7t7WZIUBcKeVQZaQ17P4L0y91eRJrqPyLZTlLY8EfWsJ6o2ie2+HilxZxSBQdwBJ6c/T8a6y1AEYbbjAA4rktDkEUEabvlAHy11liymMgHgjiuZGzJpc9umPyrgvjR8MdO+J/gq8029T95tLRTL95G9jXoJPPXJxVa5P7iTIG0g8Gq2Efi9daWuh+ItW0W+aUGG4aBwgHQMRmtKX4eWN0c22pshPOJFIHbjNbfx0mW0+NHisxKJI/tr7tvHHf9a5qz1iyuNuI3jbcDlZD0967lqjkK934Q13Sw8sYW6gXpIjAg/h16VmRa1e2DL5sTxuhB4yMV00WuzQyEwXRZXJBilXAGPerkerJeB2uLVJUxtYhQwyaYGFbeLoZ43NwA8rqAMrjac9c1rN4ggm0+GBW3oHx5bHJHuDVe707RL9ZF+z/ZpAQPMQ4x+Fc/q/h240lfOt5zPCh/hPSgDo55TpzpMMXEMy7WEgzt/wrnfEenpZ+VeWqlYJx930PcUy31n7XA0Eny5xz7+9dBaQNqOjy2G9WZW3oT1/A0Ac5Y3rwx73XGMZJGQa7a58Qtqegxi0YGeBhhEBzj0rhLhm02d45VZSQRjHStSzv4007ER2TxfPuXjcPQ0rAdFaXbXqwXGSl3HzKjcHitqXw+l9C91bEeYw3Oi9M96yLXVrbXrFnEfl6hHHu3r/ABgdiKk8N6lviVo7jypF+Voh0b160AYKaq2J7W4QMFJXjqKzdPuJNO1JgMsnrntVfxPBPBrdzIAwVn3Z7VnRXLNjDHcec0wO8Fi9yTIrcMfQUVyUWt3cCBFmIA9DRQB+qcqq8oJOG9l4p+CgOWP0A/xqo0ygEbsD0AqITqrDEhX/AGfWvPOwuCQsRtX8xmpThcc8/WqzXJHt7ZzTFnDfxiP2VhzQItFhJ/GR+FR+bj+Db7//AKqYZ/M6MVx7ZpFuAc5x+NAE8CFmOSF+rAVKNrEj5iR1NVpLjCjbEXPoB/8AWpRK7Dpt9iaTAnLN2fGPTj+tLFhWyo3t35zVUOinLAn6E1KH7kbF7HbQO5Nw7EHKn36UKTu2kYX+9uqJXLnaQsi+meaYjhZyNuzHpSsItYAPA/HinCZQAp2n64NRCVeuDu9dwz+VDO0gwshGexbmiw0yyk3IVQmPTilMoZtnRvZQap7WQbSQT+FGGHIxn3xTsMvhgi8nkdyMUCX5SxIb8KqLIAvzk7vRTR5o+6uQT60rAWknV1J4U+wA/pSCTdyWPHvVYFkB3Zz7Himh9/LEZHT5qANA3oPqv4mgXAlOQ5O314rPZ92MjH0anxTbScdDRYDRMxkzgBvrxUQcHqxX6ZquZwh65+oFOkuy5H3h9TmiwFpbhf4WHvT0n2k7zkdu9Z5mB7Z+lDuuPl/d/TmiwGh54Y4WPHuP/rCnLIM8uD/s9SKzvtHHysQfU05JSpyWHPvRYDSSckkZwO2aUXG3gnNZ32jOMEe5yKe0+BjJwPypAaYn5B/A1KlwDwTgfyrF+04PB5/SpYpzyehAoA37S6CTxljgZ4rx79ubwDbeKfg42r7gt7o0n2mJxzlSCGU/Xj8q9HjuWmKoo+92zXCftcz3Vv8AAHWtjfK6BGx/dNXB2aJlqj8u2O+Tscn06V1kFhHpmjJMMGRwc4xXOabZG5vYlA6mtrW5HitmjDfKp24r0DkOevZvNmY45J6ehpkFx5LAKc54xUErmUn1FIhAkGeRnPHFAFq4mHA/MgYqqCW46fhzSyMHbKjj2NXIrMSxk4yxPXrQBTht2mYbRk1rxadIsIYr+BpdJtxDcEt0Heta6uwI8gcYwOelAHPpGkbnJwRyB6Ul3eSEbQ34VHesGl3KCGx64p9pps93gqCQOS2OKAFsYZZnZ1J6cse1Q3U0gdkMhcA/WtKeA2tqY42w38eD+fFY8qEsdwye2KAJ7EJvLyEcdiKsS3MYTIAzis2MbWwe57VahsZrl8Ipz3PpQAyHa9wNx2qT8xx2rUury2S22QYCgY4FQrpDxhmZcsPeqjwKcKeG9KAEt7lhc5RdzDpVi6tHY75CTIwzg9q1NK0yO1Xz5156qM0s81vK7Nswc9QetAGZpumSX93FbrjMrBRgZr9DPg74Msvht8MLWwQj7bdAS3D9yT2zXy7+zX8PbTxL4q/tK+/48bTDgEcM2eBX1N451+Pw54Pvrpgpt4o9ynODx/kVhUd3yo1hpqfPf7VfxMaa6Tw5aSgxQktMQf4uw/I/rXy+zBz1BOc4FbPizWZtb1e5upZGkeR2YljnqaxEXkY457VrFWVjNu7LvmhLfYhKn+dQTSliec4pNxw/GcU3GByOh9aoQ4MSCP8AJqSCJJZFVmwOp/Kq6jkjPHtUsb7HDY6HNAF+KxgiZurAfjWrbmSNAIo0iU5y7HpWMl+w+VF9Txz/AJ61LGLu7KYBHuxoA73xQv2P4faarOJHn3SMwHuQK8w2jcSGP5V3/j/UHk0XSrPyvJjghjXls7jjJP515+Rgd8elAHv37HVqH8falcFgvk2EmD9cCvtb4N6qr+H7TDhsrjjpxXwH+zdr39k/EGK3dgiXsbQnjocZH8hX2X8F7421pfabIdr2kxUZ646jFc9RbmsGfS1hKSg78etXnhDLk8E9u1c14auxcRqCSQRya6psEAE5/H2rlOg53W9LS7hZSgIOOtfPHxc+HwubKcBN8ZU8NX1Bc26upAGF7YHSuM8ReHUvI3LruJHGeeKafKyWuZH5a+P/AAxJo9xJGyssYY7f6Yrn9A8b634UlDWF9LDsOdhbKn6ivtT4v/CG2v0ncQ75CflP9a+MPHHhK58M37q6Hy8nnFd0ZKSOVqx6Fp37TN7NEiappySzRrhbm2cxuP0o8QftK6rdQeTao6oQMB2I59z3rw+Rdr+oz17VLIpJTuDzVcqC5c1bXL7W9QkurqZ3mfqQxxj0pNE16+8Patb6jp9w9tdQOGWRD6evt14qogyRntx1pGTAwOPWiwj608AftI6L4ht7Cw1SIaZq8jbHkY5hlJ+6Qf4ewwTS+NtG1HTPEUHirwzN9m1mzbeNvCzL/dbH6H3xXyrpE9raapaS3sLXNokqtLCj7S6gjIB7ZHGa+n5Pj54Ku9Xt7awtZtL0q5iRY4ZnMn2f5QpV2PJ6dai1noVc9n8DfEfw78cdHjtbhl03XoWJuNMdtj5HUKTyVPoP/rV5l4//AGUbbWrq7vbM/wBh3eA7bCptpZGJ+VFJBU8Z49cAVka94Gg1iddR0+VrW8A3Q31o+HX056MPr+dbuhfGf4heFojY63Z2njCyRBEGlIhmKD1Pfj3NZ8rT90u6e541ffADx/o1wY47MTrn76ybB09HANXdH/Z38fa7Osd0kenwH70jNvIHriMHNfY3wb1e3+LENzLH4f1Dw1BbnYTLMVVm67UC4z716k3wz01MC5Ml1ERgrLIWGfcEmpdVrRlKCPlf4Y/s66D4MuxqMhfWNVh5jllC7Ub/AGVGVTHqxJHZQa3fFXj/AAzaT4da21DUlISZxJ+6tI2zuYt/E3H1J7dq9S+JHwJ1/wATsi6T4iNjpSJtfTYIvKaQf3RKCcD8K8x1fw5pHwR0ea61e2NhbRvuGELF5MdQTkuxwfmJ/KhO+oWtsJoNvovwm8J3WtahI0Vvbh5WkmfdLI7Hkn1djwB2GBXxL8S/Ht18SPGmo67dqU899sUQORHGOFX8Bj8a6D4x/GPUfidquwB7HRYG/cWe7nP99z3b+VebhTng7T6ZreMbamTd9EIxIU+h55p+evOaaTgcdaFwN3pjp+NWSe8/s6eIo/DvhXxPcOyqd8ZA7n5WrxPxBfHUtcvrs43TTMxx7mr2k+I5dK8O3tjFkG4cMxHQgDisFiXOck59aVtbjLOnjdMiFcljivZ/BWqS2dvHBAm5zwqjjvXjeknddoSO/UfSvffhhp6RyC5mUs+PkXHOaAR7B4F0CPS1S7nHnX0oDM2P9WPQV7j4UivLxI/KCjPU5rzPwT4R1nWnilFs0cDEESScAj6V9C+F/CVzpMEaIVkGOQzc5rkqM6Io1tI8OukaSTXDbuDtTpXSwjyRjg44pthDLsw4AIHQd6nWNgdrdefaskW2SxOXTIOR7dqyPE+orpulXUrsFVELEn6Vsx8R4PY9cYrxn9p3xYvhf4Za7ciTZIINikEAktxV9iT8w/HOrDVfHWtXtwjN9quZHGxucFzVX/hFrSRJHt7mVSMcOnTPvWPqlzJ9ulZslS3BB6irdnrUcCkRrJGeuVk612rRHKTnw9qtmEkglSdTk4DdD6YNVnnv7GX99bSIQckAEc1d/wCEibyok8w5XJBZevetD+2zLCrIyyBzlhnnjrwaYGOviLd5qyAFHG3DDJz/AJNW11e1n0yW2YlS2MOpzRfzWV2pMtr5ZJyDjnHbpWZfaZbwwK8LFT6Z96AM6Qi3nIRty+oNdDouoJtG5skMCQpwQAa52JGjlL9QvJ962NCubOR5Fu0DszBR2IGeTmgDR+IUUJNlPbggMhLZ6k+9cnBdPFE4/hIxmuw8Q20Nx5fkMDCMqoc8j2964ogxsUK9DggUAdD4a1CW2uwI8FjhVLHg5rvbOzhtgZLiBYpsk5AyprymykxdRgHbgjJNehSX93NokkVt/pJkPy47Z9KAI/EOnI92hRlKSjqeRXB3Nm9tdyIcKA2B+fFdRHqP2u3jgaPbLGduD1FN1vT/AD4Wm8vDouOtAHPpCAo+br60VnMXLHacjNFAH6stIWPU01yc8gH3IJpSWU8sT+FJtMxDA4x/eFeedYbt33SPfBzQdqjnH/AqSRWyOn4Jj+dLGRzkE+lADS5Q/wAJ+jVJucDnIHsaQs5++px22nP9KbtlHUYoAsK2QN8jEeivSmbAG5jjt81QCNv4M579TTsnoyn8qALJkV1GGOaEnbOM/lVfp1BYemKU/KMht3+zjpQBbEjn77Ap2HQ/pTVkUPx09zmo4ic5xt98YqZF3tjcT7NgigCQuDFkZ/A01JGyORt9D1oztbZkcds4pdoduX2Z7nkUABcF8HAH1z/OnF1QZIBjHU8//qpohCnht/8AtDpSOiYOVy3ryaAJo50MfyY2/WgzDG0Dr7kmoURcYwAfXbQFCsFyefQUATKWUHPA/wBomhWUgkPjHbFQyx7WGCc4pyA4OcZ7c5pWAd5+ccDPuc0srsCpIwPoR/WmEYHzSc9uKZu3D5izHtimBYS5HOMAe3/6qDMh6Sn8gf5VSCuOx/PFSEB8bwGx0zQO5Y+1beuP1NLKwUAq+0nr1qmJWbrk49TTjISMIMeuOaBFpiQgJJHuBilEoIA3H9aovM7DCtk+gFOBAALZyeuBmgdy39oz8oA4/iz1pzT/ACAbsZqDewj+/kdhmmmTcAMce9KwXLAk+Y5Ofp3qx5vlpgnBIFZyuQeD05yecUplJOCc4HPaiwXNKG5KSqR69e9Zf7SWlt4m+BevQxg5S2MuB/EVBNSrJtKk8EelbN95eseFLyxmO9ZIGQqfcEf1prR3E9UflnoenfZ71h/GBwO9YWrXTtLPE55BJ59a6/xBpdxo3i6+tGUxm3mePbjoATj9K4bWIz9ulJOBuPSvQOQoRKGfDcckcU6VO4454qUQhIwT98mq7sxx6g9qAJrK28wksDtB5rRNwIIwgHA71n2140GMdD1461NPLkIuM/yoAla8JdVBzn0qxeysCIwTzg9elZ6YglVn5A9KtyuLu6LrkFuuO1ADbyycxKwBz1xV/TJZ7XT2LcMeMUTXEaqA3YVSutUJIiQYUGgCvdzsXbqc81W2uwGASOnvTrtsvnBHue1WrAjaS2MKaAIrDyhKEkU9c1stfCCPy7dQo6k1ms8IBOOeearGdnlChsDPftQBpxXkspxkH196qRkpe7niyD2NLZSLFdbWIx0+lX5byG0G4gNIRye1ADL67ik5JIPZR0qjZy+beKin5WYAcVWSczTOTzkE49K7f4L+F08V/ECwt5lBtUYyOD3AGf6Ck3YD6y+FvhuPwP4HtojCHuXUTSgDnJHQ/nXmv7SXjpk0OHTYZCBO4eSHPIA55/SvW9Z1hG09zpfyXUIwY26Nj0r4/wDjD4kuNe8TzPcRiKZQIiB6jviso6u5beh5/JlmyQcHnmmINvXg9qegYAcZpmPmxxu9Sa2IAqW5HTHNNJLA8ZI9BSrlm7jPWrMbKijBwfWgCGFSMkjgilDfvQOPriiSTIPYGmqeQQOT3zQBq2qbR8kYPpxV23cvOikhSSBjOSTWNDNNMNseSo61p6Jpck2qWgZwMzJ0+tAHRfFGJ7Q2FuxBZIlG3uOB1rg2Puev6V2nxRlI1xo2kDlSw4GCPY1xir1HcGgDY8GawdC8VaXfDhYZ0Yn8a+6PDt2lj8Q/PgJa1vo0kGG4/wA81+fpyNpzz3NfWvwX8Zt4g8P6JdPlp7GT7JISe3G39KzmtCo7n2x4UvVNwiKQowMt3NehQ7PKBIAJ6GvKvAyi4eGUDhlBJFekm7SNVzgHtiuLY6iwwVm4APOcmq13arJGRtB69qfBP5nzEgY7U25uRHlQRuPGKGCOB8VeG47uN12Ddyc9K+Ufjj8L1ntJ28vIAYg4/wA96+2LpVnTlN5HpzXmHj/wxFfWsyGIDKkEVcJcrFJXR+U+rWEmmX8tu45U4qCRcBCO4AzjmvVP2g/Br+GfE5kVNsEnKkDvzXlO7hcHgV2p3OXYkQZQjr9aXHGCOPUcmliwq5OSPbrTyAeD0NMREqjgNyuOoprDOe2KlwMZzgH88UjjHTr7GgDo/CPxL1zwXOrWd60luDk205LxHp2zx+FeoaZ+0XY3iBNX0p7diOZLZg65/wB09Pzrwkgjnoev60m0jJPOD2FKyA/Tf9nLxrpus+BrW40qVXhLuGGNrK245yOx6V7pZ3q3CfOd3HOTX5M/Bj4u6p8KvEUVxbTudNkcC6tQflde5x6jsa/SHwL42i17SrXUYG32dxbidHHIKkZ/P2rkqQs7nTCV1Y9Zt5gBlTx0x0qDVtKsNcspbS/s4L22kUh4biJZEYHg5B61i6Beed+9kkBXqB29q1hqkZkKx5xWJpY+Tvjr+wfpeuRXWreBCLDUcb/7JdgIJT3CE/cPXgkj6V8OeKvAmt+CtXn07WtPuNPvIWIaK4Qgn3HqD6iv2WN8h6Nn3/z+Nc34y+HHhT4mRQweJtFg1WKAny2l3K6E+jKQRx2zW0arW5k4X2PxuaJvTB/ummEnoOw9a/RL4j/8E9vD2vSNceEtTbRXbJNreZmj9gHzuX8c147qn/BO/wAeQhza6hpFxjp++ZM/mtdCqRZi4tHyaW4BoHTg19GD9g/4px3sdu2n2Yic/wDHyLxPLXHrzn9K9E0H/gmzr11Cjap4psLMkZIt7d5sH05K0OcV1Dll2PlHwRoc/iDxBb2VtG0ssjYAQZNfe/wT+BDadDFcX67mxkJIAcZ9q6r4M/sWaL8K5nupNRbV9RY/LcNB5e0dMAbj7175p3heOwRAGLAD0xisZzvpE1hG2rM7SPDUVpEoVPlAACgcV0VtYpEBsHC9qkW2NuB049RU8QUsQeW9PWsUtS2x0aBWx0J6UsiZOCMD61JtyeDz9aX765GQB61pYkrs+xGyeOuc18H/ALfXj8rpVto0Tjfd3G4pnkog/wASK+2/EOo/Y9PmbcFbBX6V+UX7V/jMeLvizfxQSebaWGIEx6gfN+uacFeQpaRPLVeK7tNkqlXjbO5TjIpi6fbFsJK4bn3FVPP3KxC4PqfWo0lVWywBAPO3iuswNKbRghQwTiUH14Oahe0u4MN5ZdexXmmwXeGJDEN2ycirsF2w4Do2eMMMYoAoR3k0DMTu56g06TUPtaFXQbs53KOat3Mm9yrKCobJz/Ks2RYnnxHlATj2FADXYhOhJ+uaiH7pweRz2qR1w+3sp49qJ41WP/a6fT3oA2oJ/tVqgZ8iIcZNY18266ckYz6VpaZ5ixuxGVx0IrJm5mYnJ5oAmskV5+u1iODXQ6HrdzZalDb/AHirYwD+lcsh5yOCPQ1bsJCl0G7+vf8Az1oA6HxDayWXiAOilJJiHwfWujS3luLR4yFMrDoG61h6oRqfkTM+5wuAT/hVG31021yRubegwKAK9xarHM6sgVgeQcUVYnjN9IZ8kF+Tg4ooA/UhLJgOV5pG04uwJXHrzXQtYjOec+vWgwopxIVDdge9ebc7LGB/ZwJ4Gfz/AMKebJxjJQfWtxrISEHbtx7U2SzGRkAn3ouFjDl04xgY3c+vFK9tvAAQcepxW29scDcv60SWrADAU/UUXGYZs8gbVGe+DSS2qKi85PfHat1LPP3l3j0Aoe0BAx8n40XFYwktmJ43j60xLc72yhP1X/8AXXQNB5YBywz3pqxjcSRjPf1p3CxifZwOe/pyP6UzyV3nh2PoAP51u/Z1BJAAPsaPsq5zz9SP/rUrhYwzASPlQhvUkH+VKYJfLPH4ZrZMO5tuD9QcUC0DfIVJz6n+tO4zESIqMspB9M04x7hwG3fga1/svlvt2bV9etDQEE7QT7jrSAx/LdWwSQP7pAFBTac7iuOxNaj25OdykN7mmrZR7fmUbv72aaYGdkPyWXPvQVI/hY+68VoLbGJSqcg+9MNs4HUD6DH9aLk2KBgZvvNn680eUYhgKefXmryRNzvYZ7E0zyXXrJuz6/8A1qLhYp7DHwQDn+7xSBdnbb9DirMkCqRuI9sLUjQAj5QU/wB7v+tFwKLljjCq35Cotu0+n+8P8KtNDu+6+KcsYP3g2PXBpgUslDkFT/u//XpGdgPlHP1zVlbVdx4x9KYYtzEZPB6EUBYi8zKAlW3e/FRsxwBVgxFSRuGPaq0w4woJB9KAF8wq3XdT/NJyTgA1XOQRkE4PY0ZLD8KALSyB1wOBn8a2tElxcBHIKt13DisOIcEjn8c/hV+2Vn+bPNJgj5w/bG+E66RdJ4y0eJirDbdwouQfR+K+L7+dZ52YZOfXsa/W++0u28SaXPaXqiZJE8sqx7V+Y/x1+Hj/AA6+IWqaasJisjIZLb/cPOPwziuqlK+jMakbO5575h3jBzTGyCDn6k0nrgHPrTmPGcYPqK3MhVTfk9hyKmB81kI7YqSxj3Jg/wAVSRQBLvPbsCeaANGe1SeFFJGSKda2yW67pHHfAqndTbiOSMcD8KoXN3JLtVzx0BPpQBZvpQxJHQkgc1QcEDdjJB7d6knbIyxyccE1Lp6JJkEemKAK8rmYgnrjqKlT93CGOcnvVk2sSc8j/PSqrzA4GOe4oAikk3Ee/pRGNjhuTjvTC5Bzz9a2tLhglt8P1FAFSyjM0pOCQOc066ZA5GDz1BHWrchhsLVth57j+lZk0xmXdxkmgCMqS2V4yO1e6fs86fBpllf6xcRu05IihGO3GTXhtm652nHPFe9eDNUOmeE7SG2AlJy7L6Z6Gkxo7XxHratBJNDcG3MYJ64IOD1/SvmDxNfyX2qyzyvvldy7MO5Ney+OdXnl8PzTmEZIww7jI6+9eD3blp23ZJFJAy4ZFS0A7nis44bJJ4/nUylplx2XpURU7s9cVQhv3cg05WO0j8Bn0pm0k/N+VPAKqTz9AaAE6DJOKfAR5gB5/rURI9hTlwnPT6UAaMLxRbiQR3wD1rX8JSxz+JdOUkKGmQFnPA56mudjTewLHAxXS+D7WJNdtpGG8pluT7UAM+IEgm8S3TBlYb2+6eOtc0MHpzz6961vEbLJqtw4BALHrx+FZgyMA8AmgACMx6ZA7mvWv2dda+z69faQzcXsRaMFv+Wi8jFeWRDKEA4HPWtHwlr8nhnxVp+qR43QSqzZ6EZ5FJjR+mXwd8WxS6Ukc77ZoQY5AT3Fdrc+JxcXJKvkY4UH+lfK2l+JpIZFv7KTzLS+jWSMD3/rXRad8Smt7t7e6LxkhcFgBnk/41yunrc3Uz6OtfGJCdvVeeamsddGoy7hIQTxn0rx7T9chvBG8c5MoJGM8AYruvCkyhCMg89u3+eaxasaJ3PS4kM0Kgdx1J6e1Z2r6OJIGG0MxBwCKt6fdo2BgBcdhnFa7FZV4wTjqKkZ8e/tI/AHW/HXh6eTS7KKS8iIkiTdtZ8Z4Ga+N9W+CHjbQbYz6j4evbeIE53Rn5cdc1+wU1ukjcDdntUNzpEc8ZUxjaRz71tGq46Gbgmfivc2NxY5E1vJF2y4I5qvuDbuB9c1+jv7QP7OvhPxVY3VybRdP1VvmS7gJB3YONw6GvkrSP2Q/iRrV3KkOlRw2gbal3czKiSL2YDk4/CulTTVzFxaPFfO2jATpz+NTWsEt5KI44ZJJGwAqLuJPsBX1fo3/BPvWp4kfUvElrav1ZYLdpQPxLD+VfRHwf8A2cPDPwogN2xbUtUwMXlxxs9lUcD+dS6sVsNQbPijwF+yv438aosz6edJsyM+ffAoxHsuN354r2PSP2HdLsoBJq+sXdxJgFkt1WNffqCa+sNT8RwWOERdzck7RzXB6/40gDl/ODKOoUcisvaSlsackVueRSfsyeB9DXizedgP+W0uSP6Vp+HPFOl/DFRpkLrFppkz5bSnCepAzx9KxPG/xIuCs8gYKqjG7jtXiN5q/wDaN+91fP50qt8ig8KDz+daqPMtTNtJ6H6Aab4ghudPjltJPMgdco4bOcis7V/GT2MkaBxknJPPSvl/4YfGweHohp92xNmM7Hxnb6/hzXpF541s9aiM8c6srjbGc5BHrWPs7M05z1nSviAl0wDsOeeTXVWfi2E/8tF9znrXzfpurbC7OTGRgY3Z/GtyHxKdoZST6Env9KHAakfSEPii3cDEgUY6A/yq0niCN8AYKn3r58sfE0itGGkIBPUV0en+LJYWG8sIz1J6Y71m4tFKVz26C9WXoc9+K1LaVSikgYI7V5lp3iaOSPzFYhAMk4rptN1lVCqzfP1K+lSnYq1zrlYDjI57VLGwAx+hrBl1RYlWRmHHJ+nrVV/EUSjJPsOevOKvmIsdNMyMjDp/Ws+S68p8jB561mjXreaMtv3bR16ADvWXqviGCFGyVw2RkHnH+f5UnIdjr0vFKltw9atxOGi4/DFeZQeKo48KZQVIzkdO/wD9augtPFdubQtkggZpqVgaPGf2u/i2nw28AXbRSqmp3itBbLnDbmGC2PYc1+W0tzJNO80rNJKxJZnOSSe9e+fto/FAfED4pSWcExe00hWtgpXgS7jvIP5D8K8CeJyFbBwwzmuqmrK5zzd2WBKuR+7XAGeR2p7Jbyvwnl467TiquJMHKHpx7UnnHbyMjvWpBObFN+0ORnmkayZcLvz6mhbpMDcpJ9RUnnxMf4sH3oAhlEyZOcHuQarbypPceueaszyIV+VjjJPNVx6qfm9aAHr1+YHPqan8kTQhRgY71AgLEdWHt61oxNGCFHMuPyoAsWWoeVC0ZwF24JFYTHcxb15xVmUiORlBOP5VXYckZyTQAn8PIIz3605GAkU9KZg4PGVpy/L3O4HigDatNRSBFLcuB0NN1aFGh8+NNuTgmskvuIIyG7/5/GtNJhJppjc9/wA6AC3nPlLkUUzzGhCrhunbFFAH7JLENvzGgQrg45H0oRNyEjr6nihELcsoPvmvMO0Y8WSMKAPTFARewCfj1qV228BtvsDnNEQ3A5Kj2FADHhAxx+XFRxRqxPB/4DUkpZMdVz6ikBEg6gEdytAAYh2wP97NMMBb/a/A1YRCTwdvuvNMcEfeG760AR+Tv4Zzx7UxoAf4Bx39atCJpe/H+yaaY16EdO+KAKT2yDkdfccU1YOe4988VfKoB8gOfejYFXcVIPrgYoAovFlSvG3+9nmmrAwHHT1JNXGIYdMD1oRBjgA/lmgCoV28MCfcYxSeWDzlQPrV9sGPYcken/16idUCFSAo9CaAKLW4L5zn/azmmPbjOS+T7girgRcYUj2xSCPJG5gPUf5NAFD7IrguWPHYGlTAUgA4960TbK6koRt+lMjhXaRtY++f/rUAZ6xAg7gKhe2IK7SD68YrTNmgxhc/QUfZ152AD1oAziACNzMD7U6UCXGBjHoDV5bQc7gx+pqIIrZ+Qt/wL/61AGatugPyqCfalNsHHz7WA6AAjH61daH02j8aSaEMoCjHrxQBnPAOysfYGo2t1Kj5efcVpCJeyFD3IPWoJISzEHIXPBxTuBnyW67SAFB9QOfxqjJH85A5+tbn2Qjnse5WoJbPAyQaLisYq2/zE5I4xz3qYRBgB3HYVa+zkYJ4444p/wBmH3uoHb/P1p3CxWjiKHaQcZq/BE2MgfQYzT4rcEKOOucitGG0wAQMZ9qVwQadFiRQTwTya8S/bP8Ag0nir4fHW7GIvqGnHzmKqMsm07h/X8K98hgOBjGBzV/UbKPWtFuLG4TfFLE0bKRngjFOLs7g1dWPxijty0hVvlPTP4VHJBsYjtjOPevUvj58LZ/hX47vNPdW+zTN5tq/qpPI/CvLixJYNXoJ3VzkatoOjdYY8DqeeKZJcsM8ADGM1E+5SeRn3oGHAOeT2xTETwzNK3JOaY43g7cn6VGoKtkZx705JCHyD+JoAY5LDaxxgYqxZEqjHoMVG/JJYZNIJdoGM47YoAnklZvUjt6VUJzIDgnnt0qyXyvHFRFd4JGD7CgCNzk5wAemBVq2kIi9D1qFYGPGcCn7/JxySOme1ADrgtIMZJB55qJfkXYw6d6d5gIyBgdsUoVGXJIGCOnagBlnEbi6hjGQXYDj3r25FXSoEiSRUdIwAF6HgeleS+HtNN5qsEcPMpYYX3r0mWK4tsJeRSnB70gMXx3qj/YUg858seVB4xXnaL5khzxjjPrXV+Nr6C6aFYySyZyecVycBy/BwM5zQBPhYt3Tnv61C5CtkcD0FOYbzjv0OaTASM7gc8Y4pgM34HPHoTTS+7IAGen9Kdj5SDjFN2AHj8jQAgUZxnFPiQyNk4H1pF+8e49RUokVRgYJz1HrQA/zwuRgE/Suk8CXZbWFjCBnKMAWOAOK5QDc/PI68Cuo8EsDrDr9zELnt0xzQBka07NqlyHOW3kHB4461R2kA9AKs6hhr6ZiAMuSD+NV9uG5PI5wDyKAJGjZ4VYYAzjrzTGhaMks249cd6es2EGclQfpUZdepBx7mgD2/wCBPj3zY4vD14RuiJe2djz2yvP419M6j4DsvFmko6LslAPzIOQa/Puwv5NPvIri3cpKjb1YdjX6Kfs3+J4/H/g6z1Dd+/QmG4XphgP6isammqNIaux5BqDa38Prwpue6tVfG4A5+v6V6h4B+J9teOI3kAlzkqzevtXXfErwtDeqwCc+u3/69fPXiHQ5dDvhd25a3kX5lPZsVKtNaj+E+v8AQPE6SRrhww7HrXbafqnmKVD7uhPPNfKnw78cm/tkhnYR3Cn5lJ78dPb/ABr23SvEkcaIysdzLu4PX68VhKLRspJnqcEo27i3HPfmpnkBjIxgGuT0rXluIEYEshPbuadqfiJbSNcfe67c+1ZlFK+0caz4gM1381lbgFUYZDv2/AVaub2JC0a/Lt444rj9S8bzEOq/cHbvUXhWafxbqhjRzDFHh5HP8Iz0Huaqwro7GXVd8LKmGYDI21zOu6zcW9q4MTqOSeDzXV61qlh4asiltEskmeVJ+ZvfNc1D8SdLvZ3gkHlv91o36g0khnkHi3x1JYRtMGB2xseTj8K8R8S/FFJruSVZMpIuRtbJBr6y8TfDvwz47tXjngClv+WkDFGH5Gvnzx1+xrqFu7TeHtZSeHqlvfDDD23Dg9e4FdMZRMJKR4LrfjSa9iZd4K4/M/nXJal4njhZgG3N6L/n1ra+IHwq8ZeCZiNU0maCDOPtCEPGc/7SkgfjiuSs/DU11Iu4EdyT2rdNdDIrXfiS8ucrGxhXvtJycepp+g+LNY8Pzb7G6lVc8xuxZG+orrtK+HqyAGQHPbI4rp7bwDY2sQZ4wx6e3amBN4O+NE12yQX9u8Up+UToSU/HvXrOm6xHewiaKTdgZ2q3NeQRaXb6cW2xqJDzyOnNTDxJLpXzwybCp7DANS9Que/6NqweVWlwFU9a7O51JWgSKGMSN0J6896+atH+L1lBtjvv3L9mX7p9D0r1TTPHumNYxSxXQl/djDKe/c/nWbiaJnpen+JJbN1WQeXBGN7sc/gP8+lbunfEu3unctKP3as2c9q8P174kwTWEdokokdvmfb/ACrDs/EsdlEyuwKEh3A5zjnaPqQPyqfZ33HzWPoTVvH7vZIm9455Bgq54zxzx9aqR+P5RbrufftByu/pXisnjmMRPNczpAhBOGIGOlcnqnxe0+1hkhtpXmY91yf1/Gj2Yuc+iNT+JqWXyifAAwCHyBXB6l8a5FkZTMNvLY3fdwOnXoeK8FvvGsmoQNIzyPKxykYXAHTrXN3FxeTyMzblycn61apoTmz6b0r4sHUryCJJNw4U4J57/wCFeoa74+i8EfC/VfEl22RDCdiZ++/RQP8AgRr59+B3wy1vxJcQ3UkH2axUhjNKcDGOw9eap/ti/E62toLP4f6QQUtCJrxweM7cqn65/KpcU5WRSbSuz5a1bUZdZ1a5vrg7prmVpXPuxyf501DtTbuXHfnpTIkWZiCdhx35qQWIxw4GOoroMQMzZGMe/NPEu6I5UMTyDxUbWbg5LgkDpUYhdB+vBoAsxiB1w6gEHrgjNNe2hJyrEDrVfLoDweO3rTRISNuMCgA2neQD3wD1pOA2BwOgx1pznG0DknpTGGBwOfUdTQBJbt+8BPrmr1ud9y0oIPNZqEDBOPqKt2mQ4Pbrj1oAlvo1SQt3Y/rVGT5mz1z1/OrF2wY5Axj+dVW6Enj60AIw98UYx7/SgbhkEcCgEAnnIxjPpQA7nHXaTVi2m8tlLDK8ZBqqGyuOvNStKSgXGR0oAvmZZSWIIz2FFVY5cIMqfzxRQB+zZbLYAJH+zxT1j6HBGPWq5uiHC4Vgf4sEmn/atoIzjPYqa8w7SV/3hBQkj2NOI2/d2CqyT9ssvsopzyeXwQefXn+QoAnb58bhJx7U0kD7w2iqobOc8/nTpJhgckfQ0AWVAQ5XBz/dH/1qbtyxJ69eKgaR4gGU5z6mlE4xls5PoKALKOqn5owfqc/1qNZVZyCgUf7tM84N1VnHs2KRJd7EJnPoDyKALDNxgqCtNBw2SQF9AuCKiY/LyCT6Cm/aT9wbRjtjJoAsByX43bfWhvvcAlvcVCJtoyDg+tPSc8MSSPY0AH3m+br6gcUvl4+ZRk+pFRuxkbKE59DTCXU4cg+oK/1oAlYsHycA+wwKcWVgQ33j24pse0pkDDeoPH5UrYwQxz+FAAsYVSRwPQ5zSA7hn5h7E0sKjYSMEZ74oZm7AN7igCJiHPPGO2etOCCToAuP739KbIq5HmcHttpUZnByOnYHFACMMY4BPuKRVYg7kDe4GKdsLAkjZ7LzQjc8up/CgCIwpxlsfXApn3P72PyqdF253Ae2M0eUrf3T7NigCsI85KjafdajKkHuD6ngVYO5ehApGfH8IY980AVjBn7zB89sHA/Go5LYEdOe9WYyWd8Nj/Z5wKV1yuMZ9c0AZEsI5I609UXvgE+tWpIRIo45pRDkqG54z+NAEVuhZgehB71pQxdO3H5VWiXnIHGc5zmtKCMHsSDxQBJChHr65q/AgVjjjI6dqhjABII5PcVaiXkH09aAPA/2uPg0PiN4KkurKDfqlkvmQlRknplfx5r8z9Rs3s7mSOSMxyIxVkcYwR1FftlLapdQtG65VhtOa+Av2uf2Z7/S9Wu/E/h21NxYzMZbi3iHzIepYDv9K6aU7aMxnHqj5AUbyAeR60NGYzjaeKlBKsVYFWU9DxinSSBsk8nvXUYDYotynjgUilEbJGCOKPN+TAXnpULyZ5OAfSgBZWBIOfxphJXJ7HpntSfUE9gKcR14755oAUcDjkn8qWOT2x60+PDqwPOPxpHYJg0ALJKQR1OfTtUT5ILc/WleTn1zTd3GT370APyNmPz9qIwWYrwv0pUQMnv0zThiNuDk/lQBveC4mOqbkZl8tdwZR0PrXbz6rO7Lul+0Mncn+dcv4Cit/KupJbowPgBMDIY1pSyCJzuJVfXHDUAcz4qvlv7xpEj8sHg46fWsKA7Bux+ArR1ecTXksiDapPA71mFyuAenrQBMXDKf6VZSGN4FPBXHIqlEOTk5HWrAyI+CSR0zQBFMFRhtxUJxnk/gKViSvv1pCozyMZPegBDnLDGPT3p/PIGQeo9KZ15AxinFtuMdfXFACh8E9z6eldD4KV31KaRfvJA+FzjORiubz1yRz3xXUeA5UF9dmRTKGtnVUBIznjrjtQBiXQDTSbjwCTnrUR6dMD1xzUl0As8ijghjwf5UwHnngjPegBD856HA5FJhVGAuQfxocEKMH64qMBicZx2wRQBKoGzG3FfVH7D/AI/h0bUNZ0O5nWMz7Z4EY/eIyGA/DFfKvzKhAOat6Lq954e1O3v7KdoLqBw6OvUGpkuZWGnZ3P1B1/XbeXJJXB5OO1eOeMprS6ZwroAR2P8AOvF/Dfxi8R+M7OVIoWuLm2jBmWJgGK5+8Afw6VieJviHqUylZbaa3OBkMuCcVlGFi3K528s7WNwJbdykig8g4zXqPgr4jSXMSQTOiXCEA5bgj1FfJEvjO8aR8swj6AE5xVvTvHV1BdJcJIVljYEEVo43JTsfopoHiFjbFlO5ScfL6/4Vd1LUYMEvITn+LGfwr5w+EPxntdaWO0upPIu1B+Rhw3HUf4V6PqfjeziikEkwAiXccjrnIH9a5XCzN1LQd4n8Ux2Ym+zjEi/xuwAarvwy+I9tpXhrUb24mWN3uCm44PRR/j+pr5x+KvxLW6kC2TlR0BA+teSnxjq9q7PFdyRq3LpnKt9R9K29ndWMubW59oXXxMa8vnmkbGfuhn5xWXq2v2GrosjPsnXlXUgHNfI9t8UbiKcCWfJHBYDIPSu28PeO5btg7OJUXoQQapQtsHOfR/hXxvcabMsU0nOccnqK9XsvFyXMCc5YjJ/GvjrTPFkt1qyyCTqQM9eK9Y0fxzbpEqyvyfu+prOUClI9uuxa6nEUnjRkYYIIyK8v1/8AZ78OazeSXEEb2Esh3Yt8Bc/7uP5Va0/x1ZXThBMTgZbOa63StdhnIIYMBj8PSs7SjsXozyPWPgJqOkxu9lPDcjjCuCp/wrz/AF3wj4g0gHdpFyy55aJd44OO3tX2FHfQypsbDZ5B61TvdNtrmLIUA5/Gmqj6icOx+fviTVLuyc+dZzQuB/y0jK4/MVy0UOteJpWj0/T5rhWPVIyV/PpX6D6z4Ns9RhZZYEkUjBDqCK5Wb4fRWMHl2kQijXgJGMAfhWyqJkcjPkOx+BPiC8VZL27t7IEZKElmH1wMVaX4P3OlvkazcoSMfuRtB/WvqKfwfIVAX5W287hnNUj4Ca44KqzdzjtT5xcp8+W3h64sD5aTSXTL0eXk/hxWhB4W1S/3KN6qeSyg8e1fQel/CQtLueMHJ7+n+c12ukfDCK1RTIgAx24/SpdRAoXPkOX4U6hcsfMMh4HzODzQPhPMhGVZ8dOMcV9j3XgqFYgEHyrw3A5rmtQ8PRANtXDE52gcY70lUvsPksfK6eAriC8VGiYgnnH1r1r4V/CC21K/iurmISIGyI5AMcH/AOtXY6voFtbTRtGgVX5bHr/n+Veh/Du1Szt0MaqylucevHr9f50TnoEY6nV+JY7T4cfDPV9aaFEg0+zefZjAO1eB+JwK/JbxJ4gu/FWv32rXzb7y7lMsjc4yew/Sv0b/AG4viTF4Y+BTaKHDXuuypboF7IpDSH9APxr81EYFhldx9+1FFaXCo9bEkLiMkk8+tSLcIMfKc46VKVgwp2ZJ7E0skEDRgiPB7kE10GRA0wGdufXrSGUY+8cj8jT2WN8AJ0+tNMC5HHfmgBjSAE4PHuc5qPOW4/AUOCpK9yOp6U1RznIx6igCYrnbz09qawwfQ56ZpN+OpIx1psjFh3OR09aADByR6d/QVajIMJOdrZwPWqi5OACT61IhyvB6AdsYoAmmJ8hRjkcdagCjHfGKdJMcY4GfT1qMZwQfpQAdCBik2k+mRS4BxxnvSN8p/HpQAD1HPehSW64zijGeBxSrnr2HOaALcdlLKgYdD70VH9plwMyMPTiigD9jt43AhialSfAIYhSfUc1TVio2k8/X+lPVeMkM2O4O39K8w7Sw5II+bd9KVlYcD/x6qe/zSDnfju1SmQg9Nv8AWgCdoxDgrsYn0NR4Jzlf50rswxyV/rQSH6gH9aAHb3jGSDjp8oyaQMGJ3Y/A80RlSSMZ/HFNWMFjzn6GgCTBYAKOnoCaRSwPCAe5p3lPHgggfX/9VR7WJJyDQA7c2eX49A2f0phJDHkkehFSbCAO3uKA/YEkigAByg4P8hSLLztwMeu7JpTknn9RTcKD0BPpzmgBxcK2SST6DrQWVh94g+hODSMqlfunP+fWlEQKcEj2oAaHCOBliPzFK5Z2yuQPQdKNmD/X/IpwUdPlJ9xQA0yuJApV+fcYqVoyzDkj6GkRCAVZV57gUuzyCBkHP+zQA8KYxyQCfxpWXOBkHPXmlLqeicd8c0weS/8AqwR68df0oAdsVBwQfrURzxnA+pp/C9AV/A00SGX/AGsepzQAS5iwUAbPXjGKia4YDksv0xVny/UbfqMVA0KycbOh780AIfmHIAz3FAY5ww+X161KoCgZGB7EVGQwYnaCp6dM0ACn5uAMdutNYAZ45z24NPEmQRyMUijr7880AR7QQT39aXbhsdOMUoUo2R8oI55pw5PHp370AOQfkPSrcQyOMdvwqqgCnOPwqeKQAdMHGSKAL8b46cf1qynIHIzWfDIc8Hn36Vbjkxkbu9AF6MgBc1Df6fb6nbPDOqurDBDAU1JfmA6U8O24Z5PTNAHxb+0n+yPDqTT6z4bgW3vACzQRrhZOfYcGviLVtIvNEv5bK/tpLW6hba8co2sPzr9qpoYr0MkgBXGBmvn/APaB/Zi0j4kWX2uGBbfU0OROgwenQ10QqW0ZjKHVH5jOGIA9O9NycmvbvGf7Lfi3w2sskMKXsEeT8jANgegrxq/025064eG5heCdDgo64INdSaexha25X6sMfnTsAqW9+/pSgBl6YpoJz82RxxTAfG21Sen9aY5yR3pM5Bx19+9NLfMR3x64oAD90cdKB8p6ZFBDMowO/c09cFRxnj1oAF4zwR6ihsswOM57UjY3DPB9aQMTzgfUUAdz4Uj0+HSf9KkKSSOWG3pxWjdhYjtWUzWuew5ArOsLqG00+3guLYOAm4Hvk96Z9t8sO0Qyn9wigDl9SIW4kKnK5OMiqLc9+ParF3L5szNjGTkj8aq8DPUn270AT26h5Am3rnvVh4vJQ5GfbpVeF9jLkYI/nU9wXaLGevPNAFQkkkjHPApEH59KVRwc4/E0hbHbmgBz/kAeopoAO05x/WnsAAp/Ooi24YwOOg680AHJ9OPXtXZfDFN+r3pwGIs5No9+AP1rjiRwcV1nw9cJdag4HItmGc4AyRyf0oAwr5Nl3OuApDnIqHouQOvc0+7C/aJFUhhkjI6Go+cnnjHOeaAGS/Lg4655NMLMccDj2p8mSAMYxzUZJ4IwB1oAUOScEcmgZ6kFfajcARgZPrTNxXAHWgDrvhh4zPgrxjZ6iVDWvMUyk8FDwfy/pX1D4x0PSfEFol5aiF0dMo8ZB3cdQa+L92Dntn8q7nwd8T77w9pr6e8peAf6ssNwTPUfSk1d3GmdLr/hBIZJim3CtzgZFcRd2DQvkcHPQ9a1Z/HEt08hLbjKcnn+Q7Vl3F3PcYLcHpz0piCCeaxlV4pGjZOQyNgivY/Al5rfxB03UERWluLWFd0m/DScnHHr1rxIyhXBOS3cV3fwu+KC+Bp78SxyMlzGqDZj5WB4P05P50mNDde0a8sLpory2uI51PMciHI9s1zF/A8+Y1Rkx1yME16Vq3imPXW+1SlyJeQ7DFYVwlvc7cYY4wKEB53JpTqCSOgzwKbbveaZIHhdwOpArs20zbcGMAD0BP8AhTrzw88YUgKc9hTESeFfHUKYjuAIZh3Ydfxrop/FhUiRTgkZGD90egrhrjw4sik457HtTRpGo28YCNvReitz+ApWA9A0bxndW4aQOWMjZHuK9U8H/EeQO5lkO3ds/Svm6C4uYZS1wjBsYLA10Ft4nMK8bvlI+7xx/nNJxTGm0fXdj8QUwpa4Bz3z07VuWXj2KX5DIOB94nvXxvZ+MZ4Osr7R0wcZ+tdHp/j2VQxWXk44JrN00Wpn1zbeL4p3RfNUjOOTWnHqVvcyr+8QjH3d2K+Y9E8etLGP3hE/QNnvXU6H42H20Ca4OFGSazcC+Y+hhYwTKJCFwcDC1ah0W2RN4KEEcHFec6F47tnbElwwRgAeOMe9bGqeNLLTtPM63AaFiI8rwyt0GfUdKy5WXdHe2q2scZRcHimzatDbPt3L7EdfyNeOp8S4vKkcylH3EA9u+c+3FZ+p/Fixs4N08xbAPIPcDgjNPkbDnR6zf60rhtsnyjOOnP4VwGr+LrSylYySAlmIwTjj1/z7V4V4r+PN1dPJDpm9pSNpkcYA7fjVn4eeG7jx9dldYu7iVnO8eS5Qg568VqocquzNzvsdP4i+KWniQIJ1Lbs8sPl5rS0P4y2Wi2H2u7uYrexjwWmd+N3Uj3Pt7V4H+0/4W0v4V+L9M0vQri4llltPtNyLmTzNhZiFAP0BP414lfa1e6jGsVzctJEhysecKD6gVoopoi7TPQvj78aLz40+MDftvh0qzUwWNsxzhM53kf3m4J/CvNUjdTjaemMAUyPlvT6Vaa5PzbzzjqT3rRJJWJbbGL5p7HPbigmcoAVYYoN02Rn6Ugm+YsTjA5piEDOoPGD9KGmkAxggjsaDcdOTj2pWlJHI565FACZ81WypZvUDpQtuNuSAc1f07XZ9Psr2ziSNlu1CSF0BIGc8E9KrzsEiQDG0UAVXKngdj3PShIgcMDnFKuGYkccdvWrkaqY8Z+btj+VAFIqAOeO9LHHuOc4xzihiWJ35yp5qeFV3HIOOM80AMFuDng/WoPLO7p7c1bnYwFSPun1qNHUNnGM8UAMNqwBOSPf1pvlkHBIPfp2q2ziSMjIyP1qszngk5x2oAfbweYDnr0FOmh8pTj8jwc06GZY1BwM561Jcf6Q4ZOT049aAKoU4HOKK2bbw9qVxEHitJpE/vIhINFAH63+WC424A/u5pziQN02jvkU13w2OPwNSI0YRuQD/ALteYdo1II2HBzjuRmnrEvPzA/QVF5/B+fP0FMWV2znH4UAWkZuc/o2aYkqqT8wJ9G4/lVdbgnPlMw9cGnM4HXAP4UAWDKG7KT/tCgHOcYX8arswAGWZh6Y6VLHKEGSSAaAHgH/lmzE98iiPKMcsM/71AQNyXJHXgGl+VjgMOPWgBzqrDn5hSps2gABR9KgmXavyr82fwpyvIIhjP0ycUASjcX24AT+9TvL2DIIIHcZFQlmdMEZPpnihW2jBXn0FAEwUsQxOB7808uEjOGBI7Dr/ACqOMGTthf7pp5UhSuF20AAlLpnaM/XmkV/73B96BgDGVpTGGGRgn2oAlWQBCAAQe5HNMRiB8u0/VajKSE8Lx35pdpB6tg/3aAJHfJBbt07UjzFyNwDY9cU1odx+Uk/lStE6YyTz0oAkWQsCVwvsaZCxlB4PH90Um3y/vnk9MU54ufn4+pxQAjtyMjd9BjFKmAepX6D/ABpSSAOW/CgB26bs+7EUAMOznnP50wgY+UHP0qRY2Qk7c/U//Xoyw6tj2FACBflB39e2elI5JOByc8HqacitvyQQD3zTwuSaAISpbBI5/WpQq45PJHr704IVAOevSkI4GT270AROnzZB5pqu2TnBA79KeAGJ68j/ADzQgz1yfp3oAmjc8fw++atwvtI556VSA28VYVjtyOSe9AF7zsYIPWhXzgc49qrIcjrT06jGM+lAFgtk5z/gKa8gckNjg1GWGcduahmbBLAkN7UAV7/S7O9BWSJTnPavIfid+zX4c8dWcwlskWdslXjXDIcccivXVkLZ3HPHFPWQjIIyKpNrYTSe5+VXxS+AviH4catcRG1mvbBclJ44ycDPQ4HWvNntGj4ZWRh/CwxX6++IfCmn+IY3W4hSTcMHIryLxF+yr4X18ySPYJvk43Lwa6Y1VbUxdN9D815Yhls5BB4JoVTgN3719WfEL9ijU9OaefQJWlRckRyt+OK+Z9b0S98OarcadfwmC6gba8b9j/nFbKSlsZNNbmXtC84z/wDrozj6ds1PtBYcAEHjFRFNwzk47iqEMYdx1PanJhnGeOccUALjkYP96prSItcxgdWYDp0oA7eW4FzHHE0ahVUKD0yMVn3YcBiDtA4x7Vbu7dopCWXg/wAQNZVwHSF2J3jpmgDnZ+ZM9T3NNIGevXnNOYZfIyM00RFhnHtmgCbavXIHtT5XG31+gqFRgEMfpTTknHABOKAAtkg+/btSAYPDZ9ADQT8pz/jTRkIeSfbtQA5m4BJ6d+1ITlc5x2puOeefWgnkk8DP50ADZx1wfTvXa/Dq3tZk1iS5u0tlFuVO5ckgkdK4sDAJ6rXVeCnK2+rMVDR/Z8HnocigDDlwHbaRtJPP+NRHAXgkdakfO4nI4JP1pvDdMn0oAhmBba3IGO1R7g3b8u9TXOeFBJA6GoW+negBFIDZ6D0pA20Z/kaXGOcHj9KTA6gcCgA5pd3POfbNGMlunNBGRkDoO9ABv+TAHvxWjY6y0AKT5lj9e4rN52EZ70YABJ5NAG893aMpII/4F2qlNcxZG0lvSs9V8wgY4J4qR43gZgwKMOobg0Aa+meJ7mwCo+JbfGNjn+VdTpur29+N1q6xSgfcc85rz0NkdB7UsMzwSLIjbHU5yKAPVLIPJOskwDDqea3Li6ijiXhTkYJZuRXKeF7+HXbcx7il0F5UH73vUuoNNaMyMPM7cnjFAGrG0dzclFbdgZJz3rQt7FNoYLuJ75rlNEufKkGWySTwBgmumXVFjAQSgtnDKB0/HvSYGimmRzRbWhVs/wB4cio28N285ZmiCY7KKkttZjAABGffrUi6rHL8xcE+g7e1IZnXPg+Byxjm288duaxLnTJ9PkYBQ6qeq11M98oj37gFbH/1qpRyLc5JbgjPzelFxGfba86RbUVkZflCnr6Voxa5NZxcNvI+cncOuKnbRra5DcHzPXpmrfw98H6brPii7t9VWWe1t1WTZFJsJycEZH4UXsMteGvGVzdMIJMjfIpLf3VByTn8MV1eqa3f3byxW7s8LHKbxgD3+veuu8YaJ4Y8N+FbFdJs4bZmuHJlILSMu3G0seSB6Vw1prtrEW807VzwP6YqFZ6lbaFE2V22ZJrllAJJOcZ//VWe2lK0hneViSuMNkj+VWfFHjmx0u1d2lGxVI/3jxxivJdW+LV3cborKERwdAX5OO9WI7iPRx9tRflYEgkV7d4d8U+H/hZof9t6rdRx+QCUiBG+V/4VUd818dv491fzPMSZY5B3UVl6rrmo65MJb65lunHTzGyB9PSk43FexqfELxtefELxjqniC/z515M0gQnIjTPyoPYDA/CudQfN1/Sm7m2/0pw+Q4PBq0IkAHbjnoDSNweg+vrTM5X0PekwcYPFADyOD0NIOBwOvOSKbnOewFOXOeq89sUAJzyffkClJxgYHHfvTQ2T/nrS9VyCR7H0oAcpDc9O/wBacZCYyrHFR4Ck7SB3+tKcgY7elADi2MDORjFAkIUkHn88U0FlI3cLSgktjH+NACudzZPB9u9LFMQuMnJpoyeDkY7etKeVP9fWgCV2yoBO761EGbG0ZFM3kknI68Vt+HNPiv7kRSAnkmgDJVSrEg4A7etXbLSbrVJUjt4Xd2IAwM81a1qw+xXjKoOwngnuK6f4YSj+37RGIwXGR70AaHhD4Janrut2Vneq1qtw2BuWvuf4a/sZ+FNL063lurWO6mGGMkiAk8ehry5EWLXNFkHIEq8j/P0r7b8Lyf8AEogPUlQf5Vzzk+hvCKsYem/CHw1ptnHbxafCEXoNgortQy/X8M0VjYo8Gu/Ed6rfKI8Y6BT/AI1BD4wvV+Voock90Of51XuBkDA+lUZLcuSR16UlYrU2f+EqvG6LGCOwB5/WnjxPdHlkiI9wf8a59VKHGeMVP5THbwPaiyC7NVvFF30jht+vXYen508+KL116RAeyn/GshEIY7vXr/n6VMsbMRjBAosguzT/AOEhvV7R/XH/ANercGu3bcbYiT0wP/r1kJCwxgfKfU1ftrdm4YgjOOtLQLs0o9TncZ2hsjoc4/nU0d9O4GQox6ZqvFEwwCTxxkGrix7VHHIHepKGefL1IBOehFJJdyheDj1FOkGBgDP09Ka0Qxk+vXvSAYupTEbT9M96UX0wA6D3HWoihVxjp1zQIPm3AEcfrQBdivJOCWyMfxd6nW9ZSOEx9KzVDbgOQRxntVmIYZQd3WgC+LyTI4AU+2AaeL45ICqM1UzgAf8A681FJL8qt+fuKALp1ByTgJke1RNqU3PCfiDWa1x3yeenrTftG0/L6UCuaZ1OdeyHPt/9emjUZwDhEGfY1nfasuB2xjB7VL5pZB3460DL8d/KMZI/AVPJqDsPmxxz3rJErLgd84wPWpBLjk49TQBoJcEZyA3GTSm7dTn5fxzVITELjPHcVCJ9zYA470Abcc+8DcF99uaek+H+XB+vaslbwgKF6nnmp4pweCc4/nQBpLtBaT+InqKUSDGeS39Koi83R4zjPvTkkJbtgCgC4z/MOn1puRjceWxUUcgbABzj0pWfB/iH0oANwVzxwTz/APWp6yZU8ZzxVV5QdvtT1kVVGCOeemDQBOTtY8Y4FTJLtyM4+lUi4xycepNTRuGXqQPSgC7u5I9egFSrIMYI9eM1ACRgn0BNKZdoJPBPfFAD2fPHaoXORyck9803zQDyPl9qZJJ3yM/1oAQnB64+tPKblGDj3pkbBgQRk570qkEYH/1qAIn+XoDwetRGcpyBjtmnykfMenU8HtVWUF2/zigDotPhje0Qugc/e+bmvzF/bPu7Sb49azFaIii3jiik2DgvsDH/ANCH5V+mqy/ZNPaTcFCR5+nFfkZ8btYbX/iz4r1BsES6hIBn0U4H6AVvR3uZVNjiRISSCOM5qVYmlGB19jUIAZvXBxzxW1p6FYicc9812HOY7q6MFIIP0q5pwX7ZEGb5QecCkv0Amzj/AOvVnRYEkv4gflAz1/GgDXdY5pHaK4JLMch+KqahFJHbtlSQP4lOQalfauTtXuQQcVVu3mEDFXAUjoTmgDF5wAMn19qE44HQ8+tMdxv4B4weeOab5uQCfrQBNtwMdT71Gy//AKj60iSdznHrSCUDJB49qAF7cgH1x2pMKpAznnOKa0mOBjnsTQBkY6elACDOQc9ecZp3GMDIPXPrSM20DPXuaQHjOOMUAKRz1GeT713Pw98uLStflMaSOtuoCOMjlh3z1rhCCTkdK7HwNdCPSdfjYtmSBQAOhww7/wCe9IDn5W/eNxncTwAcU0fMDxk5xjtRIn97Of8AaoZSSAcDA7UwIblApBI68Y9KrqODwRjpzVi8AKLjqKrsSqjHHfrxQAAkkkjr2oB46DHrQFyeMmjHOCP60AIcjtkHoaUYYn6d+aBhjgjn0oXkEZ/WgA5IHYe3al3ccdup70gwB2HHWgEqp7qeaAJo5BGQ/YHgCu78TaNJ4n0BPElu/mSRIkdzEByuAAG4rhDEfJBAG4nGCa6v4ea89lqg0yVwbK+/cyqegB7/AK0AcgOCeQvuBRwfU+oroPHfhSbwb4im0+U7o/vxODkMp6HNc6Mc5yOec96AJbS5ms5lmgkKSKeCDzXQN45ubmJVuI0dgMbhwTXNDGMDk0AAHPcd6AOwsNdtpnXe4jPo3FbL+RIoMVxhsZODkV5sMj2P0qSOeWJgysU9CD0oA78XsluQoYOv94GrNrq3mlVYlQpwGB61w1vr0sYG8B89SeuKsx+IUX/lmXPXrQB3f9oRmQYOQeSM1ctrm2YqNwwGB+Y9TXnNv4oeOfc0KEYwNvBAqw/ilZIdiREtjjJoA9Tk8VQwaWZJdqbgyjjrjvUXgfxJb2txc3k8yxNcMFAd9uQvc/UmvHr/AFm6ndVkmO1VAWMDgCqj3s0hKvKzEknHPWgZ6/8AFD4ySXLQaXpMkcsMCMXuBz85xkL24AFeWz+JdUu2zLeysewzx+VZgbJx60hAGOPmJ7mlsIknnlvGBlkaRj/E7ZqL7uQMnFLnpznPTNLgDGOhPSmADHQkEfzo4zx07YoPTHftTSMDPqemKAFAIzj+fNAPPYfSlI2gY4HbmkbPTueaAA/T6UegwAOtCpg8nrz60AE8HnHSgAzwT9e9BG4Hv9Dmhgoxx+GKAQOSeKADJBoHf+LHalXJPcd8+tN25yR3oAUYBznjrkUpJz1z7elLgbec5ppHGcEgetABjJ6n/GlwSB0J9e9KCc88DHANKoJfA4+lACdcc04jA4Ix60zAJx0p+AVyeSaAGMBzjFaWhymG9jOQoHY1n8MoyM/hUtnKySqwO3B7dqAO28SaaboJMDxtyazfC8htNUidHMbKww9a9vc/bNOZHzgjFY6wG2k2g8k9aAPrzR7lbvRtNuInEjI6NuHbmvs7wNLv0K3yf4fz4r4O+GF8s3gyGPd+9jXoD93mvuP4dSl/Dtqc8lBz+FclTQ3gdhvJ5Xp9KKrgj1orG5pY8KuLcg9RjPbvSxqUGSOcZwKnuf8AV/8AAv8AClj6H/dH9aYFFrfJ4GDnGTVqC3YjkY7UH/Vx/wC9/SrkX3n/AM9qAKi2YPBJYH/69PW26HOe30q2f9ZF9f6mm9l/3qAI/s2BuHWr1uhyMr17dBTIv9T+FX4f60mNIljiJ4CnFWFgyuSCpHvT4uj1NP8Af/Ef0qRlGaIdMexqsQxBBAwDz7Vem6tUL/6w/hQBXCEfNkilCAsc5HfFWD/q/wAf6VHF/F/vf4UANEQAJIPvUsKY46ZHanS/6lfqv9Kkj+8PxoAYylc88j9Kp3XL5PI61oH/AFZ+v9aqXPU/7g/nQBl3Hyk4xtyTxVGW6eJsYHPf0q5N1FZ1x/qx+H86skIrliQCMk+laUVwW+7xntWTF/r0rWtOn4UgTHxy7jk8ZHApxmxzkE+maiXp+NQt/rJPqP50FFvzgV4ORTlwW4I9/Wqyf8ekP1H8qmH+sT6j+tFhXHPcbXAIz34NIbwFB8xxzxmqdx/rX/3TSf8ALJvx/mKLBc0VvNy9e3ABqZbvGPmHPH1rLj/j/GrEf3D9P6UmFzThvAhIDA+9Sy3gJwcVlxfehpZPun8aQXLwuBu9M9jTluhkgnAz0zWeOq1Mf4fof60DL4nB7jJ71btn3c9j2rIH3H+n+NaVh/x7D8KAL5m2qTjtSeaCOx+tQP8A8e7fQ0k3RfrQBJJLt9+Oxqq8+SevPpTZPur9KhH+rSgC0LkDGOM+lSCfJHoO9Zs3+t/AVND0i/GgCw8mQfTFQp88oUtzmppev4VV07/j5T6igCx4x1JtK8J6nOqn5LZ2Htha/H3Vbp77Ubq4kbfJLKzsx5ySSa/XH4r/APJN/EH/AF5S/wDoLV+Qs3U/Q11UdmYVB0C5mXgelbMByMdyc8VlWn3k/D+Va1n/AK0V0mJUu4W84jqf5Vc0aJDdN5iZwjH8cUyf/Wy1NpX/AC1/3G/lQBUMkQb5g20eh61DdESREqCBjnJpYerfQ/zpLr+GgDLbls4GcZNNfGeO9L/Gf96kb7p/z60AGcHHYfpQB8vqSe9LJ0P0H9KVPuH/AHh/KgBu3PfJoIBYZAOTj260Sf6tqVf9b+P9BQA1QR0H45pMY4HanN9xv896G+8v4UAIMr3z7V1XgyJpLTVzlRH9nzuJPXIwOO9cr/y1b6j+tdX4K/5Buuf9c0/9CoAxThA2Y8sT1Jpo4P1p7f8AHw/1P9art94/UfzoAkuYXaNWVSVHX2qhnnA47Vp3f3F/H+VZ8fQ0ANJwccY6Ufe754ximxf6xvwpy/6t/wAf6UAGeQBScEZHI96Q/wCu/AVIv8X0oAavz8AY+tTWcv2e6ikZRIqtnDd6hj/4+Pw/oasCgDpfHWvL4p1x78WkOno0UaiG3QKi7VA6DvxXLwSlJY5AcFDnPpWzqH3pfqaw4/vH/d/woA7DxX44i8S+H7G0ltib62AHnsckgVxgwA3XpUz/AH3+pqB/utQA4Z7dugpSdx6A/WiP7zf71NX/AFRoAVBxjdjNBAXnrnj6Ui9D9aaPvPQBICe/b8BSEgEUkP8Aqm+n+NK33Y/92gA6ZBwTU0UZJxkHnAJqKTr/AMCP8qsfwxUAV5TukLYzRjpnIB5pF7fj/OkXt9aAHA8E9R3NNbOBhvwpZP8AGkfr+VAChRjII4PSjbk5J59qdH99Poak7r9KAIQCM59PWgjBHPFKP9bSS/w/73+FAAM5PqfT2pV9DwfY0qfeP+e1MX7rfUUAOLYIPB9c0NkdecUR/wAX1pF+6n0/pQAp7dCaQ4PUjPapE/1R+n+FQDqfoKAJQFyc+mc0Ke2CSfWkbt9KkH3V+tAERIz19hThg4PUUxfut9TUif6pP896AEHfnt2pyg99uT396IfvP9f8Klj/AIv9+gCuMhvQZqRSMcd+oph6r/u/1p9v/q2+tAEsibogxIHHJFV0J3A8881ZH/Hoah/5aH8aAOy8PzxtbhWxv96vahZbmVh0B/Wue8Nf6411d32/36APU/hTdCPSriHJwBkD07196/CW6W68MWbfeIjHJ+lfn98Kf9VP/uj+tfePwS/5FK2/3F/kK5avRm0D0URbucgfjRUbfeNFcxrc/9k=\",\n \"margin\": [-40, 16, 0, 0],\n \"width\": 595\n },\n {\n \"margin\": [-20, -150, 0, 0],\n \"columnGap\": 8,\n \"columns\": [\n {\n \"width\": \"auto\",\n \"text\": \"$toLabel:\",\n \"style\": \"bold\",\n \"color\":\"#cd5138\"\n },\n {\n \"width\": \"*\",\n \"stack\": \"$clientDetails\",\n \"margin\": [4, 0, 0, 0]\n }\n ]\n },\n {\n \"margin\": [-20, 10, 0, 140],\n \"columnGap\": 8,\n \"columns\": [\n {\n \"width\": \"auto\",\n \"text\": \"$fromLabel:\",\n \"style\": \"bold\",\n \"color\":\"#cd5138\"\n },\n {\n \"width\": \"*\",\n \"stack\": [\n {\n \"width\": 150,\n \"stack\": \"$accountDetails\"\n },\n {\n \"width\": 150,\n \"stack\": \"$accountAddress\"\n }\n ]\n }\n ]\n },\n {\"canvas\": [{ \"type\": \"line\", \"x1\": 0, \"y1\": 5, \"x2\": 515, \"y2\": 5, \"lineWidth\": 1.5}],\"margin\":[0,0,0,-30]},\n {\n \"style\": \"invoiceLineItemsTable\",\n \"table\": {\n \"headerRows\": 1,\n \"widths\": \"$invoiceLineItemColumns\",\n \"body\": \"$invoiceLineItems\"\n },\n \"layout\": {\n \"hLineWidth\": \"$notFirst:.5\",\n \"vLineWidth\": \"$none\",\n \"hLineColor\": \"#000000\",\n \"paddingLeft\": \"$amount:8\", \n \"paddingRight\": \"$amount:8\", \n \"paddingTop\": \"$amount:10\", \n \"paddingBottom\": \"$amount:10\" \n }\n },\n {\n \"columns\": [\n \"$notesAndTerms\",\n {\n \"alignment\": \"right\",\n \"table\": {\n \"widths\": [\"*\", \"40%\"],\n \"body\": \"$subtotals\"\n },\n \"layout\": {\n \"hLineWidth\": \"$none\",\n \"vLineWidth\": \"$none\",\n \"paddingLeft\": \"$amount:34\", \n \"paddingRight\": \"$amount:8\", \n \"paddingTop\": \"$amount:4\", \n \"paddingBottom\": \"$amount:4\" \n }\n }]\n },\n {\n \"stack\": [\n \"$invoiceDocuments\"\n ],\n \"style\": \"invoiceDocuments\"\n }\n ],\n \"defaultStyle\": {\n \"fontSize\": \"$fontSize\",\n \"margin\": [8, 4, 8, 4]\n },\n \"footer\": {\n \"columns\": [\n {\n \"text\": \"$invoiceFooter\",\n \"alignment\": \"left\"\n }\n ],\n \"margin\": [40, -20, 40, 0]\n },\n \"styles\": {\n \"accountDetails\": {\n \"margin\": [0, 0, 0, 3]\n },\n \"accountAddress\": {\n \"margin\": [0, 0, 0, 3]\n },\n \"clientDetails\": {\n \"margin\": [0, 0, 0, 3]\n },\n \"productKey\": {\n \"color\": \"$primaryColor:#cd5138\"\n },\n \"lineTotal\": {\n \"color\": \"$primaryColor:#cd5138\"\n },\n \"tableHeader\": {\n \"bold\": true,\n \"fontSize\": \"$fontSizeLarger\"\n },\n \"balanceDueLabel\": {\n \"fontSize\": \"$fontSizeLargest\"\n },\n \"balanceDue\": {\n \"fontSize\": \"$fontSizeLargest\",\n \"color\": \"$primaryColor:#cd5138\"\n },\n \"invoiceLineItemsTable\": {\n \"margin\": [0, 0, 0, 16]\n },\n \"cost\": {\n \"alignment\": \"right\"\n },\n \"quantity\": {\n \"alignment\": \"right\"\n },\n \"tax\": {\n \"alignment\": \"right\"\n },\n \"lineTotal\": {\n \"alignment\": \"right\"\n },\n \"termsLabel\": {\n \"bold\": true,\n \"margin\": [0, 0, 0, 4]\n },\n \"header\": {\n \"fontSize\": \"$fontSizeLargest\",\n \"bold\": true\n },\n \"help\": {\n \"fontSize\": \"$fontSizeSmaller\",\n \"color\": \"#737373\"\n }\n },\n \"pageMargins\": [40, 30, 40, 30]\n}\n'),(11,'Custom',NULL,NULL);
/*!40000 ALTER TABLE `invoice_designs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `invoice_items`
--
DROP TABLE IF EXISTS `invoice_items`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `invoice_items` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`account_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`invoice_id` int(10) unsigned NOT NULL,
`product_id` int(10) unsigned DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`product_key` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`notes` text COLLATE utf8_unicode_ci NOT NULL,
`cost` decimal(13,2) NOT NULL,
`qty` decimal(13,2) DEFAULT NULL,
`tax_name1` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`tax_rate1` decimal(13,3) DEFAULT NULL,
`public_id` int(10) unsigned NOT NULL,
`custom_value1` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`custom_value2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`tax_name2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`tax_rate2` decimal(13,3) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `invoice_items_account_id_public_id_unique` (`account_id`,`public_id`),
KEY `invoice_items_product_id_foreign` (`product_id`),
KEY `invoice_items_user_id_foreign` (`user_id`),
KEY `invoice_items_invoice_id_index` (`invoice_id`),
CONSTRAINT `invoice_items_invoice_id_foreign` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`) ON DELETE CASCADE,
CONSTRAINT `invoice_items_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE,
CONSTRAINT `invoice_items_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `invoice_items`
--
LOCK TABLES `invoice_items` WRITE;
/*!40000 ALTER TABLE `invoice_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `invoice_items` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `invoice_statuses`
--
DROP TABLE IF EXISTS `invoice_statuses`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `invoice_statuses` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `invoice_statuses`
--
LOCK TABLES `invoice_statuses` WRITE;
/*!40000 ALTER TABLE `invoice_statuses` DISABLE KEYS */;
INSERT INTO `invoice_statuses` VALUES (1,'Draft'),(2,'Sent'),(3,'Viewed'),(4,'Approved'),(5,'Partial'),(6,'Paid');
/*!40000 ALTER TABLE `invoice_statuses` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `invoices`
--
DROP TABLE IF EXISTS `invoices`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `invoices` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`client_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`account_id` int(10) unsigned NOT NULL,
`invoice_status_id` int(10) unsigned NOT NULL DEFAULT '1',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`invoice_number` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`discount` double(8,2) NOT NULL,
`po_number` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`invoice_date` date DEFAULT NULL,
`due_date` date DEFAULT NULL,
`terms` text COLLATE utf8_unicode_ci NOT NULL,
`public_notes` text COLLATE utf8_unicode_ci NOT NULL,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_recurring` tinyint(1) NOT NULL DEFAULT '0',
`frequency_id` int(10) unsigned NOT NULL,
`start_date` date DEFAULT NULL,
`end_date` date DEFAULT NULL,
`last_sent_date` date DEFAULT NULL,
`recurring_invoice_id` int(10) unsigned DEFAULT NULL,
`tax_name1` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`tax_rate1` decimal(13,3) NOT NULL,
`amount` decimal(13,2) NOT NULL,
`balance` decimal(13,2) NOT NULL,
`public_id` int(10) unsigned NOT NULL,
`invoice_design_id` int(10) unsigned NOT NULL DEFAULT '1',
`invoice_type_id` tinyint(1) NOT NULL DEFAULT '0',
`quote_id` int(10) unsigned DEFAULT NULL,
`quote_invoice_id` int(10) unsigned DEFAULT NULL,
`custom_value1` decimal(13,2) NOT NULL DEFAULT '0.00',
`custom_value2` decimal(13,2) NOT NULL DEFAULT '0.00',
`custom_taxes1` tinyint(1) NOT NULL DEFAULT '0',
`custom_taxes2` tinyint(1) NOT NULL DEFAULT '0',
`is_amount_discount` tinyint(1) DEFAULT NULL,
`invoice_footer` text COLLATE utf8_unicode_ci,
`partial` decimal(13,2) DEFAULT NULL,
`has_tasks` tinyint(1) NOT NULL DEFAULT '0',
`auto_bill` tinyint(1) NOT NULL DEFAULT '0',
`custom_text_value1` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`custom_text_value2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`has_expenses` tinyint(1) NOT NULL DEFAULT '0',
`tax_name2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`tax_rate2` decimal(13,3) NOT NULL,
`client_enable_auto_bill` tinyint(1) NOT NULL DEFAULT '0',
`is_public` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `invoices_account_id_public_id_unique` (`account_id`,`public_id`),
UNIQUE KEY `invoices_account_id_invoice_number_unique` (`account_id`,`invoice_number`),
KEY `invoices_user_id_foreign` (`user_id`),
KEY `invoices_invoice_status_id_foreign` (`invoice_status_id`),
KEY `invoices_client_id_index` (`client_id`),
KEY `invoices_account_id_index` (`account_id`),
KEY `invoices_recurring_invoice_id_index` (`recurring_invoice_id`),
KEY `invoices_public_id_index` (`public_id`),
KEY `invoices_invoice_design_id_foreign` (`invoice_design_id`),
CONSTRAINT `invoices_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
CONSTRAINT `invoices_client_id_foreign` FOREIGN KEY (`client_id`) REFERENCES `clients` (`id`) ON DELETE CASCADE,
CONSTRAINT `invoices_invoice_design_id_foreign` FOREIGN KEY (`invoice_design_id`) REFERENCES `invoice_designs` (`id`),
CONSTRAINT `invoices_invoice_status_id_foreign` FOREIGN KEY (`invoice_status_id`) REFERENCES `invoice_statuses` (`id`),
CONSTRAINT `invoices_recurring_invoice_id_foreign` FOREIGN KEY (`recurring_invoice_id`) REFERENCES `invoices` (`id`) ON DELETE CASCADE,
CONSTRAINT `invoices_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `invoices`
--
LOCK TABLES `invoices` WRITE;
/*!40000 ALTER TABLE `invoices` DISABLE KEYS */;
/*!40000 ALTER TABLE `invoices` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jobs`
--
DROP TABLE IF EXISTS `jobs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jobs` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`queue` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`payload` longtext COLLATE utf8_unicode_ci NOT NULL,
`attempts` tinyint(3) unsigned NOT NULL,
`reserved` tinyint(3) unsigned NOT NULL,
`reserved_at` int(10) unsigned DEFAULT NULL,
`available_at` int(10) unsigned NOT NULL,
`created_at` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `jobs_queue_reserved_reserved_at_index` (`queue`,`reserved`,`reserved_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jobs`
--
LOCK TABLES `jobs` WRITE;
/*!40000 ALTER TABLE `jobs` DISABLE KEYS */;
/*!40000 ALTER TABLE `jobs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `languages`
--
DROP TABLE IF EXISTS `languages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `languages` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`locale` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `languages`
--
LOCK TABLES `languages` WRITE;
/*!40000 ALTER TABLE `languages` DISABLE KEYS */;
INSERT INTO `languages` VALUES (1,'English','en'),(2,'Italian','it'),(3,'German','de'),(4,'French','fr'),(5,'Brazilian Portuguese','pt_BR'),(6,'Dutch','nl'),(7,'Spanish','es'),(8,'Norwegian','nb_NO'),(9,'Danish','da'),(10,'Japanese','ja'),(11,'Swedish','sv'),(12,'Spanish - Spain','es_ES'),(13,'French - Canada','fr_CA'),(14,'Lithuanian','lt'),(15,'Polish','pl'),(16,'Czech','cs'),(17,'Croatian','hr'),(18,'Albanian','sq'),(19,'Greek','el');
/*!40000 ALTER TABLE `languages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `licenses`
--
DROP TABLE IF EXISTS `licenses`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `licenses` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`affiliate_id` int(10) unsigned NOT NULL,
`first_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`last_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`license_key` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`is_claimed` tinyint(1) NOT NULL,
`transaction_reference` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`product_id` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `licenses_license_key_unique` (`license_key`),
KEY `licenses_affiliate_id_foreign` (`affiliate_id`),
CONSTRAINT `licenses_affiliate_id_foreign` FOREIGN KEY (`affiliate_id`) REFERENCES `affiliates` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `licenses`
--
LOCK TABLES `licenses` WRITE;
/*!40000 ALTER TABLE `licenses` DISABLE KEYS */;
/*!40000 ALTER TABLE `licenses` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `migrations`
--
DROP TABLE IF EXISTS `migrations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `migrations` (
`migration` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `migrations`
--
LOCK TABLES `migrations` WRITE;
/*!40000 ALTER TABLE `migrations` DISABLE KEYS */;
INSERT INTO `migrations` VALUES ('2013_11_05_180133_confide_setup_users_table',1),('2013_11_28_195703_setup_countries_table',1),('2014_02_13_151500_add_cascase_drops',1),('2014_02_19_151817_add_support_for_invoice_designs',1),('2014_03_03_155556_add_phone_to_account',1),('2014_03_19_201454_add_language_support',1),('2014_03_20_200300_create_payment_libraries',1),('2014_03_23_051736_enable_forcing_jspdf',1),('2014_03_25_102200_add_sort_and_recommended_to_gateways',1),('2014_04_03_191105_add_pro_plan',1),('2014_04_17_100523_add_remember_token',1),('2014_04_17_145108_add_custom_fields',1),('2014_04_23_170909_add_products_settings',1),('2014_04_29_174315_add_advanced_settings',1),('2014_05_17_175626_add_quotes',1),('2014_06_17_131940_add_accepted_credit_cards_to_account_gateways',1),('2014_07_13_142654_one_click_install',1),('2014_07_17_205900_support_hiding_quantity',1),('2014_07_24_171214_add_zapier_support',1),('2014_10_01_141248_add_company_vat_number',1),('2014_10_05_141856_track_last_seen_message',1),('2014_10_06_103529_add_timesheets',1),('2014_10_06_195330_add_invoice_design_table',1),('2014_10_13_054100_add_invoice_number_settings',1),('2014_10_14_225227_add_danish_translation',1),('2014_10_22_174452_add_affiliate_price',1),('2014_10_30_184126_add_company_id_number',1),('2014_11_04_200406_allow_null_client_currency',1),('2014_12_03_154119_add_discount_type',1),('2015_02_12_102940_add_email_templates',1),('2015_02_17_131714_support_token_billing',1),('2015_02_27_081836_add_invoice_footer',1),('2015_03_03_140259_add_tokens',1),('2015_03_09_151011_add_ip_to_activity',1),('2015_03_15_174122_add_pdf_email_attachment_option',1),('2015_03_30_100000_create_password_resets_table',1),('2015_04_12_093447_add_sv_language',1),('2015_04_13_100333_add_notify_approved',1),('2015_04_16_122647_add_partial_amount_to_invoices',1),('2015_05_21_184104_add_font_size',1),('2015_05_27_121828_add_tasks',1),('2015_05_27_170808_add_custom_invoice_labels',1),('2015_06_09_134208_add_has_tasks_to_invoices',1),('2015_06_14_093410_enable_resuming_tasks',1),('2015_06_14_173025_multi_company_support',1),('2015_07_07_160257_support_locking_account',1),('2015_07_08_114333_simplify_tasks',1),('2015_07_19_081332_add_custom_design',1),('2015_07_27_183830_add_pdfmake_support',1),('2015_08_13_084041_add_formats_to_datetime_formats_table',1),('2015_09_04_080604_add_swap_postal_code',1),('2015_09_07_135935_add_account_domain',1),('2015_09_10_185135_add_reminder_emails',1),('2015_10_07_135651_add_social_login',1),('2015_10_21_075058_add_default_tax_rates',1),('2015_10_21_185724_add_invoice_number_pattern',1),('2015_10_27_180214_add_is_system_to_activities',1),('2015_10_29_133747_add_default_quote_terms',1),('2015_11_01_080417_encrypt_tokens',1),('2015_11_03_181318_improve_currency_localization',1),('2015_11_30_133206_add_email_designs',1),('2015_12_27_154513_add_reminder_settings',1),('2015_12_30_042035_add_client_view_css',1),('2016_01_04_175228_create_vendors_table',1),('2016_01_06_153144_add_invoice_font_support',1),('2016_01_17_155725_add_quote_to_invoice_option',1),('2016_01_18_195351_add_bank_accounts',1),('2016_01_24_112646_add_bank_subaccounts',1),('2016_01_27_173015_add_header_footer_option',1),('2016_02_01_135956_add_source_currency_to_expenses',1),('2016_02_25_152948_add_client_password',1),('2016_02_28_081424_add_custom_invoice_fields',1),('2016_03_14_066181_add_user_permissions',1),('2016_03_14_214710_add_support_three_decimal_taxes',1),('2016_03_22_168362_add_documents',1),('2016_03_23_215049_support_multiple_tax_rates',1),('2016_04_16_103943_enterprise_plan',1),('2016_04_18_174135_add_page_size',1),('2016_04_23_182223_payments_changes',1),('2016_05_16_102925_add_swap_currency_symbol_to_currency',1),('2016_05_18_085739_add_invoice_type_support',1),('2016_05_24_164847_wepay_ach',1),('2016_07_08_083802_support_new_pricing',1),('2016_07_13_083821_add_buy_now_buttons',1),('2016_08_10_184027_add_support_for_bots',1),('2016_09_05_150625_create_gateway_types',1),('2016_10_20_191150_add_expense_to_activities',1),('2016_11_03_113316_add_invoice_signature',1),('2016_11_03_161149_add_bluevine_fields',1),('2016_11_28_092904_add_task_projects',1),('2016_12_13_113955_add_pro_plan_discount',1),('2017_01_01_214241_add_inclusive_taxes',1);
/*!40000 ALTER TABLE `migrations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `password_resets`
--
DROP TABLE IF EXISTS `password_resets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `password_resets` (
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`token` varchar(255) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `password_resets`
--
LOCK TABLES `password_resets` WRITE;
/*!40000 ALTER TABLE `password_resets` DISABLE KEYS */;
/*!40000 ALTER TABLE `password_resets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `payment_libraries`
--
DROP TABLE IF EXISTS `payment_libraries`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `payment_libraries` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`visible` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `payment_libraries`
--
LOCK TABLES `payment_libraries` WRITE;
/*!40000 ALTER TABLE `payment_libraries` DISABLE KEYS */;
INSERT INTO `payment_libraries` VALUES (1,'2017-01-29 19:20:45','2017-01-29 19:20:45','Omnipay',1),(2,'2017-01-29 19:20:45','2017-01-29 19:20:45','PHP-Payments [Deprecated]',1);
/*!40000 ALTER TABLE `payment_libraries` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `payment_methods`
--
DROP TABLE IF EXISTS `payment_methods`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `payment_methods` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`account_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`contact_id` int(10) unsigned DEFAULT NULL,
`account_gateway_token_id` int(10) unsigned DEFAULT NULL,
`payment_type_id` int(10) unsigned NOT NULL,
`source_reference` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`routing_number` int(10) unsigned DEFAULT NULL,
`last4` smallint(5) unsigned DEFAULT NULL,
`expiration` date DEFAULT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`currency_id` int(10) unsigned DEFAULT NULL,
`status` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`public_id` int(10) unsigned NOT NULL,
`bank_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`ip` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `payment_methods_account_id_public_id_unique` (`account_id`,`public_id`),
KEY `payment_methods_public_id_index` (`public_id`),
KEY `payment_methods_user_id_foreign` (`user_id`),
KEY `payment_methods_contact_id_foreign` (`contact_id`),
KEY `payment_methods_payment_type_id_foreign` (`payment_type_id`),
KEY `payment_methods_currency_id_foreign` (`currency_id`),
KEY `payment_methods_account_gateway_token_id_foreign` (`account_gateway_token_id`),
CONSTRAINT `payment_methods_account_gateway_token_id_foreign` FOREIGN KEY (`account_gateway_token_id`) REFERENCES `account_gateway_tokens` (`id`) ON DELETE CASCADE,
CONSTRAINT `payment_methods_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
CONSTRAINT `payment_methods_contact_id_foreign` FOREIGN KEY (`contact_id`) REFERENCES `contacts` (`id`) ON DELETE CASCADE,
CONSTRAINT `payment_methods_currency_id_foreign` FOREIGN KEY (`currency_id`) REFERENCES `currencies` (`id`),
CONSTRAINT `payment_methods_payment_type_id_foreign` FOREIGN KEY (`payment_type_id`) REFERENCES `payment_types` (`id`),
CONSTRAINT `payment_methods_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `payment_methods`
--
LOCK TABLES `payment_methods` WRITE;
/*!40000 ALTER TABLE `payment_methods` DISABLE KEYS */;
/*!40000 ALTER TABLE `payment_methods` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `payment_statuses`
--
DROP TABLE IF EXISTS `payment_statuses`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `payment_statuses` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `payment_statuses`
--
LOCK TABLES `payment_statuses` WRITE;
/*!40000 ALTER TABLE `payment_statuses` DISABLE KEYS */;
INSERT INTO `payment_statuses` VALUES (1,'Pending'),(2,'Voided'),(3,'Failed'),(4,'Completed'),(5,'Partially Refunded'),(6,'Refunded');
/*!40000 ALTER TABLE `payment_statuses` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `payment_terms`
--
DROP TABLE IF EXISTS `payment_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `payment_terms` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`num_days` int(11) NOT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`user_id` int(10) unsigned NOT NULL,
`account_id` int(10) unsigned NOT NULL,
`public_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `payment_terms_account_id_public_id_unique` (`account_id`,`public_id`),
KEY `payment_terms_public_id_index` (`public_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `payment_terms`
--
LOCK TABLES `payment_terms` WRITE;
/*!40000 ALTER TABLE `payment_terms` DISABLE KEYS */;
INSERT INTO `payment_terms` VALUES (1,7,'Net 7','2017-01-29 19:20:45','2017-01-29 19:20:45',NULL,0,0,1),(2,10,'Net 10','2017-01-29 19:20:45','2017-01-29 19:20:45',NULL,0,0,2),(3,14,'Net 14','2017-01-29 19:20:45','2017-01-29 19:20:45',NULL,0,0,3),(4,15,'Net 15','2017-01-29 19:20:45','2017-01-29 19:20:45',NULL,0,0,4),(5,30,'Net 30','2017-01-29 19:20:45','2017-01-29 19:20:45',NULL,0,0,5),(6,60,'Net 60','2017-01-29 19:20:45','2017-01-29 19:20:45',NULL,0,0,6),(7,90,'Net 90','2017-01-29 19:20:45','2017-01-29 19:20:45',NULL,0,0,7),(8,-1,'Net 0','2017-01-29 19:20:48','2017-01-29 19:20:48',NULL,0,0,0);
/*!40000 ALTER TABLE `payment_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `payment_types`
--
DROP TABLE IF EXISTS `payment_types`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `payment_types` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`gateway_type_id` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `payment_types_gateway_type_id_foreign` (`gateway_type_id`),
CONSTRAINT `payment_types_gateway_type_id_foreign` FOREIGN KEY (`gateway_type_id`) REFERENCES `gateway_types` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `payment_types`
--
LOCK TABLES `payment_types` WRITE;
/*!40000 ALTER TABLE `payment_types` DISABLE KEYS */;
INSERT INTO `payment_types` VALUES (1,'Apply Credit',NULL),(2,'Bank Transfer',2),(3,'Cash',NULL),(4,'Debit',1),(5,'ACH',2),(6,'Visa Card',1),(7,'MasterCard',1),(8,'American Express',1),(9,'Discover Card',1),(10,'Diners Card',1),(11,'EuroCard',1),(12,'Nova',1),(13,'Credit Card Other',1),(14,'PayPal',3),(15,'Google Wallet',NULL),(16,'Check',NULL),(17,'Carte Blanche',1),(18,'UnionPay',1),(19,'JCB',1),(20,'Laser',1),(21,'Maestro',1),(22,'Solo',1),(23,'Switch',1),(24,'iZettle',1),(25,'Swish',2);
/*!40000 ALTER TABLE `payment_types` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `payments`
--
DROP TABLE IF EXISTS `payments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `payments` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`invoice_id` int(10) unsigned NOT NULL,
`account_id` int(10) unsigned NOT NULL,
`client_id` int(10) unsigned NOT NULL,
`contact_id` int(10) unsigned DEFAULT NULL,
`invitation_id` int(10) unsigned DEFAULT NULL,
`user_id` int(10) unsigned DEFAULT NULL,
`account_gateway_id` int(10) unsigned DEFAULT NULL,
`payment_type_id` int(10) unsigned DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`amount` decimal(13,2) NOT NULL,
`payment_date` date DEFAULT NULL,
`transaction_reference` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`payer_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`public_id` int(10) unsigned NOT NULL,
`refunded` decimal(13,2) NOT NULL,
`payment_status_id` int(10) unsigned NOT NULL DEFAULT '4',
`routing_number` int(10) unsigned DEFAULT NULL,
`last4` smallint(5) unsigned DEFAULT NULL,
`expiration` date DEFAULT NULL,
`gateway_error` text COLLATE utf8_unicode_ci,
`email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`payment_method_id` int(10) unsigned DEFAULT NULL,
`bank_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`ip` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`credit_ids` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`),
UNIQUE KEY `payments_account_id_public_id_unique` (`account_id`,`public_id`),
KEY `payments_contact_id_foreign` (`contact_id`),
KEY `payments_account_gateway_id_foreign` (`account_gateway_id`),
KEY `payments_user_id_foreign` (`user_id`),
KEY `payments_payment_type_id_foreign` (`payment_type_id`),
KEY `payments_invoice_id_index` (`invoice_id`),
KEY `payments_account_id_index` (`account_id`),
KEY `payments_client_id_index` (`client_id`),
KEY `payments_public_id_index` (`public_id`),
KEY `payments_payment_status_id_foreign` (`payment_status_id`),
KEY `payments_payment_method_id_foreign` (`payment_method_id`),
CONSTRAINT `payments_account_gateway_id_foreign` FOREIGN KEY (`account_gateway_id`) REFERENCES `account_gateways` (`id`) ON DELETE CASCADE,
CONSTRAINT `payments_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
CONSTRAINT `payments_client_id_foreign` FOREIGN KEY (`client_id`) REFERENCES `clients` (`id`) ON DELETE CASCADE,
CONSTRAINT `payments_contact_id_foreign` FOREIGN KEY (`contact_id`) REFERENCES `contacts` (`id`) ON DELETE CASCADE,
CONSTRAINT `payments_invoice_id_foreign` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`) ON DELETE CASCADE,
CONSTRAINT `payments_payment_method_id_foreign` FOREIGN KEY (`payment_method_id`) REFERENCES `payment_methods` (`id`) ON DELETE CASCADE,
CONSTRAINT `payments_payment_status_id_foreign` FOREIGN KEY (`payment_status_id`) REFERENCES `payment_statuses` (`id`),
CONSTRAINT `payments_payment_type_id_foreign` FOREIGN KEY (`payment_type_id`) REFERENCES `payment_types` (`id`),
CONSTRAINT `payments_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `payments`
--
LOCK TABLES `payments` WRITE;
/*!40000 ALTER TABLE `payments` DISABLE KEYS */;
/*!40000 ALTER TABLE `payments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `products`
--
DROP TABLE IF EXISTS `products`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `products` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`account_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`product_key` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`notes` text COLLATE utf8_unicode_ci NOT NULL,
`cost` decimal(13,2) NOT NULL,
`qty` decimal(13,2) DEFAULT NULL,
`public_id` int(10) unsigned NOT NULL,
`default_tax_rate_id` int(10) unsigned DEFAULT NULL,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `products_account_id_public_id_unique` (`account_id`,`public_id`),
KEY `products_user_id_foreign` (`user_id`),
KEY `products_account_id_index` (`account_id`),
CONSTRAINT `products_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
CONSTRAINT `products_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `products`
--
LOCK TABLES `products` WRITE;
/*!40000 ALTER TABLE `products` DISABLE KEYS */;
/*!40000 ALTER TABLE `products` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `projects`
--
DROP TABLE IF EXISTS `projects`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `projects` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned NOT NULL,
`account_id` int(10) unsigned NOT NULL,
`client_id` int(10) unsigned DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`public_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `projects_account_id_public_id_unique` (`account_id`,`public_id`),
KEY `projects_user_id_foreign` (`user_id`),
KEY `projects_account_id_index` (`account_id`),
KEY `projects_client_id_index` (`client_id`),
KEY `projects_public_id_index` (`public_id`),
CONSTRAINT `projects_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
CONSTRAINT `projects_client_id_foreign` FOREIGN KEY (`client_id`) REFERENCES `clients` (`id`) ON DELETE CASCADE,
CONSTRAINT `projects_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `projects`
--
LOCK TABLES `projects` WRITE;
/*!40000 ALTER TABLE `projects` DISABLE KEYS */;
/*!40000 ALTER TABLE `projects` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `security_codes`
--
DROP TABLE IF EXISTS `security_codes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `security_codes` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`account_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned DEFAULT NULL,
`contact_id` int(10) unsigned DEFAULT NULL,
`attempts` smallint(6) NOT NULL,
`code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`bot_user_id` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
UNIQUE KEY `security_codes_bot_user_id_unique` (`bot_user_id`),
KEY `security_codes_account_id_index` (`account_id`),
KEY `security_codes_user_id_foreign` (`user_id`),
KEY `security_codes_contact_id_foreign` (`contact_id`),
CONSTRAINT `security_codes_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
CONSTRAINT `security_codes_contact_id_foreign` FOREIGN KEY (`contact_id`) REFERENCES `contacts` (`id`) ON DELETE CASCADE,
CONSTRAINT `security_codes_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `security_codes`
--
LOCK TABLES `security_codes` WRITE;
/*!40000 ALTER TABLE `security_codes` DISABLE KEYS */;
/*!40000 ALTER TABLE `security_codes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sizes`
--
DROP TABLE IF EXISTS `sizes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sizes` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sizes`
--
LOCK TABLES `sizes` WRITE;
/*!40000 ALTER TABLE `sizes` DISABLE KEYS */;
INSERT INTO `sizes` VALUES (1,'1 - 3'),(2,'4 - 10'),(3,'11 - 50'),(4,'51 - 100'),(5,'101 - 500'),(6,'500+');
/*!40000 ALTER TABLE `sizes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `subscriptions`
--
DROP TABLE IF EXISTS `subscriptions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `subscriptions` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`account_id` int(10) unsigned DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`event_id` int(10) unsigned DEFAULT NULL,
`target_url` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
KEY `subscriptions_account_id_foreign` (`account_id`),
CONSTRAINT `subscriptions_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `subscriptions`
--
LOCK TABLES `subscriptions` WRITE;
/*!40000 ALTER TABLE `subscriptions` DISABLE KEYS */;
/*!40000 ALTER TABLE `subscriptions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tasks`
--
DROP TABLE IF EXISTS `tasks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tasks` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned NOT NULL,
`account_id` int(10) unsigned NOT NULL,
`client_id` int(10) unsigned DEFAULT NULL,
`invoice_id` int(10) unsigned DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`description` text COLLATE utf8_unicode_ci,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`public_id` int(10) unsigned NOT NULL,
`is_running` tinyint(1) NOT NULL DEFAULT '0',
`time_log` text COLLATE utf8_unicode_ci,
`project_id` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `tasks_account_id_public_id_unique` (`account_id`,`public_id`),
KEY `tasks_user_id_foreign` (`user_id`),
KEY `tasks_invoice_id_foreign` (`invoice_id`),
KEY `tasks_client_id_foreign` (`client_id`),
KEY `tasks_account_id_index` (`account_id`),
KEY `tasks_public_id_index` (`public_id`),
KEY `tasks_project_id_index` (`project_id`),
CONSTRAINT `tasks_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
CONSTRAINT `tasks_client_id_foreign` FOREIGN KEY (`client_id`) REFERENCES `clients` (`id`) ON DELETE CASCADE,
CONSTRAINT `tasks_invoice_id_foreign` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`) ON DELETE CASCADE,
CONSTRAINT `tasks_project_id_foreign` FOREIGN KEY (`project_id`) REFERENCES `projects` (`id`) ON DELETE CASCADE,
CONSTRAINT `tasks_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tasks`
--
LOCK TABLES `tasks` WRITE;
/*!40000 ALTER TABLE `tasks` DISABLE KEYS */;
/*!40000 ALTER TABLE `tasks` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tax_rates`
--
DROP TABLE IF EXISTS `tax_rates`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tax_rates` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`account_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`rate` decimal(13,3) NOT NULL,
`public_id` int(10) unsigned NOT NULL,
`is_inclusive` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `tax_rates_account_id_public_id_unique` (`account_id`,`public_id`),
KEY `tax_rates_user_id_foreign` (`user_id`),
KEY `tax_rates_account_id_index` (`account_id`),
CONSTRAINT `tax_rates_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
CONSTRAINT `tax_rates_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tax_rates`
--
LOCK TABLES `tax_rates` WRITE;
/*!40000 ALTER TABLE `tax_rates` DISABLE KEYS */;
/*!40000 ALTER TABLE `tax_rates` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `themes`
--
DROP TABLE IF EXISTS `themes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `themes` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `themes`
--
LOCK TABLES `themes` WRITE;
/*!40000 ALTER TABLE `themes` DISABLE KEYS */;
INSERT INTO `themes` VALUES (1,'amelia'),(2,'cerulean'),(3,'cosmo'),(4,'cyborg'),(5,'flatly'),(6,'journal'),(7,'readable'),(8,'simplex'),(9,'slate'),(10,'spacelab'),(11,'united'),(12,'yeti');
/*!40000 ALTER TABLE `themes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `timezones`
--
DROP TABLE IF EXISTS `timezones`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `timezones` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`location` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=114 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `timezones`
--
LOCK TABLES `timezones` WRITE;
/*!40000 ALTER TABLE `timezones` DISABLE KEYS */;
INSERT INTO `timezones` VALUES (1,'Pacific/Midway','(GMT-11:00) Midway Island'),(2,'US/Samoa','(GMT-11:00) Samoa'),(3,'US/Hawaii','(GMT-10:00) Hawaii'),(4,'US/Alaska','(GMT-09:00) Alaska'),(5,'US/Pacific','(GMT-08:00) Pacific Time (US & Canada)'),(6,'America/Tijuana','(GMT-08:00) Tijuana'),(7,'US/Arizona','(GMT-07:00) Arizona'),(8,'US/Mountain','(GMT-07:00) Mountain Time (US & Canada)'),(9,'America/Chihuahua','(GMT-07:00) Chihuahua'),(10,'America/Mazatlan','(GMT-07:00) Mazatlan'),(11,'America/Mexico_City','(GMT-06:00) Mexico City'),(12,'America/Monterrey','(GMT-06:00) Monterrey'),(13,'Canada/Saskatchewan','(GMT-06:00) Saskatchewan'),(14,'US/Central','(GMT-06:00) Central Time (US & Canada)'),(15,'US/Eastern','(GMT-05:00) Eastern Time (US & Canada)'),(16,'US/East-Indiana','(GMT-05:00) Indiana (East)'),(17,'America/Bogota','(GMT-05:00) Bogota'),(18,'America/Lima','(GMT-05:00) Lima'),(19,'America/Caracas','(GMT-04:30) Caracas'),(20,'Canada/Atlantic','(GMT-04:00) Atlantic Time (Canada)'),(21,'America/La_Paz','(GMT-04:00) La Paz'),(22,'America/Santiago','(GMT-04:00) Santiago'),(23,'Canada/Newfoundland','(GMT-03:30) Newfoundland'),(24,'America/Buenos_Aires','(GMT-03:00) Buenos Aires'),(25,'America/Godthab','(GMT-03:00) Greenland'),(26,'Atlantic/Stanley','(GMT-02:00) Stanley'),(27,'Atlantic/Azores','(GMT-01:00) Azores'),(28,'Atlantic/Cape_Verde','(GMT-01:00) Cape Verde Is.'),(29,'Africa/Casablanca','(GMT) Casablanca'),(30,'Europe/Dublin','(GMT) Dublin'),(31,'Europe/Lisbon','(GMT) Lisbon'),(32,'Europe/London','(GMT) London'),(33,'Africa/Monrovia','(GMT) Monrovia'),(34,'Europe/Amsterdam','(GMT+01:00) Amsterdam'),(35,'Europe/Belgrade','(GMT+01:00) Belgrade'),(36,'Europe/Berlin','(GMT+01:00) Berlin'),(37,'Europe/Bratislava','(GMT+01:00) Bratislava'),(38,'Europe/Brussels','(GMT+01:00) Brussels'),(39,'Europe/Budapest','(GMT+01:00) Budapest'),(40,'Europe/Copenhagen','(GMT+01:00) Copenhagen'),(41,'Europe/Ljubljana','(GMT+01:00) Ljubljana'),(42,'Europe/Madrid','(GMT+01:00) Madrid'),(43,'Europe/Paris','(GMT+01:00) Paris'),(44,'Europe/Prague','(GMT+01:00) Prague'),(45,'Europe/Rome','(GMT+01:00) Rome'),(46,'Europe/Sarajevo','(GMT+01:00) Sarajevo'),(47,'Europe/Skopje','(GMT+01:00) Skopje'),(48,'Europe/Stockholm','(GMT+01:00) Stockholm'),(49,'Europe/Vienna','(GMT+01:00) Vienna'),(50,'Europe/Warsaw','(GMT+01:00) Warsaw'),(51,'Europe/Zagreb','(GMT+01:00) Zagreb'),(52,'Europe/Athens','(GMT+02:00) Athens'),(53,'Europe/Bucharest','(GMT+02:00) Bucharest'),(54,'Africa/Cairo','(GMT+02:00) Cairo'),(55,'Africa/Harare','(GMT+02:00) Harare'),(56,'Europe/Helsinki','(GMT+02:00) Helsinki'),(57,'Europe/Istanbul','(GMT+02:00) Istanbul'),(58,'Asia/Jerusalem','(GMT+02:00) Jerusalem'),(59,'Europe/Kiev','(GMT+02:00) Kyiv'),(60,'Europe/Minsk','(GMT+02:00) Minsk'),(61,'Europe/Riga','(GMT+02:00) Riga'),(62,'Europe/Sofia','(GMT+02:00) Sofia'),(63,'Europe/Tallinn','(GMT+02:00) Tallinn'),(64,'Europe/Vilnius','(GMT+02:00) Vilnius'),(65,'Asia/Baghdad','(GMT+03:00) Baghdad'),(66,'Asia/Kuwait','(GMT+03:00) Kuwait'),(67,'Africa/Nairobi','(GMT+03:00) Nairobi'),(68,'Asia/Riyadh','(GMT+03:00) Riyadh'),(69,'Asia/Tehran','(GMT+03:30) Tehran'),(70,'Europe/Moscow','(GMT+04:00) Moscow'),(71,'Asia/Baku','(GMT+04:00) Baku'),(72,'Europe/Volgograd','(GMT+04:00) Volgograd'),(73,'Asia/Muscat','(GMT+04:00) Muscat'),(74,'Asia/Tbilisi','(GMT+04:00) Tbilisi'),(75,'Asia/Yerevan','(GMT+04:00) Yerevan'),(76,'Asia/Kabul','(GMT+04:30) Kabul'),(77,'Asia/Karachi','(GMT+05:00) Karachi'),(78,'Asia/Tashkent','(GMT+05:00) Tashkent'),(79,'Asia/Kolkata','(GMT+05:30) Kolkata'),(80,'Asia/Kathmandu','(GMT+05:45) Kathmandu'),(81,'Asia/Yekaterinburg','(GMT+06:00) Ekaterinburg'),(82,'Asia/Almaty','(GMT+06:00) Almaty'),(83,'Asia/Dhaka','(GMT+06:00) Dhaka'),(84,'Asia/Novosibirsk','(GMT+07:00) Novosibirsk'),(85,'Asia/Bangkok','(GMT+07:00) Bangkok'),(86,'Asia/Ho_Chi_Minh','(GMT+07.00) Ho Chi Minh'),(87,'Asia/Jakarta','(GMT+07:00) Jakarta'),(88,'Asia/Krasnoyarsk','(GMT+08:00) Krasnoyarsk'),(89,'Asia/Chongqing','(GMT+08:00) Chongqing'),(90,'Asia/Hong_Kong','(GMT+08:00) Hong Kong'),(91,'Asia/Kuala_Lumpur','(GMT+08:00) Kuala Lumpur'),(92,'Australia/Perth','(GMT+08:00) Perth'),(93,'Asia/Singapore','(GMT+08:00) Singapore'),(94,'Asia/Taipei','(GMT+08:00) Taipei'),(95,'Asia/Ulaanbaatar','(GMT+08:00) Ulaan Bataar'),(96,'Asia/Urumqi','(GMT+08:00) Urumqi'),(97,'Asia/Irkutsk','(GMT+09:00) Irkutsk'),(98,'Asia/Seoul','(GMT+09:00) Seoul'),(99,'Asia/Tokyo','(GMT+09:00) Tokyo'),(100,'Australia/Adelaide','(GMT+09:30) Adelaide'),(101,'Australia/Darwin','(GMT+09:30) Darwin'),(102,'Asia/Yakutsk','(GMT+10:00) Yakutsk'),(103,'Australia/Brisbane','(GMT+10:00) Brisbane'),(104,'Australia/Canberra','(GMT+10:00) Canberra'),(105,'Pacific/Guam','(GMT+10:00) Guam'),(106,'Australia/Hobart','(GMT+10:00) Hobart'),(107,'Australia/Melbourne','(GMT+10:00) Melbourne'),(108,'Pacific/Port_Moresby','(GMT+10:00) Port Moresby'),(109,'Australia/Sydney','(GMT+10:00) Sydney'),(110,'Asia/Vladivostok','(GMT+11:00) Vladivostok'),(111,'Asia/Magadan','(GMT+12:00) Magadan'),(112,'Pacific/Auckland','(GMT+12:00) Auckland'),(113,'Pacific/Fiji','(GMT+12:00) Fiji');
/*!40000 ALTER TABLE `timezones` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `user_accounts`
--
DROP TABLE IF EXISTS `user_accounts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_accounts` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id1` int(10) unsigned DEFAULT NULL,
`user_id2` int(10) unsigned DEFAULT NULL,
`user_id3` int(10) unsigned DEFAULT NULL,
`user_id4` int(10) unsigned DEFAULT NULL,
`user_id5` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `user_accounts_user_id1_foreign` (`user_id1`),
KEY `user_accounts_user_id2_foreign` (`user_id2`),
KEY `user_accounts_user_id3_foreign` (`user_id3`),
KEY `user_accounts_user_id4_foreign` (`user_id4`),
KEY `user_accounts_user_id5_foreign` (`user_id5`),
CONSTRAINT `user_accounts_user_id1_foreign` FOREIGN KEY (`user_id1`) REFERENCES `users` (`id`),
CONSTRAINT `user_accounts_user_id2_foreign` FOREIGN KEY (`user_id2`) REFERENCES `users` (`id`),
CONSTRAINT `user_accounts_user_id3_foreign` FOREIGN KEY (`user_id3`) REFERENCES `users` (`id`),
CONSTRAINT `user_accounts_user_id4_foreign` FOREIGN KEY (`user_id4`) REFERENCES `users` (`id`),
CONSTRAINT `user_accounts_user_id5_foreign` FOREIGN KEY (`user_id5`) REFERENCES `users` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `user_accounts`
--
LOCK TABLES `user_accounts` WRITE;
/*!40000 ALTER TABLE `user_accounts` DISABLE KEYS */;
/*!40000 ALTER TABLE `user_accounts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `users` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`account_id` int(10) unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`first_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`last_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`phone` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`username` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`password` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`confirmation_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`registered` tinyint(1) NOT NULL DEFAULT '0',
`confirmed` tinyint(1) NOT NULL DEFAULT '0',
`notify_sent` tinyint(1) NOT NULL DEFAULT '1',
`notify_viewed` tinyint(1) NOT NULL DEFAULT '0',
`notify_paid` tinyint(1) NOT NULL DEFAULT '1',
`public_id` int(10) unsigned DEFAULT NULL,
`force_pdfjs` tinyint(1) NOT NULL DEFAULT '0',
`remember_token` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`news_feed_id` int(10) unsigned DEFAULT NULL,
`notify_approved` tinyint(1) NOT NULL DEFAULT '1',
`failed_logins` smallint(6) DEFAULT NULL,
`dark_mode` tinyint(1) DEFAULT '0',
`referral_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`oauth_user_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`oauth_provider_id` int(10) unsigned DEFAULT NULL,
`is_admin` tinyint(1) NOT NULL DEFAULT '1',
`permissions` int(10) unsigned NOT NULL DEFAULT '0',
`bot_user_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `users_username_unique` (`username`),
UNIQUE KEY `users_account_id_public_id_unique` (`account_id`,`public_id`),
KEY `users_account_id_index` (`account_id`),
CONSTRAINT `users_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `users`
--
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vendor_contacts`
--
DROP TABLE IF EXISTS `vendor_contacts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vendor_contacts` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`account_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`vendor_id` int(10) unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`is_primary` tinyint(1) NOT NULL DEFAULT '0',
`first_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`last_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`phone` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`public_id` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `vendor_contacts_account_id_public_id_unique` (`account_id`,`public_id`),
KEY `vendor_contacts_user_id_foreign` (`user_id`),
KEY `vendor_contacts_vendor_id_index` (`vendor_id`),
CONSTRAINT `vendor_contacts_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
CONSTRAINT `vendor_contacts_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE,
CONSTRAINT `vendor_contacts_vendor_id_foreign` FOREIGN KEY (`vendor_id`) REFERENCES `vendors` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vendor_contacts`
--
LOCK TABLES `vendor_contacts` WRITE;
/*!40000 ALTER TABLE `vendor_contacts` DISABLE KEYS */;
/*!40000 ALTER TABLE `vendor_contacts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vendors`
--
DROP TABLE IF EXISTS `vendors`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vendors` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`user_id` int(10) unsigned NOT NULL,
`account_id` int(10) unsigned NOT NULL,
`currency_id` int(10) unsigned DEFAULT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`address1` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`address2` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`city` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`state` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`postal_code` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`country_id` int(10) unsigned DEFAULT NULL,
`work_phone` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`private_notes` text COLLATE utf8_unicode_ci NOT NULL,
`website` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`is_deleted` tinyint(4) NOT NULL DEFAULT '0',
`public_id` int(11) NOT NULL DEFAULT '0',
`vat_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`id_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`transaction_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `vendors_account_id_foreign` (`account_id`),
KEY `vendors_user_id_foreign` (`user_id`),
KEY `vendors_country_id_foreign` (`country_id`),
KEY `vendors_currency_id_foreign` (`currency_id`),
CONSTRAINT `vendors_account_id_foreign` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
CONSTRAINT `vendors_country_id_foreign` FOREIGN KEY (`country_id`) REFERENCES `countries` (`id`),
CONSTRAINT `vendors_currency_id_foreign` FOREIGN KEY (`currency_id`) REFERENCES `currencies` (`id`),
CONSTRAINT `vendors_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vendors`
--
LOCK TABLES `vendors` WRITE;
/*!40000 ALTER TABLE `vendors` DISABLE KEYS */;
/*!40000 ALTER TABLE `vendors` 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 2017-01-29 23:20:48
|
<reponame>sir-nutty/myChaldea-DB<filename>procedures/saveEventShop.sql
CREATE DEFINER=`admin`@`10.150.0.2` PROCEDURE `saveEventShop`(IN
user_uid VARCHAR(100),
eventShop_ID INT,
event_ID INT,
material VARCHAR(100),
quantity TINYINT)
BEGIN
/*Changelog:
- 02/02/2021: Added isAdmin check.*/
DECLARE isAdmin BOOL;
DECLARE material_ID, curr_material_ID, curr_quantity INT;
SET isAdmin = (SELECT getIsUserAdmin(user_uid));
IF (isAdmin) THEN -- Only proceed if user is an admin
SET material_ID = (SELECT m.id FROM material m WHERE m.name = material);
IF (eventShop_ID IS NULL) THEN -- Event Shop doesn't exist. Create it.
INSERT INTO event_shop (`eventID`, `materialID`, `quantity`) VALUES (event_ID, material_ID, quantity);
SET eventShop_ID = (SELECT MAX(es.id) FROM event_shop es WHERE es.materialID = material_ID AND es.quantity = quantity);
ELSE -- Event Shop exists. Update it.
SET curr_material_ID = (SELECT es.materialID FROM event_shop es WHERE es.id = eventShop_ID);
IF (curr_material_ID != material_ID Or curr_material_ID IS NULL) THEN
UPDATE event_shop SET `materialID` = material_ID WHERE `id` = eventShop_ID;
END IF;
SET curr_quantity = (SELECT es.quantity FROM event_shop es WHERE es.id = eventShop_ID);
IF (curr_quantity != quantity Or curr_quantity IS NULL) THEN
UPDATE event_shop es SET `quantity` = quantity WHERE es.id = eventShop_ID;
END IF;
END IF;
END IF;
END |
-- phpMyAdmin SQL Dump
-- version 4.9.0.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Jul 07, 2020 at 12:56 PM
-- Server version: 10.4.6-MariaDB
-- PHP Version: 7.3.9
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: `task_db`
--
--
-- Dumping data for table `batchs`
--
INSERT INTO `batchs` (`id`, `title`, `user_id`) VALUES
(34, 'marketing', 2),
(35, 'Buisness', 2),
(36, 'IT', 1),
(37, 'CS', 1),
(38, 'Ai', 1);
--
-- Dumping data for table `email_details`
--
INSERT INTO `email_details` (`id`, `email_id`, `name`, `number`, `email`, `batch_id`) VALUES
(1005, '1234', 'sw', '771234', '<EMAIL>', 34),
(1006, '1235', 'swsd', '771235', '<EMAIL>', 34),
(1007, '1234', 'rr3', '771236', '<EMAIL>', 34),
(1008, '1237', 'gg', '771237', '<EMAIL>', 34),
(1009, '1238', 'sadasdsss', '771238', '<EMAIL>', 34),
(1010, '1239', 'jkk', '771239', '<EMAIL>', 34),
(1011, '1240', 'sdsad', '771240', '<EMAIL>', 34),
(1012, '1241', '4wr', '771241', '<EMAIL>', 34),
(1013, '1242', 'sadasd', '771242', '<EMAIL>', 34),
(1014, '1243', 'sao', '771243', '<EMAIL>', 34),
(1015, '1244', 'sadasd234', '771244', '<EMAIL>', 34),
(1016, '1245', 'as', '771245', '<EMAIL>', 34),
(1017, '1246', 'yy', '771246', '<EMAIL>', 34),
(1018, '1247', 'rr3', '771247', '<EMAIL>', 34),
(1019, '1248', 'gfg', '771248', '<EMAIL>', 34),
(1020, '1249', 'gfg', '771249', '<EMAIL>', 34),
(1021, '1234', 'sw', '771234', '<EMAIL>', 35),
(1022, '1235', 'swsd', '771235', '<EMAIL>', 35),
(1023, '1234', 'rr3', '771236', '<EMAIL>', 35),
(1024, '1237', 'gg', '771237', '<EMAIL>', 35),
(1025, '1238', 'sadasdsss', '771238', '<EMAIL>', 35),
(1026, '1239', 'jkk', '771239', '<EMAIL>', 35),
(1027, '1240', 'sdsad', '771240', '<EMAIL>', 35),
(1028, '1241', '4wr', '771241', '<EMAIL>', 35),
(1029, '1242', 'sadasd', '771242', '<EMAIL>', 35),
(1030, '1243', 'sao', '771243', '<EMAIL>', 35),
(1031, '1244', 'sadasd234', '771244', '<EMAIL>', 35),
(1032, '1245', 'as', '771245', '<EMAIL>', 35),
(1033, '1246', 'yy', '771246', '<EMAIL>', 35),
(1034, '1247', 'rr3', '771247', '<EMAIL>', 35),
(1035, '1248', 'gfg', '771248', '<EMAIL>', 35),
(1036, '1249', 'gfg', '771249', '<EMAIL>', 35),
(1037, '1234', 'sw', '771234', '<EMAIL>', 36),
(1038, '1235', 'swsd', '771235', '<EMAIL>', 36),
(1039, '1234', 'rr3', '771236', '<EMAIL>', 36),
(1040, '1237', 'gg', '771237', '<EMAIL>', 36),
(1041, '1238', 'sadasdsss', '771238', '<EMAIL>', 36),
(1042, '1239', 'jkk', '771239', '<EMAIL>', 36),
(1043, '1240', 'sdsad', '771240', '<EMAIL>', 36),
(1044, '1241', '4wr', '771241', '<EMAIL>', 36),
(1045, '1242', 'sadasd', '771242', '<EMAIL>', 36),
(1046, '1243', 'sao', '771243', '<EMAIL>', 36),
(1047, '1244', 'sadasd234', '771244', '<EMAIL>', 36),
(1048, '1245', 'as', '771245', '<EMAIL>', 36),
(1049, '1246', 'yy', '771246', '<EMAIL>', 36),
(1050, '1247', 'rr3', '771247', '<EMAIL>', 36),
(1051, '1248', 'gfg', '771248', '<EMAIL>', 36),
(1052, '1249', 'gfg', '771249', '<EMAIL>', 36),
(1053, '1234', 'sw', '771234', '<EMAIL>', 37),
(1054, '1235', 'swsd', '771235', '<EMAIL>', 37),
(1055, '1234', 'rr3', '771236', '<EMAIL>', 37),
(1056, '1237', 'gg', '771237', '<EMAIL>', 37),
(1057, '1238', 'sadasdsss', '771238', '<EMAIL>', 37),
(1058, '1239', 'jkk', '771239', '<EMAIL>', 37),
(1059, '1240', 'sdsad', '771240', '<EMAIL>', 37),
(1060, '1241', '4wr', '771241', '<EMAIL>', 37),
(1061, '1242', 'sadasd', '771242', '<EMAIL>', 37),
(1062, '1243', 'sao', '771243', '<EMAIL>', 37),
(1063, '1244', 'sadasd234', '771244', '<EMAIL>', 37),
(1064, '1245', 'as', '771245', '<EMAIL>', 37),
(1065, '1246', 'yy', '771246', '<EMAIL>', 37),
(1066, '1247', 'rr3', '771247', '<EMAIL>', 37),
(1067, '1248', 'gfg', '771248', '<EMAIL>', 37),
(1068, '1249', 'gfg', '771249', '<EMAIL>', 37),
(1069, '1234', 'sw', '771234', '<EMAIL>', 38),
(1070, '1235', 'swsd', '771235', '<EMAIL>', 38),
(1071, '1234', 'rr3', '771236', '<EMAIL>', 38),
(1072, '1237', 'gg', '771237', '<EMAIL>', 38),
(1073, '1238', 'sadasdsss', '771238', '<EMAIL>', 38),
(1074, '1239', 'jkk', '771239', '<EMAIL>', 38),
(1075, '1240', 'sdsad', '771240', '<EMAIL>', 38),
(1076, '1241', '4wr', '771241', '<EMAIL>', 38),
(1077, '1242', 'sadasd', '771242', '<EMAIL>', 38),
(1078, '1243', 'sao', '771243', '<EMAIL>', 38),
(1079, '1244', 'sadasd234', '771244', '<EMAIL>', 38),
(1080, '1245', 'as', '771245', '<EMAIL>', 38),
(1081, '1246', 'yy', '771246', '<EMAIL>', 38),
(1082, '1247', 'rr3', '771247', '<EMAIL>', 38),
(1083, '1248', 'gfg', '771248', '<EMAIL>', 38),
(1084, '1249', 'gfg', '771249', '<EMAIL>', 38);
--
-- Dumping data for table `scheduled_attachements`
--
INSERT INTO `scheduled_attachements` (`id`, `path`, `schedule_details_id`) VALUES
(20, '/storage/schedule_email_files/user_2_1593991778/1.pdf', 6),
(21, '/storage/schedule_email_files/user_2_1593991778/11.jpg', 6),
(22, '/storage/schedule_email_files/user_2_1593991778/data.xlsx', 6),
(23, '/storage/schedule_email_files/user_2_1593991912/11.jpg', 7),
(24, '/storage/schedule_email_files/user_2_1593991912/data.xlsx', 7),
(25, '/storage/schedule_email_files/user_1_1593992143/2.pdf', 8),
(26, '/storage/schedule_email_files/user_1_1593992143/12.jpg', 8),
(27, '/storage/schedule_email_files/user_1_1593992143/14.jpg', 8),
(28, '/storage/schedule_email_files/user_1_1593992257/2.pdf', 9),
(29, '/storage/schedule_email_files/user_1_1593992257/7.jpg', 9),
(30, '/storage/schedule_email_files/user_1_1593992401/21.jpg', 10);
--
-- Dumping data for table `scheduled_details`
--
INSERT INTO `scheduled_details` (`id`, `email`, `subject`, `emailBody`, `send_date`, `status`) VALUES
(6, '<EMAIL>', 'meeting', '<h1>hi</h1><p>hi manager</p>', '2020-07-14', '0'),
(7, '<EMAIL>', 'HR', '<p><strong>hi</strong></p>', '2020-07-29', '0'),
(8, '<EMAIL>', 'one', '<pre class=\"ql-syntax\" spellcheck=\"false\">one\n</pre>', '2020-07-29', '0'),
(9, '<EMAIL>', 'info', '<blockquote>info</blockquote>', '2020-07-06', '0'),
(10, '<EMAIL>', 'contact', '<p><em><u>contact number</u></em></p>', '2020-07-30', '0');
--
-- Dumping data for table `schedule_batch`
--
INSERT INTO `schedule_batch` (`id`, `schedule_detail_id`, `batch_id`, `created_at`, `updated_at`) VALUES
(5, 6, 34, '2020-07-05 17:59:38', '2020-07-05 17:59:38'),
(6, 7, 34, '2020-07-05 18:01:52', '2020-07-05 18:01:52'),
(7, 7, 35, '2020-07-05 18:01:52', '2020-07-05 18:01:52'),
(8, 8, 36, '2020-07-05 18:05:43', '2020-07-05 18:05:43'),
(9, 8, 37, '2020-07-05 18:05:43', '2020-07-05 18:05:43'),
(10, 8, 38, '2020-07-05 18:05:43', '2020-07-05 18:05:43'),
(11, 9, 37, '2020-07-05 18:07:37', '2020-07-05 18:07:37'),
(12, 9, 38, '2020-07-05 18:07:37', '2020-07-05 18:07:37'),
(13, 10, 38, '2020-07-05 18:10:01', '2020-07-05 18:10:01');
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `name`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, 'susantha', '<EMAIL>', NULL, '$2y$10$6p7bFmDxNj..gbj7WpeZgunRrj942NQogdfLcV0pOFKr9OUNA7/Qu', '0LRuKRAqh7CKjsE6wUrWNVq3Q6q3XReqqBcJ0hEI2j1vfKvvuiKocqpNizpT', '2020-07-04 11:52:38', '2020-07-04 11:52:38'),
(2, 'user123', '<EMAIL>', NULL, '$2y$10$pEbj6HbF.oGNZzcqY7ihA.BR.AFjoAZHlFCCJZPXmfJYffIojVvam', 'Fy2PdgsUjzP7TXnFTBs6HQecATtgXw3kIX250EoKxb3EINGpQ9oJWqDRzEbC', '2020-07-04 11:54:19', '2020-07-04 11:54:19');
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
<reponame>smoltis/sbiug
USE [PythonDemo]
GO
ALTER PROCEDURE [dbo].[MineAssociationRulesFIM]
(
@SQLQuery nvarchar(max) = NULL,
@Support int = 5,
@Confidence int = 10
)
AS
BEGIN
IF(@SQLQuery IS NULL)
SET @SQLQuery = FORMATMESSAGE(N'SELECT TOP (%d) [Departments] as [Transactions] FROM [dbo].[CombinedSets] WHERE StoreCode=20',10000);
execute sp_execute_external_script
@language = N'Python',
@script = N'
import fim
rules = fim.arules(InputDataSet["Transactions"].str.split(",\s*"), supp=suppParam, conf=confParam, zmin=2, report="(SCl)")
OutputDataSet = pandas.DataFrame(rules,columns=["cons","ante","supp","conf", "lift"])
OutputDataSet["ante"]=OutputDataSet["ante"].apply(lambda col: ", ".join(col))
OutputDataSet.sort_values(["lift"],ascending=False)
',
@input_data_1 = @SQLQuery,
@params = N'@confParam int, @suppParam int',
@confParam=@Confidence,
@suppParam=@Support
with result sets (("cons" varchar(4000) null, "ante" varchar(4000) null, "supp" float null, "conf" float null, "lift" float null))
END
GO
exec [MineAssociationRulesFIM] |
SELECT * FROM orders INNER JOIN items ON orders.oid = items.oid
WHERE orders.order_date = '2000-10-31'
AND (items.iid = 100 OR items.iid = 200 OR items.iid = 1000) |
<gh_stars>0
CREATE USER oo4j
IDENTIFIED BY <PASSWORD>;
GRANT create session TO oo4j;
GRANT create table TO oo4j;
GRANT create view TO oo4j;
GRANT create any trigger TO oo4j;
GRANT create any procedure TO oo4j;
GRANT create sequence TO oo4j;
GRANT create synonym TO oo4j; |
<reponame>AnaRita93/spiced_projects<gh_stars>0
CREATE TABLE employee_territories(
employeeID INTEGER,
territoryID INTEGER not null
);
CREATE TABLE orders(
orderID INT PRIMARY KEY,
customerID CHAR(5),
employeeID INTEGER,
orderDate date,
requiredDate date,
shippedDate VARCHAR(255),
shipVia INTEGER,
freight FLOAT,
shipName VARCHAR(255),
shipAddress VARCHAR(255),
shipCity VARCHAR(255),
shipRegion VARCHAR(255),
shipPostalCode VARCHAR(255),
shipCountry VARCHAR(255)
);
CREATE TABLE employees(
employeeID INT PRIMARY KEY,
lastName VARCHAR(255),
firstName VARCHAR(255) ,
title VARCHAR(255),
titleOfCourtesy VARCHAR(255),
birthDate DATE,
hireDate DATE,
address VARCHAR(255),
city VARCHAR(255),
region VARCHAR(255),
postalCode VARCHAR(255),
country VARCHAR(255),
homePhone VARCHAR(255),
extension INTEGER,
photo TEXT,
notes TEXT,
reportsTo TEXT,
photoPath TEXT
);
CREATE TABLE regions(
regionID INT PRIMARY KEY,
regionDescription VARCHAR(255)
);
CREATE TABLE categories(
categoryID INTEGER,
categoryName VARCHAR(255),
description VARCHAR(255),
picture TEXT
);
CREATE TABLE order_details(
orderID INTEGER,
productID INTEGER,
unitPrice FLOAT,
quantity INTEGER,
discount FLOAT
);
CREATE TABLE shippers(
shipperID INTEGER,
companyName VARCHAR(255),
phone VARCHAR(255)
);
CREATE TABLE products(
productID INTEGER,
productName VARCHAR(255),
supplierID INTEGER,
categoryID INTEGER,
quantityPerUnit VARCHAR(255),
unitPrice FLOAT,
unitsInStock INTEGER,
unitsOnOrder INTEGER,
reorderLevel INTEGER,
discontinued INTEGER
);
CREATE TABLE suppliers(
supplierID INTEGER,
companyName VARCHAR(255),
contactName VARCHAR(255),
contactTitle VARCHAR(255),
address VARCHAR(255),
city VARCHAR(255),
region VARCHAR(255),
postalCode VARCHAR(255),
country VARCHAR(255),
phone VARCHAR(255),
fax VARCHAR(255),
homePage VARCHAR(255)
);
CREATE TABLE customers(
customerID VARCHAR(5),
companyName VARCHAR(255),
contactName VARCHAR(255),
contactTitle VARCHAR(255),
address VARCHAR(255),
city VARCHAR(255),
region VARCHAR(255),
postalCode VARCHAR(255),
country VARCHAR(255),
phone VARCHAR(255),
fax VARCHAR(255)
);
CREATE TABLE territories(
territoryID INTEGER,
territoryDescription VARCHAR(255),
regionID INTEGER
);
COPY employee_territories FROM '/home/rita/Documents/spiced/spiced-projects/convex_capers_student_code/week05/data/northwind_data_clean-master/data/employee_territories.csv' WITH DELIMITER ',' CSV HEADER;
COPY orders FROM '/home/rita/Documents/spiced/spiced-projects/convex_capers_student_code/week05/data/northwind_data_clean-master/data/orders.csv' WITH DELIMITER ',' CSV HEADER;
COPY employees FROM '/home/rita/Documents/spiced/spiced-projects/convex_capers_student_code/week05/data/northwind_data_clean-master/data/employees.csv' WITH DELIMITER ',' CSV HEADER;
COPY regions FROM '/home/rita/Documents/spiced/spiced-projects/convex_capers_student_code/week05/data/northwind_data_clean-master/data/regions.csv' WITH DELIMITER ',' CSV HEADER;
COPY order_details FROM '/home/rita/Documents/spiced/spiced-projects/convex_capers_student_code/week05/data/northwind_data_clean-master/data/order_details.csv' WITH DELIMITER ',' CSV HEADER;
COPY shippers FROM '/home/rita/Documents/spiced/spiced-projects/convex_capers_student_code/week05/data/northwind_data_clean-master/data/shippers.csv' WITH DELIMITER ',' CSV HEADER;
COPY products FROM '/home/rita/Documents/spiced/spiced-projects/convex_capers_student_code/week05/data/northwind_data_clean-master/data/products.csv' WITH DELIMITER ',' CSV HEADER;
COPY suppliers FROM '/home/rita/Documents/spiced/spiced-projects/convex_capers_student_code/week05/data/northwind_data_clean-master/data/suppliers.csv' WITH DELIMITER ',' CSV HEADER;
COPY customers FROM '/home/rita/Documents/spiced/spiced-projects/convex_capers_student_code/week05/data/northwind_data_clean-master/data/customers.csv' WITH DELIMITER ',' CSV HEADER;
COPY territories FROM '/home/rita/Documents/spiced/spiced-projects/convex_capers_student_code/week05/data/northwind_data_clean-master/data/territories.csv' WITH DELIMITER ',' CSV HEADER;
------------------
-- 1. Connect to postgres
-- 2. check out the databases: \l
-- 3. connect to a database/switch databases: \c db_name
-- 4. check out tables of a database: \d
-- 5. Check out the contents of a table: SELECT * FROM table_name;
-- 6. run a sql-file inside psql: \i file_name.sql (or give path)
|
<gh_stars>0
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2017-09-30',@EPS = N'0.414',@EPSDeduct = N'0',@Revenue = N'98.97亿',@RevenueYoy = N'32.17',@RevenueQoq = N'13.45',@Profit = N'4.83亿',@ProfitYoy = N'305.10',@ProfiltQoq = N'8.99',@NAVPerUnit = N'5.9417',@ROE = N'7.16',@CashPerUnit = N'1.8707',@GrossProfitRate = N'15.44',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2017-10-31'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2017-09-30',@EPS = N'0.414',@EPSDeduct = N'0',@Revenue = N'98.97亿',@RevenueYoy = N'32.17',@RevenueQoq = N'13.45',@Profit = N'4.83亿',@ProfitYoy = N'305.10',@ProfiltQoq = N'8.99',@NAVPerUnit = N'5.9417',@ROE = N'7.16',@CashPerUnit = N'1.8707',@GrossProfitRate = N'15.44',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2017-10-31'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2016-09-30',@EPS = N'0.102',@EPSDeduct = N'0',@Revenue = N'74.88亿',@RevenueYoy = N'6.04',@RevenueQoq = N'-0.18',@Profit = N'1.19亿',@ProfitYoy = N'73.27',@ProfiltQoq = N'12.64',@NAVPerUnit = N'5.5238',@ROE = N'1.86',@CashPerUnit = N'0.7631',@GrossProfitRate = N'13.10',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2017-10-31'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2016-06-30',@EPS = N'0.061',@EPSDeduct = N'0.037',@Revenue = N'48.27亿',@RevenueYoy = N'-0.32',@RevenueQoq = N'23.41',@Profit = N'7066.91万',@ProfitYoy = N'20.47',@ProfiltQoq = N'56.23',@NAVPerUnit = N'5.4800',@ROE = N'1.11',@CashPerUnit = N'0.2049',@GrossProfitRate = N'13.52',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2017-08-12'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2016-03-31',@EPS = N'0.024',@EPSDeduct = N'0',@Revenue = N'21.61亿',@RevenueYoy = N'-2.26',@RevenueQoq = N'-8.26',@Profit = N'2757.99万',@ProfitYoy = N'9.28',@ProfiltQoq = N'752.89',@NAVPerUnit = N'5.4584',@ROE = N'0.43',@CashPerUnit = N'0.1541',@GrossProfitRate = N'13.81',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2017-04-29'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2015-12-31',@EPS = N'0.055',@EPSDeduct = N'-0.148',@Revenue = N'94.17亿',@RevenueYoy = N'1.67',@RevenueQoq = N'6.12',@Profit = N'6457.49万',@ProfitYoy = N'7.41',@ProfiltQoq = N'-141.68',@NAVPerUnit = N'5.4325',@ROE = N'1.02',@CashPerUnit = N'1.5714',@GrossProfitRate = N'13.10',@Distribution = N'10派0.17',@DividenRate = N'0.39',@AnnounceDate = N'2017-03-31'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2015-09-30',@EPS = N'0.059',@EPSDeduct = N'0',@Revenue = N'70.62亿',@RevenueYoy = N'3.38',@RevenueQoq = N'-15.69',@Profit = N'6879.92万',@ProfitYoy = N'2.48',@ProfiltQoq = N'-69.68',@NAVPerUnit = N'5.4362',@ROE = N'1.09',@CashPerUnit = N'1.0951',@GrossProfitRate = N'13.37',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2016-10-26'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2015-06-30',@EPS = N'0.05',@EPSDeduct = N'-0.012',@Revenue = N'48.43亿',@RevenueYoy = N'8.92',@RevenueQoq = N'19.08',@Profit = N'5866.33万',@ProfitYoy = N'3.71',@ProfiltQoq = N'32.44',@NAVPerUnit = N'5.4266',@ROE = N'0.93',@CashPerUnit = N'0.6277',@GrossProfitRate = N'13.17',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2016-08-20'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2015-03-31',@EPS = N'0.0216',@EPSDeduct = N'0',@Revenue = N'22.10亿',@RevenueYoy = N'-0.94',@RevenueQoq = N'-9.07',@Profit = N'2523.80万',@ProfitYoy = N'3.16',@ProfiltQoq = N'459.92',@NAVPerUnit = N'5.4124',@ROE = N'0.40',@CashPerUnit = N'0.1334',@GrossProfitRate = N'14.72',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2016-04-28'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2017-06-30',@EPS = N'0.253',@EPSDeduct = N'0.246',@Revenue = N'63.05亿',@RevenueYoy = N'30.62',@RevenueQoq = N'0.92',@Profit = N'2.96亿',@ProfitYoy = N'318.40',@ProfiltQoq = N'38.63',@NAVPerUnit = N'5.7824',@ROE = N'4.44',@CashPerUnit = N'0.7789',@GrossProfitRate = N'14.57',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2017-08-12'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2014-09-30',@EPS = N'0.057',@EPSDeduct = N'0',@Revenue = N'68.31亿',@RevenueYoy = N'-4.20',@RevenueQoq = N'7.71',@Profit = N'6713.16万',@ProfitYoy = N'1.58',@ProfiltQoq = N'-67.09',@NAVPerUnit = N'5.3973',@ROE = N'1.07',@CashPerUnit = N'0.5766',@GrossProfitRate = N'14.73',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2015-10-24'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2014-06-30',@EPS = N'0.048',@EPSDeduct = N'-0.019',@Revenue = N'44.46亿',@RevenueYoy = N'-3.94',@RevenueQoq = N'-0.76',@Profit = N'5656.70万',@ProfitYoy = N'1.30',@ProfiltQoq = N'31.21',@NAVPerUnit = N'5.3835',@ROE = N'0.90',@CashPerUnit = N'0.4940',@GrossProfitRate = N'15.40',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2015-08-15'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2014-03-31',@EPS = N'0.021',@EPSDeduct = N'0',@Revenue = N'22.31亿',@RevenueYoy = N'1.11',@RevenueQoq = N'-14.58',@Profit = N'2446.59万',@ProfitYoy = N'2.04',@ProfiltQoq = N'469.49',@NAVPerUnit = N'5.3867',@ROE = N'0.39',@CashPerUnit = N'0.2717',@GrossProfitRate = N'15.11',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2015-04-30'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2013-12-31',@EPS = N'0.0509',@EPSDeduct = N'-0.08',@Revenue = N'97.43亿',@RevenueYoy = N'1.84',@RevenueQoq = N'4.38',@Profit = N'5946.69万',@ProfitYoy = N'-2.96',@ProfiltQoq = N'-164.63',@NAVPerUnit = N'5.3629',@ROE = N'0.95',@CashPerUnit = N'1.4534',@GrossProfitRate = N'12.84',@Distribution = N'10派0.25',@DividenRate = N'0.90',@AnnounceDate = N'2015-04-25'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2013-09-30',@EPS = N'0.0566',@EPSDeduct = N'0',@Revenue = N'71.31亿',@RevenueYoy = N'-3.69',@RevenueQoq = N'3.36',@Profit = N'6608.85万',@ProfitYoy = N'-4.70',@ProfiltQoq = N'-67.85',@NAVPerUnit = N'5.3621',@ROE = N'1.06',@CashPerUnit = N'0.2646',@GrossProfitRate = N'13.67',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2014-10-31'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2013-06-30',@EPS = N'0.048',@EPSDeduct = N'-0.015',@Revenue = N'46.28亿',@RevenueYoy = N'-4.47',@RevenueQoq = N'9.72',@Profit = N'5584.38万',@ProfitYoy = N'8.02',@ProfiltQoq = N'32.91',@NAVPerUnit = N'5.3515',@ROE = N'0.89',@CashPerUnit = N'0.1237',@GrossProfitRate = N'14.25',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2014-08-23'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2013-03-31',@EPS = N'0.0205',@EPSDeduct = N'0.014',@Revenue = N'22.07亿',@RevenueYoy = N'1.33',@RevenueQoq = N'2.01',@Profit = N'2397.67万',@ProfitYoy = N'4.64',@ProfiltQoq = N'397.22',@NAVPerUnit = N'5.3488',@ROE = N'0.38',@CashPerUnit = N'0.2475',@GrossProfitRate = N'15.03',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2014-04-26'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2012-12-31',@EPS = N'0.052',@EPSDeduct = N'-0.075',@Revenue = N'95.67亿',@RevenueYoy = N'-0.43',@RevenueQoq = N'-15.46',@Profit = N'6127.88万',@ProfitYoy = N'-25.62',@ProfiltQoq = N'-145.71',@NAVPerUnit = N'5.3309',@ROE = N'0.98',@CashPerUnit = N'1.2241',@GrossProfitRate = N'13.06',@Distribution = N'10派0.2',@DividenRate = N'0.73',@AnnounceDate = N'2014-08-23'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2012-09-30',@EPS = N'0.059',@EPSDeduct = N'-0.029',@Revenue = N'74.04亿',@RevenueYoy = N'3.47',@RevenueQoq = N'-4.04',@Profit = N'6934.58万',@ProfitYoy = N'-29.74',@ProfiltQoq = N'-38.69',@NAVPerUnit = N'5.3367',@ROE = N'1.11',@CashPerUnit = N'0.6769',@GrossProfitRate = N'12.96',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2013-10-26'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2012-06-30',@EPS = N'0.044',@EPSDeduct = N'-0.028',@Revenue = N'48.45亿',@RevenueYoy = N'5.14',@RevenueQoq = N'22.45',@Profit = N'5169.77万',@ProfitYoy = N'-29.22',@ProfiltQoq = N'25.62',@NAVPerUnit = N'5.3235',@ROE = N'0.83',@CashPerUnit = N'0.4526',@GrossProfitRate = N'12.46',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2013-08-24'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2012-03-31',@EPS = N'0.0196',@EPSDeduct = N'-0.024',@Revenue = N'21.78亿',@RevenueYoy = N'3.94',@RevenueQoq = N'-11.21',@Profit = N'2291.33万',@ProfitYoy = N'-25.33',@ProfiltQoq = N'240.49',@NAVPerUnit = N'5.3492',@ROE = N'0.37',@CashPerUnit = N'0.1056',@GrossProfitRate = N'12.51',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2013-04-27'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2011-12-31',@EPS = N'0.071',@EPSDeduct = N'-0.012',@Revenue = N'96.09亿',@RevenueYoy = N'34.99',@RevenueQoq = N'-3.70',@Profit = N'8239.16万',@ProfitYoy = N'-10.89',@ProfiltQoq = N'-163.55',@NAVPerUnit = N'5.3306',@ROE = N'1.35',@CashPerUnit = N'0.9352',@GrossProfitRate = N'11.96',@Distribution = N'10派0.5',@DividenRate = N'1.40',@AnnounceDate = N'2013-04-27'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2011-09-30',@EPS = N'0.085',@EPSDeduct = N'0.057',@Revenue = N'71.56亿',@RevenueYoy = N'41.70',@RevenueQoq = N'1.37',@Profit = N'9870.09万',@ProfitYoy = N'19.92',@ProfiltQoq = N'-39.40',@NAVPerUnit = N'5.3400',@ROE = N'1.61',@CashPerUnit = N'0.5260',@GrossProfitRate = N'12.01',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2012-10-27'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2011-06-30',@EPS = N'0.063',@EPSDeduct = N'0.087',@Revenue = N'46.08亿',@RevenueYoy = N'36.27',@RevenueQoq = N'19.92',@Profit = N'7303.72万',@ProfitYoy = N'256.68',@ProfiltQoq = N'38.02',@NAVPerUnit = N'9.4700',@ROE = N'1.20',@CashPerUnit = N'0.9259',@GrossProfitRate = N'12.55',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2012-08-25'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2011-03-31',@EPS = N'0.026',@EPSDeduct = N'0.027',@Revenue = N'20.95亿',@RevenueYoy = N'35.92',@RevenueQoq = N'1.32',@Profit = N'3068.47万',@ProfitYoy = N'195.71',@ProfiltQoq = N'202.37',@NAVPerUnit = N'9.4000',@ROE = N'0.50',@CashPerUnit = N'0.3826',@GrossProfitRate = N'12.16',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2012-04-28'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2010-12-31',@EPS = N'0.079',@EPSDeduct = N'0.015',@Revenue = N'71.18亿',@RevenueYoy = N'22.14',@RevenueQoq = N'23.97',@Profit = N'9245.68万',@ProfitYoy = N'-91.56',@ProfiltQoq = N'-83.59',@NAVPerUnit = N'9.3508',@ROE = N'1.53',@CashPerUnit = N'0.4864',@GrossProfitRate = N'11.58',@Distribution = N'10转7送1派0.12',@DividenRate = N'0.23',@AnnounceDate = N'2012-04-18'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2010-09-30',@EPS = N'0.127',@EPSDeduct = N'0.072',@Revenue = N'50.50亿',@RevenueYoy = N'22.03',@RevenueQoq = N'-9.34',@Profit = N'8230.87万',@ProfitYoy = N'-66.81',@ProfiltQoq = N'17.69',@NAVPerUnit = N'9.3300',@ROE = N'1.36',@CashPerUnit = N'0.1490',@GrossProfitRate = N'12.41',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2011-10-29'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2010-06-30',@EPS = N'0.032',@EPSDeduct = N'-0.008',@Revenue = N'33.82亿',@RevenueYoy = N'29.62',@RevenueQoq = N'19.36',@Profit = N'2047.70万',@ProfitYoy = N'-85.15',@ProfiltQoq = N'263.87',@NAVPerUnit = N'9.2400',@ROE = N'0.34',@CashPerUnit = N'0.1327',@GrossProfitRate = N'11.69',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2011-08-26'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2010-03-31',@EPS = N'-0.049',@EPSDeduct = N'-0.075',@Revenue = N'15.42亿',@RevenueYoy = N'49.97',@RevenueQoq = N'-8.74',@Profit = N'-3205.95万',@ProfitYoy = N'-202.90',@ProfiltQoq = N'-103.79',@NAVPerUnit = N'9.2500',@ROE = N'-0.53',@CashPerUnit = N'0.1693',@GrossProfitRate = N'10.08',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2011-04-30'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2009-12-31',@EPS = N'1.91',@EPSDeduct = N'0.34',@Revenue = N'58.28亿',@RevenueYoy = N'-2.98',@RevenueQoq = N'10.44',@Profit = N'10.95亿',@ProfitYoy = N'202.76',@ProfiltQoq = N'669.23',@NAVPerUnit = N'9.3000',@ROE = N'23.91',@CashPerUnit = N'1.5367',@GrossProfitRate = N'14.78',@Distribution = N'10派1',@DividenRate = N'0.97',@AnnounceDate = N'2011-04-26'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2009-09-30',@EPS = N'0.452',@EPSDeduct = N'0.316',@Revenue = N'41.38亿',@RevenueYoy = N'-17.21',@RevenueQoq = N'-3.25',@Profit = N'2.48亿',@ProfitYoy = N'-35.66',@ProfiltQoq = N'3.14',@NAVPerUnit = N'7.9900',@ROE = N'-',@CashPerUnit = N'0.8178',@GrossProfitRate = N'16.96',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2010-10-26'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2009-06-30',@EPS = N'0.251',@EPSDeduct = N'0.141',@Revenue = N'26.09亿',@RevenueYoy = N'-22.63',@RevenueQoq = N'53.80',@Profit = N'1.38亿',@ProfitYoy = N'-54.37',@ProfiltQoq = N'242.61',@NAVPerUnit = N'7.0100',@ROE = N'3.64',@CashPerUnit = N'0.5896',@GrossProfitRate = N'15.08',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2010-08-25'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2009-03-31',@EPS = N'0.057',@EPSDeduct = N'0.039',@Revenue = N'10.28亿',@RevenueYoy = N'-29.03',@RevenueQoq = N'2.01',@Profit = N'3115.62万',@ProfitYoy = N'-72.34',@ProfiltQoq = N'249.94',@NAVPerUnit = N'6.8700',@ROE = N'-',@CashPerUnit = N'0.3607',@GrossProfitRate = N'12.42',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2010-04-21'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2008-12-31',@EPS = N'0.659',@EPSDeduct = N'0.449',@Revenue = N'60.06亿',@RevenueYoy = N'-0.43',@RevenueQoq = N'-38.06',@Profit = N'3.62亿',@ProfitYoy = N'-27.49',@ProfiltQoq = N'-124.97',@NAVPerUnit = N'6.8200',@ROE = N'9.95',@CashPerUnit = N'1.1220',@GrossProfitRate = N'18.83',@Distribution = N'10派0.6',@DividenRate = N'0.46',@AnnounceDate = N'2010-03-24'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2008-09-30',@EPS = N'0.702',@EPSDeduct = N'0.67',@Revenue = N'49.99亿',@RevenueYoy = N'10.94',@RevenueQoq = N'-15.41',@Profit = N'3.85亿',@ProfitYoy = N'1.05',@ProfiltQoq = N'-56.11',@NAVPerUnit = N'6.8400',@ROE = N'-',@CashPerUnit = N'1.4243',@GrossProfitRate = N'20.91',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2009-10-26'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2008-06-30',@EPS = N'0.551',@EPSDeduct = N'0.531',@Revenue = N'33.72亿',@RevenueYoy = N'14.24',@RevenueQoq = N'32.78',@Profit = N'3.02亿',@ProfitYoy = N'11.78',@ProfiltQoq = N'68.28',@NAVPerUnit = N'6.9700',@ROE = N'8.22',@CashPerUnit = N'1.7306',@GrossProfitRate = N'21.82',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2009-07-28'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2008-03-31',@EPS = N'0.205',@EPSDeduct = N'0.174',@Revenue = N'14.48亿',@RevenueYoy = N'4.00',@RevenueQoq = N'-5.10',@Profit = N'1.13亿',@ProfitYoy = N'-32.50',@ProfiltQoq = N'-1.96',@NAVPerUnit = N'6.6500',@ROE = N'-',@CashPerUnit = N'0.2978',@GrossProfitRate = N'22.46',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2009-04-23'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2007-12-31',@EPS = N'0.917',@EPSDeduct = N'0.686',@Revenue = N'60.32亿',@RevenueYoy = N'42.17',@RevenueQoq = N'-1.80',@Profit = N'5.03亿',@ProfitYoy = N'17.17',@ProfiltQoq = N'3.48',@NAVPerUnit = N'6.4300',@ROE = N'14.96',@CashPerUnit = N'1.8346',@GrossProfitRate = N'20.73',@Distribution = N'10派2.8',@DividenRate = N'2.58',@AnnounceDate = N'2009-04-18'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2007-09-30',@EPS = N'0.695',@EPSDeduct = N'0.679',@Revenue = N'45.06亿',@RevenueYoy = N'48.64',@RevenueQoq = N'-5.52',@Profit = N'3.81亿',@ProfitYoy = N'28.25',@ProfiltQoq = N'-38.26',@NAVPerUnit = N'6.2200',@ROE = N'-',@CashPerUnit = N'1.2987',@GrossProfitRate = N'21.69',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2008-10-25'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2007-06-30',@EPS = N'0.493',@EPSDeduct = N'0.551',@Revenue = N'29.51亿',@RevenueYoy = N'54.48',@RevenueQoq = N'25.94',@Profit = N'2.70亿',@ProfitYoy = N'38.33',@ProfiltQoq = N'98.67',@NAVPerUnit = N'6.2400',@ROE = N'8.33',@CashPerUnit = N'0.5909',@GrossProfitRate = N'22.51',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2008-08-25'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2007-03-31',@EPS = N'0.304',@EPSDeduct = N'0',@Revenue = N'13.93亿',@RevenueYoy = N'72.33',@RevenueQoq = N'7.80',@Profit = N'1.67亿',@ProfitYoy = N'15.04',@ProfiltQoq = N'-28.26',@NAVPerUnit = N'5.4300',@ROE = N'-',@CashPerUnit = N'0.0265',@GrossProfitRate = N'23.09',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2008-04-26'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2006-12-31',@EPS = N'0.772',@EPSDeduct = N'0.528',@Revenue = N'42.43亿',@RevenueYoy = N'49.66',@RevenueQoq = N'8.12',@Profit = N'4.24亿',@ProfitYoy = N'27.42',@ProfiltQoq = N'23.79',@NAVPerUnit = N'5.5700',@ROE = N'15.73',@CashPerUnit = N'2.2822',@GrossProfitRate = N'26.11',@Distribution = N'10派2.5',@DividenRate = N'0.96',@AnnounceDate = N'2008-02-16'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2006-09-30',@EPS = N'0.619',@EPSDeduct = N'0',@Revenue = N'30.31亿',@RevenueYoy = N'45.48',@RevenueQoq = N'-2.76',@Profit = N'2.97亿',@ProfitYoy = N'20.47',@ProfiltQoq = N'-12.69',@NAVPerUnit = N'5.3000',@ROE = N'-',@CashPerUnit = N'1.1980',@GrossProfitRate = N'26.46',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2007-10-20'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2006-06-30',@EPS = N'0.407',@EPSDeduct = N'0',@Revenue = N'19.11亿',@RevenueYoy = N'39.86',@RevenueQoq = N'52.05',@Profit = N'1.95亿',@ProfitYoy = N'19.35',@ProfiltQoq = N'48.37',@NAVPerUnit = N'5.1300',@ROE = N'7.40',@CashPerUnit = N'0.4065',@GrossProfitRate = N'27.28',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2007-08-25'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2006-03-31',@EPS = N'0.262',@EPSDeduct = N'0',@Revenue = N'7.58亿',@RevenueYoy = N'20.95',@RevenueQoq = N'0.86',@Profit = N'7869.31万',@ProfitYoy = N'-0.48',@ProfiltQoq = N'-8.04',@NAVPerUnit = N'8.2200',@ROE = N'-',@CashPerUnit = N'-0.2723',@GrossProfitRate = N'24.44',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2007-04-28'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2005-12-31',@EPS = N'1.11',@EPSDeduct = N'0',@Revenue = N'28.35亿',@RevenueYoy = N'7.95',@RevenueQoq = N'4.73',@Profit = N'3.32亿',@ProfitYoy = N'22.68',@ProfiltQoq = N'2.99',@NAVPerUnit = N'7.9500',@ROE = N'14.87',@CashPerUnit = N'2.1874',@GrossProfitRate = N'25.62',@Distribution = N'10转6派3.44',@DividenRate = N'4.35',@AnnounceDate = N'2007-01-13'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2005-09-30',@EPS = N'0',@EPSDeduct = N'0',@Revenue = N'20.84亿',@RevenueYoy = N'8.90',@RevenueQoq = N'-2.94',@Profit = N'2.47亿',@ProfitYoy = N'23.10',@ProfiltQoq = N'-1.89',@NAVPerUnit = N'7.6600',@ROE = N'-',@CashPerUnit = N'1.2099',@GrossProfitRate = N'25.33',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2006-10-31'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2005-06-30',@EPS = N'0.55',@EPSDeduct = N'0',@Revenue = N'13.66亿',@RevenueYoy = N'17.51',@RevenueQoq = N'17.97',@Profit = N'1.64亿',@ProfitYoy = N'35.24',@ProfiltQoq = N'7.11',@NAVPerUnit = N'7.5800',@ROE = N'7.46',@CashPerUnit = N'0.5686',@GrossProfitRate = N'25.43',@Distribution = N'不分配不转增',@DividenRate = N'-',@AnnounceDate = N'2006-08-05'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2014-12-31',@EPS = N'0.052',@EPSDeduct = N'-0.138',@Revenue = N'92.62亿',@RevenueYoy = N'-4.94',@RevenueQoq = N'1.91',@Profit = N'6011.96万',@ProfitYoy = N'1.10',@ProfiltQoq = N'-166.37',@NAVPerUnit = N'5.3908',@ROE = N'0.96',@CashPerUnit = N'1.0389',@GrossProfitRate = N'13.74',@Distribution = N'10派0.16',@DividenRate = N'0.19',@AnnounceDate = N'2016-04-16'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2017-03-31',@EPS = N'0.106',@EPSDeduct = N'0',@Revenue = N'31.38亿',@RevenueYoy = N'45.24',@RevenueQoq = N'-5.53',@Profit = N'1.24亿',@ProfitYoy = N'349.27',@ProfiltQoq = N'97.22',@NAVPerUnit = N'5.6856',@ROE = N'1.88',@CashPerUnit = N'0.1476',@GrossProfitRate = N'13.32',@Distribution = N'-',@DividenRate = N'-',@AnnounceDate = N'2017-04-29'
EXEC [EST].[Proc_yjbb_Ins] @Code = N'600308',@CutoffDate = N'2016-12-31',@EPS = N'0.156',@EPSDeduct = N'0.089',@Revenue = N'108.10亿',@RevenueYoy = N'14.79',@RevenueQoq = N'24.79',@Profit = N'1.82亿',@ProfitYoy = N'181.90',@ProfiltQoq = N'29.45',@NAVPerUnit = N'5.5790',@ROE = N'2.83',@CashPerUnit = N'1.5337',@GrossProfitRate = N'13.22',@Distribution = N'10派0.47',@DividenRate = N'0.89',@AnnounceDate = N'2017-03-31' |
CREATE DATABASE ticketsAp;
USE ticketsApp;
CREATE TABLE type_user (
id_type_user INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(200) NOT NULL
);
CREATE TABLE user (
id_user INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
id_type_user INT NOT NULL,
name VARCHAR(100) NOT NULL,
email VARCHAR(200) NOT NULL UNIQUE,
password VARCHAR(200) NOT NULL,
FOREIGN KEY (id_type_user) REFERENCES type_user (id_type_user)
);
CREATE TABLE ticket (
id_ticket INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(100),
description VARCHAR(255)
);
CREATE TABLE ticketOrder (
id_order INT AUTO_INCREMENT PRIMARY KEY,
id_ticket INT,
id_user INT,
FOREIGN KEY (id_ticket) REFERENCES ticket(id_ticket),
FOREIGN KEY (id_user) REFERENCES user(id_user)
);
INSERT INTO type_user (id_type_user, name) VALUES
(1, "administrator"),
(2, "user");
INSERT INTO user (id_user, id_type_user, email, name, password) VALUES
(1, 1, "<EMAIL>", "Administrador", <PASSWORD>"),
(2, 2, "<EMAIL>", "Usuario 1", <PASSWORD>"),
(3, 2, "<EMAIL>", "Usuario 2", <PASSWORD>");
INSERT INTO ticket (id_ticket, name, description) VALUES
(1, "Intall", "Intallation of internet service."),
(2, "Support", "Solve internet service failure."),
(3, "Support", "Solve firewall failure."),
(4, "Intall", "Installation of CCTV equipament.");
INSERT INTO ticketOrder (id_order, id_ticket, id_user) VALUES
(1, 1, 2),
(2, 2, 2),
(3, 3, 3),
(4, 4, 3);
|
<reponame>edersonlrf/ulbra-ads-bddii-aulas
# Exemplo 15: - “Exemplos para chamada da trigger tbaluno_AUD”
UPDATE tbaluno SET idade = 40 WHERE codigo = 23;
UPDATE tbaluno SET idade = idade + 1 WHERE codigo <= 3;
DELETE tbaluno WHERE codigo = 21;
SELECT * FROM tbaluno;
SELECT * FROM tbalunoant;
|
INSERT INTO EG_ACTION (id,name,url,queryparams,parentmodule,ordernumber,displayname,enabled,contextroot,version,createdby,createddate,lastmodifiedby,lastmodifieddate,application)
values (nextval('SEQ_EG_ACTION'),'Generate Property Tax bill','/bills/billGeneration-generateDemandBill.action',null,(select id from eg_module where name='PTIS-COMMON'),1,'Generate Property Tax bill',false,'ptis',0,1,now(),1,now(),(select id from eg_module where name='Property Tax'));
INSERT INTO eg_roleaction (actionid, roleid) select (select id from eg_action where name = 'Generate Property Tax bill'),id from eg_role where name in ('ULB Operator','Super User'); |
<gh_stars>1-10
USE [Anlab]
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (200, N'Soils', N'# Saturated Paste Extract: SP
## Summary
This method involves saturating the soil with water and subsequent extraction under partial vacuum of the liquid phase for the determination of dissolved salts. Soil moisture at the point of complete saturation is the maximum amount of water held when all the soil pore space is occupied by water and when no free water has collected on the surface of the paste. Over a wide soil textural range, the saturation percentage (SP) is approximately twice the Field Capacity (FC) or -33kPa soil water potential and is four times the Permanent Wilting Point (PWP) or -1500 kPa soil water potential for soils of loam, to clay loam texture. The soil pH may be determined directly on the paste. From the saturated paste extract, estimates of ECe, and solution concentrations of Ca^2+^, Mg^2+^, K ^+^, Na ^+^, Cl ^-^, B, HCO~3~^-^, CO~3~^2-^, SO~4~ estimate (actual measurement is total S in extracts), SAR and ESP can be made. The method is generally reproducible within 8%.
<NAME>. 1982. Soluble salts. p. 167-179. In: A. L. Page et al. (ed.) Methods of soil analysis: Part 2: Chemical and microbiological properties. Monograph Number 9 (Second Edition). ASA, Madison, WI.', N'Saturated Paste And Saturation Percentage')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (205, N'Soils', N'# Saturated Paste Extract: pH
## Summary
This method determines the pH of soil, using a saturated paste prepared from the soil and a pH meter. It is most applicable to soils with a pH ranging from 4.0 to 9.0. It is not possible to determine the total acidity or alkalinity of the soil from pH because of the nature of the colloidal system and junction potential. This method does however provide information on the disassociated H-ions affecting the sensing electrode. The method is generally reproducible within 0.2 pH units.
U.S. Salinity Laboratory Staff. 1954. pH reading of saturated soil paste. p. 102. In: <NAME> (ed.) Diagnosis and improvement of saline and alkali soils. USDA Agricultural Handbook 60. U.S. Government Printing Office, Washington, D.C.', N'Soil pH')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (210, N'Soils', N'# By Special Request
## Summary
This method determines the pH of soil, using an extract of a 1 to 10 dilution of soil with water and a pH meter. The pH of a soil sample increases with the degree of saturation (dilution effect). This rise in pH from pHs to pH 1+10 is usually 0.2 to 0.5 pH units but may be one or more units in certain alkaline soils where there is an increase in dissociation due to dilution of soluble salts.
<NAME>., and <NAME>. 1960. Method S-3.1. In: Water soil plant tissue tentative methods of analysis for diagnostic purposes. Davis, University of California Agricultural Experiment Service. Mimeographed Report.', N'pH of a 1 + 10 Soil Suspension')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (215, N'Soils', N'# Saturated Paste Extract : EC
## Summary
This method semi-quantifies the amounts of soluble salts in the liquid phase extracted from the saturated paste of soils and is based on the measurement of the electrical conductivity (ECe) of a saturated paste extract. The higher the concentration of salt in a solution, the higher will be the electrical conductance (the reciprocal of resistance). Electrical conductivity is a function of quantity and specific types of cations and anions in the extract. Plant tolerance can be related to the ECe value of the saturated paste. The method has a detection limit of approximately 0.01 dS m-1.
<NAME>. 1982. Soluble salts. p. 167-179. In: A. L. Page et al. (ed.) Methods of soil analysis: Part 2: Chemical and microbiological properties. Monograph Number 9 (Second Edition). ASA, Madison, WI.', N'Estimated Soluble Salts (ECe)')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (220, N'Soils', N'# Saturated Paste Extract: HCO~3~, CO~3~
## Summary
This method quantifies bicarbonate (HCO~3~-) and carbonate (CO~3~^2-^) levels in a soil water extract, such as from saturated paste extract. Quantitation is by titration with 0.025 N H~2~SO~4~. The measurement should be made immediately due to the potential of the extract being super- saturated relative to calcium carbonate (CaCO~3~). The method has a detection limit of approximately 0.1 meq/L.
Sample amount requested: 300 g
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
U.S. Salinity Laboratory Staff. 1954. Carbonate and bicarbonate by titration with acid. p. 98. In: <NAME> (ed.) Diagnosis and improvement of saline and alkali soils. USDA Agricultural Handbook 60. U.S. Government Printing Office, Washington, D.C.', N'Bicarbonate And Carbonate In Saturated Paste Extract')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (227, N'Soils', N'# Saturated Paste Extract: Cl
## Summary
This method quantifies the amount of Cl^-^ in a soil water extract, such as from the saturated paste extract. Thiocyanate ion is liberated from mercuric thiocyanate by the formation of soluble mercuric chloride. In the presence of ferric ion, free thiocyanate ion forms the highly colored ferric thiocyanate, of which the absorbance is proportional to the chloride concentration. The absorbance of the ferric thiocyanate is read at 480 nm. Plant tolerance to chloride can be related to the concentration of chloride in the saturated paste extract. The method has a detection limit of 0.1 meq/L of Cl^-^ and is generally reproducible within 5%.
<NAME>. 2001. Determination of Chloride by Flow Injection Analysis Colorimetry. QuikChem Method 10-117-07-1-H. Lachat Instruments, Milwaukee, WI.
<NAME>. 1982. Soluble salts. p. 167-179. In: A. L. Page et al. (ed.) Methods of soil analysis: Part 2: Chemical and microbiological properties. Monograph Number 9 (Second Edition). ASA, Madison, WI.', N'Chloride In Saturated Paste Extract - Flow Injection Analyzer Method')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (235, N'Soils', N'# Saturated Paste Extract: K, Na, Ca, Mg, B and SO~4~-S
## Summary
This method quantitatively determines the concentration of K, Na, B, S, Ca, and Mg in the saturated paste extract using Inductively Coupled Plasma Emission Spectrometry (ICP-AES) for Ca, B, S and Mg and flame Atomic Emission Spectrometry (AES) for K and Na. Sulfur results are assuming that all sulfur present is in the sulfate from. Sulfate uptake by plants can be related to the sulfate concentration in the saturated paste extract. Plant tolerance to soil boron can be related to the boron concentration in the saturated paste extract. K, Na, Ca and Mg are generally the dominant cations in the saturated paste extract of soils. Concentration of soluble Na, Ca, and Mg is used to determine the sodium adsorption ratio (SAR) of soils. Extract solutions containing greater than 10,000 mg/L (1.0% w/v, estimated from ECe) will require dilution since solutions of this salt concentration may impair instrument operation.
|Element | MDL |
|------------|----------|
|B| 0.05 mg/L|
|Ca|0.10 meq/L|
|K| 0.1 mg/L|
|Mg|0.10 meq/L|
|Na| 0.10 meq/L|
|S|0.1 mg/L|
<br />
Sample amount requested: 200 g
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
<NAME>., <NAME>. and <NAME>. 1982. Lithium, sodium and potassium. pp. 225-246. In: A. L. Page et al. (ed.) Methods of soil analysis: Part 2. Chemical and microbiological properties. ASA Monograph Number 9.
<NAME>. <NAME>, Jr., <NAME> <NAME>. 1982. Optical emission spectrometry. p. 29-65. In: A. L. Page et al. (ed.) Methods of soil analysis: Part 2. Chemical and microbiological properties. Monograph Number 9 (Second Edition). ASA, Madison, WI.', N'Potassium, Sodium, Calcium, Magnesium, Boron and sulfate-Sulfur In Saturated Paste Extract')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (240, N'Soils', N'# Saturated Paste Extract: SAR, ESP
## Summary
The exchangeable sodium percentage (ESP) and the sodium adsorption ratio (SAR) are calculated after determining Ca, Mg and Na concentrations in a saturation extract (SOP# 235).
U.S. Salinity Laboratory Staff. 1954. Choice of determinations and interpretation of data. p. 26. In: <NAME> (ed.) Diagnosis and improvement of saline and alkali soils. USDA Agric. Handb. 60. U.S. Government Printing Office, Washington, D.C.', N'SAR (Sodium Adsorption Ratio) and ESP (Exchangeable Sodium Percentage)')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (312, N'Soils', N'# Fertility: NO~3~-N, NH~4~-N
## Summary
This method involves the extraction of nitrate (NO~3~-N) and ammonium (NH~4~-N) from soils using an equilibrium extraction with 2.0 N KCl solution. Nitrate is determined by reduction to nitrite via a copperized cadmium column. The nitrite is then determined by diazotizing with sulfanilamide followed by coupling with N-(1-naphthyl) ethylenediamine dihydrochloride. The absorbance of the product is measured at 520 nm. Ammonia is determined by heating with salicylate and hypochlorite in an alkaline phosphate buffer. The presence of EDTA prevents precipitation of calcium and magnesium. Sodium nitroprusside is added to enhance sensitivity. The absorbance of the reaction product is measured at 660 nm and is directly proportional to the original ammonia concentration. Extracts can be stored for up to three weeks at low temperature (<4°C) or frozen. The method has a detection limit of approximately 0.10 ppm (on a soil basis). The results of analysis of un-dried soil are reported on a dry soil basis.
Sample amount requested: 20 g for nitrate and/or ammonium. Please contact the Analytical Laboratory with questions concerning limited sample.
<NAME>. 2003. Determination of Ammonia (Salicylate) in 2M KCl soil extracts by Flow Injection Analysis. QuikChem Method 12-107-06-2-A. Lachat Instruments, Loveland, CO.
<NAME>. and <NAME>. 1982. Nitrogen-inorganic forms. pp. 643-698. In: A. L. Page (ed.) Methods of soil analysis: Part 2. Chemical and microbiological properties. ASA Monograph Number 9.
<NAME>. 2003. Determination of Nitrate in 2M KCl soil extracts by Flow Injection Analysis.QuikChem Method 12-107-04-1-B. Lachat Instruments, Loveland, CO.', N'Soil Nitrate And Extractable Ammonium By Flow Injection Analyzer Method')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (315, N'Soils', N'# Fertility: TKN
## Summary
The Total Kjeldahl Nitrogen (TKN) method is based on the wet oxidation of soil organic matter and botanical materials using sulfuric acid and digestion catalyst and conversion of organic nitrogen to the ammonium form. Ammonium is determined using the diffusion-conductivity technique. The procedure does not quantitatively digest nitrogen from heterocyclic compounds (bound in a carbon ring), oxidized forms such as nitrate and nitrite, or ammonium from within mineral lattice structures. The method has a detection limit of approximately 0.001 % N.
Sample amount requested: 3 g
Samples should be powdered and should pass a 1 mm sieve.
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
**Note:** SOP 315 (Soil Method) and SOP 515 (Plant Method) are identical.
<NAME>. and <NAME>. 1998. Determination of Total Nitrogen in Plant Tissue pp. 75-83. In: <NAME>. (ed.) Handbook of Reference Methods for Plant Analysis, CRC Press, New York.
<NAME>. and <NAME>. 1976. Determination of total nitrogen in plant tissue, using a block digestor. J. Assoc. Off. Anal. Chem. 59:1 98-100.', N'Total Kjeldahl Nitrogen (TKN)')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (320, N'Soils', N'# Fertility: N, C
## Summary
This analytical method quantitatively determines the total amount of nitrogen and carbon in all forms in soil either using an instrument that utilizes a combustion system with an induction furnace coupled with a thermal conductivity detector (TCD) system and an IR detector system, or, for samples with limited material, an instrument that has a dynamic flash combustion system coupled with a gas chromatographic (GC) separation system and thermal conductivity detection (TCD) system. The analytical method is based on the oxidation of the sample by “flash combustion” which converts all organic and inorganic substances into combustion gases (N~2~, NO~x~, CO~2~, and H~2~O). The method has a detection limit of approximately 0.02% for carbon and nitrogen.
Sample material must be ground to a fineness of < 0.5 mm (60 mesh).
Sample amount requested: 5 g
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
AOAC Official Method 972.43, Microchemical Determination of Carbon, Hydrogen, and Nitrogen, Automated Method, in Official Methods of Analysis of AOAC International, 16th Edition (1997), Chapter 12, pp. 5-6, AOAC International, Arlington, VA.', N'Total Nitrogen And Carbon - Combustion Method')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (322, N'Soils', N'## Summary
This analytical method quantitatively determines the total amount of organic carbon in soil. The method involves pre-treating the sample with dilute acid to remove carbonate carbon and then analyzing for total carbon using an instrument that utilizes a combustion system with an induction furnace coupled with a thermal conductivity detector (TCD) system and an IR detector system. In cases of very limited sample amount, an alternative method maybe utilized. This method combines acid fumigation with a dynamic flash combustion system that is coupled with a gas chromatographic (GC) separation system and thermal conductivity detection (TCD) system. Acid fumigation with hydrochloric vapor removes inorganic carbon with no loss of organic carbon. Both analytical methods are based on the oxidation of the sample by “flash combustion” which converts all organic and inorganic substances into combustion gases (N~2~, NO~x~, CO~2~, and H~2~O). The method has a detection limit of approximately 0.02% carbon
Sample material must be ground to a fineness of < 0.5 mm (60 mesh).
Sample amount requested: 5
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory
<NAME>., <NAME>. and <NAME>. 2001. Acid fumigation of soils to remove carbonates prior to total organic carbon or CARBON-13 isotopic analysis. Soil Science Society of America Journal 65:1853-1856 (2001.)
AOAC Official Method 972.43, Microchemical Determination of Carbon, Hydrogen, and Nitrogen, Automated Method, in Official Methods of Analysis of AOAC International, 16th Edition (1997), Chapter 12, pp. 5-6, AOAC International, Arlington, VA.', N'Total Organic Carbon - Combustion Method')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (330, N'Soils', N'# Fertility: SO~4~-S
## Summary
This method estimates the quantitative concentration of sulfate sulfur (SO~4~-S) in the soil by extraction with monocalcium phosphate. This method for extractable sulfur as SO~4~-S follows the procedure originally outlined by Schulte and Eik (1988) with the following exception: (1) elimination of activated carbon and (2) determination of S by ICP-AES. The ICP-AES determines all sulfur, both organic and inorganic. This method is inappropriate for soil containing greater than 4% organic matter. The method is quantitative only for the time of sampling since sulfur is constantly being mineralized in the soil. The method has a detection limit of approximately 0.5 mg/kg sulfur as sulfate and is generally reproducible within 8%.
<NAME>. and <NAME>. 1988. Recommended sulfate-sulfur test. p. 17-19. In: Recommended chemical soil test procedures for north central region. North Dakota Agric Exp Sta Bull No. 499 (revised).', N'Sulfate - Sulfur')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (335, N'Soils', N'# Fertility: Bray-P
## Summary
This method estimates the relative bioavailability of inorganic ortho-phosphate (PO~4~-P) in soils with acid to neutral pH, using a dilute acid solution of hydrochloric acid containing ammonium fluoride. The orthophosphate ion reacts with ammonium molybdate and antimony potassium tartrate under acidic conditions to form a complex. This complex is reduced with abscorbic acid to form a blue complex which absorbs light at 880 nm. The method is shown to be well correlated to crop response on neutral to acid soils. The absorbance is proportional to the concentration of orthophosphate in the sample. The method has a detection limit of approximately 0.5 mg kg^-1^ (soils basis) and is generally reproducible within 8%.
<NAME>. 1995. Phosphorus in soil extracts. QuikChem Method 10-115-01-1-A. Lachat Instruments, Milwaukee, WI.
<NAME>. and <NAME>. 1982. Phosphorus. p. 403-430. In: <NAME>, et al. (eds.) Methods of soil analysis: Part 2. Chemical and microbiological properties. Agron. Mongr. 9. 2nd ed. ASA and SSSA, Madison, WI.', N'Extractable Phosphorus - Bray Method')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (340, N'Soils', N'# Fertility: Olsen-P
## Summary
This method estimates the relative bioavailability of inorganic ortho-phosphate (PO4-P) in soils with neutral to alkaline pH. It is not appropriate for soils which are mild to strongly acidic (pH <6.5). The method is based on the extraction of phosphate from the soil by 0.5 N sodium bicarbonate solution adjusted to pH 8.5. In the process of extraction, hydroxide and bicarbonate competitively desorb phosphate from soil particles and secondary absorption is minimized because of high pH. The orthophosphate ion reacts with ammonium molybdate and antimony potassium tartrate under acidic conditions to form a complex. This complex is reduced with ascorbic acid to form a blue complex which absorbs light at 880 nm. The absorbance is proportional to the concentration of orthophosphate in the sample. The method has shown to be well correlated to crop response to phosphorus fertilization on neutral to alkaline soils. The method has a detection limit of 1.0 ppm (soil basis).
Sample amount requested: 5 g
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
<NAME>. and <NAME>. 1982. Phosphorus. pp. 403-430. In: <NAME>, et al. (eds.) Methods of soil analysis: Part 2. Chemical and microbiological properties. Agron. Mongr. 9. 2nd ed. ASA and SSSA, Madison, WI.
<NAME>. 1995. Phosphorus in 0.5 M sodium bicarbonate soil extracts. QuikChem Method 12-115-01-1-B. Lachat Instruments, Milwaukee, WI.', N'Extractable Phosphorus - Olsen Method')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (360, N'Soils', N'# Fertility: X-K, X-Ca, X-Mg, X-Na, CEC-Estimated
## Summary
This method is semi-quantitative and determines the amount of soil exchangeable K, Ca, Mg, and Na residing on the soil colloid exchange sites by displacement with ammonium acetate solution buffered to pH 7.0. Cations are quantitated by inductively coupled plasma atomic emission spectrometry (ICP-AES). Generally, these cations are associated with the exchange capacity of the soil. The method has detection limits of approximately of 1 ppm or 0.01 meq/100g for each cation. The estimation of cation exchange capacity is reported as the sum of the results for K, Ca, Mg, and Na. The method does not correct for calcium and magnesium extracted as free carbonates or gypsum.
Sample amount requested: 10 g (for one or up to all four elements)
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
<NAME>. 1982. Exchangeable cations. pp 159-165. In: A.L. Page et al. (ed.) Methods of soil analysis: Part 2. Chemical and microbiological properties. ASA Monograph Number 9.', N'Exchangeable Potassium, Calcium, Magnesium, Sodium And Estimated Cation Exchange Capacity')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (370, N'Soils', N'# By Special Request
## Summary
As the exchangeable K of soils is removed by cropping or leaching, some K from the mineral reserve becomes exchangeable K. Soils with low exchangeable K content need not be deficient, as the mineral reserve may be able to supply K for plant growth. Extraction of K with H~2~SO~4~ removes an amount of K that seems to be correlated with the removal by extensive cropping. The method has a detection limit of 1 mg kg^-1^ (on a soil basis) and is generally reproducible within 10%.
<NAME>., <NAME>. and <NAME>. 1973. Potassium deficiency by soil analysis. p. 13-14. Cal. Agr. June.', N'Potassium -Sulfuric Acid Extraction')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (380, N'Soils', N'# Fertility: Zn, Mn, Cu, Fe
## Summary
The DTPA (diethylenetriaminepentaacetic acid) micronutrient extraction method is a non-equilibrium extraction for estimating the potential soil availability of Zn, Cu, Mn, and Fe. It has been used for cadmium, nickel and lead in soils. The method has shown to be well correlated to crop response to fertilizer for zinc and copper. The amount of micronutrients and trace metals extracted are affected by solution pH, temperature, soil extraction ratio, shaking time, extraction time, and extractant concentration. Extracts are analyzed by ICP-AES or Flame AA. The method has a detection limit of approximately 0.1 mg/kg for Zn, Cu, Mn, and Fe and is generally reproducible within 10% for Cu and Zn and 15% for Fe and Mn. The method is not well characterized for other elements.
<NAME>. and <NAME>. 1978. Development of a DTPA soil test for zinc, iron, manganese, and copper. Soil Sci. Soc. Amer. J. 42:421-428.', N'Extractable Micronutrients Using Dtpa Extraction - Zinc, Manganese, Copper, And Iron')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (390, N'Soils', N'# Soil Totals: Zn, Mn, Fe, Cu, Cd, Cr, Pb, Ni, P, Mo
## Summary
This method determines the concentration of Cu, Cd, Cr, Fe, Mn, Ni, P, Pb, Zn and additional elements as requested utilizing a nitric acid/hydrogen peroxide closed vessel microwave digestion. Analysis is by Inductively Coupled Plasma Atomic Emission Spectrometry (ICP-AES). The approximate method detection limit is 1 mg/kg for all elements except cadmium (0.1 mg/kg) and phosphorus (0.001%). Sample amount requested is 3 g powdered or finely ground sample.
<NAME>. and <NAME>. 1992. Spontaneous reaction for acid dissolution of biological tissues in closed vessels. Anal. Chem. 64:230-233.', N'Total Elements (Includes Phosphorus, Zinc, Manganese, Iron, Copper, Molybdenum, Cadmium, Chromium, Lead And Nickel)')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (392, N'Soils', N'# Fertility: AL-KCL
## Summary
This method is semi-quantitative and determines the amount of 1N KCl extractable aluminum in soil. Aluminum concentration is determined in the extract by Inductively Coupled Plasma Atomic Emission Spectrometry (ICP-AES). The method has a detection limit of approximately 1.0 mg/kg.
<NAME>., <NAME>., <NAME>., <NAME>. 2003. Soil, Plant and Water Reference Methods for the Western Region. p.134-135.', N'KCL Extractable Aluminum')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (394, N'Soils', N'## Summary
This method is quantitative for selenium and is based on the wet oxidation of the sample with nitric, perchloric and sulfuric acids, reduction of selenate to selenite (IV), and determination by vapor generation Inductively-Coupled Plasma Emission Spectrometer (ICP-AES). The method has a detection limit of 0.10 ppm.
Sample should be powdered and should pass a 1 mm sieve.
Sample amount requested: 3 g
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
<NAME>. and <NAME>. 1990. Continuous flow vapor generation for inductively coupled argon plasma spectrometric analysis. Part 1: Selenium. J. Assoc. Off. Anal. Chem. 73:404-410.', N'Selenium')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (396, N'Soils', N'## Summary
Arsenic
This method is quantitative for arsenic using digestion with nitric, perchloric and sulfuric acids, reduction of arsenate to arsenite, and determination by vapor generation Inductively-Coupled Plasma Emission Spectrometer (ICP-AES). The method has a detection limit of approximately 0.10 ppm.
Sample material should be powdered and should pass a 1 mm sieve.
Sample amount requested: 3 g
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
<NAME>. and <NAME>. 1990. Continuous flow vapor generation for inductively coupled argon plasma spectrometric analysis. Part 2: Arsenic. J. Assoc. Off. Anal. Chem. 74:516-521.', N'Arsenic')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (410, N'Soils', N'# Alternate Methods: OM (Walkley-Black), Org.C (W-B)
## Summary
This method quantifies the amount of oxidizable organic matter in which OM is oxidized with a known amount of chromate in the presence of sulfuric acid. The remaining chromate is determined spectrophotometrically at 600nm wavelength. The calculation of organic carbon is based on organic matter containing 58% carbon. The method has a detection limit of approximately 0.10% and, on homogeneous sample material, is generally reproducible within 8%.
Samples with concentrations greater than 80% OM are best tested by the Loss-on-Ignition (OM-LOI) method.
Sample amount requested: 10 g
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
<NAME>. and <NAME>. 1982. Total carbon, organic carbon and organic matter. p. 539-579. In: A. L. Page et al. (ed.) Methods of soil analysis: Part 2. Chemical and microbiological properties. ASA Monograph Number 9.', N'Organic Matter - Walkley-Black Method')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (415, N'Soils', N'# PHYSIO CHEM: OM (LOI), Org.C (LOI)
## Summary
This method estimates soil organic matter based on gravimetric weight change associated with high temperature oxidation of organic matter. After initial oven drying at 105ºC, the samples are ignited in a muffle furnace for 2 hours at 360ºC. The percent weight loss during the ignition step is reported as OM-LOI (% wt. loss) with a method detection limit of 0.05 %. The calculation of organic carbon is based on the assumption that organic matter contains 58% carbon.
Note: To improve the accuracy of estimation of organic matter from loss-on-ignition data, it is recommended that a comparison study of OM by Walkley-Black and LOI be performed to determine the relationship between the two measurements. The resulting equation can then be used for better estimation of organic matter from LOI values for similar samples.
Sample amount requested: 50 g
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
<NAME>., and <NAME>. 1996. Chapter 34. p 1001-1006. Total Carbon, Organic Carbon, and Organic Matter. In: <NAME> et al. (ed.) Soil Science Society of America and American Society of Agronomy. Methods of Soil Analysis. Part 3. Chemical Methods-SSSA Book Series no. 5. Madison, WI.', N'Organic Matter - Loss-On-Ignition Method')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (420, N'Soils', N'# By Special Request
## Summary
The procedure is based on the measurement of the loss of crystal water associated with the hydrated form of gypsum. The precise determination of gypsum is difficult because of sources of Ca and SO~4~ other than from gypsum. The method has a detection limit of approximately 0.1meq 100 gm^-1^ and is reproducible within 20%.
<NAME>. 1986. Water retention: laboratory methods. p. 635-662. In: A. Klute (ed.) Methods of soil analysis: Part 1. Physical and mineralogical methods. ASA Monograph Number 9.', N'Gypsum Content')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (430, N'Soils', N'## Summary
The method determines the cation exchange capacity (CEC) of soil. Barium is used to quantitatively displace soil exchangeable cations. Four deionized water rinses are used to remove excess barium. A known quantity of calcium is then exchanged for barium and excess solution calcium is measured. CEC is determined by the difference in the quantity of the calcium added and the amount found in the resulting solution. The method has a detection limit of approximately 2.0 meq/100g.
Sample amount requested: 15 g
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
<NAME>. and <NAME>. 1960. Method S-19.0. Cation Exchange Capacity. *In:* Water soil plant tissue. Tentative methods of analysis for diagnostic purposes. Davis, University of California Agricultural Experiment Service. Mimeographed Report.', N'Cation Exchange Capacity')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (440, N'Soils', N'# Physio Chem: CaCO~3~
## Summary
This method is based on the gravimetric loss of carbonates as carbon dioxide in the presence of excess hydrochloric acid. Major sources of error are: evaporation of water and failure to adequately degas CO~2~ from the sample. Soil carbonates are measured to determine soil buffering capacity with relation to soil fertility, chemical and pedogenic processes. This procedure is an estimate of free calcium carbonate in the sample. This procedure does not adjust for magnesium, potassium, or sodium carbonates or organic matter which may be present. The method detection limit is approximately 0.2% CaCO~3~ equivalent (on a dry soil basis).
Sample amount requested: 15 g
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
U.S. Salinity Laboratory Staff. 1954. Alkaline-earth carbonates by gravimetric loss of carbon dioxide. p. 105. In: L. A. Richards (ed.) Diagnosis and improvement of saline and alkali soils. USDA Agric. Handb. 60. U.S. Government Printing Office, Washington, D.C.', N'Calcium Carbonate Equivalent')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (450, N'Soils', N'# Physio Chem: LiR
## Summary
Buffer pH is the measure of a soil’s active and reserve acidity (i.e., buffer capacity) and is used to estimate lime recommendations. The method is based on the Shoemaker, McLean and Pratt (SMP) method using the reaction of soil buffered acidity with a chemical buffer resulting in a change in the pH of the buffer. This method is used for estimating exchange acidity including that associated with exchangeable aluminum. Standard calibration curves exist for liming based on a SMP value to a desired pH for soil groups. The lime requirement reported for this test is based on a desired pH of 7.0. The result is reported in T/A/8in (tons per acre of 100% CaCO~3~ required based on an 8 inch furrow slice weighing 2.4 million pounds). The table used is from Soil, Plant and Water Reference Methods for the Western Region, 2003.
Sample amount requested: 15 g
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
<NAME>., <NAME>. and <NAME>. 1961. Buffer methods for determining lime requirement of soils with appreciable amounts of extractable aluminum. Soil Sci. Soc. Am. Proc. 25:274-277.', N'Lime Requirement')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (460, N'Soils', N'# Physio Chem: Moisture Retention
## Summary
The method determines the soil moisture content under constant preset pressure potential (ranging from -10 to -1500 kPa [0.1 atm to 15 atm]). Soil is brought to near saturation and then is allowed to equilibrate under a set atmospheric pressure potential. The method is used to determine the available water capacity of soils and/or moisture release curve. The method detection limit is 0.5%.
<NAME>. 1986. Water retention: laboratory methods. p. 635-662. In: A. Klute (ed.) Methods of soil analysis: Part 1. Physical and mineralogical methods. ASA Monograph Number 9.', N'Moisture Retention')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (470, N'Soils', N'# Particle Size Analysis (Sand/Silt/Clay)
## Summary
This method quantitatively determines the physical proportions of three sizes of primary soil particles as determined by their settling rates in an aqueous solution using a hydrometer. The hydrometer method of estimating particle size analysis (sand, silt and clay content) is based on the dispersion of soil aggregates using a sodium hexametaphosphate solution and subsequent measurement based on changes in suspension density. The method has a detection limit of 1% sand, silt and clay (dry soil basis).
Sample amount requested: 100 g
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
<NAME>. and <NAME>. 1993. Particle-size Distribution. pp. 499-511. In: <NAME>. (ed), Soil Sampling and Methods of Analysis, Canadian Society of Soil Science, Lewis Publishers, Ann Arbor, MI.', N'Particle Size Analysis')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (480, N'Soils', N'# Physio Chem: BD
## Summary
Soil bulk density is the ratio of the mass of dry solids to the bulk volume of the soil. The bulk volume includes the volume of the solids and of the pore space. The determination of bulk density consists of drying (105°C) and weighing a soil sample, the volume of which is known (core method) or must be determined.
<NAME>. and <NAME>. 1986. Bulk density. p. 363-375. In: A. Klute et al. (ed.) Methods of soil analysis: Part 1: Physical and Mineralogical Methods. Monograph Number 9 (Second Edition). ASA, Madison, WI.', N'Bulk Density')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (505, N'Plant', N'# Feed: DM
## Summary
This procedure is performed on botanical materials (plant and feed) that have been air- or oven-dried at 55-60ºC and ground, to allow for correction of test results to 100% dry matter. If the moisture content of the sample as submitted is required, the Partial Dry Matter test should be requested. The method quantitatively determines the dry matter content based on the gravimetric loss of free water associated with heating to 105ºC for a period of three hours. The method does not remove molecularly bound water.
Sample amount requested: 1 g
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
NFTA, Moisture Task Force Report, 2.2.2.5 Laboratory Dry Matter by Oven Drying for 3 hours at 105oC, 2001. pp. 1-3.', N'Dry Matter Determination For Botanical Materials')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (507, N'Plant', N'# Feed: Partial DM (dried at 55°C)
## Summary
This procedure is performed on botanical materials (plant and feed) and miscellaneous samples such as manure to determine the moisture content of the sample as submitted.
Moisture is evaporated from samples in a forced-air oven at 55-60°C and Partial Dry Matter is determined gravimetrically as the residue remaining after oven drying. Some moisture remains in the sample because drying at this temperature does not remove all water. Drying at higher temperatures (greater than 60°C) causes chemical changes in the sample that affect subsequent testing. The Dry Matter test should also be requested if the total moisture content of the sample following drying at 105°C is required.
Partial drying of certain samples such as manure may not be compatible with subsequent analysis for constituents that might be volatilized or chemically or biologically transformed during drying.
NFTA method 2.2.1.1, Partial Dry Matter Using Forced-air Drying Ovens.', N'Partial Dry Matter')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (510, N'Plant', N'# NO~3~-N, NH~4~-N
## Summary
This method quantitatively extracts soluble nitrate (NO3-N) and ammonium (NH4-N) in botanical materials based on an extraction with a solution of 2% acetic acid. Ammonium is determined by the diffusion-conductivity method based on the gaseous diffusing of ammonia (NH3) across a gas permeable membrane in the presence of excess base (KOH) and subsequent conductivity detection. Nitrate is determined by first reducing it to ammonium using a copper-zinc reduction column and subsequent measurement as described above. Concentrations of these nutrients are used to assess plant overall nitrogen status and are correlated to plant response to nitrogen fertilization. The method detection limit is 10 ppm (dry basis).
High concentrations of ammonium can interfere with the nitrate quantitation. Volatile amines such as methylamine and ethylamine will interfere.
Sample amount requested: 3 g
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
<NAME>., <NAME>., <NAME>., <NAME>. and <NAME>. 1990. Rapid direct determination of ammonium and nitrate in soil and plant tissue extracts. Commun. Soil Sci. Plant Anal. 21:1519-1529.', N'Extractable Nitrate And Ammonium In Botanical Materials - Diffusion Conductivity Analyzer Method')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (512, N'Plant', N'# NO~3~-N
## Summary
This method quantitatively measures soluble nitrate (NO3-N) in botanical materials based on an extraction with a solution of 2% acetic acid. Nitrate is determined by Flow Injection Analysis (FIA) using the reduction to nitrite via a copperized cadmium column, diazotization with sulfanilamide followed by coupling with N-(1-naphthyl)ethlyenediaminie dihydrochloride. The absorbance of the product is measured at 520 nm.
Nitrate concentration is used to assess plant overall nitrogen status and is correlated to plant response to nitrogen fertilization. The method has a quantitative detection limit of 10 ppm (dry basis).
Sample amount requested: 3 g
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
<NAME>. 1998. Extractable Chloride, Nitrate, Orthophosphate, and Sulfate-Sulfur in Plant Tissue: 2% Acetic Acid Extraction, in Handbook of Reference Methods for Plant Analysis, Chapter 15, pp. 115-118.
<NAME>. 1992. Determination of Nitrate/Nitrite by Flow Injection Analysis in 2 M KCl soil extracts. QuikChem Method 12-107-04-1-B. Lachat Instruments, Milwaukee, WI.', N'Extractable Nitrate In Botanical Materials - Flow Injection Analyzer Method')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (515, N'Plant', N'## Summary
The Total Kjeldahl Nitrogen (TKN) method is based on the wet oxidation of soil organic matter and botanical materials using sulfuric acid and digestion catalyst and conversion of organic nitrogen to the ammonium form. Ammonium is determined using the diffusion-conductivity technique. The procedure does not quantitatively digest nitrogen from heterocyclic compounds (bound in a carbon ring), oxidized forms such as nitrate and nitrite, or ammonium from within mineral lattice structures. The method has a detection limit of approximately 0.001 % N.
Sample amount requested: 3 g
Samples should be powdered and should pass a 1 mm sieve.
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
<NAME>. and <NAME>. 1998. Determination of Total Nitrogen in Plant Tissue pp. 75-83. In: <NAME>. (ed.) Handbook of Reference Methods for Plant Analysis, CRC Press, New York.
<NAME>. and <NAME>. 1976. Determination of total nitrogen in plant tissue, using a block digestor. J. Assoc. Off. Anal. Chem. 59:1 98-100.', N'Total Kjeldahl Nitrogen (TKN)')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (522, N'Plant', N'## Summary
This analytical method quantitatively determines the total amount of nitrogen and carbon in botanical material using sample combustion coupled with either thermal conductivity/IR detection (LECO FP-528 and TruSpec CN Analyzers) or gas chromatography/thermal conductivity detection (Thermo-Finnigan Flash EA 1112). The TruSpec CN Analyzer is the preferred instrument, but in the event of very limited sample material the Thermo-Finnigan Flash EA 1112 is used. The instruments give equivalent test results. The method is based on the oxidation of the sample by “flash combustion” which converts all organic and inorganic substances into combustion gases (N2, NOx, CO2, and H2O). The method has a detection limit of approximately 0.02% for nitrogen and 0.1% for carbon.
Best results are obtained when the samples appear powder-like.
Sample amount requested: 3 g (for either or both)
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
AOAC Official Method 972.43, Microchemical Determination of Carbon, Hydrogen, and Nitrogen, Automated Method, in Official Methods of Analysis of AOAC International, 18th edition, Revision 1, 2006. Chapter 12, pp. 5-6, AOAC International, Gaithersburg, MD.
AOAC Official Method 990.03. Protein (Crude) in Animal Feed, Combustion Method, in Official Methods of Analysis of AOAC International, 18th Edition (2005). Revision 1, 2006, Chapter 4, pp. 30-31. AOAC International, Arlington, VA.', N'Total Nitrogen and Carbon-Combustion Method')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (530, N'Plant', N'# SO~4~-S
## Summary
This method quantitatively determines the amount of sulfate-sulfur (SO4-S) in botanical materials by extraction with a solution of 2 % acetic acid. Sulfate contained within the extract is bound to an anion exchange resin, organo-sulfur compounds are removed by washing with 0.1N HCl, and sulfate is eluted with 1.0N HCl. The sulfur content of the extract is determined by Inductively Coupled Plasma Atomic Emission Spectrometry (ICP-AES). The method may be semi-quantitative on some botanical materials which have a high anion exchange capacity or in samples where sulfate is not the most significant anionic form of sulfur. The method has a detection limit of 10 ppm.
Sample amount requested: 5 g
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
<NAME>., <NAME>. and <NAME>. 1990. Determination of sulfate-sulfur in plant tissue by inductively coupled plasma spectrometry. Commun. Soil Sci. Plant Anal. 21:1577-1586.', N'Extractable Sulfate-Sulfur In Botanical Materials')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (540, N'Plant', N'# PO~4~-P
## Summary
This method quantitatively determines the amount of phosphorus (PO4-P) in botanical materials by extraction with a solution of 2% acetic acid. Phosphorus concentration in the extract is determined spectrophotometrically by reacting with ammonium molybdate and antimony potassium tartrate under acidic conditions to form a complex. This complex is reduced with ascorbic acid to form a blue complex which absorbs light at 880 nm. The absorbance is proportional to the concentration of phosphorus in the sample. The method has shown to be correlated to plant deficiency and response to phosphorus fertilization. Samples are analyzed using an automated Flow Injection Analyzer (Lachat). The method has a routine detection limit of 50 ppm but samples that fall below 200 ppm are reanalyzed yielding a detection limit of 20 ppm.
Sample amount requested: 3 g (allows for reporting on a 100% dry basis).
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
<NAME>. 1995. Phosphorus in acetic acid extracts. QuikChem Method 12-115-01-1-C. Lachat Instruments, Milwaukee, WI.', N'Extractable Phosphorus In Botanical Materials')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (550, N'Plant', N'# K
## Summary
This method quantitatively extracts soluble potassium (K) present in botanical materials by extraction with a solution of 2% acetic acid. Potassium is quantitatively determined in the extract using Inductively Coupled Plasma Atomic Emission Spectrometry (ICP-AES). Concentration of potassium is used to assess plant overall nutrient status and is correlated to plant response to potassium fertilization. The method has a routine detection limit of 0.01% (dry basis).
Sample amount requested: 3 g
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
<NAME>. 2001. Laboratory Guide for Conducting Soil tests and Plant Analysis. Extraction of Cl, NO~3~, PO~4~, K, and SO~4~ from Plant Tissue. pp. 228-229.
U.S. EPA Method 200.7, Trace Elements in Water, Solids, and Biosolids by Inductively Coupled Plasma-Atomic Emission Spectrometry.', N'Extractable Potassium In Botanical Materials')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (561, N'Plant', N'# Cl by water extraction and analysis by ion chromatography.
## Summary
This method determines the amount of chloride in botanical materials using a water extraction and analysis by ion chromatography with conductivity detection. The method has a detection limit of 0.01 %.
Sample amount requested: 5 g (to allow for moisture determination)
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
<NAME>. 2001. Laboratory Guide for Conducting Soil Tests and Plant Analysis, pp. 227-228.
Dionex Application Note 154, Determination of Inorganic Anions in Environmental Waters Using a Hydroxide-Selective Column.', N'Extractable Chloride In Botanical Materials - Ion Chromatography Method')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (585, N'Plant', N'# Si
## Summary
This method quantitatively determines the concentration of silicon utilizing a nitric acid/hydrogen peroxide/hydrofluoric acid microwave digestion and analysis by Inductively Coupled Plasma Atomic Emission Spectrometry (ICP-AES). The method has a detection limit of 0.01% and on homogeneous sample material is generally reproducible within 8% (relative).
Sample amount requested: 5 g (to allow for moisture determination)
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
<NAME>., <NAME>., <NAME>., and <NAME>. Microwave digestion of plant and grain standard reference materials in nitric and hydrofluoric acids for multi-elemental determination by inductively coupled plasma mass spectrometry. Journal of Analytical Atomic Spectrometry, 1999, 14, pp. 939-946.', N'Total Silicon-HF')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (590, N'Plant', N'# Plant: B, Ca, Cu, Fe, Mg, Mn, P, K, Na, S, Zn
[also available: Al, Ba, Cd, Cr, Co, Pb, Mo, Ni, V]
## Summary
This method quantitatively determines the concentration of B, Ca, Cu, Fe, Mg, Mn, P, K, Na, S and Zn and a variety of other elements utilizing a nitric acid/hydrogen peroxide microwave digestion and determination by Inductively Coupled Plasma Atomic Emission Spectrometry (ICP-AES). The methodology utilizes a closed vessel digestion/dissolution of the sample. The method has detection limits ranging from 0.5 ppm to 0.01 %.
|Element | MDL|
|----------------|--------------|
|B|1.0 ppm|
|Ca|0.010 %|
|Cu|0.5 ppm|
|Fe|1.0 ppm|
|Mg|0.010 %|
|Mn|1.0 ppm|
|P|0.010 %|
|K|0.01 %|
|Na|1 ppm|
|S|10 ppm|
|Zn|1.0 pp|
<br />
Sample amount requested: 5 g for any or all of the above
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
<NAME>. and <NAME>. 1992. An overview of analysis by inductively coupled plasma-atomic emission spectrometry. pp. 473-516. In: <NAME> and <NAME> (ed.). Inductively coupled plasmas in analytical atomic spectrometry. VCH Publishers, New York, NY.
<NAME>. and <NAME>. 1992. Spontaneous reaction for acid dissolution of biological tissues in closed vessels. Anal. Chem. 64:230-233.', N'Total Elements-Nitric Acid Digestion')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (594, N'Plant', N'# Se
## Summary
This method is quantitative for selenium and is based on the wet oxidation of selenium bearing organic carbon and inorganic selenium compounds utilizing nitric, perchloric and sulfuric acids, reduction of selenate to selenite (IV), and determination by Vapor Generation Inductively-Coupled Plasma Emission Spectrometer (VG-ICP). The method has a detection limit of 0.05 ppm.
Sample amount requested: 3 g (for reporting on a 100% dry basis)
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
<NAME> and <NAME>. 1990. Continuous flow vapor generation for inductively coupled argon plasma spectrometric analysis. Part 1: Selenium. J. Assoc. Off. Anal. Chem. 73:404-410.', N'Selenium')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (596, N'Plant', N'# Totals: (Complete Digestion) As
## Summary
This method measures the arsenic concentration in plant tissue using digestion with nitric, perchloric and sulfuric acids, reduction of arsenate to arsenite, and determination by Vapor Generation Inductively-Coupled Plasma Emission Spectrometer (VG-ICP). The method has a detection limit of approximately 0.05 ppm.
Sample amount requested: 3 g (for reporting on a 100% dry basis)
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
<NAME>. and <NAME>. 1990. Continuous flow vapor generation for inductively coupled argon plasma spectrometric analysis. Part 2: Arsenic. J. Assoc. Off. Anal. Chem. 74:516-521.', N'Arsenic')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (615, N'Feed', N'# Fat
## Summary
This method quantifies the amount of crude fat (fats, oils, pigments, and other fat soluble substances) in dried forages and mixed feeds using the Randall modification of the standard Soxhlet extraction. The extraction process includes submerging the test portion into boiling ethyl ether and then lowering the solvent below the sample for a continuous flow of condensed solvent. The solvent is evaporated and recovered by condensation. The resulting crude fat residue is determined gravimetrically after drying. The method has a detection limit of 0.25 %.
Samples high in carbohydrates, urea, lactic acid, glycerol, and other water soluble components should undergo water extraction in order to avoid false high values. Water extraction must be requested by the client at the time of sample submission.
Sample amount required: 15 g
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
AOAC Official Method 2003.05, Crude Fat in Feeds, Cereal Grains, and Forages, in Official Methods of Analysis of AOAC International, 18th edition (2006), Chapter 4, pp. 40-42, AOAC International, Arlington, VA.
', N'Crude fat')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (625, N'Feed', N'# Protein
## Summary
Total crude protein is calculated from the nitrogen content of the feed material, based on sample type. The protein factor applied to the nitrogen result is 6.25 unless a different factor is requested. The method has a detection limit of 0.1% protein (dry basis).
Note: See SOP 522 for information on nitrogen analysis.
Sample amount requested: 3 g
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
AOAC Official Method 990.03, Protein (Crude) in Animal Feed, Combustion Method, in Official Methods of Analysis of AOAC International, 18th edition Revision 1, 2006. Chapter 4, pp. 30-31, AOAC International, Gaithersburg, MD.', N'Total Crude Protein In Feed Materials - Combustion Method')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (640, N'Feed', N'# ADF, ADF (Ash Free), Lignin (Ash Free), ADIN, TDN, Cellulose
## Summary
This procedure is used for the determination of acid detergent fiber (ADF) and ADF-derived tests including lignin, cellulose, TDN (total digestible nutrients) and ADIN (acid detergent insoluble nitrogen) in all types of forages. A hot, acidified detergent solution is used to dissolve cell solubles, hemicellulose and soluble minerals leaving a residue of cellulose, lignin, and heat damaged protein and a portion of cell wall protein and minerals (ash).
Sample amount requested: 20 g
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
ADF is determined gravimetrically as the residue remaining after acid detergent extraction. Lignin is determined gravimetrically after the ADF residue is extracted with 72% H2SO4 and ashed. Cellulose is determined by subtracting the pre-ash lignin value from the ADF value. TDN is a calculation based on the ADF value and is reported based on the formula for alfalfa. The TDN result is standardized to a 90% dry matter value. ADIN is determined by nitrogen analysis (combustion) of a sub-sample of the ADF residue. (See SOP 525 for information on nitrogen analysis.)
|Analyte |Typical MDL|
|-------------------------|:------------------:|
|ADF|0.5 %|
|Lignin|1.0 %|
|Cellulose|1.0 %|
|TDN (@90%DM) | 0.5 %|
|ADIN|0.05|
<br />
AOAC Official Method 973.18, Fiber (Acid Detergent) and Lignin in Animal Feed, in Official Methods of Analysis of AOAC International, 16th edition (1997), Chapter 4, pp. 28-29, AOAC International, Arlington, VA.', N'Acid Detergent Fiber (ADF), Lignin (Ash Free), Acid Detergent Insoluble Nitrogen (ADIN), Total Digestible Nutrients (TDN) And Cellulose - Reflux Method')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (650, N'Feed', N'## Summary
This procedure is used for the determination of amylase-treated neutral detergent fiber (NDF) in feed materials using a neutral detergent solution and heat. Sodium sulfite is used in the procedure to aid in the removal of some nitrogenous matter. Heat-stable amylase is used in the procedure to allow for the removal of starch and to inactivate potential contaminating enzymes that might degrade fibrous constituents. Hemicellulose is determined by performing the NDF procedure followed by the ADF procedure (see SOP 640 for ADF details). The detection limit for NDF and hemicellulose are approximately 0.5 %, and 1.0 % respectively. On homogenous sample material, the method is generally reproducible within 8% (relative). Results for NDF can be reported on an ash-free basis upon client request.
Sample amount requested: 10 g
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
AOAC Official Method 2002-04, Amylase-Treated Neutral Detergent Fiber in Feeds, Using Refluxing in Beakers or Crucibles, in Official Methods of Analysis of AOAC International, (2006), Chapter 4, pp. 48-55, AOAC International, Arlington, VA.
', N'Neutral Detergent Fiber (NDF) And Hemicellulose - Reflux Method')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (670, N'Feed', N'# Ash
## Summary
This method quantitatively determines the amount of ash in feed materials based on the gravimetric loss by heating to 550°C for a period of at least three hours. The method has a detection limit of 0.01%.
Sample amount requested: 5 g.
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
AOAC Official Method 942.05, Ash of Animal Feed, in Official Methods of Analysis of AOAC International, 18th edition (2005), Chapter 4, p. 8, AOAC International, Gaithersburg, MD.
NFTA, Section C, Procedure 7, Total Ash in Forages. Printed on July 16, 2009 from www.foragetesting.org.
', N'Ash Content In Botanical Materials - Gravimetric Method')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (680, N'Feed', N'# Soluble Carbohydrates
## Summary
This method quantitatively determines the amount of the free sugars fructose, glucose and sucrose in botanical materials. Sorbitol content can also be determined upon request. Samples are extracted by hot deionized water and analyzed by HPLC with mass selective detection. The analysis uses a Phenomenex Luna NH2 (250 mm x 4.6 mm) HPLC column at a flow rate of 2.75 mL min acetonitrile:water (78:22). The method has a detection limit of 0.2% and is reproducible within 10% (relative).
Sample amount requested: 250 mg
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
<NAME>., <NAME> <NAME>. 1996. Influence of Extraction Solvent and Temperature on the Quantitative Determination of Oligosaccharides from Plant Materials by High-Performance Liquid Chromatography. J. Agric. Food Chem. 44:1470-1474.
', N'Soluble Carbohydrates - HPLC Method')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (690, N'Feed', N'# TNC, Starch
## Summary
Nonstructural carbohydrates are those that can be accumulated and then readily mobilized in order to be metabolized or translocated to other plant parts. This method quantitatively determines the amount of the total glucose following enzymatic hydrolysis. Total non-structural carbohydrates (TNC) is the sum of total glucose, free fructose and free sucrose. Starch is the total glucose minus the free glucose multiplied by 0.9. The free carbohydrates are determined by a separate analysis. The samples for total glucose are enzymatically hydrolyzed at 55°C with amyloglucosidase for 12 hours and analyzed by HPLC with mass selective detection. The analysis uses a Phenomenex Luna NH2 (250 mm x 4.6 mm) HPLC column at a flow rate of 2.75 mL min-1 acetonitrile:water (78:22). The method has a detection limit of 0.5% and is reproducible to within 10% (relative).
<NAME>. Removing and Analyzing Total Nonstructural Carbohydrates from Plant Tissue. Wisconsin Agric. Exp. Sta. Res. Report 41. 1969.', N'Total Glucose For Total Nonstructural Carbohydrates (TNC) And Starch')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (705, N'Manure and Compost', N'# pH 1:5 pH (Water 1:5)
## Summary
This method determines the pH of the liquid from a slurry of manure, using 1 part sample and 5 parts deionized water. The method is generally reproducible within 0.2 pH units.
Sample amount requested: 30 g
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
<NAME>. 2003. Determination of manure pH. p. 48-49. In: <NAME> (ed.) Recommended Methods of Manure Analysis. University of Wisconsin System.', N'Manure')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (715, N'Manure and Compost', N'# EC (Water 1:5)
## Summary
This method measures the electrical conductivity (ECe) in the liquid from a slurry of manure, using 1 part sample and 5 parts deionized water. The electrical conductivity of the extract is reported. The method has a detection limit of approximately 0.1 dS/m (mmhos/cm).
Sample amount requested: 30 g
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
<NAME>. 2003. Determination of manure electrical conductivity (EC). p. 50-51. In: <NAME> (ed.) Recommended Methods of Manure Analysis. University of Wisconsin System.', N'Estimated Soluble Salts (ECe)')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (805, N'Water', N'# pH
## Summary
This method determines the pH of water using a pH electrode. Values are reported to the nearest 0.10 pH unit.
Sample amount requested: 25 mL
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
Method 4500-H+ (pH Value) in Standard Methods for the Examination of Water and Wastewater, 20th Edition. <NAME>., <NAME>. and <NAME>., eds.; American Public Health Association; Washington D.C., 1998; pp. 4-86 - 4-91.', N'pH')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (810, N'Water', N'# Turbidity
## Summary
Turbidity in water is caused by suspended and colloidal matter and is an expression of the optical property that causes light to be scattered and absorbed rather than transmitted. This method uses a nephelometer to measure turbidity. A nephelometer is a turbidimeter with a scattered-light detector at a 90° angle to the incident beam. Possible interferences with this method include floating debris and coarse sediment which settle out rapidly. Highly colored samples can give artificially low turbidity values. The method has a detection limit of 0.1 NTU.
<NAME>., <NAME> and <NAME>. 1998. Method 2130 B. (Turbidity-Nephelometric Method). Standard Methods for the Examination of Water and Wastewater, 20th Edition.', N'Turbidity')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (815, N'Water', N'# EC
## Summary
This method estimates the amounts of soluble salts in the water by measuring the electrical conductivity (EC~e~) of the water sample. The higher the concentration of salt in a solution, the higher the electrical conductance (the reciprocal of resistance). Electrical conductivity is a function of quantity and specific types of cations and anions in the water. The method has a detection limit of 0.01 dS/m.
Sample amount requested: 25 mL
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
Method 2510 (Conductivity) in Standard Methods for the Examination of Water and Wastewater 20th Edition. <NAME>., <NAME>. and <NAME>., eds. American Public Health Association; Washington D.C.; 1998; pp. 2-24 - 2-47.', N'Estimated Soluble Salts By Electrical Conductivity')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (820, N'Water', N'# Alkalinity, HCO~3~, CO~3~
## Summary
This method measures bicarbonate (HCO~3~^-^), carbonate (CO~3~^2-^) and alkalinity levels in water. Quantitation is by titration with 0.025 N H~2~SO~4~. The method has a routine detection limit of 0.1 meq/L but is capable of a method detection limit for alkalinity of 0.04 meq/L (2 mg CaCO~3~/L) if requested by client.
Sample must be refrigerated. Sample should not be filtered or acidified.
Sample amount requested: 50 mL
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
Method 2320 (Alkalinity) in Standard Methods for the Examination of Water and Wastewater, 20th Edition. <NAME>., <NAME>. <NAME>., and <NAME>., eds. American Public Health Association; Washington DC; 1998. pp.2-26 - 2-29.', N'Alkalinity, Bicarbonate And Carbonate')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (822, N'Water', N'## Summary
This method quantitatively determines the amount of total carbon and inorganic carbon in liquid samples. For total carbon, the liquid sample is injected by means of the integrated autosampler into the high temperature combustion reactor with an oxidative catalyst. In this reactor, at the temperature of 850ºC all organic and inorganic carbon is oxidized into the gaseous carbon dioxide (CO~2~). The catalyst that is present in the reactor catalyzes the oxidation to completion. The carbon dioxide is measured at 4.2 um by infrared (IR) detection. For inorganic carbon, a second injection of the sample is made into the low temperature liquid reactor. In an acid medium and at room temperature, all inorganic carbon is oxidized to the gaseous carbon dioxide. The flow of oxygen transports the carbon dioxide to the IR detector to be measured. The method has a detection limit of 0.5 mg/L.
Sample Amount Requested: 50 mL
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
American Society for Testing and Materials (ASTM International) Standards. Standard Test Method for Total Carbon, Inorganic Carbon, and Organic Carbon in Water by Ultraviolet, Persulfate Oxidation, and Membrane Conductivity Detection. Designation D 5904 – 02.', N'Total Carbon and Inorganic Carbon')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (830, N'Water', N'# Solubles: Cl
## Summary
This method quantifies the amount of Cl in a water sample. Thiocyanate ion is liberated from mercuric thiocyanate by the formation of soluble mercuric chloride. In the presence of ferric ion, free thiocyanate ion forms the highly colored ferric thiocyanate, of which the absorbance is proportional to the chloride concentration. The absorbance of the ferric thiocyanate is read at 480 nm. The method has a detection limit of 0.1 meq L^-1^ Cl and is generally reproducible within 5%.
<NAME>. 1994. Determination of Chloride by Flow Injection Analysis Colorimetry. QuikChem Method 10-117-07-1-B. Lachat Instruments, Milwaukee, WI.', N'Chloride - Flow Injection Analyzer Method')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (835, N'Water', N'# Solubles: Al, B, Ca, Cd, Cr, Cu, Fe, K, Mg, Mn, Mo, Na, Ni, P, Pb, S, Si, Zn (Other elements are available. Contact the lab.)
Quantitative determination by ICP-AES.
## Summary
This method quantitatively determines the concentration of the listed elements in water samples by Inductively Coupled Plasma Atomic Emission Spectrometry (ICP-AES). Contact the lab if lower detection limits or elements not listed in the table are needed. Difficult matrices may result in higher MDLs than those listed.
|Element MDL|(mg/L)|
|-----------|------|
|Al|0.05|
|B|0.01|
|Ca*|0.1|
|Cd|0.005|
|Cr|0.005|
|Cu|0.010|
|Fe|0.010|
|K|0.05|
|Mg*|0.1|
|Mn|0.005|
|Mo|0.005|
|Na*|0.1|
|Ni|0.005|
|P|0.05|
|Pb|0.010|
|S**|0.1|
|Si|0.01|
|Zn|0.005|
<br />
\* Note: Ca, Mg and Na are reported in meq/L units unless mg/L units are requested on the work request form. To convert results in meq/L units to mg/L units multiply Ca results by 20, Mg results by 12.15 and Na results by 23.
** Note: Sulfur is reported as SO~4~-S (soluble S) assuming that all sulfur present is in the sulfate form. If sulfate is of specific interest, the ion chromatographic method (SOP 880) should be requested.
The EPA recommends that water for soluble analytes be filtered and acidified at the time of collection. Samples should be filtered through 0.45 uM filters and acidified to pH < 2 with 1+1 HNO~3~ as soon after collection as possible. If other analyses such as pH, EC, nitrate, etc. are required, a second work request form must be used for the non-treated samples. Samples submitted without the noted preservation will be tested as received unless in-lab filtration and/or acidification are requested on the work request form.
Sample amount requested: 50 mL (for any single test and for most combinations of tests)
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
U.S. EPA Method 200.7, Trace Elements in Water, Solids, and Biosolids by Inductively Coupled Plasma-Atomic Emission Spectrometry', N'Soluble Elements')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (837, N'Water', N'# By Special Request
## Summary
This method quantitatively measures the concentration of copper in water samples by Graphite Furnace Atomic Absorption Spectrometry (GFAAS). The method has a detection limit of approximately 0.1 ug/L for copper.
Samples should be refrigerated and acidified until delivery to the lab.
Sample amount requested: 10 mL
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
<NAME>. and <NAME>. 1995. The determination of Cr, Cu and Mn in seawater with transversely heated graphite furnace atomic absorption spectrometry. Spectrochimica Acta Part B 50 (1195) 1703-1716.
<NAME>, The THGA Graphite Furnace Techniques and Recommended Conditions Manual.', N'Copper In Water By Graphite Furnace')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (840, N'Water', N'# SAR, ESP
## Summary
It is possible to estimate the sodium adsorption ratio (SAR) and exchangeable sodium percentage (ESP) after determining Ca, Mg and Na concentrations in water (SOP# 835). The method has a detection limit of 0.1 for SAR and 1% for ESP.
U.S. Salinity Laboratory Staff. 1954. Choice of determinations and interpretation of data. pp. 25-26. In: <NAME> (ed.) Diagnosis and improvement of saline and alkali soils. USDA Agricultural Handbook 60. U.S. Government Printing Office, Washington, D.C.', N'Sodium Adsorption Ratio (SAR) And Exchangeable Sodium Percentage (ESP)')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (845, N'Water', N'# NO~3~-N, NH~4~-N
## Summary
This method involves the quantitative analysis of ammonium (NH~4~-N) and nitrate (NO~3~-N) in water. Ammonium and nitrate are measured by the diffusion-conductivity method based on the gaseous diffusing of ammonia (NH~3~) across a gas permeable membrane in the presence of excess base (KOH) and subsequent conductivity detection. Samples can be stored for up to three weeks at low temperature (<4°C). For longer term storage, toluene or thymol should be added to the sample to prevent microbial growth. The method has detection limit of approximately 0.05 mg L^-1^ and is generally reproducible within 7%.
NOTE: In general, SOP 847 is followed for nitrate and ammonium testing. (SOP 845 may be used for difficult matrices.)
<NAME>. 1978. Automated separation and conductimetric determination of ammonia and dissolved carbon dioxide. Anal. Chem. 50:1528-1531.', N'Nitrate And Ammonium - Diffusion-Conductivity Analyzer Method')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (847, N'Water', N'# NO~3~-N, NH~4~-N, NO~2~-N
## Summary
This method involves the quantitative analysis of ammonium (NH~4~-N), nitrate (NO~3~-N) and nitrite (NO~2~-N) in water. Nitrate is determined by reduction to nitrite via a copperized cadmium column. The nitrite is then determined by diazotizing with sulfanilamide followed by coupling with N-(1-naphthyl)ethlyenediaminie dihydrochloride. The absorbance of the product is measured at 520 nm. Nitrite is determined in the same manner with the cadmium column off-line. Ammonia determined by heating with salicylate and hypochlorite in an alkaline phosphate buffer. The presence of EDTA prevents precipitation of calcium and magnesium. Sodium nitroprusside is added to enhance sensitivity. The absorbance of the reaction product is measured at 660 nm and is directly proportional to the original ammonia concentration. The method has detection limits of approximately 0.05 mg/L for all analytes.
Note that the nitrate values reported include any nitrite in the sample. Nitrite is typically an insignificant fraction of the nitrate.
Sample amount requested: 20 mL for Nitrate and/or Ammonium; 20 mL for Nitrite
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
<NAME>. 2003. Determination of Ammonia (Salicylate) in 2M KCl soil extracts by Flow Injection Analysis. QuikChem Method 12-107-06-2-A. Lachat Instruments, Loveland, CO.
<NAME>. 2003. Determination of Nitrate in 2M KCl soil extracts by Flow Injection Analysis. QuikChem Method 12-107-04-1-B. Lachat Instruments, Loveland, CO.
Method 4500-NO3 I. Cadmium Reduction Flow Injection Method (Proposed) in Standard Methods for the Examination of Water and Wastewater, 20th Edition. <NAME>.; <NAME>.; and <NAME>.; eds. American Public Health Association; Washington DC; 1998. pp. 4-121 - 4-122.
Method 4500-NH3 H. Flow Injection Analysis (PROPOSED) in Standard Methods for the Examination of Water and Wastewater, 20th Edition. Clesc<NAME>.; <NAME>.; and <NAME>.; eds. American Public Health Association; Washington DC; 1998. pp. 4-111 – 4-112.', N'Nitrate, Nitrite And Ammonium - Flow Injection Analyzer Method')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (848, N'Water', N'# By Special Request
## Summary
This method involves the quantitation of ammonium (NH~4~-N) in water and waste water. Samples are pH adjusted to pH >9.5, steam distilled into dilute sulfuric acid and analyzed by flow injection analysis (FIA). Ammonium concentration is determined by FIA using the color reaction of NH~4~ with salicylate, nitroprusside and hypochlorite in an alkaline phosphate buffer. The absorbance of the reaction product is measured at 660 nm. The method has a detection limit of approximately 0.5 mg/L and is generally reproducible within 8%.
Sample amount requested: at least 250 mL
Samples should be frozen or refrigerated until delivered to the lab. Acidification with sulfuric acid to pH < 2 can be used as a preservative.
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
U.S EPA, 1999. Method 1690, Ammonia-N in Water and Biosolids by Automated Colorimetry with Preliminary Distillation.
<NAME>. 1999. Determination of Ammonia by Flow Injection analysis. QuikChem Method 10-107-06-1-A. Lachat Instruments, Milwaukee, WI.', N'Ammonium - Distillation Method')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (850, N'Water', N'# TKN
## Summary
The Total Kjeldahl Nitrogen (TKN) method is based on the wet oxidation of nitrogen using sulfuric acid and digestion catalyst. The procedure converts organic nitrogen to the ammonium form. Ammonium is subsequently quantitated by the diffusion-conductivity technique. The procedure does not quantitatively digest nitrogen from heterocyclic forms (bound in a carbon ring) or from oxidized forms such as nitrate and nitrite. The method has a detection limit of approximately 0.1mg/L N.
Sample amount requested: 50 mL
Samples should be kept under refrigeration until analysis can be completed.
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
<NAME>. 1986. Continuous flow reduction of nitrate to ammonia with granular zinc. Anal. Chem. 58:1590-1591.', N'Total Kjeldahl Nitrogen - TKN')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (855, N'Water', N'## Summary
This method quantitatively determines the total amount of nitrogen in liquid samples. The sample is injected by an autosampler into a high temperature (850ºC) combustion reactor with an oxidative catalyst, converting all forms of nitrogen to nitric oxide (NO). The NO is quantitated with a chemiluminescent detector. Samples should be homogeneous with particles smaller than 0.45 um. The method has a detection limit of 0.1 mg/L.
Sample amount requested: 50 mL
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
Sample storage: samples should be stored at less than 6ºC.
American Society for Testing and Materials (ASTM International) Standards. Standard Test Method for Total Chemically Bound Nitrogen in Water by Pyrolysis and Chemiluminescence Detection. Designation D 5176 – 91 (Reapproved 2003).', N'Total Nitrogen - Combustion Method')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (865, N'Water', N'# PO~4~-P
## Summary
This method quantitatively determines the amount of PO~4~-P in water. Orthophosphate concentration in water is determined spectrophotometrically by reacting with ammonium molybdate and antimony potassium tartrate under acidic conditions to form a complex. This complex is reduced with ascorbic acid to form a blue complex which absorbs light at 880 nm. The absorbance is proportional to the concentration of phosphorus in the sample. Samples are analyzed using an automated Flow Injection Analyzer (Lachat). The method has a detection limit of 0.05 mg/L.
Sample amount requested: 10 mL
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
Method 4500-P G (Flow Injection Analysis for Orthophosphate) in Standard Methods for the Examination of Water and Wastewater, 20th Edition. <NAME>.; <NAME>.; and <NAME>.; eds. American Public Health Association; Washington DC; 1998. pp. 4-149 - 4-150.', N'Soluble Phosphorous In Water')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (870, N'Water', N'## TS, TSS, TDS, VSS
# Summary
This method quantifies solids in water or wastewater samples using gravimetric analysis following oven drying. Solids refer to matter suspended or dissolved in the water or wastewater and may affect water or effluent quality in adverse ways. Waters with high dissolved solids generally are of inferior palatability and may induce unfavorable physiological reactions in transient consumers. Solids analyses are important in the control of biological and physical wastewater treatment processes and for assessing compliance with regulatory agency limitations. The method has a detection limit of approximately 4 mg/L for TSS and 10 mg/L for TDS, TS and VSS. The results are generally reproducible within 10%.
Sample should be kept under refrigeration until analysis can be completed.
Sample amount requested for TS: 500 mL
Sample amount requested for TDS and/or TSS and/or VSS: 500 mL
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
Method 2540 B. (Total Solids Dried at 103-105ºC), Method 2540 C. (Total Dissolved Solids Dried at 180ºC), Method 2540 D. (Total Suspended Solids Dried at 103-105ºC) and Method 2540 E. (Fixed and Volatile Solids Ignited at 550ºC) in Standard Methods for the Examination of Water and Wastewater, 20th Edition. <NAME>.; <NAME>.; and <NAME>.; eds. American Public Health Association; WashingtonDC; 1998. pp. 2-55 – 59.', N'Total Solids, Total Suspended Solids, Total Dissolved Solids, Volatile Suspended Solids')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (875, N'Water', N'## Hardness
# Summary
It is possible to calculate the hardness of a water sample after determining Ca and Mg concentrations in water (SOP# 835). The method has a detection limit of 1 mg/L as CaCO~3~.
Method 314A (Hardness by Calculation) in Standard Methods for the Examination of Water and Wastewater, 16th Edition. <NAME>.; <NAME>.; <NAME>.; eds. American Public Health Association; Washington DC; 1985. p. 209.', N'Hardness')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (880, N'Water', N'## SO~4~, CL
# Summary
This method quantitatively measures the concentration of sulfate and chloride in water samples by Ion Chromatography (IC). The method has detection limits of approximately 0.5 mg/L for sulfate and chloride.
Sample amount requested: 5 mL
Samples should be refrigerated until delivery to the lab.
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
U.S. EPA Method 300.0, Determination of Inorganic Anions by Ion Chromatography, Revision 2.1, 1993.', N'Anions By Ion Chromatography')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (890, N'Water', N'## Water Totals: P, K, S, Ca, Mg, Na, B, Zn, Mn, Fe, Cu, Al, Cd, Cr, Pb, Mo, Ni
# Summary
This method quantitatively determines the concentration of P, S, Ca, Mg, K, Na, B, Zn, Mn, Fe, Cu, Mo and a variety of other elements utilizing a nitric acid/hydrogen peroxide microwave digestion and determination by atomic absorption spectrometry (AAS) and Inductively Coupled Plasma Atomic Emission Spectrometry (ICP-AES). The methodology utilizes a pressure digestion/dissolution of the sample and is incomplete relative to the total oxidation of organic carbon. K, Na, Zn, Cu, Mn, and Fe are analyzed by AAS and all others are analyzed by ICP-AES with vacuum spectrometer. The method has detection limits ranging from 0.1 mg/Kg to 0.01%. The method is generally reproducible within 8% for all analytes.
<NAME>. and <NAME>. 1992. Spontaneous reaction for acid dissolution of biological tissues in closed vessels. Anal. Chem. 64:230-233.
<NAME>. and <NAME>. 1992. An overview of analysis by inductively coupled plasma-atomic emission spectrometry. p. 473-516. In: A. Montaser and D.W. Golightly (ed.) Inductively coupled plasmas in analytical atomic spectrometry. VCH Publishers Inc. New York, NY.', N'Total Elements (Includes Phosphorus, Sulfur, Potassium, Calcium, Magnesium, Sodium, Boron, Zinc, Manganese, Iron, Copper And Molybdenum)')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (891, N'Water', N'## By Special Request
# Summary
This method quantitatively measures the concentration of total copper in water samples by Graphite Furnace Atomic Absorption Spectrometry (GFAAS). The method has a detection limit of approximately 0.5 ug/L for copper.
Sample amount requested: 100 mL
Samples should be acidified and refrigerated until delivery to the lab.
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
<NAME>. and <NAME>. 1995. The determination of Cr, Cu and Mn in seawater with transversely heated graphite furnace atomic absorption spectrometry. Spectrochimica Acta Part B 50 (1195) 1703-1716.
U.S. EPA Method 200.7, Trace Elements in Water, Solids, and Biosolids by Inductively Coupled Plasma-Atomic Emission Spectrometry.', N'Total Copper In Water By Graphite Furnace')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (894, N'Water', N'## Totals: Se
# Summary
This method is quantitative for selenium. Samples are digested using perchloric and sulfuric acids and reduced using hydrochloric acid (selenate to selenite (IV)). Determination is by vapor generation Inductively-Coupled Plasma Emission Spectrometer (ICP-AES). The method has a detection limit of 0.5 ug/L.
Sample amount requested: 40 mL
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
<NAME>. and <NAME>. 1990. Continuous flow vapor generation for inductively coupled argon plasma spectrometric analysis. Part 1: Selenium. J. Assoc. Off. Anal. Chem. 73:404-410.', N'Selenium')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (896, N'Water', N'## Totals: (Complete Digestion) As
# Summary
This method is quantitative for arsenic. Samples are digested using perchloric and sulfuric acids and reduced using hydrochloric acid (arsenate to arsenite). Determination is by vapor generation Inductively-Coupled Plasma Emission Spectrometer (ICP-AES). The method has a detection limit of 0.5 ug/L.
Sample amount requested: 40 mL
Questions concerning limited sample size can be answered by the UC Davis Analytical Laboratory.
<NAME>. and <NAME>. 1990. Continuous flow vapor generation for inductively coupled argon plasma spectrometric analysis. Part 2: Arsenic. J. Assoc. Off. Anal. Chem. 74:516-521.', N'Arsenic')
GO
INSERT [dbo].[AnalysisMethods] ([Id], [Category], [Content], [Title]) VALUES (898, N'Water', N'## Totals: Hg
# Summary
This method is quantitative for mercury utilizing nitric acid and potassium permanganate digestion, and determination by Vapor Generation Inductively-Coupled Plasma Emission Spectrometer (VG-ICP). The method has a detection limit of approximately 2 ug/L.
Sample amount requested: 30 mL
Questions concerning limited sample size can be answered by the UC Davis Analytical laboratory.
<NAME>. January 26, 2000. Mercury Quantitation by Hydride Generation ICP. CAHFS Toxicology Laboratory Standard Operating Procedure. HGVICP ver 04.', N'Mercury')
GO
|
<reponame>olegon/online-judges
/*
Select Básico
https://www.urionlinejudge.com.br/judge/pt/problems/view/2602
*/
select
name
from customers
where state = 'RS';
|
-- file:updatable_views.sql ln:1235 expect:true
insert into uv_iocu_view (aa) values (1)
on conflict (aa) do update set bb = 'Rejected: '||excluded.*
|
<reponame>firelab/viirs_ba
-- Functions to rasterize a polygon table, given a raster table to
-- which the result should be aligned, optionally filtering by the
-- geometry objects in a third table. This function produces a
-- new table called "schema".fire_events_raster and populates it
-- with the result.
-- The operation assumes that the input geometry is a table containing
-- viirs fire events, which may be a mixture of 375m and 750m pixels.
-- The code in this file assumes that rasterization occurs in three phases:
-- 1] Rasterization of the 375m pixels in a newly created table, aligned to
-- the specified raster (assumed to be defined at 375m resolution).
-- 2] Rasterization of the 750m pixels in a new column in the above table, where
-- the same row covers the same extent but in two different resolutions.
-- 3] Merging the output of the above two operations by performing a logical OR,
-- storing the results into a third column.
--
-- "schema"."tbl" : the geometry table to rasterize.
-- "gt_schema"."rast_table" : the raster table to which the result should be aligned
-- "gt_schema"."geom_table" : the table containing "ground truth" by which the
-- input geometry is filtered.
-- distance : the maximum distance a candidate geometry may be from
-- : a geometry in "gt_schema"."geom_table". Pass -1 to turn
-- : filtering off.
--
CREATE OR REPLACE FUNCTION viirs_rasterize_375(schema text, tbl text,
gt_schema text,
rast_table text,
geom_table text,
distance float)
RETURNS void AS
$BODY$
DECLARE
dist_clause text ;
filter_tbl text ;
BEGIN
EXECUTE 'DROP TABLE IF EXISTS ' || quote_ident(schema) || '.fire_events_raster' ;
IF distance <> -1 THEN
dist_clause := 'ST_DWithin(a.geom_nlcd, c.geom, $1) AND ' ||
'ST_Intersects(c.geom, b.rast) AND ' ;
filter_tbl := ', '||quote_ident(gt_schema)||'.'||quote_ident(geom_table)||' c ' ;
ELSE
dist_clause := ' ' ;
filter_tbl := ' ' ;
END IF ;
EXECUTE 'CREATE TABLE ' || quote_ident(schema) || '.fire_events_raster AS ' ||
'SELECT b.rid, ' ||
'ST_MapAlgebra(' ||
'ST_Union(ST_AsRaster(geom_nlcd, b.rast, ' || quote_literal('8BUI') ||')), '
'ST_AddBand(ST_MakeEmptyRaster(b.rast), ' || quote_literal('8BUI') || '::text), ' ||
quote_literal('[rast1]') || ', ' ||
quote_literal('8BUI') || ', ' ||
quote_literal('SECOND') || ') rast_375 ' ||
'FROM ' || quote_ident(schema)||'.'||quote_ident(tbl)|| ' a, ' ||
quote_ident(gt_schema) || '.' || quote_ident(rast_table) || ' b ' ||
filter_tbl ||
'WHERE ST_Intersects(a.geom_nlcd, b.rast) AND ' ||
dist_clause ||
'pixel_size = 375 ' ||
'GROUP BY b.rid, b.rast' USING distance;
EXECUTE 'UPDATE ' || quote_ident(schema) || '.fire_events_raster ' ||
'SET rast_375 = ST_SetBandNoDataValue(rast_375, 3.)' ;
END
$BODY$
LANGUAGE plpgsql VOLATILE
COST 100 ;
ALTER FUNCTION viirs_rasterize_375(schema text, tbl text, gt_schema text,
rast_table text, geom_table text, distance float)
OWNER to postgres ;
CREATE OR REPLACE FUNCTION viirs_rasterize_750(schema text, tbl text,
gt_schema text,
rast_table text,
geom_table text,
distance float)
RETURNS void AS
$BODY$
DECLARE
dist_clause text ;
filter_tbl text ;
BEGIN
EXECUTE 'ALTER TABLE ' || quote_ident(schema) || '.fire_events_raster ' ||
'DROP COLUMN IF EXISTS rast_750' ;
EXECUTE 'ALTER TABLE ' || quote_ident(schema) || '.fire_events_raster ' ||
'ADD COLUMN rast_750 raster' ;
DISCARD TEMP ;
CREATE TEMPORARY TABLE newrasters (rid integer, rast_750 raster) ;
IF distance <> -1 THEN
dist_clause := 'ST_DWithin(a.geom_nlcd, c.geom, $1) AND ' ||
'ST_Intersects(c.geom, b.rast) AND ' ;
filter_tbl := quote_ident(gt_schema)||'.'||quote_ident(geom_table)||' c, ' ;
ELSE
dist_clause := ' ' ;
filter_tbl := ' ' ;
END IF ;
EXECUTE 'INSERT INTO newrasters ' ||
'SELECT b.rid, ST_MapAlgebra(' ||
'ST_Union(ST_AsRaster(a.geom_nlcd, empty_rast_750.rast, '||
quote_literal('8BUI') || ')), empty_rast_750.rast, ' ||
quote_literal('[rast1]') || ', ' ||
quote_literal('8BUI') || ', ' ||
quote_literal('SECOND') || ') as rast_750 ' ||
'FROM ' || quote_ident(schema)||'.'||quote_ident(tbl)||' a, ' ||
quote_ident(gt_schema) || '.' || quote_ident(rast_table) || ' b, ' ||
filter_tbl ||
'(SELECT rid, ' ||
'St_SetSRID(ST_AddBand(ST_MakeEmptyRaster(ST_Width(rast)/2, ' ||
'ST_Height(rast)/2, ' ||
'ST_UpperLeftX(rast), ' ||
'ST_UpperLeftY(rast), 750), ' ||
quote_literal('8BUI')||'::text), ST_SRID(rast)) as rast ' ||
'FROM ' || quote_ident(gt_schema)||'.'||quote_ident(rast_table)||') empty_rast_750 ' ||
'WHERE ST_Intersects(a.geom_nlcd, b.rast) AND ' ||
dist_clause ||
'b.rid = empty_rast_750.rid AND ' ||
'pixel_size = 750 ' ||
'GROUP BY b.rid, empty_rast_750.rast ' USING distance;
EXECUTE 'LOCK TABLE ' || quote_ident(schema) || '.fire_events_raster ' ||
'IN EXCLUSIVE MODE' ;
EXECUTE 'UPDATE ' || quote_ident(schema) || '.fire_events_raster me '
'SET rast_750 = newrasters.rast_750 ' ||
'FROM newrasters ' ||
'WHERE newrasters.rid = me.rid' ;
EXECUTE 'INSERT INTO ' || quote_ident(schema) || '.fire_events_raster ' ||
'(rid, rast_750) ' ||
'SELECT newrasters.rid, newrasters.rast_750 ' ||
'FROM newrasters ' ||
'LEFT OUTER JOIN ' || quote_ident(schema) || '.fire_events_raster me ' ||
'ON (newrasters.rid = me.rid) ' ||
'WHERE me.rid IS NULL' ;
EXECUTE 'UPDATE ' || quote_ident(schema) || '.fire_events_raster ' ||
'SET rast_750 = ST_SetBandNoDataValue(rast_750, 3.) ' ||
'WHERE rast_750 IS NOT NULL' ;
END
$BODY$
LANGUAGE plpgsql VOLATILE
COST 100 ;
ALTER FUNCTION viirs_rasterize_750(schema text, tbl text,
gt_schema text, rast_table text, geom_table text, distance float)
OWNER to postgres ;
CREATE OR REPLACE FUNCTION viirs_rasterize_merge(schema text, col text)
RETURNS void AS
$BODY$
BEGIN
EXECUTE 'ALTER TABLE ' || quote_ident(schema) || '.fire_events_raster ' ||
'DROP COLUMN IF EXISTS ' || quote_ident(col) ;
EXECUTE 'ALTER TABLE ' || quote_ident(schema) || '.fire_events_raster ' ||
'ADD COLUMN ' || quote_ident(col) || ' raster' ;
EXECUTE 'UPDATE ' || quote_ident(schema) || '.fire_events_raster '||
'SET ' || quote_ident(col) || '=rast_375 ' ||
'WHERE rast_375 IS NOT NULL and rast_750 IS NULL';
EXECUTE 'UPDATE ' || quote_ident(schema) || '.fire_events_raster ' ||
'SET ' || quote_ident(col) || '=ST_Rescale(rast_750, 375., -375) ' ||
'WHERE rast_375 IS NULL and rast_750 IS NOT NULL' ;
EXECUTE 'UPDATE ' || quote_ident(schema) || '.fire_events_raster ' ||
'SET ' || quote_ident(col) || '=ST_SetBandNoDataValue(' ||
'ST_MapAlgebra(rast_375, ST_Rescale(rast_750,375.,-375.), ' ||
quote_literal('(([rast1]=1) OR ([rast2]=1))::int') ||', '||
quote_literal('8BUI') ||','||
quote_literal('FIRST') || '), 3.) ' ||
'WHERE rast_375 IS NOT NULL and rast_750 IS NOT NULL' ;
END
$BODY$
LANGUAGE plpgsql VOLATILE
COST 100 ;
ALTER FUNCTION viirs_rasterize_merge(schema text, col text)
OWNER to postgres ;
--
-- viirs_rasterize_filter masks the merged raster. The mask to apply to
-- the raster is specified by the mask_schema and mask_tbl parameters.
-- The data to mask is specified by rast_schema and rast_col (the table
-- name "fire_events_raster" is assumed.)
--
-- Masked data is put in the "rast" column.
--
CREATE OR REPLACE FUNCTION viirs_rasterize_filter(
rast_schema text, rast_col text,
mask_schema text, mask_tbl text)
RETURNS void AS
$BODY$
BEGIN
EXECUTE 'ALTER TABLE ' || quote_ident(rast_schema) || '.fire_events_raster ' ||
'DROP COLUMN IF EXISTS rast' ;
EXECUTE 'ALTER TABLE ' || quote_ident(rast_schema) || '.fire_events_raster ' ||
'ADD COLUMN rast raster' ;
EXECUTE 'WITH mask AS (' ||
'SELECT a.rid, ST_Union(' ||
'ST_MapAlgebra(a.' || quote_ident(rast_col) || ',b.rast,' ||
quote_literal('([rast1]=1 AND [rast2]=1)::int') || '),' ||
quote_literal('MAX') || ') as rast ' ||
'FROM ' || quote_ident(rast_schema) ||
'.fire_events_raster a, ' ||
quote_ident(mask_schema) || '.' ||
quote_ident(mask_tbl) || ' b ' ||
'WHERE ST_Contains(a.' || quote_ident(rast_col)|| ',b.rast) ' ||
'GROUP BY a.rid) ' ||
'UPDATE ' || quote_ident(rast_schema)||'.fire_events_raster a ' ||
'SET rast = mask.rast ' ||
'FROM mask ' ||
'WHERE a.rid=mask.rid' ;
END
$BODY$
LANGUAGE plpgsql VOLATILE
COST 100 ;
ALTER FUNCTION viirs_rasterize_filter(schema text, col text,
gt_schema text, mask_tbl text)
OWNER to postgres ;
CREATE OR REPLACE FUNCTION viirs_rasterize_375_mindoy(schema text, tbl text,
gt_schema text,
rast_table text,
geom_table text,
distance float)
RETURNS void AS
$BODY$
DECLARE
dist_clause text ;
filter_tbl text ;
BEGIN
EXECUTE 'DROP TABLE IF EXISTS ' || quote_ident(schema) || '.fire_events_raster' ;
IF distance <> -1 THEN
dist_clause := 'ST_DWithin(a.geom_nlcd, c.geom, $1) AND ' ||
'ST_Intersects(c.geom, b.rast) AND ' ;
filter_tbl := ', '||quote_ident(gt_schema)||'.'||quote_ident(geom_table)||' c ' ;
ELSE
dist_clause := ' ' ;
filter_tbl := ' ' ;
END IF ;
EXECUTE 'CREATE TABLE ' || quote_ident(schema) || '.fire_events_raster AS ' ||
'SELECT b.rid, ' ||
'ST_MapAlgebra(' ||
'ST_Union(ST_AsRaster(geom_nlcd, b.rast, ' || quote_literal('16BUI') || ', ' ||
'EXTRACT(DOY FROM a.collection_date), 367), ' ||
quote_literal('MIN') || '), ' ||
'ST_AddBand(ST_MakeEmptyRaster(b.rast), ' || quote_literal('16BUI') || '::text), ' ||
quote_literal('[rast1]') || ', ' ||
quote_literal('16BUI') || ', ' ||
quote_literal('SECOND') || ', ' ||
quote_literal('367') || ', ' ||
quote_literal('[rast1]') || ', ' ||
quote_literal('367') || ') rast_375_doy ' ||
'FROM ' || quote_ident(schema)||'.'||quote_ident(tbl)|| ' a, ' ||
quote_ident(gt_schema) || '.' || quote_ident(rast_table) || ' b ' ||
filter_tbl ||
'WHERE ST_Intersects(a.geom_nlcd, b.rast) AND ' ||
dist_clause ||
'pixel_size = 375 ' ||
'GROUP BY b.rid, b.rast' USING distance;
EXECUTE 'UPDATE ' || quote_ident(schema) || '.fire_events_raster ' ||
'SET rast_375_doy = ST_SetBandNoDataValue(rast_375_doy, 367.)' ;
END
$BODY$
LANGUAGE plpgsql VOLATILE
COST 100 ;
ALTER FUNCTION viirs_rasterize_375_mindoy(schema text, tbl text, gt_schema text,
rast_table text, geom_table text, distance float)
OWNER to postgres ;
CREATE OR REPLACE FUNCTION viirs_rasterize_750_mindoy(schema text, tbl text,
gt_schema text,
rast_table text,
geom_table text,
distance float)
RETURNS void AS
$BODY$
DECLARE
dist_clause text ;
filter_tbl text ;
BEGIN
EXECUTE 'ALTER TABLE ' || quote_ident(schema) || '.fire_events_raster ' ||
'DROP COLUMN IF EXISTS rast_750_doy' ;
EXECUTE 'ALTER TABLE ' || quote_ident(schema) || '.fire_events_raster ' ||
'ADD COLUMN rast_750_doy raster' ;
DISCARD TEMP ;
CREATE TEMPORARY TABLE newrasters (rid integer, rast_750_doy raster) ;
IF distance <> -1 THEN
dist_clause := 'ST_DWithin(a.geom_nlcd, c.geom, $1) AND ' ||
'ST_Intersects(c.geom, b.rast) AND ' ;
filter_tbl := quote_ident(gt_schema)||'.'||quote_ident(geom_table)||' c, ' ;
ELSE
dist_clause := ' ' ;
filter_tbl := ' ' ;
END IF ;
EXECUTE 'INSERT INTO newrasters ' ||
'SELECT b.rid, ST_MapAlgebra(' ||
'ST_Union(ST_AsRaster(a.geom_nlcd, empty_rast_750.rast, '||
quote_literal('16BUI') || ', ' ||
'EXTRACT(DOY FROM a.collection_date), 367), ' ||
quote_literal('MIN') || '), empty_rast_750.rast, ' ||
quote_literal('[rast1]') || ', ' ||
quote_literal('16BUI') || ', ' ||
quote_literal('SECOND') || ', ' ||
quote_literal('367') || ', ' ||
quote_literal('[rast1]') || ', ' ||
quote_literal('367') || ') rast_750_doy ' ||
'FROM ' || quote_ident(schema)||'.'||quote_ident(tbl)||' a, ' ||
quote_ident(gt_schema) || '.' || quote_ident(rast_table) || ' b, ' ||
filter_tbl ||
'(SELECT rid, ' ||
'St_SetSRID(ST_AddBand(ST_MakeEmptyRaster(ST_Width(rast)/2, ' ||
'ST_Height(rast)/2, ' ||
'ST_UpperLeftX(rast), ' ||
'ST_UpperLeftY(rast), 750), ' ||
quote_literal('8BUI')||'::text), ST_SRID(rast)) as rast ' ||
'FROM ' || quote_ident(gt_schema)||'.'||quote_ident(rast_table)||') empty_rast_750 ' ||
'WHERE ST_Intersects(a.geom_nlcd, b.rast) AND ' ||
dist_clause ||
'b.rid = empty_rast_750.rid AND ' ||
'pixel_size = 750 ' ||
'GROUP BY b.rid, empty_rast_750.rast ' USING distance;
EXECUTE 'LOCK TABLE ' || quote_ident(schema) || '.fire_events_raster ' ||
'IN EXCLUSIVE MODE' ;
EXECUTE 'UPDATE ' || quote_ident(schema) || '.fire_events_raster me '
'SET rast_750_doy = newrasters.rast_750_doy ' ||
'FROM newrasters ' ||
'WHERE newrasters.rid = me.rid' ;
EXECUTE 'INSERT INTO ' || quote_ident(schema) || '.fire_events_raster ' ||
'(rid, rast_750_doy) ' ||
'SELECT newrasters.rid, newrasters.rast_750_doy ' ||
'FROM newrasters ' ||
'LEFT OUTER JOIN ' || quote_ident(schema) || '.fire_events_raster me ' ||
'ON (newrasters.rid = me.rid) ' ||
'WHERE me.rid IS NULL' ;
EXECUTE 'UPDATE ' || quote_ident(schema) || '.fire_events_raster ' ||
'SET rast_750_doy = ST_SetBandNoDataValue(rast_750_doy, 367.) ' ||
'WHERE rast_750_doy IS NOT NULL' ;
END
$BODY$
LANGUAGE plpgsql VOLATILE
COST 100 ;
ALTER FUNCTION viirs_rasterize_750_mindoy(schema text, tbl text,
gt_schema text, rast_table text, geom_table text, distance float)
OWNER to postgres ;
CREATE OR REPLACE FUNCTION viirs_rasterize_merge_doy(schema text, col text)
RETURNS void AS
$BODY$
BEGIN
EXECUTE 'ALTER TABLE ' || quote_ident(schema) || '.fire_events_raster ' ||
'DROP COLUMN IF EXISTS ' || quote_ident(col) ;
EXECUTE 'ALTER TABLE ' || quote_ident(schema) || '.fire_events_raster ' ||
'ADD COLUMN ' || quote_ident(col) || ' raster' ;
EXECUTE 'UPDATE ' || quote_ident(schema) || '.fire_events_raster '||
'SET ' || quote_ident(col) || '=rast_375_doy ' ||
'WHERE rast_375_doy IS NOT NULL and rast_750_doy IS NULL';
EXECUTE 'UPDATE ' || quote_ident(schema) || '.fire_events_raster ' ||
'SET ' || quote_ident(col) || '=ST_Rescale(rast_750_doy, 375., -375) ' ||
'WHERE rast_375_doy IS NULL and rast_750_doy IS NOT NULL' ;
EXECUTE 'UPDATE ' || quote_ident(schema) || '.fire_events_raster ' ||
'SET ' || quote_ident(col) || '=ST_SetBandNoDataValue(' ||
'ST_MapAlgebra(rast_375_doy, ST_Rescale(rast_750_doy,375.,-375.), ' ||
quote_literal('least([rast1],[rast2])') ||', '||
quote_literal('16BUI') ||','||
quote_literal('FIRST') || ', ' ||
quote_literal('[rast2]') || ', ' ||
quote_literal('[rast1]') || ', ' ||
quote_literal('367') || '), 367.0) ' ||
'WHERE rast_375_doy IS NOT NULL and rast_750_doy IS NOT NULL' ;
END
$BODY$
LANGUAGE plpgsql VOLATILE
COST 100 ;
ALTER FUNCTION viirs_rasterize_merge_doy(schema text, col text)
OWNER to postgres ;
|
DELIMITER /
DELETE FROM KRIM_ROLE_RSP_T WHERE ROLE_ID IN (SELECT ROLE_ID FROM KRIM_ROLE_T WHERE ROLE_NM = 'IACUC ProtocolApprover') AND
RSP_ID IN (SELECT RSP_ID FROM KRIM_RSP_T WHERE NM = 'IACUCReview')
/
INSERT INTO KRIM_ROLE_RSP_ID_BS_S VALUES(NULL)
/
INSERT INTO KRIM_ROLE_RSP_T (ROLE_RSP_ID, OBJ_ID, VER_NBR, ROLE_ID, RSP_ID, ACTV_IND) VALUES
((SELECT (MAX(ID)) FROM KRIM_ROLE_RSP_ID_BS_S), UUID(), '1', (SELECT ROLE_ID FROM KRIM_ROLE_T WHERE ROLE_NM = 'IACUCApprover') ,
(SELECT RSP_ID FROM KRIM_RSP_T WHERE NM = 'IACUCReview'), 'Y')
/
INSERT INTO KRIM_ROLE_RSP_ACTN_ID_BS_S VALUES(NULL)
/
INSERT INTO krim_role_rsp_actn_t (ROLE_RSP_ACTN_ID, OBJ_ID, VER_NBR, ACTN_TYP_CD, PRIORITY_NBR, ACTN_PLCY_CD, ROLE_MBR_ID, ROLE_RSP_ID, FRC_ACTN) values
((SELECT (MAX(ID)) FROM KRIM_ROLE_RSP_ACTN_ID_BS_S), UUID(), '1', 'A', '1', 'F', '*', (SELECT ROLE_RSP_ID FROM KRIM_ROLE_RSP_T WHERE ROLE_ID = (SELECT ROLE_ID FROM KRIM_ROLE_T WHERE ROLE_NM
= 'IACUCApprover') AND RSP_ID = (SELECT RSP_ID FROM KRIM_RSP_T WHERE NM = 'IACUCReview')),
'Y')
/
DELIMITER ;
|
PRINT "Hello world!"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.