sql stringlengths 6 1.05M |
|---|
INSERT INTO Department ( name ) VALUES ( @name ) |
-- phpMyAdmin SQL Dump
-- version 5.1.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Oct 28, 2021 at 02:24 PM
-- Server version: 10.4.21-MariaDB
-- PHP Version: 8.0.12
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: `practicing-laravel`
--
-- --------------------------------------------------------
--
-- Table structure for table `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2019_12_14_000001_create_personal_access_tokens_table', 1),
(2, '2021_10_25_060048_create_users_table', 1),
(3, '2021_10_25_141005_create_profiles_table', 1);
-- --------------------------------------------------------
--
-- Table structure for table `personal_access_tokens`
--
CREATE TABLE `personal_access_tokens` (
`id` bigint(20) UNSIGNED NOT NULL,
`tokenable_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`tokenable_id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
`abilities` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`last_used_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `profiles`
--
CREATE TABLE `profiles` (
`id` bigint(20) UNSIGNED NOT NULL,
`profile_pic` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`bio` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`owner_id` bigint(20) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `profiles`
--
INSERT INTO `profiles` (`id`, `profile_pic`, `bio`, `address`, `owner_id`, `created_at`, `updated_at`) VALUES
(1, 'My Picture', 'Software Engineer', 'Habiganj, Sylhet, Bangladesh', 1, '2021-10-28 05:12:53', '2021-10-28 05:12:53'),
(2, 'Kishor\'s Pic', 'Data Analyst', 'Sylhet, Bangladesh', 2, '2021-10-28 05:13:53', '2021-10-28 05:13:53'),
(3, 'Hridoy\'s Pic', 'Web Developer', 'Dhaka, Bangladesh', 3, '2021-10-28 05:14:51', '2021-10-28 05:15:19'),
(4, 'Kishore\'s Pic', 'Student', 'Bangladesh', 4, '2021-10-28 05:17:05', '2021-10-28 05:17:05'),
(5, 'My Picture', 'Data Analyst', 'Habiganj, Sylhet', 5, '2021-10-28 05:19:55', '2021-10-28 05:19:55');
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`id` bigint(20) UNSIGNED NOT NULL,
`firstname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`lastname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL,
`phone` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`date_of_birth` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
`user_name` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `firstname`, `lastname`, `email`, `phone`, `date_of_birth`, `user_name`, `created_at`, `updated_at`) VALUES
(1, '<NAME>', 'Dhar', '<EMAIL>', '01746236388', '1996-12-31 18:00:00', 'moni_kishore', '2021-10-28 05:12:53', '2021-10-28 05:12:53'),
(2, '<NAME>', 'Dhar', '<EMAIL>', '01689081113', '1996-10-04 18:00:00', 'kishor', '2021-10-28 05:13:52', '2021-10-28 05:13:52'),
(3, 'Hridoy', 'Dhar', '<EMAIL>', '01775615819', '1996-12-31 18:00:00', 'hridoy', '2021-10-28 05:14:50', '2021-10-28 05:14:50'),
(4, 'Kishore', 'Dhar', '<EMAIL>', '01746236388', '1996-10-04 18:00:00', 'kishor01', '2021-10-28 05:16:45', '2021-10-28 05:16:45'),
(5, '<NAME>', 'Hridoy', '<EMAIL>', '01746236388', '1995-12-31 18:00:00', 'moni_kishore01', '2021-10-28 05:19:43', '2021-10-28 05:19:43');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `personal_access_tokens`
--
ALTER TABLE `personal_access_tokens`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`),
ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`);
--
-- Indexes for table `profiles`
--
ALTER TABLE `profiles`
ADD PRIMARY KEY (`id`),
ADD KEY `profiles_owner_id_foreign` (`owner_id`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`),
ADD UNIQUE KEY `users_user_name_unique` (`user_name`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `personal_access_tokens`
--
ALTER TABLE `personal_access_tokens`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `profiles`
--
ALTER TABLE `profiles`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `profiles`
--
ALTER TABLE `profiles`
ADD CONSTRAINT `profiles_owner_id_foreign` FOREIGN KEY (`owner_id`) REFERENCES `users` (`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 */;
|
<filename>pwaf-core/src/00_pwaf/10_types_and_domains/12_gui_views_layout_block_override_action.sql
--
DO
$body$
BEGIN
IF NOT EXISTS (
SELECT 1 FROM pg_type JOIN pg_namespace ON typnamespace=pg_namespace.oid WHERE nspname='pwaf' AND typname='gui_views_layout_block_override_action'
) THEN
CREATE TYPE pwaf.gui_views_layout_block_override_action AS ENUM
('add',
'remove',
'change_order',
'change_zone',
'change_order_and_zone');
END IF;
END
$body$
;
ALTER TYPE pwaf.gui_views_layout_block_override_action OWNER TO pwaf;
-- |
DROP TRIGGER IF EXISTS criar_milhas;
CREATE TRIGGER criar_milhas
AFTER INSERT ON cliente FOR EACH ROW
INSERT INTO milhas(cliente, quantidade) VALUES (NEW.codigo, 0);
INSERT INTO cliente(nome, endereco) VALUES ('<NAME>', 'rua x 1');
INSERT INTO cliente(nome, endereco) VALUES ('<NAME>', 'rua x 2');
INSERT INTO cliente(nome, endereco) VALUES ('<NAME>', 'rua x 3');
INSERT INTO cliente(nome, endereco) VALUES ('<NAME>', 'rua x 4');
INSERT INTO cliente(nome, endereco) VALUES ('<NAME>', 'rua x 5');
SELECT * FROM milhas; |
<gh_stars>1-10
/* contrib/jdbc_fdw/jdbc_fdw--1.0.sql */
-- complain if script is sourced in psql, rather than via CREATE EXTENSION
\echo Use "CREATE EXTENSION jdbc_fdw" to load this file. \quit
CREATE FUNCTION jdbc_fdw_handler()
RETURNS fdw_handler
AS 'MODULE_PATHNAME'
LANGUAGE C STRICT;
CREATE FUNCTION jdbc_fdw_validator(text[], oid)
RETURNS void
AS 'MODULE_PATHNAME'
LANGUAGE C STRICT;
CREATE FOREIGN DATA WRAPPER jdbc_fdw
HANDLER jdbc_fdw_handler
VALIDATOR jdbc_fdw_validator;
|
DROP INDEX IF EXISTS IDX_AUTHORIZATION_CODE_HASH;
CREATE INDEX IF NOT EXISTS IDX_AUTHORIZATION_CODE_HASH ON IDN_OAUTH2_AUTHORIZATION_CODE (AUTHORIZATION_CODE_HASH,CONSUMER_KEY_ID);
|
<reponame>sadlay/java-web<gh_stars>0
TRUNCATE customer;
INSERT into customer VALUES ('1','customer1','Jack','13123456789','<EMAIL>',null);
INSERT into customer VALUES ('2','customer1','Rose','13167892345','<EMAIL>',null); |
GRANT ALL ON KEYSPACE "local_group_default_T_pageviews_per_project_v2" to aqs;
GRANT ALL ON TABLE "local_group_default_T_pageviews_per_project_v2".data TO aqs;
GRANT ALL ON KEYSPACE "local_group_default_T_mediarequest_top_files" to aqs;
GRANT ALL ON TABLE "local_group_default_T_mediarequest_top_files".data TO aqs;
GRANT ALL ON KEYSPACE "local_group_default_T_lgc_pagecounts_per_project" to aqs;
GRANT ALL ON TABLE "local_group_default_T_lgc_pagecounts_per_project".data TO aqs;
GRANT ALL ON KEYSPACE "local_group_default_T_mediarequest_per_file" to aqs;
GRANT ALL ON TABLE "local_group_default_T_mediarequest_per_file".data TO aqs;
GRANT ALL ON KEYSPACE "local_group_default_T_top_pageviews" to aqs;
GRANT ALL ON TABLE "local_group_default_T_top_pageviews".data TO aqs;
GRANT ALL ON KEYSPACE "local_group_default_T_top_percountry" to aqs;
GRANT ALL ON TABLE "local_group_default_T_top_percountry".data TO aqs;
GRANT ALL ON KEYSPACE "local_group_default_T_editors_bycountry" to aqs;
GRANT ALL ON TABLE "local_group_default_T_editors_bycountry".data TO aqs;
GRANT ALL ON KEYSPACE "local_group_default_T_top_pageviews_bycountry" to aqs;
GRANT ALL ON TABLE "local_group_default_T_top_pageviews_bycountry".data TO aqs;
GRANT ALL ON KEYSPACE "local_group_default_T_mediarequest_per_referer" to aqs;
GRANT ALL ON TABLE "local_group_default_T_mediarequest_per_referer".data TO aqs;
GRANT ALL ON KEYSPACE "local_group_default_T_unique_devices" to aqs;
GRANT ALL ON TABLE "local_group_default_T_unique_devices".data TO aqs;
GRANT ALL ON KEYSPACE "local_group_default_T_pageviews_per_article_flat" to aqs;
GRANT ALL ON TABLE "local_group_default_T_pageviews_per_article_flat".data TO aqs;
GRANT ALL ON KEYSPACE "local_group_default_T_top_bycountry" to aqs;
GRANT ALL ON TABLE "local_group_default_T_top_bycountry".data TO aqs;
GRANT ALL ON KEYSPACE "local_group_default_T_pageviews_per_project" to aqs;
GRANT ALL ON TABLE "local_group_default_T_pageviews_per_project".data TO aqs;
GRANT SELECT, MODIFY ON ALL TO aqsloader;
|
<gh_stars>1-10
-- SQL Manager 2011 for PostgreSQL 5.0.0.3
-- ---------------------------------------
-- Хост : 192.168.1.102
-- База данных : tourism_rcr
-- Версия : PostgreSQL 9.4beta3 on i686-pc-linux-gnu, compiled by gcc (Ubuntu 4.9.1-16ubuntu6) 4.9.1, 32-bit
SET search_path = public, pg_catalog;
DROP VIEW IF EXISTS public.mail_notebook_view;
DROP VIEW IF EXISTS public.shop_serv_hotel_2_view;
DROP VIEW IF EXISTS public.static_geo_location_view;
DROP VIEW IF EXISTS public.shop_hotel_room_images_view;
DROP VIEW IF EXISTS public.shop_hotel_images_view;
DROP VIEW IF EXISTS public.serv_hotel_simple_view;
DROP VIEW IF EXISTS public.shop_room_view;
DROP VIEW IF EXISTS public.shop_room_tarriff_general_rate_view;
DROP VIEW IF EXISTS public.shop_room_tarriff_original_rate_view;
DROP VIEW IF EXISTS public.shop_room_tarriff_corporate_rate_view;
DROP VIEW IF EXISTS public.req_serv_hotel_processed_view;
DROP VIEW IF EXISTS public.req_serv_hotel_open_view;
DROP VIEW IF EXISTS public.req_serv_hotel_archived_view;
DROP VIEW IF EXISTS public.rel_serv_hotel_room_image_simple_view;
DROP VIEW IF EXISTS public.rel_serv_hotel_image_simple_view;
DROP VIEW IF EXISTS public.payment_tariff_shop_simple_view;
DROP VIEW IF EXISTS public.payment_tariff_simple_view;
DROP VIEW IF EXISTS public.payment_price_shop_simple_view;
DROP VIEW IF EXISTS public.payment_price_simple_view;
DROP VIEW IF EXISTS public.user_registration_request_view;
DROP VIEW IF EXISTS public.users_view;
DROP VIEW IF EXISTS public.user_roles_view;
DROP VIEW IF EXISTS public.user_detail_view;
DROP VIEW IF EXISTS public.tm_user_info_view;
DROP VIEW IF EXISTS public.tm_mail_newsletter_group_view;
DROP VIEW IF EXISTS public.tm_mail_newsletter_view;
DROP VIEW IF EXISTS public.tm_image_view;
DROP VIEW IF EXISTS public.tm_firm_settings_view;
DROP VIEW IF EXISTS public.tm_firms_view;
DROP VIEW IF EXISTS public.tm_contact_easy_view;
DROP VIEW IF EXISTS public.tm_contact_view;
DROP VIEW IF EXISTS public.tm_account_view;
DROP VIEW IF EXISTS public.shop_user_view;
DROP VIEW IF EXISTS public.shop_permission_view;
DROP VIEW IF EXISTS public.serv_transfer_route_point_view;
DROP VIEW IF EXISTS public.serv_transfer_route_view;
DROP VIEW IF EXISTS public.serv_transfer_view;
DROP VIEW IF EXISTS public.serv_hotel_room_view;
DROP VIEW IF EXISTS public.serv_hotel_view;
DROP VIEW IF EXISTS public.req_serv_hotel_view;
DROP VIEW IF EXISTS public.rel_user_details_view;
DROP VIEW IF EXISTS public.rel_shop_permission_view;
DROP VIEW IF EXISTS public.rel_serv_transfer_tm_contact_view;
DROP VIEW IF EXISTS public.rel_serv_hotel_room_image_view;
DROP VIEW IF EXISTS public.rel_serv_hotel_image_view;
DROP VIEW IF EXISTS public.rel_serv_hotel_doc_documents_view;
DROP VIEW IF EXISTS public.rel_mail_newsletter_group_view;
DROP VIEW IF EXISTS public.payment_tariff_shop_view;
DROP VIEW IF EXISTS public.payment_tariff_view;
DROP VIEW IF EXISTS public.payment_price_shop_view;
DROP VIEW IF EXISTS public.payment_price_view;
DROP VIEW IF EXISTS public.payment_details_view;
DROP VIEW IF EXISTS public.location_countries_view;
DROP VIEW IF EXISTS public.location_cities_view;
DROP VIEW IF EXISTS public.location_address_view;
DROP VIEW IF EXISTS public.info_permission_view;
DROP VIEW IF EXISTS public.info_contact_information_view;
DROP VIEW IF EXISTS public.doc_documents_view;
DROP VIEW IF EXISTS public.dict_global_view;
DROP VIEW IF EXISTS public.curr_currency_view;
DROP VIEW IF EXISTS public.curr_course_view;
DROP SEQUENCE IF EXISTS public.sq_tmmailnewslettergroup;
DROP SEQUENCE IF EXISTS public.sq_tmmailnewsletter;
DROP SEQUENCE IF EXISTS public.sq_relmailnewslettergroup;
DROP TABLE IF EXISTS public.rel_mail_newsletter_group;
DROP TABLE IF EXISTS public.tm_mail_newsletter_group;
DROP TABLE IF EXISTS public.tm_mail_newsletter;
DROP SEQUENCE IF EXISTS public.sq_userdetail;
DROP SEQUENCE IF EXISTS public.sq_reluserdetails;
DROP TABLE IF EXISTS public.rel_user_details;
DROP TABLE IF EXISTS public.user_detail;
DROP SEQUENCE IF EXISTS public.sq_shopuser;
DROP SEQUENCE IF EXISTS public.sq_shoppermission;
DROP SEQUENCE IF EXISTS public.sq_relshoppermission;
DROP SEQUENCE IF EXISTS public.sq_infopermission;
DROP TABLE IF EXISTS public.rel_shop_permission;
DROP TABLE IF EXISTS public.info_permission;
DROP TABLE IF EXISTS public.shop_permission;
DROP TABLE IF EXISTS public.shop_user;
DROP VIEW IF EXISTS public.timeline_view;
DROP SEQUENCE IF EXISTS public.sq_paymentpriceshop;
DROP TABLE IF EXISTS public.payment_price_shop;
DROP SEQUENCE IF EXISTS public.sq_paymenttariffshop;
DROP TABLE IF EXISTS public.payment_tariff_shop;
DROP SEQUENCE IF EXISTS public.sq_tmfirmsettings;
DROP TABLE IF EXISTS public.tm_firm_settings;
DROP SEQUENCE IF EXISTS public.sq_users;
DROP SEQUENCE IF EXISTS public.sq_userroles;
DROP SEQUENCE IF EXISTS public.sq_tmuserinfo;
DROP SEQUENCE IF EXISTS public.sq_tmimage;
DROP SEQUENCE IF EXISTS public.sq_tmfirms;
DROP SEQUENCE IF EXISTS public.sq_tmcontacteasy;
DROP SEQUENCE IF EXISTS public.sq_tmcontact;
DROP SEQUENCE IF EXISTS public.sq_tmaccount;
DROP SEQUENCE IF EXISTS public.sq_servtransferroutepoint;
DROP SEQUENCE IF EXISTS public.sq_servtransferroute;
DROP SEQUENCE IF EXISTS public.sq_servtransfer;
DROP SEQUENCE IF EXISTS public.sq_servhotelroom;
DROP SEQUENCE IF EXISTS public.sq_servhotel;
DROP SEQUENCE IF EXISTS public.sq_reqservhotel;
DROP SEQUENCE IF EXISTS public.sq_relservtransfertmcontact;
DROP SEQUENCE IF EXISTS public.sq_relservhotelroomimage;
DROP SEQUENCE IF EXISTS public.sq_relservhotelimage;
DROP SEQUENCE IF EXISTS public.sq_relservhoteldocdocuments;
DROP SEQUENCE IF EXISTS public.sq_relreqservhoteltmcontacteasy;
DROP SEQUENCE IF EXISTS public.sq_paymenttariff;
DROP SEQUENCE IF EXISTS public.sq_paymentprice;
DROP SEQUENCE IF EXISTS public.sq_paymentdetails;
DROP SEQUENCE IF EXISTS public.sq_locationtypeplacement;
DROP SEQUENCE IF EXISTS public.sq_locationcountries;
DROP SEQUENCE IF EXISTS public.sq_locationcities;
DROP SEQUENCE IF EXISTS public.sq_locationaddress;
DROP SEQUENCE IF EXISTS public.sq_infocontactinformation;
DROP SEQUENCE IF EXISTS public.sq_docdocuments;
DROP SEQUENCE IF EXISTS public.sq_dictglobal;
DROP SEQUENCE IF EXISTS public.sq_currcurrency;
DROP SEQUENCE IF EXISTS public.sq_currcourse;
DROP TABLE IF EXISTS public.users;
DROP TABLE IF EXISTS public.user_roles;
DROP TABLE IF EXISTS public.tm_user_info;
DROP TABLE IF EXISTS public.tm_image;
DROP TABLE IF EXISTS public.tm_firms;
DROP TABLE IF EXISTS public.tm_contact_easy;
DROP TABLE IF EXISTS public.tm_contact;
DROP TABLE IF EXISTS public.tm_account;
DROP TABLE IF EXISTS public.serv_transfer_route_point;
DROP TABLE IF EXISTS public.serv_transfer_route;
DROP TABLE IF EXISTS public.serv_transfer;
DROP TABLE IF EXISTS public.serv_hotel_room;
DROP TABLE IF EXISTS public.serv_hotel;
DROP TABLE IF EXISTS public.req_serv_hotel;
DROP TABLE IF EXISTS public.rel_serv_transfer_tm_contact;
DROP TABLE IF EXISTS public.rel_serv_hotel_room_image;
DROP TABLE IF EXISTS public.rel_serv_hotel_image;
DROP TABLE IF EXISTS public.rel_serv_hotel_doc_documents;
DROP TABLE IF EXISTS public.payment_tariff;
DROP TABLE IF EXISTS public.payment_price;
DROP TABLE IF EXISTS public.payment_details;
DROP TABLE IF EXISTS public.location_countries;
DROP TABLE IF EXISTS public.location_cities;
DROP TABLE IF EXISTS public.location_address;
DROP TABLE IF EXISTS public.info_contact_information;
DROP TABLE IF EXISTS public.doc_documents;
DROP TABLE IF EXISTS public.dict_global;
DROP TABLE IF EXISTS public.curr_currency;
DROP TABLE IF EXISTS public.curr_course;
SET check_function_bodies = false;
--
-- Structure for table curr_course (OID = 78207) :
--
CREATE TABLE public.curr_course (
id integer NOT NULL,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
serieskey varchar(255),
version integer,
course integer,
currencyid integer,
datecourse timestamp without time zone,
popularity integer
) WITHOUT OIDS;
--
-- Structure for table curr_currency (OID = 78213) :
--
CREATE TABLE public.curr_currency (
id integer NOT NULL,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
serieskey varchar(255),
version integer,
course integer,
currencyname varchar(255),
descr varchar(2000),
isbase boolean,
iso_code varchar(255),
nameeng varchar(255),
nameru varchar(255),
popularity integer
) WITHOUT OIDS;
--
-- Structure for table dict_global (OID = 78219) :
--
CREATE TABLE public.dict_global (
id integer NOT NULL,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
serieskey varchar(255),
version integer,
dict_type varchar(255),
dict_value varchar(255),
dict_value_additional varchar(255),
popularity integer
) WITHOUT OIDS;
--
-- Structure for table doc_documents (OID = 78225) :
--
CREATE TABLE public.doc_documents (
id integer NOT NULL,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
serieskey varchar(255),
version integer,
contenttype varchar(255),
extension varchar(255),
originalfilename varchar(255),
path varchar(255),
simpletype varchar(255),
size varchar(255),
synopsis varchar(500),
popularity integer
) WITHOUT OIDS;
--
-- Structure for table info_contact_information (OID = 78231) :
--
CREATE TABLE public.info_contact_information (
id integer NOT NULL,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
serieskey varchar(255),
version integer,
contact varchar(255),
descr varchar(2000),
email varchar(255),
email2 varchar(255),
email3 varchar(255),
phone varchar(255),
phone2 varchar(255),
phone3 varchar(255),
website varchar(255),
popularity integer
) WITHOUT OIDS;
--
-- Structure for table location_address (OID = 78237) :
--
CREATE TABLE public.location_address (
id integer NOT NULL,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
serieskey varchar(255),
version integer,
label varchar(255),
descr varchar(2000),
name varchar(255),
yandex_map_point_x varchar(255),
yandex_map_point_y varchar(255),
popularity integer
) WITHOUT OIDS;
--
-- Structure for table location_cities (OID = 78243) :
--
CREATE TABLE public.location_cities (
id integer NOT NULL,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
serieskey varchar(255),
version integer,
cityname varchar(255),
descr varchar(2000),
countryid integer,
popularity integer
) WITHOUT OIDS;
--
-- Structure for table location_countries (OID = 78249) :
--
CREATE TABLE public.location_countries (
id integer NOT NULL,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
serieskey varchar(255),
version integer,
countryname varchar(255),
descr varchar(2000),
iso_code varchar(255),
nameeng varchar(255),
popularity integer
) WITHOUT OIDS;
--
-- Structure for table payment_details (OID = 78255) :
--
CREATE TABLE public.payment_details (
id integer NOT NULL,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
serieskey varchar(255),
version integer,
bank_location varchar(255),
bin varchar(255),
correspondent_account varchar(255),
current_account varchar(255),
full_name varchar(255),
iin varchar(255),
legal_address varchar(255),
name_of_the_bank varchar(255),
nceo varchar(255),
phone varchar(255),
phone2 varchar(255),
postal_address varchar(255),
popularity integer
) WITHOUT OIDS;
--
-- Structure for table payment_price (OID = 78261) :
--
CREATE TABLE public.payment_price (
id integer NOT NULL,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
serieskey varchar(255),
version integer,
humannumber integer,
price numeric,
payment_tariff_id integer,
popularity integer
) WITHOUT OIDS;
--
-- Structure for table payment_tariff (OID = 78267) :
--
CREATE TABLE public.payment_tariff (
id integer NOT NULL,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
serieskey varchar(255),
version integer,
popularity integer
) WITHOUT OIDS;
--
-- Structure for table rel_serv_hotel_doc_documents (OID = 78273) :
--
CREATE TABLE public.rel_serv_hotel_doc_documents (
id integer NOT NULL,
doc_documents_id integer,
serv_hotel_id integer
) WITHOUT OIDS;
--
-- Structure for table rel_serv_hotel_image (OID = 78276) :
--
CREATE TABLE public.rel_serv_hotel_image (
id integer NOT NULL,
serv_hotel_id integer,
image_id integer
) WITHOUT OIDS;
--
-- Structure for table rel_serv_hotel_room_image (OID = 78279) :
--
CREATE TABLE public.rel_serv_hotel_room_image (
id integer NOT NULL,
serv_hotel_room_id integer,
image_id integer
) WITHOUT OIDS;
--
-- Structure for table rel_serv_transfer_tm_contact (OID = 78282) :
--
CREATE TABLE public.rel_serv_transfer_tm_contact (
id integer NOT NULL,
serv_transfers_id integer,
tm_contact_id integer
) WITHOUT OIDS;
--
-- Structure for table req_serv_hotel (OID = 78285) :
--
CREATE TABLE public.req_serv_hotel (
id integer NOT NULL,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
serieskey varchar(255),
version integer,
label varchar(255),
accept boolean,
datedifference varchar(255),
decline boolean,
departure timestamp without time zone,
descr varchar(2000),
payment_type boolean,
price numeric(17,3),
progress integer,
race timestamp without time zone,
room_count integer,
singleprice integer,
tariffcurrency varchar(255),
document_for_hotel_id integer,
document_for_user_id integer,
payment_price_id integer,
payment_tariff_id integer,
serv_hotel_id integer,
serv_hotel_room_id integer,
request_user_id integer,
response_user_id integer,
request_number varchar,
cancel boolean,
confirm boolean,
archived boolean,
popularity integer
) WITHOUT OIDS;
--
-- Structure for table serv_hotel (OID = 78291) :
--
CREATE TABLE public.serv_hotel (
id integer NOT NULL,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
serieskey varchar(255),
version integer,
label varchar(255),
blacklist boolean,
condition_text varchar(2000),
descr varchar(2000),
descr_internal varchar(2000),
favorite boolean,
freesale boolean,
problem boolean,
showonline boolean,
starcount integer,
synopsis varchar(500),
timedeparture varchar(255),
timeearlyrace varchar(255),
timelatedeparture varchar(255),
timerace varchar(255),
whereroomsarebooked varchar(255),
contactinformation_id integer,
address_id integer,
locationcities_id integer,
locationcountries_id integer,
payment_details_id integer,
popularity integer
) WITHOUT OIDS;
--
-- Structure for table serv_hotel_room (OID = 78297) :
--
CREATE TABLE public.serv_hotel_room (
id integer NOT NULL,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
serieskey varchar(255),
version integer,
label varchar(255),
breakfast boolean,
descr varchar(2000),
guest_number integer,
room_number integer,
room_type_id integer,
hotel_id integer,
shop_tarriff_id integer,
cost_tarriff_id integer,
dinner boolean,
lunch boolean,
discount integer,
is_discount boolean,
commission integer,
fresale integer,
fresale_today integer,
fresale_enabled boolean,
fresale_start timestamp without time zone,
fresale_end timestamp without time zone,
is_commission boolean,
rr_tarriff_id integer,
popularity integer
) WITHOUT OIDS;
--
-- Structure for table serv_transfer (OID = 78303) :
--
CREATE TABLE public.serv_transfer (
id integer NOT NULL,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
serieskey varchar(255),
version integer,
label varchar(255),
date_from timestamp without time zone,
date_to timestamp without time zone,
descr varchar(2000),
passengers_phones varchar(255),
price numeric(17,3),
transfer_name varchar(255),
visit_table varchar(255),
currency_id integer,
payment_type_id integer,
transport_id integer,
type_transfer_id integer,
location_cities_id integer,
location_countries_id integer,
account_id integer,
popularity integer
) WITHOUT OIDS;
--
-- Structure for table serv_transfer_route (OID = 78309) :
--
CREATE TABLE public.serv_transfer_route (
id integer NOT NULL,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
serieskey varchar(255),
version integer,
label varchar(255),
descr varchar(2000),
driver varchar(255),
driver_phone varchar(255),
fixed_allowance numeric(17,3),
free boolean,
percentage_of_allowances numeric(17,3),
sum integer,
currency_id integer,
serv_transfer_id integer,
popularity integer
) WITHOUT OIDS;
--
-- Structure for table serv_transfer_route_point (OID = 78315) :
--
CREATE TABLE public.serv_transfer_route_point (
id integer NOT NULL,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
serieskey varchar(255),
version integer,
label varchar(255),
fixed_allowance numeric(17,3),
free boolean,
percentage_of_allowances numeric(17,3),
point_from varchar(255),
point_to varchar(255),
start_on timestamp without time zone,
sum integer,
transfer_route_id integer,
popularity integer
) WITHOUT OIDS;
--
-- Structure for table tm_account (OID = 78321) :
--
CREATE TABLE public.tm_account (
id integer NOT NULL,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
serieskey varchar(255),
version integer,
account_fullname varchar(255),
account_name varchar(255),
descr varchar(2000),
residency_id integer,
popularity integer
) WITHOUT OIDS;
--
-- Structure for table tm_contact (OID = 78327) :
--
CREATE TABLE public.tm_contact (
id integer NOT NULL,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
serieskey varchar(255),
version integer,
birthday timestamp without time zone,
contact_name varchar(255),
contact_patronymic varchar(255),
contact_surname varchar(255),
descr varchar(2000),
passport_end_date timestamp without time zone,
passport_number varchar(255),
passport_start_date timestamp without time zone,
citizenship_id integer,
popularity integer
) WITHOUT OIDS;
--
-- Structure for table tm_contact_easy (OID = 78333) :
--
CREATE TABLE public.tm_contact_easy (
id integer NOT NULL,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
serieskey varchar(255),
version integer,
label varchar(255),
descr varchar(2000),
email varchar(255),
man_foman boolean,
phone varchar(255),
country_id integer,
req_serv_hotel_id integer,
id_card boolean,
identity_number varchar(255),
passport boolean,
popularity integer
) WITHOUT OIDS;
--
-- Structure for table tm_firms (OID = 78339) :
--
CREATE TABLE public.tm_firms (
id integer NOT NULL,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
serieskey varchar(255),
version integer,
label varchar(255),
accountid integer,
active varchar(255),
firm_name varchar(255) NOT NULL,
lastpay timestamp without time zone,
mounthcount integer,
popularity integer
) WITHOUT OIDS;
--
-- Structure for table tm_image (OID = 78345) :
--
CREATE TABLE public.tm_image (
id integer NOT NULL,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
serieskey varchar(255),
version integer,
contenttype varchar(255),
extension varchar(255),
name varchar(255),
originalfilename varchar(255),
path varchar(255),
size varchar(255),
popularity integer
) WITHOUT OIDS;
--
-- Structure for table tm_user_info (OID = 78351) :
--
CREATE TABLE public.tm_user_info (
id integer NOT NULL,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
serieskey varchar(255),
version integer,
label varchar(255),
browser varchar(255),
browser_version varchar(255),
last_login timestamp without time zone,
platform varchar(255),
platformversion varchar(255),
proxy_content varchar(255),
remote_host varchar(255),
user_agent varchar(255),
user_ip_address varchar(255),
username varchar(255),
popularity integer
) WITHOUT OIDS;
--
-- Structure for table user_roles (OID = 78357) :
--
CREATE TABLE public.user_roles (
id integer NOT NULL,
role varchar(255),
user_id integer
) WITHOUT OIDS;
--
-- Structure for table users (OID = 78360) :
--
CREATE TABLE public.users (
id integer NOT NULL,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
serieskey varchar(255),
version integer,
activated boolean,
activationkey varchar(255),
email varchar(255),
enabled boolean,
firstname varchar(255),
landingpage varchar(255),
langkey varchar(255),
lastname varchar(255),
password varchar(255),
username varchar(255) NOT NULL,
image_id integer,
token varchar(255),
phonenumber varchar(255),
user_color varchar,
popularity integer,
shop_user boolean,
physical_person boolean,
legal_entity boolean
) WITHOUT OIDS;
--
-- Definition for sequence sq_currcourse (OID = 78366) :
--
CREATE SEQUENCE public.sq_currcourse
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_currcurrency (OID = 78368) :
--
CREATE SEQUENCE public.sq_currcurrency
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_dictglobal (OID = 78370) :
--
CREATE SEQUENCE public.sq_dictglobal
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_docdocuments (OID = 78372) :
--
CREATE SEQUENCE public.sq_docdocuments
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_infocontactinformation (OID = 78374) :
--
CREATE SEQUENCE public.sq_infocontactinformation
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_locationaddress (OID = 78376) :
--
CREATE SEQUENCE public.sq_locationaddress
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_locationcities (OID = 78378) :
--
CREATE SEQUENCE public.sq_locationcities
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_locationcountries (OID = 78380) :
--
CREATE SEQUENCE public.sq_locationcountries
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_locationtypeplacement (OID = 78382) :
--
CREATE SEQUENCE public.sq_locationtypeplacement
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_paymentdetails (OID = 78384) :
--
CREATE SEQUENCE public.sq_paymentdetails
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_paymentprice (OID = 78386) :
--
CREATE SEQUENCE public.sq_paymentprice
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_paymenttariff (OID = 78388) :
--
CREATE SEQUENCE public.sq_paymenttariff
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_relreqservhoteltmcontacteasy (OID = 78390) :
--
CREATE SEQUENCE public.sq_relreqservhoteltmcontacteasy
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_relservhoteldocdocuments (OID = 78392) :
--
CREATE SEQUENCE public.sq_relservhoteldocdocuments
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_relservhotelimage (OID = 78394) :
--
CREATE SEQUENCE public.sq_relservhotelimage
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_relservhotelroomimage (OID = 78396) :
--
CREATE SEQUENCE public.sq_relservhotelroomimage
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_relservtransfertmcontact (OID = 78398) :
--
CREATE SEQUENCE public.sq_relservtransfertmcontact
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_reqservhotel (OID = 78400) :
--
CREATE SEQUENCE public.sq_reqservhotel
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_servhotel (OID = 78402) :
--
CREATE SEQUENCE public.sq_servhotel
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_servhotelroom (OID = 78404) :
--
CREATE SEQUENCE public.sq_servhotelroom
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_servtransfer (OID = 78406) :
--
CREATE SEQUENCE public.sq_servtransfer
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_servtransferroute (OID = 78408) :
--
CREATE SEQUENCE public.sq_servtransferroute
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_servtransferroutepoint (OID = 78410) :
--
CREATE SEQUENCE public.sq_servtransferroutepoint
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_tmaccount (OID = 78412) :
--
CREATE SEQUENCE public.sq_tmaccount
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_tmcontact (OID = 78414) :
--
CREATE SEQUENCE public.sq_tmcontact
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_tmcontacteasy (OID = 78416) :
--
CREATE SEQUENCE public.sq_tmcontacteasy
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_tmfirms (OID = 78418) :
--
CREATE SEQUENCE public.sq_tmfirms
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_tmimage (OID = 78420) :
--
CREATE SEQUENCE public.sq_tmimage
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_tmuserinfo (OID = 78422) :
--
CREATE SEQUENCE public.sq_tmuserinfo
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_userroles (OID = 78424) :
--
CREATE SEQUENCE public.sq_userroles
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_users (OID = 78426) :
--
CREATE SEQUENCE public.sq_users
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Structure for table tm_firm_settings (OID = 78428) :
--
CREATE TABLE public.tm_firm_settings (
id integer NOT NULL,
logo_id integer,
brand varchar,
doc_documents_id integer,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
popularity integer,
serieskey varchar(255),
version integer
) WITHOUT OIDS;
--
-- Definition for sequence sq_tmfirmsettings (OID = 78434) :
--
CREATE SEQUENCE public.sq_tmfirmsettings
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Structure for table payment_tariff_shop (OID = 78436) :
--
CREATE TABLE public.payment_tariff_shop (
id integer NOT NULL,
percentage_of_allowances integer,
is_percentage_of_allowances boolean,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
popularity integer,
serieskey varchar(255),
version integer
) WITHOUT OIDS;
--
-- Definition for sequence sq_paymenttariffshop (OID = 78442) :
--
CREATE SEQUENCE public.sq_paymenttariffshop
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Structure for table payment_price_shop (OID = 78444) :
--
CREATE TABLE public.payment_price_shop (
id integer NOT NULL,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
serieskey varchar(255),
version integer,
humannumber integer,
price numeric,
popularity integer,
payment_tariff_shop_id integer
) WITHOUT OIDS;
--
-- Definition for sequence sq_paymentpriceshop (OID = 78450) :
--
CREATE SEQUENCE public.sq_paymentpriceshop
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for view timeline_view (OID = 79446) :
--
CREATE VIEW public.timeline_view AS
SELECT c0b0a2b34c5tbl.id,
NULL::text AS label,
c0b0a2b34c5tbl.firmid,
c0b0a2b34c5tbl.createon,
c0b0a2b34c5tbl.modifyon,
c0b0a2b34c5tbl.createdby,
c0b0a2b34c5tbl.lastmodifiedby,
md5(((c0b0a2b34c5tbl.id)::text || 'CurrCourse'::text)) AS hashid,
'CurrCourse'::text AS module
FROM curr_course c0b0a2b34c5tbl
UNION
SELECT c5c9a9214b8tbl.id,
NULL::text AS label,
c5c9a9214b8tbl.firmid,
c5c9a9214b8tbl.createon,
c5c9a9214b8tbl.modifyon,
c5c9a9214b8tbl.createdby,
c5c9a9214b8tbl.lastmodifiedby,
md5(((c5c9a9214b8tbl.id)::text || 'CurrCurrency'::text)) AS hashid,
'CurrCurrency'::text AS module
FROM curr_currency c5c9a9214b8tbl
UNION
SELECT d816e0965e2tbl.id,
NULL::text AS label,
d816e0965e2tbl.firmid,
d816e0965e2tbl.createon,
d816e0965e2tbl.modifyon,
d816e0965e2tbl.createdby,
d816e0965e2tbl.lastmodifiedby,
md5(((d816e0965e2tbl.id)::text || 'DocDocuments'::text)) AS hashid,
'DocDocuments'::text AS module
FROM doc_documents d816e0965e2tbl
UNION
SELECT ieec8536989tbl.id,
NULL::text AS label,
ieec8536989tbl.firmid,
ieec8536989tbl.createon,
ieec8536989tbl.modifyon,
ieec8536989tbl.createdby,
ieec8536989tbl.lastmodifiedby,
md5(((ieec8536989tbl.id)::text || 'InfoContactInformation'::text)) AS hashid,
'InfoContactInformation'::text AS module
FROM info_contact_information ieec8536989tbl
UNION
SELECT idb18a48b26tbl.id,
idb18a48b26tbl.label,
idb18a48b26tbl.firmid,
idb18a48b26tbl.createon,
idb18a48b26tbl.modifyon,
idb18a48b26tbl.createdby,
idb18a48b26tbl.lastmodifiedby,
md5(((idb18a48b26tbl.id)::text || 'InfoPermission'::text)) AS hashid,
'InfoPermission'::text AS module
FROM info_permission idb18a48b26tbl
UNION
SELECT l64192fd4cbtbl.id,
l64192fd4cbtbl.label,
l64192fd4cbtbl.firmid,
l64192fd4cbtbl.createon,
l64192fd4cbtbl.modifyon,
l64192fd4cbtbl.createdby,
l64192fd4cbtbl.lastmodifiedby,
md5(((l64192fd4cbtbl.id)::text || 'LocationAddress'::text)) AS hashid,
'LocationAddress'::text AS module
FROM location_address l64192fd4cbtbl
UNION
SELECT l846ace6749tbl.id,
l846ace6749tbl.cityname AS label,
l846ace6749tbl.firmid,
l846ace6749tbl.createon,
l846ace6749tbl.modifyon,
l846ace6749tbl.createdby,
l846ace6749tbl.lastmodifiedby,
md5(((l846ace6749tbl.id)::text || 'LocationCities'::text)) AS hashid,
'LocationCities'::text AS module
FROM location_cities l846ace6749tbl
UNION
SELECT lc32d4253e7tbl.id,
lc32d4253e7tbl.countryname AS label,
lc32d4253e7tbl.firmid,
lc32d4253e7tbl.createon,
lc32d4253e7tbl.modifyon,
lc32d4253e7tbl.createdby,
lc32d4253e7tbl.lastmodifiedby,
md5(((lc32d4253e7tbl.id)::text || 'LocationCountries'::text)) AS hashid,
'LocationCountries'::text AS module
FROM location_countries lc32d4253e7tbl
UNION
SELECT p1c40abc625tbl.id,
NULL::text AS label,
p1c40abc625tbl.firmid,
p1c40abc625tbl.createon,
p1c40abc625tbl.modifyon,
p1c40abc625tbl.createdby,
p1c40abc625tbl.lastmodifiedby,
md5(((p1c40abc625tbl.id)::text || 'PaymentDetails'::text)) AS hashid,
'PaymentDetails'::text AS module
FROM payment_details p1c40abc625tbl
UNION
SELECT pf14c53cfbbtbl.id,
NULL::text AS label,
pf14c53cfbbtbl.firmid,
pf14c53cfbbtbl.createon,
pf14c53cfbbtbl.modifyon,
pf14c53cfbbtbl.createdby,
pf14c53cfbbtbl.lastmodifiedby,
md5(((pf14c53cfbbtbl.id)::text || 'PaymentPrice'::text)) AS hashid,
'PaymentPrice'::text AS module
FROM payment_price pf14c53cfbbtbl
UNION
SELECT pc2e897ad70tbl.id,
NULL::text AS label,
pc2e897ad70tbl.firmid,
pc2e897ad70tbl.createon,
pc2e897ad70tbl.modifyon,
pc2e897ad70tbl.createdby,
pc2e897ad70tbl.lastmodifiedby,
md5(((pc2e897ad70tbl.id)::text || 'PaymentPriceShop'::text)) AS hashid,
'PaymentPriceShop'::text AS module
FROM payment_price_shop pc2e897ad70tbl
UNION
SELECT pd6c3ae051btbl.id,
NULL::text AS label,
pd6c3ae051btbl.firmid,
pd6c3ae051btbl.createon,
pd6c3ae051btbl.modifyon,
pd6c3ae051btbl.createdby,
pd6c3ae051btbl.lastmodifiedby,
md5(((pd6c3ae051btbl.id)::text || 'PaymentTariff'::text)) AS hashid,
'PaymentTariff'::text AS module
FROM payment_tariff pd6c3ae051btbl
UNION
SELECT pbdd1628be2tbl.id,
NULL::text AS label,
pbdd1628be2tbl.firmid,
pbdd1628be2tbl.createon,
pbdd1628be2tbl.modifyon,
pbdd1628be2tbl.createdby,
pbdd1628be2tbl.lastmodifiedby,
md5(((pbdd1628be2tbl.id)::text || 'PaymentTariffShop'::text)) AS hashid,
'PaymentTariffShop'::text AS module
FROM payment_tariff_shop pbdd1628be2tbl
UNION
SELECT r2676253d98tbl.id,
r2676253d98tbl.label,
r2676253d98tbl.firmid,
r2676253d98tbl.createon,
r2676253d98tbl.modifyon,
r2676253d98tbl.createdby,
r2676253d98tbl.lastmodifiedby,
md5(((r2676253d98tbl.id)::text || 'ReqServHotel'::text)) AS hashid,
'ReqServHotel'::text AS module
FROM req_serv_hotel r2676253d98tbl
UNION
SELECT sb8c6e89a24tbl.id,
sb8c6e89a24tbl.label,
sb8c6e89a24tbl.firmid,
sb8c6e89a24tbl.createon,
sb8c6e89a24tbl.modifyon,
sb8c6e89a24tbl.createdby,
sb8c6e89a24tbl.lastmodifiedby,
md5(((sb8c6e89a24tbl.id)::text || 'ServHotel'::text)) AS hashid,
'ServHotel'::text AS module
FROM serv_hotel sb8c6e89a24tbl
UNION
SELECT s8e9c94f452tbl.id,
s8e9c94f452tbl.label,
s8e9c94f452tbl.firmid,
s8e9c94f452tbl.createon,
s8e9c94f452tbl.modifyon,
s8e9c94f452tbl.createdby,
s8e9c94f452tbl.lastmodifiedby,
md5(((s8e9c94f452tbl.id)::text || 'ServHotelRoom'::text)) AS hashid,
'ServHotelRoom'::text AS module
FROM serv_hotel_room s8e9c94f452tbl
UNION
SELECT s204467bce8tbl.id,
s204467bce8tbl.label,
s204467bce8tbl.firmid,
s204467bce8tbl.createon,
s204467bce8tbl.modifyon,
s204467bce8tbl.createdby,
s204467bce8tbl.lastmodifiedby,
md5(((s204467bce8tbl.id)::text || 'ServTransfer'::text)) AS hashid,
'ServTransfer'::text AS module
FROM serv_transfer s204467bce8tbl
UNION
SELECT se7fd9aed6dtbl.id,
se7fd9aed6dtbl.label,
se7fd9aed6dtbl.firmid,
se7fd9aed6dtbl.createon,
se7fd9aed6dtbl.modifyon,
se7fd9aed6dtbl.createdby,
se7fd9aed6dtbl.lastmodifiedby,
md5(((se7fd9aed6dtbl.id)::text || 'ServTransferRoute'::text)) AS hashid,
'ServTransferRoute'::text AS module
FROM serv_transfer_route se7fd9aed6dtbl
UNION
SELECT s484716fad7tbl.id,
s484716fad7tbl.label,
s484716fad7tbl.firmid,
s484716fad7tbl.createon,
s484716fad7tbl.modifyon,
s484716fad7tbl.createdby,
s484716fad7tbl.lastmodifiedby,
md5(((s484716fad7tbl.id)::text || 'ServTransferRoutePoint'::text)) AS hashid,
'ServTransferRoutePoint'::text AS module
FROM serv_transfer_route_point s484716fad7tbl
UNION
SELECT s181e6afb9etbl.id,
s181e6afb9etbl.label,
s181e6afb9etbl.firmid,
s181e6afb9etbl.createon,
s181e6afb9etbl.modifyon,
s181e6afb9etbl.createdby,
s181e6afb9etbl.lastmodifiedby,
md5(((s181e6afb9etbl.id)::text || 'ShopPermission'::text)) AS hashid,
'ShopPermission'::text AS module
FROM shop_permission s181e6afb9etbl
UNION
SELECT s0dbabdc917tbl.id,
s0dbabdc917tbl.label,
s0dbabdc917tbl.firmid,
s0dbabdc917tbl.createon,
s0dbabdc917tbl.modifyon,
s0dbabdc917tbl.createdby,
s0dbabdc917tbl.lastmodifiedby,
md5(((s0dbabdc917tbl.id)::text || 'ShopUser'::text)) AS hashid,
'ShopUser'::text AS module
FROM shop_user s0dbabdc917tbl
UNION
SELECT tb34a44a279tbl.id,
tb34a44a279tbl.account_name AS label,
tb34a44a279tbl.firmid,
tb34a44a279tbl.createon,
tb34a44a279tbl.modifyon,
tb34a44a279tbl.createdby,
tb34a44a279tbl.lastmodifiedby,
md5(((tb34a44a279tbl.id)::text || 'TmAccount'::text)) AS hashid,
'TmAccount'::text AS module
FROM tm_account tb34a44a279tbl
UNION
SELECT tf95cef3041tbl.id,
(((((tf95cef3041tbl.contact_surname)::text || ' '::text) ||
(tf95cef3041tbl.contact_name)::text) || ' '::text) ||
(tf95cef3041tbl.contact_patronymic)::text) AS label,
tf95cef3041tbl.firmid,
tf95cef3041tbl.createon,
tf95cef3041tbl.modifyon,
tf95cef3041tbl.createdby,
tf95cef3041tbl.lastmodifiedby,
md5(((tf95cef3041tbl.id)::text || 'TmContact'::text)) AS hashid,
'TmContact'::text AS module
FROM tm_contact tf95cef3041tbl
UNION
SELECT tc000aa142ctbl.id,
tc000aa142ctbl.label,
tc000aa142ctbl.firmid,
tc000aa142ctbl.createon,
tc000aa142ctbl.modifyon,
tc000aa142ctbl.createdby,
tc000aa142ctbl.lastmodifiedby,
md5(((tc000aa142ctbl.id)::text || 'TmContactEasy'::text)) AS hashid,
'TmContactEasy'::text AS module
FROM tm_contact_easy tc000aa142ctbl
UNION
SELECT t8d91b8a171tbl.id,
t8d91b8a171tbl.label,
t8d91b8a171tbl.firmid,
t8d91b8a171tbl.createon,
t8d91b8a171tbl.modifyon,
t8d91b8a171tbl.createdby,
t8d91b8a171tbl.lastmodifiedby,
md5(((t8d91b8a171tbl.id)::text || 'TmFirms'::text)) AS hashid,
'TmFirms'::text AS module
FROM tm_firms t8d91b8a171tbl
UNION
SELECT t5869d1f81ftbl.id,
NULL::text AS label,
t5869d1f81ftbl.firmid,
t5869d1f81ftbl.createon,
t5869d1f81ftbl.modifyon,
t5869d1f81ftbl.createdby,
t5869d1f81ftbl.lastmodifiedby,
md5(((t5869d1f81ftbl.id)::text || 'TmFirmSettings'::text)) AS hashid,
'TmFirmSettings'::text AS module
FROM tm_firm_settings t5869d1f81ftbl
UNION
SELECT tc13ac3749atbl.id,
NULL::text AS label,
tc13ac3749atbl.firmid,
tc13ac3749atbl.createon,
tc13ac3749atbl.modifyon,
tc13ac3749atbl.createdby,
tc13ac3749atbl.lastmodifiedby,
md5(((tc13ac3749atbl.id)::text || 'TmImage'::text)) AS hashid,
'TmImage'::text AS module
FROM tm_image tc13ac3749atbl
UNION
SELECT t05a18e3900tbl.id,
t05a18e3900tbl.label,
t05a18e3900tbl.firmid,
t05a18e3900tbl.createon,
t05a18e3900tbl.modifyon,
t05a18e3900tbl.createdby,
t05a18e3900tbl.lastmodifiedby,
md5(((t05a18e3900tbl.id)::text || 'TmMailNewsletter'::text)) AS hashid,
'TmMailNewsletter'::text AS module
FROM tm_mail_newsletter t05a18e3900tbl
UNION
SELECT t0f93470591tbl.id,
t0f93470591tbl.label,
t0f93470591tbl.firmid,
t0f93470591tbl.createon,
t0f93470591tbl.modifyon,
t0f93470591tbl.createdby,
t0f93470591tbl.lastmodifiedby,
md5(((t0f93470591tbl.id)::text || 'TmMailNewsletterGroup'::text)) AS hashid,
'TmMailNewsletterGroup'::text AS module
FROM tm_mail_newsletter_group t0f93470591tbl
UNION
SELECT uaa8124f6dftbl.id,
uaa8124f6dftbl.label,
uaa8124f6dftbl.firmid,
uaa8124f6dftbl.createon,
uaa8124f6dftbl.modifyon,
uaa8124f6dftbl.createdby,
uaa8124f6dftbl.lastmodifiedby,
md5(((uaa8124f6dftbl.id)::text || 'UserDetail'::text)) AS hashid,
'UserDetail'::text AS module
FROM user_detail uaa8124f6dftbl
UNION
SELECT ucd4d2c916btbl.id,
NULL::text AS label,
ucd4d2c916btbl.firmid,
ucd4d2c916btbl.createon,
ucd4d2c916btbl.modifyon,
ucd4d2c916btbl.createdby,
ucd4d2c916btbl.lastmodifiedby,
md5(((ucd4d2c916btbl.id)::text || 'Users'::text)) AS hashid,
'Users'::text AS module
FROM users ucd4d2c916btbl;
--
-- Structure for table shop_user (OID = 79682) :
--
CREATE TABLE public.shop_user (
id integer NOT NULL,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
serieskey varchar(255),
version integer,
activated boolean,
activationkey varchar(255),
email varchar(255),
enabled boolean,
firstname varchar(255),
lastname varchar(255),
password varchar(<PASSWORD>),
username varchar(255) NOT NULL,
image_id integer,
token varchar(255),
phonenumber varchar(255),
popularity integer,
shop_permission_id integer,
label varchar(255)
) WITHOUT OIDS;
--
-- Structure for table shop_permission (OID = 79692) :
--
CREATE TABLE public.shop_permission (
id integer NOT NULL,
allocated_firm_id integer,
physical_person boolean,
corporate_customer boolean,
travel_agency boolean,
travel_operator boolean,
partner boolean,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
popularity integer,
serieskey varchar(255),
version integer,
label varchar(255)
) WITHOUT OIDS;
--
-- Structure for table info_permission (OID = 79697) :
--
CREATE TABLE public.info_permission (
id integer NOT NULL,
descr varchar,
doc_document_id integer,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
popularity integer,
serieskey varchar(255),
version integer,
label varchar(255)
) WITHOUT OIDS;
--
-- Structure for table rel_shop_permission (OID = 79705) :
--
CREATE TABLE public.rel_shop_permission (
id integer NOT NULL,
shop_permission_id integer,
info_permission_id integer
) WITHOUT OIDS;
--
-- Definition for sequence sq_infopermission (OID = 80299) :
--
CREATE SEQUENCE public.sq_infopermission
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_relshoppermission (OID = 80301) :
--
CREATE SEQUENCE public.sq_relshoppermission
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_shoppermission (OID = 80303) :
--
CREATE SEQUENCE public.sq_shoppermission
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_shopuser (OID = 80305) :
--
CREATE SEQUENCE public.sq_shopuser
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Structure for table user_detail (OID = 80307) :
--
CREATE TABLE public.user_detail (
id integer NOT NULL,
company_name varchar,
company_site varchar,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
popularity integer,
serieskey varchar(255),
version integer,
label varchar(255)
) WITHOUT OIDS;
--
-- Structure for table rel_user_details (OID = 80315) :
--
CREATE TABLE public.rel_user_details (
id integer NOT NULL,
user_details_id integer,
users_id integer
) WITHOUT OIDS;
--
-- Definition for sequence sq_reluserdetails (OID = 80413) :
--
CREATE SEQUENCE public.sq_reluserdetails
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_userdetail (OID = 80415) :
--
CREATE SEQUENCE public.sq_userdetail
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Structure for table tm_mail_newsletter (OID = 80945) :
--
CREATE TABLE public.tm_mail_newsletter (
id integer NOT NULL,
subject varchar,
content varchar,
background_color varchar,
badge varchar,
badge_type varchar,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
popularity integer,
serieskey varchar(255),
version integer,
label varchar(255)
) WITHOUT OIDS;
--
-- Structure for table tm_mail_newsletter_group (OID = 80953) :
--
CREATE TABLE public.tm_mail_newsletter_group (
id integer NOT NULL,
email varchar,
name varchar,
createdby varchar(255),
createon timestamp without time zone,
firmid integer,
lastmodifiedby varchar(255),
modifyon timestamp without time zone,
popularity integer,
serieskey varchar(255),
version integer,
label varchar(255)
) WITHOUT OIDS;
--
-- Structure for table rel_mail_newsletter_group (OID = 80961) :
--
CREATE TABLE public.rel_mail_newsletter_group (
id integer NOT NULL,
tm_mail_newsletter_id integer,
tm_mail_newsletter_group_id integer
) WITHOUT OIDS;
--
-- Definition for sequence sq_relmailnewslettergroup (OID = 80976) :
--
CREATE SEQUENCE public.sq_relmailnewslettergroup
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_tmmailnewsletter (OID = 80978) :
--
CREATE SEQUENCE public.sq_tmmailnewsletter
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for sequence sq_tmmailnewslettergroup (OID = 80980) :
--
CREATE SEQUENCE public.sq_tmmailnewslettergroup
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- Definition for view curr_course_view (OID = 80982) :
--
CREATE VIEW public.curr_course_view AS
SELECT curr_course.id,
curr_course.version,
curr_course.createdby,
curr_course.createon,
curr_course.firmid AS firm,
curr_course.lastmodifiedby,
curr_course.modifyon,
curr_course.serieskey,
curr_course.course,
curr_course.currencyid AS currency,
curr_course.datecourse,
curr_course.popularity
FROM curr_course;
--
-- Definition for view curr_currency_view (OID = 80986) :
--
CREATE VIEW public.curr_currency_view AS
SELECT curr_currency.id,
curr_currency.version,
curr_currency.createdby,
curr_currency.createon,
curr_currency.firmid AS firm,
curr_currency.lastmodifiedby,
curr_currency.modifyon,
curr_currency.serieskey,
curr_currency.course,
curr_currency.currencyname,
curr_currency.descr,
curr_currency.isbase,
curr_currency.iso_code AS isocode,
curr_currency.nameeng,
curr_currency.nameru,
curr_currency.popularity
FROM curr_currency;
--
-- Definition for view dict_global_view (OID = 80990) :
--
CREATE VIEW public.dict_global_view AS
SELECT dict_global.id,
dict_global.version,
dict_global.createdby,
dict_global.createon,
dict_global.firmid AS firm,
dict_global.lastmodifiedby,
dict_global.modifyon,
dict_global.serieskey,
dict_global.dict_type AS dicttype,
dict_global.dict_value AS dictvalue,
dict_global.dict_value_additional AS dictvalueadditional,
dict_global.popularity
FROM dict_global;
--
-- Definition for view doc_documents_view (OID = 80994) :
--
CREATE VIEW public.doc_documents_view AS
SELECT doc_documents.id,
doc_documents.version,
doc_documents.createdby,
doc_documents.createon,
doc_documents.firmid AS firm,
doc_documents.lastmodifiedby,
doc_documents.modifyon,
doc_documents.serieskey,
doc_documents.contenttype,
doc_documents.extension,
doc_documents.originalfilename,
doc_documents.path,
doc_documents.simpletype,
doc_documents.size,
doc_documents.synopsis,
doc_documents.popularity,
doc_documents.originalfilename AS label
FROM doc_documents;
--
-- Definition for view info_contact_information_view (OID = 80998) :
--
CREATE VIEW public.info_contact_information_view AS
SELECT info_contact_information.id,
info_contact_information.version,
info_contact_information.createdby,
info_contact_information.createon,
info_contact_information.firmid AS firm,
info_contact_information.lastmodifiedby,
info_contact_information.modifyon,
info_contact_information.serieskey,
info_contact_information.contact,
info_contact_information.descr,
info_contact_information.email,
info_contact_information.email2,
info_contact_information.email3,
info_contact_information.phone,
info_contact_information.phone2,
info_contact_information.phone3,
info_contact_information.website,
info_contact_information.popularity
FROM info_contact_information;
--
-- Definition for view info_permission_view (OID = 81002) :
--
CREATE VIEW public.info_permission_view AS
SELECT info_permission.id,
info_permission.version,
info_permission.descr,
info_permission.createdby,
info_permission.createon,
info_permission.firmid AS firm,
info_permission.lastmodifiedby,
info_permission.modifyon,
info_permission.popularity,
info_permission.serieskey,
info_permission.label,
doc_documents0.originalfilename AS docdocuments,
doc_documents0.id AS docdocumentsid
FROM (info_permission
LEFT JOIN doc_documents doc_documents0 ON
((info_permission.doc_document_id = doc_documents0.id)));
--
-- Definition for view location_address_view (OID = 81007) :
--
CREATE VIEW public.location_address_view AS
SELECT location_address.id,
location_address.version,
location_address.createdby,
location_address.createon,
location_address.firmid AS firm,
location_address.lastmodifiedby,
location_address.modifyon,
location_address.serieskey,
location_address.label,
location_address.descr,
location_address.name,
location_address.yandex_map_point_x AS yandexmappointx,
location_address.yandex_map_point_y AS yandexmappointy,
location_address.popularity
FROM location_address;
--
-- Definition for view location_cities_view (OID = 81011) :
--
CREATE VIEW public.location_cities_view AS
SELECT location_cities.id,
location_cities.version,
location_cities.createdby,
location_cities.createon,
location_cities.firmid AS firm,
location_cities.lastmodifiedby,
location_cities.modifyon,
location_cities.serieskey,
location_cities.cityname,
location_cities.descr,
location_cities.popularity,
location_countries0.countryname AS locationcountries,
location_countries0.id AS locationcountriesid
FROM (location_cities
LEFT JOIN location_countries location_countries0 ON
((location_cities.countryid = location_countries0.id)));
--
-- Definition for view location_countries_view (OID = 81015) :
--
CREATE VIEW public.location_countries_view AS
SELECT location_countries.id,
location_countries.version,
location_countries.createdby,
location_countries.createon,
location_countries.firmid AS firm,
location_countries.lastmodifiedby,
location_countries.modifyon,
location_countries.serieskey,
location_countries.countryname,
location_countries.descr,
location_countries.iso_code AS isocode,
location_countries.nameeng,
location_countries.popularity
FROM location_countries;
--
-- Definition for view payment_details_view (OID = 81019) :
--
CREATE VIEW public.payment_details_view AS
SELECT payment_details.id,
payment_details.version,
payment_details.createdby,
payment_details.createon,
payment_details.firmid AS firm,
payment_details.lastmodifiedby,
payment_details.modifyon,
payment_details.serieskey,
payment_details.bank_location AS banklocation,
payment_details.bin,
payment_details.correspondent_account AS correspondentaccount,
payment_details.current_account AS currentaccount,
payment_details.full_name AS fullname,
payment_details.iin,
payment_details.legal_address AS legaladdress,
payment_details.name_of_the_bank AS nameofthebank,
payment_details.nceo,
payment_details.phone,
payment_details.phone2,
payment_details.postal_address AS postaladdress,
payment_details.popularity
FROM payment_details;
--
-- Definition for view payment_price_view (OID = 81023) :
--
CREATE VIEW public.payment_price_view AS
SELECT payment_price.id,
payment_price.version,
payment_price.createdby,
payment_price.createon,
payment_price.firmid AS firm,
payment_price.lastmodifiedby,
payment_price.modifyon,
payment_price.serieskey,
payment_price.humannumber,
payment_price.price,
payment_price.popularity,
''::text AS paymenttariff,
payment_tariff0.id AS paymenttariffid
FROM (payment_price
LEFT JOIN payment_tariff payment_tariff0 ON
((payment_price.payment_tariff_id = payment_tariff0.id)));
--
-- Definition for view payment_price_shop_view (OID = 81027) :
--
CREATE VIEW public.payment_price_shop_view AS
SELECT payment_price_shop.id,
payment_price_shop.version,
payment_price_shop.createdby,
payment_price_shop.createon,
payment_price_shop.firmid AS firm,
payment_price_shop.lastmodifiedby,
payment_price_shop.modifyon,
payment_price_shop.serieskey,
payment_price_shop.humannumber,
payment_price_shop.price,
payment_price_shop.popularity,
''::text AS paymenttariffshop,
payment_tariff_shop0.id AS paymenttariffshopid
FROM (payment_price_shop
LEFT JOIN payment_tariff_shop payment_tariff_shop0 ON
((payment_price_shop.payment_tariff_shop_id = payment_tariff_shop0.id)));
--
-- Definition for view payment_tariff_view (OID = 81032) :
--
CREATE VIEW public.payment_tariff_view AS
SELECT payment_tariff.id,
payment_tariff.version,
payment_tariff.createdby,
payment_tariff.createon,
payment_tariff.firmid AS firm,
payment_tariff.lastmodifiedby,
payment_tariff.modifyon,
payment_tariff.serieskey,
payment_tariff.popularity
FROM payment_tariff;
--
-- Definition for view payment_tariff_shop_view (OID = 81036) :
--
CREATE VIEW public.payment_tariff_shop_view AS
SELECT payment_tariff_shop.id,
payment_tariff_shop.version,
payment_tariff_shop.percentage_of_allowances AS percentageofallowances,
payment_tariff_shop.is_percentage_of_allowances AS ispercentageofallowances,
payment_tariff_shop.createdby,
payment_tariff_shop.createon,
payment_tariff_shop.firmid AS firm,
payment_tariff_shop.lastmodifiedby,
payment_tariff_shop.modifyon,
payment_tariff_shop.popularity,
payment_tariff_shop.serieskey
FROM payment_tariff_shop;
--
-- Definition for view rel_mail_newsletter_group_view (OID = 81040) :
--
CREATE VIEW public.rel_mail_newsletter_group_view AS
SELECT rel_mail_newsletter_group.id,
tm_mail_newsletter0.label AS tmmailnewsletter,
tm_mail_newsletter0.id AS tmmailnewsletterid,
tm_mail_newsletter_group1.label AS tmmailnewslettergroup,
tm_mail_newsletter_group1.id AS tmmailnewslettergroupid
FROM ((rel_mail_newsletter_group
LEFT JOIN tm_mail_newsletter tm_mail_newsletter0 ON
((rel_mail_newsletter_group.tm_mail_newsletter_id =
tm_mail_newsletter0.id)))
LEFT JOIN tm_mail_newsletter_group tm_mail_newsletter_group1 ON
((rel_mail_newsletter_group.tm_mail_newsletter_group_id =
tm_mail_newsletter_group1.id)));
--
-- Definition for view rel_serv_hotel_doc_documents_view (OID = 81045) :
--
CREATE VIEW public.rel_serv_hotel_doc_documents_view AS
SELECT rel_serv_hotel_doc_documents.id,
doc_documents0.originalfilename AS docdocuments,
doc_documents0.id AS docdocumentsid,
serv_hotel1.label AS servhotel,
serv_hotel1.id AS servhotelid
FROM ((rel_serv_hotel_doc_documents
LEFT JOIN doc_documents doc_documents0 ON
((rel_serv_hotel_doc_documents.doc_documents_id = doc_documents0.id)))
LEFT JOIN serv_hotel serv_hotel1 ON
((rel_serv_hotel_doc_documents.serv_hotel_id = serv_hotel1.id)));
--
-- Definition for view rel_serv_hotel_image_view (OID = 81050) :
--
CREATE VIEW public.rel_serv_hotel_image_view AS
SELECT rel_serv_hotel_image.id,
serv_hotel0.label AS servhotel,
serv_hotel0.id AS servhotelid,
(((tm_image1.name)::text || '.'::text) || (tm_image1.extension)::text)
AS tmimage,
tm_image1.id AS tmimageid
FROM ((rel_serv_hotel_image
LEFT JOIN serv_hotel serv_hotel0 ON
((rel_serv_hotel_image.serv_hotel_id = serv_hotel0.id)))
LEFT JOIN tm_image tm_image1 ON ((rel_serv_hotel_image.image_id =
tm_image1.id)));
--
-- Definition for view rel_serv_hotel_room_image_view (OID = 81055) :
--
CREATE VIEW public.rel_serv_hotel_room_image_view AS
SELECT rel_serv_hotel_room_image.id,
serv_hotel_room0.label AS servhotelroom,
serv_hotel_room0.id AS servhotelroomid,
(((tm_image1.name)::text || '.'::text) || (tm_image1.extension)::text)
AS tmimage,
tm_image1.id AS tmimageid
FROM ((rel_serv_hotel_room_image
LEFT JOIN serv_hotel_room serv_hotel_room0 ON
((rel_serv_hotel_room_image.serv_hotel_room_id = serv_hotel_room0.id)))
LEFT JOIN tm_image tm_image1 ON ((rel_serv_hotel_room_image.image_id =
tm_image1.id)));
--
-- Definition for view rel_serv_transfer_tm_contact_view (OID = 81060) :
--
CREATE VIEW public.rel_serv_transfer_tm_contact_view AS
SELECT rel_serv_transfer_tm_contact.id,
serv_transfer0.label AS servtransfer,
serv_transfer0.id AS servtransferid,
(((tm_contact1.contact_surname)::text || ' '::text) ||
(tm_contact1.contact_name)::text) AS tmcontact,
tm_contact1.id AS tmcontactid
FROM ((rel_serv_transfer_tm_contact
LEFT JOIN serv_transfer serv_transfer0 ON
((rel_serv_transfer_tm_contact.serv_transfers_id = serv_transfer0.id)))
LEFT JOIN tm_contact tm_contact1 ON
((rel_serv_transfer_tm_contact.tm_contact_id = tm_contact1.id)));
--
-- Definition for view rel_shop_permission_view (OID = 81065) :
--
CREATE VIEW public.rel_shop_permission_view AS
SELECT rel_shop_permission.id,
info_permission0.label AS infopermission,
info_permission0.id AS infopermissionid,
shop_permission1.label AS shoppermission,
shop_permission1.id AS shoppermissionid
FROM ((rel_shop_permission
LEFT JOIN info_permission info_permission0 ON
((rel_shop_permission.info_permission_id = info_permission0.id)))
LEFT JOIN shop_permission shop_permission1 ON
((rel_shop_permission.shop_permission_id = shop_permission1.id)));
--
-- Definition for view rel_user_details_view (OID = 81070) :
--
CREATE VIEW public.rel_user_details_view AS
SELECT rel_user_details.id,
user_detail0.label AS userdetail,
user_detail0.id AS userdetailid,
(((users1.lastname)::text || ' '::text) || (users1.firstname)::text) AS users,
users1.id AS usersid,
users1.user_color AS usersusercolor
FROM ((rel_user_details
LEFT JOIN user_detail user_detail0 ON
((rel_user_details.user_details_id = user_detail0.id)))
LEFT JOIN users users1 ON ((rel_user_details.users_id = users1.id)));
--
-- Definition for view req_serv_hotel_view (OID = 81075) :
--
CREATE VIEW public.req_serv_hotel_view AS
SELECT req_serv_hotel.id,
req_serv_hotel.version,
req_serv_hotel.createdby,
req_serv_hotel.createon,
req_serv_hotel.firmid AS firm,
req_serv_hotel.lastmodifiedby,
req_serv_hotel.modifyon,
req_serv_hotel.serieskey,
req_serv_hotel.label,
req_serv_hotel.accept,
req_serv_hotel.datedifference,
req_serv_hotel.decline,
req_serv_hotel.departure,
req_serv_hotel.descr,
req_serv_hotel.payment_type AS paymenttype,
req_serv_hotel.price,
req_serv_hotel.progress,
req_serv_hotel.race,
req_serv_hotel.room_count AS roomcount,
req_serv_hotel.singleprice,
req_serv_hotel.tariffcurrency,
req_serv_hotel.request_number AS requestnumber,
req_serv_hotel.cancel,
req_serv_hotel.confirm,
req_serv_hotel.archived,
req_serv_hotel.popularity,
doc_documents0.originalfilename AS docdocumentsbydocumentforuser,
doc_documents0.id AS docdocumentsbydocumentforuserid,
doc_documents1.originalfilename AS docdocumentsbydocumentforhotel,
doc_documents1.id AS docdocumentsbydocumentforhotelid,
(((payment_price2.price || ' ['::text) || payment_price2.humannumber)
|| ']'::text) AS paymentprice,
payment_price2.id AS paymentpriceid,
''::text AS paymenttariff,
payment_tariff3.id AS paymenttariffid,
serv_hotel4.label AS servhotel,
serv_hotel4.id AS servhotelid,
serv_hotel_room5.label AS servhotelroom,
serv_hotel_room5.id AS servhotelroomid,
(((users6.lastname)::text || ' '::text) || (users6.firstname)::text) AS
usersbyrequestuser,
users6.id AS usersbyrequestuserid,
users6.user_color AS usersbyrequestuserusercolor,
(((users7.lastname)::text || ' '::text) || (users7.firstname)::text) AS
usersbyresponseuser,
users7.id AS usersbyresponseuserid,
users7.user_color AS usersbyresponseuserusercolor
FROM ((((((((req_serv_hotel
LEFT JOIN doc_documents doc_documents0 ON
((req_serv_hotel.document_for_user_id = doc_documents0.id)))
LEFT JOIN doc_documents doc_documents1 ON
((req_serv_hotel.document_for_hotel_id = doc_documents1.id)))
LEFT JOIN payment_price payment_price2 ON
((req_serv_hotel.payment_price_id = payment_price2.id)))
LEFT JOIN payment_tariff payment_tariff3 ON
((req_serv_hotel.payment_tariff_id = payment_tariff3.id)))
LEFT JOIN serv_hotel serv_hotel4 ON ((req_serv_hotel.serv_hotel_id =
serv_hotel4.id)))
LEFT JOIN serv_hotel_room serv_hotel_room5 ON
((req_serv_hotel.serv_hotel_room_id = serv_hotel_room5.id)))
LEFT JOIN users users6 ON ((req_serv_hotel.request_user_id = users6.id)))
LEFT JOIN users users7 ON ((req_serv_hotel.response_user_id = users7.id)));
--
-- Definition for view serv_hotel_view (OID = 81080) :
--
CREATE VIEW public.serv_hotel_view AS
SELECT serv_hotel.id,
serv_hotel.version,
serv_hotel.createdby,
serv_hotel.createon,
serv_hotel.firmid AS firm,
serv_hotel.lastmodifiedby,
serv_hotel.modifyon,
serv_hotel.serieskey,
serv_hotel.label,
serv_hotel.blacklist,
serv_hotel.condition_text AS conditiontext,
serv_hotel.descr,
serv_hotel.descr_internal AS descrinternal,
serv_hotel.favorite,
serv_hotel.freesale,
serv_hotel.problem,
serv_hotel.showonline,
serv_hotel.starcount,
serv_hotel.synopsis,
serv_hotel.timedeparture,
serv_hotel.timeearlyrace,
serv_hotel.timelatedeparture,
serv_hotel.timerace,
serv_hotel.whereroomsarebooked,
serv_hotel.popularity,
((((info_contact_information0.contact)::text || ' ['::text) ||
(info_contact_information0.phone)::text) || ']'::text) AS
infocontactinformation,
info_contact_information0.id AS infocontactinformationid,
location_address1.label AS locationaddress,
location_address1.id AS locationaddressid,
location_cities2.cityname AS locationcities,
location_cities2.id AS locationcitiesid,
location_countries3.countryname AS locationcountries,
location_countries3.id AS locationcountriesid,
payment_details4.full_name AS paymentdetails,
payment_details4.id AS paymentdetailsid
FROM (((((serv_hotel
LEFT JOIN info_contact_information info_contact_information0 ON
((serv_hotel.contactinformation_id = info_contact_information0.id)))
LEFT JOIN location_address location_address1 ON
((serv_hotel.address_id = location_address1.id)))
LEFT JOIN location_cities location_cities2 ON
((serv_hotel.locationcities_id = location_cities2.id)))
LEFT JOIN location_countries location_countries3 ON
((serv_hotel.locationcountries_id = location_countries3.id)))
LEFT JOIN payment_details payment_details4 ON
((serv_hotel.payment_details_id = payment_details4.id)));
--
-- Definition for view serv_hotel_room_view (OID = 81085) :
--
CREATE VIEW public.serv_hotel_room_view AS
SELECT serv_hotel_room.id,
serv_hotel_room.version,
serv_hotel_room.createdby,
serv_hotel_room.createon,
serv_hotel_room.firmid AS firm,
serv_hotel_room.lastmodifiedby,
serv_hotel_room.modifyon,
serv_hotel_room.serieskey,
serv_hotel_room.label,
serv_hotel_room.breakfast,
serv_hotel_room.descr,
serv_hotel_room.guest_number AS guestnumber,
serv_hotel_room.room_number AS roomnumber,
serv_hotel_room.dinner,
serv_hotel_room.lunch,
serv_hotel_room.discount,
serv_hotel_room.is_discount AS isdiscount,
serv_hotel_room.commission,
serv_hotel_room.fresale,
serv_hotel_room.fresale_today AS fresaletoday,
serv_hotel_room.fresale_enabled AS fresaleenabled,
serv_hotel_room.fresale_start AS fresalestart,
serv_hotel_room.fresale_end AS fresaleend,
serv_hotel_room.is_commission AS iscommission,
serv_hotel_room.popularity,
dict_global0.dict_value AS dictglobal,
dict_global0.id AS dictglobalid,
''::text AS paymenttariffbycosttarriff,
payment_tariff1.id AS paymenttariffbycosttarriffid,
''::text AS paymenttariffbyrrtarriff,
payment_tariff2.id AS paymenttariffbyrrtarriffid,
''::text AS paymenttariffshop,
payment_tariff_shop3.id AS paymenttariffshopid,
serv_hotel4.label AS servhotel,
serv_hotel4.id AS servhotelid
FROM (((((serv_hotel_room
LEFT JOIN dict_global dict_global0 ON ((serv_hotel_room.room_type_id =
dict_global0.id)))
LEFT JOIN payment_tariff payment_tariff1 ON
((serv_hotel_room.cost_tarriff_id = payment_tariff1.id)))
LEFT JOIN payment_tariff payment_tariff2 ON
((serv_hotel_room.rr_tarriff_id = payment_tariff2.id)))
LEFT JOIN payment_tariff_shop payment_tariff_shop3 ON
((serv_hotel_room.shop_tarriff_id = payment_tariff_shop3.id)))
LEFT JOIN serv_hotel serv_hotel4 ON ((serv_hotel_room.hotel_id =
serv_hotel4.id)));
--
-- Definition for view serv_transfer_view (OID = 81090) :
--
CREATE VIEW public.serv_transfer_view AS
SELECT serv_transfer.id,
serv_transfer.version,
serv_transfer.createdby,
serv_transfer.createon,
serv_transfer.firmid AS firm,
serv_transfer.lastmodifiedby,
serv_transfer.modifyon,
serv_transfer.serieskey,
serv_transfer.label,
serv_transfer.date_from AS datefrom,
serv_transfer.date_to AS dateto,
serv_transfer.descr,
serv_transfer.passengers_phones AS passengersphones,
serv_transfer.price,
serv_transfer.transfer_name AS transfername,
serv_transfer.visit_table AS visittable,
serv_transfer.popularity,
curr_currency0.currencyname AS currcurrency,
curr_currency0.id AS currcurrencyid,
dict_global1.dict_value AS dictglobalbypaymenttype,
dict_global1.id AS dictglobalbypaymenttypeid,
dict_global2.dict_value AS dictglobalbytypetransfer,
dict_global2.id AS dictglobalbytypetransferid,
dict_global3.dict_value AS dictglobalbytransport,
dict_global3.id AS dictglobalbytransportid,
location_cities4.cityname AS locationcities,
location_cities4.id AS locationcitiesid,
location_countries5.countryname AS locationcountries,
location_countries5.id AS locationcountriesid,
tm_account6.account_name AS tmaccount,
tm_account6.id AS tmaccountid
FROM (((((((serv_transfer
LEFT JOIN curr_currency curr_currency0 ON ((serv_transfer.currency_id
= curr_currency0.id)))
LEFT JOIN dict_global dict_global1 ON ((serv_transfer.payment_type_id
= dict_global1.id)))
LEFT JOIN dict_global dict_global2 ON ((serv_transfer.type_transfer_id
= dict_global2.id)))
LEFT JOIN dict_global dict_global3 ON ((serv_transfer.transport_id =
dict_global3.id)))
LEFT JOIN location_cities location_cities4 ON
((serv_transfer.location_cities_id = location_cities4.id)))
LEFT JOIN location_countries location_countries5 ON
((serv_transfer.location_countries_id = location_countries5.id)))
LEFT JOIN tm_account tm_account6 ON ((serv_transfer.account_id =
tm_account6.id)));
--
-- Definition for view serv_transfer_route_view (OID = 81095) :
--
CREATE VIEW public.serv_transfer_route_view AS
SELECT serv_transfer_route.id,
serv_transfer_route.version,
serv_transfer_route.createdby,
serv_transfer_route.createon,
serv_transfer_route.firmid AS firm,
serv_transfer_route.lastmodifiedby,
serv_transfer_route.modifyon,
serv_transfer_route.serieskey,
serv_transfer_route.label,
serv_transfer_route.descr,
serv_transfer_route.driver,
serv_transfer_route.driver_phone AS driverphone,
serv_transfer_route.fixed_allowance AS fixedallowance,
serv_transfer_route.free,
serv_transfer_route.percentage_of_allowances AS percentageofallowances,
serv_transfer_route.sum,
serv_transfer_route.popularity,
curr_currency0.currencyname AS currcurrency,
curr_currency0.id AS currcurrencyid,
serv_transfer1.label AS servtransfer,
serv_transfer1.id AS servtransferid
FROM ((serv_transfer_route
LEFT JOIN curr_currency curr_currency0 ON
((serv_transfer_route.currency_id = curr_currency0.id)))
LEFT JOIN serv_transfer serv_transfer1 ON
((serv_transfer_route.serv_transfer_id = serv_transfer1.id)));
--
-- Definition for view serv_transfer_route_point_view (OID = 81100) :
--
CREATE VIEW public.serv_transfer_route_point_view AS
SELECT serv_transfer_route_point.id,
serv_transfer_route_point.version,
serv_transfer_route_point.createdby,
serv_transfer_route_point.createon,
serv_transfer_route_point.firmid AS firm,
serv_transfer_route_point.lastmodifiedby,
serv_transfer_route_point.modifyon,
serv_transfer_route_point.serieskey,
serv_transfer_route_point.label,
serv_transfer_route_point.fixed_allowance AS fixedallowance,
serv_transfer_route_point.free,
serv_transfer_route_point.percentage_of_allowances AS percentageofallowances,
serv_transfer_route_point.point_from AS pointfrom,
serv_transfer_route_point.point_to AS pointto,
serv_transfer_route_point.start_on AS starton,
serv_transfer_route_point.sum,
serv_transfer_route_point.popularity,
serv_transfer_route0.label AS servtransferroute,
serv_transfer_route0.id AS servtransferrouteid
FROM (serv_transfer_route_point
LEFT JOIN serv_transfer_route serv_transfer_route0 ON
((serv_transfer_route_point.transfer_route_id =
serv_transfer_route0.id)));
--
-- Definition for view shop_permission_view (OID = 81105) :
--
CREATE VIEW public.shop_permission_view AS
SELECT shop_permission.id,
shop_permission.version,
shop_permission.allocated_firm_id AS allocatedfirm,
shop_permission.physical_person AS physicalperson,
shop_permission.corporate_customer AS corporatecustomer,
shop_permission.travel_agency AS travelagency,
shop_permission.travel_operator AS traveloperator,
shop_permission.partner,
shop_permission.createdby,
shop_permission.createon,
shop_permission.firmid AS firm,
shop_permission.lastmodifiedby,
shop_permission.modifyon,
shop_permission.popularity,
shop_permission.serieskey,
shop_permission.label
FROM shop_permission;
--
-- Definition for view shop_user_view (OID = 81109) :
--
CREATE VIEW public.shop_user_view AS
SELECT shop_user.id,
shop_user.version,
shop_user.createdby,
shop_user.createon,
shop_user.firmid AS firm,
shop_user.lastmodifiedby,
shop_user.modifyon,
shop_user.serieskey,
shop_user.activated,
shop_user.activationkey,
shop_user.email,
shop_user.enabled,
shop_user.firstname,
shop_user.lastname,
shop_user.password,
shop_user.username,
shop_user.image_id AS image,
shop_user.token,
shop_user.phonenumber,
shop_user.popularity,
shop_user.shop_permission_id AS shoppermission,
shop_user.label
FROM shop_user;
--
-- Definition for view tm_account_view (OID = 81113) :
--
CREATE VIEW public.tm_account_view AS
SELECT tm_account.id,
tm_account.version,
tm_account.createdby,
tm_account.createon,
tm_account.firmid AS firm,
tm_account.lastmodifiedby,
tm_account.modifyon,
tm_account.serieskey,
tm_account.account_fullname AS accountfullname,
tm_account.account_name AS accountname,
tm_account.descr,
tm_account.popularity,
location_countries0.countryname AS locationcountries,
location_countries0.id AS locationcountriesid
FROM (tm_account
LEFT JOIN location_countries location_countries0 ON
((tm_account.residency_id = location_countries0.id)));
--
-- Definition for view tm_contact_view (OID = 81118) :
--
CREATE VIEW public.tm_contact_view AS
SELECT tm_contact.id,
tm_contact.version,
tm_contact.createdby,
tm_contact.createon,
tm_contact.firmid AS firm,
tm_contact.lastmodifiedby,
tm_contact.modifyon,
tm_contact.serieskey,
tm_contact.birthday,
tm_contact.contact_name AS contactname,
tm_contact.contact_patronymic AS contactpatronymic,
tm_contact.contact_surname AS contactsurname,
tm_contact.descr,
tm_contact.passport_end_date AS passportenddate,
tm_contact.passport_number AS passportnumber,
tm_contact.passport_start_date AS passportstartdate,
tm_contact.popularity,
location_countries0.countryname AS locationcountries,
location_countries0.id AS locationcountriesid
FROM (tm_contact
LEFT JOIN location_countries location_countries0 ON
((tm_contact.citizenship_id = location_countries0.id)));
--
-- Definition for view tm_contact_easy_view (OID = 81123) :
--
CREATE VIEW public.tm_contact_easy_view AS
SELECT tm_contact_easy.id,
tm_contact_easy.version,
tm_contact_easy.createdby,
tm_contact_easy.createon,
tm_contact_easy.firmid AS firm,
tm_contact_easy.lastmodifiedby,
tm_contact_easy.modifyon,
tm_contact_easy.serieskey,
tm_contact_easy.label,
tm_contact_easy.descr,
tm_contact_easy.email,
tm_contact_easy.man_foman AS manfoman,
tm_contact_easy.phone,
tm_contact_easy.id_card AS card,
tm_contact_easy.identity_number AS entitynumber,
tm_contact_easy.passport,
tm_contact_easy.popularity,
location_countries0.countryname AS locationcountries,
location_countries0.id AS locationcountriesid,
req_serv_hotel1.label AS reqservhotel,
req_serv_hotel1.id AS reqservhotelid
FROM ((tm_contact_easy
LEFT JOIN location_countries location_countries0 ON
((tm_contact_easy.country_id = location_countries0.id)))
LEFT JOIN req_serv_hotel req_serv_hotel1 ON
((tm_contact_easy.req_serv_hotel_id = req_serv_hotel1.id)));
--
-- Definition for view tm_firms_view (OID = 81128) :
--
CREATE VIEW public.tm_firms_view AS
SELECT tm_firms.id,
tm_firms.version,
tm_firms.createdby,
tm_firms.createon,
tm_firms.firmid AS firm,
tm_firms.lastmodifiedby,
tm_firms.modifyon,
tm_firms.serieskey,
tm_firms.label,
tm_firms.accountid AS account,
tm_firms.active,
tm_firms.firm_name AS firmname,
tm_firms.lastpay,
tm_firms.mounthcount,
tm_firms.popularity
FROM tm_firms;
--
-- Definition for view tm_firm_settings_view (OID = 81132) :
--
CREATE VIEW public.tm_firm_settings_view AS
SELECT tm_firm_settings.id,
tm_firm_settings.version,
tm_firm_settings.logo_id AS logo,
tm_firm_settings.brand,
tm_firm_settings.createdby,
tm_firm_settings.createon,
tm_firm_settings.firmid AS firm,
tm_firm_settings.lastmodifiedby,
tm_firm_settings.modifyon,
tm_firm_settings.popularity,
tm_firm_settings.serieskey,
doc_documents0.originalfilename AS docdocuments,
doc_documents0.id AS docdocumentsid
FROM (tm_firm_settings
LEFT JOIN doc_documents doc_documents0 ON
((tm_firm_settings.doc_documents_id = doc_documents0.id)));
--
-- Definition for view tm_image_view (OID = 81137) :
--
CREATE VIEW public.tm_image_view AS
SELECT tm_image.id,
tm_image.version,
tm_image.createdby,
tm_image.createon,
tm_image.firmid AS firm,
tm_image.lastmodifiedby,
tm_image.modifyon,
tm_image.serieskey,
tm_image.contenttype,
tm_image.extension,
tm_image.name,
tm_image.originalfilename,
tm_image.path,
tm_image.size,
tm_image.popularity
FROM tm_image;
--
-- Definition for view tm_mail_newsletter_view (OID = 81141) :
--
CREATE VIEW public.tm_mail_newsletter_view AS
SELECT tm_mail_newsletter.id,
tm_mail_newsletter.version,
tm_mail_newsletter.subject,
tm_mail_newsletter.content,
tm_mail_newsletter.background_color AS backgroundcolor,
tm_mail_newsletter.badge,
tm_mail_newsletter.badge_type AS badgetype,
tm_mail_newsletter.createdby,
tm_mail_newsletter.createon,
tm_mail_newsletter.firmid AS firm,
tm_mail_newsletter.lastmodifiedby,
tm_mail_newsletter.modifyon,
tm_mail_newsletter.popularity,
tm_mail_newsletter.serieskey,
tm_mail_newsletter.label
FROM tm_mail_newsletter;
--
-- Definition for view tm_mail_newsletter_group_view (OID = 81145) :
--
CREATE VIEW public.tm_mail_newsletter_group_view AS
SELECT tm_mail_newsletter_group.id,
tm_mail_newsletter_group.version,
tm_mail_newsletter_group.email,
tm_mail_newsletter_group.name,
tm_mail_newsletter_group.createdby,
tm_mail_newsletter_group.createon,
tm_mail_newsletter_group.firmid AS firm,
tm_mail_newsletter_group.lastmodifiedby,
tm_mail_newsletter_group.modifyon,
tm_mail_newsletter_group.popularity,
tm_mail_newsletter_group.serieskey,
tm_mail_newsletter_group.label
FROM tm_mail_newsletter_group;
--
-- Definition for view tm_user_info_view (OID = 81149) :
--
CREATE VIEW public.tm_user_info_view AS
SELECT tm_user_info.id,
tm_user_info.version,
tm_user_info.createdby,
tm_user_info.createon,
tm_user_info.firmid AS firm,
tm_user_info.lastmodifiedby,
tm_user_info.modifyon,
tm_user_info.serieskey,
tm_user_info.label,
tm_user_info.browser,
tm_user_info.browser_version AS browserversion,
tm_user_info.last_login AS lastlogin,
tm_user_info.platform,
tm_user_info.platformversion,
tm_user_info.proxy_content AS proxycontent,
tm_user_info.remote_host AS remotehost,
tm_user_info.user_agent AS useragent,
tm_user_info.user_ip_address AS useripaddress,
tm_user_info.username,
tm_user_info.popularity
FROM tm_user_info;
--
-- Definition for view user_detail_view (OID = 81153) :
--
CREATE VIEW public.user_detail_view AS
SELECT user_detail.id,
user_detail.version,
user_detail.company_name AS companyname,
user_detail.company_site AS companysite,
user_detail.createdby,
user_detail.createon,
user_detail.firmid AS firm,
user_detail.lastmodifiedby,
user_detail.modifyon,
user_detail.popularity,
user_detail.serieskey,
user_detail.label
FROM user_detail;
--
-- Definition for view user_roles_view (OID = 81157) :
--
CREATE VIEW public.user_roles_view AS
SELECT user_roles.id,
user_roles.role,
(((users0.lastname)::text || ' '::text) || (users0.firstname)::text) AS users,
users0.id AS usersid,
users0.user_color AS usersusercolor
FROM (user_roles
LEFT JOIN users users0 ON ((user_roles.user_id = users0.id)));
--
-- Definition for view users_view (OID = 81162) :
--
CREATE VIEW public.users_view AS
SELECT users.id,
users.version,
users.createdby,
users.createon,
users.firmid AS firm,
users.lastmodifiedby,
users.modifyon,
users.serieskey,
users.activated,
users.activationkey,
users.email,
users.enabled,
users.firstname,
users.landingpage,
users.langkey,
users.lastname,
users.password,
users.username,
users.token,
users.phonenumber,
users.user_color AS usercolor,
users.popularity,
users.shop_user AS shopuser,
users.physical_person AS physicalperson,
users.legal_entity AS legalentity,
(((tm_image0.name)::text || '.'::text) || (tm_image0.extension)::text)
AS tmimage,
tm_image0.id AS tmimageid
FROM (users
LEFT JOIN tm_image tm_image0 ON ((users.image_id = tm_image0.id)));
--
-- Definition for view user_registration_request_view (OID = 81167) :
--
CREATE VIEW public.user_registration_request_view AS
SELECT usr0.id,
usr0.createdby,
usr0.createon,
usr0.firmid AS firm,
usr0.lastmodifiedby,
usr0.modifyon,
usr0.serieskey,
usr0.version,
usr0.activated,
usr0.activationkey,
usr0.email,
usr0.enabled,
usr0.firstname,
usr0.lastname,
usr0.username,
usr0.token,
usr0.phonenumber,
usr0.popularity
FROM users usr0
WHERE ((((usr0.shop_user = true) AND (usr0.activated IS NULL)) AND
(usr0.activationkey IS NOT NULL)) AND (usr0.legal_entity = true));
--
-- Definition for view payment_price_simple_view (OID = 81171) :
--
CREATE VIEW public.payment_price_simple_view AS
SELECT DISTINCT ON (payment_price.payment_tariff_id) payment_price.id,
payment_price.createdby,
payment_price.createon,
payment_price.firmid,
payment_price.lastmodifiedby,
payment_price.modifyon,
payment_price.serieskey,
payment_price.version,
payment_price.humannumber,
payment_price.price,
payment_price.payment_tariff_id
FROM payment_price
ORDER BY payment_price.payment_tariff_id, payment_price.price;
--
-- Definition for view payment_price_shop_simple_view (OID = 81175) :
--
CREATE VIEW public.payment_price_shop_simple_view AS
SELECT DISTINCT ON (payment_price_shop.payment_tariff_shop_id)
payment_price_shop.id,
payment_price_shop.createdby,
payment_price_shop.createon,
payment_price_shop.firmid,
payment_price_shop.lastmodifiedby,
payment_price_shop.modifyon,
payment_price_shop.serieskey,
payment_price_shop.version,
payment_price_shop.humannumber,
payment_price_shop.price,
payment_price_shop.payment_tariff_shop_id
FROM payment_price_shop
ORDER BY payment_price_shop.payment_tariff_shop_id, payment_price_shop.price;
--
-- Definition for view payment_tariff_simple_view (OID = 81179) :
--
CREATE VIEW public.payment_tariff_simple_view AS
SELECT payment_tariff.id,
payment_tariff.createdby,
payment_tariff.createon,
payment_tariff.firmid,
payment_tariff.lastmodifiedby,
payment_tariff.modifyon,
payment_tariff.serieskey,
payment_tariff.version,
payment_price_simple_view.price,
payment_price_simple_view.humannumber,
(payment_price_simple_view.price *
(payment_price_simple_view.humannumber)::numeric) AS cost
FROM (payment_tariff
JOIN payment_price_simple_view ON ((payment_tariff.id =
payment_price_simple_view.payment_tariff_id)))
ORDER BY (payment_price_simple_view.price *
(payment_price_simple_view.humannumber)::numeric);
--
-- Definition for view payment_tariff_shop_simple_view (OID = 81183) :
--
CREATE VIEW public.payment_tariff_shop_simple_view AS
SELECT payment_tariff_shop.id,
payment_tariff_shop.createdby,
payment_tariff_shop.createon,
payment_tariff_shop.firmid,
payment_tariff_shop.lastmodifiedby,
payment_tariff_shop.modifyon,
payment_tariff_shop.serieskey,
payment_tariff_shop.version,
payment_price_shop_simple_view.price,
payment_price_shop_simple_view.humannumber,
(payment_price_shop_simple_view.price *
(payment_price_shop_simple_view.humannumber)::numeric) AS cost
FROM (payment_tariff_shop
JOIN payment_price_shop_simple_view ON ((payment_tariff_shop.id =
payment_price_shop_simple_view.payment_tariff_shop_id)))
ORDER BY (payment_price_shop_simple_view.price *
(payment_price_shop_simple_view.humannumber)::numeric);
--
-- Definition for view rel_serv_hotel_image_simple_view (OID = 81187) :
--
CREATE VIEW public.rel_serv_hotel_image_simple_view AS
SELECT DISTINCT ON (rel_serv_hotel_image.serv_hotel_id) rel_serv_hotel_image.id,
rel_serv_hotel_image.serv_hotel_id,
(((tm_image.name)::text || '.'::text) || (tm_image.extension)::text) AS image
FROM (rel_serv_hotel_image
JOIN tm_image ON ((rel_serv_hotel_image.image_id = tm_image.id)));
--
-- Definition for view rel_serv_hotel_room_image_simple_view (OID = 81191) :
--
CREATE VIEW public.rel_serv_hotel_room_image_simple_view AS
SELECT DISTINCT ON (rel_serv_hotel_room_image.serv_hotel_room_id)
rel_serv_hotel_room_image.id,
rel_serv_hotel_room_image.serv_hotel_room_id,
(((tm_image.name)::text || '.'::text) || (tm_image.extension)::text) AS image
FROM (rel_serv_hotel_room_image
JOIN tm_image ON ((rel_serv_hotel_room_image.image_id = tm_image.id)));
--
-- Definition for view req_serv_hotel_archived_view (OID = 81195) :
--
CREATE VIEW public.req_serv_hotel_archived_view AS
SELECT req_serv_hotel_view.id,
req_serv_hotel_view.version,
req_serv_hotel_view.createdby,
req_serv_hotel_view.createon,
req_serv_hotel_view.firm,
req_serv_hotel_view.lastmodifiedby,
req_serv_hotel_view.modifyon,
req_serv_hotel_view.serieskey,
req_serv_hotel_view.label,
req_serv_hotel_view.accept,
req_serv_hotel_view.datedifference,
req_serv_hotel_view.decline,
req_serv_hotel_view.departure,
req_serv_hotel_view.descr,
req_serv_hotel_view.paymenttype,
req_serv_hotel_view.price,
req_serv_hotel_view.progress,
req_serv_hotel_view.race,
req_serv_hotel_view.roomcount,
req_serv_hotel_view.singleprice,
req_serv_hotel_view.tariffcurrency,
req_serv_hotel_view.requestnumber,
req_serv_hotel_view.cancel,
req_serv_hotel_view.confirm,
req_serv_hotel_view.archived,
req_serv_hotel_view.popularity,
req_serv_hotel_view.docdocumentsbydocumentforuser,
req_serv_hotel_view.docdocumentsbydocumentforuserid,
req_serv_hotel_view.docdocumentsbydocumentforhotel,
req_serv_hotel_view.docdocumentsbydocumentforhotelid,
req_serv_hotel_view.paymentprice,
req_serv_hotel_view.paymentpriceid,
req_serv_hotel_view.paymenttariff,
req_serv_hotel_view.paymenttariffid,
req_serv_hotel_view.servhotel,
req_serv_hotel_view.servhotelid,
req_serv_hotel_view.servhotelroom,
req_serv_hotel_view.servhotelroomid,
req_serv_hotel_view.usersbyrequestuser,
req_serv_hotel_view.usersbyrequestuserid,
req_serv_hotel_view.usersbyrequestuserusercolor,
req_serv_hotel_view.usersbyresponseuser,
req_serv_hotel_view.usersbyresponseuserid,
req_serv_hotel_view.usersbyresponseuserusercolor,
CASE
WHEN ((req_serv_hotel_view.accept IS NULL) OR
(req_serv_hotel_view.accept = false)) THEN false
ELSE true
END AS status,
((req_serv_hotel_view.race || ' - '::text) ||
req_serv_hotel_view.departure) AS reqdate
FROM req_serv_hotel_view
WHERE (req_serv_hotel_view.archived = true);
--
-- Definition for view req_serv_hotel_open_view (OID = 81200) :
--
CREATE VIEW public.req_serv_hotel_open_view AS
SELECT req_serv_hotel_view.id,
req_serv_hotel_view.version,
req_serv_hotel_view.createdby,
req_serv_hotel_view.createon,
req_serv_hotel_view.firm,
req_serv_hotel_view.lastmodifiedby,
req_serv_hotel_view.modifyon,
req_serv_hotel_view.serieskey,
req_serv_hotel_view.label,
req_serv_hotel_view.accept,
req_serv_hotel_view.datedifference,
req_serv_hotel_view.decline,
req_serv_hotel_view.departure,
req_serv_hotel_view.descr,
req_serv_hotel_view.paymenttype,
req_serv_hotel_view.price,
req_serv_hotel_view.progress,
req_serv_hotel_view.race,
req_serv_hotel_view.roomcount,
req_serv_hotel_view.singleprice,
req_serv_hotel_view.tariffcurrency,
req_serv_hotel_view.requestnumber,
req_serv_hotel_view.cancel,
req_serv_hotel_view.confirm,
req_serv_hotel_view.archived,
req_serv_hotel_view.popularity,
req_serv_hotel_view.docdocumentsbydocumentforuser,
req_serv_hotel_view.docdocumentsbydocumentforuserid,
req_serv_hotel_view.docdocumentsbydocumentforhotel,
req_serv_hotel_view.docdocumentsbydocumentforhotelid,
req_serv_hotel_view.paymentprice,
req_serv_hotel_view.paymentpriceid,
req_serv_hotel_view.paymenttariff,
req_serv_hotel_view.paymenttariffid,
req_serv_hotel_view.servhotel,
req_serv_hotel_view.servhotelid,
req_serv_hotel_view.servhotelroom,
req_serv_hotel_view.servhotelroomid,
req_serv_hotel_view.usersbyrequestuser,
req_serv_hotel_view.usersbyrequestuserid,
req_serv_hotel_view.usersbyrequestuserusercolor,
req_serv_hotel_view.usersbyresponseuser,
req_serv_hotel_view.usersbyresponseuserid,
req_serv_hotel_view.usersbyresponseuserusercolor
FROM req_serv_hotel_view
WHERE (((req_serv_hotel_view.archived = false) OR
(req_serv_hotel_view.archived IS NULL)) AND
((req_serv_hotel_view.confirm = false) OR (req_serv_hotel_view.confirm
IS NULL)));
--
-- Definition for view req_serv_hotel_processed_view (OID = 81205) :
--
CREATE VIEW public.req_serv_hotel_processed_view AS
SELECT req_serv_hotel_view.id,
req_serv_hotel_view.version,
req_serv_hotel_view.createdby,
req_serv_hotel_view.createon,
req_serv_hotel_view.firm,
req_serv_hotel_view.lastmodifiedby,
req_serv_hotel_view.modifyon,
req_serv_hotel_view.serieskey,
req_serv_hotel_view.label,
req_serv_hotel_view.accept,
req_serv_hotel_view.datedifference,
req_serv_hotel_view.decline,
req_serv_hotel_view.departure,
req_serv_hotel_view.descr,
req_serv_hotel_view.paymenttype,
req_serv_hotel_view.price,
req_serv_hotel_view.progress,
req_serv_hotel_view.race,
req_serv_hotel_view.roomcount,
req_serv_hotel_view.singleprice,
req_serv_hotel_view.tariffcurrency,
req_serv_hotel_view.requestnumber,
req_serv_hotel_view.cancel,
req_serv_hotel_view.confirm,
req_serv_hotel_view.archived,
req_serv_hotel_view.popularity,
req_serv_hotel_view.docdocumentsbydocumentforuser,
req_serv_hotel_view.docdocumentsbydocumentforuserid,
req_serv_hotel_view.docdocumentsbydocumentforhotel,
req_serv_hotel_view.docdocumentsbydocumentforhotelid,
req_serv_hotel_view.paymentprice,
req_serv_hotel_view.paymentpriceid,
req_serv_hotel_view.paymenttariff,
req_serv_hotel_view.paymenttariffid,
req_serv_hotel_view.servhotel,
req_serv_hotel_view.servhotelid,
req_serv_hotel_view.servhotelroom,
req_serv_hotel_view.servhotelroomid,
req_serv_hotel_view.usersbyrequestuser,
req_serv_hotel_view.usersbyrequestuserid,
req_serv_hotel_view.usersbyrequestuserusercolor,
req_serv_hotel_view.usersbyresponseuser,
req_serv_hotel_view.usersbyresponseuserid,
req_serv_hotel_view.usersbyresponseuserusercolor
FROM req_serv_hotel_view
WHERE ((req_serv_hotel_view.confirm = true) AND
((req_serv_hotel_view.archived = false) OR
(req_serv_hotel_view.archived IS NULL)));
--
-- Definition for view shop_room_tarriff_corporate_rate_view (OID = 81210) :
--
CREATE VIEW public.shop_room_tarriff_corporate_rate_view AS
SELECT data.id,
data.createdby,
data.createon,
data.firmid,
data.lastmodifiedby,
data.modifyon,
data.serieskey,
data.version,
data.humannumber,
data.price,
data.payment_tariff_id,
data.payment_tariff_version,
data.room_id,
data.percentage_of_allowances,
data.is_percentage_of_allowances,
data.usdid,
data.usdversion,
data.usdnameru,
data.usdcourse,
data.usdcurrencysign,
data.kztcurrencysign,
data.currcurrencycourse,
data.currcurrencyisocode,
data.currcurrency,
data.currcurrencyid,
data.currcurrencyversion,
data.currencyname,
data.cost,
CASE
WHEN ((data.currcurrencyisocode)::text = 'USD'::text) THEN
(COALESCE(data.cost, (1)::numeric) *
(COALESCE(data.currcurrencycourse, 1))::numeric)
ELSE data.cost
END AS cost_national_currency,
CASE
WHEN ((data.currcurrencyisocode)::text = 'KZT'::text) THEN
round((COALESCE(data.cost, (1)::numeric) /
(COALESCE(data.usdcourse, 1))::numeric))
ELSE data.cost
END AS cost_usd_currency
FROM (
SELECT payment_price.id,
payment_price.createdby,
payment_price.createon,
payment_price.firmid,
payment_price.lastmodifiedby,
payment_price.modifyon,
payment_price.serieskey,
payment_price.version,
payment_price.humannumber,
payment_price.price,
payment_price.payment_tariff_shop_id AS payment_tariff_id,
payment_tariff_shop.version AS payment_tariff_version,
serv_hotel_room.id AS room_id,
payment_tariff_shop.percentage_of_allowances,
payment_tariff_shop.is_percentage_of_allowances,
usd_currency0.id AS usdid,
usd_currency0.version AS usdversion,
usd_currency0.nameru AS usdnameru,
usd_currency0.course AS usdcourse,
'$'::text AS usdcurrencysign,
'?'::text AS kztcurrencysign,
curr_currency0.course AS currcurrencycourse,
curr_currency0.iso_code AS currcurrencyisocode,
curr_currency0.currencyname AS currcurrency,
curr_currency0.id AS currcurrencyid,
curr_currency0.version AS currcurrencyversion,
CASE
WHEN ((curr_currency0.iso_code)::text = 'USD'::text)
THEN '$'::character varying
WHEN ((curr_currency0.iso_code)::text = 'KZT'::text)
THEN '?'::character varying
ELSE curr_currency0.currencyname
END AS currencyname,
COALESCE(round(
CASE
WHEN (payment_tariff_shop.is_percentage_of_allowances =
true) THEN (payment_price.price +
((payment_price.price / (100)::numeric) *
(payment_tariff_shop.percentage_of_allowances)::numeric))
WHEN (payment_tariff_shop.is_percentage_of_allowances =
false) THEN (payment_price.price +
(payment_tariff_shop.percentage_of_allowances)::numeric)
ELSE payment_price.price
END), payment_price.price) AS cost
FROM ((((serv_hotel_room
JOIN payment_tariff_shop ON ((serv_hotel_room.shop_tarriff_id
= payment_tariff_shop.id)))
JOIN payment_price_shop payment_price ON
((payment_tariff_shop.id = payment_price.payment_tariff_shop_id)))
LEFT JOIN curr_currency curr_currency0 ON
(((serv_hotel_room.firmid = curr_currency0.firmid) AND
((curr_currency0.iso_code)::text = 'KZT'::text))))
LEFT JOIN curr_currency usd_currency0 ON
(((serv_hotel_room.firmid = usd_currency0.firmid) AND
((usd_currency0.iso_code)::text = 'USD'::text))))
) data;
--
-- Definition for view shop_room_tarriff_original_rate_view (OID = 81215) :
--
CREATE VIEW public.shop_room_tarriff_original_rate_view AS
SELECT data.id,
data.createdby,
data.createon,
data.firmid,
data.lastmodifiedby,
data.modifyon,
data.serieskey,
data.version,
data.humannumber,
data.price,
data.payment_tariff_id,
data.payment_tariff_version,
data.room_id,
data.percentage_of_allowances,
data.is_percentage_of_allowances,
data.usdid,
data.usdversion,
data.usdnameru,
data.usdcourse,
data.usdcurrencysign,
data.kztcurrencysign,
data.currcurrencycourse,
data.currcurrencyisocode,
data.currcurrency,
data.currcurrencyid,
data.currcurrencyversion,
data.currencyname,
data.cost,
CASE
WHEN ((data.currcurrencyisocode)::text = 'USD'::text) THEN
(COALESCE(data.cost, (1)::numeric) *
(COALESCE(data.currcurrencycourse, 1))::numeric)
ELSE data.cost
END AS cost_national_currency,
CASE
WHEN ((data.currcurrencyisocode)::text = 'KZT'::text) THEN
round((COALESCE(data.cost, (1)::numeric) /
(COALESCE(data.usdcourse, 1))::numeric))
ELSE data.cost
END AS cost_usd_currency
FROM (
SELECT payment_price.id,
payment_price.createdby,
payment_price.createon,
payment_price.firmid,
payment_price.lastmodifiedby,
payment_price.modifyon,
payment_price.serieskey,
payment_price.version,
payment_price.humannumber,
payment_price.price,
payment_price.payment_tariff_id,
payment_tariff.version AS payment_tariff_version,
serv_hotel_room.id AS room_id,
false AS percentage_of_allowances,
(0)::numeric AS is_percentage_of_allowances,
usd_currency0.id AS usdid,
usd_currency0.version AS usdversion,
usd_currency0.nameru AS usdnameru,
usd_currency0.course AS usdcourse,
'$'::text AS usdcurrencysign,
'?'::text AS kztcurrencysign,
curr_currency0.course AS currcurrencycourse,
curr_currency0.iso_code AS currcurrencyisocode,
curr_currency0.currencyname AS currcurrency,
curr_currency0.id AS currcurrencyid,
curr_currency0.version AS currcurrencyversion,
CASE
WHEN ((curr_currency0.iso_code)::text = 'USD'::text)
THEN '$'::character varying
WHEN ((curr_currency0.iso_code)::text = 'KZT'::text)
THEN '?'::character varying
ELSE curr_currency0.currencyname
END AS currencyname,
payment_price.price AS cost
FROM ((((serv_hotel_room
JOIN payment_tariff ON ((serv_hotel_room.rr_tarriff_id =
payment_tariff.id)))
JOIN payment_price ON ((payment_tariff.id =
payment_price.payment_tariff_id)))
LEFT JOIN curr_currency curr_currency0 ON
(((serv_hotel_room.firmid = curr_currency0.firmid) AND
((curr_currency0.iso_code)::text = 'KZT'::text))))
LEFT JOIN curr_currency usd_currency0 ON
(((serv_hotel_room.firmid = usd_currency0.firmid) AND
((usd_currency0.iso_code)::text = 'USD'::text))))
) data;
--
-- Definition for view shop_room_tarriff_general_rate_view (OID = 81220) :
--
CREATE VIEW public.shop_room_tarriff_general_rate_view AS
SELECT COALESCE(original_rate.id, corporate_rate.id) AS id,
COALESCE(original_rate.payment_tariff_id,
corporate_rate.payment_tariff_id) AS payment_tariff_id,
COALESCE(original_rate.payment_tariff_version,
corporate_rate.payment_tariff_version) AS payment_tariff_version,
COALESCE(original_rate.version, corporate_rate.version) AS price_version,
COALESCE(corporate_rate.humannumber, original_rate.humannumber) AS humannumber,
COALESCE(original_rate.room_id, corporate_rate.room_id) AS room_id,
COALESCE(corporate_rate.cost, original_rate.cost) AS corporate_rate_cost,
COALESCE(corporate_rate.cost_national_currency,
original_rate.cost_national_currency) AS
corporate_rate_cost_national_currency,
COALESCE(corporate_rate.cost_usd_currency,
original_rate.cost_usd_currency) AS corporate_rate_cost_usd_currency,
COALESCE(corporate_rate.usdcurrencysign, original_rate.usdcurrencysign)
AS corporate_rate_cost_usdcurrencysign,
COALESCE(corporate_rate.currcurrencyid, original_rate.currcurrencyid)
AS corporate_rate_currcurrencyid,
COALESCE(corporate_rate.currcurrencyversion,
original_rate.currcurrencyversion) AS corporate_rate_currcurrencyversion,
COALESCE(corporate_rate.currencyname, original_rate.currencyname) AS
corporate_rate_currencyname,
COALESCE(original_rate.cost, corporate_rate.cost) AS original_rate_cost,
COALESCE(original_rate.cost_national_currency,
corporate_rate.cost_national_currency) AS
original_rate_cost_national_currency,
COALESCE(original_rate.cost_usd_currency,
corporate_rate.cost_usd_currency) AS original_rate_cost_usd_currency,
COALESCE(original_rate.usdcurrencysign, corporate_rate.usdcurrencysign)
AS original_rate_cost_usdcurrencysign,
COALESCE(original_rate.currcurrencyid, corporate_rate.currcurrencyid)
AS original_rate_currcurrencyid,
COALESCE(original_rate.currcurrencyversion,
corporate_rate.currcurrencyversion) AS original_rate_currcurrencyversion,
COALESCE(original_rate.currencyname, corporate_rate.currencyname) AS
original_rate_currencyname
FROM (shop_room_tarriff_original_rate_view original_rate
FULL JOIN shop_room_tarriff_corporate_rate_view corporate_rate ON
(((original_rate.room_id = corporate_rate.room_id) AND
(original_rate.humannumber = corporate_rate.humannumber))));
--
-- Definition for view shop_room_view (OID = 81225) :
--
CREATE VIEW public.shop_room_view AS
SELECT serv_hotel_room.id,
serv_hotel_room.version,
serv_hotel_room.createdby,
serv_hotel_room.createon,
serv_hotel_room.firmid AS firm,
serv_hotel_room.lastmodifiedby,
serv_hotel_room.modifyon,
serv_hotel_room.serieskey,
serv_hotel_room.label,
serv_hotel_room.breakfast,
serv_hotel_room.descr,
serv_hotel_room.guest_number AS guestnumber,
serv_hotel_room.room_number AS roomnumber,
dict_global1.dict_value AS dictglobalbyroomtype,
dict_global1.id AS dictglobalbyroomtypeid,
serv_hotel3.label AS servhotel,
serv_hotel3.id AS servhotelid,
serv_hotel3.version AS servhotelversion,
COALESCE(rel_image.image, 'static_default.jpg'::text) AS image,
COALESCE(simple_tariff.cost, (1)::numeric) AS cost
FROM ((((serv_hotel_room
LEFT JOIN dict_global dict_global1 ON ((serv_hotel_room.room_type_id =
dict_global1.id)))
LEFT JOIN serv_hotel serv_hotel3 ON ((serv_hotel_room.hotel_id =
serv_hotel3.id)))
LEFT JOIN rel_serv_hotel_room_image_simple_view rel_image ON
((serv_hotel_room.id = rel_image.serv_hotel_room_id)))
LEFT JOIN payment_tariff_shop_simple_view simple_tariff ON
((serv_hotel_room.shop_tarriff_id = simple_tariff.id)));
--
-- Definition for view serv_hotel_simple_view (OID = 81230) :
--
CREATE VIEW public.serv_hotel_simple_view AS
SELECT DISTINCT ON (serv_hotel.id) serv_hotel.id,
serv_hotel.firmid,
serv_hotel.modifyon,
serv_hotel.label,
serv_hotel.condition_text,
serv_hotel.descr,
serv_hotel.synopsis,
serv_hotel.favorite,
serv_hotel.freesale,
serv_hotel.showonline,
serv_hotel.starcount,
serv_hotel.timedeparture,
serv_hotel.timerace,
serv_hotel.timeearlyrace,
serv_hotel.timelatedeparture,
serv_hotel.locationcities_id,
serv_hotel.locationcountries_id,
serv_hotel.address_id,
payment_tariff_shop_simple_view.price,
payment_tariff_shop_simple_view.humannumber,
payment_tariff_shop_simple_view.cost
FROM ((serv_hotel
JOIN serv_hotel_room ON ((serv_hotel.id = serv_hotel_room.hotel_id)))
JOIN payment_tariff_shop_simple_view ON
((serv_hotel_room.shop_tarriff_id = payment_tariff_shop_simple_view.id)))
ORDER BY serv_hotel.id, serv_hotel.starcount DESC, serv_hotel.modifyon
DESC, payment_tariff_shop_simple_view.price;
--
-- Definition for view shop_hotel_images_view (OID = 81235) :
--
CREATE VIEW public.shop_hotel_images_view AS
SELECT rel_serv_hotel_image.serv_hotel_id,
tm_image.id,
tm_image.createdby,
tm_image.createon,
tm_image.firmid,
tm_image.lastmodifiedby,
tm_image.modifyon,
tm_image.serieskey,
tm_image.version,
tm_image.contenttype,
tm_image.extension,
tm_image.name,
tm_image.originalfilename,
tm_image.path,
tm_image.size,
(((tm_image.name)::text || '.'::text) || (tm_image.extension)::text) AS image
FROM (rel_serv_hotel_image
LEFT JOIN tm_image ON ((rel_serv_hotel_image.image_id = tm_image.id)));
--
-- Definition for view shop_hotel_room_images_view (OID = 81240) :
--
CREATE VIEW public.shop_hotel_room_images_view AS
SELECT rel_serv_hotel_room_image.serv_hotel_room_id,
tm_image.id,
tm_image.createdby,
tm_image.createon,
tm_image.firmid,
tm_image.lastmodifiedby,
tm_image.modifyon,
tm_image.serieskey,
tm_image.version,
tm_image.contenttype,
tm_image.extension,
tm_image.name,
tm_image.originalfilename,
tm_image.path,
tm_image.size,
(((tm_image.name)::text || '.'::text) || (tm_image.extension)::text) AS image
FROM (rel_serv_hotel_room_image
LEFT JOIN tm_image ON ((rel_serv_hotel_room_image.image_id = tm_image.id)));
--
-- Definition for view static_geo_location_view (OID = 81245) :
--
CREATE VIEW public.static_geo_location_view AS
SELECT 'Астана'::text AS name,
'71.430564'::text AS x,
'51.128422'::text AS y
UNION
SELECT 'Уральск'::text AS name,
'51.311356'::text AS x,
'51.175258'::text AS y
UNION
SELECT 'Актобе'::text AS name,
'57.086274'::text AS x,
'50.193153'::text AS y
UNION
SELECT 'Атырау'::text AS name,
'51.814421'::text AS x,
'47.015923'::text AS y
UNION
SELECT 'Караганда'::text AS name,
'72.982026'::text AS x,
'49.735472'::text AS y
UNION
SELECT 'Петропавловск'::text AS name,
'68.994162'::text AS x,
'54.799153'::text AS y
UNION
SELECT 'Балхаш'::text AS name,
'74.912793'::text AS x,
'46.814559'::text AS y
UNION
SELECT 'Семей'::text AS name,
'80.137152'::text AS x,
'50.330598'::text AS y
UNION
SELECT 'Усть-Каменогорск'::text AS name,
'82.451563'::text AS x,
'49.874326'::text AS y
UNION
SELECT 'Актау'::text AS name,
'51.118137'::text AS x,
'43.622916'::text AS y
UNION
SELECT 'Павлодар'::text AS name,
'76.83729'::text AS x,
'52.174788'::text AS y
UNION
SELECT 'Шымкент'::text AS name,
'69.505959'::text AS x,
'42.262842'::text AS y
UNION
SELECT 'Алматы'::text AS name,
'76.741521'::text AS x,
'43.038851'::text AS y;
--
-- Definition for view shop_serv_hotel_2_view (OID = 81250) :
--
CREATE VIEW public.shop_serv_hotel_2_view AS
SELECT data.id,
data.modifyon,
data.label,
data.condition_text,
data.descr,
data.synopsis,
data.favorite,
data.freesale,
data.showonline,
data.starcount,
data.timedeparture,
data.timerace,
data.timeearlyrace,
data.timelatedeparture,
data.price,
data.humannumber,
data.cost,
data.cityname,
data.countryname,
data.image,
data.currencyid,
data.currencyname,
data.currencysign,
data.usdcurrencysign,
data.usdcost,
data.addressname,
data.yandexmappointx,
data.yandexmappointy
FROM (
SELECT DISTINCT ON (serv_hotel_simple_view.id) serv_hotel_simple_view.id,
serv_hotel_simple_view.modifyon,
serv_hotel_simple_view.label,
serv_hotel_simple_view.condition_text,
serv_hotel_simple_view.descr,
serv_hotel_simple_view.synopsis,
serv_hotel_simple_view.favorite,
serv_hotel_simple_view.freesale,
serv_hotel_simple_view.showonline,
serv_hotel_simple_view.starcount,
serv_hotel_simple_view.timedeparture,
serv_hotel_simple_view.timerace,
serv_hotel_simple_view.timeearlyrace,
serv_hotel_simple_view.timelatedeparture,
serv_hotel_simple_view.price,
serv_hotel_simple_view.humannumber,
serv_hotel_simple_view.cost,
location_cities_view.cityname,
location_countries_view.countryname,
COALESCE(rel_serv_hotel_image_simple_view.image,
'static_default.jpg'::text) AS image,
curr_currency_view.id AS currencyid,
curr_currency_view.nameru AS currencyname,
'?'::text AS currencysign,
'$'::text AS usdcurrencysign,
round((COALESCE(serv_hotel_simple_view.cost, (1)::numeric) /
(COALESCE(usd_currency.course, 1))::numeric)) AS usdcost,
COALESCE(location_address_view.label,
(static_geo_location_view.name)::character varying) AS addressname,
COALESCE(location_address_view.yandexmappointx,
(static_geo_location_view.x)::character varying) AS
yandexmappointx,
COALESCE(location_address_view.yandexmappointy,
(static_geo_location_view.y)::character varying) AS yandexmappointy
FROM (((((((serv_hotel_simple_view
LEFT JOIN location_cities_view ON
((serv_hotel_simple_view.locationcities_id =
location_cities_view.id)))
LEFT JOIN location_countries_view ON
((serv_hotel_simple_view.locationcountries_id =
location_countries_view.id)))
LEFT JOIN rel_serv_hotel_image_simple_view ON
((serv_hotel_simple_view.id =
rel_serv_hotel_image_simple_view.serv_hotel_id)))
LEFT JOIN curr_currency curr_currency_view ON
(((serv_hotel_simple_view.firmid =
curr_currency_view.firmid) AND
((curr_currency_view.iso_code)::text = 'KZT'::text))))
LEFT JOIN curr_currency usd_currency ON
(((serv_hotel_simple_view.firmid = usd_currency.firmid)
AND ((usd_currency.iso_code)::text = 'USD'::text))))
LEFT JOIN location_address_view ON
((serv_hotel_simple_view.address_id = location_address_view.id)))
LEFT JOIN static_geo_location_view ON
(((location_cities_view.cityname)::text =
static_geo_location_view.name)))
WHERE (serv_hotel_simple_view.showonline = true)
ORDER BY serv_hotel_simple_view.id DESC
) data
ORDER BY data.cityname, data.starcount DESC, data.cost, data.modifyon DESC;
--
-- Definition for view mail_notebook_view (OID = 81275) :
--
CREATE VIEW public.mail_notebook_view AS
SELECT DISTINCT ON (data.email) data.id,
data.objectid,
data.name,
data.email,
data.firm
FROM (
SELECT md5(((tm_contact_easy.id)::text || 'tm_contact_easy'::text)) AS id,
tm_contact_easy.id AS objectid,
tm_contact_easy.label AS name,
tm_contact_easy.email,
tm_contact_easy.firmid AS firm
FROM tm_contact_easy
UNION ALL
SELECT md5(((serv_hotel.id)::text || 'serv_hotel'::text)) AS id,
serv_hotel.id AS objectid,
serv_hotel.label AS name,
info_contact_information.email,
serv_hotel.firmid AS firm
FROM (serv_hotel
JOIN info_contact_information ON
((serv_hotel.contactinformation_id =
info_contact_information.id)))
UNION ALL
SELECT md5(((tm_mail_newsletter_group.id)::text ||
'tm_mail_newsletter_group'::text)) AS id,
tm_mail_newsletter_group.id AS objectid,
tm_mail_newsletter_group.name,
tm_mail_newsletter_group.email,
tm_mail_newsletter_group.firmid AS firm
FROM tm_mail_newsletter_group
) data
WHERE (data.email IS NOT NULL);
--
-- Definition for index curr_course_pkey (OID = 78680) :
--
ALTER TABLE ONLY curr_course
ADD CONSTRAINT curr_course_pkey
PRIMARY KEY (id);
--
-- Definition for index curr_currency_pkey (OID = 78682) :
--
ALTER TABLE ONLY curr_currency
ADD CONSTRAINT curr_currency_pkey
PRIMARY KEY (id);
--
-- Definition for index dict_global_pkey (OID = 78684) :
--
ALTER TABLE ONLY dict_global
ADD CONSTRAINT dict_global_pkey
PRIMARY KEY (id);
--
-- Definition for index doc_documents_pkey (OID = 78686) :
--
ALTER TABLE ONLY doc_documents
ADD CONSTRAINT doc_documents_pkey
PRIMARY KEY (id);
--
-- Definition for index info_contact_information_pkey (OID = 78688) :
--
ALTER TABLE ONLY info_contact_information
ADD CONSTRAINT info_contact_information_pkey
PRIMARY KEY (id);
--
-- Definition for index location_address_pkey (OID = 78690) :
--
ALTER TABLE ONLY location_address
ADD CONSTRAINT location_address_pkey
PRIMARY KEY (id);
--
-- Definition for index location_cities_pkey (OID = 78692) :
--
ALTER TABLE ONLY location_cities
ADD CONSTRAINT location_cities_pkey
PRIMARY KEY (id);
--
-- Definition for index location_countries_pkey (OID = 78694) :
--
ALTER TABLE ONLY location_countries
ADD CONSTRAINT location_countries_pkey
PRIMARY KEY (id);
--
-- Definition for index payment_details_pkey (OID = 78696) :
--
ALTER TABLE ONLY payment_details
ADD CONSTRAINT payment_details_pkey
PRIMARY KEY (id);
--
-- Definition for index payment_price_pkey (OID = 78698) :
--
ALTER TABLE ONLY payment_price
ADD CONSTRAINT payment_price_pkey
PRIMARY KEY (id);
--
-- Definition for index payment_tariff_pkey (OID = 78700) :
--
ALTER TABLE ONLY payment_tariff
ADD CONSTRAINT payment_tariff_pkey
PRIMARY KEY (id);
--
-- Definition for index rel_serv_hotel_doc_documents_pkey (OID = 78702) :
--
ALTER TABLE ONLY rel_serv_hotel_doc_documents
ADD CONSTRAINT rel_serv_hotel_doc_documents_pkey
PRIMARY KEY (id);
--
-- Definition for index rel_serv_hotel_image_pkey (OID = 78704) :
--
ALTER TABLE ONLY rel_serv_hotel_image
ADD CONSTRAINT rel_serv_hotel_image_pkey
PRIMARY KEY (id);
--
-- Definition for index rel_serv_hotel_room_image_pkey (OID = 78706) :
--
ALTER TABLE ONLY rel_serv_hotel_room_image
ADD CONSTRAINT rel_serv_hotel_room_image_pkey
PRIMARY KEY (id);
--
-- Definition for index rel_serv_transfer_tm_contact_pkey (OID = 78708) :
--
ALTER TABLE ONLY rel_serv_transfer_tm_contact
ADD CONSTRAINT rel_serv_transfer_tm_contact_pkey
PRIMARY KEY (id);
--
-- Definition for index req_serv_hotel_pkey (OID = 78710) :
--
ALTER TABLE ONLY req_serv_hotel
ADD CONSTRAINT req_serv_hotel_pkey
PRIMARY KEY (id);
--
-- Definition for index serv_hotel_pkey (OID = 78712) :
--
ALTER TABLE ONLY serv_hotel
ADD CONSTRAINT serv_hotel_pkey
PRIMARY KEY (id);
--
-- Definition for index serv_hotel_room_pkey (OID = 78714) :
--
ALTER TABLE ONLY serv_hotel_room
ADD CONSTRAINT serv_hotel_room_pkey
PRIMARY KEY (id);
--
-- Definition for index serv_transfer_pkey (OID = 78716) :
--
ALTER TABLE ONLY serv_transfer
ADD CONSTRAINT serv_transfer_pkey
PRIMARY KEY (id);
--
-- Definition for index serv_transfer_route_pkey (OID = 78718) :
--
ALTER TABLE ONLY serv_transfer_route
ADD CONSTRAINT serv_transfer_route_pkey
PRIMARY KEY (id);
--
-- Definition for index serv_transfer_route_point_pkey (OID = 78720) :
--
ALTER TABLE ONLY serv_transfer_route_point
ADD CONSTRAINT serv_transfer_route_point_pkey
PRIMARY KEY (id);
--
-- Definition for index tm_account_pkey (OID = 78722) :
--
ALTER TABLE ONLY tm_account
ADD CONSTRAINT tm_account_pkey
PRIMARY KEY (id);
--
-- Definition for index tm_contact_pkey (OID = 78724) :
--
ALTER TABLE ONLY tm_contact
ADD CONSTRAINT tm_contact_pkey
PRIMARY KEY (id);
--
-- Definition for index tm_contact_easy_pkey (OID = 78726) :
--
ALTER TABLE ONLY tm_contact_easy
ADD CONSTRAINT tm_contact_easy_pkey
PRIMARY KEY (id);
--
-- Definition for index tm_firms_pkey (OID = 78728) :
--
ALTER TABLE ONLY tm_firms
ADD CONSTRAINT tm_firms_pkey
PRIMARY KEY (id);
--
-- Definition for index tm_image_pkey (OID = 78730) :
--
ALTER TABLE ONLY tm_image
ADD CONSTRAINT tm_image_pkey
PRIMARY KEY (id);
--
-- Definition for index tm_user_info_pkey (OID = 78732) :
--
ALTER TABLE ONLY tm_user_info
ADD CONSTRAINT tm_user_info_pkey
PRIMARY KEY (id);
--
-- Definition for index user_roles_pkey (OID = 78734) :
--
ALTER TABLE ONLY user_roles
ADD CONSTRAINT user_roles_pkey
PRIMARY KEY (id);
--
-- Definition for index users_pkey (OID = 78736) :
--
ALTER TABLE ONLY users
ADD CONSTRAINT users_pkey
PRIMARY KEY (id);
--
-- Definition for index uk_r43af9ap4edm43mmtq01oddj6 (OID = 78738) :
--
ALTER TABLE ONLY users
ADD CONSTRAINT uk_r43af9ap4edm43mmtq01oddj6
UNIQUE (username);
--
-- Definition for index fk_qet8yum4olo8f9ek4xl4m5sbk (OID = 78740) :
--
ALTER TABLE ONLY location_cities
ADD CONSTRAINT fk_qet8yum4olo8f9ek4xl4m5sbk
FOREIGN KEY (countryid) REFERENCES location_countries(id);
--
-- Definition for index fk_qy0snarm50d1jp2oi5ba9yy4n (OID = 78745) :
--
ALTER TABLE ONLY payment_price
ADD CONSTRAINT fk_qy0snarm50d1jp2oi5ba9yy4n
FOREIGN KEY (payment_tariff_id) REFERENCES payment_tariff(id);
--
-- Definition for index fk_l8sd9q4pwlusrhbxbp6k1xt4a (OID = 78750) :
--
ALTER TABLE ONLY rel_serv_hotel_doc_documents
ADD CONSTRAINT fk_l8sd9q4pwlusrhbxbp6k1xt4a
FOREIGN KEY (doc_documents_id) REFERENCES doc_documents(id);
--
-- Definition for index fk_lcuc2amgag6r1r7x8347m98ba (OID = 78755) :
--
ALTER TABLE ONLY rel_serv_hotel_doc_documents
ADD CONSTRAINT fk_lcuc2amgag6r1r7x8347m98ba
FOREIGN KEY (serv_hotel_id) REFERENCES serv_hotel(id);
--
-- Definition for index fk_67uic74ed1lvltqno6jk1nol (OID = 78760) :
--
ALTER TABLE ONLY rel_serv_hotel_image
ADD CONSTRAINT fk_67uic74ed1lvltqno6jk1nol
FOREIGN KEY (serv_hotel_id) REFERENCES serv_hotel(id);
--
-- Definition for index fk_qi9x94lihwok47f20xvtbwfuj (OID = 78765) :
--
ALTER TABLE ONLY rel_serv_hotel_image
ADD CONSTRAINT fk_qi9x94lihwok47f20xvtbwfuj
FOREIGN KEY (image_id) REFERENCES tm_image(id);
--
-- Definition for index fk_rh5od1sedqm18bf2qamxh6qpp (OID = 78770) :
--
ALTER TABLE ONLY rel_serv_hotel_room_image
ADD CONSTRAINT fk_rh5od1sedqm18bf2qamxh6qpp
FOREIGN KEY (serv_hotel_room_id) REFERENCES serv_hotel_room(id);
--
-- Definition for index fk_qb6jghh8e6fa0subj4h8l8oub (OID = 78775) :
--
ALTER TABLE ONLY rel_serv_hotel_room_image
ADD CONSTRAINT fk_qb6jghh8e6fa0subj4h8l8oub
FOREIGN KEY (image_id) REFERENCES tm_image(id);
--
-- Definition for index fk_e49tcg2ew4x23qsw55c8f7y0u (OID = 78780) :
--
ALTER TABLE ONLY rel_serv_transfer_tm_contact
ADD CONSTRAINT fk_e49tcg2ew4x23qsw55c8f7y0u
FOREIGN KEY (serv_transfers_id) REFERENCES serv_transfer(id);
--
-- Definition for index fk_dyn7syqnpxyo0qwuqmhbaj3rv (OID = 78785) :
--
ALTER TABLE ONLY rel_serv_transfer_tm_contact
ADD CONSTRAINT fk_dyn7syqnpxyo0qwuqmhbaj3rv
FOREIGN KEY (tm_contact_id) REFERENCES tm_contact(id);
--
-- Definition for index fk_bgw2mgwqqsr9bwl236wdsbq16 (OID = 78790) :
--
ALTER TABLE ONLY req_serv_hotel
ADD CONSTRAINT fk_bgw2mgwqqsr9bwl236wdsbq16
FOREIGN KEY (document_for_hotel_id) REFERENCES doc_documents(id);
--
-- Definition for index fk_5gwh69rll0l546i0coqwj0ba5 (OID = 78795) :
--
ALTER TABLE ONLY req_serv_hotel
ADD CONSTRAINT fk_5gwh69rll0l546i0coqwj0ba5
FOREIGN KEY (document_for_user_id) REFERENCES doc_documents(id);
--
-- Definition for index fk_m2ekm8mkhbva75c9wyqi91ut9 (OID = 78800) :
--
ALTER TABLE ONLY req_serv_hotel
ADD CONSTRAINT fk_m2ekm8mkhbva75c9wyqi91ut9
FOREIGN KEY (payment_price_id) REFERENCES payment_price(id);
--
-- Definition for index fk_o9ajlfdbb1whgr8h94dp8hydg (OID = 78805) :
--
ALTER TABLE ONLY req_serv_hotel
ADD CONSTRAINT fk_o9ajlfdbb1whgr8h94dp8hydg
FOREIGN KEY (payment_tariff_id) REFERENCES payment_tariff(id);
--
-- Definition for index fk_2jt2q7ir1e0gdb72dcj4wpwif (OID = 78810) :
--
ALTER TABLE ONLY req_serv_hotel
ADD CONSTRAINT fk_2jt2q7ir1e0gdb72dcj4wpwif
FOREIGN KEY (serv_hotel_id) REFERENCES serv_hotel(id);
--
-- Definition for index fk_2yaqr6ncyer3bwog5xg8fw72m (OID = 78815) :
--
ALTER TABLE ONLY req_serv_hotel
ADD CONSTRAINT fk_2yaqr6ncyer3bwog5xg8fw72m
FOREIGN KEY (serv_hotel_room_id) REFERENCES serv_hotel_room(id);
--
-- Definition for index fk_1e0jxsjumdiyoduig4svygkhw (OID = 78820) :
--
ALTER TABLE ONLY req_serv_hotel
ADD CONSTRAINT fk_1e0jxsjumdiyoduig4svygkhw
FOREIGN KEY (request_user_id) REFERENCES users(id);
--
-- Definition for index fk_rm0ybefxrgykm0js17tes8a81 (OID = 78825) :
--
ALTER TABLE ONLY req_serv_hotel
ADD CONSTRAINT fk_rm0ybefxrgykm0js17tes8a81
FOREIGN KEY (response_user_id) REFERENCES users(id);
--
-- Definition for index fk_d6sym7mj137o1f7hpbctjjs92 (OID = 78830) :
--
ALTER TABLE ONLY serv_hotel
ADD CONSTRAINT fk_d6sym7mj137o1f7hpbctjjs92
FOREIGN KEY (contactinformation_id) REFERENCES info_contact_information(id);
--
-- Definition for index fk_okvswyj2x26xswoeiy9gx6ojd (OID = 78835) :
--
ALTER TABLE ONLY serv_hotel
ADD CONSTRAINT fk_okvswyj2x26xswoeiy9gx6ojd
FOREIGN KEY (address_id) REFERENCES location_address(id);
--
-- Definition for index fk_1r1r4iluqagfqybh6cud7kd92 (OID = 78840) :
--
ALTER TABLE ONLY serv_hotel
ADD CONSTRAINT fk_1r1r4iluqagfqybh6cud7kd92
FOREIGN KEY (locationcities_id) REFERENCES location_cities(id);
--
-- Definition for index fk_1dgwpsl5gvh8q16rm8mkxhc34 (OID = 78845) :
--
ALTER TABLE ONLY serv_hotel
ADD CONSTRAINT fk_1dgwpsl5gvh8q16rm8mkxhc34
FOREIGN KEY (locationcountries_id) REFERENCES location_countries(id);
--
-- Definition for index fk_2pgwsg699swunbp1ipf49l0f5 (OID = 78850) :
--
ALTER TABLE ONLY serv_hotel
ADD CONSTRAINT fk_2pgwsg699swunbp1ipf49l0f5
FOREIGN KEY (payment_details_id) REFERENCES payment_details(id);
--
-- Definition for index fk_48ot1btd709cvhmkwuhtwvstc (OID = 78855) :
--
ALTER TABLE ONLY serv_hotel_room
ADD CONSTRAINT fk_48ot1btd709cvhmkwuhtwvstc
FOREIGN KEY (room_type_id) REFERENCES dict_global(id);
--
-- Definition for index fk_s56n01uxkjmww661pceaojkh9 (OID = 78860) :
--
ALTER TABLE ONLY serv_hotel_room
ADD CONSTRAINT fk_s56n01uxkjmww661pceaojkh9
FOREIGN KEY (hotel_id) REFERENCES serv_hotel(id);
--
-- Definition for index fk_m6qk8jlnpdydk5cv866hxmgh9 (OID = 78865) :
--
ALTER TABLE ONLY serv_transfer
ADD CONSTRAINT fk_m6qk8jlnpdydk5cv866hxmgh9
FOREIGN KEY (currency_id) REFERENCES curr_currency(id);
--
-- Definition for index fk_ndu7mocie7j76mhc11y407wkk (OID = 78870) :
--
ALTER TABLE ONLY serv_transfer
ADD CONSTRAINT fk_ndu7mocie7j76mhc11y407wkk
FOREIGN KEY (payment_type_id) REFERENCES dict_global(id);
--
-- Definition for index fk_6wvbmmo6po3cnvne117ixxgq6 (OID = 78875) :
--
ALTER TABLE ONLY serv_transfer
ADD CONSTRAINT fk_6wvbmmo6po3cnvne117ixxgq6
FOREIGN KEY (transport_id) REFERENCES dict_global(id);
--
-- Definition for index fk_b1gemgdgbabmi240qfmonx5sw (OID = 78880) :
--
ALTER TABLE ONLY serv_transfer
ADD CONSTRAINT fk_b1gemgdgbabmi240qfmonx5sw
FOREIGN KEY (type_transfer_id) REFERENCES dict_global(id);
--
-- Definition for index fk_iarwftldl95bsp1o1vldkrdh (OID = 78885) :
--
ALTER TABLE ONLY serv_transfer
ADD CONSTRAINT fk_iarwftldl95bsp1o1vldkrdh
FOREIGN KEY (location_cities_id) REFERENCES location_cities(id);
--
-- Definition for index fk_5bohx5tf5too6ic6kgphrcxjs (OID = 78890) :
--
ALTER TABLE ONLY serv_transfer
ADD CONSTRAINT fk_5bohx5tf5too6ic6kgphrcxjs
FOREIGN KEY (location_countries_id) REFERENCES location_countries(id);
--
-- Definition for index fk_1yn2cmebo4ipe834c1jtepfip (OID = 78895) :
--
ALTER TABLE ONLY serv_transfer
ADD CONSTRAINT fk_1yn2cmebo4ipe834c1jtepfip
FOREIGN KEY (account_id) REFERENCES tm_account(id);
--
-- Definition for index fk_83h9871rihaj6cqpnp6svtfkl (OID = 78900) :
--
ALTER TABLE ONLY serv_transfer_route
ADD CONSTRAINT fk_83h9871rihaj6cqpnp6svtfkl
FOREIGN KEY (currency_id) REFERENCES curr_currency(id);
--
-- Definition for index fk_rwt0vs34sgqg27kt21mvpyqp (OID = 78905) :
--
ALTER TABLE ONLY serv_transfer_route
ADD CONSTRAINT fk_rwt0vs34sgqg27kt21mvpyqp
FOREIGN KEY (serv_transfer_id) REFERENCES serv_transfer(id);
--
-- Definition for index fk_7esvu01myhs2cwvetam5cpy2d (OID = 78910) :
--
ALTER TABLE ONLY serv_transfer_route_point
ADD CONSTRAINT fk_7esvu01myhs2cwvetam5cpy2d
FOREIGN KEY (transfer_route_id) REFERENCES serv_transfer_route(id);
--
-- Definition for index fk_o4y03k3g4jdn6oea2o1wwa74m (OID = 78915) :
--
ALTER TABLE ONLY tm_account
ADD CONSTRAINT fk_o4y03k3g4jdn6oea2o1wwa74m
FOREIGN KEY (residency_id) REFERENCES location_countries(id);
--
-- Definition for index fk_rfw3lprqrxkojs1owre3mi7ww (OID = 78920) :
--
ALTER TABLE ONLY tm_contact
ADD CONSTRAINT fk_rfw3lprqrxkojs1owre3mi7ww
FOREIGN KEY (citizenship_id) REFERENCES location_countries(id);
--
-- Definition for index fk_tdka1uukt8pqq7ym215avct5a (OID = 78925) :
--
ALTER TABLE ONLY tm_contact_easy
ADD CONSTRAINT fk_tdka1uukt8pqq7ym215avct5a
FOREIGN KEY (country_id) REFERENCES location_countries(id);
--
-- Definition for index fk_g1uebn6mqk9qiaw45vnacmyo2 (OID = 78930) :
--
ALTER TABLE ONLY user_roles
ADD CONSTRAINT fk_g1uebn6mqk9qiaw45vnacmyo2
FOREIGN KEY (user_id) REFERENCES users(id);
--
-- Definition for index fk_94dj9ry3k3tmcsyg8eatp7vvn (OID = 78935) :
--
ALTER TABLE ONLY users
ADD CONSTRAINT fk_94dj9ry3k3tmcsyg8eatp7vvn
FOREIGN KEY (image_id) REFERENCES tm_image(id);
--
-- Definition for index serv_hotel_room_fk1 (OID = 78940) :
--
ALTER TABLE ONLY serv_hotel_room
ADD CONSTRAINT serv_hotel_room_fk1
FOREIGN KEY (cost_tarriff_id) REFERENCES payment_tariff(id);
--
-- Definition for index tm_contact_easy_fk (OID = 78945) :
--
ALTER TABLE ONLY tm_contact_easy
ADD CONSTRAINT tm_contact_easy_fk
FOREIGN KEY (req_serv_hotel_id) REFERENCES req_serv_hotel(id);
--
-- Definition for index serv_hotel_room_fk2 (OID = 78950) :
--
ALTER TABLE ONLY serv_hotel_room
ADD CONSTRAINT serv_hotel_room_fk2
FOREIGN KEY (rr_tarriff_id) REFERENCES payment_tariff(id);
--
-- Definition for index firm_settings_pkey (OID = 78955) :
--
ALTER TABLE ONLY tm_firm_settings
ADD CONSTRAINT firm_settings_pkey
PRIMARY KEY (id);
--
-- Definition for index payment_tariff_shop_pkey (OID = 78957) :
--
ALTER TABLE ONLY payment_tariff_shop
ADD CONSTRAINT payment_tariff_shop_pkey
PRIMARY KEY (id);
--
-- Definition for index serv_hotel_room_fk (OID = 78959) :
--
ALTER TABLE ONLY serv_hotel_room
ADD CONSTRAINT serv_hotel_room_fk
FOREIGN KEY (shop_tarriff_id) REFERENCES payment_tariff_shop(id) MATCH FULL;
--
-- Definition for index tm_firm_settings_fk (OID = 78964) :
--
ALTER TABLE ONLY tm_firm_settings
ADD CONSTRAINT tm_firm_settings_fk
FOREIGN KEY (doc_documents_id) REFERENCES doc_documents(id);
--
-- Definition for index payment_price_shop_pkey (OID = 78969) :
--
ALTER TABLE ONLY payment_price_shop
ADD CONSTRAINT payment_price_shop_pkey
PRIMARY KEY (id);
--
-- Definition for index payment_price_shop_fk (OID = 78971) :
--
ALTER TABLE ONLY payment_price_shop
ADD CONSTRAINT payment_price_shop_fk
FOREIGN KEY (payment_tariff_shop_id) REFERENCES payment_tariff_shop(id);
--
-- Definition for index shop_user_pkey (OID = 79688) :
--
ALTER TABLE ONLY shop_user
ADD CONSTRAINT shop_user_pkey
PRIMARY KEY (id);
--
-- Definition for index shop_user_username_key (OID = 79690) :
--
ALTER TABLE ONLY shop_user
ADD CONSTRAINT shop_user_username_key
UNIQUE (username);
--
-- Definition for index shop_permission_pkey (OID = 79695) :
--
ALTER TABLE ONLY shop_permission
ADD CONSTRAINT shop_permission_pkey
PRIMARY KEY (id);
--
-- Definition for index info_permission_pkey (OID = 79703) :
--
ALTER TABLE ONLY info_permission
ADD CONSTRAINT info_permission_pkey
PRIMARY KEY (id);
--
-- Definition for index rel_shop_permission_pkey (OID = 79708) :
--
ALTER TABLE ONLY rel_shop_permission
ADD CONSTRAINT rel_shop_permission_pkey
PRIMARY KEY (id);
--
-- Definition for index rel_shop_permission_fk (OID = 79710) :
--
ALTER TABLE ONLY rel_shop_permission
ADD CONSTRAINT rel_shop_permission_fk
FOREIGN KEY (shop_permission_id) REFERENCES shop_permission(id);
--
-- Definition for index rel_shop_permission_fk1 (OID = 79715) :
--
ALTER TABLE ONLY rel_shop_permission
ADD CONSTRAINT rel_shop_permission_fk1
FOREIGN KEY (info_permission_id) REFERENCES info_permission(id);
--
-- Definition for index info_permission_fk (OID = 79720) :
--
ALTER TABLE ONLY info_permission
ADD CONSTRAINT info_permission_fk
FOREIGN KEY (doc_document_id) REFERENCES doc_documents(id);
--
-- Definition for index user_details_pkey (OID = 80313) :
--
ALTER TABLE ONLY user_detail
ADD CONSTRAINT user_details_pkey
PRIMARY KEY (id);
--
-- Definition for index rel_user_details_pkey (OID = 80318) :
--
ALTER TABLE ONLY rel_user_details
ADD CONSTRAINT rel_user_details_pkey
PRIMARY KEY (id);
--
-- Definition for index rel_user_details_fk (OID = 80320) :
--
ALTER TABLE ONLY rel_user_details
ADD CONSTRAINT rel_user_details_fk
FOREIGN KEY (user_details_id) REFERENCES user_detail(id);
--
-- Definition for index rel_user_details_fk1 (OID = 80325) :
--
ALTER TABLE ONLY rel_user_details
ADD CONSTRAINT rel_user_details_fk1
FOREIGN KEY (users_id) REFERENCES users(id);
--
-- Definition for index tm_mail_newsletter_pkey (OID = 80951) :
--
ALTER TABLE ONLY tm_mail_newsletter
ADD CONSTRAINT tm_mail_newsletter_pkey
PRIMARY KEY (id);
--
-- Definition for index tm_mail_newsletter_group_pkey (OID = 80959) :
--
ALTER TABLE ONLY tm_mail_newsletter_group
ADD CONSTRAINT tm_mail_newsletter_group_pkey
PRIMARY KEY (id);
--
-- Definition for index rel_mail_newsletter_group_pkey (OID = 80964) :
--
ALTER TABLE ONLY rel_mail_newsletter_group
ADD CONSTRAINT rel_mail_newsletter_group_pkey
PRIMARY KEY (id);
--
-- Definition for index rel_mail_newsletter_group_fk (OID = 80966) :
--
ALTER TABLE ONLY rel_mail_newsletter_group
ADD CONSTRAINT rel_mail_newsletter_group_fk
FOREIGN KEY (tm_mail_newsletter_id) REFERENCES tm_mail_newsletter(id);
--
-- Definition for index rel_mail_newsletter_group_fk1 (OID = 80971) :
--
ALTER TABLE ONLY rel_mail_newsletter_group
ADD CONSTRAINT rel_mail_newsletter_group_fk1
FOREIGN KEY (tm_mail_newsletter_group_id) REFERENCES tm_mail_newsletter_group(id);
--
-- Comments
--
COMMENT ON SCHEMA public IS 'standard public schema';
COMMENT ON TABLE public.tm_firm_settings IS 'SObject table';
|
<gh_stars>1-10
DROP TABLE ICO.inventory
DROP TABLE ICO.catalog
CREATE TABLE ICO.inventory
(
vendor_id VARCHAR(128),
vendor_product_code VARCHAR(128),
quantity_kg DECIMAL(10,2),
date_arrival DATE
)
CREATE TABLE ICO.catalog
(
catalog_id BIGINT IDENTITY,
product_code VARCHAR(128),
quantity INTEGER,
price DECIMAL(10,2),
time_roasted DATETIME,
roasting_notes VARCHAR(2048),
img VARCHAR(2048)
)
|
/***
Author: GSB Labs, the smartest crypto analytics developers
Date written: 2022-01-20
Objective: select all Immutable X price from raw dex.trades table
Forked from https://dune.xyz/queries/367639/700058
***/
--
with dex_trades AS (
select
usd_amount,
token_a_amount_raw as token_amount_raw,
block_time
from dex.trades
where "token_a_address" = '\xf57e7e7c23978c3caec3c3548e3d615c346e79ff'
AND usd_amount > 0
AND category = 'DEX'
union
select
usd_amount,
token_b_amount_raw as token_amount_raw,
block_time
from dex.trades
where "token_b_address" = '\xf57e7e7c23978c3caec3c3548e3d615c346e79ff'
AND token_b_amount > 0
AND category = 'DEX'
)
select
date_trunc('day', block_time) as time_hour ,
sum(usd_amount) as volume_usd,
(sum(usd_amount)/sum(token_amount_raw))* 1e18 as price_usd
from dex_trades
group by date_trunc('day', block_time)
order by time_hour desc
|
-- Cambios en credenciales de dependencia funcional - Ticket #109
BEGIN;
--
INSERT INTO seguridad_aplicacion (nombre, descripcion, home_url) VALUES ('Reportes', 'Reportes', '/reportes/');
-- Establecimientos
INSERT INTO seguridad_credencial (nombre, descripcion, aplicacion_id) VALUES ('reportes_listado_establecimientos', 'Listado de establecimientos', (SELECT id FROM seguridad_aplicacion WHERE nombre = 'Reportes'));
INSERT INTO seguridad_rol_credenciales (rol_id, credencial_id) VALUES
(
(SELECT id FROM seguridad_rol WHERE nombre = 'ReferenteJurisdiccional'),
(SELECT id FROM seguridad_credencial WHERE nombre = 'reportes_listado_establecimientos')
);
INSERT INTO seguridad_rol_credenciales (rol_id, credencial_id) VALUES
(
(SELECT id FROM seguridad_rol WHERE nombre = 'AdminTitulos'),
(SELECT id FROM seguridad_credencial WHERE nombre = 'reportes_listado_establecimientos')
);
-- Anexos
INSERT INTO seguridad_credencial (nombre, descripcion, aplicacion_id) VALUES ('reportes_listado_anexos', 'Listado de anexos', (SELECT id FROM seguridad_aplicacion WHERE nombre = 'Reportes'));
INSERT INTO seguridad_rol_credenciales (rol_id, credencial_id) VALUES
(
(SELECT id FROM seguridad_rol WHERE nombre = 'ReferenteInstitucional'),
(SELECT id FROM seguridad_credencial WHERE nombre = 'reportes_listado_anexos')
);
-- Extensiones áulicas
INSERT INTO seguridad_credencial (nombre, descripcion, aplicacion_id) VALUES ('reportes_listado_extensiones_aulicas', 'Listado de extensiones áulicas', (SELECT id FROM seguridad_aplicacion WHERE nombre = 'Reportes'));
INSERT INTO seguridad_rol_credenciales (rol_id, credencial_id) VALUES
(
(SELECT id FROM seguridad_rol WHERE nombre = 'ReferenteInstitucional'),
(SELECT id FROM seguridad_credencial WHERE nombre = 'reportes_listado_extensiones_aulicas')
);
-- Dependencias funcionales
INSERT INTO seguridad_credencial (nombre, descripcion, aplicacion_id) VALUES ('reportes_listado_dependencias_funcionales', 'Listado de extensiones áulicas', (SELECT id FROM seguridad_aplicacion WHERE nombre = 'Reportes'));
INSERT INTO seguridad_rol_credenciales (rol_id, credencial_id) VALUES
(
(SELECT id FROM seguridad_rol WHERE nombre = 'ReferenteJurisdiccional'),
(SELECT id FROM seguridad_credencial WHERE nombre = 'reportes_listado_dependencias_funcionales')
);
-- Usuarios
INSERT INTO seguridad_credencial (nombre, descripcion, aplicacion_id) VALUES ('reportes_listado_usuarios', 'Listado de usuarios', (SELECT id FROM seguridad_aplicacion WHERE nombre = 'Reportes'));
INSERT INTO seguridad_rol_credenciales (rol_id, credencial_id) VALUES
(
(SELECT id FROM seguridad_rol WHERE nombre = 'ReferenteJurisdiccional'),
(SELECT id FROM seguridad_credencial WHERE nombre = 'reportes_listado_usuarios')
);
INSERT INTO seguridad_rol_credenciales (rol_id, credencial_id) VALUES
(
(SELECT id FROM seguridad_rol WHERE nombre = 'AdminSeguridad'),
(SELECT id FROM seguridad_credencial WHERE nombre = 'reportes_listado_usuarios')
);
INSERT INTO seguridad_rol_credenciales (rol_id, credencial_id) VALUES
(
(SELECT id FROM seguridad_rol WHERE nombre = 'ReferenteInstitucional'),
(SELECT id FROM seguridad_credencial WHERE nombre = 'reportes_listado_usuarios')
);
---------------------------------------
INSERT INTO deltas_sql (numero, app, comentario) VALUES ('017', 'Reportes', 'Nueva aplicación de reportes');
--
COMMIT;
|
<reponame>taritom/bn-api
ALTER TABLE payments
add url_nonce text
|
<reponame>WebProWWW/wp-region
SET foreign_key_checks = 0;
DROP TABLE IF EXISTS `wp_region`;
CREATE TABLE `wp_region` (
`id` int NOT NULL AUTO_INCREMENT,
`code` int NOT NULL,
`name` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `idx-region-code` (`code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `wp_region` WRITE;
INSERT INTO `wp_region` (code, name) VALUES (1,'Республика Адыгея'),(2,'Республика Башкортостан'),(3,'Республика Бурятия'),(4,'Республика Алтай'),(5,'Республика Дагестан'),(6,'Республика Ингушетия'),(7,'Кабардино-Балкарская Республика'),(8,'Республика Калмыкия'),(9,'Карачаево-Черкесская Республика'),(10,'Республика Карелия'),(11,'Республика Коми'),(12,'Республика Марий Эл'),(13,'Республика Мордовия'),(14,'Республика Саха (Якутия)'),(15,'Республика Северная Осетия-Алания'),(16,'Республика Татарстан'),(17,'Республика Тыва'),(18,'Удмуртская Республика'),(19,'Республика Хакасия'),(20,'Чеченская Республика'),(21,'Чувашская Республика - Чувашия'),(22,'Алтайский край'),(23,'Краснодарский край'),(24,'Красноярский край'),(25,'Приморский край'),(26,'Ставропольский край'),(27,'Хабаровский край и Еврейская автономная область'),(28,'Амурская область'),(29,'Архангельская область и Ненецкий АО'),(30,'Астраханская область'),(31,'Белгородская область'),(32,'Брянская область'),(33,'Владимирская область'),(34,'Волгоградская область'),(35,'Вологодская область'),(36,'Воронежская область'),(37,'Ивановская область'),(38,'Иркутская область'),(39,'Калининградская область'),(40,'Калужская область'),(41,'Камчатский край и Чукотский АО'),(42,'Кемеровская область - Кузбасс'),(43,'Кировская область'),(44,'Костромская область'),(45,'Курганская область'),(46,'Курская область'),(47,'Ленинградская область'),(48,'Липецкая область'),(49,'Магаданская область'),(50,'Московская область'),(51,'Мурманская область'),(52,'Нижегородская область'),(53,'Новгородская область'),(54,'Новосибирская область'),(55,'Омская область'),(56,'Оренбургская область'),(57,'Орловская область'),(58,'Пензенская область'),(59,'Пермский край'),(60,'Псковская область'),(61,'Ростовская область'),(62,'Рязанская область'),(63,'Самарская область'),(64,'Саратовская область'),(65,'Сахалинская область'),(66,'Свердловская область'),(67,'Смоленская область'),(68,'Тамбовская область'),(69,'Тверская область'),(70,'Томская область'),(71,'Тульская область'),(72,'Тюменская область'),(73,'Ульяновская область'),(74,'Челябинская область'),(75,'Забайкальский край'),(76,'Ярославская область'),(77,'Москва'),(78,'Санкт-Петербург'),(82,'Республика Крым'),(86,'Ханты-Мансийский АО-Югра'),(87,'Чукотский АО'),(89,'Ямало-Ненецкий АО'),(92,'Севастополь'),(99,'Все регионы');
UNLOCK TABLES;
DROP TABLE IF EXISTS `wp_city`;
CREATE TABLE `wp_city` (
`id` int NOT NULL AUTO_INCREMENT,
`alias` varchar(255) NOT NULL,
`name` varchar(255) NOT NULL,
`region_id` int DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `alias_UNIQUE` (`alias`),
KEY `fk-city-region_idx` (`region_id`),
CONSTRAINT `fk-city-region` FOREIGN KEY (`region_id`) REFERENCES `wp_region` (`id`) ON DELETE SET NULL ON UPDATE RESTRICT
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `wp_city` WRITE;
INSERT INTO `wp_city` (alias, name, region_id) VALUES ('abaza','Абаза',19),('abakan','Абакан',19),('abdulino','Абдулино',56),('abinsk','Абинск',23),('agidel','Агидель',2),('agryz','Агрыз',16),('adygeysk','Адыгейск',1),('aznakaevo','Азнакаево',16),('azov','Азов',61),('ak-dovurak','Ак-Довурак',17),('aksay','Аксай',61),('alagir','Алагир',15),('alapaevsk','Алапаевск',66),('alatyr','Алатырь',21),('aldan','Алдан',14),('aleysk','Алейск',4),('aleksandrov','Александров',33),('aleksandrovsk','Александровск',59),('aleksandrovsk-sahalinskiy','Александровск-Сахалинский',65),('alekseevka','Алексеевка',31),('aleksin','Алексин',71),('alzamay','Алзамай',38),('alupka','Алупка',82),('alushta','Алушта',82),('almetevsk','Альметьевск',16),('amursk','Амурск',27),('anadyr','Анадырь',41),('anapa','Анапа',23),('angarsk','Ангарск',38),('andreapol','Андреаполь',69),('anzhero-sudzhensk','Анжеро-Судженск',42),('aniva','Анива',65),('apatity','Апатиты',51),('aprelevka','Апрелевка',50),('apsheronsk','Апшеронск',23),('aramil','Арамиль',66),('argun','Аргун',20),('ardatov','Ардатов',13),('ardon','Ардон',15),('arzamas','Арзамас',52),('arkadak','Аркадак',64),('armavir','Армавир',23),('armyansk','Армянск',82),('arsenev','Арсеньев',25),('arsk','Арск',16),('artem','Артём',25),('artemovsk','Артёмовск',24),('artemovskiy','Артёмовский',66),('arhangelsk','Архангельск',29),('asbest','Асбест',66),('asino','Асино',70),('astrahan','Астрахань',30),('atkarsk','Аткарск',64),('ahtubinsk','Ахтубинск',30),('achinsk','Ачинск',24),('asha','Аша',74),('babaevo','Бабаево',35),('babushkin','Бабушкин',3),('bavly','Бавлы',16),('bagrationovsk','Багратионовск',39),('baykalsk','Байкальск',38),('baymak','Баймак',2),('bakal','Бакал',74),('baksan','Баксан',7),('balabanovo','Балабаново',40),('balakovo','Балаково',64),('balahna','Балахна',52),('balashiha','Балашиха',50),('balashov','Балашов',64),('baley','Балей',75),('baltiysk','Балтийск',39),('barabinsk','Барабинск',54),('barnaul','Барнаул',4),('barysh','Барыш',73),('bataysk','Батайск',61),('bahchisaray','Бахчисарай',82),('bezhetsk','Бежецк',69),('belaya-kalitva','<NAME>',61),('belaya-holunitsa','Белая Холуница',43),('belgorod','Белгород',31),('belebey','Белебей',2),('belev','Белёв',71),('belinskiy','Белинский',58),('belovo','Белово',42),('belogorsk-amurskaya','Белогорск (Амурская область)',28),('belogorsk-krym','Белогорск (Крым)',82),('belozersk','Белозерск',35),('belokuriha','Белокуриха',4),('belomorsk','Беломорск',10),('beloozerskiy','Белоозёрский',50),('beloretsk','Белорецк',2),('belorechensk','Белореченск',23),('belousovo','Белоусово',40),('beloyarskiy','Белоярский',86),('belyy','Белый',69),('berdsk','Бердск',54),('berezniki','Березники',59),('berezovskiy-kemerovskaya','Берёзовский (Кемеровская область)',42),('berezovskiy-sverdlovskaya','Берёзовский (Свердловская область)',66),('beslan','Беслан',15),('biysk','Бийск',4),('bikin','Бикин',27),('bilibino','Билибино',41),('birobidzhan','Биробиджан',27),('birsk','Бирск',2),('biryusinsk','Бирюсинск',38),('biryuch','Бирюч',31),('blagoveschensk-bashkortostan','Благовещенск (Республика Башкортостан)',2),('blagoveschensk-amurskaya','Благовещенск (Амурская область)',28),('blagodarnyy','Благодарный',26),('bobrov','Бобров',36),('bogdanovich','Богданович',66),('bogoroditsk','Богородицк',71),('bogorodsk','Богородск',52),('bogotol','Боготол',24),('boguchar','Богучар',36),('bodaybo','Бодайбо',38),('boksitogorsk','Бокситогорск',47),('bolgar','Болгар',16),('bologoe','Бологое',69),('bolotnoe','Болотное',54),('bolohovo','Болохово',71),('bolhov','Болхов',57),('bolshoy-kamen','Большой Камень',25),('bor','Бор',52),('borzya','Борзя',75),('borisoglebsk','Борисоглебск',36),('borovichi','Боровичи',53),('borovsk','Боровск',40),('borodino','Бородино',24),('bratsk','Братск',38),('bronnitsy','Бронницы',50),('bryansk','Брянск',32),('bugulma','Бугульма',16),('buguruslan','Бугуруслан',56),('budennovsk','Будённовск',26),('buzuluk','Бузулук',56),('buinsk','Буинск',16),('buy','Буй',44),('buynaksk','Буйнакск',5),('buturlinovka','Бутурлиновка',36),('valday','Валдай',53),('valuyki','Валуйки',31),('velizh','Велиж',67),('velikie-luki','Великие Луки',60),('velikiy-novgorod','Великий Новгород',53),('velikiy-ustyug','Великий Устюг',35),('velsk','Вельск',29),('venev','Венёв',71),('vereschagino','Верещагино',59),('vereya','Верея',50),('verhneuralsk','Верхнеуральск',74),('verhniy-tagil','<NAME>',66),('verhniy-ufaley','<NAME>',74),('verhnyaya-pyshma','<NAME>',66),('verhnyaya-salda','<NAME>',66),('verhnyaya-tura','Верхняя Тура',66),('verhoture','Верхотурье',66),('verhoyansk','Верхоянск',14),('vesegonsk','Весьегонск',69),('vetluga','Ветлуга',52),('vidnoe','Видное',50),('vilyuysk','Вилюйск',14),('vilyuchinsk','Вилючинск',41),('vihorevka','Вихоревка',38),('vichuga','Вичуга',37),('vladivostok','Владивосток',25),('vladikavkaz','Владикавказ',15),('vladimir','Владимир',33),('volgograd','Волгоград',34),('volgodonsk','Волгодонск',61),('volgorechensk','Волгореченск',44),('volzhsk','Волжск',12),('volzhskiy','Волжский',34),('vologda','Вологда',35),('volodarsk','Володарск',52),('volokolamsk','Волоколамск',50),('volosovo','Волосово',47),('volhov','Волхов',47),('volchansk','Волчанск',66),('volsk','Вольск',64),('vorkuta','Воркута',11),('voronezh','Воронеж',36),('vorsma','Ворсма',52),('voskresensk','Воскресенск',50),('votkinsk','Воткинск',18),('vsevolozhsk','Всеволожск',47),('vuktyl','Вуктыл',11),('vyborg','Выборг',47),('vyksa','Выкса',52),('vysokovsk','Высоковск',50),('vysotsk','Высоцк',47),('vytegra','Вытегра',35),('vyshniy-volochek','Вышний Волочёк',69),('vyazemskiy','Вяземский',27),('vyazniki','Вязники',33),('vyazma','Вязьма',67),('vyatskie-polyany','Вятские Поляны',43),('gavrilov-posad','<NAME>',37),('gavrilov-yam','Гаврилов-Ям',76),('gagarin','Гагарин',67),('gadzhievo','Гаджиево',51),('gay','Гай',56),('galich','Галич',44),('gatchina','Гатчина',47),('gvardeysk','Гвардейск',39),('gdov','Гдов',60),('gelendzhik','Геленджик',23),('georgievsk','Георгиевск',26),('glazov','Глазов',18),('golitsyno','Голицыно',50),('gorbatov','Горбатов',52),('gorno-altaysk','Горно-Алтайск',4),('gornozavodsk','Горнозаводск',59),('gornyak','Горняк',4),('gorodets','Городец',52),('gorodische','Городище',58),('gorodovikovsk','Городовиковск',8),('gorohovets','Гороховец',33),('goryachiy-klyuch','Горячий Ключ',23),('grayvoron','Грайворон',31),('gremyachinsk','Гремячинск',59),('groznyy','Грозный',20),('gryazi','Грязи',48),('gryazovets','Грязовец',35),('gubaha','Губаха',59),('gubkin','Губкин',31),('gubkinskiy','Губкинский',89),('gudermes','Гудермес',20),('gukovo','Гуково',61),('gulkevichi','Гулькевичи',23),('gurevsk-kaliningradskaya','Гурьевск (Калининградская область)',39),('gurevsk-kemerovskaya','Гурьевск (Кемеровская область)',42),('gusev','Гусев',39),('gusinoozersk','Гусиноозёрск',3),('gus-hrustalnyy','Гусь-Хрустальный',33),('davlekanovo','Давлеканово',2),('dagestanskie-ogni','Дагестанские Огни',5),('dalmatovo','Далматово',45),('dalnegorsk','Дальнегорск',25),('dalnerechensk','Дальнереченск',25),('danilov','Данилов',76),('dankov','Данков',48),('degtyarsk','Дегтярск',66),('dedovsk','Дедовск',50),('demidov','Демидов',67),('derbent','Дербент',5),('desnogorsk','Десногорск',67),('dzhankoy','Джанкой',82),('dzerzhinsk','Дзержинск',52),('dzerzhinskiy','Дзержинский',50),('divnogorsk','Дивногорск',24),('digora','Дигора',15),('dimitrovgrad','Димитровград',73),('dmitriev','Дмитриев',46),('dmitrov','Дмитров',50),('dmitrovsk','Дмитровск',57),('dno','Дно',60),('dobryanka','Добрянка',59),('dolgoprudnyy','Долгопрудный',50),('dolinsk','Долинск',65),('domodedovo','Домодедово',50),('donetsk','Донецк',61),('donskoy','Донской',71),('dorogobuzh','Дорогобуж',67),('drezna','Дрезна',50),('dubna','Дубна',50),('dubovka','Дубовка',34),('dudinka','Дудинка',24),('duhovschina','Духовщина',67),('dyurtyuli','Дюртюли',2),('dyatkovo','Дятьково',32),('evpatoriya','Евпатория',82),('egorevsk','Егорьевск',50),('eysk','Ейск',23),('ekaterinburg','Екатеринбург',66),('elabuga','Елабуга',16),('elets','Елец',48),('elizovo','Елизово',41),('elnya','Ельня',67),('emanzhelinsk','Еманжелинск',74),('emva','Емва',11),('eniseysk','Енисейск',24),('ermolino','Ермолино',40),('ershov','Ершов',64),('essentuki','Ессентуки',26),('efremov','Ефремов',71),('zheleznovodsk','Железноводск',26),('zheleznogorsk-krasnoyarskij','Железногорск (Красноярский край)',24),('zheleznogorsk-kurskaya','Железногорск (Курская область)',46),('zheleznogorsk-ilimskiy','Железногорск-Илимский',38),('zherdevka','Жердевка',68),('zhigulevsk','Жигулёвск',63),('zhizdra','Жиздра',40),('zhirnovsk','Жирновск',34),('zhukov','Жуков',40),('zhukovka','Жуковка',32),('zhukovskiy','Жуковский',50),('zavitinsk','Завитинск',28),('zavodoukovsk','Заводоуковск',72),('zavolzhsk','Заволжск',37),('zavolzhe','Заволжье',52),('zadonsk','Задонск',48),('zainsk','Заинск',16),('zakamensk','Закаменск',3),('zaozernyy','Заозёрный',24),('zaozersk','Заозёрск',51),('zapadnaya-dvina','Западная Двина',69),('zapolyarnyy','Заполярный',51),('zaraysk','Зарайск',50),('zarechnyy-penzenskaya','Заречный (Пензенская область)',58),('zarechnyy-sverdlovskaya','Заречный (Свердловская область)',66),('zarinsk','Заринск',4),('zvenigovo','Звенигово',12),('zvenigorod','Звенигород',50),('zverevo','Зверево',61),('zelenogorsk','Зеленогорск',24),('zelenogradsk','Зеленоградск',39),('zelenodolsk','Зеленодольск',16),('zelenokumsk','Зеленокумск',26),('zernograd','Зерноград',61),('zeya','Зея',28),('zima','Зима',38),('zlatoust','Златоуст',74),('zlynka','Злынка',32),('zmeinogorsk','Змеиногорск',4),('znamensk','Знаменск',30),('zubtsov','Зубцов',69),('zuevka','Зуевка',43),('ivangorod','Ивангород',47),('ivanovo','Иваново',37),('ivanteevka','Ивантеевка',50),('ivdel','Ивдель',66),('igarka','Игарка',24),('izhevsk','Ижевск',18),('izberbash','Избербаш',5),('izobilnyy','Изобильный',26),('ilanskiy','Иланский',24),('inza','Инза',73),('innopolis','Иннополис',16),('insar','Инсар',13),('inta','Инта',11),('ipatovo','Ипатово',26),('irbit','Ирбит',66),('irkutsk','Иркутск',38),('isilkul','Исилькуль',55),('iskitim','Искитим',54),('istra','Истра',50),('ishim','Ишим',72),('ishimbay','Ишимбай',2),('yoshkar-ola','Йошкар-Ола',12),('kadnikov','Кадников',35),('kazan','Казань',16),('kalach','Калач',36),('kalach-na-donu','Калач-на-Дону',34),('kalachinsk','Калачинск',55),('kaliningrad','Калининград',39),('kalininsk','Калининск',64),('kaltan','Калтан',42),('kaluga','Калуга',40),('kalyazin','Калязин',69),('kambarka','Камбарка',18),('kamenka','Каменка',58),('kamennogorsk','Каменногорск',47),('kamensk-uralskiy','Каменск-Уральский',66),('kamensk-shahtinskiy','Каменск-Шахтинский',61),('kamen-na-obi','Камень-на-Оби',4),('kameshkovo','Камешково',33),('kamyzyak','Камызяк',30),('kamyshin','Камышин',34),('kamyshlov','Камышлов',66),('kanash','Канаш',21),('kandalaksha','Кандалакша',51),('kansk','Канск',24),('karabanovo','Карабаново',33),('karabash','Карабаш',74),('karabulak','Карабулак',6),('karasuk','Карасук',54),('karachaevsk','Карачаевск',9),('karachev','Карачев',32),('kargat','Каргат',54),('kargopol','Каргополь',29),('karpinsk','Карпинск',66),('kartaly','Карталы',74),('kasimov','Касимов',62),('kasli','Касли',74),('kaspiysk','Каспийск',5),('katav-ivanovsk','Катав-Ивановск',74),('kataysk','Катайск',45),('kachkanar','Качканар',66),('kashin','Кашин',69),('kashira','Кашира',50),('kedrovyy','Кедровый',70),('kemerovo','Кемерово',42),('kem','Кемь',10),('kerch','Керчь',82),('kizel','Кизел',59),('kizilyurt','Кизилюрт',5),('kizlyar','Кизляр',5),('kimovsk','Кимовск',71),('kimry','Кимры',69),('kingisepp','Кингисепп',47),('kinel','Кинель',63),('kineshma','Кинешма',37),('kireevsk','Киреевск',71),('kirensk','Киренск',38),('kirzhach','Киржач',33),('kirillov','Кириллов',35),('kirishi','Кириши',47),('kirov-kaluzhskaya','Киров (Калужская область)',40),('kirov-kirovskaya','Киров (Кировская область)',43),('kirovgrad','Кировград',66),('kirovo-chepetsk','Кирово-Чепецк',43),('kirovsk-leningradskaya','Кировск (Ленинградская область)',47),('kirovsk-murmanskaya','Кировск (Мурманская область)',51),('kirs','Кирс',43),('kirsanov','Кирсанов',68),('kiselevsk','Киселёвск',42),('kislovodsk','Кисловодск',26),('klin','Клин',50),('klintsy','Клинцы',32),('knyaginino','Княгинино',52),('kovdor','Ковдор',51),('kovrov','Ковров',33),('kovylkino','Ковылкино',13),('kogalym','Когалым',86),('kodinsk','Кодинск',24),('kozelsk','Козельск',40),('kozlovka','Козловка',21),('kozmodemyansk','Козьмодемьянск',12),('kola','Кола',51),('kologriv','Кологрив',44),('kolomna','Коломна',50),('kolpashevo','Колпашево',70),('kolchugino','Кольчугино',33),('kommunar','Коммунар',47),('komsomolsk','Комсомольск',37),('komsomolsk-na-amure','Комсомольск-на-Амуре',27),('konakovo','Конаково',69),('kondopoga','Кондопога',10),('kondrovo','Кондрово',40),('konstantinovsk','Константиновск',61),('kopeysk','Копейск',74),('korablino','Кораблино',62),('korenovsk','Кореновск',23),('korkino','Коркино',74),('korolev','Королёв',50),('korocha','Короча',31),('korsakov','Корсаков',65),('koryazhma','Коряжма',29),('kosterevo','Костерёво',33),('kostomuksha','Костомукша',10),('kostroma','Кострома',44),('kotelniki','Котельники',50),('kotelnikovo','Котельниково',34),('kotelnich','Котельнич',43),('kotlas','Котлас',29),('kotovo','Котово',34),('kotovsk','Котовск',68),('kohma','Кохма',37),('krasavino','Красавино',35),('krasnoarmeysk-moskovskaya','Красноармейск (Московская область)',50),('krasnoarmeysk-saratovskaya','Красноармейск (Саратовская область)',64),('krasnovishersk','Красновишерск',59),('krasnogorsk','Красногорск',50),('krasnodar','Краснодар',23),('krasnozavodsk','Краснозаводск',50),('krasnoznamensk-kaliningradskaya','Краснознаменск (Калининградская область)',39),('krasnoznamensk-moskovskaya','Краснознаменск (Московская область)',50),('krasnokamensk','Краснокаменск',75),('krasnokamsk','Краснокамск',59),('krasnoperekopsk','Красноперекопск',82),('krasnoslobodsk-volgogradskaya','Краснослободск (Волгоградская область)',34),('krasnoslobodsk-mordoviya','Краснослободск (Республика Мордовия)',13),('krasnoturinsk','Краснотурьинск',66),('krasnouralsk','Красноуральск',66),('krasnoufimsk','Красноуфимск',66),('krasnoyarsk','Красноярск',24),('krasnyy-kut','Красный Кут',64),('krasnyy-sulin','<NAME>',61),('krasnyy-holm','<NAME>',69),('kremenki','Кремёнки',40),('kropotkin','Кропоткин',23),('krymsk','Крымск',23),('kstovo','Кстово',52),('kubinka','Кубинка',50),('kuvandyk','Кувандык',56),('kuvshinovo','Кувшиново',69),('kudrovo','Кудрово',47),('kudymkar','Кудымкар',59),('kuznetsk','Кузнецк',58),('kuybyshev','Куйбышев',54),('kukmor','Кукмор',16),('kulebaki','Кулебаки',52),('kumertau','Кумертау',2),('kungur','Кунгур',59),('kupino','Купино',54),('kurgan','Курган',45),('kurganinsk','Курганинск',23),('kurilsk','Курильск',65),('kurlovo','Курлово',33),('kurovskoe','Куровское',50),('kursk','Курск',46),('kurtamysh','Куртамыш',45),('kurchaloy','Курчалой',20),('kurchatov','Курчатов',46),('kusa','Куса',74),('kushva','Кушва',66),('kyzyl','Кызыл',17),('kyshtym','Кыштым',74),('kyahta','Кяхта',3),('labinsk','Лабинск',23),('labytnangi','Лабытнанги',89),('lagan','Лагань',8),('ladushkin','Ладушкин',39),('laishevo','Лаишево',16),('lakinsk','Лакинск',33),('langepas','Лангепас',86),('lahdenpohya','Лахденпохья',10),('lebedyan','Лебедянь',48),('leninogorsk','Лениногорск',16),('leninsk','Ленинск',34),('leninsk-kuznetskiy','Ленинск-Кузнецкий',42),('lensk','Ленск',14),('lermontov','Лермонтов',26),('lesnoy','Лесной',66),('lesozavodsk','Лесозаводск',25),('lesosibirsk','Лесосибирск',24),('livny','Ливны',57),('likino-dulevo','Ликино-Дулёво',50),('lipetsk','Липецк',48),('lipki','Липки',71),('liski','Лиски',36),('lihoslavl','Лихославль',69),('lobnya','Лобня',50),('lodeynoe-pole','Лодейное Поле',47),('losino-petrovskiy','Лосино-Петровский',50),('luga','Луга',47),('luza','Луза',43),('lukoyanov','Лукоянов',52),('luhovitsy','Луховицы',50),('lyskovo','Лысково',52),('lysva','Лысьва',59),('lytkarino','Лыткарино',50),('lgov','Льгов',46),('lyuban','Любань',47),('lyubertsy','Люберцы',50),('lyubim','Любим',76),('lyudinovo','Людиново',40),('lyantor','Лянтор',86),('magadan','Магадан',49),('magas','Магас',6),('magnitogorsk','Магнитогорск',74),('maykop','Майкоп',1),('mayskiy','Майский',7),('makarov','Макаров',65),('makarev','Макарьев',44),('makushino','Макушино',45),('malaya-vishera','<NAME>',53),('malgobek','Малгобек',6),('malmyzh','Малмыж',43),('maloarhangelsk','Малоархангельск',57),('maloyaroslavets','Малоярославец',40),('mamadysh','Мамадыш',16),('mamonovo','Мамоново',39),('manturovo','Мантурово',44),('mariinsk','Мариинск',42),('mariinskiy-posad','<NAME>',21),('marks','Маркс',64),('mahachkala','Махачкала',5),('mglin','Мглин',32),('megion','Мегион',86),('medvezhegorsk','Медвежьегорск',10),('mednogorsk','Медногорск',56),('medyn','Медынь',40),('mezhgore','Межгорье',2),('mezhdurechensk','Междуреченск',42),('mezen','Мезень',29),('melenki','Меленки',33),('meleuz','Мелеуз',2),('mendeleevsk','Менделеевск',16),('menzelinsk','Мензелинск',16),('meschovsk','Мещовск',40),('miass','Миасс',74),('mikun','Микунь',11),('millerovo','Миллерово',61),('mineralnye-vody','Минеральные Воды',26),('minusinsk','Минусинск',24),('minyar','Миньяр',74),('mirnyy-saxa','Мирный (Республика Саха (Якутия))',14),('mirnyy-arhangelskaya','Мирный (Архангельская область)',29),('mihaylov','Михайлов',62),('mihaylovka','Михайловка',34),('mihaylovsk-sverdlovskaya','Михайловск (Свердловская область)',66),('mihaylovsk-stavropolskij','Михайловск (Ставропольский край)',26),('michurinsk','Мичуринск',68),('mogocha','Могоча',75),('mozhaysk','Можайск',50),('mozhga','Можга',18),('mozdok','Моздок',15),('monchegorsk','Мончегорск',51),('morozovsk','Морозовск',61),('morshansk','Моршанск',68),('mosalsk','Мосальск',40),('index','Москва',77),('muravlenko','Муравленко',89),('murashi','Мураши',43),('murino','Мурино',47),('murmansk','Мурманск',51),('murom','Муром',33),('mtsensk','Мценск',57),('myski','Мыски',42),('mytischi','Мытищи',50),('myshkin','Мышкин',76),('naberezhnye-chelny','Набережные Челны',16),('navashino','Навашино',52),('navoloki','Наволоки',37),('nadym','Надым',89),('nazarovo','Назарово',24),('nazran','Назрань',6),('nazyvaevsk','Называевск',55),('nalchik','Нальчик',7),('narimanov','Нариманов',30),('naro-fominsk','Наро-Фоминск',50),('nartkala','Нарткала',7),('naryan-mar','Нарьян-Мар',29),('nahodka','Находка',25),('nevel','Невель',60),('nevelsk','Невельск',65),('nevinnomyssk','Невинномысск',26),('nevyansk','Невьянск',66),('nelidovo','Нелидово',69),('neman','Неман',39),('nerekhta','Нерехта',44),('nerchinsk','Нерчинск',75),('neryungri','Нерюнгри',14),('nesterov','Нестеров',39),('neftegorsk','Нефтегорск',63),('neftekamsk','Нефтекамск',2),('neftekumsk','Нефтекумск',26),('nefteyugansk','Нефтеюганск',86),('neya','Нея',44),('nizhnevartovsk','Нижневартовск',86),('nizhnekamsk','Нижнекамск',16),('nizhneudinsk','Нижнеудинск',38),('nizhnie-sergi','Нижние Серги',66),('nizhniy-lomov','Нижни<NAME>',58),('nizhniy-novgorod','Нижний Новгород',52),('nizhniy-tagil','<NAME>',66),('nizhnyaya-salda','Нижняя Салда',66),('nizhnyaya-tura','Нижняя Тура',66),('nikolaevsk','Николаевск',34),('nikolaevsk-na-amure','Николаевск-на-Амуре',27),('nikolsk-vologodskaya','Никольск (Вологодская область)',35),('nikolsk-penzenskaya','Никольск (Пензенская область)',58),('nikolskoe','Никольское',47),('novaya-ladoga','Новая Ладога',47),('novaya-lyalya','Новая Ляля',66),('novoaleksandrovsk','Новоалександровск',26),('novoaltaysk','Новоалтайск',4),('novoanninskiy','Новоаннинский',34),('novovoronezh','Нововоронеж',36),('novodvinsk','Новодвинск',29),('novozybkov','Новозыбков',32),('novokubansk','Новокубанск',23),('novokuznetsk','Новокузнецк',42),('novokuybyshevsk','Новокуйбышевск',63),('novomichurinsk','Новомичуринск',62),('novomoskovsk','Новомосковск',71),('novopavlovsk','Новопавловск',26),('novorzhev','Новоржев',60),('novorossiysk','Новороссийск',23),('novosibirsk','Новосибирск',54),('novosil','Новосиль',57),('novosokolniki','Новосокольники',60),('novotroitsk','Новотроицк',56),('novouzensk','Новоузенск',64),('novoulyanovsk','Новоульяновск',73),('novouralsk','Новоуральск',66),('novohopersk','Новохопёрск',36),('novocheboksarsk','Новочебоксарск',21),('novocherkassk','Новочеркасск',61),('novoshahtinsk','Новошахтинск',61),('novyy-oskol','Новый Оскол',31),('novyy-urengoy','Новый Уренгой',89),('noginsk','Ногинск',50),('nolinsk','Нолинск',43),('norilsk','Норильск',24),('noyabrsk','Ноябрьск',89),('nurlat','Нурлат',16),('nytva','Нытва',59),('nyurba','Нюрба',14),('nyagan','Нягань',86),('nyazepetrovsk','Нязепетровск',74),('nyandoma','Няндома',29),('obluche','Облучье',27),('obninsk','Обнинск',40),('oboyan','Обоянь',46),('ob','Обь',54),('odintsovo','Одинцово',50),('ozersk-kaliningradskaya','Озёрск (Калининградская область)',39),('ozersk-chelyabinskaya','Озёрск (Челябинская область)',74),('ozery','Озёры',50),('oktyabrsk','Октябрьск',63),('oktyabrskiy','Октябрьский',2),('okulovka','Окуловка',53),('olekminsk','Олёкминск',14),('olenegorsk','Оленегорск',51),('olonets','Олонец',10),('omsk','Омск',55),('omutninsk','Омутнинск',43),('onega','Онега',29),('opochka','Опочка',60),('orel','Орёл',57),('orenburg','Оренбург',56),('orekhovo-zuevo','Орехово-Зуево',50),('orlov','Орлов',43),('orsk','Орск',56),('osa','Оса',59),('osinniki','Осинники',42),('ostashkov','Осташков',69),('ostrov','Остров',60),('ostrovnoy','Островной',51),('ostrogozhsk','Острогожск',36),('otradnoe','Отрадное',47),('otradnyy','Отрадный',63),('oha','Оха',65),('ohansk','Оханск',59),('ocher','Очёр',59),('pavlovo','Павлово',52),('pavlovsk','Павловск',36),('pavlovskiy-posad','Павловский Посад',50),('pallasovka','Палласовка',34),('partizansk','Партизанск',25),('pevek','Певек',41),('penza','Пенза',58),('pervomaysk','Первомайск',52),('pervouralsk','Первоуральск',66),('perevoz','Перевоз',52),('peresvet','Пересвет',50),('pereslavl-zalesskiy','Переславль-Залесский',76),('perm','Пермь',59),('pestovo','Пестово',53),('petrov-val','<NAME>',34),('petrovsk','Петровск',64),('petrovsk-zabaykalskiy','Петровск-Забайкальский',75),('petrozavodsk','Петрозаводск',10),('petropavlovsk-kamchatskiy','Петропавловск-Камчатский',41),('petuhovo','Петухово',45),('petushki','Петушки',33),('pechora','Печора',11),('pechory','Печоры',60),('pikalevo','Пикалёво',47),('pionerskiy','Пионерский',39),('pitkyaranta','Питкяранта',10),('plavsk','Плавск',71),('plast','Пласт',74),('ples','Плёс',37),('povorino','Поворино',36),('podolsk','Подольск',50),('podporozhe','Подпорожье',47),('pokachi','Покачи',86),('pokrov','Покров',33),('pokrovsk','Покровск',14),('polevskoy','Полевской',66),('polessk','Полесск',39),('polysaevo','Полысаево',42),('polyarnye-zori','Полярные Зори',51),('polyarnyy','Полярный',51),('poronaysk','Поронайск',65),('porhov','Порхов',60),('pohvistnevo','Похвистнево',63),('pochep','Почеп',32),('pochinok','Починок',67),('poshekhone','Пошехонье',76),('pravdinsk','Правдинск',39),('privolzhsk','Приволжск',37),('primorsk-kaliningradskaya','Приморск (Калининградская область)',39),('primorsk-leningradskaya','Приморск (Ленинградская область)',47),('primorsko-ahtarsk','Приморско-Ахтарск',23),('priozersk','Приозерск',47),('prokopevsk','Прокопьевск',42),('proletarsk','Пролетарск',61),('protvino','Протвино',50),('prohladnyy','Прохладный',7),('pskov','Псков',60),('pugachev','Пугачёв',64),('pudozh','Пудож',10),('pustoshka','Пустошка',60),('puchezh','Пучеж',37),('pushkino','Пушкино',50),('puschino','Пущино',50),('pytalovo','Пыталово',60),('pyt-yah','Пыть-Ях',86),('pyatigorsk','Пятигорск',26),('raduzhnyy-vladimirskaya','Радужный (Владимирская область)',33),('raduzhnyy-hanty-mansijskij','Радужный (Ханты-Мансийский АО)',86),('raychihinsk','Райчихинск',28),('ramenskoe','Раменское',50),('rasskazovo','Рассказово',68),('revda','Ревда',66),('rezh','Реж',66),('reutov','Реутов',50),('rzhev','Ржев',69),('rodniki','Родники',37),('roslavl','Рославль',67),('rossosh','Россошь',36),('rostov-na-donu','Ростов-на-Дону',61),('rostov','Ростов',76),('roshal','Рошаль',50),('rtischevo','Ртищево',64),('rubtsovsk','Рубцовск',4),('rudnya','Рудня',67),('ruza','Руза',50),('ruzaevka','Рузаевка',13),('rybinsk','Рыбинск',76),('rybnoe','Рыбное',62),('rylsk','Рыльск',46),('ryazhsk','Ряжск',62),('ryazan','Рязань',62),('saki','Саки',82),('salavat','Салават',2),('salair','Салаир',42),('salekhard','Салехард',89),('salsk','Сальск',61),('samara','Самара',63),('sankt-peterburg','Санкт-Петербург',78),('saransk','Саранск',13),('sarapul','Сарапул',18),('saratov','Саратов',64),('sarov','Саров',52),('sasovo','Сасово',62),('satka','Сатка',74),('safonovo','Сафоново',67),('sayanogorsk','Саяногорск',19),('sayansk','Саянск',38),('svetlogorsk','Светлогорск',39),('svetlograd','Светлоград',26),('svetlyy','Светлый',39),('svetogorsk','Светогорск',47),('svirsk','Свирск',38),('svobodnyy','Свободный',28),('sebezh','Себеж',60),('sevastopol','Севастополь',92),('severo-kurilsk','Северо-Курильск',65),('severobaykalsk','Северобайкальск',3),('severodvinsk','Северодвинск',29),('severomorsk','Североморск',51),('severouralsk','Североуральск',66),('seversk','Северск',70),('sevsk','Севск',32),('segezha','Сегежа',10),('seltso','Сельцо',32),('semenov','Семёнов',52),('semikarakorsk','Семикаракорск',61),('semiluki','Семилуки',36),('sengiley','Сенгилей',73),('serafimovich','Серафимович',34),('sergach','Сергач',52),('sergiev-posad','<NAME>',50),('serdobsk','Сердобск',58),('serov','Серов',66),('serpuhov','Серпухов',50),('sertolovo','Сертолово',47),('sibay','Сибай',2),('sim','Сим',74),('simferopol','Симферополь',82),('skovorodino','Сковородино',28),('skopin','Скопин',62),('slavgorod','Славгород',4),('slavsk','Славск',39),('slavyansk-na-kubani','Славянск-на-Кубани',23),('slantsy','Сланцы',47),('slobodskoy','Слободской',43),('slyudyanka','Слюдянка',38),('smolensk','Смоленск',67),('snezhinsk','Снежинск',74),('snezhnogorsk','Снежногорск',51),('sobinka','Собинка',33),('sovetsk-kaliningradskaya','Советск (Калининградская область)',39),('sovetsk-kirovskaya','Советск (Кировская область)',43),('sovetsk-tulskaya','Советск (Тульская область)',71),('sovetskaya-gavan','Советская Гавань',27),('sovetskiy','Советский',86),('sokol','Сокол',35),('soligalich','Солигалич',44),('solikamsk','Соликамск',59),('solnechnogorsk','Солнечногорск',50),('sol-iletsk','Соль-Илецк',56),('solvychegodsk','Сольвычегодск',29),('soltsy','Сольцы',53),('sorochinsk','Сорочинск',56),('sorsk','Сорск',19),('sortavala','Сортавала',10),('sosenskiy','Сосенский',40),('sosnovka','Сосновка',43),('sosnovoborsk','Сосновоборск',24),('sosnovyy-bor','Сосновый Бор',47),('sosnogorsk','Сосногорск',11),('sochi','Сочи',23),('spas-demensk','Спас-Деменск',40),('spas-klepiki','Спас-Клепики',62),('spassk','Спасск',58),('spassk-dalniy','Спасск-Дальний',25),('spassk-ryazanskiy','Спасск-Рязанский',62),('srednekolymsk','Среднеколымск',14),('sredneuralsk','Среднеуральск',66),('sretensk','Сретенск',75),('stavropol','Ставрополь',26),('staraya-kupavna','<NAME>',50),('staraya-russa','Старая Русса',53),('staritsa','Старица',69),('starodub','Стародуб',32),('staryy-krym','<NAME>',82),('staryy-oskol','Старый Оскол',31),('sterlitamak','Стерлитамак',2),('strezhevoy','Стрежевой',70),('stroitel','Строитель',31),('strunino','Струнино',33),('stupino','Ступино',50),('suvorov','Суворов',71),('sudak','Судак',82),('sudzha','Суджа',46),('sudogda','Судогда',33),('suzdal','Суздаль',33),('sunzha','Сунжа',6),('suoyarvi','Суоярви',10),('surazh','Сураж',32),('surgut','Сургут',86),('surovikino','Суровикино',34),('sursk','Сурск',58),('susuman','Сусуман',49),('suhinichi','Сухиничи',40),('suhoy-log','Сух<NAME>',66),('syzran','Сызрань',63),('syktyvkar','Сыктывкар',11),('sysert','Сысерть',66),('sychevka','Сычёвка',67),('syasstroy','Сясьстрой',47),('tavda','Тавда',66),('taganrog','Таганрог',61),('tayga','Тайга',42),('tayshet','Тайшет',38),('taldom','Талдом',50),('talitsa','Талица',66),('tambov','Тамбов',68),('tara','Тара',55),('tarko-sale','Тарко-Сале',89),('tarusa','Таруса',40),('tatarsk','Татарск',54),('tashtagol','Таштагол',42),('tver','Тверь',69),('teberda','Теберда',9),('teykovo','Тейково',37),('temnikov','Темников',13),('temryuk','Темрюк',23),('terek','Терек',7),('tetyushi','Тетюши',16),('timashevsk','Тимашёвск',23),('tihvin','Тихвин',47),('tihoretsk','Тихорецк',23),('tobolsk','Тобольск',72),('toguchin','Тогучин',54),('tolyatti','Тольятти',63),('tomari','Томари',65),('tommot','Томмот',14),('tomsk','Томск',70),('topki','Топки',42),('torzhok','Торжок',69),('toropets','Торопец',69),('tosno','Тосно',47),('totma','Тотьма',35),('trekhgornyy','Трёхгорный',74),('troitsk','Троицк',74),('trubchevsk','Трубчевск',32),('tuapse','Туапсе',23),('tuymazy','Туймазы',2),('tula','Тула',71),('tulun','Тулун',38),('turan','Туран',17),('turinsk','Туринск',66),('tutaev','Тутаев',76),('tynda','Тында',28),('tyrnyauz','Тырныауз',7),('tyukalinsk','Тюкалинск',55),('tyumen','Тюмень',72),('uvarovo','Уварово',68),('uglegorsk','Углегорск',65),('uglich','Углич',76),('udachnyy','Удачный',14),('udomlya','Удомля',69),('uzhur','Ужур',24),('uzlovaya','Узловая',71),('ulan-ude','Улан-Удэ',3),('ulyanovsk','Ульяновск',73),('unecha','Унеча',32),('uray','Урай',86),('uren','Урень',52),('urzhum','Уржум',43),('urus-martan','Урус-Мартан',20),('uryupinsk','Урюпинск',34),('usinsk','Усинск',11),('usman','Усмань',48),('usole-sibirskoe','Усолье-Сибирское',38),('usole','Усолье',59),('ussuriysk','Уссурийск',25),('ust-dzheguta','Усть-Джегута',9),('ust-ilimsk','Усть-Илимск',38),('ust-katav','Усть-Катав',74),('ust-kut','Усть-Кут',38),('ust-labinsk','Усть-Лабинск',23),('ustyuzhna','Устюжна',35),('ufa','Уфа',2),('uhta','Ухта',11),('uchaly','Учалы',2),('uyar','Уяр',24),('fatezh','Фатеж',46),('feodosiya','Феодосия',82),('fokino-bryanskaya','Фокино (Брянская область)',32),('fokino-primorskij','Фокино (Приморский край)',25),('frolovo','Фролово',34),('fryazino','Фрязино',50),('furmanov','Фурманов',37),('habarovsk','Хабаровск',27),('hadyzhensk','Хадыженск',23),('hanty-mansiysk','Ханты-Мансийск',86),('harabali','Харабали',30),('harovsk','Харовск',35),('hasavyurt','Хасавюрт',5),('hvalynsk','Хвалынск',64),('hilok','Хилок',75),('himki','Химки',50),('holm','Холм',53),('holmsk','Холмск',65),('hotkovo','Хотьково',50),('tsivilsk','Цивильск',21),('tsimlyansk','Цимлянск',61),('tsiolkovskiy','Циолковский',28),('chadan','Чадан',17),('chaykovskiy','Чайковский',59),('chapaevsk','Чапаевск',63),('chaplygin','Чаплыгин',48),('chebarkul','Чебаркуль',74),('cheboksary','Чебоксары',21),('chegem','Чегем',7),('chekalin','Чекалин',71),('chelyabinsk','Челябинск',74),('cherdyn','Чердынь',59),('cheremhovo','Черемхово',38),('cherepanovo','Черепаново',54),('cherepovets','Череповец',35),('cherkessk','Черкесск',9),('chermoz','Чёрмоз',59),('chernogolovka','Черноголовка',50),('chernogorsk','Черногорск',19),('chernushka','Чернушка',59),('chernyahovsk','Черняховск',39),('chekhov','Чехов',50),('chistopol','Чистополь',16),('chita','Чита',75),('chkalovsk','Чкаловск',52),('chudovo','Чудово',53),('chulym','Чулым',54),('chusovoy','Чусовой',59),('chuhloma','Чухлома',44),('shagonar','Шагонар',17),('shadrinsk','Шадринск',45),('shali','Шали',20),('sharypovo','Шарыпово',24),('sharya','Шарья',44),('shatura','Шатура',50),('shahty','Шахты',61),('shahunya','Шахунья',52),('shatsk','Шацк',62),('shebekino','Шебекино',31),('shelekhov','Шелехов',38),('shenkursk','Шенкурск',29),('shilka','Шилка',75),('shimanovsk','Шимановск',28),('shihany','Шиханы',64),('shlisselburg','Шлиссельбург',47),('shumerlya','Шумерля',21),('shumiha','Шумиха',45),('shuya','Шуя',37),('schekino','Щёкино',71),('schelkino','Щёлкино',82),('schelkovo','Щёлково',50),('schigry','Щигры',46),('schuche','Щучье',45),('elektrogorsk','Электрогорск',50),('elektrostal','Электросталь',50),('elektrougli','Электроугли',50),('elista','Элиста',8),('engels','Энгельс',64),('ertil','Эртиль',36),('yugorsk','Югорск',86),('yuzha','Южа',37),('yuzhno-sahalinsk','Южно-Сахалинск',65),('yuzhno-suhokumsk','Южно-Сухокумск',5),('yuzhnouralsk','Южноуральск',74),('yurga','Юрга',42),('yurev-polskiy','Юрьев-Польский',33),('yurevets','Юрьевец',37),('yuryuzan','Юрюзань',74),('yuhnov','Юхнов',40),('yadrin','Ядрин',21),('yakutsk','Якутск',14),('yalta','Ялта',82),('yalutorovsk','Ялуторовск',72),('yanaul','Янаул',2),('yaransk','Яранск',43),('yarovoe','Яровое',4),('yaroslavl','Ярославль',76),('yartsevo','Ярцево',67),('yasnogorsk','Ясногорск',71),('yasnyy','Ясный',56),('yahroma','Яхрома',50);
UNLOCK TABLES;
SET foreign_key_checks = 1;
|
<filename>docs/deployment/db_deployment_request/db_scripts/group9_dupes_cleanup.sql<gh_stars>1-10
/*L
Copyright SAIC, Ellumen and RSNA (CTP)
Distributed under the OSI-approved BSD 3-Clause License.
See http://ncip.github.com/national-biomedical-image-archive/LICENSE.txt for details.
L*/
create table group9Temp as
select min(group9_dicom_tags_pk_id)
from group9_dicom_tags
group by image_pk_id
having count(*) > 1;
delete g1
from group9_dicom_tags g1, group9Temp g2
where g1.group9_dicom_tags_pk_id = g2.group9_dicom_tags_pk_id;
drop table group9Temp;
|
<gh_stars>1-10
select datetimetz'23:59:59.999 12/31/9999';
select datetimetz'12/31/9999 23:59:59.999';
|
<gh_stars>0
-- phpMyAdmin SQL Dump
-- version 4.5.2
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Feb 25, 2017 at 03:08 AM
-- Server version: 10.1.13-MariaDB
-- PHP Version: 5.6.23
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: `3iSchool`
--
-- --------------------------------------------------------
--
-- Table structure for table `visite_contenu`
--
CREATE TABLE `visite_contenu` (
`id` int(11) NOT NULL,
`user_id` int(11) DEFAULT NULL,
`contenu_id` int(11) DEFAULT NULL,
`date_visite` datetime NOT NULL,
`duree` double NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `visite_contenu`
--
INSERT INTO `visite_contenu` (`id`, `user_id`, `contenu_id`, `date_visite`, `duree`) VALUES
(1, 1, 1, '2017-01-08 07:23:20', 30),
(2, 1, 1, '2017-01-24 13:33:20', 24),
(3, 1, 1, '2017-01-19 03:28:43', 57),
(4, 2, 1, '2017-01-08 11:23:20', 12),
(5, 2, 1, '2017-01-18 11:23:22', 2),
(6, 1, 2, '2017-01-18 10:23:22', 67),
(7, 1, 2, '2017-01-12 10:23:22', 33),
(8, 2, 2, '2017-01-12 10:10:22', 100),
(18, 3, 1, '2017-02-22 17:26:00', 31.078733333331),
(19, 1, 1, '2017-02-22 19:00:00', 1.39355),
(20, 3, 1, '2017-02-23 03:26:00', 97.713683333333);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `visite_contenu`
--
ALTER TABLE `visite_contenu`
ADD PRIMARY KEY (`id`),
ADD KEY `IDX_43C37519A76ED395` (`user_id`),
ADD KEY `IDX_43C375193C1CC488` (`contenu_id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `visite_contenu`
--
ALTER TABLE `visite_contenu`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `visite_contenu`
--
ALTER TABLE `visite_contenu`
ADD CONSTRAINT `FK_43C375193C1CC488` FOREIGN KEY (`contenu_id`) REFERENCES `contenu` (`id`),
ADD CONSTRAINT `FK_43C37519A76ED395` FOREIGN KEY (`user_id`) REFERENCES `user` (`id`);
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
CREATE TABLE spellenview
(
consoleid BIGINT UNSIGNED NOT NULL,
spelid BIGINT UNSIGNED NOT NULL,
PRIMARY KEY(consoleid, spelid),
FOREIGN KEY (consoleid) REFERENCES consoles(consoleid),
FOREIGN KEY (spelid) REFERENCES spellen(spelid)
) ENGINE=InnoDB; |
<gh_stars>0
CREATE TABLE IF NOT EXISTS CommonVulnerabilityAndExposures
(
yearReported YEAR NOT NULL,
sequenceNumber SMALLINT UNSIGNED NOT NULL,
description TEXT NULL,
-- cvssv2 BIGINT UNSIGNED NULL,
cvssv3 BIGINT UNSIGNED NULL,
FOREIGN KEY (cvssv3) REFERENCES CVSS3 (id),
UNIQUE INDEX (yearReported, sequenceNumber)
); |
<reponame>ddmps/alarm-clock<filename>create tables.sql<gh_stars>0
CREATE TABLE IF NOT EXISTS home (
id SERIAL PRIMARY KEY,
name VARCHAR(100) NOT NULL
);
CREATE TABLE IF NOT EXISTS account (
id SERIAL PRIMARY KEY
);
CREATE TABLE IF NOT EXISTS human (
name VARCHAR(100) NULL,
email VARCHAR(200) UNIQUE NOT NULL,
password_hash BYTEA NOT NULL
) INHERITS (account);
CREATE TABLE IF NOT EXISTS account_in_home (
account INTEGER REFERENCES account ON DELETE CASCADE NOT NULL,
home INTEGER REFERENCES home ON DELETE CASCADE NOT NULL,
admin BOOLEAN DEFAULT FALSE NOT NULL;
PRIMARY KEY(account, home)
);
CREATE TABLE IF NOT EXISTS device (
id SERIAL PRIMARY KEY,
name VARCHAR(100) NOT NULL,
UNIQUE(name, home)
) INHERITS (account);
CREATE TABLE IF NOT EXISTS api_key (
key VARCHAR(32) PRIMARY KEY,
created_at TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(),
account INTEGER REFERENCES account ON DELETE CASCADE NOT NULL
);
CREATE TABLE IF NOT EXISTS alarm_clock (
id SERIAL PRIMARY KEY,
home INTEGER REFERENCES home ON DELETE CASCADE NOT NULL,
name VARCHAR(100),
UNIQUE(home, name)
);
CREATE TABLE IF NOT EXISTS alarm_clock_time (
id SERIAL PRIMARY KEY,
alarm_clock INTEGER REFERENCES alarm_clock NOT NULL,
work_day_only BOOLEAN NOT NULL,
non_work_day_only BOOLEAN NOT NULL,
alarm_clock_time TIME NOT NULL,
is_default BOOLEAN NOT NULL, -- Otherwise temporary
valid_from TIMESTAMP WITH TIME ZONE NOT NULL,
valid_to TIMESTAMP WITH TIME ZONE NOT NULL,
created_by INTEGER REFERENCES account NOT NULL
); |
CREATE TABLE `customers` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`userId` int(11) unsigned NOT NULL,
`name` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `userId` (`userId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `users` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`Suburb` varchar(20) NOT NULL DEFAULT '',
`State` varchar(255) DEFAULT NULL,
`Country` varchar(255) DEFAULT NULL,
`FirstName` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `blah` (`Country`,`State`,`Suburb`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
INSERT INTO `users` (`id`, `Suburb`, `State`, `Country`, `FirstName`)
VALUES
(1, '', NULL, NULL, 'Testing');
INSERT INTO `customers` (`id`, `userId`, `name`)
VALUES
(41, 1, 'customername');
|
CREATE TABLE `iwalker_comment` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`user_name` varchar(20) NOT NULL,
`activity_id` int(11) unsigned NOT NULL,
`content` varchar(200) NOT NULL,
`extra` text DEFAULT NULL,
`create_time` datetime NULL DEFAULT CURRENT_TIMESTAMP,
`modify_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
<filename>extract_county.sql
PRAGMA SYNCHRONOUS=off;
PRAGMA cache_size=-2000000;
PRAGMA page_size=16386;
DELETE FROM voter WHERE not county_code = 'MAN';
VACUUM;
CREATE INDEX IF NOT EXISTS voter__voter_id__ind on voter(voter_id);
DELETE FROM voter_history
WHERE not EXISTS (SELECT voter_id FROM voter v
WHERE v.voter_id = voter_history.voter_id and
v.county_code = 'MAN');
VACUUM;
|
<reponame>lgcarrier/AFW
SET DEFINE OFF;
ALTER TABLE AFW_01_PROPG_EVENM_NOTFB ADD (
CONSTRAINT AFW_01_PROPG_EVENM_NOTFB_FK1
FOREIGN KEY (REF_EVENM_NOTFB)
REFERENCES AFW_01_EVENM_NOTFB (SEQNC)
ENABLE VALIDATE)
/
|
<filename>scriptdb.sql
-- MySQL Workbench Forward Engineering
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL,ALLOW_INVALID_DATES';
-- -----------------------------------------------------
-- Schema tokensales
-- -----------------------------------------------------
DROP SCHEMA IF EXISTS `tokensales` ;
-- -----------------------------------------------------
-- Schema tokensales
-- -----------------------------------------------------
CREATE SCHEMA IF NOT EXISTS `tokensales` DEFAULT CHARACTER SET latin1 ;
USE `tokensales` ;
-- -----------------------------------------------------
-- Table `tokensales`.`c_country`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `tokensales`.`c_country` ;
CREATE TABLE IF NOT EXISTS `tokensales`.`c_country` (
`c_country_id` CHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`isactive` CHAR(1) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL DEFAULT 'Y',
`created` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`createdby` CHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`updated` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updatedby` CHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`name` VARCHAR(60) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`description` VARCHAR(255) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL,
`countrycode` VARCHAR(2) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
PRIMARY KEY (`c_country_id`),
UNIQUE INDEX `c_countrycode` (`countrycode` ASC))
ENGINE = InnoDB
DEFAULT CHARACTER SET = utf8
COLLATE = utf8_bin;
-- -----------------------------------------------------
-- Table `tokensales`.`c_region`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `tokensales`.`c_region` ;
CREATE TABLE IF NOT EXISTS `tokensales`.`c_region` (
`c_region_id` CHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`isactive` CHAR(1) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL DEFAULT 'Y',
`created` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`createdby` CHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`updated` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updatedby` CHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`name` VARCHAR(60) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`description` VARCHAR(255) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL,
`c_country_id` CHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
PRIMARY KEY (`c_region_id`),
UNIQUE INDEX `c_region_name` (`name` ASC, `c_country_id` ASC),
INDEX `c_region_c_country` (`c_country_id` ASC),
CONSTRAINT `c_region_c_country`
FOREIGN KEY (`c_country_id`)
REFERENCES `tokensales`.`c_country` (`c_country_id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB
DEFAULT CHARACTER SET = utf8
COLLATE = utf8_bin;
-- -----------------------------------------------------
-- Table `tokensales`.`c_user`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `tokensales`.`c_user` ;
CREATE TABLE IF NOT EXISTS `tokensales`.`c_user` (
`c_user_id` CHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`isactive` CHAR(1) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL DEFAULT 'Y',
`created` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`createdby` CHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`updated` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updatedby` CHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`email` VARCHAR(255) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`password` VARCHAR(40) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`phone` VARCHAR(40) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`firstname` VARCHAR(60) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`lastname` VARCHAR(60) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`birthday` TIMESTAMP NULL,
`address1` VARCHAR(150) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`address2` VARCHAR(150) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL,
`c_country_id` CHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`c_region_id` CHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`city` CHAR(60) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`postal` CHAR(10) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`usertype` CHAR(60) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL DEFAULT 'INV',
`registertoken` CHAR(60) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL,
`tokenexpirationdate` TIMESTAMP NULL DEFAULT NULL,
`status` VARCHAR(60) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL DEFAULT 'PEND',
PRIMARY KEY (`c_user_id`),
UNIQUE INDEX `c_user_email_uniq` (`email` ASC),
INDEX `c_user_c_country_fk` (`c_country_id` ASC),
INDEX `c_user_c_region_fk` (`c_region_id` ASC),
CONSTRAINT `c_user_c_country_fk`
FOREIGN KEY (`c_country_id`)
REFERENCES `tokensales`.`c_country` (`c_country_id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `c_user_c_region_fk`
FOREIGN KEY (`c_region_id`)
REFERENCES `tokensales`.`c_region` (`c_region_id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB
DEFAULT CHARACTER SET = utf8
COLLATE = utf8_bin;
-- -----------------------------------------------------
-- Table `tokensales`.`c_admin`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `tokensales`.`c_admin` ;
CREATE TABLE IF NOT EXISTS `tokensales`.`c_admin` (
`c_admin_id` CHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`c_user_id` CHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`isactive` CHAR(1) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL DEFAULT 'Y',
`created` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`createdby` CHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`updated` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updatedby` CHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
PRIMARY KEY (`c_admin_id`),
INDEX `c_admin_c_user_fk` (`c_user_id` ASC),
CONSTRAINT `c_admin_c_user_fk`
FOREIGN KEY (`c_user_id`)
REFERENCES `tokensales`.`c_user` (`c_user_id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB
DEFAULT CHARACTER SET = utf8
COLLATE = utf8_bin;
-- -----------------------------------------------------
-- Table `tokensales`.`c_currency`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `tokensales`.`c_currency` ;
CREATE TABLE IF NOT EXISTS `tokensales`.`c_currency` (
`c_currency_id` CHAR(32) NOT NULL,
`isactive` CHAR(1) NOT NULL DEFAULT 'Y',
`created` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`createdby` CHAR(32) NOT NULL,
`updated` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updatedby` CHAR(32) NOT NULL,
`iso_code` VARCHAR(3) NOT NULL,
`cursymbol` VARCHAR(10) NOT NULL,
`description` VARCHAR(255) NOT NULL,
`stdprecision` DECIMAL(10,0) NOT NULL,
PRIMARY KEY (`c_currency_id`),
UNIQUE INDEX `c_currencyisocode` (`iso_code` ASC))
ENGINE = InnoDB
DEFAULT CHARACTER SET = latin1;
-- -----------------------------------------------------
-- Table `tokensales`.`c_token`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `tokensales`.`c_token` ;
CREATE TABLE IF NOT EXISTS `tokensales`.`c_token` (
`c_token_id` CHAR(32) NOT NULL,
`isactive` CHAR(1) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL DEFAULT 'Y',
`created` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`createdby` CHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`updated` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updatedby` CHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`name` VARCHAR(45) NOT NULL,
`description` VARCHAR(100) CHARACTER SET 'cp850' COLLATE 'cp850_general_ci' NOT NULL,
`eth_coins` DECIMAL NOT NULL,
`status` VARCHAR(60) NULL,
PRIMARY KEY (`c_token_id`))
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `tokensales`.`c_token_phase`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `tokensales`.`c_token_phase` ;
CREATE TABLE IF NOT EXISTS `tokensales`.`c_token_phase` (
`c_token_phase_id` CHAR(32) NOT NULL,
`isactive` CHAR(1) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL DEFAULT 'Y',
`created` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`createdby` CHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`updated` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updatedby` CHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`total_coins_available` DECIMAL NOT NULL,
`total_coins_sold` DECIMAL NULL DEFAULT 0,
`c_token_id` CHAR(32) NOT NULL,
`status` VARCHAR(60) NOT NULL,
PRIMARY KEY (`c_token_phase_id`),
INDEX `fk_c_token_phase_c_token1_idx` (`c_token_id` ASC),
CONSTRAINT `fk_c_token_phase_c_token1`
FOREIGN KEY (`c_token_id`)
REFERENCES `tokensales`.`c_token` (`c_token_id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `tokensales`.`c_sales_phase`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `tokensales`.`c_sales_phase` ;
CREATE TABLE IF NOT EXISTS `tokensales`.`c_sales_phase` (
`c_sales_fase` VARCHAR(32) NOT NULL,
`isactive` CHAR(1) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL DEFAULT 'Y',
`created` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`createdby` CHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`updated` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updatedby` CHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`coins_amt` INT NOT NULL default 0,
`c_user_id` CHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL,
`c_token_phase_id` CHAR(32) NOT NULL,
`date` TIMESTAMP NULL,
`validation_string` VARCHAR(100) NULL,
`payment_address` VARCHAR(100) NULL,
`phase_number` INT NULL,
`status` VARCHAR(60) NULL,
PRIMARY KEY (`c_sales_fase`),
INDEX `fk_c_sales_phase_c_user1_idx` (`c_user_id` ASC),
INDEX `fk_c_sales_phase_c_token_phase1_idx` (`c_token_phase_id` ASC),
CONSTRAINT `fk_c_sales_phase_c_user1`
FOREIGN KEY (`c_user_id`)
REFERENCES `tokensales`.`c_user` (`c_user_id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_c_sales_phase_c_token_phase1`
FOREIGN KEY (`c_token_phase_id`)
REFERENCES `tokensales`.`c_token_phase` (`c_token_phase_id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
SET SQL_MODE=@OLD_SQL_MODE;
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
|
create table avtale_forkortet(
id uuid primary key,
avtale_id uuid references avtale(id),
avtale_innhold_id uuid,
tidspunkt timestamp,
ny_slutt_dato date,
grunn varchar,
annet_grunn varchar
); |
<gh_stars>1-10
-- IDEMPIERE-2057
-- May 9, 2018 12:15:12 PM CEST
UPDATE AD_Field SET IsReadOnly='Y', AD_Reference_Value_ID=NULL, AD_Val_Rule_ID=NULL, IsToolbarButton=NULL,Updated=TO_TIMESTAMP('2018-05-09 12:15:12','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=203261
;
-- May 9, 2018 12:15:33 PM CEST
UPDATE AD_Field SET IsDisplayed='Y', SeqNo=290, AD_Reference_Value_ID=NULL, AD_Val_Rule_ID=NULL, XPosition=4, IsToolbarButton=NULL,Updated=TO_TIMESTAMP('2018-05-09 12:15:33','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=203261
;
-- May 9, 2018 12:15:33 PM CEST
UPDATE AD_Field SET SeqNo=0, AD_Reference_Value_ID=NULL, AD_Val_Rule_ID=NULL, IsToolbarButton=NULL,Updated=TO_TIMESTAMP('2018-05-09 12:15:33','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=204857
;
SELECT register_migration_script('201805091216_IDEMPIERE-2057.sql') FROM dual
;
|
-- fts2r.test
--
-- execsql {
-- SELECT rowid FROM t1 ORDER BY rowid;
-- }
SELECT rowid FROM t1 ORDER BY rowid; |
-- file:create_index.sql ln:27 expect:true
CREATE INDEX tenk1_thous_tenthous ON tenk1 (thousand, tenthous)
|
-- phpMyAdmin SQL Dump
-- version 4.8.3
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3309
-- Generation Time: Nov 26, 2019 at 05:54 AM
-- Server version: 5.7.24
-- PHP Version: 7.3.7
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: `db_qot`
--
-- --------------------------------------------------------
--
-- Table structure for table `qod_commentmeta`
--
CREATE TABLE `qod_commentmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`comment_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `qod_comments`
--
CREATE TABLE `qod_comments` (
`comment_ID` bigint(20) UNSIGNED NOT NULL,
`comment_post_ID` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_parent` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`user_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `qod_links`
--
CREATE TABLE `qod_links` (
`link_id` bigint(20) UNSIGNED NOT NULL,
`link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) UNSIGNED NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `qod_options`
--
CREATE TABLE `qod_options` (
`option_id` bigint(20) UNSIGNED NOT NULL,
`option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `qod_options`
--
INSERT INTO `qod_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://localhost:8888/qod', 'yes'),
(2, 'home', 'http://localhost:8888/qod', 'yes'),
(3, 'blogname', 'Quotes on Dev', 'yes'),
(4, 'blogdescription', 'Just another WordPress site', 'yes'),
(5, 'users_can_register', '0', 'yes'),
(6, 'admin_email', '<EMAIL>', 'yes'),
(7, 'start_of_week', '1', 'yes'),
(8, 'use_balanceTags', '0', 'yes'),
(9, 'use_smilies', '1', 'yes'),
(10, 'require_name_email', '1', 'yes'),
(11, 'comments_notify', '1', 'yes'),
(12, 'posts_per_rss', '101', 'yes'),
(13, 'rss_use_excerpt', '0', 'yes'),
(14, 'mailserver_url', 'mail.example.com', 'yes'),
(15, 'mailserver_login', '<EMAIL>', 'yes'),
(16, 'mailserver_pass', 'password', '<PASSWORD>'),
(17, 'mailserver_port', '110', 'yes'),
(18, 'default_category', '1', 'yes'),
(19, 'default_comment_status', 'open', 'yes'),
(20, 'default_ping_status', 'open', 'yes'),
(21, 'default_pingback_flag', '1', 'yes'),
(22, 'posts_per_page', '99', 'yes'),
(23, 'date_format', 'F j, Y', 'yes'),
(24, 'time_format', 'g:i a', 'yes'),
(25, 'links_updated_date_format', 'F j, Y g:i a', 'yes'),
(26, 'comment_moderation', '0', 'yes'),
(27, 'moderation_notify', '1', 'yes'),
(28, 'permalink_structure', '/%postname%/', 'yes'),
(29, 'rewrite_rules', 'a:87:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:40:\"index.php?&page_id=244&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}', 'yes'),
(30, 'hack_file', '0', 'yes'),
(31, 'blog_charset', 'UTF-8', 'yes'),
(32, 'moderation_keys', '', 'no'),
(33, 'active_plugins', 'a:8:{i:0;s:31:\"query-monitor/query-monitor.php\";i:1;s:30:\"advanced-custom-fields/acf.php\";i:2;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:3;s:47:\"show-current-template/show-current-template.php\";i:4;s:27:\"svg-support/svg-support.php\";i:5;s:41:\"wordpress-importer/wordpress-importer.php\";i:6;s:24:\"wp-all-import/plugin.php\";i:7;s:21:\"wp-sweep/wp-sweep.php\";}', 'yes'),
(34, 'category_base', '', 'yes'),
(35, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
(36, 'comment_max_links', '2', 'yes'),
(37, 'gmt_offset', '0', 'yes'),
(38, 'default_email_category', '1', 'yes'),
(39, 'recently_edited', '', 'no'),
(40, 'template', 'qod-starter', 'yes'),
(41, 'stylesheet', 'qod-starter', 'yes'),
(42, 'comment_whitelist', '1', 'yes'),
(43, 'blacklist_keys', '', 'no'),
(44, 'comment_registration', '0', 'yes'),
(45, 'html_type', 'text/html', 'yes'),
(46, 'use_trackback', '0', 'yes'),
(47, 'default_role', 'subscriber', 'yes'),
(48, 'db_version', '45805', 'yes'),
(49, 'uploads_use_yearmonth_folders', '1', 'yes'),
(50, 'upload_path', '', 'yes'),
(51, 'blog_public', '1', 'yes'),
(52, 'default_link_category', '2', 'yes'),
(53, 'show_on_front', 'page', 'yes'),
(54, 'tag_base', '', 'yes'),
(55, 'show_avatars', '1', 'yes'),
(56, 'avatar_rating', 'G', 'yes'),
(57, 'upload_url_path', '', 'yes'),
(58, 'thumbnail_size_w', '150', 'yes'),
(59, 'thumbnail_size_h', '150', 'yes'),
(60, 'thumbnail_crop', '1', 'yes'),
(61, 'medium_size_w', '300', 'yes'),
(62, 'medium_size_h', '300', 'yes'),
(63, 'avatar_default', 'mystery', 'yes'),
(64, 'large_size_w', '1024', 'yes'),
(65, 'large_size_h', '1024', 'yes'),
(66, 'image_default_link_type', 'none', 'yes'),
(67, 'image_default_size', '', 'yes'),
(68, 'image_default_align', '', 'yes'),
(69, 'close_comments_for_old_posts', '0', 'yes'),
(70, 'close_comments_days_old', '14', 'yes'),
(71, 'thread_comments', '1', 'yes'),
(72, 'thread_comments_depth', '5', 'yes'),
(73, 'page_comments', '0', 'yes'),
(74, 'comments_per_page', '50', 'yes'),
(75, 'default_comments_page', 'newest', 'yes'),
(76, 'comment_order', 'asc', 'yes'),
(77, 'sticky_posts', 'a:0:{}', 'yes'),
(78, 'widget_categories', 'a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(79, 'widget_text', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(80, 'widget_rss', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(81, 'uninstall_plugins', 'a:0:{}', 'no'),
(82, 'timezone_string', 'America/Toronto', 'yes'),
(83, 'page_for_posts', '0', 'yes'),
(84, 'page_on_front', '244', 'yes'),
(85, 'default_post_format', '0', 'yes'),
(86, 'link_manager_enabled', '0', 'yes'),
(87, 'finished_splitting_shared_terms', '1', 'yes'),
(88, 'site_icon', '0', 'yes'),
(89, 'medium_large_size_w', '768', 'yes'),
(90, 'medium_large_size_h', '0', 'yes'),
(91, 'wp_page_for_privacy_policy', '3', 'yes'),
(92, 'show_comments_cookies_opt_in', '1', 'yes'),
(93, 'admin_email_lifespan', '1589743453', 'yes'),
(94, 'initial_db_version', '45805', 'yes'),
(95, 'qod_user_roles', 'a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}', 'yes'),
(96, 'fresh_site', '0', 'yes'),
(97, 'WPLANG', 'en_CA', 'yes'),
(98, 'widget_search', 'a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}', 'yes'),
(99, 'widget_recent-posts', 'a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(100, 'widget_recent-comments', 'a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(101, 'widget_archives', 'a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(102, 'widget_meta', 'a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}', 'yes'),
(103, 'sidebars_widgets', 'a:2:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}', 'yes'),
(104, 'cron', 'a:7:{i:1574749455;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1574753055;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1574794660;a:1:{s:21:\"ai1wm_storage_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1574796254;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1574796268;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1574797621;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}', 'yes'),
(105, 'widget_pages', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(106, 'widget_calendar', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(107, 'widget_media_audio', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(108, 'widget_media_image', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(109, 'widget_media_gallery', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(110, 'widget_media_video', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(111, 'widget_tag_cloud', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(112, 'widget_nav_menu', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(113, 'widget_custom_html', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(115, 'recovery_keys', 'a:1:{s:22:\"<KEY>a:2:{s:10:\"hashed_key\";s:34:\"$<KEY>";s:10:\"created_at\";i:1574719299;}}', 'yes'),
(117, 'theme_mods_twentytwenty', 'a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1574192542;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}}}}', 'yes'),
(124, '_site_transient_timeout_browser_f9f7120ce5a4a9cf082c424b40cf59f5', '1574796264', 'no'),
(125, '_site_transient_browser_f9f7120ce5a4a9cf082c424b40cf59f5', 'a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"78.0.3904.97\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}', 'no'),
(126, '_site_transient_timeout_php_check_d1959de4b7de84f195ea226c4728f095', '1574796264', 'no'),
(127, '_site_transient_php_check_d1959de4b7de84f195ea226c4728f095', 'a:5:{s:19:\"recommended_version\";s:3:\"7.3\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}', 'no'),
(131, 'can_compress_scripts', '0', 'no'),
(146, 'recently_activated', 'a:3:{s:31:\"wp-migrate-db/wp-migrate-db.php\";i:1574449071;s:27:\"theme-check/theme-check.php\";i:1574192624;s:36:\"contact-form-7/wp-contact-form-7.php\";i:1574192618;}', 'yes'),
(149, 'acf_version', '5.8.7', 'yes'),
(170, 'current_theme', 'Quotes on Dev Starter Theme', 'yes'),
(171, 'theme_mods_qod-starter', 'a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:41;}s:18:\"custom_css_post_id\";i:-1;}', 'yes'),
(172, 'theme_switched', '', 'yes'),
(173, 'category_children', 'a:0:{}', 'yes'),
(179, 'PMXI_Plugin_Options', 'a:27:{s:18:\"history_file_count\";i:10000;s:16:\"history_file_age\";i:365;s:15:\"highlight_limit\";i:10000;s:19:\"upload_max_filesize\";i:2048;s:13:\"post_max_size\";i:2048;s:14:\"max_input_time\";i:-1;s:18:\"max_execution_time\";i:-1;s:7:\"dismiss\";i:0;s:16:\"dismiss_speed_up\";i:0;s:18:\"dismiss_manage_top\";i:0;s:21:\"dismiss_manage_bottom\";i:0;s:13:\"html_entities\";i:0;s:11:\"utf8_decode\";i:0;s:12:\"cron_job_key\";s:9:\"ehp.MEiWc\";s:10:\"chunk_size\";i:32;s:9:\"pingbacks\";i:1;s:33:\"legacy_special_character_handling\";i:1;s:14:\"case_sensitive\";i:1;s:12:\"session_mode\";s:7:\"default\";s:17:\"enable_ftp_import\";i:0;s:16:\"large_feed_limit\";i:1000;s:26:\"cron_processing_time_limit\";i:120;s:6:\"secure\";i:1;s:11:\"log_storage\";i:5;s:10:\"cron_sleep\";s:0:\"\";s:4:\"port\";s:0:\"\";s:19:\"force_stream_reader\";i:0;}', 'yes'),
(180, 'pmxi_is_migrated', '3.5.2', 'yes'),
(185, '_site_transient_timeout_browser_6518ca917a5b5888b4acf2ae660c9ffe', '1574876692', 'no'),
(186, '_site_transient_browser_6518ca917a5b5888b4acf2ae660c9ffe', 'a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"71.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:24:\"https://www.firefox.com/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}', 'no'),
(233, '_transient_pmxi_uploads_path', 'C:\\MAMP\\htdocs\\qod/wp-content/uploads\\wpallimport\\uploads\\67ca95994ad7e6e58dcd723d934f2995', 'yes'),
(242, 'bodhi_svgs_plugin_version', '2.3.15', 'yes'),
(246, 'recovery_mode_email_last_sent', '1574719299', 'yes'),
(270, 'wpmdb_settings', 'a:12:{s:3:\"key\";s:40:\"o6RYqgITz/2e5gZtU5Srt1PpVAaTFtmIQ0+/4/JN\";s:10:\"allow_pull\";b:0;s:10:\"allow_push\";b:0;s:8:\"profiles\";a:0:{}s:7:\"licence\";s:0:\"\";s:10:\"verify_ssl\";b:0;s:17:\"whitelist_plugins\";a:0:{}s:11:\"max_request\";i:1048576;s:22:\"delay_between_requests\";i:0;s:18:\"prog_tables_hidden\";b:1;s:21:\"pause_before_finalize\";b:0;s:14:\"allow_tracking\";N;}', 'no'),
(271, 'wpmdb_schema_version', '2', 'no'),
(272, 'wpmdb_usage', 'a:2:{s:6:\"action\";s:8:\"savefile\";s:4:\"time\";i:1574395054;}', 'no'),
(273, 'wpmdb_state_timeout_5dd6cc473813c', '1574444499', 'no'),
(274, 'wpmdb_state_5dd6cc473813c', 'a:22:{s:6:\"action\";s:19:\"wpmdb_migrate_table\";s:6:\"intent\";s:8:\"savefile\";s:3:\"url\";s:0:\"\";s:9:\"form_data\";s:349:\"action=savefile&save_computer=1&gzip_file=1&connection_info=&replace_old%5B%5D=&replace_new%5B%5D=&replace_old%5B%5D=%2F%2Flocalhost%3A3000%2Fqod&replace_new%5B%5D=%2Fqod&replace_old%5B%5D=C%3A%5CMAMP%5Chtdocs%5Cqod&replace_new%5B%5D=%5Cqod&replace_guids=1&exclude_transients=1&save_migration_profile_option=new&create_new_profile=&remote_json_data=\";s:5:\"stage\";s:7:\"migrate\";s:5:\"nonce\";s:10:\"951250f3d0\";s:12:\"site_details\";a:1:{s:5:\"local\";a:10:{s:12:\"is_multisite\";s:5:\"false\";s:8:\"site_url\";s:25:\"http://localhost:3000/qod\";s:8:\"home_url\";s:25:\"http://localhost:3000/qod\";s:6:\"prefix\";s:4:\"qod_\";s:15:\"uploads_baseurl\";s:45:\"http://localhost:3000/qod/wp-content/uploads/\";s:7:\"uploads\";a:6:{s:4:\"path\";s:45:\"C:\\MAMP\\htdocs\\qod/wp-content/uploads/2019/11\";s:3:\"url\";s:52:\"http://localhost:3000/qod/wp-content/uploads/2019/11\";s:6:\"subdir\";s:8:\"/2019/11\";s:7:\"basedir\";s:37:\"C:\\MAMP\\htdocs\\qod/wp-content/uploads\";s:7:\"baseurl\";s:44:\"http://localhost:3000/qod/wp-content/uploads\";s:5:\"error\";b:0;}s:11:\"uploads_dir\";s:33:\"wp-content/uploads/wp-migrate-db/\";s:8:\"subsites\";a:0:{}s:13:\"subsites_info\";a:0:{}s:20:\"is_subdomain_install\";s:5:\"false\";}}s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";s:4:\"body\";s:11:\"{\"error\":0}\";s:9:\"dump_path\";s:94:\"C:\\MAMP\\htdocs\\qod\\wp-content\\uploads\\wp-migrate-db\\db_qot-migrate-20191121174127-xitk1.sql.gz\";s:13:\"dump_filename\";s:35:\"db_qot-migrate-20191121174127-xitk1\";s:8:\"dump_url\";s:101:\"http://localhost:8888/qod/wp-content/uploads/wp-migrate-db/db_qot-migrate-20191121174127-nxdfp.sql.gz\";s:10:\"db_version\";s:6:\"5.7.24\";s:8:\"site_url\";s:25:\"http://localhost:8888/qod\";s:18:\"find_replace_pairs\";a:2:{s:11:\"replace_old\";a:2:{i:1;s:20:\"//localhost:3000/qod\";i:2;s:18:\"C:\\MAMP\\htdocs\\qod\";}s:11:\"replace_new\";a:2:{i:1;s:4:\"/qod\";i:2;s:4:\"\\qod\";}}s:18:\"migration_state_id\";s:13:\"5dd6cc473813c\";s:5:\"table\";s:9:\"qod_users\";s:11:\"current_row\";s:0:\"\";s:10:\"last_table\";s:1:\"1\";s:12:\"primary_keys\";s:0:\"\";s:4:\"gzip\";s:1:\"0\";}', 'no'),
(286, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}', 'yes'),
(301, '_site_transient_timeout_browser_2894fb4dbf964f58ccf3d2e4e372b316', '1574999806', 'no'),
(302, '_site_transient_browser_2894fb4dbf964f58ccf3d2e4e372b316', 'a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"78.0.3904.108\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}', 'no'),
(315, 'wpmdb_state_timeout_5dd75caf17c57', '1574481465', 'no'),
(316, 'wpmdb_state_5dd75caf17c57', 'a:22:{s:6:\"action\";s:19:\"wpmdb_migrate_table\";s:6:\"intent\";s:8:\"savefile\";s:3:\"url\";s:0:\"\";s:9:\"form_data\";s:391:\"action=savefile&save_computer=1&gzip_file=1&connection_info=&replace_old%5B%5D=&replace_new%5B%5D=&replace_old%5B%5D=%2F%2Flocalhost%3A8888%2Fqod&replace_new%5B%5D=%2F%2Flocalhost%3A8888%2Fqod&replace_old%5B%5D=C%3A%5CMAMP%5Chtdocs%5Cqod&replace_new%5B%5D=C%3A%5CMAMP%5Chtdocs%5Cqod&replace_guids=1&exclude_transients=1&save_migration_profile_option=new&create_new_profile=&remote_json_data=\";s:5:\"stage\";s:7:\"migrate\";s:5:\"nonce\";s:10:\"d6023612b8\";s:12:\"site_details\";a:1:{s:5:\"local\";a:10:{s:12:\"is_multisite\";s:5:\"false\";s:8:\"site_url\";s:25:\"http://localhost:8888/qod\";s:8:\"home_url\";s:25:\"http://localhost:8888/qod\";s:6:\"prefix\";s:4:\"qod_\";s:15:\"uploads_baseurl\";s:45:\"http://localhost:8888/qod/wp-content/uploads/\";s:7:\"uploads\";a:6:{s:4:\"path\";s:45:\"C:\\MAMP\\htdocs\\qod/wp-content/uploads/2019/11\";s:3:\"url\";s:52:\"http://localhost:8888/qod/wp-content/uploads/2019/11\";s:6:\"subdir\";s:8:\"/2019/11\";s:7:\"basedir\";s:37:\"C:\\MAMP\\htdocs\\qod/wp-content/uploads\";s:7:\"baseurl\";s:44:\"http://localhost:8888/qod/wp-content/uploads\";s:5:\"error\";b:0;}s:11:\"uploads_dir\";s:33:\"wp-content/uploads/wp-migrate-db/\";s:8:\"subsites\";a:0:{}s:13:\"subsites_info\";a:0:{}s:20:\"is_subdomain_install\";s:5:\"false\";}}s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";s:4:\"body\";s:11:\"{\"error\":0}\";s:9:\"dump_path\";s:94:\"C:\\MAMP\\htdocs\\qod\\wp-content\\uploads\\wp-migrate-db\\db_qot-migrate-20191122035734-uevvq.sql.gz\";s:13:\"dump_filename\";s:35:\"db_qot-migrate-20191122035734-uevvq\";s:8:\"dump_url\";s:101:\"http://localhost:8888/qod/wp-content/uploads/wp-migrate-db/db_qot-migrate-20191122035734-ou6mh.sql.gz\";s:10:\"db_version\";s:6:\"5.7.24\";s:8:\"site_url\";s:25:\"http://localhost:8888/qod\";s:18:\"find_replace_pairs\";a:2:{s:11:\"replace_old\";a:2:{i:1;s:20:\"//localhost:8888/qod\";i:2;s:18:\"C:\\MAMP\\htdocs\\qod\";}s:11:\"replace_new\";a:2:{i:1;s:20:\"//localhost:8888/qod\";i:2;s:18:\"C:\\MAMP\\htdocs\\qod\";}}s:18:\"migration_state_id\";s:13:\"5dd75caf17c57\";s:5:\"table\";s:9:\"qod_users\";s:11:\"current_row\";s:0:\"\";s:10:\"last_table\";s:1:\"1\";s:12:\"primary_keys\";s:0:\"\";s:4:\"gzip\";s:1:\"0\";}', 'no'),
(347, 'ai1wm_secret_key', '<KEY>', 'yes'),
(355, 'ai1wm_updater', 'a:0:{}', 'yes'),
(360, '_site_transient_timeout_browser_f554a38ea90022f60d8a0a3162b81937', '1575070774', 'no'),
(361, '_site_transient_browser_f554a38ea90022f60d8a0a3162b81937', 'a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"78.0.3904.108\";s:8:\"platform\";s:7:\"Android\";s:10:\"update_url\";s:0:\"\";s:7:\"img_src\";s:0:\"\";s:11:\"img_src_ssl\";s:0:\"\";s:15:\"current_version\";s:0:\"\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:1;}', 'no'),
(381, 'ai1wm_status', 'a:2:{s:4:\"type\";s:8:\"download\";s:7:\"message\";s:293:\"<a href=\"http://localhost:8888/qod/wp-content/ai1wm-backups/localhost-qod-20191124-003339-968.wpress\" class=\"ai1wm-button-green ai1wm-emphasize ai1wm-button-download\" title=\"localhost\" download=\"localhost-qod-20191124-003339-968.wpress\"><span>Download localhost</span><em>Size: 223 MB</em></a>\";}', 'yes'),
(391, '_site_transient_timeout_community-events-1aecf33ab8525ff212ebdffbb438372e', '1574745780', 'no'),
(392, '_site_transient_community-events-1aecf33ab8525ff212ebdffbb438372e', 'a:3:{s:9:\"sandboxed\";b:0;s:8:\"location\";a:1:{s:2:\"ip\";s:9:\"127.0.0.0\";}s:6:\"events\";a:0:{}}', 'no'),
(393, '_transient_timeout_feed_53c6368e164927c356de1596c8cebec9', '1574745781', 'no');
INSERT INTO `qod_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(394, '_transient_feed_53c6368e164927c356de1596c8cebec9', 'a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Blog | WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"https://en-ca.wordpress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Apr 2017 18:38:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-CA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=5.4-alpha-46770\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:97:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordCamp Coming to Halifax, Nova Scotia!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://en-ca.wordpress.org/2017/04/18/wordcamp-coming-to-halifax-nova-scotia/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://en-ca.wordpress.org/2017/04/18/wordcamp-coming-to-halifax-nova-scotia/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Apr 2017 18:20:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:13:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"Canada\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"Canadian\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:9:\"community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:20:\"Dalhousie University\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:10:\"East Coast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:11:\"habourfront\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:7;a:5:{s:4:\"data\";s:7:\"Halifax\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:8;a:5:{s:4:\"data\";s:13:\"Happiness Bar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:9;a:5:{s:4:\"data\";s:11:\"Nova Scotia\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:10;a:5:{s:4:\"data\";s:5:\"tours\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:11;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:12;a:5:{s:4:\"data\";s:16:\"WordCamp Halifax\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://en-ca.wordpress.org/?p=409\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:320:\"This May marks a very special month for people in Atlantic Canada. Not only will the first signs of spring appear in the area (finally), but a new conference will be popping up as well. WordCamp Halifax is happening on May 27th at Marion McCain Building at Dalhousie University. This will be the first WordCamp […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3670:\"<figure id=\"attachment_412\" aria-describedby=\"caption-attachment-412\" style=\"width: 290px\" class=\"wp-caption alignright\"><img class=\"wp-image-412 size-medium\" src=\"https://en-ca.wordpress.org/files/2017/04/Large_lobster_wapuu-290x300.jpg\" alt=\"offical wapuu of WordCamp Halifax\" width=\"290\" height=\"300\" srcset=\"https://en-ca.wordpress.org/files/2017/04/Large_lobster_wapuu-290x300.jpg 290w, https://en-ca.wordpress.org/files/2017/04/Large_lobster_wapuu.jpg 400w\" sizes=\"(max-width: 290px) 100vw, 290px\" /><figcaption id=\"caption-attachment-412\" class=\"wp-caption-text\">Meet ‘Wabster’, WordCamp Halifax’s official wapuu!</figcaption></figure>\n<p>This May marks a very special month for people in Atlantic Canada. Not only will the first signs of spring appear in the area (finally), but a new conference will be popping up as well.</p>\n<p><a href=\"https://2017.halifax.wordcamp.org/\" target=\"_blank\" rel=\"noopener noreferrer\">WordCamp Halifax</a> is happening on May 27th at Marion McCain Building at Dalhousie University. This will be the first WordCamp in Canada East of Montreal, making it <em>the</em> web-related event of the season for Maritimers.</p>\n<p> </p>\n<h2>Get To Know Halifax</h2>\n<p>Halifax is best known for its friendly community and beautiful harbour. Take in cafes, beer gardens, the Citadel Hill, a farmers market and more pubs than you can count! May is a lovely time of year on the peninsula with lots of sunshine and occasional shower. Be sure to check out the newly built Central Library downtown – a spectacular architectural feat. Spend the whole week in Halifax to take road trips to other beautiful parts of the province: wine tours, U-picks and quaint fishing villages can all be found within a few hours drive away from the capital.</p>\n<p>WordCamp has affordable accommodations if you want to stay close to the venue. More information can be <a href=\"https://2017.halifax.wordcamp.org/venue/\" target=\"_blank\" rel=\"noopener noreferrer\">found here</a>.</p>\n<p> </p>\n<h2>What To Expect At WordCamp Halifax</h2>\n<p>With a mere $25 price tag, attendees can expect to enjoy:</p>\n<ul>\n<li>Catered lunch</li>\n<li>Swag bag with lots of goodies</li>\n<li>Happiness Bar where attendees can get one-on-one help with their website</li>\n<li>Lots of networking with people from a multitude of industries and skill levels</li>\n<li>25 local, national and international <a href=\"https://2017.halifax.wordcamp.org/speakers/\" target=\"_blank\" rel=\"noopener noreferrer\">speakers</a></li>\n<li>21 <a href=\"https://2017.halifax.wordcamp.org/sessions/\" target=\"_blank\" rel=\"noopener noreferrer\">informative sessions</a> in three tracks</li>\n<li>An After Party five minutes from the venue, with affordable bevvy’s & snacks (you know how Haligonians love a good kitchen party!)</li>\n</ul>\n<p>The team has worked hard to bring diverse programming to this inaugural WordCamp with three tracks of learning:</p>\n<ul>\n<li><strong>Content Creators:</strong> Easiest sessions. Little prior WordPress experience expected</li>\n<li><strong>Site Creators:</strong> Some WordPress experience would be beneficial for these sessions, but is not required. Small amounts of HTML, CSS, PHP and Javascript might be presented in some talks</li>\n<li><strong>Code Creators:</strong> Advanced WordPress concepts, HTML, CSS, PHP and Javascript will be presented.</li>\n</ul>\n<p> </p>\n<p>We can’t wait to see everyone this May, so <a href=\"https://2017.halifax.wordcamp.org/tickets/\" target=\"_blank\" rel=\"noopener noreferrer\">nab a ticket</a>. With a limited seating of 185, you’ll have to grab one before they’re gone!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://en-ca.wordpress.org/2017/04/18/wordcamp-coming-to-halifax-nova-scotia/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:67:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Canadian English Theme Translations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://en-ca.wordpress.org/2015/07/20/themes-in-en-ca/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://en-ca.wordpress.org/2015/07/20/themes-in-en-ca/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 20 Jul 2015 01:33:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:4:\"l10n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:6:\"Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://en-ca.wordpress.org/?p=303\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:396:\"The core WordPress project, have now opened up supported themes for translation into local languages. This has opened up thousands of new text strings to translate from US English to Canadian English. If you would like to assist, then you can head on over to https://translate.wordpress.org/locale/en-ca/default/wp-themes and start translating. We will then review all submitted stings […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:574:\"<p>The core WordPress project, have now opened up supported themes for translation into local languages. This has opened up thousands of new text strings to translate from US English to Canadian English.</p>\n<p>If you would like to assist, then you can head on over to <a href=\"https://translate.wordpress.org/locale/en-ca/default/wp-themes\">https://translate.wordpress.org/locale/en-ca/default/wp-themes</a> and start translating.</p>\n<p>We will then review all submitted stings for accuracy. You can post a comment to this post of the themes you have contributed to.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://en-ca.wordpress.org/2015/07/20/themes-in-en-ca/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:73:\"\n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"WordPress 4.0 “Benny”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://en-ca.wordpress.org/2014/09/04/wordpress-4-0-benny/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://en-ca.wordpress.org/2014/09/04/wordpress-4-0-benny/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 Sep 2014 22:34:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:16:\"English (Canada)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:5:\"en_CA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:9:\"WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://en-ca.wordpress.org/?p=278\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:366:\"The Canadian English version of WordPress 4.0 is now released! Official Notice from the Core team: Version 4.0 of WordPress, named “Benny” in honor of jazz clarinetist and bandleader<NAME>, is available for download or update in your WordPress dashboard. While 4.0 is just another number for us after 3.9 and before 4.1, we feel we’ve put a […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:701:\"<p>The Canadian English version of WordPress 4.0 is now released!</p>\n<p><a href=\"https://wordpress.org/news/2014/09/benny/\" target=\"_blank\">Official Notice from the Core team:</a></p>\n<blockquote><p>Version 4.0 of WordPress, named “Benny” in honor of jazz clarinetist and bandleader<a href=\"http://en.wikipedia.org/wiki/Benny_Goodman\"><NAME></a>, is available <a href=\"https://wordpress.org/download/\">for download</a> or update in your WordPress dashboard. While 4.0 is just another number for us after 3.9 and before 4.1, we feel we’ve put a little extra polish into it. This release brings you a smoother writing and management experience we think you’ll enjoy.</p></blockquote>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://en-ca.wordpress.org/2014/09/04/wordpress-4-0-benny/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:67:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"WordPress 3.9 “Smith”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://en-ca.wordpress.org/2014/04/21/wordpress-3-9-smith/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://en-ca.wordpress.org/2014/04/21/wordpress-3-9-smith/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 21 Apr 2014 00:41:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:16:\"English (Canada)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:5:\"en_CA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://en-ca.wordpress.org/?p=263\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:293:\"Version 3.9 of WordPress, named “Smith” in honor of jazz organist <NAME>, is available for download or update in your WordPress dashboard. This release features a number of refinements that we hope you’ll love. The full description of the update can be read on the official post.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:630:\"<p><span style=\"color: #444444\">Version 3.9 of WordPress, named “Smith” in honor of jazz organist </span><a style=\"color: #4ca6cf\" href=\"http://en.wikipedia.org/wiki/Jimmy_Smith_(musician)\"><NAME></a><span style=\"color: #444444\">, is available </span><a style=\"color: #4ca6cf\" href=\"https://wordpress.org/download/\">for download</a><span style=\"color: #444444\"> or update in your WordPress dashboard. This release features a number of refinements that we hope you’ll love.</span></p>\n<p>The full description of the update can be <a href=\"https://wordpress.org/news/2014/04/smith/\">read on the official post.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://en-ca.wordpress.org/2014/04/21/wordpress-3-9-smith/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:67:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"WordPress 3.8 is Out!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://en-ca.wordpress.org/2013/12/12/i-didnt-know-what-time-it-was-wordpress-3-8-is-out/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://en-ca.wordpress.org/2013/12/12/i-didnt-know-what-time-it-was-wordpress-3-8-is-out/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Dec 2013 23:57:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:16:\"English (Canada)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:5:\"en_CA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://en-ca.wordpress.org/?p=245\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:156:\"After lots of work by many. WordPress 3.8 is out in Canadian English. Update your sites now! It will look amazing! You can also read the release notes here.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:273:\"<p>After lots of work by many. WordPress 3.8 is out in Canadian English.</p>\n<p>Update your sites now! It will look amazing! You can also read the release notes <a title=\"WordPress 3.8 Parker\" href=\"https://wordpress.org/news/2013/12/parker/\" target=\"_blank\">here</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://en-ca.wordpress.org/2013/12/12/i-didnt-know-what-time-it-was-wordpress-3-8-is-out/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:67:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"WordPress 3.7 “Basie” in Canadian English, Eh!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://en-ca.wordpress.org/2013/10/24/wordpress-3-7-basie-in-canadian-english-eh/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://en-ca.wordpress.org/2013/10/24/wordpress-3-7-basie-in-canadian-english-eh/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Oct 2013 23:42:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:16:\"English (Canada)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:5:\"en_CA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://en-ca.wordpress.org/?p=241\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:360:\"It is that time that we get to release a brand new major release of WordPress. There are a lot of changes in the backend, not that you should notice. WordPress 3.7 “Basie” Posted October 24, 2013 by <NAME>. Filed under Releases. Version 3.7 of WordPress, named “Basie” in honor of Count Basie, is available for download or update […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2585:\"<p>It is that time that we get to release a brand new major release of WordPress. There are a lot of changes in the backend, not that you should notice.</p>\n<blockquote>\n<h2><a href=\"https://wordpress.org/news/2013/10/basie/\">WordPress 3.7 “Basie”</a></h2>\n<div>Posted October 24, 2013 by <a href=\"http://ma.tt/\"><NAME></a>. Filed under <a title=\"View all posts in Releases\" href=\"https://wordpress.org/news/category/releases/\" rel=\"category tag\">Releases</a>.</div>\n</blockquote>\n<div>\n<blockquote><p>Version 3.7 of WordPress, named “Basie” in honor of <a href=\"http://en.wikipedia.org/wiki/Count_basie\">Count Basie</a>, is available <a href=\"https://wordpress.org/download/\">for download</a> or update in your WordPress dashboard. This release features some of the most important architectural updates we’ve made to date. Here are the big ones:</p>\n<ul>\n<li><strong>Updates while you sleep</strong>: With WordPress 3.7, you don’t have to lift a finger to apply maintenance and security updates. Most sites are now able to automatically apply these updates in the background. The update process also has been made even more reliable and secure, with dozens of new checks and safeguards.</li>\n<li><strong>Stronger password recommendations</strong>: Your password is your site’s first line of defense. It’s best to create passwords that are complex, long, and unique. To that end, our password meter has been updated in WordPress 3.7 to recognize common mistakes that can weaken your password: dates, names, keyboard patterns (123456789), and even pop culture references.</li>\n<li><strong>Better global support</strong>: Localized versions of WordPress will receive faster and more complete translations. WordPress 3.7 adds support for automatically installing the right language files and keeping them up to date, a boon for the many millions who use WordPress in a language other than English.</li>\n</ul>\n<p>For developers there are lots of options around how to control the new updates feature, including allowing it to handle major upgrades as well as minor ones, more sophisticated date query support, and multisite improvements. As always, if you’re hungry for more <a href=\"https://codex.wordpress.org/Version_3.7\">dive into the Codex</a> or browse the <a href=\"https://core.trac.wordpress.org/query?status=closed&group=resolution&milestone=3.7\">over 400 closed tickets on Trac</a>.</p>\n<p>Read full post >> <a href=\"https://wordpress.org/news/2013/10/basie/\">https://wordpress.org/news/2013/10/basie/</a></p></blockquote>\n</div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://en-ca.wordpress.org/2013/10/24/wordpress-3-7-basie-in-canadian-english-eh/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:70:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Error in 3.6 Build\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://en-ca.wordpress.org/2013/08/06/error-in-3-6-build/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://en-ca.wordpress.org/2013/08/06/error-in-3-6-build/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Aug 2013 00:43:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:16:\"English (Canada)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:5:\"en_CA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:9:\"WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://en-ca.wordpress.org/?p=234\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:233:\"There was an error with the original build of the Canadian English 3.6 that was giving version 3.6-beta3-24485. I have fixed the build if you have the incorrect version then use the built-in updater now, or re-download on the right.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:241:\"<p>There was an error with the original build of the Canadian English 3.6 that was giving version 3.6-beta3-24485. I have fixed the build if you have the incorrect version then use the built-in updater now, or re-download on the right.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://en-ca.wordpress.org/2013/08/06/error-in-3-6-build/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:64:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"Long Weekend, Long Awaite WordPress 3.6 Released\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://en-ca.wordpress.org/2013/08/01/long-weekend-long-awaite-wordpress-3-6-released/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://en-ca.wordpress.org/2013/08/01/long-weekend-long-awaite-wordpress-3-6-released/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Aug 2013 23:02:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://en-ca.wordpress.org/?p=229\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:176:\"Hello everyone, it is the Thursday before the long weekend across Canada, and the next edition of WordPress 3.6. It is named Oscar after the legendary preformer <NAME>.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:191:\"<p>Hello everyone, it is the Thursday before the long weekend across Canada, and the next edition of WordPress 3.6.</p>\n<p>It is named Oscar after the legendary preformer Oscar Peterson.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://en-ca.wordpress.org/2013/08/01/long-weekend-long-awaite-wordpress-3-6-released/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:54:\"\n \n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"WordPress 3.5.2 – Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://en-ca.wordpress.org/2013/06/21/wordpress-3-5-2-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Jun 2013 20:56:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:5:\"en_CA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://en-ca.wordpress.org/?p=218\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:358:\"Good day folks! The core WordPress team has released an important security release. Please update you sites now. If there are any problems with the update, post a comment here. Update: The post about the update is here https://wordpress.org/news/2013/06/wordpress-3-5-2/ There was an issue with the original file. It has been rebuilt and can be updated now.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:462:\"<p>Good day folks! The core WordPress team has released an important security release. Please update you sites now. If there are any problems with the update, post a comment here.</p>\n<p>Update: The post about the update is here <a href=\"https://wordpress.org/news/2013/06/wordpress-3-5-2/\" target=\"_blank\">https://wordpress.org/news/2013/06/wordpress-3-5-2/</a></p>\n<p>There was an issue with the original file. It has been rebuilt and can be updated now.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:51:\"\n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Support Questions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://en-ca.wordpress.org/2013/03/03/support-questions/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 03 Mar 2013 15:06:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"support\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://en-ca.wordpress.org/?p=127\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:342:\"I have been getting quite a few questions in the contact form. Here are the common questions and answers. 1. I lost my password: You can find help here Resetting Your Password « WordPress Codex or if you are using WordPress.com then try here Passwords — Support — WordPress.com 2. My site is not loading/working: Try to find […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1379:\"<p>I have been getting quite a few questions in the contact form. Here are the common questions and answers.</p>\n<p>1. I lost my password: You can find help here <a href=\"https://codex.wordpress.org/Resetting_Your_Password\">Resetting Your Password « WordPress Codex</a> or if you are using WordPress.com then try here <a href=\"http://en.support.wordpress.com/passwords/\">Passwords — Support — WordPress.com</a></p>\n<p>2. My site is not loading/working: Try to find your answer here <a href=\"https://codex.wordpress.org/Troubleshooting\">https://codex.wordpress.org/Troubleshooting</a></p>\n<p>3. A WordPress site has information I want taken down. You need to contact the site owner or their web host. WordPress is open source software users can install on a web server, it is not hosted by us. If it is on a WordPress.com site then you should report it here <a href=\"http://en.wordpress.com/abuse/\">http://en.wordpress.com/abuse/</a>. A good resource on this topic is available here <a href=\"http://lorelle.wordpress.com/2006/04/10/what-do-you-do-when-someone-steals-your-content\">What Do You Do When Someone Steals Your Content « Lorelle on WordPress</a>.</p>\n<p>Also if it is a general support question and not specific to the Canadian English translation the there is a support forum at <a href=\"https://wordpress.org/support\">https://wordpress.org/support</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:38:\"https://en-ca.wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n hourly \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n 1 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 25 Nov 2019 17:23:01 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Mon, 25 Nov 2019 17:19:53 GMT\";s:4:\"link\";s:64:\"<https://en-ca.wordpress.org/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20130911040210\";}', 'no'),
(395, '_transient_timeout_feed_mod_53c6368e164927c356de1596c8cebec9', '1574745781', 'no'),
(396, '_transient_feed_mod_53c6368e164927c356de1596c8cebec9', '1574702581', 'no'),
(397, '_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9', '1574745782', 'no');
INSERT INTO `qod_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(398, '_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9', 'a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"bbPress: bbPress 2.6.2 is out!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://bbpress.org/?p=206111\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://bbpress.org/blog/2019/11/bbpress-2-6-2-is-out/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1342:\"<p>bbPress 2.6.2 fixes <a href=\"https://bbpress.trac.wordpress.org/query?status=closed&group=resolution&milestone=2.6.2\">5 more small bugs</a> that were reported by community members in our support forums:</p>\n\n\n\n<ul><li>Hierarchical replies in threaded discussion topics were broken for sites that were enabling the visual editor, so we unbroke it.</li><li>Sites with custom <code>bbpress.css</code> files were not having their custom styling applied in some cases. We fixed at least one case that we could find. Let us know if this is still not working correctly for you.</li><li>BuddyPress Notifications stopped working completely, but that wasn’t on purpose so we made them work completely again.</li><li>The “Edit” part of a URL pattern was not customizable inside of Forum Settings. Now it is!</li><li>One of the repair tools had a typo in it, so we untypo’ed it.</li></ul>\n\n\n\n<p>Thanks to everyone in the forums for being persistent and helping us identify all these annoyances. </p>\n\n\n\n<p>We’re going to continue minor releases as bugs get reported and fixed. The team is committed to making sure your forums are running as smoothly as can be, so don’t be surprised if you see 2.6.3 soon too! <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f41d.png\" alt=\"🐝\" class=\"wp-smiley\" /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Nov 2019 18:24:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WPTavern: Optimizing Code in a World That Doesn’t Want to Optimize\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95433\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wptavern.com/optimizing-code-in-a-world-that-doesnt-want-to-optimize\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6757:\"<p><em>Premature optimization is the root of all evil.</em></p>\n\n\n\n<p>It is a common saying among developers. It makes sense. Optimizing prematurely can mean redoing work down the line, and time is the developer’s most finite resource. It can mean spending that precious time optimizing for scenarios that do not yet exist for a product’s users. It can mean writing code that is harder to understand with unclear performance gains.</p>\n\n\n\n<p>While participating with the WordPress theme review team about a year ago, I came across that nugget of advice once again. <em>Premature optimization is the root of all evil.</em> The reply was to a theme author who was looking to decrease the number and weight of scripts their theme needed to load. On one hand, the theme author could load a 1.29 kb script with no dependencies to get the job done. The other option was to use the jQuery-dependent script included in core WordPress for a total of 105 kb because “most” WordPress sites are loading jQuery anyway.</p>\n\n\n\n<p>For me, the answer was simple. Use the smaller script unless the core script was already loaded on the front end. I did not think of it in terms of <em>premature optimization</em>. I thought of it as plain old, run-of-the-mill, everyday optimization.</p>\n\n\n\n<p>Developers should not confuse <em>premature optimization</em> with the concept of making smart design decisions early in the process. Nor should they wait until the final stage of development to start optimizing, a time when the focus is on getting a product out to end-users. That is a sign of a poor product design process.</p>\n\n\n\n<p>Over the past year, that conversation stuck with me. It helped me become more cognizant of a terrifying trend, not just in the WordPress developer community, but with web development in general. Far too often, developers are so far removed from normal users and the technology those users rely on that optimization is little more than an afterthought. Instead, it should always be at the forefront of any developer’s mind.</p>\n\n\n\n<p>The overreliance on this misused quote has helped push the trend of measuring page weight in megabytes instead of kilobytes. It is too often used as a catchall justification for not doing any optimization in the development phase while making up for it with file compression and caching in production.</p>\n\n\n\n<p>Part of writing quality code is optimizing that code during every stage of the development process. It is about making hard decisions to cut unnecessary things as the software comes together. Caching should be a last resort after everything else has been cleaned up.</p>\n\n\n\n<p>Premature optimization is more about attempting to optimize when there are no clear gains or working on micro-optimizations that alter the software’s design for little-to-no benefit. It does not mean overlooking obvious performance boosts during development.</p>\n\n\n\n<h2>Not Everyone is on Gigabit Internet</h2>\n\n\n\n<p>Most developers I know are on super-fast internet connections, often with 1 Gbps download speeds and unlimited data. In that situation, it is easy to forget that large chunks of the world are still on slow connections with data caps.</p>\n\n\n\n<p>Some may even associate slow connections with third-world countries where millions of people are on 2G cell phone technology. However, there are large swaths of the United States and other developed countries that have no direct cable or DSL lines, which are commonly available in cities and suburbs.</p>\n\n\n\n<p>This disconnect is directly evident when other developers have initiated chats with me. In the past couple of years, it has been increasingly common for them to ask for a video chat. It is not even questioned whether such a thing is possible (video chats are unreliable at best for me). The ability to video chat at any time is taken for granted.</p>\n\n\n\n<p>There are two internet service options in the area that I live in: satellite or dial-up. Even the local telephone company refuses to offer DSL in this area because of infrastructural costs with decades-old phone lines. Because of the prohibitive costs of satellite internet access, which typically comes with data limits, many are stuck with dial-up. Cell phone companies are changing the game to a degree, assuming service is reliable, but there are downfalls with going that route, which can include data or hotspot limitations.</p>\n\n\n\n<p>For such a technologically-advanced country, many of its people are barely catching up to where others were a decade ago.</p>\n\n\n\n<p>While I am fortunate enough to choose where I live and have nothing holding me back from moving, most do not have that option. They are stuck with the best they can afford. Even in rural areas, the internet is an inescapable part of daily life, and developers are not making it easy for these people.</p>\n\n\n\n<p>While this is anecdotal, it is the stark reality of rural life in pockets of the US.</p>\n\n\n\n<p>The upside of living in the backwoods of Alabama is that it has changed my perspective as a developer. It has meant that I needed to question every code decision for every plugin and theme I built. With data caps, I needed to make sure that I was not using too many resources. </p>\n\n\n\n<p>More than anything, having a data cap changed how I used the internet. I now run an ad-blocker. I have an extension to kill videos from auto-loading. I disable JavaScript on heavy sites that I need to use. Some sites seem interesting, but I never return to them because they are resource hogs.</p>\n\n\n\n<p>When you live in a place where every byte matters, you tend to avoid wasting them.</p>\n\n\n\n<p>While not always successful, since my transition to small-town life, I have attempted to build applications in a way that served people who are not privileged enough to have blazing-fast internet access.</p>\n\n\n\n<p>Pointing this out is about making sure developers are aware that optimization matters. It matters at every stage of the development process. It matters because these people with slow connections and data caps also need to buy products, use services, read content, and do all the other things that people do on the web.</p>\n\n\n\n<p>If you are a developer who is thinking about adding that slider, swiping mechanism for mobile, or some other slick gadget, think about those of who must wait for that feature to load. Check that its dependencies are not loading too many extra resources. Do some research to see if you can locate a lighter-weight implementation. But, first, ask yourself if it is necessary.</p>\n\n\n\n<p>The themes and plugins that WordPress developers build should never be the bottleneck for a website. We can do better.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 21 Nov 2019 21:31:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"HeroPress: Five Years Since The Dream Began\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=3019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"https://heropress.com/five-years-since-the-dream-began/#utm_source=rss&utm_medium=rss&utm_campaign=five-years-since-the-dream-began\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3140:\"<p>Exactly five years ago today I woke up to an email from <NAME> telling me my life was about to change. He didn’t know yet what we’d build, but he offered me the chance to build something.</p>\n\n\n\n<p>From that seed we crafted HeroPress. It was a battle, filled with uncertainty, and at times tears, but I can say without hesitation that HeroPress has changed my life, and the life of my family, for the better.</p>\n\n\n\n<p>Never, ever did I expect to become friends with so many people from so many places. HeroPress has changed the way I look at the world, and the people in it. It’s influenced my job opportunities. It’s opened doors for me to places that I didn’t know existed.</p>\n\n\n\n<p>As always, I want to say thank you. Thank you to Dave for planting the seed. Thank you to all the contributors over the years, building something great. Thank you to people willing to retweet for me every week. Thank you to all the people who’ve trusted me with their stories.</p>\n\n\n\n<p>Here’s hoping for another five years!</p>\n\n\n\n<img /><NAME> and I doing the X-Team X.\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Five Years Since The Dream Began\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Five%20Years%20Since%20The%20Dream%20Began&via=heropress&url=https%3A%2F%2Fheropress.com%2Ffive-years-since-the-dream-began%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Five Years Since The Dream Began\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Ffive-years-since-the-dream-began%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Ffive-years-since-the-dream-began%2F&title=Five+Years+Since+The+Dream+Began\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Five Years Since The Dream Began\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/five-years-since-the-dream-began/&media=https://heropress.com/wp-content/plugins/rtsocial/images/default-pinterest.png&description=Five Years Since The Dream Began\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Five Years Since The Dream Began\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/five-years-since-the-dream-began/\" title=\"Five Years Since The Dream Began\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/five-years-since-the-dream-began/\">Five Years Since The Dream Began</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 21 Nov 2019 15:21:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WPTavern: WP Agency Summit Kicks Off December 6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95420\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com/wp-agency-summit-kicks-off-december-6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4819:\"<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p><a href=\"https://wpagencysummit.com/\">WP Agency Summit</a>, a virtual event for WordPress agencies, will kick off December 6, 2019, and last through December 16. The event will feature daily sessions by over 30 WordPress professionals that are designed to help agencies grow their business. Each session will be free to view, but there will be a price tag attached after the event closes.</p>\n\n\n\n<p><NAME>, owner WP Mastery, is running the event. WP Agency Summit is for profit, but Koch expressed a desire to give something back to the community that has helped him over the years. “I want this event to deliver value to the WP community, because I myself have received free support countless times from Facebook groups, forums, etc.,” he said. “That’s why the event is free to watch online while it’s running.”</p>\n\n\n\n<p>The event is primarily aimed at WordPress agencies, but others may find value in it. “This event is also interesting for WordPress freelancers and digital agencies who occasionally use WordPress,” said Koch. “However, being a WordPress agency owner myself, I wanted to ensure that business owners like myself and those in similar situations get the most value from the event.”</p>\n\n\n\n<p>Video sessions will be available to view for 48 hours at no cost. For those who sign up for a free pass, they can upgrade to lifetime access for $127. That lifetime access will go up to $197 during the event and $497 afterward.</p>\n\n\n\n<p>Potential buyers may want to opt for the free option before deciding whether future access to the sessions and bonus materials are worth plunking down the cash. For an agency, the cost is minimal either way. However, for a solo freelancer, the $497 price is high enough to warrant caution. Most will want to check out the material first.</p>\n\n\n\n<p>Each of the video sessions is prerecorded and edited rather than shot live. Koch is using Vimeo Pro to host the videos. There will be a live hangout to begin the event. Attendees and speakers will also get a Facebook group invite for asking questions and engaging with each other.</p>\n\n\n\n<p>Cloudways, Siteground, and MainWP are sponsoring the event, which helps cover some of the up-front costs. Outside of that, Koch is handling the remainder of those costs out of his pocket but is hopeful for a positive return through the sale of lifetime access to the materials.</p>\n\n\n\n<p>Koch first ran a virtual summit called “The WP Summit” in 2015, which was a more broad event based on various WordPress topics. That event had over 2,000 registrations. “As you can imagine, just talking about topics related to WP resulted in a very wide-spread speaker lineup, so there weren’t any clear takeaways,” said Koch.</p>\n\n\n\n<p>The idea for WP Agency Summit has been in Koch’s mind since 2018. It wasn’t until some conversations with others at WordCamp Europe (WCEU) in 2019 that it started coming together. “After WCEU, I invested in a virtual training for summits and hired a mentor to properly set up the WP Agency Summit,” he said. “My goal is to run 4 events like this in 2020, so this summit is serving as ‘crash test dummy’ and foundation at the same time.”</p>\n\n\n\n<h2>The Speaker Lineup</h2>\n\n\n\n<p>There are over 30 speakers signed on for the event. <NAME>, a content marketer formerly known as “The WordPress Chick,” will teach agencies how to write copy that attracts higher-paying clients. <NAME>, core WordPress contributor, will teach how to save time writing code in the VS Code editor.</p>\n\n\n\n<p>Most sessions will focus on how agencies can grow their business with topics related to recurring revenue, marketing, and working with clients. Each day of the event will feature three or four sessions.</p>\n\n\n\n<p>WP Agency Summit is hosting a diverse male lineup of over 20 speakers from Europe, Asia, Australia, Africa, and the US. However, there are only four sessions lead by women within the industry. “I recognize this as a problem with my event,” said Koch. “The reason I have so much more male than female speakers is quite simple, the current speaker line-up is purely based on connections I had when I started planning for the event. It was a relatively short amount of time for me, so I wasn’t able to build relationships with more female WP experts beforehand.”</p>\n\n\n\n<p>Koch assures that he will have a more balanced ratio for upcoming summits in 2020 and beyond. “Even in this prelaunch phase, I already got in touch with many outstanding women in the WP community which would make perfect speakers for the next events,” he said.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 20 Nov 2019 19:50:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"HeroPress: Building A WordPress Business In Iran – ساختن یک زندگی وردپرسی در ایران\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=3012\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"https://heropress.com/essays/building-a-wordpress-business-in-iran/#utm_source=rss&utm_medium=rss&utm_campaign=building-a-wordpress-business-in-iran\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:19728:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2019/11/112019-min-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull quote: Over the years, WordPress transformed my personal and profesional life. In Persian: در طی این سالها، وردپرس زندگی شخصی و حرفهای من را تغییر داد.\" /><div class=\"c-message__content c-message__content--feature_sonic_inputs\">\n<div class=\"c-message__message_blocks c-message__message_blocks--rich_text\">\n<div class=\"p-block_kit_renderer p-block_kit_renderer--absorb_margin\">\n<div class=\"p-block_kit_renderer__block_wrapper p-block_kit_renderer__block_wrapper--first\">\n<div class=\"p-rich_text_block\" dir=\"auto\">\n<div class=\"p-rich_text_section\"><a href=\"https://heropress.com/feed/#fas\">این مقاله به زبان فارسی نیز در دسترس است.</a></div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<p>I purchased my first computer set when I was 19 years old, but several years before that, at the age of 15, I took a computer and MS-DOS training course and without having a computer, by merely practicing on paper, I managed to get the perfect score on the final exam.</p>\n<p>It was during those years that internet gradually entered our town. Well, don’t be shocked. Internet was introduced to our small town pretty late and we got acquainted with this technological phenomenon very late. However, internet instantly found its place in my daily routine and I was fascinated by it. After surfing the internet for a year, I was little by little encouraged to find out what a website is and how it works. Thus, I familiarized myself with the first programming language, that is, HTML and began learning it and given my enthusiasm, I mastered it in less than 10 days.</p>\n<p>I was increasingly attracted to the internet and the issues pertinent to it, and soon enough I was drawn to various internet technologies. In less than a year, I was able to learn PHP, CSS, and HTML and relying on my limited knowledge, I began testing different systems and scripts.</p>\n<h3>Introduction to Blogging</h3>\n<p>During those same years, I worked with various blog systems, one of which was B2 system. A little while later, while conducting tests, doing installations, and having fun, I encountered a system which was quite similar to B2. I installed it. Then, I entered its various parts. I found its management system, templates and codes quite appealing and easy to work with. Thus, I began translating it into Persian for my personal purposes, and in less than a week, I turned most of its various parts into Persian and they were ready to be used. Yet, due to certain reasons, I failed to install this system on my host or test it online. But I kept the system on my computer and I worked with it and enjoyed it. Yes, that system was one of the first versions of WordPress.</p>\n<p>Prior to working with WordPress, I had worked with various systems and scripts, and I was primarily accustomed to Joomla. However, simplicity, convenience, and interesting environment of WordPress drew me towards this system and I kept working with it.</p>\n<p>I was by nature shy and reticent; therefore, I was not that active in any groups or forums –this was the case in my personal life as well as on the web. Consequently, during the first few years of my activity in the field of WordPress, I hardly ever participated in WordPress forums or local groups.</p>\n<h3>Getting Involved</h3>\n<p>However, one of my friends who was active in the field of Persian WordPress, invited me to collaborate with one of the Persian WordPress support forums and this was a new beginning for me in the area of localization of WordPress.</p>\n<p>My keen interest in working with WordPress as well as helping others work and become more familiar with it made me spend a lot of time daily in the Persian WordPress forum. Nevertheless, due to the shortcomings and needs of the Persian WordPress community, we also created another support website. Following the creation of this new website, many users were attracted to it and gradually we got a lot of feedback from the Persian WordPress community. So, we became further involved with the Persian WordPress community and the scope of our activities expanded.</p>\n<p>It was during these years that I got my first formal job offer in the field of WordPress and I launched the first WordPress website for a client and received money in return for my services. This experience highly motivated me and helped me envision my future as a WordPress developer. Meanwhile, with the help of some of my friends, I started a small web design and development company which was supposed to focus on coding and programming electronic components, but my keen enthusiasm for web development drew the entire team to focus on web design and development. Due to my numerous activities in the field of WordPress and my growing recognition as a WordPress activist, over the course of a few years, virtually all of our company activities centered on WordPress as the main basis of our work, and now we are one of the active supporters of WordPress in Iran.</p>\n<h3>Transformations</h3>\n<p>Over the years, WordPress transformed my personal and professional life. My personal life was changed in the respect that from a shy, quiet and inactive guy, I turned into an energetic, active person interested in discussions and participation in social events. Along the way, I also met great and influential people, including my future spouse.</p>\n<p>We organized various gatherings and meetups in the field of WordPress. We held WordPress seminars. We set up various public forums and groups to enhance the impact of WordPress and educate newcomers, and thus, many changes occurred in my overall mood and personality.</p>\n<p>Besides, prior to the general change of direction in our company towards web and especially WordPress, our revenues were low and the company had a very slow growth; yet following our change of direction and basing the structure of the company on WordPress, our annual growth rate increased dramatically and there was a considerable increase in the size of the company, number of the personnel, and payments.</p>\n<p>I should also mention that I am a graduate of textile engineering. However, my field of study has nothing to do with my career interests. Since from a very young age I dreamt of working in the field of computer science, even studying an irrelevant major did not stop me from pursuing my old dream and while studying textile engineering, I worked in the field of computer science and in my own company.</p>\n<p>Now, 16 years after my first encounter with WordPress, it has pervaded every aspect of my life and has changed me personally, mentally, and professionally and has influenced my choice of career and business. And I am really glad that on that day I became familiar with WordPress and started working with it and am still involved with it up to this day, because not only my life changed as a result, but also I managed to educate so many people and help them transform their lives in a way that WordPress played a major role in their lives and contributed to their further success.</p>\n<h1 id=\"fas\">ساختن یک زندگی وردپرسی در ایران</h1>\n<p>من اولین کامپیوتر خود را وقتی ۱۹ ساله بودم خریدم ولی چندین سال قبل از آن در سن 15 سالگی به کلاس آموزش کامپیوتر و دوره آموزشی کار با DOS رفتم و بدون داشتن کامپیوتر و با تمرین روی کاغذ توانستم نمره کامل رو در آزمون نهایی کسب کنم.</p>\n<p>در همان سالها بود که اینترنت کم کم وارد شهر ما شد، بله تعجب نکنید درشهرکوچک ما اینترنت خیلی دیر وارد شد و ما خیلی دیر با این پدیده آشنا شدیم اما اینترنت به سرعت جای خود را در کارهای روزمره من باز کرد و من شیفته آن شدم بعد از یک سال کار کردن با اینترنت من کم کم ترغیب شدم که بفهمم سایت چیست و چگونه کار میکند و با اولین زبان یعنی HTML آشنا شدم و شروع به یادگیری آن کردم و با اشتیاق فراوانی که داشتم آن را در کمتر از ۱۰ روز یاد گرفتم.</p>\n<p>من هر روز بیشتر جذب اینترنت و موضوعات مرتبط با آن می شدم و به سرعت به سوی تکنولوژی های مختلف اینترنتی کشیده شدم. یک سال هم طول نکشید که توانستم HTML / CSS / PHP را یاد بگیرم و با همون دانش اندک، شروع به تست سیستم و اسکریپتهای مختلف کردم.</p>\n<h3>مقدمهای برای شروع</h3>\n<p>در همان سالها من با سیستمهای وبلاگی مختلفی کار کردم که یکی از آنها سیستم b2 بود. کمی بعدتر در همین تستها و نصبها و بازیگوشی ها با سیستمی مواجه شدم که بسیار شبیه b2 بود. آن را نصب کردم سپس وارد بخشهای مختلف آن شدم، سیستم مدیریت، بخش قالب و کدهای آن و بسیار برایم ساده و جالب و جذاب به نظر رسید و به همین دلیل شروع به فارسی کردن آن برای کارهای شخصی خود کردم و کمتر از یک هفته بخشهای مختلف آن را تا حدود زیادی فارسی و آماده استفاده کرده بودم. اما به دلایل خاصی موفق نشدم که آن را بر روی هاست خود نصب و به صورت آنلاین تست کنم. ولی آن سیستم را بر روی کامپیوتر خود نگه داشتم و با آن کار می کردم و لذت می بردم. بله آن سیستم یکی از اولین نسخه های وردپرس بود.</p>\n<p>من قبل از کار با وردپرس با سیستم ها و اسکریپت های مختلفی کار کرده بودم و بیشترین اسکریپتی که با آن انس گرفته بودم جوملا بود اما سادگی و روانی و محیط جذاب مدیریت وردپرس باعث شد که من به سمت وردپرس کشیده شوم و کار با آن را ادامه دهم.</p>\n<p>من ذاتا آدم کم حرف و خجالتی بودم و به همین دلیل خیلی در گروه ها و انجمن های خاصی فعالیت نمیکردم و این هم شامل وب و هم شامل زندگی عادی من میشد به همین دلیل تا چند سال اولیه فعالیت من در وردپرس، خیلی در انجمنهای تخصصی و یا گروه های محلی آن فعالیتی نداشتم.</p>\n<h3>شروع مشارکت</h3>\n<p>تا اینکه یکی از دوستان من که از فعالان وردپرس در زبان فارسی بود من را دعوت به همکاری در یکی از انجمن های پشتیبانی وردپرس به زبان فارسی کرد و این شروعی دوباره برای من در زمینه محلی سازی وردپرس بود.</p>\n<p>علاقه زیاد من به کار با وردپرس و همچنین کمک به دیگران برای کار و آشنایی بیشتر با وردپرس باعث شد که من روزانه زمان زیادی را در انجمن وردپرس فارسی صرف کنم. اما با توجه به کمبود ها و نیازهایی که جامعه فارسی داشت ما یک سایت پشتیبانی دیگر را نیز ایجاد کردیم با ایجاد سایت جدید کاربران زیادی جذب ما شدند و کم کم ما بازخوردهای زیادی را از جامعه فارسی گرفتیم به همین دلیل بیشتر درگیر جامعه فارسی وردپرس شدیم و دامنه فعالیت های ما نیز گسترش پیدا کرد.</p>\n<h3>دگرگونی</h3>\n<p>در همین سالها اولین پیشنهاد کاری رسمی من در زمینه وردپرس رسید و من اولین سایت خود را برای یک مشتری با وردپرس برپا کردم و در قبال آن مبلغی را دریافت کردم که این موضوع باعث شد انگیزه زیادی در من شکل بگیرد و مسیر حرکتی آینده خود را در وردپرس ببینم. همزمان، با کمک چند نفر از دوستان خود یک شرکت طراحی و برنامه نویسی کوچک را تاسیس کردیم که روند آن قرار بود بر کدنویسی و برنامه نویسی برای قطعات الکترونیکی باشد اما اشتیاق فراوان من به طراحی وب باعث شد که نظر کلیه جمع نیز به سمت کدنویسی و طراحی وب کشیده شود. با توجه به فعالیتهای زیاد من در وردپرس و بیشتر شناخته شدن من به عنوان یک فعال وردپرسی، در طی یک بازه زمانی چند ساله، کلیه فعالیت های شرکت ما نیز به سمت وردپرس کشیده شد و مبنای اصلی کارهای ما وردپرس شد و هم اکنون ما یکی از حامیان فعال وردپرس در ایران هستیم.</p>\n<p>طی سالیان مختلف وردپرس زندگی شخصی و کاری من را تغییر داد. زندگی شخصی من را از این جهت تغییر داد که از یک آدم خجالتی و کم حرف و کم فعالیت به یک آدم فعال، پر انرژی و علاقمند به بحث و گفتگو و حضور در اجتماعات تبدیل شوم. در این مسیر با افراد بزرگ و تاثیرگذار منجمله با همسر آینده خود نیز آشنا شدم.</p>\n<p>اجتماعات و میتاپهای مختلفی را در زمینه وردپرس راه اندازی نمودیم. سمینار های وردپرسی برگزار کردیم. انجمن ها و گروههای مردمی مختلفی را در جهت افزایش نفوذ وردپرس و آموزش آن به افراد تازه کار راه اندازی کردیم و به همین دلیل تغییرات زیادی در روحیه و خلقیات و شخصیت کلی من ایجاد شد.</p>\n<p>همچنین تا قبل از تغییر روند کلی شرکت ما به سمت وب و علیالخصوص وردپرس، شرکت درآمد خاصی نداشت و بسیار کند رشد می کرد اما پس از تغییر رویه و راه اندازی بستر اصلی شرکت بر روی وردپرس روند سالانه ما به شدت رشد کرد و هم از نظر اندازه و هم تعداد کارکنان و هم از نظر سطح دستمزد و حقوق پیشرفت چشمگیری در شرکت ایجاد شد.</p>\n<p>این را هم اضافه کنم که من فارغ التحصیل در رشته مهندی نساجی هستم. اما رشته تحصیلی من با رشته و علاقمندی کا ی من کاملا از هم جدا و نامرتبط هستند. چون من از جوانی آرزو و شوق کار کردن در زمینه کامپیوتر را داشتم و حتی تحصیل در رشته ای نامرتبط هم سبب نشد که دست از آرزوی قدیمی خود بردارم و حتی همزمان با تحصیل در رشته نساجی، در زمینه کامپیوتر و در شرکت خود مشغول به کار بودم.</p>\n<p>حالا ۱۶ سال از اولین برخورد و کار من با وردپرس میگذرد و وردپرس تقریباً در همه زمینه های مختلف زندگی من نفوذ کرده و باعث تغییر من در زمینه شخصی، روحی و کاری و کسب و کار من شده است و از این بابت بسیار خوشحال هستم که آن روز توانستم با وردپرس آشنا شده و شروع به کار کنم و تا به امروز نیز درگیر آن باشم.</p>\n<p>زیرا علاوه بر اینکه زندگی من تغییر کرد، توانستم افراد زیادی را نیز آموزش داده و به آنها کمک کنم تا زندگی آنها نیز تغییر کند و وردپرس شاکله زندگی آنها را تشکیل داده و باعث موفقیت بیشتر آنها شود.</p>\n<p> </p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\">\n<div class=\"rtsocial-twitter-horizontal\">\n<div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Building A WordPress Business In Iran – ساختن یک زندگی وردپرسی در ایران\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Building%20A%20WordPress%20Business%20In%20Iran%20%2D%20%D8%B3%D8%A7%D8%AE%D8%AA%D9%86%20%DB%8C%DA%A9%20%D8%B2%D9%86%D8%AF%DA%AF%DB%8C%20%D9%88%D8%B1%D8%AF%D9%BE%D8%B1%D8%B3%DB%8C%20%D8%AF%D8%B1%20%D8%A7%DB%8C%D8%B1%D8%A7%D9%86&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbuilding-a-wordpress-business-in-iran%2F\" rel=\"nofollow\" target=\"_blank\"></a></div>\n</div>\n<div class=\"rtsocial-fb-horizontal fb-light\">\n<div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Building A WordPress Business In Iran – ساختن یک زندگی وردپرسی در ایران\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fbuilding-a-wordpress-business-in-iran%2F\" rel=\"nofollow\" target=\"_blank\"></a></div>\n</div>\n<div class=\"rtsocial-linkedin-horizontal\">\n<div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbuilding-a-wordpress-business-in-iran%2F&title=Building+A+WordPress+Business+In+Iran+%26%238211%3B+%D8%B3%D8%A7%D8%AE%D8%AA%D9%86+%DB%8C%DA%A9+%D8%B2%D9%86%D8%AF%DA%AF%DB%8C+%D9%88%D8%B1%D8%AF%D9%BE%D8%B1%D8%B3%DB%8C+%D8%AF%D8%B1+%D8%A7%DB%8C%D8%B1%D8%A7%D9%86\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Building A WordPress Business In Iran – ساختن یک زندگی وردپرسی در ایران\"></a></div>\n</div>\n<div class=\"rtsocial-pinterest-horizontal\">\n<div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/building-a-wordpress-business-in-iran/&media=https://heropress.com/wp-content/uploads/2019/11/112019-min-150x150.jpg&description=Building A WordPress Business In Iran - ساختن یک زندگی وردپرسی در ایران\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Building A WordPress Business In Iran – ساختن یک زندگی وردپرسی در ایران\"></a></div>\n</div>\n<p><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/building-a-wordpress-business-in-iran/\" title=\"Building A WordPress Business In Iran – ساختن یک زندگی وردپرسی در ایران\"></a></div>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/building-a-wordpress-business-in-iran/\">Building A WordPress Business In Iran – ساختن یک زندگی وردپرسی در ایران</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 20 Nov 2019 04:30:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: 10up Releases GitHub Actions for Simplifying WordPress Plugin Deployment\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95388\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wptavern.com/10up-releases-github-actions-for-simplifying-wordpress-plugin-deployment\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6647:\"<p>10up announced the <a href=\"https://10up.com/blog/2019/wordpress-github-actions-streamline-plugin-deployment/\">public availability of two GitHub Actions</a> geared toward WordPress plugin developers yesterday. The first Action allows developers to deploy plugin updates directly to the WordPress.org plugin directory by tagging a release on GitHub. The second Action handles readme file and asset updates. </p>\n\n\n\n<p>On November 14, GitHub <a href=\"https://github.blog/2019-11-14-powering-community-led-innovation-with-github-actions/\">announced the public launch</a> of their GitHub Actions feature. GitHub Actions are a way for developers to automate workflows from their Git repositories. Actions can also be shared with others, reused across projects, and forked like any other public repository.</p>\n\n\n\n<p>Currently, there are over 1,300 GitHub Actions with more being added every day. At least <a href=\"https://github.com/marketplace?utf8=%E2%9C%93&type=actions&query=wordpress\">nine of the current Actions</a> are related to WordPress, including an Action to <a href=\"https://wptavern.com/rtcamp-releases-github-actions-for-automated-code-review-deploying-wordpress-and-slack-notifications\">deploy WordPress by rtCamp</a>, but there will certainly be more to come in the future.</p>\n\n\n\n<p>With GitHub Actions out of beta, it opens the door for companies like 10up to share their custom workflows and for others to build upon them. It will also be interesting to see what Actions other developers within the WordPress ecosystem release.</p>\n\n\n\n<p>The 10up team initially <a href=\"https://10up.com/blog/2019/introducing-github-actions-for-wordpress-plugins/\">launched their custom Actions</a> for WordPress in March 2019, which was during GitHub Actions beta period. “Everybody has been very positive,” said <NAME>, director of open source initiatives at 10up and WordPress lead developer. “We’ve had a number of people report bugs, request enhancements, and contribute code and documentation. That’s been a really great measure of adoption and attention for me — having people give thoughtful critical feedback and help us improve this tool for everybody.”</p>\n\n\n\n<p>Hou-Sandí is interested in seeing other ideas for adding workflows or potentially new Actions from the community. “An example of something we’ve just started doing without writing a whole new Action is generating hook documentation and deploying that to GitHub Pages, which eliminates the need to generate locally, commit manually, and decide on where to host things,” she said.</p>\n\n\n\n<p>“Development was actually smoother than I anticipated,” said Hou-Sandí of creating and testing the team’s GitHub Actions. “Maybe because I spent a fairly long time planning and obsessing over potential issues and chose to use Bash.” For testing, she was able to use an inactive plugin repo on WordPress.org. “I’m sure I could have come up with a method to test completely locally, but being able to use actual environments without repercussions was helpful.”</p>\n\n\n\n<p>The 10up team has already been deploying plugin updates with the Actions. Hou-Sandí said that she does not think about this in terms of saving time, even though the team is already tagging releases via GitHub. </p>\n\n\n\n<p>“What it’s really done for us is, along with well-documented release processes, made it so that anybody can jump in and get a plugin updated or released without worrying about modifying commit permissions or their personal knowledge of SVN,” she said. “This makes it much easier to get releases out especially when it’s an urgent bugfix.”</p>\n\n\n\n<h2>Deploying and Updating WordPress Plugins</h2>\n\n\n\n<p>Both of the GitHub Actions created by 10up help ease the pain of deploying plugin updates to the official WordPress plugin directory. They are designed to streamline plugin release management and simplify the process of getting code out to end-users.</p>\n\n\n\n<p>WordPress plugin authors must use Subversion (SVN) to commit and tag plugin releases in the directory. Often, this is an issue because Git is the most-used version control system. Some developers have no experience with SVN, and the number of developers unfamiliar with it will likely only grow as Git continues to gain popularity. Even with those who do understand SVN, switching between version control systems can hinder workflows, particularly with larger teams.</p>\n\n\n\n<p>With so many WordPress plugin developers using Git, it makes sense to use tools that are a part of their daily workflow rather than jumping into a system only used during releases. That is where both of these GitHub Actions developed by 10up can help. </p>\n\n\n\n<p>Adding Actions to a repository is a fairly straightforward process. All repositories have a new “Actions” tab. Developers can create new workflows directly from the Actions page for their repository. When adding a new workflow, it is simply a matter of copying and pasting a particular Action’s code snippet.</p>\n\n\n\n<div class=\"wp-block-image\"><img />Adding a custom GitHub workflow.</div>\n\n\n\n<p>The <a href=\"https://github.com/marketplace/actions/wordpress-plugin-deploy\">WordPress Plugin Deploy</a> Action is for deploying plugin updates directly to the WordPress plugin directory. When developers tag a release on GitHub, it will automatically commit the update to the WordPress.org SVN repository. The Action respects <code>.distignore</code> and <code>.gitattributes</code> for ignoring files that should not be distributed to users. It also allows developers to add their plugin assets to a <code>.wordpress-org</code> folder, which will be committed to the top-level <code>assets</code> directory.</p>\n\n\n\n<p><a href=\"https://github.com/marketplace/actions/wordpress-plugin-readme-assets-update\">WordPress.org Plugin Readme/Assets Update</a> is a separate Action that allows developers to commit changes to their plugin’s readme or assets. It is useful when plugin authors need to update their plugin’s <code>Tested up to</code> version number or update screenshots, banners, and icons. This Action watches for changes on a specified branch.</p>\n\n\n\n<p>Both Actions require developers to set up secret values for their WordPress SVN username and password. Secrets are encrypted data that can be set via a repository’s “Settings > Secrets” screen. The SVN username and password are required so that GitHub can deploy commits to WordPress.org.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 19 Nov 2019 23:00:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"WordPress.org blog: WordPress 5.2.4 Update\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7787\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/news/2019/11/wordpress-5-2-4-update/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1100:\"<p>Late-breaking news on the<a href=\"https://wordpress.org/news/2019/10/wordpress-5-2-4-security-release/\"> 5.2.4 short-cycle security release </a>that landed October 14. When we released the news post, I inadvertently missed giving props to <NAME> of <a href=\"https://blog.ripstech.com/\">RIPS Technologies</a> for finding and disclosing an issue where path traversal can lead to remote code execution. </p>\n\n\n\n<p>Simon has done a <a href=\"https://wordpress.org/news/2018/12/wordpress-5-0-1-security-release/\">great</a> <a href=\"https://wordpress.org/news/2019/03/wordpress-5-1-1-security-and-maintenance-release/\">deal</a> of <a href=\"https://wordpress.org/news/2019/09/wordpress-5-2-3-security-and-maintenance-release/\">work</a> on the WordPress project, and failing to mention his contributions is a huge oversight on our end.</p>\n\n\n\n<p>Thank you to all of the reporters for <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">privately disclosing</a> vulnerabilities, which gave us time to fix them before WordPress sites could be attacked.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 19 Nov 2019 04:47:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WPTavern: Gutenberg 6.9 Introduces Image Titles, Block Patterns, and New Theme Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95365\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://wptavern.com/gutenberg-6-9-introduces-image-titles-block-patterns-and-new-theme-features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5671:\"<p>On November 13, the Gutenberg team <a href=\"https://make.wordpress.org/core/2019/11/13/whats-new-in-gutenberg-13-november/\">launched version 6.9</a> with several features, most of which were aimed at developers. Users can now add custom image title attributes. Plugin developers can start diving into the new Block Patterns API. Plus, theme authors can begin tinkering with the experimental gradient presets and block templates features.</p>\n\n\n\n<p>Gutenberg 6.9 fixed numerous bugs, including an annoying <a href=\"https://github.com/WordPress/gutenberg/issues/16429\">invalid content error</a> when selecting a color for the pullquote block. The update included several enhancements and changes to the underlying codebase.</p>\n\n\n\n<p>Much of the work in version 6.9 went toward experimental features, including the navigation block. At this point, the nav block still needs a ton of work for practical use. The interface is still a bit clunky. Undoubtedly, this is one of the toughest user experience challenges to solve and will take time before it is ready for widespread usage. Right now, it is about continually iterating upon the work from previous versions.</p>\n\n\n\n<h2>Image Title Attribute Field</h2>\n\n\n\n<div class=\"wp-block-image\"><img />Editing the image title field in Gutenberg.</div>\n\n\n\n<p>The ability to add image titles is perhaps the biggest user-facing feature added in Gutenberg 6.9. The <a href=\"https://github.com/WordPress/gutenberg/issues/11054\">original ticket</a> for adding the feature has been simmering for over a year.</p>\n\n\n\n<p>The Gutenberg team added the title field under the “Advanced” tab when editing an image block. This was a smart decision because image titles are often used incorrectly to describe an image, which is the job of the “Alt Text” field located under the “Image Settings” tab. Image titles are also generally unnecessary. When used, they should describe the role of the image on the page.</p>\n\n\n\n<h2>Initial Block Patterns API Merged</h2>\n\n\n\n<div class=\"wp-block-image\"><img />Choosing a column layout in the block editor.</div>\n\n\n\n<p>The Block Patterns API is a developer feature primarily for creating initial setup states for complex blocks. For example, the columns block has several common patterns that users may want to choose. By providing those patterns when first inserting a block, the user does not have to go through the routine of configuring all of the settings for it.</p>\n\n\n\n<p>The idea is to cut back on the complexities of configuring some blocks so that users can more quickly get to the point of adding their custom content and getting their desired results.</p>\n\n\n\n<p>The first step toward the Block Patterns API was <a href=\"https://github.com/WordPress/gutenberg/pull/18270\">merged into Gutenberg 6.9</a>, but it is still in the experimental stage at this point.</p>\n\n\n\n<h2>Block Gradient Presets</h2>\n\n\n\n<div class=\"wp-block-image\"><img />Adding a gradient background to a button in Gutenberg.</div>\n\n\n\n<p>Gutenberg introduced gradient backgrounds in <a href=\"https://wptavern.com/gutenberg-6-7-introduces-storybook-and-gradient-backgrounds\">version 6.7</a> for the button block. The feature launched with a set of gradients that did not match users’ themes, which meant the feature was little more than a fun experiment.</p>\n\n\n\n<p>In version 6.9, developers can register custom gradients that are less of an eyesore by using colors that fit into the theme’s color palette.</p>\n\n\n\n<p>Currently, <a href=\"https://developer.wordpress.org/block-editor/developers/themes/theme-support/#block-gradient-presets\">block gradient presets</a> are marked as an experimental feature and use the <code>__experimental-editor-gradient-presets</code> theme support flag. Now is a good time for theme authors to begin exploring this feature so they can be ready when the experimental flag is removed.</p>\n\n\n\n<h2>Block Templates for Themes</h2>\n\n\n\n<p>For theme authors, block templates were the most exciting aspect of Gutenberg’s potential when it first launched. Throughout all of WordPress’ history, creating custom page templates, particularly front page templates, has been an exercise in frustration. Theme authors have always had great ideas about what their themes’ front pages should look like. In a way, it is an author’s signature on a theme project. It is often what sets one theme apart from another.</p>\n\n\n\n<p>However, creating an interface that allows users to change what is traditionally a blog post list to something more ornate and complex is not an easy thing to do. Hundreds, perhaps thousands, of varying implementations are currently in the wild, each with their take on how to create a custom front page.</p>\n\n\n\n<p>Enter Gutenberg. Theme authors, regardless of whether they love or hate it, usually see the potential of a block-based editor in terms of laying out a front page. The idea of having complete control over where specific blocks sit and how they appear on the front end is an alluring one, especially if there is a standardized experience for users to figure out how to plug their content into the blocks.</p>\n\n\n\n<p>Gutenberg 6.9 <a href=\"https://github.com/WordPress/gutenberg/pull/18247\">laid the groundwork</a> toward this reality by resolving block templates from a theme’s <code>/block-templates</code> folder.</p>\n\n\n\n<p>At this point, theme block templates are still in the experimental stage as part of the <a href=\"https://github.com/WordPress/gutenberg/issues/17512\">full site editing feature</a>. From a theme development perspective, this could be revolutionary.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 18 Nov 2019 19:03:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"Post Status: <NAME> on WordPress, JAMstack, and the future of the independent developer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=71326\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://poststatus.com/wordpress-jamstack/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1790:\"<p>In this episode, Scott and I dig into his experience as an indie developer within the WordPress landscape.</p>\n\n\n\n<p>Scott has long used JavaScript as a core technology with AppPresser. I think he\'s on the forefront of thinking about and using technologies that are new to WordPress but out in full force in other ecosystems. </p>\n\n\n\n<p>Scott is really into <a href=\"https://jamstack.org/\">JAMstack</a> (JavaScript, APIs, Markup). He\'s working on <a href=\"https://staticfuse.com/\">Static Fuse</a> now, which helps connect WordPress to <a href=\"https://www.gatsbyjs.org/\">Gatsby</a>. Gatsby has a <em>lot</em> of attention in web tech right now.</p>\n\n\n\n<p>We also dig pretty deeply into the challenges and opportunities facing independent developers, and the interest levels in WordPress from the indie dev crowd. It\'s an interesting episode, and I learned a lot from Scott. I hope you do too. Enjoy our conversation!</p>\n\n\n\n\n\n\n\n<h3>Other links from the show</h3>\n\n\n\n<ul><li><a href=\"https://graphql.org/\">GraphQL</a> and <a href=\"https://www.wpgraphql.com/\">WPGraphQL</a></li><li><a href=\"https://scottbolinger.com/\">Scott\'s website</a></li><li><a href=\"https://theproductbusiness.com/podcast/\">The Product Business podcast</a></li><li><NAME>\'s <a href=\"https://javascriptforwp.com/product-category/courses/\">JavascriptforWP</a> courses</li></ul>\n\n\n\n<h3>Sponsor: Sandhills Development</h3>\n\n\n\n<p><a href=\"http://sandhillsdev.com/\">Sandhills Development</a> makes a suite of excellent plugins to power your WordPress website. Whether you need to sell digital downloads, restrict content, create an affiliate program, or manage an events calendar, they’ve got you covered. Thanks to <a href=\"http://sandhillsdev.com/\">Sandhills</a> for being a Post Status partner.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 16 Nov 2019 16:36:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"WPTavern: 24 WordPress Snippets ’til Christmas, Submissions Open for 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95346\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/24-wordpress-snippets-til-christmas-submissions-open-for-2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5943:\"<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>After a multi-year hiatus, <NAME> has relaunched his WordPress advent calendar and is looking for volunteers. The <a href=\"https://advent.elliottrichmond.co.uk/\">WP Snippets ’til Christmas</a> site will host 24 days of WordPress code snippets starting on December 1 and lasting until December 24. With each passing day, a new code snippet will be revealed.</p>\n\n\n\n<p>Advent calendars are special types of calendars used to count down the days until Christmas. They are often a part of religious celebrations but can be used for other purposes such as family traditions and games. For Richmond’s advent calendar, it is a way to contribute something back to the WordPress community.</p>\n\n\n\n<p>Richmond opened the site for developers to make contributions to the 24-day event. “I’ve been in touch with the original contributors in the hope that they’ll submit again and registration is also open to anyone else who wishes to contribute,” he said. “Otherwise, it will just be the Elliott Richmond show.” </p>\n\n\n\n<p>He would rather have community submissions than attempting to write all 24 code snippets alone. <NAME>, <NAME>, and <NAME>, all prominent developers in the WordPress community, have already signed on to submit code. <em>Author’s note: I am also considering joining because it sounds like fun.</em></p>\n\n\n\n<p>Anyone who wants to receive updates each day of the event can register for free on the <a href=\"https://advent.elliottrichmond.co.uk/\">WP Snippets ’til Christmas</a> website. The same signup form is available for contributors.</p>\n\n\n\n<p>There are no limitations on the types of code snippets that contributors can submit, only that they should be related to WordPress. Richmond says he has some ideas such as a WP-CLI script and a deployment tool for use on the command line. However, code snippets can be something as simple as sticking a basic function into a theme to more complex scripts.</p>\n\n\n\n<p>“I come from a frontend world and I’m a self-taught PHP developer,” said Richmond. “I’m evolving constantly and always eager to learn new things. I think WordPress is similar, it’s always evolving and inspiring innovation. If you put any limitations on things they rapidly become stagnated.”</p>\n\n\n\n<p>The code snippets are not aimed at any type of WordPress user in particular. “I think it’s really useful to see bite-size code snippets to help those in the community who are taking that next step into development,” said Richmond. “To those more seasoned developers, I think it’s always useful to see how other developers approach things.”</p>\n\n\n\n<p>Each code snippet will have an open comments section similar to a traditional blog. This will allow others to say thanks for sharing or to jump-start a conversation.</p>\n\n\n\n<h2>The Road Back to the Advent Calendar</h2>\n\n\n\n<p>Richmond has been a WordPress user and developer since the launch of the platform. He is the director of <a href=\"https://squareone.software/\">Square One Software</a>, a software development company that specializes in WordPress development.</p>\n\n\n\n<p>He <a href=\"https://wptavern.com/wordpress-snippets-til-christmas-submissions-opened-for-2013\">last ran the advent calendar</a> in 2013. After the success of the first year in 2012, he decided to put it together for a second round. He wanted to keep it going beyond the first two years, but work and other commitments took priority.</p>\n\n\n\n<p>In the years since, Richmond met other local WordPress enthusiasts at WordCamp London. He now helps host the local meetup in Cheltenham, UK. With the help of the community, he organized four teams of local project managers, designers, developers, and content writers for a <a href=\"https://doaction.org/event/cheltenham-2019/\">local do_action event</a>. “I’m still an enthusiastic proponent of giving back to the community and actively encourage others in our local community to share their experience and knowledge,” said Richmond.</p>\n\n\n\n<p><a href=\"https://doaction.org/\">do_action</a> events are charity hackathons that use WordPress to help provide local charity organizations an online presence.</p>\n\n\n\n<p>“Every single team and team member did an amazing job on the day for four local non-profit charities, putting together a functional WordPress website for each charity while I personally gave a charity representative some hands-on training,” said Richmond. “Taking away some of the overhead of creating a website for the charities allows them to concentrate on what they do best, which is raising money for their own community.”</p>\n\n\n\n<p>Richmond described needing to find something to do next while still riding the buzz from the event. That is when he decided to relaunch the WP Snippets ’til Christmas event.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p>Because it is the season, Richmond crowned “It’s a Wonderful Life” as the greatest Christmas movie.</p>\n\n\n\n<p>“I love classics and this one is a true classic, pretty apt in the current move to make people aware of mental health,” said Richmond. “The movie starts with depression and pending suicide when a guardian angel is bestowed to the main character <NAME>. George is shown how many lives he’s impacted on in his own local community and how things would have been if he didn’t exist, a real heartwarming feel-good reflection on the things that we take for granted in our own existence.”</p>\n\n\n\n<p>With this upcoming holiday season, considering taking the time to give back to both your local community and the WordPress community. One great way to do that is to contribute a code snippet to WP Snippets ’til Christmas.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Nov 2019 21:10:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"bbPress: bbPress 2.6.1 is out!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://bbpress.org/?p=205662\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://bbpress.org/blog/2019/11/bbpress-2-6-1-is-out/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2442:\"<p>It seems like only <a href=\"https://bbpress.org/blog/2019/11/bbpress-2-6/\">yesterday that 2.6.0</a> was released, and depending on where you live that might actually be true! <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f5d3.png\" alt=\"🗓\" class=\"wp-smiley\" /></p>\n\n\n\n<p>bbPress 2.6.1 fixes a few small (but very annoying bugs) that warranted some immediate attention:</p>\n\n\n\n<ul><li><a href=\"https://bbpress.trac.wordpress.org/ticket/3232\">One</a> was causing subforums not to be listed underneath their parents anymore.</li><li><a href=\"https://bbpress.trac.wordpress.org/ticket/3281\">Another</a> was causing styling issues for a few of the themes that come bundled with WordPress itself.</li><li><a href=\"https://bbpress.trac.wordpress.org/ticket/3280\">The last one</a> was causing issues with posting content within WordPress Admin, because of incompatibility with a few plugins that were interacting with the REST API in admin area pages in fun ways that we hadn’t anticipated yet.</li></ul>\n\n\n\n<p>Thanks to the quick reporting of <a href=\"https://bbpress.org/forums/profile/stevehammatt/\">stevehammatt</a> and <a href=\"https://bbpress.org/forums/profile/pdvwp/\">pdvwp</a>, we were able to identify all of these problems and get them into bbPress 2.6.1 right away. You both rock! <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f44f.png\" alt=\"👏\" class=\"wp-smiley\" /></p>\n\n\n\n<p class=\"has-text-color has-background has-very-dark-gray-color has-very-light-gray-background-color\">One bug still remains that we could use your help with, that is affecting sites that have a custom <code>bbpress.css</code> file in their theme. If you need to fix this ASAP, you can rename it to <code>bbpress.min.css</code> temporarily. If you’re able to chime into <a href=\"https://bbpress.org/forums/topic/child-css/\">this topic in the forums</a>, that would be super helpful!</p>\n\n\n\n<p>If you have a few moments, the great <NAME> from WPTavern <a href=\"https://wptavern.com/bbpress-2-6-released-after-6-years-includes-per-forum-moderation-and-engagements-api\">asked me a few questions about bbPress 2.6</a>, so consider giving it a read.</p>\n\n\n\n<p>Lastly, thank you everyone for the positive comments and responses to seeing bbPress 2.6 finally happen. It made my day, and I really appreciate it. <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f49a.png\" alt=\"💚\" class=\"wp-smiley\" /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Nov 2019 23:48:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"<NAME>y\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"WPTavern: bbPress 2.6 Released After 6 Years, Includes Per-Forum Moderation and Engagements API\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95336\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://wptavern.com/bbpress-2-6-released-after-6-years-includes-per-forum-moderation-and-engagements-api\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7007:\"<p>On Tuesday, <NAME> announced that bbPress 2.6 was available to the public after a six-year wait in a post titled <a href=\"https://bbpress.org/blog/2019/11/bbpress-2-6/\">bbPress 2.6 — Better Great Than Never</a>. The announcement landed with a whimper as it was overshadowed by the release of WordPress 5.3 on the same day.</p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/bbpress/\">bbPress</a> is an official WordPress project for powering forums. It was <a href=\"https://bbpress.org/blog/2004/12/soft-launch/\">initially launched</a> on December 28, 2004, by <NAME> as a standalone project. During the first iteration’s heyday, it was popular within the WordPress community as a simple forum solution. In 2011, <a href=\"https://bbpress.org/blog/2011/09/bbpress-2-0-now-available/\">bbPress 2.0 relaunched</a> as a WordPress plugin with Jacoby as the lead developer.</p>\n\n\n\n<p>The bbPress team is primarily comprised of four part-time contributors with nearly no volunteers available for user testing. <NAME>, <NAME>, and <NAME> were the primary developers other than Jacoby behind version 2.6.</p>\n\n\n\n<p>“<NAME> deserves a mention for her contributions to 2.6 early on; she’s largely moved on but is wonderful,” said Jacoby. “Behind the scenes in the meta and forums teams are Samuel ‘Otto’ Wood, <NAME>, <NAME>, <NAME>ensen, and countless others who provide feedback and feature requests upstream based on how WordPress.org uses bbPress.”</p>\n\n\n\n<p>Contributors resolved 420 open tickets with 1,737 code commits over the multi-year span it took for version 2.6 to drop. The new version ships with hundreds of bug fixes and improvements. Its features include per-forum moderation, new platforms to import forum content from, and an Engagements API.</p>\n\n\n\n<p>The new Engagements API connects user IDs to the various types of content in bbPress, such as forums, topics, replies, and topic tags. This works as a sort of relationship system between users and any content they interact with on the forums. In previous versions of bbPress, all of this data was saved in the user metadata table.</p>\n\n\n\n<p>Per-forum moderation is a key feature for forums, but it has been one of the missing elements in bbPress. The new feature takes advantage of the Engagements API to connect user IDs to forum IDs. In turn, this allows site owners to create moderators for individual forums. This feature works in contrast to the existing “moderator” role in bbPress, which provides users global moderation powers.</p>\n\n\n\n<h2>Why the 6-Year Wait?</h2>\n\n\n\n<p>You could be forgiven for wondering if bbPress was all but dead. The last minor release happened in 2017 when the team dropped version 2.5.14. The same year, bbPress 2.6 was <a href=\"https://wptavern.com/bbpress-2-6-beta-3-likely-as-team-focuses-on-solid-data-migration-path\">headed toward a third beta</a> and even had a <a href=\"https://bbpress.org/forums/topic/bbpress-2-6-beta/\">few release candidates</a>.</p>\n\n\n\n<p>“There was not very much feedback on the 2.6 beta or RC, and I had just transitioned into my role at Sandhills Development,” said Jacoby. “I decided it was better to concentrate on doing a good job where I could make a direct impact on people’s lives, rather than have no idea if I was doing a good job at all with bbPress.”</p>\n\n\n\n<p>Jacoby did not want to release a potentially buggy version 2.6 and take on the support burden at the time. Doing so would have interfered with his responsibilities at his new job. “Younger me would have tried to do both, and failed at both,” said Jacoby.</p>\n\n\n\n<p><em>Why such a long wait between releases?</em> Most likely, it was for the same reason the <a href=\"https://twitter.com/bbPress/status/1194327563407122432\">Twitter announcement</a> got fewer than a couple of dozen likes and even fewer retweets. There is not much community engagement with the project. On the flip side, the bbPress team has not been active on social media or the project’s official blog in the past two years. </p>\n\n\n\n<p>Despite the lack of community engagement, bbPress is currently installed on over 300,000 sites. It runs the forums at WordPress.org, WordPress.com, CSS-Tricks, and other large communities. However, there is not much help sent back to the bbPress project from most places.</p>\n\n\n\n<p>“On WordPress.org, bbPress is just one piece of a very complex puzzle, and everything is mostly in maintenance mode all the time,” said Jacoby. “The forums team focuses on the needs of the forums and the meta team helps maintain the code itself, but WordPress has made it easier and more rewarding to contribute to; so contributors graduate up to WordPress core and rarely look back.”</p>\n\n\n\n<p>The idea behind switching bbPress 2.x to a WordPress plugin from its standalone roots was that it would be simpler for the larger WordPress community to pitch in. Jacoby said that contributions have improved since the pre-plugin era, but it has not helped enough. “There’s more attention and accolades with WordPress and Gutenberg than there are with the bb’s or GlotPress,” he said.</p>\n\n\n\n<p>One of bbPress’ biggest problems is the lack of resources. There is no commercial element to the plugin and no major companies are funding anyone to work on the project full time.</p>\n\n\n\n<p>“For an open-source project to be sustainable long-term, it needs to have an economy behind it,” said Jacoby. “Without an economy, what’s the real goal? Market share? Building better forum software? Those are not enough by itself when people need to make a living, and when less work with WooCommerce can help you earn a better living.”</p>\n\n\n\n<h2>The Future of Forums</h2>\n\n\n\n<p>Six years between major releases is a lifetime in technological years, plenty enough time for another company to claim the WordPress forum market share. However, bbPress managed to keep its crown as the most-used WordPress forum plugin during the wait. It does beg the question of whether companies or developers see a future for forums.</p>\n\n\n\n<p>With so many alternative options for user engagement, are forums a dying breed of software?</p>\n\n\n\n<p>“If forums are dying, it’s a slow death, according to the numbers anyway,” said Jacoby. “Chat apps like Slack and Discord (or Twitch and YouTube) are where people do forum-type stuff these days. Moderating your own community takes dedication and work, and if you’re going to do work, why not build an audience someplace else instead?”</p>\n\n\n\n<p>Jacoby has hope for the future, however. “I can imagine a bunch of reasons why forums seem unattractive,” he said, “but to me they are still what everyone circles back around to, just like having their own blogs!”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Nov 2019 20:17:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: WordCamp US 2020 Date and Location Announced, New Weekday Schedule\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95327\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://wptavern.com/wordcamp-us-2020-date-and-location-announced-new-weekday-schedule\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3389:\"<p>Mark your calendars, folks. WordCamp US 2020 will start on a…<em>Tuesday</em>.</p>\n\n\n\n<p>On November 11, the WordCamp US team announced that next year’s event will happen during the middle of the week, from October 27 through October 29. This is a change from the usual three-day weekend event. The time frame puts the event’s days on Tuesday, Wednesday, and Thursday. The yearly conference will remain in St. Louis, Missouri, in 2020.</p>\n\n\n\n<p>Those planning ahead can sign up for updates via the new <a href=\"https://2020.us.wordcamp.org/\">WordCamp US 2020 site</a>.</p>\n\n\n\n<p>Thus far, the switch away from a weekend has been met with generally positive <a href=\"https://twitter.com/WordCampUS/status/1193910076244996096\">responses via Twitter</a> and Slack. However, some people fear the schedule will not allow them to attend. </p>\n\n\n\n<p>The WordCamp US Twitter account cited date availability, Halloween, and giving the weekend back to attendees as the reason behind the change.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Number of reasons from date availability, letting folks get home for Halloween, and letting folks have a their weekend back on an out-of-town event</p>— WordCamp US (@WordCampUS) <a href=\"https://twitter.com/WordCampUS/status/1193912839725101056?ref_src=twsrc%5Etfw\">November 11, 2019</a></blockquote>\n</div>\n\n\n\n<p>For professionals in the WordPress space, this move will likely be a welcome change. They are often able to get extra time off from work, sometimes paid leave, to attend the event. The company they work for may even be funding their travel. For them, attending a WordCamp is a part of their work. </p>\n\n\n\n<p>The unfortunate side effect of attending a WordCamp over the weekend is that some attendees usually have to wake up for work on Monday morning after traveling back home on Sunday. Many are essentially working two weeks straight without any downtime. This helps pile on the problem of developer burnout. Rest days, time with friends and family, and getting away from code-related things is a part of a healthy work-life balance.</p>\n\n\n\n<p>Moving the event to the middle of the week should allow professionals to better maintain that balance.</p>\n\n\n\n<p>On the other hand, some attendees may find it harder to attend during the week. This is particularly true for WordCamp-goers who do not work with WordPress professionally. They may not be able to get the time off work.</p>\n\n\n\n<p>As a general rule, Americans tend to have little paid leave they can take advantage of throughout the year. The average worker in the private sector only gets <a href=\"https://www.cnbc.com/2018/07/05/heres-how-many-paid-vacation-days-the-typical-american-worker-gets-.html\">10 paid vacation days</a> per year after one year of employment. Those numbers rise the longer an employee sticks with a single company. The US does not guarantee paid leave for workers.</p>\n\n\n\n<p>Without support from their employer, some people may have to choose between using their paid time off to attend and keeping those days in reserve for family vacation or holidays.</p>\n\n\n\n<p>Unlike local WordCamps, the US conference is more of an industry event that sees professionals from across the US and the world. The move to a weekday schedule should be a nice change for many.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Nov 2019 21:27:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"WPTavern: WordPress 5.3 “Kirk” Released, Brings New Default Theme, Editor Improvements, and UI Tweaks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95290\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://wptavern.com/wordpress-5-3-kirk-released-brings-new-default-theme-editor-improvements-and-ui-tweaks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7758:\"<div class=\"wp-block-image\"><img /><NAME><br />Credit: <a href=\"https://www.flickr.com/photos/heiner1947/4485444348/in/photostream/\"><NAME></a> CC BY-SA 2.0</div>\n\n\n\n<p><a href=\"https://wordpress.org/news/2019/11/kirk/\">WordPress 5.3 “Kirk,”</a> named in honor American jazz musician <NAME>, is now available for download. The update includes a new default theme named Twenty Twenty, user interface improvements aimed at accessibility, and new block editor features.</p>\n\n\n\n<p>This release saw contributions from 645 volunteers, which is the largest contributor group ever for a WordPress release.</p>\n\n\n\n<p>The release was led by <a href=\"https://ma.tt\"><NAME></a>, <a href=\"https://profiles.wordpress.org/francina/\"><NAME></a>, and <a href=\"https://profiles.wordpress.org/davidbaumwald\"><NAME></a>. They were joined by the following contributors in supporting roles in getting version 5.3 released.</p>\n\n\n\n<ul><li>Editor Tech Lead – <a href=\"https://profiles.wordpress.org/youknowriad/\"><NAME></a></li><li>Editor Design Lead – <a href=\"https://profiles.wordpress.org/mapk/\"><NAME></a></li><li>Core Tech Lead – <a href=\"https://profiles.wordpress.org/azaozz/\"><NAME></a></li><li>Default Theme Design Lead – <a href=\"https://profiles.wordpress.org/anlino/\"><NAME></a></li><li>Default Theme Wrangler – <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a></li><li>Docs Coordinator – <a href=\"https://profiles.wordpress.org/justinahinon/\"><NAME></a></li><li>Accessibility Lead – <a href=\"https://profiles.wordpress.org/audrasjb/\">JB Audras</a></li><li>Marketing Lead – <a href=\"https://profiles.wordpress.org/mikerbg/\"><NAME></a></li><li>Media Focus Lead – <a href=\"https://profiles.wordpress.org/mikeschroder/\"><NAME></a></li></ul>\n\n\n\n<p>WordPress 5.2 had 84 million downloads before WordPress 5.3’s release.</p>\n\n\n\n<p>The PHP native JSON extension is now required for any site running WordPress 5.3 or later. This should not be an issue for the majority of users because the extension has been bundled with PHP by default since 2006. WordPress will output an error and cancel the update procedure if it detects the extension is missing. Users who are unable to update will need to contact their web hosts to have the extension enabled.</p>\n\n\n\n<h2>Twenty Twenty: New Default Theme</h2>\n\n\n\n<div class=\"wp-block-image\"><img />Screenshot of the Twenty Twenty WordPress theme.</div>\n\n\n\n<p>WordPress is getting a fresh coat of paint. <NAME> led the design team for the new <a href=\"https://wptavern.com/twenty-twenty-bundled-in-core-beta-features-overview\">Twenty Twenty</a> theme, which was a <a href=\"https://wptavern.com/first-look-at-twenty-twenty-new-wordpress-default-theme-based-on-chaplain\">fork of his original Chaplin theme</a>.</p>\n\n\n\n<p>The Twenty Twenty theme is completely geared toward creating content with the block editor with its bold and opinionated styling. It comes with a cover page template and has a custom color system designed to keep the site’s color contrast accessible.</p>\n\n\n\n<h2>Block Editor Features and Improvements</h2>\n\n\n\n<div class=\"wp-block-image\"><img />Nesting any block inside the Cover block.</div>\n\n\n\n<p>WordPress 5.3 includes features from the versions 5.4 – 6.5 of the Gutenberg plugin along with bug fixes and performance improvements from versions 6.6 and 6.7. For users who have not been running the plugin, they should see faster loading times and quicker responses from keystrokes.</p>\n\n\n\n<p>WP Tavern has covered every major release of the Gutenberg plugin that will be bundled in WordPress 5.3, except Gutenberg 5.6. Catch up on any features you missed with the following articles.</p>\n\n\n\n<ul><li><a href=\"https://wptavern.com/gutenberg-5-5-adds-new-group-block-for-nesting-child-blocks\">Gutenberg 5.5 Adds New Group Block for Nesting Child Blocks</a></li><li><a href=\"https://wptavern.com/gutenberg-5-7-adds-new-block-appender-for-group-and-columns-blocks\">Gutenberg 5.7 Adds New Block Appender for Group and Columns Blocks</a></li><li><a href=\"https://wptavern.com/gutenberg-5-8-released-with-prototype-of-new-block-based-widgets-screen\">Gutenberg 5.8 Released with Prototype of New Block-based Widgets Screen</a></li><li><a href=\"https://wptavern.com/gutenberg-5-9-brings-major-improvements-to-block-grouping-introduces-snackbar-notices\">Gutenberg 5.9 Brings Major Improvements to Block Grouping, Introduces Snackbar Notices</a></li><li><a href=\"https://wptavern.com/gutenberg-6-0-adds-layout-picker-to-columns-block\">Gutenberg 6.0 Adds Layout Picker to Columns Block </a></li><li><a href=\"https://wptavern.com/gutenberg-6-1-introduces-animation-to-block-moving-actions-adds-block-based-widgets-screen-experiments\">Gutenberg 6.1 Introduces Animation to Block Moving Actions, Adds Block-Based Widgets Screen Experiments</a></li><li><a href=\"https://wptavern.com/gutenberg-6-2-adds-nesting-capabilities-to-cover-media-text-blocks\">Gutenberg 6.2 Adds Nesting Capabilities to Cover, Media & Text Blocks</a></li><li><a href=\"https://wptavern.com/gutenberg-6-3-improves-accessibility-with-new-navigation-and-edit-modes\">Gutenberg 6.3 Improves Accessibility with New Navigation and Edit Modes</a></li><li><a href=\"https://wptavern.com/gutenberg-6-4-adds-new-typewriter-experience-cover-block-resizing-and-block-inserter-help-panel\">Gutenberg 6.4 Adds New Typewriter Experience, Cover Block Resizing, and Block Inserter Help Panel</a></li><li><a href=\"https://wptavern.com/gutenberg-6-5-adds-experimental-block-directory-search-to-inserter-and-new-social-links-block\">Gutenberg 6.5 Adds Experimental Block Directory Search to Inserter and New Social Links Block</a></li></ul>\n\n\n\n<h2>Other Core Features</h2>\n\n\n\n<p>Work toward <a href=\"https://wptavern.com/wordpress-5-3-improves-large-image-handling\">large image handling</a> went into the update. Instead of checking file sizes, images larger than 2,560 pixels are scaled down and used as the “full” image size. This change makes large images web ready and will significantly decrease file sizes for many users who upload images without optimizing them beforehand. This is common with mobile phone uploads. </p>\n\n\n\n<p>For those who prefer to maintain the original sizes of image uploads, which is sometimes the case with photography sites, grab the <a href=\"https://wordpress.org/plugins/disable-big-image-threshold/\">Disable “BIG Image” Threshold</a> plugin.</p>\n\n\n\n<p>The site health screen introduced in WordPress 5.2 has some user experience improvements, such as tweaking how the grading indicator works for clarity. WordPress site owners will also need to <a href=\"https://wptavern.com/wordpress-5-3-to-introduce-new-admin-email-verification-screen\">verify their admin email</a> every six months. This feature is to help make sure site recovery emails are being sent to the right place when an error occurs. It also lays the groundwork for future features that may build upon it.</p>\n\n\n\n<h2>Developer Changes</h2>\n\n\n\n<p>Developers should read the full <a href=\"https://make.wordpress.org/core/2019/10/17/wordpress-5-3-field-guide/\">WordPress 5.3 field guide</a> to make sure none of the changes affect their plugins or themes. Some of the changes include the following.</p>\n\n\n\n<ul><li>Full support for PHP 7.4.</li><li>Improved date/time handling.</li><li>Robots meta tag now used for discouraging search engines from listing a site.</li><li>New meta key comparison operators added.</li><li>Integers are no longer allowed for nav menu slugs.</li><li><code>wp_die()</code> now allows custom HTML.</li></ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Nov 2019 22:12:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"WordPress.org blog: WordPress 5.3 “Kirk”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7684\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/news/2019/11/kirk/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:56355:\"<div class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2019/11/5.3-album-cover.png?resize=632%2C632&ssl=1\" alt=\"Album cover for WordPress 5.3 Kirk, showcasing a duotone red/cream Rahsaan Roland Kirk playing the saxophone on a red background.\" class=\"wp-image-7710\" /></div>\n\n\n\n<p class=\"has-text-color has-background\">Introducing our most refined user experience with the improved block editor in WordPress 5.3! Named “Kirk” in honour of jazz multi-instrumentalist <NAME>, the latest and greatest version of WordPress is available for <a href=\"https://wordpress.org/download/\">download</a> or update in your dashboard.</p>\n\n\n\n<img src=\"https://i0.wp.com/wordpress.org/news/files/2019/11/divider.png?resize=632%2C159&ssl=1\" alt=\"\" class=\"wp-image-7721\" />\n\n\n\n<p><strong>5.3 expands and refines the block editor</strong> with more intuitive <strong>interactions</strong> and improved <strong>accessibility</strong>. New features in the editor increase design freedoms, provide additional layout options and style variations to allow designers more control over the look of a site.</p>\n\n\n\n<p>This release also introduces the <strong>Twenty Twenty theme</strong> giving the user more design flexibility and integration with the block editor. Creating beautiful web pages and advanced layouts has never been easier.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Block Editor Improvements</h2>\n\n\n\n\n\n\n\n<p>This enhancement-focused update introduces over 150 new features and usability improvements, including improved large image support for uploading non-optimized, high-resolution pictures taken from your smartphone or other high-quality cameras. Combined with larger default image sizes, pictures always look their best.</p>\n\n\n\n<p>Accessibility improvements include the integration of block editor styles in the admin interface. These improved styles fix many accessibility issues: color contrast on form fields and buttons, consistency between editor and admin interfaces, new snackbar notices, standardizing to the default WordPress color scheme, and the introduction of Motion to make interacting with your blocks feel swift and natural. </p>\n\n\n\n<p>For people who use a keyboard to navigate the dashboard, the block editor now has a Navigation mode. This lets you jump from block to block without tabbing through every part of the block controls.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Expanded Design Flexibility</h2>\n\n\n\n\n\n\n\n<p>WordPress 5.3 adds even more robust tools for creating amazing designs.</p>\n\n\n\n<ul><li>The new Group block lets you easily divide your page into colorful sections.</li><li>The Columns block now supports fixed column widths.</li><li>The new predefined layouts make it a cinch to arrange content into advanced designs.</li><li>Heading blocks now offer controls for text and background color.</li><li>Additional style options allow you to set your preferred style for any block that supports this feature.</li></ul>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Introducing Twenty Twenty</h2>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2019/11/twentytwenty-desktop.png?resize=632%2C626&ssl=1\" alt=\"A desktop preview of the Twenty Twenty theme, showing both the front-end and the editor view.\" class=\"wp-image-7686\" /></div>\n\n\n\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-top\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2019/11/twentytwenty-mobile.png?w=632&ssl=1\" alt=\"A mobile image of the Twenty Twenty theme, over a decorative backgorund of brown-grey bars.\" class=\"wp-image-7714\" /><div class=\"wp-block-media-text__content\">\n<p>As the block editor celebrates its first birthday, we are proud that Twenty Twenty is designed with flexibility at its core. Show off your services or products with a combination of columns, groups, and media blocks. Set your content to wide or full alignment for dynamic and engaging layouts. Or let your thoughts be the star with a centered content column!</p>\n\n\n\n<p class=\"has-normal-font-size\">As befits a theme called Twenty Twenty, clarity and readability is also a big focus. The theme includes the typeface <a href=\"https://rsms.me/inter/\">Inter</a>, designed by <NAME>. Inter comes in a Variable Font version, a first for default themes, which keeps load times short by containing all weights and styles of Inter in just two font files.</p>\n</div></div>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Improvements for Everyone</h2>\n\n\n\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2019/11/Rotate.png?w=632&ssl=1\" alt=\"An icon showing an arrow rotating a square.\" class=\"wp-image-7731\" /><div class=\"wp-block-media-text__content\">\n<h3>Automatic Image Rotation</h3>\n\n\n\n<p>Your images will be correctly rotated upon upload according to the embedded orientation data. This feature was first proposed nine years ago and made possible through the perseverance of many dedicated contributors.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2019/11/Health.png?w=632&ssl=1\" alt=\"A plus in a square, indicating health.\" class=\"wp-image-7732\" /><div class=\"wp-block-media-text__content\">\n<h3>Improved Site Health Checks</h3>\n\n\n\n<p>The improvements introduced in 5.3 make it even easier to identify issues. Expanded recommendations highlight areas that may need troubleshooting on your site from the Health Check screen.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2019/11/Email.png?w=632&ssl=1\" alt=\"A email icon.\" class=\"wp-image-7733\" /><div class=\"wp-block-media-text__content\">\n<h3>Admin Email Verification</h3>\n\n\n\n<p>You’ll now be periodically asked to confirm that your admin email address is up to date when you log in as an administrator. This reduces the chance of getting locked out of your site if you change your email address.</p>\n</div></div>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>For Developers</h2>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\">\n<h3>Date/Time Component Fixes</h3>\n\n\n\n<p>Developers can now work with <a href=\"https://make.wordpress.org/core/2019/09/23/date-time-improvements-wp-5-3/\">dates and timezones</a> in a more reliable way. Date and time functionality has received a number of new API functions for unified timezone retrieval and PHP interoperability, as well as many bug fixes.</p>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<h3>PHP 7.4 Compatibility</h3>\n\n\n\n<p>WordPress 5.3 aims to fully support PHP 7.4. This release contains <a href=\"https://make.wordpress.org/core/2019/10/11/wordpress-and-php-7-4/\">multiple changes</a> to remove deprecated functionality and ensure compatibility. WordPress continues to encourage all users to run the latest and greatest versions of PHP.</p>\n</div>\n</div>\n\n\n\n<img src=\"https://i0.wp.com/wordpress.org/news/files/2019/11/divider.png?resize=632%2C159&ssl=1\" alt=\"\" class=\"wp-image-7721\" />\n\n\n\n<h2>The Squad</h2>\n\n\n\n<p>This release was led by <a href=\"http://ma.tt/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/francina\"><NAME></a>, and <a href=\"https://dream-encode.com/blog/\"><NAME></a>. They were enthusiastically supported by a large release squad:</p>\n\n\n\n<ul><li><strong>Editor Tech</strong>: <NAME> (<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://profiles.wordpress.org/youknowriad/\"><strong>@youknowriad</strong></a>)</li><li><strong>Editor Design</strong>: <NAME> (<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://profiles.wordpress.org/mapk/\"><strong>@mapk</strong></a>)</li><li><strong>Core Tech</strong>: <NAME> (<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://profiles.wordpress.org/azaozz/\"><strong>@azaozz</strong></a>)</li><li><strong>Docs Coordinator</strong>: <NAME> (<a href=\"https://profiles.wordpress.org/justinahinon/\"><strong>@justinahinon</strong></a>)</li><li><strong>Marketing/Release Comms</strong>: <NAME> (<a href=\"https://profiles.wordpress.org/mikerbg/\"><strong>@mikerbg</strong></a>)</li><li><strong>Media/Uploader</strong>: <NAME> (<a href=\"https://profiles.wordpress.org/mikeschroder/\"><strong>@mikeschroder</strong></a>)</li><li><strong>Accessibility</strong>: JB Audras (<a href=\"https://profiles.wordpress.org/audrasjb/\"><strong>@audrasjb</strong></a>)</li><li><strong>Default Theme</strong> <strong>Wrangler</strong>: Ian Belanger (<a href=\"https://profiles.wordpress.org/ianbelanger/\"><strong>@ianbelanger</strong></a>)</li><li><strong>Default Theme Designer</strong>: <NAME> (<a href=\"https://profiles.wordpress.org/anlino/\"><strong>@anlino</strong></a>)</li></ul>\n\n\n\n<p>The squad was joined throughout the twelve week release cycle by 645 generous volunteer contributors (our largest group of contributors to date) who collectively fixed 658 bugs.</p>\n\n\n\n<p>Put on a Rahsaan Rol<NAME> playlist, click that update button (or <a href=\"https://wordpress.org/download/\">download it directly</a>), and check the profiles of the fine folks that helped:</p>\n\n\n<a href=\"https://profiles.wordpress.org/123host/\">123host</a>, <a href=\"https://profiles.wordpress.org/1994rstefan/\">1994rstefan</a>, <a href=\"https://profiles.wordpress.org/5hel2l2y/\">5hel2l2y</a>, <a href=\"https://profiles.wordpress.org/irsdl/\">@irsdl</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jorbin/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/aksdvp/\">Aashish S</a>, <a href=\"https://profiles.wordpress.org/abhijitrakas/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/abrightclearweb/\">abrightclearweb</a>, <a href=\"https://profiles.wordpress.org/acalfieri/\">acalfieri</a>, <a href=\"https://profiles.wordpress.org/acosmin/\">acosmin</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/adamsoucie/\"><NAME>cie</a>, <a href=\"https://profiles.wordpress.org/adhitya03/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ahdeubzer/\">ahdeubzer</a>, <a href=\"https://profiles.wordpress.org/mrahmadawais/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ajayghaghretiya1/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ajitbohra/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ajlende/\">ajlende</a>, <a href=\"https://profiles.wordpress.org/atachibana/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/albertomake/\">albertomake</a>, <a href=\"https://profiles.wordpress.org/xknown/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/xavortm/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/alexclassroom/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/alexsanford1/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/xyfi/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/xel1045/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/alexvorn2/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/alexeyskr/\">alexeyskr</a>, <a href=\"https://profiles.wordpress.org/alextran/\">alextran</a>, <a href=\"https://profiles.wordpress.org/ayubi/\">Ali Ayubi</a>, <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a>, <a href=\"https://profiles.wordpress.org/allendav/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/alvarogois/\"><NAME> Santos</a>, <a href=\"https://profiles.wordpress.org/arush/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/amolv/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/anlino/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/afercia/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/andg/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/agengineering/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/andreamiddleton/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/abrain/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/andraganescu/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/aduth/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nacin/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/anevins/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/azaozz/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/andrewtaylor-1/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/rarst/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nosolosw/\"><NAME>iro</a>, <a href=\"https://profiles.wordpress.org/afragen/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/andizer/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/angelagibson/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/rilwis/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/anischarolia/\">anischarolia</a>, <a href=\"https://profiles.wordpress.org/antpb/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/atimmer/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/apermo/\">Apermo</a>, <a href=\"https://profiles.wordpress.org/arafat/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/arena/\">arena</a>, <a href=\"https://profiles.wordpress.org/aristath/\"><NAME>opoulos</a>, <a href=\"https://profiles.wordpress.org/arunsathiya/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/artisticasad/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/asadkn/\">asadkn</a>, <a href=\"https://profiles.wordpress.org/mrasharirfan/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ashwinpc/\">ashwinpc</a>, <a href=\"https://profiles.wordpress.org/wpboss/\">Aslam Shekh</a>, <a href=\"https://profiles.wordpress.org/atlasmahesh/\">atlasmahesh</a>, <a href=\"https://profiles.wordpress.org/au87/\">au87</a>, <a href=\"https://profiles.wordpress.org/aubreypwd/\">Aubrey Portwood</a>, <a href=\"https://profiles.wordpress.org/augustuswm/\">augustuswm</a>, <a href=\"https://profiles.wordpress.org/aurooba/\">Aurooba Ahmed</a>, <a href=\"https://profiles.wordpress.org/avinapatel/\">Avina Patel</a>, <a href=\"https://profiles.wordpress.org/aksl95/\">Axel DUCORON</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/backermann1978/\">backermann1978</a>, <a href=\"https://profiles.wordpress.org/b-07/\">Bappi</a>, <a href=\"https://profiles.wordpress.org/toszcze/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/pixolin/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/bfintal/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/benjamin_zekavica/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/bennemann/\">bennemann</a>, <a href=\"https://profiles.wordpress.org/bgermann/\">bgermann</a>, <a href=\"https://profiles.wordpress.org/bhaktirajdev/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/bibliofille/\">bibliofille</a>, <a href=\"https://profiles.wordpress.org/biranit/\">Biranit</a>, <a href=\"https://profiles.wordpress.org/birgire/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/bitcomplex/\">bitcomplex</a>, <a href=\"https://profiles.wordpress.org/bjornw/\">BjornW</a>, <a href=\"https://profiles.wordpress.org/boblinthorst/\">boblinthorst</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bor0/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/crazyjaco/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/bradleyt/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/kraftbj/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/brentswisher/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/bronsonquick/\">Bronson Quick</a>, <a href=\"https://profiles.wordpress.org/bsetiawan88/\">bsetiawan88</a>, <a href=\"https://profiles.wordpress.org/burhandodhy/\">Burhan Nasir</a>, <a href=\"https://profiles.wordpress.org/cbravobernal/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/poena/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/cdog/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/cathibosco1/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/chandrapatel/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/caercam/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/ketuchetan/\">Chetan Satasiya</a>, <a href=\"https://profiles.wordpress.org/blogginglife/\">Chico</a>, <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a>, <a href=\"https://profiles.wordpress.org/chrico/\">ChriCo</a>, <a href=\"https://profiles.wordpress.org/aprea/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/christian1012/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/needle/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/lovememore/\">christianoliff</a>, <a href=\"https://profiles.wordpress.org/christophherr/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/cleancoded/\">cleancoded</a>, <a href=\"https://profiles.wordpress.org/cmagrin/\">cmagrin</a>, <a href=\"https://profiles.wordpress.org/compilenix/\">CompileNix</a>, <a href=\"https://profiles.wordpress.org/salzano/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/courtney0burton/\">courtney0burton</a>, <a href=\"https://profiles.wordpress.org/cristianozanca/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/littlebigthing/\">Csaba (LittleBigThings)</a>, <a href=\"https://profiles.wordpress.org/dswebsme/\">D.S. Webster</a>, <a href=\"https://profiles.wordpress.org/daleharrison/\">daleharrison</a>, <a href=\"https://profiles.wordpress.org/danmicamediacom/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/goodevilgenius/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/danbuk/\">DanBUK</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/redsweater/\"><NAME> (Red Sweater)</a>, <a href=\"https://profiles.wordpress.org/danieltj/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/diddledan/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/talldanwp/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/danieliser/\">danieliser</a>, <a href=\"https://profiles.wordpress.org/daniloercoli/\">daniloercoli</a>, <a href=\"https://profiles.wordpress.org/dvankooten/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nerrad/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/darthhexx/\">darthhexx</a>, <a href=\"https://profiles.wordpress.org/deapness/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/get_dave/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/drw158/\">Dave Whitley</a>, <a href=\"https://profiles.wordpress.org/davetgreen/\">davetgreen</a>, <a href=\"https://profiles.wordpress.org/davilera/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/davidanderson/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/david.binda/\"><NAME>ovec</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/daveshine/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/dlh/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/daviedr/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/dshanske/\">David Shanske</a>, <a href=\"https://profiles.wordpress.org/daxelrod/\">daxelrod</a>, <a href=\"https://profiles.wordpress.org/dkarfa/\">Debabrata Karfa</a>, <a href=\"https://profiles.wordpress.org/dennis_f/\">Deni</a>, <a href=\"https://profiles.wordpress.org/dehisok/\"><NAME>sky</a>, <a href=\"https://profiles.wordpress.org/denisco/\"><NAME>skiy</a>, <a href=\"https://profiles.wordpress.org/wpdennis/\">Dennis</a>, <a href=\"https://profiles.wordpress.org/dionysous/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/dmsnell/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/dsifford/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/derweili/\">derweili</a>, <a href=\"https://profiles.wordpress.org/dfangstrom/\">dfangstrom</a>, <a href=\"https://profiles.wordpress.org/dharmin16/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/dhavalkasvala/\">Dhaval kasavala</a>, <a href=\"https://profiles.wordpress.org/dhuyvetter/\">dhuyvetter</a>, <a href=\"https://profiles.wordpress.org/dianeco/\">Diane Co</a>, <a href=\"https://profiles.wordpress.org/diedeexterkate/\">DiedeExterkate</a>, <a href=\"https://profiles.wordpress.org/diego-la-monica/\">Diego La Monica</a>, <a href=\"https://profiles.wordpress.org/digitalapps/\">digitalapps</a>, <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/odminstudios/\">Dima</a>, <a href=\"https://profiles.wordpress.org/dingo_d/\">dingo-d</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dency/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/drewapicture/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/dukex/\">Dukex</a>, <a href=\"https://profiles.wordpress.org/dushanthi/\">dushanthi</a>, <a href=\"https://profiles.wordpress.org/seedsca/\">EcoTechie</a>, <a href=\"https://profiles.wordpress.org/ediamin/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/etoledom/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/iseulde/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/elliotcondon/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/codex-m/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/edocev/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/emiluzelac/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/epiqueras/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nrqsnchz/\"><NAME>ánchez</a>, <a href=\"https://profiles.wordpress.org/erikkroes/\">erikkroes</a>, <a href=\"https://profiles.wordpress.org/estelaris/\">estelaris</a>, <a href=\"https://profiles.wordpress.org/evalarumbe/\">evalarumbe</a>, <a href=\"https://profiles.wordpress.org/faazshift/\">faazshift</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy/\"><NAME>ägy</a>, <a href=\"https://profiles.wordpress.org/fblaser/\">fblaser</a>, <a href=\"https://profiles.wordpress.org/felipeelia/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/flixos90/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/fencer04/\">Fencer04</a>, <a href=\"https://profiles.wordpress.org/flipkeijzer/\">flipkeijzer</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/foysalremon/\">Foysal Remon</a>, <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\"><NAME>der</a>, <a href=\"https://profiles.wordpress.org/voldemortensen/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/garyj/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/pento/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/guddu1315/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/gchtr/\">gchtr</a>, <a href=\"https://profiles.wordpress.org/soulseekah/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/loyaltymanufaktur/\">Gesundheit Bewegt GmbH</a>, <a href=\"https://profiles.wordpress.org/sachyya-sachet/\">ghoul</a>, <a href=\"https://profiles.wordpress.org/girlieworks/\">girlieworks</a>, <a href=\"https://profiles.wordpress.org/glauberglauber/\">glauberglauber</a>, <a href=\"https://profiles.wordpress.org/hometowntrailers/\">Glenn</a>, <a href=\"https://profiles.wordpress.org/gravityview/\">GravityView</a>, <a href=\"https://profiles.wordpress.org/gregsullivan/\">gregsullivan</a>, <a href=\"https://profiles.wordpress.org/gziolo/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/gwwar/\">gwwar</a>, <a href=\"https://profiles.wordpress.org/hardeepasrani/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/thakkarhardik/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/hardipparmar/\">hardipparmar</a>, <a href=\"https://profiles.wordpress.org/hareesh-pillai/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/hareesh pillai/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/harryfear/\">harryfear</a>, <a href=\"https://profiles.wordpress.org/harshbarach/\">harshbarach</a>, <a href=\"https://profiles.wordpress.org/haszari/\">haszari</a>, <a href=\"https://profiles.wordpress.org/hesyifei/\">He Yifei</a>, <a href=\"https://profiles.wordpress.org/helen/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/henrywright/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/herbmiller/\">herbmiller</a>, <a href=\"https://profiles.wordpress.org/herregroen/\">herregroen</a>, <a href=\"https://profiles.wordpress.org/hirofumi2012/\">hirofumi2012</a>, <a href=\"https://profiles.wordpress.org/hkandulla/\">HKandulla</a>, <a href=\"https://profiles.wordpress.org/howdy_mcgee/\">Howdy_McGee</a>, <a href=\"https://profiles.wordpress.org/hoythan/\">hoythan</a>, <a href=\"https://profiles.wordpress.org/hlashbrooke/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianmjones/\">ianmjones</a>, <a href=\"https://profiles.wordpress.org/zinigor/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/imath/\">imath</a>, <a href=\"https://profiles.wordpress.org/gsayed786/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/intimez/\">intimez</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (<NAME>)</a>, <a href=\"https://profiles.wordpress.org/iqbalbary/\">iqbalbary</a>, <a href=\"https://profiles.wordpress.org/ireneyoast/\">I<NAME></a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ismailelkorchi/\">Is<NAME>i</a>, <a href=\"https://profiles.wordpress.org/jdgrimes/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jagirbaheshwp/\">jagirbaheshwp</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\"><NAME>urlock</a>, <a href=\"https://profiles.wordpress.org/jalpa1984/\">Jalpa Panchal</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jameslnewell/\">jameslnewell</a>, <a href=\"https://profiles.wordpress.org/janak007/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jankimoradiya/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/janwoostendorp/\">janw.oostendorp</a>, <a href=\"https://profiles.wordpress.org/jared_smith/\">jared_smith</a>, <a href=\"https://profiles.wordpress.org/jarocks/\">jarocks</a>, <a href=\"https://profiles.wordpress.org/jarretc/\">Jarret</a>, <a href=\"https://profiles.wordpress.org/javeweb/\">jave.web</a>, <a href=\"https://profiles.wordpress.org/javorszky/\">javorszky</a>, <a href=\"https://profiles.wordpress.org/jayswadas/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/iamjaydip/\">Jaydip</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jfarthing84/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jeichorn/\">jeichorn</a>, <a href=\"https://profiles.wordpress.org/jenblogs4u/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jenkoian/\">jenkoian</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/engelen/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/luminuu/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jffng/\">jffng</a>, <a href=\"https://profiles.wordpress.org/jikamens/\">jikamens</a>, <a href=\"https://profiles.wordpress.org/jitendrabanjara1991/\">jitendrabanjara1991</a>, <a href=\"https://profiles.wordpress.org/jkitchen/\">jkitchen</a>, <a href=\"https://profiles.wordpress.org/jmmathc/\">jmmathc</a>, <a href=\"https://profiles.wordpress.org/joakimsilfverberg/\">joakimsilfverberg</a>, <a href=\"https://profiles.wordpress.org/jobthomas/\">Job</a>, <a href=\"https://profiles.wordpress.org/jodamo5/\">jodamo5</a>, <a href=\"https://profiles.wordpress.org/joedolson/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/joehoyle/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/joemcgill/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/joen/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/johnbillion/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/johnregan3/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jojotjebaby/\">jojotjebaby</a>, <a href=\"https://profiles.wordpress.org/jrchamp/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jond/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/desrosj/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jg-visual/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/joostdevalk/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/koke/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/josephscott/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/shelob9/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/joshuanoyce/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/joshuawold/\">JoshuaWold</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/jsnajdr/\">jsnajdr</a>, <a href=\"https://profiles.wordpress.org/juanfra/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/juiiee8487/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jrf/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/juliobox/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/junktrunk/\">junktrunk</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/greenshady/\"><NAME>lock</a>, <a href=\"https://profiles.wordpress.org/kadamwhite/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/kafleg/\">kafleg</a>, <a href=\"https://profiles.wordpress.org/trepmal/\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/kakshak/\">Kakshak Kalaria</a>, <a href=\"https://profiles.wordpress.org/kamrankhorsandi/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/leprincenoir/\">Kantari Samy</a>, <a href=\"https://profiles.wordpress.org/karlgroves/\">karlgroves</a>, <a href=\"https://profiles.wordpress.org/katielgc/\">katielgc</a>, <a href=\"https://profiles.wordpress.org/kbrownkd/\">kbrownkd</a>, <a href=\"https://profiles.wordpress.org/ryelle/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/kellychoffman/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/kerfred/\">Kerfred</a>, <a href=\"https://profiles.wordpress.org/kingkero/\">kero</a>, <a href=\"https://profiles.wordpress.org/ketanumretiya030/\">ketanumretiya030</a>, <a href=\"https://profiles.wordpress.org/kevinkovadia/\">kevIN kovaDIA</a>, <a href=\"https://profiles.wordpress.org/killerbishop/\">killerbishop</a>, <a href=\"https://profiles.wordpress.org/killua99/\">killua99</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/kokers/\">kokers</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a>, <a href=\"https://profiles.wordpress.org/kuus/\">kuus</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/lbenicio/\">lbenicio</a>, <a href=\"https://profiles.wordpress.org/leogermani/\">leogermani</a>, <a href=\"https://profiles.wordpress.org/leonblade/\">leonblade</a>, <a href=\"https://profiles.wordpress.org/lessbloat/\">lessbloat</a>, <a href=\"https://profiles.wordpress.org/lllor/\">lllor</a>, <a href=\"https://profiles.wordpress.org/lordlod/\">lordlod</a>, <a href=\"https://profiles.wordpress.org/loreleiaurora/\">LoreleiAurora</a>, <a href=\"https://profiles.wordpress.org/luan-ramos/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/luciano-croce/\">luciano-croce</a>, <a href=\"https://profiles.wordpress.org/luigipulcini/\">luigipulcini</a>, <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a>, <a href=\"https://profiles.wordpress.org/wpfed/\">Luke</a>, <a href=\"https://profiles.wordpress.org/lukecarbis/\">Luke Carbis</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/m1tk00/\">m1tk00</a>, <a href=\"https://profiles.wordpress.org/maartenleenders/\">maartenleenders</a>, <a href=\"https://profiles.wordpress.org/palmiak/\"><NAME>owski</a>, <a href=\"https://profiles.wordpress.org/mahesh901122/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/majemedia/\">Maje Media LLC</a>, <a href=\"https://profiles.wordpress.org/malthert/\">malthert</a>, <a href=\"https://profiles.wordpress.org/manooweb/\">manooweb</a>, <a href=\"https://profiles.wordpress.org/manuelaugustin/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/manzoorwanijk/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/marcguay/\">MarcGuay</a>, <a href=\"https://profiles.wordpress.org/iworks/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/marcomartins/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/marcosalexandre/\">MarcosAlexandre</a>, <a href=\"https://profiles.wordpress.org/mkaz/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/marekhrabe/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/chaton666/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/maguiar/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nofearinc/\"><NAME>hev</a>, <a href=\"https://profiles.wordpress.org/clorith/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mdwolinski/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/mapk/\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/markoheijnen/\"><NAME>nen</a>, <a href=\"https://profiles.wordpress.org/mspatovaliyski/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/splitti/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/m-e-h/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/marybaum/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/masummdar/\">masummdar</a>, <a href=\"https://profiles.wordpress.org/matstars/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mat-lipe/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/iceable/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mattchowning/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mboynes/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mattheu/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/matthiasthiel/\">matthias.thiel</a>, <a href=\"https://profiles.wordpress.org/mattyrob/\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/matveb/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/maximeculea/\">Maxime Culea</a>, <a href=\"https://profiles.wordpress.org/maximejobin/\">Maxime Jobin</a>, <a href=\"https://profiles.wordpress.org/maxme/\">maxme</a>, <a href=\"https://profiles.wordpress.org/mchavezi/\">mchavezi</a>, <a href=\"https://profiles.wordpress.org/immeet94/\">Meet Makadia</a>, <a href=\"https://profiles.wordpress.org/mehidi258/\">Mehidi Hassan</a>, <a href=\"https://profiles.wordpress.org/mehulkaklotar/\">Mehul Kaklotar</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/melinedo/\"><NAME>wonyi</a>, <a href=\"https://profiles.wordpress.org/meloniq/\">meloniq</a>, <a href=\"https://profiles.wordpress.org/michael-arestad/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mbabker/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mnelson4/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/donmhico/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/michelweimerskirch/\">michel.weimerskirch</a>, <a href=\"https://profiles.wordpress.org/michielatyoast/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mcsf/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/miguelvieira/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mihaiiceyro/\">mihaiiceyro</a>, <a href=\"https://profiles.wordpress.org/miinasikk/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/simison/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mauteri/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mdgl/\">Mike Glendinning</a>, <a href=\"https://profiles.wordpress.org/mikehansenme/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mikejolley/\">Mike Jolley</a>, <a href=\"https://profiles.wordpress.org/mikerbg/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mikengarrett/\">MikeNGarrett</a>, <a href=\"https://profiles.wordpress.org/dimadin/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mobeen-abdullah/\">Mobeen Abdullah</a>, <a href=\"https://profiles.wordpress.org/mohsinrasool/\">Mohs<NAME>asool</a>, <a href=\"https://profiles.wordpress.org/monikarao/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/boemedia/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/gwendydd/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mor10/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/man4toman/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mt8biz/\">moto hachi ( mt8.biz )</a>, <a href=\"https://profiles.wordpress.org/mppfeiffer/\">mppfeiffer</a>, <a href=\"https://profiles.wordpress.org/mrmadhat/\">mrmadhat</a>, <a href=\"https://profiles.wordpress.org/msaggiorato/\">msaggiorato</a>, <a href=\"https://profiles.wordpress.org/mtias/\">mtias</a>, <a href=\"https://profiles.wordpress.org/phpdocs/\">Muhammad Afzal</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">M<NAME>al</a>, <a href=\"https://profiles.wordpress.org/munyagu/\">munyagu</a>, <a href=\"https://profiles.wordpress.org/mzorz/\">mzorz</a>, <a href=\"https://profiles.wordpress.org/nadir/\">nadir</a>, <a href=\"https://profiles.wordpress.org/nfmohit/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/naveenkharwar/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nayana123/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/greatislander/\">Ned Zimmerman</a>, <a href=\"https://profiles.wordpress.org/neelpatel7295/\">Ne<NAME></a>, <a href=\"https://profiles.wordpress.org/nextendweb/\">Nextendweb</a>, <a href=\"https://profiles.wordpress.org/niallkennedy/\">Ni<NAME>ennedy</a>, <a href=\"https://profiles.wordpress.org/nickdaugherty/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/celloexpressions/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nickylimjj/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nicolad/\">nicolad</a>, <a href=\"https://profiles.wordpress.org/rahe/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nielsdeblaauw/\"><NAME>aauw</a>, <a href=\"https://profiles.wordpress.org/nielslange/\">Niels Lange</a>, <a href=\"https://profiles.wordpress.org/nikschavan/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nikolastoqnow/\">nikolastoqnow</a>, <a href=\"https://profiles.wordpress.org/niq1982/\">Niku Hietanen</a>, <a href=\"https://profiles.wordpress.org/rabmalin/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nishitlangaliya/\">Nishit Langaliya</a>, <a href=\"https://profiles.wordpress.org/kailanitish90/\">Nitish Kaila</a>, <a href=\"https://profiles.wordpress.org/nmenescardi/\">nmenescardi</a>, <a href=\"https://profiles.wordpress.org/noahtallen/\">noahtallen</a>, <a href=\"https://profiles.wordpress.org/notnownikki/\">notnownikki</a>, <a href=\"https://profiles.wordpress.org/hideokamoto/\">Okamoto Hidetaka</a>, <a href=\"https://profiles.wordpress.org/lindstromer/\">Olaf Lindström</a>, <a href=\"https://profiles.wordpress.org/moonomo/\">Omaar Osmaan</a>, <a href=\"https://profiles.wordpress.org/omarreiss/\">O<NAME></a>, <a href=\"https://profiles.wordpress.org/onlanka/\">onlanka</a>, <a href=\"https://profiles.wordpress.org/oxyc/\">oxyc</a>, <a href=\"https://profiles.wordpress.org/ozmatflc/\">ozmatflc</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">Paragon Initiative Enterprises</a>, <a href=\"https://profiles.wordpress.org/paresh07/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pas<NAME>ler</a>, <a href=\"https://profiles.wordpress.org/casiepa/\">Pascal Casier</a>, <a href=\"https://profiles.wordpress.org/patilvikasj/\">patilvikasj</a>, <a href=\"https://profiles.wordpress.org/patrelentlesstechnologycom/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/pbearne/\"><NAME>ne</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/paulschreiber/\"><NAME>iber</a>, <a href=\"https://profiles.wordpress.org/bassgang/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/pedromendonca/\"><NAME>ça</a>, <a href=\"https://profiles.wordpress.org/pputzer/\">pepe</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/phillipjohn/\">PhillipJohn</a>, <a href=\"https://profiles.wordpress.org/pierlo/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/pikamander2/\">pikamander2</a>, <a href=\"https://profiles.wordpress.org/decrecementofeliz/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/wppinar/\">Pinar Olguc</a>, <a href=\"https://profiles.wordpress.org/powerbuoy/\">powerbuoy</a>, <a href=\"https://profiles.wordpress.org/promz/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/pratikthink/\">Pratik</a>, <a href=\"https://profiles.wordpress.org/pratikkry/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/freewebmentor/\">Prem Tiwari</a>, <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/priyankkpatel/\">Priyank Patel</a>, <a href=\"https://profiles.wordpress.org/quantumstate/\">Quantumstate</a>, <a href=\"https://profiles.wordpress.org/raajtram/\">Raaj Trambadia</a>, <a href=\"https://profiles.wordpress.org/raamdev/\">Raam Dev</a>, <a href=\"https://profiles.wordpress.org/raboodesign/\">raboodesign</a>, <a href=\"https://profiles.wordpress.org/rahulvaza/\">R<NAME>aza</a>, <a href=\"https://profiles.wordpress.org/superpoincare/\">Ramanan</a>, <a href=\"https://profiles.wordpress.org/ramiy/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ramon-fincken/\">ramon fincken</a>, <a href=\"https://profiles.wordpress.org/rclations/\">RC Lations</a>, <a href=\"https://profiles.wordpress.org/rebasaurus/\">rebasaurus</a>, <a href=\"https://profiles.wordpress.org/reikodd/\">ReikoDD</a>, <a href=\"https://profiles.wordpress.org/remcotolsma/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/retrofox/\">retrofox</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/rockfire/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/riddhiehta02/\">R<NAME></a>, <a href=\"https://profiles.wordpress.org/rbrishabh/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/noisysocks/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/miqrogroove/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/robi-bobi/\"><NAME>ov</a>, <a href=\"https://profiles.wordpress.org/rogueresearch/\">rogueresearch</a>, <a href=\"https://profiles.wordpress.org/rconde/\">Roi Conde</a>, <a href=\"https://profiles.wordpress.org/ronakganatra/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/raubvogel/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/karthost/\">Roy Randolph</a>, <a href=\"https://profiles.wordpress.org/roytanck/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ryan/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ryankienstra/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/rmccue/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/welcher/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/sebastienserre/\">Sé<NAME></a>, <a href=\"https://profiles.wordpress.org/samgordondev/\">samgordondev</a>, <a href=\"https://profiles.wordpress.org/sasiddiqui/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/solarissmoke/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/otto42/\"><NAME> (Otto)</a>, <a href=\"https://profiles.wordpress.org/progremzion/\">Sanket Mehta</a>, <a href=\"https://profiles.wordpress.org/tinkerbelly/\">sarah semark</a>, <a href=\"https://profiles.wordpress.org/sarathar/\">sarath.ar</a>, <a href=\"https://profiles.wordpress.org/saskak/\">saskak</a>, <a href=\"https://profiles.wordpress.org/sbardian/\">sbardian</a>, <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/assassinateur/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/vjik/\">Ser<NAME></a>, <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">sergiomdgomes</a>, <a href=\"https://profiles.wordpress.org/seuser/\">seuser</a>, <a href=\"https://profiles.wordpress.org/sgastard/\">sgastard</a>, <a href=\"https://profiles.wordpress.org/shadyvb/\">Shady Sharaf</a>, <a href=\"https://profiles.wordpress.org/shamim51/\">Sh<NAME></a>, <a href=\"https://profiles.wordpress.org/sharaz/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/shashank3105/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/shawfactor/\">shawfactor</a>, <a href=\"https://profiles.wordpress.org/shital-patel/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/siliconforks/\">siliconforks</a>, <a href=\"https://profiles.wordpress.org/simono/\">simono</a>, <a href=\"https://profiles.wordpress.org/sirreal/\">sirreal</a>, <a href=\"https://profiles.wordpress.org/sixes/\">Sixes</a>, <a href=\"https://profiles.wordpress.org/slaffik/\">Slava Abakumov</a>, <a href=\"https://profiles.wordpress.org/slobodanmanic/\">Slobodan Manic</a>, <a href=\"https://profiles.wordpress.org/smerriman/\">smerriman</a>, <a href=\"https://profiles.wordpress.org/snapfractalpop/\">snapfractalpop</a>, <a href=\"https://profiles.wordpress.org/socalchristina/\">socalchristina</a>, <a href=\"https://profiles.wordpress.org/soean/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/spectacula/\">Spectacula</a>, <a href=\"https://profiles.wordpress.org/spenserhale/\">spenserhale</a>, <a href=\"https://profiles.wordpress.org/spuds10/\">spuds10</a>, <a href=\"https://profiles.wordpress.org/sstoqnov/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ryokuhi/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/hypest/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/netweb/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/stevenkword/\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/studyboi/\">studyboi</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/sudhiryadav/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/manikmist09/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/tha_sun/\">sun</a>, <a href=\"https://profiles.wordpress.org/codesue/\">Suzen Fylke</a>, <a href=\"https://profiles.wordpress.org/svanhal/\">svanhal</a>, <a href=\"https://profiles.wordpress.org/patilswapnilv/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/swapnild/\">swapnild</a>, <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a>, <a href=\"https://profiles.wordpress.org/sergioestevao/\">S<NAME></a>, <a href=\"https://profiles.wordpress.org/miyauchi/\">T<NAME></a>, <a href=\"https://profiles.wordpress.org/nevma/\">Takis</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tazotodua/\">tazotodua</a>, <a href=\"https://profiles.wordpress.org/technote0space/\">technote</a>, <a href=\"https://profiles.wordpress.org/tellyworth/\">Tellyworth</a>, <a href=\"https://profiles.wordpress.org/tessak22/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/themes-1/\">them.es</a>, <a href=\"https://profiles.wordpress.org/themezly/\">Themezly</a>, <a href=\"https://profiles.wordpress.org/thulshof/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/kraftner/\"><NAME>äftner</a>, <a href=\"https://profiles.wordpress.org/thomaswm/\">thomaswm</a>, <a href=\"https://profiles.wordpress.org/tdh/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/tfrommen/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/thrijith/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/tigertech/\">tigertech</a>, <a href=\"https://profiles.wordpress.org/n7studios/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/timhavinga/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/hedgefield/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/timph/\">timph</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tmdesigned/\">tmdesigned</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-<NAME>)</a>, <a href=\"https://profiles.wordpress.org/toddhalfpenny/\">toddhalfpenny</a>, <a href=\"https://profiles.wordpress.org/tosho/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/tjnowell/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/tferry/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/skithund/\"><NAME>ö</a>, <a href=\"https://profiles.wordpress.org/tonybogdanov/\">tonybogdanov</a>, <a href=\"https://profiles.wordpress.org/torres126/\">torres126</a>, <a href=\"https://profiles.wordpress.org/zodiac1978/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul Islam</a>, <a href=\"https://profiles.wordpress.org/trasweb/\">trasweb</a>, <a href=\"https://profiles.wordpress.org/travisnorthcutt/\">Travis Northcutt</a>, <a href=\"https://profiles.wordpress.org/travisseitler/\">travisseitler</a>, <a href=\"https://profiles.wordpress.org/triplejumper12/\">triplejumper12</a>, <a href=\"https://profiles.wordpress.org/truchot/\">truchot</a>, <a href=\"https://profiles.wordpress.org/truongwp/\">truongwp</a>, <a href=\"https://profiles.wordpress.org/dekervit/\">T<NAME></a>, <a href=\"https://profiles.wordpress.org/dinhtungdu/\">Tung Du</a>, <a href=\"https://profiles.wordpress.org/desaiuditd/\">Udit Desai</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/utsav72640/\">Utsav tilava</a>, <a href=\"https://profiles.wordpress.org/vaishalipanchal/\">Vaishali Panchal</a>, <a href=\"https://profiles.wordpress.org/vbaimas/\">vbaimas</a>, <a href=\"https://profiles.wordpress.org/venutius/\">Venutius</a>, <a href=\"https://profiles.wordpress.org/fesovik/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/vishalkakadiya/\">V<NAME></a>, <a href=\"https://profiles.wordpress.org/vishitshah/\">vishitshah</a>, <a href=\"https://profiles.wordpress.org/vladlu/\">vladlu</a>, <a href=\"https://profiles.wordpress.org/vladwtz/\">V<NAME></a>, <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>, <a href=\"https://profiles.wordpress.org/svovaf/\">Vova Feldman</a>, <a href=\"https://profiles.wordpress.org/vrimill/\">vrimill</a>, <a href=\"https://profiles.wordpress.org/w3rkjana/\">w3rkjana</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">webcommsat AbhaNonStopNewsUK</a>, <a href=\"https://profiles.wordpress.org/webdados/\">Webdados (Marco Almeida)</a>, <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design | <NAME></a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/earnjam/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/wpdavis/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/williampatton/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/withinboredom/\">withinboredom</a>, <a href=\"https://profiles.wordpress.org/worldweb/\">worldweb</a>, <a href=\"https://profiles.wordpress.org/yanngarcia/\">yanngarcia</a>, <a href=\"https://profiles.wordpress.org/collet/\">Yannicki</a>, <a href=\"https://profiles.wordpress.org/yarnboy/\">yarnboy</a>, <a href=\"https://profiles.wordpress.org/yashar_hv/\">yashar_hv</a>, <a href=\"https://profiles.wordpress.org/yoavf/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/yodiyo/\">yodiyo</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, <a href=\"https://profiles.wordpress.org/yvettesonneveld/\">Yvette Sonneveld</a>, <a href=\"https://profiles.wordpress.org/zaantar/\">zaantar</a>, <a href=\"https://profiles.wordpress.org/zalak151291/\">zalak151291</a>, <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a>, <a href=\"https://profiles.wordpress.org/chesio/\">Česlav Przywara</a>, <a href=\"https://profiles.wordpress.org/airathalitov/\">АЙРАТ ХАЛИТОВ <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f525.png\" alt=\"🔥\" class=\"wp-smiley\" /></a>, and <a href=\"https://profiles.wordpress.org/ounziw/\">水野史土</a>.\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>Many thanks to all of the community volunteers who contribute in the <a href=\"https://wordpress.org/support/\">support forums</a>. They answer questions from people across the world, whether they are using WordPress for the first time or since the first release. These releases are more successful for their efforts!</p>\n\n\n\n<p>Finally, thanks to all the community translators who worked on WordPress 5.3. Their efforts bring WordPress fully translated to 47 languages at release time, with more on the way.</p>\n\n\n\n<p>If you want learn more about volunteering with WordPress, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> or the <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p class=\"has-text-align-center has-medium-font-size\">Thanks for choosing WordPress!</p>\n\n\n\n<img src=\"https://i0.wp.com/wordpress.org/news/files/2019/11/image.png?fit=632%2C414&ssl=1\" alt=\"\" class=\"wp-image-7755\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Nov 2019 21:38:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WPTavern: Recurring Payments Feature Launches for WordPress.com and Jetpack Users\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95300\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://wptavern.com/recurring-payments-feature-launches-for-wordpress-com-and-jetpack-users\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3978:\"<p>WordPress.com <a href=\"https://en.blog.wordpress.com/2019/11/12/recurring-payments/\">launched a new recurring payments feature</a> its users today. The payments system will allow bloggers to earn money for their content directly from any page on their site. The feature is also available for self-hosted WordPress users who have the Jetpack plugin installed.</p>\n\n\n\n<p>The recurring payments system works alongside <a href=\"https://stripe.com\">Stripe</a>, so users must have a connected account to receive payments. Stripe currently serves over 30 countries around the world. WordPress.com’s documentation maintains an up-to-date <a href=\"https://en.support.wordpress.com/recurring-payments-button/#stripe-supported-countries\">list of countries</a> currently allowed to use the payment gateway.</p>\n\n\n\n<p>The new feature doesn’t come for free. Recurring payments access is only available to users on a premium WordPress.com plan. Plus, on top of the 2.9% + $0.30 for each payment that Stripe collects, WordPress.com has a <a href=\"https://en.support.wordpress.com/recurring-payments-button/#related-fees\">tiered fee table</a> based on the user’s plan.</p>\n\n\n\n<ul><li>WordPress.com eCommerce – No fee</li><li>WordPress.com Business – 2% per sale</li><li>WordPress.com Premium – 4% per sale</li><li>WordPress.com Personal – 8% per sale</li></ul>\n\n\n\n<p>At the lowest tier, users will see nearly 11% of sales go toward WordPress.com and Stripe fees. If accepting large volumes of payments, it will make sense for most users to upgrade to a higher plan to offset the fees. The tiers seem reasonably priced because the infrastructure is completely handled by WordPress.com. </p>\n\n\n\n<p>Self-hosted users can bypass the WordPress.com fees with a multitude of existing payment plugins. They will have to decide whether the tools and support provided by WordPress.com is enough of a value-add to go for their service.</p>\n\n\n\n<p>The Jetpack team first <a href=\"https://wptavern.com/jetpack-opens-signup-for-membership-block-beta\">opened a limited beta test</a> for this new feature on May 18, 2019. At the time, the feature was referred to as a “membership block.” The announcement post says that users can “offer ongoing subscriptions, site memberships, monthly donations, and more.”</p>\n\n\n\n<p>However, members-based content seems to be limited in comparison to other fully-featured membership plugins and would require extra manual work to limit access to a site’s premium content. The WordPress.com recommendation is to <a href=\"https://en.support.wordpress.com/recurring-payments-button/#limit-access-to-content\">password-protect posts</a> and email out the password to subscribers or set up a newsletter.</p>\n\n\n\n<p>This is far from a true membership system, but it could be enough for the average blogger who wants to make a few dollars on the side. The groundwork is there for a more powerful membership system in the future if the WordPress.com and Jetpack teams want to pursue it. The market is still ripe for innovation in the membership space.</p>\n\n\n\n<h2>Recurring Payments Block</h2>\n\n\n\n<div class=\"wp-block-image\"><img />Jetpack recurring payments editor block</div>\n\n\n\n<p>The new recurring payments feature requires at least Jetpack version 7.4. The feature comes in the form of a block for the block editor (Gutenberg) and is located under the “Jetpack” tab when inserting a new block.</p>\n\n\n\n<p>The block has four fields that can be customized:</p>\n\n\n\n<ul><li>Currency</li><li>Price</li><li>Description</li><li>Renewal Interval – limited to monthly and yearly renewals</li></ul>\n\n\n\n<p>There is no limit on the number of different payment blocks users can add. Users can create a new payment plan by adding a new block. Previous options are backed up and will appear when inserting the block for users who need to output an existing plan on a new post or page.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Nov 2019 19:45:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"bbPress: bbPress 2.6 – Better Great Than Never\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://bbpress.org/?p=193159\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://bbpress.org/blog/2019/11/bbpress-2-6/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2501:\"<p>There’s no way for me to contain either my excitement or anxiety when I say that bbPress 2.6.0 is available now! <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f389.png\" alt=\"🎉\" class=\"wp-smiley\" /></p>\n\n\n\n<p>This version of bbPress has been in development for just a bit under 6 years (yikes!) over which 420 tickets were resolved via 1737 individual code commits.</p>\n\n\n\n<p>There are so many improvements that a changelog hardly seems fitting for this post, but the major features include per-forum moderation, a bunch of new platforms to import from, and an extensible engagements API that now powers the relationships between users, forums, topics, replies, subscriptions, and favorites.</p>\n\n\n\n<p>At the time of this writing, bbPress is installed on approximately 336,000 WordPress installations, and is the most widely installed forum software in the world (according to BuiltWith.com and other sources.) Several of those are right here on bbPress.org, BuddyPress.org, and WordPress.org, the later of which includes a few dozen separate languages for non-English speaking communities of contributors all over the world.</p>\n\n\n\n<p>The elephant in the room… the reason that 2.6.0 took so long, is pretty simple. bbPress has a small contributor pool, and none of us are 100% dedicated towards it. The project gets very little community feedback, which makes it hard to know if everything is working perfectly, or nobody is testing it at all. </p>\n\n\n\n<p>So… 4 less-than part-time folks supporting over 300k sites, each with their own thousands of users, depending on us. </p>\n\n\n\n<p>The pressure is high, and the chamber is echo’y, and as my own career has progressed these past 13 years, the numbers above make me increasingly nervous.</p>\n\n\n\n<p>And the longer something takes to do is the higher the expectations are, and I personally locked up pretty hard multiple times on whether done was done enough to be trusted by so many having been tested by so few.</p>\n\n\n\n<p>But… good things come to those who wait, and I’m sincerely sorry to have kept any of you waiting for too long.</p>\n\n\n\n<p>bbPress 2.6.0 has been running smoothly on these forums since day 0. It’s stable, pretty, and a joy to use. We know you are gonna love it!</p>\n\n\n\n<p><img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f41d.png\" alt=\"🐝\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f49a.png\" alt=\"💚\" class=\"wp-smiley\" /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Nov 2019 18:42:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WPTavern: Beyond Prefixing: A WordPress Developer’s Guide to PHP Namespaces\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95284\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wptavern.com/beyond-prefixing-a-wordpress-developers-guide-to-php-namespaces\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9768:\"<p><em>Prefix everything.</em></p>\n\n\n\n<p>It is an adage that is old as the WordPress software itself. Prefixing has been a standard for WordPress developers for so long that it’s hard to imagine doing anything different. But, the time has come for something new. Well, it is long past due, but WordPress lags a bit behind in standard practices in the larger PHP world.</p>\n\n\n\n<p>Prefixing is the practice of creating a code-friendly version of your project name and sticking it to the front of functions, classes, and other things in the global namespace. For example, you would name a function <code>tavern_get_post()</code> instead of <code>get_post()</code> to avoid function name clashes, which would result in a fatal error.</p>\n\n\n\n<p>Prefixing is one form of “namespacing,” which is just a fancy way of saying that names in this space belong to a specific project. However, prefixing (and suffixing, which is less common) is a hack from a time when no solution existed for the PHP language.</p>\n\n\n\n<p>PHP 5.3 introduced an official method of namespacing, so the standard has existed for years. Because WordPress 5.2 <a href=\"https://wptavern.com/wordpress-ends-support-for-php-5-2-5-5-bumps-minimum-required-php-version-to-5-6\">bumped the minimum PHP requirement</a> to 5.6, it is time for developers to shed their old habits and catch up to the rest of the PHP world.</p>\n\n\n\n<h2>Namespace (Almost) Everything</h2>\n\n\n\n<p>PHP namespacing only covers the following items.</p>\n\n\n\n<ul><li>Classes</li><li>Interfaces</li><li>Traits</li><li>Functions</li><li>Constants declared with the <code>const</code> keyword but not <code>define()</code></li></ul>\n\n\n\n<p>When it comes to script handles, image size names, database options, and other items in the global namespace, you must still prefix them. Those are IDs and outside the scope of PHP namespacing.</p>\n\n\n\n<h2>How to Create Namespaces</h2>\n\n\n\n<p>Namespaces are simple to declare. At the top of any PHP file that you want to use a particular namespace, declare it as shown in the following code snippet.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n<?php\n\nnamespace Tavern;\n</pre>\n\n\n<p>What this line of code does is declare that everything within this particular file has the namespace of <code>Tavern</code>.</p>\n\n\n\n<p>Take a look at a simple function under that namespace for outputting a <code>Hello, World!</code> message.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n<?php\n\nnamespace Tavern;\n\nfunction hello() {\n _e( \'Hello, World!\', \'example-textdomain\' );\n}\n</pre>\n\n\n<p>If following the old rules of prefixing, <code>hello()</code> would have been named <code>tavern_hello()</code>. However, that’s not the case with namespaces. The <code>hello()</code> function is encapsulated within the <code>Tavern</code> namespace and will not conflict with other functions named <code>hello()</code>.</p>\n\n\n\n<p>Classes and interfaces work the same as functions. With a class name of <code>Article</code>, the class file might look like the following.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n<?php\n\nnamespace Tavern;\n\nclass Article {\n // ...\n}\n</pre>\n\n\n<p><strong>Note:</strong> There should only ever be one class or interface per file. This is particularly important if you ever plan to use an autoloader.</p>\n\n\n\n<h2>How to <em>Name</em> Namespaces</h2>\n\n\n\n<p>Developers like to argue over how to name things, and there is no one-size-fits-all solution. The most important rule is to be unique to avoid clashes with code from other projects. One of the best ways to do that is to use a top-level <code>Vendor</code> namespace with a <code>Package</code> sub-namespace.</p>\n\n\n\n<p>Suppose the vendor namespace was <code>Tavern</code> and the project in question was a WordPress theme named <code>News</code>. The namespace for the project might look like the following.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n<?php\n\nnamespace Tavern\\News;\n</pre>\n\n\n<p>That may be a bit verbose for some developers. If your project’s name is already fairly unique, such as “Awesomesauce,” you may simply want to use the following.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n<?php\n\nnamespace Awesomesauce;\n</pre>\n\n\n<p>You will want to come up with some sort of standard convention, at the very least, for yourself. Eventually, you’ll want to get into things like auto-loading, so having a system you follow in all your projects will help. Feel free to peruse the PHP-FIG <a href=\"https://www.php-fig.org/psr/psr-4/\">Autoloader standard</a>.</p>\n\n\n\n<h2>Importing Classes and Functions into a Different Namespace</h2>\n\n\n\n<p>When you need to use a class or function from a different namespace than the current namespace, you need to import it. This is done via the <code>use</code> keyword in PHP.</p>\n\n\n\n<p>The <code>use</code> statement must come after the <code>namespace</code> declaration. It should also reference the fully-qualified class name. The following code imports the <code>Tavern\\Helpers\\Post</code> class into a file with a different namespace.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n<?php\n\nnamespace Tavern\\Template;\n\nuse Tavern\\Helpers\\Post;\n</pre>\n\n\n<p>Once it is imported, you are safe to use the <code>Post</code> class directly as shown in the next snippet.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n$post = new Post();\n</pre>\n\n\n<p>As of PHP 5.6, you can also import functions and constants from other namespaces using the <code>use function</code> and <code>use const</code> keywords, respectively. The following code block demonstrates how to import both a function and a constant.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n<?php\n\nnamespace Tavern\\Template;\n\nuse function Tavern\\Helpers\\func_name;\nuse const Tavern\\Helpers\\CONSTANT_NAME;\n</pre>\n\n\n<h2>Aliasing Classes and Functions</h2>\n\n\n\n<p>Eventually, you will run into a situation where you need to import a class or function that has the same name as a class or function within the current namespace. You might be thinking that this is the problem that namespaces were meant to solve. Fortunately, PHP provides a method of creating an alias on import.</p>\n\n\n\n<p>Suppose you have a class named <code>Tavern\\User</code> and need to implement the <code>Tavern\\Contracts\\User</code> interface. When importing the interface, you will need to create an alias as shown below.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n<?php\n\nnamespace Tavern;\n\nuse Tavern\\Contracts\\User as UserContract;\n\nclass User implements UserContract {\n // ...\n}\n</pre>\n\n\n<p>The <code>as UserContract</code> appended to the end of the <code>use</code> statement creates an alias for the <code>User</code> interface. You can safely use the new <code>UserContract</code> name without error.</p>\n\n\n\n<p>Classes, interfaces, functions, and constants all follow the same method for creating an alias.</p>\n\n\n\n<h2>Organizing Folder Structure Based on Namespaces</h2>\n\n\n\n<p>It is standard practice in the wider PHP world for namespaces and the project’s file and folder structure to match. Doing this makes it easy for other developers to easily locate code within your project. It also makes it simple to build autoloaders for loading classes on demand.</p>\n\n\n\n<p>Generally, all PHP code should go into a <code>/src</code>, <code>/inc</code>, or similarly-named folder in your project. An example plugin file and folder structure might look like the following.</p>\n\n\n<pre class=\"brush: plain; gutter: false; title: ; wrap-lines: false; notranslate\">\n/plugin-name\n /src\n /Core\n /Activate.php\n /Setup.php\n /View\n /Post.php\n /Page.php\n</pre>\n\n\n<p>If following the same structure with namespaces, the above <code>.php</code> files would contain the following classes.</p>\n\n\n\n<ul><li><code>Tavern\\Core\\Activate</code></li><li><code>Tavern\\Core\\Setup</code></li><li><code>Tavern\\View\\Post</code></li><li><code>Tavern\\View\\Page</code></li></ul>\n\n\n\n<p>Take note that file and folder names are case-sensitive and should match the namespace and class name exactly.</p>\n\n\n\n<p>Of course, you are free to follow any convention that you wish. However, the preceding recommendation is good practice and will simplify how you organize your projects in the long term.</p>\n\n\n\n<h2>Benefits of Using Namespaces</h2>\n\n\n\n<p>The most obvious benefit is to avoid clashes between classes and functions with the same name. You should use real namespaces for the same reason you used prefixes.</p>\n\n\n\n<p>Namespaces help to avoid long class names. Typing long names throughout a large project is a tedious practice at best.</p>\n\n\n\n<p>More easily switch implementations by importing. Once you get the hang of importing classes and interfaces from other namespaces, you can switch an implementation of an interface with a single line of code.</p>\n\n\n\n<p>Autoloading classes is far easier if you follow the <a href=\"https://www.php-fig.org/psr/psr-4/\">PSR-4: Autoloader</a> standard, which requires at least a top-level namespace.</p>\n\n\n\n<p>For developers in the professional space, you will gain a marketable skill beyond the WordPress ecosystem. You will be hard-pressed to find PHP development work if you don’t know how to use namespaces. It is not a tough concept to grasp, but there can be a learning curve for some in practice.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Nov 2019 18:43:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Matt: Farnam Street’s Great Mental Models, Presented by Automattic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=50433\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://ma.tt/2019/11/farnam-streets-great-mental-models-presented-by-automattic/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1075:\"<p>I’ve been a fan of <NAME> and his indispensable <a href=\"https://fs.blog/\">Farnam Street</a> for many years now. Shane is a <a href=\"https://www.nytimes.com/2018/11/11/business/intelligence-expert-wall-street.html\">fascinating person</a> — he’s a former cybersecurity expert for the Canadian intelligence agency and occasional blogger who turned his website into a full-time career. Oh and <a href=\"http://fs.blog\">fs.blog</a> is on WordPress, too. <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f60e.png\" alt=\"😎\" class=\"wp-smiley\" /></p>\n\n\n\n<p>His book, <a href=\"https://fs.blog/tgmm/\"><em>The Great Mental Models: General Thinking Concepts</em></a>, has been tremendously valuable to me in my work. So valuable, in fact, that Automattic is now sponsoring the next printing of the hardcover edition. <a href=\"https://www.amazon.com/Great-Mental-Models-Thinking-Concepts/dp/1999449002/\">You can pre-order it here</a>, then learn more about <a href=\"https://fs.blog/general-thinking-concepts/\">the mental models outlined in it</a>. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Nov 2019 15:59:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"BuddyPress: The road to BuddyPress blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=308912\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://buddypress.org/2019/11/the-road-to-buddypress-blocks/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5679:\"<p>Hi everyone!</p>\n\n\n\n<p>First, we’d like to thank all the people who contributed to the poll we shared on our <a href=\"https://bpdevel.wordpress.com/2019/10/10/take-the-buddypress-blocks-poll/\">development updates blog</a> and into <a href=\"https://buddypress.org/support/topic/take-the-buddypress-blocks-poll/\">a topic of one of our forums</a> a month ago. It was really important for us to have your expectations about the content the plugin should provide to the WordPress Block Editor.</p>\n\n\n\n<p>It’s now time for us to share with you the <a href=\"https://poll.fm/10425422/results\">results of this poll</a> and tell you how we plan to work on BuddyPress blocks for the next release(s) of your favorite community engine!</p>\n\n\n\n<span id=\"more-308912\"></span>\n\n\n\n<h2>The results of the Blocks Poll</h2>\n\n\n\n<p>It received a total of 161 votes divided as follows:</p>\n\n\n\n<ul><li>A block to share a post or a page via the Activity Stream : <strong>17 votes</strong>.</li><li>A block to list the recently published posts from across your network (Exists as a widget) : <strong>13 votes</strong>.</li><li>A block to display Sitewide Notices posted by the site administrator (Exists as a widget) : <strong>12 votes</strong>.</li><li>A block to dynamicaly list the recently active, popular, newest, or alphabetical groups (Exists as a widget) : <strong>11 votes</strong>.</li><li>A block to display Profile photos of online users (Exists as a widget) : <strong>10 votes</strong>.</li><li><em>A block to highlight a single Group</em> : <strong>10 votes</strong>.</li><li><em>A block to highlight a single Member</em> : <strong>10 votes</strong>.</li><li>A block to dynamicaly list the recently active, popular, and newest Friends of a given member (Exists as a widget) : <strong>9 votes</strong>.</li><li>A block to display the Profile photos of recently active members (Exists as a widget) : <strong>9 votes</strong>.</li><li>A block to restrict content to a Group type : <strong>9 votes</strong>.</li><li>A block to dynamicaly list the recently active, popular, and newest members (Exists as a widget) : <strong>8 votes</strong>.</li><li>A block to restrict content to a Member type : <strong>8 votes</strong>.</li><li>A block to restrict content to Group members : <strong>7 votes</strong>.</li><li>A block to list the Member types : <strong>7 votes</strong>.</li><li>A block to display a selected Activity as a quote : <strong>6 votes</strong>.</li><li>A block to list the Group types : <strong>5 votes</strong>.</li><li>A placeholder block for directory pages to eventually make them benefit from wide alignments : <strong>5 votes</strong>.</li><li>No blocks! : <strong>3 votes</strong>.</li><li>Other : <strong>2 votes</strong>.</li></ul>\n\n\n\n<p>As you can see, top results are mostly corresponding to existing widgets except for:</p>\n\n\n\n<ul><li>A block to share a post or a page via the Activity Stream.</li><li><em>A block to highlight a single Group or a single Member</em>.</li></ul>\n\n\n\n<p>We also analyze from these results that there is no blocks expected to be a must have and it’s interesting to see that the 2 first blocks are about highlighting WordPress content. Finally only one suggestion was made : A “Block for Activity Stream component” (<em>PS: in Nouveau there’s an existing widget for it</em>).</p>\n\n\n\n<h2>About the BuddyPress development team’s decision regarding BuddyPress blocks.</h2>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/11/starting-point-1024x520.png\" alt=\"\" class=\"wp-image-308935\" />Screen capture of the BuddyPress Blocks category when the <a href=\"https://github.com/buddypress/bp-blocks\">BP Blocks</a> plugin is active.</div>\n\n\n\n<p>We think working on blocks to highlight a single Group or a single Member is a good starting point. Moreover it’s something we don’t make possible yet. We also think converting existing widgets to blocks is an obvious move to do.</p>\n\n\n\n<p>We’ve decided to work on these blocks from a specific <a href=\"https://github.com/buddypress/bp-blocks\">GitHub repository</a> and to merge into the Core of the BuddyPress plugin the “JavaScript built” blocks as soon as they are ready. To the very least, we’ll have the 2 blocks to highlight a Group or a Member of your community site merged into BuddyPress for its next major release (<strong>6.0.0</strong>).</p>\n\n\n\n<p>We’ve just pushed the <a href=\"https://github.com/buddypress/bp-blocks/commit/227a15814cfbf239fb382ee5b11d29240a6ae54f\">minimal code</a> to start working on BuddyPress blocks into the BP Blocks’ GitHub repository. We’ll soon add contributing notes into this repository so that you can help us building beautiful BuddyPress blocks. You can already share with us your “Pull Requests” forking the repository.</p>\n\n\n\n<p>If you can’t wait for the contributing notes to start working on BuddyPress Blocks, here’s a quick “how-to” :</p>\n\n\n\n<ul><li>Once you cloned your fork into your development environment, do <code>npm install</code></li><li>The JavaScript (ESNext) code for your block needs to land into the <code>/src/bp-{ID of the BP Component}/js/blocks/</code> directory.</li><li>Have a look at the way the <code>bp/member</code> block is registered <a href=\"https://github.com/buddypress/bp-blocks/blob/master/build/bp-members/bp-members-blocks.php#L19-L29\">here</a> to build your registration code.</li><li>run <code>npm start</code> to see how your JavaScript code behaves at each edit.</li></ul>\n\n\n\n<p>Let’s build awesome BuddyPress blocks, together <3.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Nov 2019 18:30:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"imath\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"WordPress.org blog: People of WordPress: <NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7662\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2019/11/people-of-wordpress-kim-parsell/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6063:\"<p><em>You’ve probably heard that WordPress is open-source software, and may know that it’s created and run by volunteers. WordPress enthusiasts share many examples of how WordPress changed people’s lives for the better. This monthly series shares some of those lesser-known, amazing stories.</em></p>\n\n\n\n<h2><strong>Meet <NAME></strong></h2>\n\n\n\n<p>We’d like to introduce you to <NAME>. Kim was an active and well-loved member of the WordPress community. Unfortunately, she passed away in 2015. Lovingly referred to as #wpmom, she leaves behind a legacy of service. </p>\n\n\n\n<img src=\"https://i1.wp.com/wordpress.org/news/files/2019/11/Kim-Parsell-1.jpg?fit=632%2C252&ssl=1\" alt=\"\" class=\"wp-image-7664\" /><NAME>ll\n\n\n\n<h2><strong>How Kim became #wpmom</strong></h2>\n\n\n\n<p>In order to understand how highly valued the WordPress community was to <NAME>, you have to know a bit about her environment.</p>\n\n\n\n<p>Kim was a middle-aged woman who lived off a dirt road, on top of a hill, in Southern rural Ohio. She was often by herself, taking care of the property with only a few neighbors up and down the road.</p>\n\n\n\n<p>She received internet access from towers that broadcast wireless signals, similar to cell phones but at lower speeds.</p>\n\n\n\n<h2><strong>Connecting through attending live podcast recordings</strong></h2>\n\n\n\n<p>By listening to the regular podcast, WordPress Weekly, Kim met members of the WordPress community and was able to talk to them on a weekly basis. The show and its after-hours sessions provided Kim a chance to mingle with the who’s who of WordPress at the time. It helped establish long-lasting relationships that would open up future opportunities for her.</p>\n\n\n\n<p>Since she lived in a location where few around her used or had even heard of WordPress, the community was an opportunity for her to be with like-minded people. Kim enjoyed interacting with the community, both online and at WordCamp events, and many community members became her second family, a responsibility she took very seriously.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>“Many members of the WordPress community became her second family, a responsibility she took very seriously.”</em></p><cite><em><NAME></em></cite></blockquote>\n\n\n\n<h2><strong>One of the first women of WordPress</strong></h2>\n\n\n\n<p>Kim is regarded as one of the first “women of WordPress,” investing a lot of her time in women who wanted to break into tech. She worked hard to create a safe environment sharing herself and her knowledge and was affectionately called #wpmom.</p>\n\n\n\n<p>She contributed countless hours of volunteer time, receiving “props” for 5 major releases of WordPress, and was active on the documentation team. </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>“Affectionately called #wpmom, Kim was an investor. She invested countless hours into the WordPress project and in women who wanted to break into tech.”</em></p><cite><em><NAME></em></cite></blockquote>\n\n\n\n<img src=\"https://i0.wp.com/wordpress.org/news/files/2019/11/KimParsell2.jpg?fit=632%2C468&ssl=1\" alt=\"\" class=\"wp-image-7663\" />Kim at WordCamp San Francisco\n\n\n\n<h2><strong>Kim Parsell Memorial Scholarship</strong></h2>\n\n\n\n<p>In 2014, she received a travel stipend offered by the WordPress Foundation that enabled her to attend the WordPress community summit, held in conjunction with WordCamp San Francisco. She shared with anyone who would listen, that this was a life-changing event for her. </p>\n\n\n\n<p>The WordPress Foundation now offers that scholarship in her memory. The Kim Parsell Memorial Scholarship provides funding annually for a woman who contributes to WordPress to attend WordCamp US, a flagship event for the WordPress community.</p>\n\n\n\n<p>This scholarship truly is a fitting memorial. Her contributions have been vital to the project. Moreover, the way she treated and encouraged the people around her has been an inspiration to many. </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>Her spirit lives on in the people she knew and inspired. Here’s hoping that the Kim Parsell Memorial Scholarship will serve to further inspire those who follow in her footsteps.</em></p><cite><em><NAME></em></cite></blockquote>\n\n\n\n<h2><strong>Kim is missed, but her spirit continues to live on</strong></h2>\n\n\n\n<p>Sadly Kim died just a few short months later. But her spirit lives on in the people she knew and inspired within her communities. The Kim Parsell Memorial Scholarship will serve to further inspire those who follow in her footsteps.</p>\n\n\n\n<h2><strong>Contributors</strong></h2>\n\n\n\n<p><NAME> (<a href=\"https://profiles.wordpress.org/wpfiddlybits/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>wpfiddlybits</a>), <NAME> (<a href=\"https://profiles.wordpress.org/yvettesonneveld/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>yvettesonneveld</a>), <NAME> (<a href=\"https://profiles.wordpress.org/chanthaboune/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chanthaboune</a>), <NAME> (<a href=\"https://profiles.wordpress.org/topher1kenobe/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>topher1kenobe</a>), <NAME>, <NAME>, <NAME>, <NAME>, <NAME></p>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\">\n<img src=\"https://i1.wp.com/wordpress.org/news/files/2019/07/heropress_large_white_logo.jpg?resize=632%2C474&ssl=1\" alt=\"\" class=\"wp-image-7025\" />\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<p> <em>This post is based on an article originally published on HeroPress.com, a community initiative created by <a href=\"https://profiles.wordpress.org/topher1kenobe/\">Top<NAME>ia</a>. HeroPress highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.</em> </p>\n</div>\n</div>\n\n\n\n<p> <em>Meet more WordPress community members over at </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>!</em> </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Nov 2019 23:58:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Yvette Sonneveld\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"Post Status: A Teenage Woman’s Perspective On The State of The Word\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=70959\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://poststatus.com/a-teenage-womans-perspective-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6914:\"<p>Hello everyone! This year I got the chance to go to the <a href=\"https://poststatus.com/matt-mullenweg-state-of-the-word-2019/\">State of the Word</a>, which is a talk given by <NAME> each year at WordCamp US (WCUS). Here are my thoughts and views on this year’s State of the Word.</p>\n\n\n\n<p>Before he even got started with the State of the Word, Matt premiered a new documentary that focuses on the fact that WordPress is both open source and also a big community. The documentary takes you to WordCamp Phoenix, WordCamp US (2018), and others. It also gives you first-hand exposure to what the community is really like.</p>\n\n\n\n<p>Another thing that the film emphasizes, is the fact that everyone wants everyone in the community to succeed, and this might be one of the unique features of the WordPress community — how members are supportive of each other.</p>\n\n\n\n<h3>Let’s Get Started!</h3>\n\n\n\n<p>Matt discussed several milestones and release notes for WordPress.</p>\n\n\n\n<h4>Two different releases within a year:</h4>\n\n\n\n<ul><li>WordPress 5.1: Developer Experience Improvements </li><li>WordPress 5.2: New Widgets, which can be shown or hidden</li></ul>\n\n\n\n<h4>The future of releases:</h4>\n\n\n\n<div class=\"wp-block-columns has-2-columns\">\n<div class=\"wp-block-column\">\n<p><strong>WordPress 5.3</strong></p>\n\n\n\n<ul><li>November 12</li><li>Over 150 block editor improvements</li><li>Twenty Twenty theme</li><li>Admin Email Verification</li><li>Time/Date Component Fixes</li><li>PHP 7.4 Cap</li><li>MinPHP 5.6.20</li></ul>\n\n\n\n<p><strong>Mobile</strong></p>\n\n\n\n<ul><li>Got Gutenberg on mobile </li><li><strong>Almost</strong> done with offline mode</li><li>DARK MODE 8</li></ul>\n\n\n\n<p><strong>Social</strong></p>\n\n\n\n<ul><li>141 WordCamps </li><li>About 15 KidsCamp</li><li>HeroPress</li><li>There is going to be a new scholarship to bring more people to WCUS</li></ul>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<img src=\"https://cdn.poststatus.com/wp-content/uploads/2019/11/blocks.png\" alt=\"\" class=\"wp-image-71109\" />\n</div>\n</div>\n\n\n\n<h3>Let’s Time Travel…</h3>\n\n\n\n<div class=\"wp-block-columns has-3-columns\">\n<div class=\"wp-block-column\">\n<p><strong>A Year Ago</strong></p>\n\n\n\n<ul><li>People did not like Gutenberg</li></ul>\n\n\n\n<img src=\"https://cdn.poststatus.com/wp-content/uploads/2019/11/GUT.png\" alt=\"\" class=\"wp-image-71110\" />\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<p><strong>Today</strong></p>\n\n\n\n<ul><li>They have added motion</li><li>Typewritter mode</li><li>Block previews</li></ul>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<p><strong>Future</strong></p>\n\n\n\n<ul><li>SOCIAL ICONS!!! (This is going to be a Gutenberg block)</li><li>The Navigation block/editor</li><li>GRADIENTS (I’m excited!)</li><li><span>Multi-Button Block</span></li><li>Block Directory </li><li>Block patterns </li></ul>\n</div>\n</div>\n\n\n\n<h3>Community</h3>\n\n\n\n<ul><li>There are so many different sites just using the block editor.</li><li>You are able to use Microsoft Word with the new editor using the Copy and Paste method.</li></ul>\n\n\n\n<h3>Beyond</h3>\n\n\n\n<p>Gutenberg is about 20% done. There are going to be 4 phases of Gutenberg:</p>\n\n\n\n<ul><li>Easier Editing</li><li>Customization</li><li>Collaboration</li><li>Multilingual</li></ul>\n\n\n\n<h3>Our Path Forward…</h3>\n\n\n\n<div class=\"wp-block-columns has-2-columns\">\n<div class=\"wp-block-column\">\n<ul><li>Help be the change \n<ul>\n<li>Go to Contributor Day</li>\n<li>Design Experiments by the WordPress team.</li>\n</ul>\n</li><li>More Blocks!\n<ul>\n<li>Learn JavaScript Deeply. </li>\n</ul>\n</li><li>Help <strong>Teach the change</strong></li><li>There are meetups everywhere</li><li>Help open the web. </li><li>Five for the future\n<ul>\n<li><a href=\"http://wordpress.org/5\">wordpress.org/5</a> or <a href=\"http://wordpress.org/five\">wordpress.org/five</a></li>\n</ul>\n</li></ul>\n\n\n\n<p></p>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<img src=\"https://cdn.poststatus.com/wp-content/uploads/2019/11/path.png\" alt=\"\n\" class=\"wp-image-71111\" />\n</div>\n</div>\n\n\n\n<h3>My Thoughts</h3>\n\n\n\n<h4>As a young person…</h4>\n\n\n\n<p>As I was listening to the talk, I did find some golden gems that I thought my generation might be able to take advantage of and use to the benefit of both our generation and also the WordPress community.</p>\n\n\n\n<p>One of those things is the new documentary that shows how open the WordPress Community really is.</p>\n\n\n\n<p>Another thing, and yes, I am serious about this, is the fact that they are adding gradients to the WordPress editor for the Gutenberg blocks. I think that addition is going to bring out the artistic side of those of us who do not know how to do gradients in code yet.</p>\n\n\n\n<h4>That time I asked <NAME> a question…</h4>\n\n\n\n<p>One of the major things that I did during my WordCamp US trip happened during the Q&A; Session which is right after the State of the Word. I decided to try to ask a question of my own.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>Me asking <NAME> a question\n\n\n\n<p>And to summarize, I asked what was Matt’s plan for the inclusion of the next generation of WordPress users. His response to that is the fact that <a href=\"https://poststatus.com/automattic-has-purchased-tumblr/\">Automattic bought Tumblr</a> and is going to turn the back end of their site into a Gutenberg-centric WordPress interface.</p>\n\n\n\n<p>I do not think that this is a bad thing. In fact, I think that this is a good thing because of the fact that Tumblr is something that is attracting the younger generation of users.</p>\n\n\n\n<p>I think Tumblr’s addition is going to be targeted towards some of the same people who are already using WordPress, and I was just hoping for a start to something that is able to capture a new group of people who are not using Tumblr to blog.</p>\n\n\n\n<p>And now I know what you are thinking, <em>Doesn’t KidsCamp already attract the younger generation</em>? I LOVE KidsCamp and everyone and everything to do with KidsCamp. But here is the thing, KidsCamp is something that happens in less than half of the WordCamps inside of the United States, and getting there might be difficult for some parents, especially if they are going to bring their kids with them.</p>\n\n\n\n<h3>In conclusion</h3>\n\n\n\n<p>The organization of the whole event played out nicely. The media (or the people who tweet the most) got to sit in the front rows for the convenience of taking photos and notes.</p>\n\n\n\n<p>There was no line for any of it, therefore we got the chance to fully enjoy the afternoon break that came right before the State of the Word.</p>\n\n\n\n<p>I’m glad I got to ask my question to Matt. I think that there are some different ways that different people from the WordPress community are able to step in and help, beyond Tumblr, and beyond KidsCamp.</p>\n\n\n\n<p>But that is going to come inside of a different blog post later in the future.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Nov 2019 23:00:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WPTavern: Themes of the Future: A Design Framework and a Master Theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95267\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wptavern.com/themes-of-the-future-a-design-framework-and-a-master-theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8858:\"<p>WordPress theming has a rich history. Over the years, theme authors have brought a plethora of features to the platform. In part, it is because they have often had to solve foundational issues with WordPress to create the features that end users want.</p>\n\n\n\n<p>The post and body classes all theme authors use today? Those were originally in a theme called Sandbox. </p>\n\n\n\n<p>Featured images? Those were popularized by <em>magazine</em> themes a decade ago. </p>\n\n\n\n<p>You think post formats originated with Tumblr? <NAME>, co-creator of WordPress, taught us how to <a href=\"https://ma.tt/2004/05/asides/\">create aside posts</a> in our themes in 2004, but they existed before that.</p>\n\n\n\n<p>WordPress features often get their start in the theme world. We sometimes take for granted the years of experimentation and iteration on ideas where theme authors are putting in the work. Even the block editor is handling items that have traditionally been within the realm of theme design. The cover block is a good example. For years, theme authors built theme options for a basic hero image with text and buttons overlain. The result was often clunky and not ideal for users. By bringing this feature into core, it provided users the ability to put this cover block in any permitted block area.</p>\n\n\n\n<p>The reason many theme features make it to core is that they simply work better when they are standardized. Users know what to expect, and theme authors can focus on the design aspect rather than solving the user experience problem.</p>\n\n\n\n<p>Part of the problem of the past is that each new feature adopted into core did not follow any standard design pattern or naming scheme. A huge skill in designing WordPress themes is committing the mish-mash of hundreds of classes to memory.</p>\n\n\n\n<p>The block editor is in a unique position to change that by creating a universal design framework.</p>\n\n\n\n<h2>Does WordPress Need a Front-End Design Framework?</h2>\n\n\n\n<p>With block patterns coming in the future and full-site customization at some point after that, theme authors are wondering just exactly where this ship is sailing. It is exciting because the possibilities are boundless for end users. It is frightening for theme authors who have built their empires upon one way of doing things, but development is more about adaptation than anything else.</p>\n\n\n\n<p>Armed with the foreknowledge that the landscape is changing, this is the moment theme authors need to band together to shape their futures in a block-based world.</p>\n\n\n\n<p>There is a bit of a running joke in one of the developer groups I am involved in that core developers are not theme authors. From the theme author perspective, it can sometimes seem like ideas are haphazardly thrown together with no thought toward CSS design systems.</p>\n\n\n\n<p><em>Oh, I see some BEM. Why does this sub-element not follow the same naming scheme? Wait. Is that a 38-character utility class?</em></p>\n\n\n\n<p>What WordPress has always lacked is a universal front-end design system. At times, that has been a good thing. It has allowed theme authors to use their preferred framework. Any theme author who has been in the game long enough will tell you, that sort of flexibility is great…<em>until it is not</em>. Have you ever tried adding contextual classes to widgets? What about adding a utility class to the comment form wrapper? You will need an Aspirin. Or two.</p>\n\n\n\n<p>With WordPress, some things are set in stone and others are pluggable. Some features follow a standard class-naming scheme and others make no sense. The result for themes is often bloated CSS in an attempt to wrangle the various components.</p>\n\n\n\n<p>It is next to impossible to fully use a utility-class framework like <a href=\"https://tailwindcss.com\">Tailwind CSS</a> in a theme without recreating core features. </p>\n\n\n\n<p>Much of this stems from years of legacy code piling up and WordPress’ commitment to backward compatibility. But, the future does not have to resemble the past. We are at the threshold of a new era, and now is the time for front end designers to jump into the conversation.</p>\n\n\n\n<p>WordPress needs a solid front-end design framework.</p>\n\n\n\n<p>That is a loaded statement. If you put 20 designers in a room and ask them to discuss design frameworks, it could be a recipe for fisticuffs. I tend to be an optimist and hope the debate provided results.</p>\n\n\n\n<p>Gutenberg has pushed us partially in this direction, but it does not quite go far enough. With full-site editing in the future, there is a need for a more holistic approach in tackling this problem.</p>\n\n\n\n<p>More than anything, we need more front end designers in the conversation. There is no way <code>.has-subtle-pale-green-background-color</code> should exist as a utility class over something like <code>.bg-pale-green</code>, <code>.bg-green-100</code>, or even <code>.background-pale-green</code>, if you want to be more verbose. There was no concept of optimization that went into that decision. In a time where developers are running on gigabyte internet connections, it is easy to forget that much of the world is following along at a slower pace.</p>\n\n\n\n<p>A component-based naming scheme with a healthy dose of utility classes is one option that could hit several sweet spots. This is not an argument for one CSS framework over another. There are many good, existing options. WordPress should tackle this head on by borrowing from the groundwork laid down by other projects and creating something uniquely WordPress. It should be a leader in the field.</p>\n\n\n\n<p>Design frameworks are also about plugins. There is some crossover into the realm of themes where the two have been waging an ongoing war since the dawn of the theme system. The battlefield between themes and plugins is littered with the deaths of good ideas. Far too many never garnered the support they needed to land in core. Some sort of universal design standard could stanch the flood of issues and call for a cease-fire.</p>\n\n\n\n<p>A plugin that outputs a custom front-end component has no way of knowing how the current theme handles vertical rhythm, for example. <em>Does it use top or bottom margin? What is the value and unit used?</em> This is foundational stuff, and it is almost always broken when the plugin attempts to add custom CSS to handle it.</p>\n\n\n\n<p>WordPress needs a design framework, or language, that allows all of its moving parts to come together in harmony on the front end. I am sure we will get there at some point. I hope that it is more cohesive than the random components and naming schemes of the past. We should also have a clear roadmap that fills in some of the technical details so developers and designers might be prepared.</p>\n\n\n\n<h2>Is a One-Theme Future Possible?</h2>\n\n\n\n<p><NAME> makes the argument that core WordPress could provide a single parent theme in his article <a href=\"https://richtabor.com/the-future-of-wordpress-themes/\">A Look at WordPress Themes of the Future</a>. The idea is that theme authors would be relegated to creating a child theme for this “master” theme.</p>\n\n\n\n<p>The gut reaction for many would be that it would not work, themes would lose their personality and we would live in a world of cookie-cutter designs. </p>\n\n\n\n<p>The reality is that we are barreling toward a future where the idea of a single parent or master theme is a serious consideration. </p>\n\n\n\n<p>Most themes are custom groupings of standard elements that exist in nearly all themes. There are some decisions, aside from stylistic concerns, that make themes different from one another, such as the layout of the header. One theme might have a site title and nav menu in one block. Another might have a nav menu, title, and a second nav menu below. Yet, another theme might show a search box. In a world where full-site customization belongs to the user, those decisions become a part of the user experience rather than the developer experience.</p>\n\n\n\n<p>Themes will need to stand out with color palettes, typography, and their own brand of quirkiness — a return of the days of <a href=\"http://csszengarden.com/\">CSS Zen Garden</a> but on a much larger scale.</p>\n\n\n\n<p>I won’t be sad about that. It would be interesting to see the competition between the top designers in the field. It may also bring WordPress theming back to an era when anyone could do it with a little CSS knowledge and determination.</p>\n\n\n\n<p>While we are not quite ready for a future in which one theme rules theme all, it is a place to start the conversation. If we designed WordPress for this potential future, even if we never implement a master theme, what would the roadmap look like? What obstacles stand in the way? Is it feasible?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Nov 2019 21:13:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"WPTavern: Oklahoma Watch Becomes First U.S. Publication on Newspack; 34 Pilot Newsrooms Announced for Second Round\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95252\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:123:\"https://wptavern.com/oklahoma-watch-becomes-first-u-s-publication-on-newspack-34-pilot-newsrooms-announced-for-second-round\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7869:\"<div class=\"wp-block-image\"><img />Homepage of the Oklahoma Watch website on Newspack.</div>\n\n\n\n<p><a href=\"https://oklahomawatch.org/\">Oklahoma Watch</a> is the first U.S. publication to relaunch and the second publication to go live on Newspack, a platform created this year to bring WordPress to newsrooms. Newspack <a href=\"https://newspack.blog/2019/11/07/newspack-announces-second-set-of-pilot-newsrooms-first-u-s-site-relaunches-on-new-platform/\">announced the relaunch</a> today. The announcement includes the list of 34 new publications that will work with the Newspack team during its second phase.</p>\n\n\n\n<p>Newspack is a project of Automattic, the parent company of WordPress.com. Its mission is to create a platform for more newsrooms to make the move to WordPress. The team has been working alongside industry leaders and small publications during the pilot program this year to tackle issues with running online newsrooms.</p>\n\n\n\n<p>Chilean news site El Soberano was the first newsroom to go live on the new system, <a href=\"https://wptavern.com/chilean-news-publication-el-soberano-first-to-launch-on-newspack\">relaunching their site</a> on October 16. Oklahoma Watch follows them as only the second publication to take the next step. The remaining participants in the pilot program are expected to launch in the coming weeks.</p>\n\n\n\n<p>Oklahoma Watch is a non-partisan publication that does not publish opinion pieces. It is a nonprofit news organization that covers stories on public-policy issues within the state of Oklahoma. “Those include education, criminal justice, public and mental health, state government, poverty, and human-needs issues that disproportionately affect women, children, and the disadvantaged,” said executive editor <NAME>. “Our staples are in-depth stories, searchable data, interactives, public forums, live-tweeting and other social media, and, increasingly, video.”</p>\n\n\n\n<p>The publication distributes its stories for free republication to around 100 newspapers and radio and TV news outlets throughout the state.</p>\n\n\n\n<h2>Oklahoma Watch’s Move to Newspack</h2>\n\n\n\n<p>In 2013, the Oklahoma Watch site moved to <a href=\"https://largo.inn.org/\">Largo</a>, a WordPress theme framework for news publishers. It is developed and maintained by the Institute for Nonprofit News.</p>\n\n\n\n<p>“Our website was clean and bright, but was rather monotonous, with a long stack of same-sized headlines, excerpts and a right sidebar with typical fixtures, such as a newsletter sign-up ask and our Twitter feed,” said Fritze. After bringing on a visual journalist to bring the site up to date with media, they still felt tools were limited and needed a site refresh.</p>\n\n\n\n<p>“We went live with Newspack more than a week ago, and we’re still gradually digging around — spelunking in a way — to learn how to make the most of it,” said Fritze. “But I would say it already has and will make a world of difference.”</p>\n\n\n\n<p>He sent the following update to the publication’s email subscribers.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>[Newspack] gives smaller organizations more tools to deliver their content in engaging, creative ways. What you will notice: a faster mobile experience; a better showcasing of visuals, stories, and informational bits, and a more vibrant, flexible home page – with new features to come. The goal is to make oklahomawatch.org a richer experience for you and to enhance the investigative reporting that is central to our mission.</p></blockquote>\n\n\n\n<p>The team switched from the classic editor and has been learning the block editor (Gutenberg) along with the Newspack tools. Fritze said the team is happy about:</p>\n\n\n\n<ul><li>Being able to serve donation and subscription forms anywhere.</li><li>Having the ability to more easily manage their homepage content, media, and headlines.</li><li>Making changes without spending valuable time that would be better spent investigating stories.</li></ul>\n\n\n\n<p>As part of the initial pilot program, Oklahoma Watch was in a unique position to help make this an easier process for future publications on the platform. “We were fortunate to be a pilot site and have the full let’s-develop-this attention of the Newspack team — on Slack, in regular video conference calls, in emails, and by phone,” said Fritze.</p>\n\n\n\n<p>“Early on, it became clear that some of the news sites’ reps were more well-versed in web tech and other programs than we were, so it took me a while to get my bearings,” said Fritze of the process. “But I requested specific features and preservation of one or two of the tools we already have and prefer.” One such tool was the <a href=\"https://tablepress.org/\">TablePress plugin</a>. The Oklahoma Watch team uses it to display interactive, tabular data from CSV files.</p>\n\n\n\n<p>Fritze said he had a few requests for other features that are still pending, such as a film-strip-like homepage carousel. However, the Newspack team was clear from the outset that not all plugins or features would be adopted for the system.</p>\n\n\n\n<p>“Perhaps that would give some clients pause, not being able to pull any fish you wanted out of the sea of WordPress plugins, based on some mention on the web,” said Fritze. “On the other hand, the quality control is reassuring, especially for smaller organizations like ours that have little time to go kicking those tires.”</p>\n\n\n\n<p>In any controlled system, it makes sense that not every feature request will be granted. It would increase the quality control burden. However, without more control over tools or features, it could be a non-starter for some publications.</p>\n\n\n\n<p>Fritze does have a big feature request for the long term. “If there is one thing that Newspack should make sure happens going forward, it’s to promote easy interaction among Newspack sites, including the ability to communicate one on one and find peer sites that have similar needs and challenges,” he said.</p>\n\n\n\n<h2>Second Round of Pilot Newsrooms Announced</h2>\n\n\n\n<p>Oklahoma Watch and the 11 other newsrooms currently in the program are being followed by a larger group of publications. The 34 new sites will have the benefit of the past seven months of work the Newspack team and pilot newsrooms put into the initial launch. Newsrooms in the second phase are expected to relaunch their sites on the platform by the end of February 2020.</p>\n\n\n\n<p>Publications such as the <a href=\"https://www.hongkongfp.com/\">Hong Kong Free Press</a>, <a href=\"https://mlk50.com\">MLK50: Justice Through Journalism</a>, and <a href=\"https://www.dailyyonder.com/\">The Daily Yonder</a> are a part of the second group. Most are small or medium-sized publications that focus on local news. The full list is <a href=\"https://newspack.blog/2019/11/07/newspack-announces-second-set-of-pilot-newsrooms-first-u-s-site-relaunches-on-new-platform/\">available via the announcement post</a> on the Newspack blog.</p>\n\n\n\n<p>Like the first group, the new newsrooms will work directly with the Newspack team to identify and address technical issues faced in online journalism. They will continue helping to design and test the platform’s features.</p>\n\n\n\n<p>All pilot newsrooms will continue using Newspack for free until March 2020. After that point, the price will jump to $1,000 per month. The price includes priority access to Newspack developers, some level of premium support, quarterly benchmarking reports, and community membership with other Newspack users.</p>\n\n\n\n<p>The Newspack team plans to consider additional applications in January 2020. Nearly 500 applicants have applied for the program thus far.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Nov 2019 18:50:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WPTavern: The Power of Stories: <NAME> and the Bridge Framework\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95240\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://wptavern.com/the-power-of-stories-chris-lema-and-the-bridge-framework\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5474:\"<p>I would tell you that when <NAME>, VP of Products at Liquid Web, is speaking, you should listen. But, there is no need to say that. He has an infectious quality that grabs your attention and doesn’t let go. I found myself hanging onto every word in his session, <a href=\"https://2019.us.wordcamp.org/session/the-content-framework-that-powers-stories-landing-pages-more/\">The Content Framework that Powers Stories, Landing Pages, & More</a>, via the WordCamp U.S. livestream this past weekend.</p>\n\n\n\n<p>Telling stories is a uniquely human trait. Our ability to weave narratives together is what separates us from lower animals. Sure, other important things such as the ability to make fire, understand advanced mathematics, and build rocket-powered ships all set us apart. But, it is the stories we tell that are the most interesting things about us as a species.</p>\n\n\n\n<p>Any good story leaves you waiting to see what will happen next and how the people within those stories react. How they grow. How they change.</p>\n\n\n\n<p>This fundamental human activity was at the heart of Lema’s 15-minute presentation. “When people believe that you’ve been where they are and can see that you’ve gotten to the other side, they will follow,” said Lema of selling products.</p>\n\n\n\n<p>Ultimately, the bridge framework is about guiding others through your journey and helping them cross the bridge you have found. This framework can apply to your brand, your products, or any other content that you are providing to others.</p>\n\n\n\n<p>One thing product makers often fail at is providing a solution before sharing how they have encountered the same problem. “No one feels like they need a bridge until they are facing a river,” said Lema. The struggle must come first.</p>\n\n\n\n<h2>What Comes After the Product</h2>\n\n\n\n<p>In 2007, I built one of the most popular themes ever in WordPress’ short history. It does not matter what theme it was. It is long retired. What mattered was it helped users get to their destination.</p>\n\n\n\n<p>One theme user who stood out was building a Formula 1 racing website. I was a mediocre designer at best, but this user would create some of the most beautiful customizations that I had ever seen. It seemed like he would change the design every week. Each time, I was in awe at his talent. He continued using this same theme of mine for years, even after I archived it and moved onto other theme projects.</p>\n\n\n\n<p>What I should have learned during those years was, without knowing, I had the story right. I knew the technical aspects of why this specific theme was a leap forward. However, I didn’t understand the story I was telling users was drawing people in.</p>\n\n\n\n<p>I had been where they were. I had struggled to get to where I was going. I had braved the journey beyond that point and found a path for others to join me.</p>\n\n\n\n<p>As time moved on, I became a better developer. I had one more insanely popular theme. Again, it was about the story. I could recognize the problems. I had the same frustrations as others. I had a way to fix those problems and get people from Point A to Point B. I invited others along. I told them I would be there every step of the way.</p>\n\n\n\n<p>I never recreated that early success with another theme, at least not on the same scale.</p>\n\n\n\n<p>I stopped focusing on what mattered.</p>\n\n\n\n<p>I marketed future themes based far too much on the technical aspects. Essentially, I was flaunting my development skills. After years of lucking into success by being a storyteller, I tried to follow the trends of others who were marketing their HTML5, CSS3, or whatever other keyword was popular at the time.</p>\n\n\n\n<p>Fortunately, I had loyal users who stuck with me over the years. There was one theme user who would often switch themes whenever I released a new one. Like the racing enthusiast, this person would put his own spin on the design. He used the themes on his photography site. What was interesting about some of the themes was they were not specifically built with photography in mind. That was never my goal when creating them.</p>\n\n\n\n<p><em>What was it that made this user continue using different themes of mine?</em></p>\n\n\n\n<p>It was never about all the bells and whistles. Many of them were unused on the site. It was about what came after activating the theme. It wasn’t about me. It was about the user being able to tell his own story through photos.</p>\n\n\n\n<p>In hindsight, I could see that the projects I achieved the most success with were the projects I was the most passionate about. I had built them to solve specific problems. The technical details did not matter. I had built or found a bridge to get to the place that I wanted to be. My excitement and passion naturally transferred to how I spoke about those projects. It changed how I sold them to users. I told my story.</p>\n\n\n\n<p>The biggest failures I had were when I did not have a good story to tell.</p>\n\n\n\n<h2>Watch <NAME>’s Speech</h2>\n\n\n\n<p>For those that are running any type of business, you owe it to yourselves to listen to Lema explain how to connect with customers.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p><em>Lema’s session starts at the 2:59:46 mark if the videos doesn’t start at the correct point. The embedded video should begin at his introduction.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Nov 2019 17:53:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Matt: State of the Word 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=50414\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://ma.tt/2019/11/state-of-the-word-2019/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2061:\"<p>In case you missed it, here’s the first-ever State of the Word… designed completely in Gutenberg: </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p><a href=\"https://2019.us.wordcamp.org/\">WordCamp US</a> was a fantastic experience, as always. Thank you again to the hundreds of organizers and volunteers who made it happen, to the thousands who attended, and to the city of St. Louis for hosting us. We’ll be back there again next year.</p>\n\n\n\n<p>And special thanks to this next generation of WordPress contributors. So exciting to see <a href=\"https://2019.us.wordcamp.org/kidscamp/\">KidsCamps</a> continue to expand and thrive:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Thank you <a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a> for stopping by KidsCamp today. The kids loved your visit! <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> <a href=\"https://twitter.com/hashtag/KidsCamp?src=hash&ref_src=twsrc%5Etfw\">#KidsCamp</a> <a href=\"https://twitter.com/hashtag/WCUS?src=hash&ref_src=twsrc%5Etfw\">#WCUS</a> <a href=\"https://t.co/cq65sHkjsI\">pic.twitter.com/cq65sHkjsI</a></p>— <NAME> (@sunsanddesign) <a href=\"https://twitter.com/sunsanddesign/status/1191093861172559873?ref_src=twsrc%5Etfw\">November 3, 2019</a></blockquote>\n</div>\n\n\n\n<p>As you can see, my site is now featuring the new <a href=\"https://make.wordpress.org/core/2019/09/06/introducing-twenty-twenty/\">WordPress Twenty Twenty theme</a>. And for more coverage from my State of the Word, check out the recaps from <a href=\"https://wptavern.com/state-of-the-word-2019-recap-all-roads-lead-to-the-block-editor\">WP Tavern</a> and <a href=\"https://poststatus.com/matt-mullenweg-state-of-the-word-2019/\">Post Status</a>. Here’s my full audience Q&A below: </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>You can see my previous <a href=\"https://ma.tt/tag/sotw/\">State of the Word keynotes here</a>. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Nov 2019 06:38:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"BuddyPress: Test BuddyPress 5.1.0-beta1 thanks to our new BP Beta Tester plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=308797\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://buddypress.org/2019/11/buddypress-5-1-0-beta1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2816:\"<p>Hi BuddyPress contributors!</p>\n\n\n\n<p>We will soon publish a maintenance release (<strong>5.1.0</strong>) to fix some issues that arose since BuddyPress 5.0.0 “Le Gusto”. A detailed changelog will be part of our official release notes, but, until then, you can check out this <a href=\"https://buddypress.trac.wordpress.org/query?status=closed&group=resolution&milestone=5.1.0\">report on Trac</a> for the full list of fixes.</p>\n\n\n\n<p>Today we’re publishing a very specific<a href=\"https://downloads.wordpress.org/plugin/buddypress.5.1.0-beta1.zip\"> beta release</a> for version 5.1.0 as it has two goals:</p>\n\n\n\n<ul><li>Let you make sure the fixes have no side effects on your community site’s configuration.</li><li>Test in real conditions the plugin we’ve been working on and which should greatly simplify the way you betatest BuddyPress.</li></ul>\n\n\n\n<h2>Meet BP Beta Tester</h2>\n\n\n\n<img src=\"https://buddypress.org/wp-content/uploads/1/2019/11/bp-beta-tester-github-featured-image-1024x512.jpeg\" alt=\"\" class=\"wp-image-308803\" />\n\n\n\n<p>Once installed it will help you to upgrade your website to the latest Beta or Release candidate. You will also be able to downgrade to the latest stable release once you finished your Beta tests.</p>\n\n\n\n<img src=\"https://buddypress.org/wp-content/uploads/1/2019/11/bp-beta-tester-01.png\" alt=\"\" class=\"wp-image-308800\" />\n\n\n\n<p>Once activated, go to the home page of your Dashboard (Network Dashboard if your are using WordPress Multisite) to find the BP Beta Tester sub menu of the Dashboard menu. From this page, you’ll be able to install the 5.1.0-beta1 release clicking on the tab “Upgrade to 5.1.0-beta1”.</p>\n\n\n\n<img src=\"https://buddypress.org/wp-content/uploads/1/2019/11/bp-beta-tester-02.png\" alt=\"\" class=\"wp-image-308801\" />You can always downgrade to the latest stable version of BuddyPress using the corresponding tab of the page’s header.\n\n\n\n<p>The development version of this plugin is hosted on <a href=\"https://github.com/buddypress/bp-beta-tester\">GitHub</a>: you can contribute to it <a href=\"https://github.com/buddypress/bp-beta-tester/pulls\">pulling requests</a> or <a href=\"https://github.com/buddypress/bp-beta-tester/issues\">reporting issues</a>. We plan to submit this plugin on the WordPress.org Plugins directory so that it’s easier to install.</p>\n\n\n\n<p><a href=\"https://github.com/buddypress/bp-beta-tester/releases/download/1.0.0-beta1/bp-beta-tester.zip\"><strong>Download BP Beta Tester</strong></a><strong> or </strong><a href=\"https://downloads.wordpress.org/plugin/buddypress.5.1.0-beta1.zip\"><strong>Download BuddyPress 5.1.0-beta1</strong></a><strong>.</strong></p>\n\n\n\n<p>Happy testing <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f609.png\" alt=\"😉\" class=\"wp-smiley\" /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Nov 2019 02:45:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"imath\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"WordPress.org blog: WordPress 5.3 RC4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7596\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2019/11/wordpress-5-3-rc4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3672:\"<p>The fourth release candidate for WordPress 5.3 is now available!</p>\n\n\n\n<p>WordPress 5.3 is currently scheduled to be released on <strong><a href=\"https://make.wordpress.org/core/5-3/\">November 12 2019</a></strong>, but we need <em>your</em> help to get there—if you haven’t tried 5.3 yet, now is the time!</p>\n\n\n\n<p>There are two ways to test the WordPress 5.3 release candidate:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.3-RC4.zip\">download the release candidate here</a> (zip).</li></ul>\n\n\n\n<p>For details about what to expect in WordPress 5.3, please see the <a href=\"https://wordpress.org/news/2019/10/wordpress-5-3-release-candidate/\">first</a>, <a href=\"https://wordpress.org/news/2019/10/wordpress-5-3-rc2/\">second</a> and <a href=\"https://wordpress.org/news/2019/10/wordpress-5-3-rc3/\">third</a> release candidate posts.</p>\n\n\n\n<p>Release Candidate 4 contains three bug fixes for the new default theme, Twenty Twenty (see <a href=\"https://core.trac.wordpress.org/ticket/48450\">#48450</a>), and addresses the following:</p>\n\n\n\n<ul><li>The Twemoji library has been updated from 12.1.2 to 12.1.3 (see <a href=\"https://core.trac.wordpress.org/ticket/48293\">#48293</a>).</li><li>Two regressions in the Media component (see <a href=\"https://core.trac.wordpress.org/ticket/48451\">#48451</a> and <a href=\"https://core.trac.wordpress.org/ticket/48453\">#48453</a>).</li><li>One bug in the Upload component (see <a href=\"https://core.trac.wordpress.org/ticket/48472\">#48472</a>)</li><li>Five bugs in the Block Editor component (see <a href=\"https://core.trac.wordpress.org/ticket/48502\">#48502</a>)</li></ul>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.3 and update the <em>Tested up to</em> version in the readme to 5.3. If you find compatibility problems, please be sure to post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a> so we can figure those out before the final release.</p>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/core/2019/10/17/wordpress-5-3-field-guide/\">WordPress 5.3 Field Guide</a> has also been published, which details the major changes.</p>\n\n\n\n<p>A new dev note has been published since the Field Guide was released, <a href=\"https://make.wordpress.org/core/2019/11/05/use-of-the-wp_update_attachment_metadata-filter-as-upload-is-complete-hook/\">Use of the “wp_update_attachment_metadata” filter as “upload is complete” hook</a>. Plugin and theme authors are asked to please read this note and make any necessary adjustments to continue working well in WordPress 5.3 or share any difficulties encountered on <a href=\"https://core.trac.wordpress.org/ticket/48451\">#48451</a>.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Nov 2019 23:56:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: State of the Word 2019 Recap: All Roads Lead to the Block Editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95216\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wptavern.com/state-of-the-word-2019-recap-all-roads-lead-to-the-block-editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11947:\"<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>If there was one common theme in <NAME>’s State of the Word address this year at WordCamp U.S., it was that all roads lead to the block editor. His speech was primarily about blocks, blocks, more blocks, and a dash of community. This doesn’t come as a surprise because we are closing in on the one year mark of the official merge of the Gutenberg plugin into the core WordPress code. It has been a year about blocks, and nothing is changing that course.</p>\n\n\n\n<p><a href=\"https://2019.us.wordcamp.org\">WordCamp U.S. 2019</a> was held in St. Louis, Missouri, over this past weekend. The event was planned and put together by 47 organizers and 122 volunteers. There were 90 speakers who held sessions across a range of topics in multiple rooms.</p>\n\n\n\n<p>For people who were not able to attend or watch via the livestream, the sessions are <a href=\"https://www.youtube.com/channel/UCpJf6LGZ0a4n9Lj4aVt9spg\">available via YouTube</a>. Eventually, the videos will also make their way over to <a href=\"https://wordpress.tv/event/wordcamp-us-2019/\">WordPress.tv</a></p>\n\n\n\n<h2>Open: The Community Code</h2>\n\n\n\n<p>Mullenweg opened The State of the Word by showing a documentary named <a href=\"https://open.film/\">Open: The Community Code</a>, which is a film that primarily focuses on the WordPress community.</p>\n\n\n\n<p>The film explores why people are so passionate about a project that is essentially just code. What drives them to organize and attend events like WordCamps? Why do they volunteer their free time contributing to an industry that sees over $10 billion in profits? What makes the WordPress community different from other projects? The film team interviewed 37 people to get to the bottom of these questions.</p>\n\n\n\n<p>The team behind the project is also providing the film and all of the raw footage as open source for others to use.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"embed-vimeo\"></div>\n</div>\n\n\n\n<h2>The Events of the Past Year</h2>\n\n\n\n<p>Mullenweg primarily focused on WordPress updates and changes within the community when recapping events of the past year. Since the <a href=\"https://wptavern.com/wordpress-5-0-bebo-released-lays-a-foundation-for-the-platforms-future\">release of WordPress 5.0</a> on December 6, 2018, WordPress has had two major releases. A third major release, WordPress 5.3, is scheduled to launch on November 12. </p>\n\n\n\n<p>During 2019, most heavy work went into the Gutenberg plugin, which was ported back into core WordPress. The number of contributors to Gutenberg more than doubled since WordPress 5.0 launch, an increase from 200 to 480 individuals.</p>\n\n\n\n<p>The <a href=\"https://wptavern.com/wordpress-5-1-improves-editor-performance-encourages-users-to-update-outdated-php-versions\">release of WordPress 5.1</a> introduced the first iteration of the site health page, new cron features, and a site meta table for multisite installations.</p>\n\n\n\n<p>“WordPress is all about empowering users and we wanted to put the information and the tools in the hands of users as well to keep the site running in tip-top shape as we power an ever-increasing percentage of the web,” said Mullenweg of the site health feature. He further explained that it is WordPress’ responsibility to make sure users are up to date and running the latest versions of software.</p>\n\n\n\n<p>Building on top of the site health introduction, <a href=\"https://wptavern.com/wordpress-5-2-jaco-released-includes-fatal-php-error-protection-and-a-recovery-mode\">WordPress 5.2 launched</a> with a PHP fatal error protection and recovery mode. The release also bumped the minimum PHP version to 5.6 and ported all widgets to blocks.</p>\n\n\n\n<p>Mullenweg then outlined the work done toward getting WordPress 5.3 ready for its November 12 launch date. The major changes include:</p>\n\n\n\n<ul><li>150+ block editor improvements</li><li>Twenty Twenty default theme</li><li>Date/Time improvements and fixes</li><li>PHP 7.4 compatibility</li></ul>\n\n\n\n<p>As of now, 83% of all users on WordPress 5.2 or newer are running at least PHP 7. This means the WordPress project has done what it can from the user end. It is now time to start working with hosts to get sites updated to the latest version of PHP.</p>\n\n\n\n<p>The block editor is now available on both Android and iOS devices. Mullenweg announced they were almost done with offline post support and that a dark mode is coming in weeks.</p>\n\n\n\n<p>The community had a good year. In 2019, there were 141 WordCamp events, 34 of which were in new cities. There were 17 Kids Camps for younger contributors to get involved. There were also over 5,000 meetups and 16 <a href=\"https://doaction.org/\">do_action() charity hackathons</a>.</p>\n\n\n\n<p>The <a href=\"https://wordpress.org/news\">WordPress news page</a> has been highlighting one story from <a href=\"https://heropress.com/\">HeroPress</a> every month in the past year. HeroPress is a project that allows people to tell their stories of how they got involved with WordPress.</p>\n\n\n\n<p>Mullenweg held a moment of silence for long-time community member <NAME> (viper007bond) who passed away earlier this year after a <a href=\"https://alex.blog/2019/02/18/leukemia-has-won/\">long-fought battle</a> with leukemia. Automattic is planning to finance a scholarship in his honor. The scholarship will go to a plugin developer to attend WordCamp U.S. who has not had an opportunity to attend.</p>\n\n\n\n<h2>2019: The Year of the Block Editor</h2>\n\n\n\n<div class=\"wp-block-image\"><img />Slide with screenshots of Gutenberg criticism from users.</div>\n\n\n\n<p>Mullenweg started focusing on the block editor after recapping the events of the past year. WordPress 5.0 was released one day before WordCamp U.S. 2018 in Nashville.</p>\n\n\n\n<p>“We had people coordinating work from airplanes,” said Mullenweg. “There were impromptu groups of core developers, testing and packaging the release in the hallways. The polyglots, marketers, and support teams were just scrambling to get ready.”</p>\n\n\n\n<p>He explained the reason for the biggest change to WordPress in its then 16-year history. “We came together and decided to make this big change cause we wanted to first disrupt ourselves. We wanted to empower more WordPress users to realize our mission of democratizing publishing, and wanted to make the web a more open and welcoming place.”</p>\n\n\n\n<p>Not everyone was happy with the direction of WordPress and its new block editor. It was a rough year from a leadership perspective to have a vision and see it through, despite constant negative feedback. Mullenweg highlighted some of the comments that were critical of the block editor and explained that they had learned a lot from the process.</p>\n\n\n\n<p>“I think that we also have a great opportunity when we make big changes in the future,” said Mullenweg. “Sort of build that trust in the conversations around testing, using GitHub for development, things like accessibility. So, I understand why we had a lot of this feedback. But, we did get through it together.”</p>\n\n\n\n<p>Mullenweg highlighted that, according to Jetpack plugin stats, over 50 million posts have been written in the block editor. That amounts to around 270 thousand posts per day. It is important to note that this stat is on the lower end because it only accounts for users of the Jetpack plugin. Therefore, the number is likely much higher.</p>\n\n\n\n<p>He covered the performance improvements to the editor, block motion when moving blocks, typewriter mode, block previews, and the social block. “These are like the Nascar stickers of the web,” he said of social icons. “They’re everywhere.”</p>\n\n\n\n<h2>The Next Steps for the Block Editor</h2>\n\n\n\n<p>In his address, Mullenweg covered the four phases of the Gutenberg project.</p>\n\n\n\n<ol><li>Easier Editing</li><li>Customization</li><li>Collaboration</li><li>Multilingual</li></ol>\n\n\n\n<p>The first phase was the initial launch and iteration of the block editor for content. The second stage, which we are in now, is about full site customization. This includes widgets and non-content areas, and will eventually cover areas like the site header and footer. It will be interesting to see how page-building plugins work with these upcoming changes. Some could use WordPress as the foundational, framework-type layer. Others may go their own way. Themes will also have to keep pace with the changes.</p>\n\n\n\n<p>Phase three, collaboration, will introduce a feature that allows multiple authors to collaborate and co-edit posts on a site in real time. With any luck, WordPress will also build in a proper system for attributing posts to multiple authors.</p>\n\n\n\n<p>The fourth and final phase cannot get here fast enough. As WordPress usage continues to grow around the world, it is past time that it offered a multilingual experience. “We’re going to tackle the Babel fish problem,” said Mullenweg.</p>\n\n\n\n<p>Also on the roadmap is the concept of block patterns. Patterns would be a groups of blocks that follows common patterns seen across the web. The existing Media & Text block is an example of a common pattern, but new patterns would go far beyond something so basic. By providing patterns to users, they could simply insert a pattern and fill in their details, which should make it easy to rapidly create rich content.</p>\n\n\n\n<h2>Watch the State of the Word</h2>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"embed-wrap\"></div>\n</div>\n\n\n\n<p>Mullenweg’s entire presentation was done from the block editor. He used the <a href=\"https://wordpress.org/plugins/slide/\">Slides plugin</a> created by <NAME>.</p>\n\n\n\n<h2>Community Questions and Answers</h2>\n\n\n\n<p>The Q&A sessions after Mullenweg’s address was more focused on community and policy.</p>\n\n\n\n<p><NAME> asked whether we would see official policies on accessibility, ethics, conflicts of interest, and diversity. She wanted to know how the community could make this happen over the next year.</p>\n\n\n\n<p>While a privacy policy is in the footer of WordPress.org, Mullenweg expressed his desire to not make changes than lean too heavily on policy. “That is in spite of there being a policy or not, we’ve tried to enact bigger changes in WordPress in a policy-first way in the past,” he said. “To be honest, it felt nice but didn’t always make things actually change.” He said we usually do better by working with people to make changes rather than starting with the policy.</p>\n\n\n\n<p><NAME>, a young WordCamp speaker behind <a href=\"http://lemonadecode.com\">Lemonade Code</a>, asked Mullenweg how we could inspire kids who are currently in school to get involved with WordPress. The project has tough competition coming from more exciting technology sectors such as robotics and other industries that are swaying the next generation.</p>\n\n\n\n<p>“This is going to be on YouTube later, and boys and girls, maybe of your generation, will see you here asking a question and being a speaker at WordCamp in front of a thousand adults,” said Mullenweg. “And, you know, it’s kind of beautiful.”</p>\n\n\n\n<p>Mullenweg said that we need more stories from younger people on HeroPress and that Kids Camps will help. He said that WordPress should be easier and more accessible, which are things that the current generation is more aware of and care about. He also mentioned Automattic’s recent acquisition of Tumblr, which has a larger user base of young users, as a way to introduce them to WordPress.</p>\n\n\n\n<p>View the Q&A portion of The State of the Word in the following video.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"embed-wrap\"></div>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Nov 2019 19:18:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"Post Status: Matt Mullenweg’s State of the Word, 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=70832\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://poststatus.com/matt-mullenweg-state-of-the-word-2019/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10222:\"<p><a href=\"https://2019.us.wordcamp.org/\">WordCamp US 2019</a> is taking place for the first time in St. Louis, Missouri, where more than 1,300 WordPress community members and leaders are gathered.</p>\n\n\n\n<p>It\'s been the year of Gutenberg in 2019, and in his State of the Word, <NAME> highlighted what has been accomplished and what is coming next.</p>\n\n\n\n<p>Matt kicked off the event with the premiere of <a href=\"http://open.film/\"><em>Open: The Community Code</em></a>, a film about the WordPress open source community.</p>\n\n\n\n<p><em>Open</em> was really well done and made a great introduction to Matt\'s review of the year\'s achievements. In the film, Matt says that $10 billion flows through the WordPress economy every year, but that doesn\'t define the community. WordPress is more than code, more than business. Matt says, “It\'s more than a tool.” It\'s more like a canvas that “anyone can paint on.” </p>\n\n\n\n<p><em>Open</em> is a film about WordPress and what WordPress really is — not just software, but people, a community, and a mission. <em>Open</em> is a documentary short produced by <NAME> and directed by <NAME>. Executive producers <NAME> and <NAME> of <a href=\"https://www.wordfence.com/\">WordFence</a> contributed to the production of <em>Open</em> as well, and they are submitting it to independent and documentary film festivals.</p>\n\n\n\n<h3>The WordPress Community</h3>\n\n\n\n<p>The community continues to evolve, thrive, and adapt to the changing environment.</p>\n\n\n\n<h4>WordCamp US 2020</h4>\n\n\n\n<p>The next WordCamp US will be hosted during the workweek and won\'t overlap with Halloween. This is something I\'m personally thankful for, as it opens up the weekend for family. Many people, including me, got to the conference late this year due to spending the holiday trick-or-treating with family.</p>\n\n\n\n<h4>Volunteers Organizers, Speakers, and Sponsors</h4>\n\n\n\n<p>WCUS was made possible by 47 organizers, 122 volunteers, and 90 speakers. Bluehost, WooCommerce, Jetpack, and Google are this year\'s lead sponsors. Thank you to everyone!</p>\n\n\n\n<h4>Meetups, People, and Community Endeavors</h4>\n\n\n\n<p>There have been more than 5,000 WordCamp events and several do_action WordPress community events as well.</p>\n\n\n\n<p>One <a href=\"https://heropress.com/\">HeroPress</a> story per month is now being featured on the WordPress blog. </p>\n\n\n\n<p>Matt honored <a href=\"https://poststatus.com/footnotes/were-sad-to-report-that-alex/\"><NAME></a>, a prolific early and long-time contributor to WordPress who passed away in 2015.</p>\n\n\n\n<h4>WordCamps</h4>\n\n\n\n<p>There will be a total of 141 WordCamps in 2019, including 34 in brand new cities. There are also 17 KidsCamps happening in 2019.</p>\n\n\n\n<p>This year there are at least four WordCamp US speakers under age 15, which makes them younger than WordPress itself.</p>\n\n\n\n<p>In 2020, the first WordCamp Asia is happening in February, in Bangkok, Thailand. WordCamp Europe will convene in Porto, Portugal.</p>\n\n\n\n<h4>One year ago</h4>\n\n\n\n<p>WordPress 5.0 was released just before WCUS began in Nashville last year, a contentious decision on timing in itself. 2018 was what Matt calls a “controversial year,” where we wanted to “disrupt ourselves.” Gutenberg was included in core despite a lot of criticism in and outside of the community about this decision. Matt says we learned a lot from the process, and it was “really good practice for future changes we want to make.”</p>\n\n\n\n<p>He also added, “I understand why we had a lot of this feedback,” and he expressed excitement for WordPress\'s future.</p>\n\n\n\n<h4>Ways to Get Involved with WordPress</h4>\n\n\n\n<p>Matt highlighted several ways to get involved in the WordPress community today:</p>\n\n\n\n<ul><li>Participate in WordCamp contributor days, including one at WCUS.</li><li>Install the <a href=\"https://wordpress.org/plugins/gutenberg/\">Gutenberg</a> plugin, which is now a testing ground for features. About 275,000 people are taking part in this effort.</li><li>Install <a href=\"https://wordpress.org/plugins/design-experiments/\">Design Experiments</a>, a new feature plugin to test user interface experiments.</li><li>Create blocks! Matt made a call for Gutenberg block creation to “expand the window for how people are creating WordPress sites today.” If it\'s JavaScript only it will be able to go easily into the new block directory.</li><li>Help teach others in the community.</li></ul>\n\n\n\n<p>When Matt says <em>why</em> we do all this, he says it\'s to “help the open web.” He says the open web is like a pendulum that can swing to being more closed or more open over time.</p>\n\n\n\n<h4>Five for the Future</h4>\n\n\n\n<p>There\'s now a dedicated landing page for <a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a> to highlight people and organizations devoting 5% of their resources to WordPress development through this program.</p>\n\n\n\n<h3>Core WordPress Development</h3>\n\n\n\n<p>There have been two core releases in 2019. WordPress 5.1, “<a href=\"https://wordpress.org/support/wordpress-version/version-5-1/\">Betty</a>,” brought the “Site Health” screen, along with other feature adjustments and bug fixes. It also included the Cron API and Site Meta for Multisite.</p>\n\n\n\n<p>WordPress 5.2, “<a href=\"https://wordpress.org/support/wordpress-version/version-5-2/\">Jaco</a>,” included live block previews, better block management, and the end of the WSOD (White Screen of Death).</p>\n\n\n\n<p>WordPress 5.3 will be released on November 12th. It includes more than 150 block editor improvements. Also in 5.3 is the beautiful Twenty Twenty theme. And thanks to a new security feature, every six months or so, WordPress will send administrator email verifications to help ensure site admins are staying up to date.</p>\n\n\n\n<p>The minimum PHP version requirement for WordPress is now 5.6.20, which ended support for 5.2 and 5.3. Compatibility is now up to PHP 7.4. More than 80% of all WordPress sites are now on PHP 7 or higher. Matt highlighted the still-urgent need to improve update mechanisms and strategies with webhosts and site owners.</p>\n\n\n\n<p>We are currently at 1,122 total unique contributors to WordPress this year. WordPress 5.3 will have more than a hundred contributors than any release before.</p>\n\n\n\n<h3>Gutenberg</h3>\n\n\n\n<p>There have been more than 20 major Gutenberg releases, and the number of Gutenberg contributors is up to 480 from 200 a year ago. Matt says the number of sites using Gutenberg is up more than 2.7 times, and we just surpassed 50 million posts created in Gutenberg. Gutenberg-based posts are increasing at a rate of about 270,000 posts per day as tracked by Jetpack, so that\'s a conservative estimate.</p>\n\n\n\n<p>In last year\'s State of the Word question and answer session, someone asked what percentage of Gutenberg was complete, and Matt answered “10%.” A year later he says he thinks it\'s about 20% complete. He also highlighted how it\'s an ongoing process that he expects to take a decade to bring to fruition everything he envisions.</p>\n\n\n\n<h4>Gutenberg Feature Improvements</h4>\n\n\n\n<p>There are a lot of improvements happening:</p>\n\n\n\n<ul><li>Gutenberg is now fully mobile compatible, and many of the core blocks are fully integrated. Offline support and dark mode are also nearly complete.</li><li>The average time to load Gutenberg has been cut in half, and time to type has been reduced from 170ms to 53ms.</li><li>There is now a smoother scrolling motion in Gutenberg.</li><li>Block previews allow you to see what a block looks like before you insert it, and it also allows you to see more information about what the block does.</li></ul>\n\n\n\n<p><strong>Other Gutenberg features in the works:</strong></p>\n\n\n\n<ul><li>Social icons that can be placed anywhere.</li><li>The navigation menu is going to be an inline Gutenberg block — a likely precursor to “customize all the things.”</li><li>Gradients will be more a part of the Gutenberg experience.</li><li>Core Gutenberg is getting a button block.</li></ul>\n\n\n\n<p>Matt recognizes that we\'ll have thousands of blocks created for Gutenberg, and there will be a block directory which will load inside the Gutenberg editor. Patterns will be collections of blocks that people can install in bulk.</p>\n\n\n\n<p>Matt says he thinks people will be able to create just about any type of website layout in just a few clicks when Gutenberg is mature.</p>\n\n\n\n<p>Several use cases of Gutenberg were highlighted in Matt\'s talk, from newsletter editors to WordCamps, newsrooms, Microsoft Word converters, and more.</p>\n\n\n\n<h4>The Four Phases of Gutenberg</h4>\n\n\n\n<p>Matt continues to highlight the four phases of Gutenberg development and where we are now.</p>\n\n\n\n<ul><li><strong>Easier editing</strong>: simply making the WordPress editing experience better has been the focus of the last year.</li><li><strong>Customization</strong>: we are “in the thick” of the customization phase now, some of which is complete, and some (like full inline site editing) is still to come.</li><li><strong>Collaboration</strong>: real-time editing collaboration is coming in the third phase, something I\'m very excited about.</li><li><strong>Multilingual</strong>: core WordPress and core Gutenberg will have complete multilingual support.</li></ul>\n\n\n\n<h3>In conclusion</h3>\n\n\n\n<p>Matt\'s slides for the State of the Word were actually built with Gutenberg.</p>\n\n\n\n<p>The code for the presentation <a href=\"https://github.com/wordpress/slides\">is on Github</a> for anyone to use.</p>\n\n\n\n<p>It\'s been an interesting and challenging year for WordPress. With that observation, Matt opened up the question period.</p>\n\n\n\n<p>Here\'s the complete video:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>And the Q&A; session:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p><em>Photo of Matt by <a href=\"https://twitter.com/rzen\"><NAME></a> for Post Status. Thank you to <a href=\"https://twitter.com/dimensionmedia\"><NAME></a> for live-tweeting the event while I wrote this.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 02 Nov 2019 22:30:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"WordPress.org blog: 2019 Annual Survey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7460\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/news/2019/11/2019-annual-survey/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1735:\"<div class=\"wp-block-image\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2019/11/image-12-1.png?fit=632%2C281&ssl=1\" alt=\"\" class=\"wp-image-7472\" width=\"329\" height=\"146\" /></div>\n\n\n\n<p>It’s time for our annual user and developer survey! If you’re a WordPress user or professional, we want your feedback.</p>\n\n\n\n<p>It only takes a few minutes to <a href=\"https://wordpressdotorg.survey.fm/wordpress-2019-survey-english\">fill out the survey</a>, which will provide an overview of how people use WordPress. We’re excited to announce that this year, for the first time, the survey is also available in 5 additional languages: <a href=\"https://wordpressdotorg.survey.fm/wordpress-2019-survey-french\">French</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2019-survey-german\">German</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2019-survey-japanese\">Japanese</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2019-survey-russian\">Russian</a>, and <a href=\"https://wordpressdotorg.survey.fm/wordpress-2019-survey-spanish\">Spanish</a>. Many thanks to the community volunteers who helped with the translation effort!</p>\n\n\n\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link has-background has-vivid-cyan-blue-background-color\" href=\"https://wordpressdotorg.survey.fm/wordpress-2019-survey-english\">Take the WordPress survey!</a></div>\n\n\n\n<p>The survey will be open for 4 weeks, and results will be published on this blog. All data will be anonymized: no email addresses or IP addresses will be associated with published results. To learn more about WordPress.org’s privacy practices, check out the <a href=\"https://wordpress.org/about/privacy/\">privacy policy</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 02 Nov 2019 21:15:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: BoldGrid Joins Forces with W3 Edge, Acquires W3 Total Cache Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95188\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://wptavern.com/boldgrid-joins-forces-with-w3-edge-acquires-w3-total-cache-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5167:\"<p><a href=\"https://www.boldgrid.com\">BoldGrid</a>, a WordPress product and services company, announced today that it has joined forces with <a href=\"https://www.w3-edge.com/\">W3 Edge</a>, the parent company behind the popular <a href=\"https://wordpress.org/plugins/w3-total-cache/\">W3 Total Cache</a> (W3TC) plugin. BoldGrid acquired the W3TC plugin and retained its creator, <NAME>, along with its development and support staff. The two teams will operate as sister companies but jointly work on the plugin’s future roadmap.</p>\n\n\n\n<p>“There are some things a larger team can accomplish for Total Cache that we are targeting right now,” said <NAME>, development manager at BoldGrid. “After a few more releases of core Total Cache features, the TC team is slated to help accelerate our CRIO Theme Framework on the BoldGrid side.”</p>\n\n\n\n<p>BoldGrid has a range of plugins, themes, and services for WordPress sites. The company offers plugins like its post and page builder, themes such as its “super theme” CRIO, and services like testing and performance coaching.</p>\n\n\n\n<p>W3 Edge’s primary product is its W3TC plugin, which serves as the caching solution for over one million WordPress installs. It is one of the most-used caching plugins available in the official WordPress plugin directory. </p>\n\n\n\n<p>Many competing caching plugins have been gaining considerable exposure in the past few years. Some of those are free. Others, such as WP Rocket, have captured large segments of the premium market. Managed WordPress hosts also generally offer built-in caching solutions as part of their strategy to build their customer numbers. The question is whether this move will provide growth for W3TC and any related products or services.</p>\n\n\n\n<h2>The Future of the W3TC Plugin</h2>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/10/w3tc-stats.png?ssl=1\" target=\"_blank\" rel=\"noreferrer noopener\"><img /></a>Screenshot of a new Caching Statistics page for W3 Total Cache</div>\n\n\n\n<p>The BoldGrid team has plans to continue developing the W3TC plugin. “Since joining with the awesome team at W3, we have been working to add in some slick new features like Caching Statistics and Lazy Loading,” said <NAME>, product manager at BoldGrid.</p>\n\n\n\n<p>“We are also looking to partner with theme and plugin developers to ensure the widest range of compatibility for the product, and the WordPress Community,” said Jackson. It is unclear what such partnerships would entail and the type of compatibility needed from third-party developers. The BoldGrid team did not provide further details.</p>\n\n\n\n<p>For some users, the W3TC interface and options can be overwhelming. “User Experience is at the top of the list of things we are working on,” said <NAME>, BoldGrid’s marketing manager. “It can be challenging for some users to fully understand and utilize all the powerful features. We will soon be adding an on-boarding and configuration guide to the plugin that will hopefully make the plugin accessible to more users.”</p>\n\n\n\n<h2>Building Trust After a Rocky Past</h2>\n\n\n\n<p>Despite setbacks in 2016, the W3TC plugin has maintained over one million active installs over the past three years. In March of that year, there was <a href=\"https://wptavern.com/frederick-townes-confirms-w3-total-cache-is-not-abandoned\">concern that the plugin was abandoned</a> after no activity for seven months. The plugin was not working for many users on the latest version of WordPress.</p>\n\n\n\n<p>Much of the issue seemed to stem from not yet knowing how to scale such a popular product with a small team.</p>\n\n\n\n<p>Later in September of 2016, a <a href=\"https://wptavern.com/high-risk-xss-vulnerability-discovered-in-w3-total-cache-plugin\">high-risk XSS vulnerability</a> was discovered with the plugin. The plugin developer <a href=\"https://wptavern.com/w3-total-cache-0-9-5-packages-xss-vulnerability-patch-with-major-update\">patched the plugin</a> quickly. However, the updated versions introduced new bugs and a poor experience for many users.</p>\n\n\n\n<p>While things seem to have been running more smoothly in recent years, there is still some level of distrust within the inner WordPress community. When asked how they are prepared to address past issues and assure they are looking out for the best interests of users in the future, the BoldGrid team said that security is a top priority. They also expressed their openness to community feedback for improvement.</p>\n\n\n\n<p>“As with all big plugins, there are challenges with functionality, features, and security,” said Jackson. “With a bigger team and additional Quality Assurance resources we feel that Total Cache will continue to improve in all the major areas. We have also introduced a public pull request process to facilitate additional feedback and bug fixes. Though you can’t ever guarantee security, our team is very committed and respects our responsibilities to our million-plus users.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Nov 2019 14:01:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WordPress.org blog: The Month in WordPress: October 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7449\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2019/11/the-month-in-wordpress-october-2019/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6217:\"<p>October has been a busy month with preparations for WordCamp US as well as the next major release of WordPress. Read on to find out about all that work and more.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.2.4</h2>\n\n\n\n<p>On October 14, <a href=\"https://wordpress.org/news/2019/10/wordpress-5-2-4-security-release/\">WordPress 5.2.4 was released</a> as a security release fixing 6 security issues. The fixes were backported to earlier versions of WordPress as well, so they’re available for sites not yet upgraded to 5.2.</p>\n\n\n\n<p>This kind of release is only possible because people <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">report security issues responsibly</a> so that the Core team can address them. You can find out more specific information about the fixes on <a href=\"https://wordpress.org/support/wordpress-version/version-5-2-4/\">the release documentation page</a>.</p>\n\n\n\n<p>Want to get involved in building WordPress Core? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>WordPress 5.3</h2>\n\n\n\n<p>WordPress 5.3 has seen active development over the past month, with a release date set for November 12. You can <a href=\"https://wordpress.org/news/2019/10/wordpress-5-3-rc3/\">download and test the release candidate</a> to get a taste of what to expect—this is largely what final release will look like.</p>\n\n\n\n<p>This is a big release with a number of exciting and important updates. Among them are <a href=\"https://make.wordpress.org/core/2019/10/18/noteworthy-admin-css-changes-in-wordpress-5-3/\">significant changes to the look of the admin interface</a>, enhancements to the block editor that will affect developers of <a href=\"https://make.wordpress.org/core/2019/09/27/block-editor-theme-related-updates-in-wordpress-5-3/\">themes</a> and <a href=\"https://make.wordpress.org/core/2019/09/24/new-block-apis-in-wordpress-5-3/\">plugins</a>, <a href=\"https://make.wordpress.org/core/2019/10/09/introducing-handling-of-big-images-in-wordpress-5-3/\">large improvements</a> to the way that Core <a href=\"https://make.wordpress.org/core/2019/10/11/updates-to-image-processing-in-wordpress-5-3/\">processes images</a>, updates to cater for some functions <a href=\"https://make.wordpress.org/core/2019/10/11/wordpress-and-php-7-4/\">specific to PHP 7.4</a>, improvements to the <a href=\"https://make.wordpress.org/core/2019/09/25/whats-new-in-site-health-for-wordpress-5-3/\">Site Health feature</a>, and many more improvements that are all documented in <a href=\"https://make.wordpress.org/core/2019/10/17/wordpress-5-3-field-guide/\">the WordPress 5.3 Field Guide</a>.</p>\n\n\n\n<p>In addition to these Core updates, the upcoming major release will also include the new default theme, <a href=\"https://make.wordpress.org/core/2019/09/06/introducing-twenty-twenty/\">Twenty Twenty</a>.</p>\n\n\n\n<p>Want to get involved in building WordPress Core? You can contribute by <a href=\"https://make.wordpress.org/core/handbook/testing/\">testing the upcoming release</a>, as well as follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>New Core Committers</h2>\n\n\n\n<p><a href=\"https://meta.trac.wordpress.org/ticket/4760\">Three new committers have been added</a> to the WordPress Core organizational structure. Core committers are individuals who have direct access to the Core development code repositories in order to publish updates to the software.</p>\n\n\n\n<p>The new committers are <NAME> (<a href=\"https://profiles.wordpress.org/ianbelanger/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>ianbelanger</a>), <NAME> (<a href=\"https://profiles.wordpress.org/timothyblynjacobs/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>timothyblynjacobs</a>), and <NAME> (<a href=\"https://profiles.wordpress.org/joedolson/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>joedolson</a>). While Ian’s commit access is specifically for Core themes, both Timothy and Joe have full access to Core. This type of access is only given to individuals who have proved themselves with high-quality contributions and a deep understanding of how the WordPress project works.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>The Accessibility Team is <a href=\"https://make.wordpress.org/accessibility/2019/10/26/accessibility-team-representatives-election-for-2020/\">looking for new team representatives</a> for 2020.</li><li><a href=\"https://2019.us.wordcamp.org/\">WordCamp US</a> is happening on November 1-3 and is set to be the largest WordPress event in North America.</li><li>WordCamp Asia, the first flagship event in the region, <a href=\"https://twitter.com/WordCampAsia/status/1187079744409526272\">will be rolling out their next batch of ticket sales</a> on November 1.</li><li>Work continues on Gutenberg, with <a href=\"https://make.wordpress.org/core/2019/10/30/whats-new-in-gutenberg-30-october/\">the latest update</a> including significant updates to the Cover block and many other areas.</li><li>The WordCamp Europe team have published <a href=\"https://make.wordpress.org/community/2019/10/27/update-contributor-orientation-tool/\">an update about the Contributor Orientation tool</a> they worked on earlier this year.</li><li>The WordCamp US team has published <a href=\"https://make.wordpress.org/community/2019/10/28/grow-your-meetup-survey-results-for-wcus/\">the results of their Grow Your Meetup survey</a> ahead of their 2019 event.</li><li>The Theme Review Team <a href=\"https://make.wordpress.org/themes/2019/10/22/meeting-notes-for-tuesday-22nd-october-2019/\">is making plans</a> to implement a curated page for displaying featured themes in the Theme Directory.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Nov 2019 07:28:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Akismet: Version 4.1.3 of the Akismet WordPress Plugin is Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=2058\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://blog.akismet.com/2019/10/31/akismet-plugin-4-1-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:640:\"<p>Version 4.1.3 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available. It contains the following changes:</p>\n\n\n\n<ul>\n<li>We’ve improved the activation and setup process.</li>\n<li>We’ve fixed a bug that could have allowed an attacker to make you recheck your Pending comments for spam.</li>\n</ul>\n\n\n\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 31 Oct 2019 15:59:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: <NAME> Launches DSKO, a Discovery Network for Creators and Brands\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95158\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wptavern.com/jason-schuller-launches-dsko-a-discovery-network-for-creators-and-brands\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6705:\"<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>On October 23, <NAME> officially announced that his new side project built on WordPress was open to the public. The idea behind <a href=\"https://dsko.app\">DSKO</a> was to solve the issue of discoverability for creators and brands across various networks and websites by consolidating everything into a single space.</p>\n\n\n\n<p>The website offers an easy signup process. DSKO currently features 220 profiles, but that number is sure to grow. For now, the site is purely about discovering creators and finding out how to contact or follow them through website or social media links.</p>\n\n\n\n<p>The site allows profile creators to set up a bio, image, and even video, such as the one seen on the <a href=\"https://dsko.app/artsnacks/\">ArtSnacks profile</a>. It will be interesting to see how people use this new WordPress-based site as a branding tool.</p>\n\n\n\n<p>“I’ve been asked what the incentive is to re-visit DSKO after you’ve created a profile,” said Schuller in a <a href=\"https://twitter.com/jasonpatricksc/status/1189604540443578368\">Twitter update</a>. “I have features (some nearly finished) in the works which will make that crystal clear.”</p>\n\n\n\n<p>Schuller has been active within the WordPress community for over a decade. He originally launched <a href=\"https://press75.com/\">Press75</a>, a WordPress theme shop, in 2008 with a focus on video-centric themes. Like several others in the theme business at that time, he had the fortune of good timing. From 2008 through the next couple of years, theme companies enjoyed little competition and a wide-open market for exploration. However, business growth plateaued after a while.</p>\n\n\n\n<p>“I quickly realized that my perception of how to properly launch and scale a project had been skewed by my experience with my WordPress theme business,” wrote Schuller in a <a href=\"https://medium.com/the-second-time-around/a-brief-history-of-a-wordpress-theme-business-3847e16fcba4\">history of his theme business</a>. “With Press75, I just built it and they came — a strategy that surprisingly doesn’t work so well the majority of the time for new ventures.”</p>\n\n\n\n<p>Unable to duplicate his early success and unhappiness with the direction of WordPress theming, he sold Press75 in 2014. Since then, he has moved onto new ventures such as <a href=\"https://leeflets.com/\">Leeflets</a>, a single-page website creator on top of WordPress.</p>\n\n\n\n<p>“There seems to be growing interest in minimalist single-page website solutions for simple profiles (e.g. <a href=\"https://carrd.co/\">Carrd.co</a>, <a href=\"https://linktr.ee/\">Linktr.ee</a>, etc),” said Schuller. “After building [Leeflets] last year, it occurred to me that while all of these options are great for creating an individual site/page, none of them enable the people and brands who are using them to be discovered beyond organic search via Google or sharing a URL across various other networks. My goal was to see if I could solve that by creating a discovery network for people and brands.”</p>\n\n\n\n<p>The inspiration behind DSKO came from projects like existing single-page website builders. Schuller said the grid design and navigation were inspired by the image-sharing site <a href=\"https://unsplash.com\">Unsplash</a> while Twitter inspired the profiles. “I wanted it to be extremely quick and easy to browse, find and consume profiles,” said Schuller.</p>\n\n\n\n<p>While borrowing concepts from popular projects already in the wild, he wanted to put his spin on them. One interesting custom feature is the ability to connect profiles on the DSKO site to other profiles. For example, a person (creator) can connect his or her profile to a separate brand profile. This helps with the discoverability aspect by allowing visitors to browse connected profiles.</p>\n\n\n\n<h2>The Technology Running the Network</h2>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>DSKO is a completely front-end interface built on top of WordPress and shows what can be done without sending users to the WordPress backend.</p>\n\n\n\n<p>“Essentially, DSKO boils down to users, profiles, categories, and tags which makes WordPress the perfect framework,” said Schuller. “The functionality was there, I just needed to create a custom front-end experience to manage it all. Most of my recent projects have utilized WordPress this way, and every time I make something new, I borrow aspects from the previous project.” This allows Schuller to bring a project from the concept stage to production more quickly.</p>\n\n\n\n<p>The only third-party plugin running on the site is <a href=\"https://www.admincolumns.com/\">Admin Columns Pro</a>, which makes it easier for Schuller to manage users and content based on custom fields.</p>\n\n\n\n<p>For those who create a profile on DSKO, one uncommon feature is that there is no password field. Instead, the site provides a “magic” login link. “Essentially, by removing the concept of a password, I’ve simplified the onboarding process and am validating a real email address (ensuring a real user) at the same time.”</p>\n\n\n\n<p>The system generates a unique login token when the user creates a new account. The token is sent as a link to the user email address. The link is used to log into the site. When a session expires or a user logs out, users can get a new link by re-entering their email address.</p>\n\n\n\n<p>Currently, the code behind the site is not available to the public. However, Schuller did say that he would consider opening up the platform in the future. Starting from a more mature codebase could help other developers in the WordPress space build interesting projects where similar features are needed.</p>\n\n\n\n<h2>Beyond DSKO: The Present and Future for Schuller</h2>\n\n\n\n<p>Schuller is currently on contract with 10up. He primarily works with them on the <a href=\"https://www.microsoft.com/inculture/\">Microsoft In Culture</a> project. “[It] has been an amazing project to be a part of,” said Schuller. Because the contract is only part-time work, it leaves him enough creative freedom to experiment with ideas like DSKO.</p>\n\n\n\n<p>Another creative pursuit is an upcoming WordPress plugin that he’s building along with <NAME>. It will allow site owners to map custom domains to any post or page on a single WordPress install. The idea was inspired by his work with Leeflets. “It’s going to be the first WordPress product I’ve been a part of since I sold my theme business in 2014.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 30 Oct 2019 18:32:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"WordPress.org blog: WordPress 5.3 RC3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7439\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2019/10/wordpress-5-3-rc3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3086:\"<p>The third release candidate for WordPress 5.3 is now available!</p>\n\n\n\n<p>WordPress 5.3 is currently scheduled to be released on <strong><a href=\"https://make.wordpress.org/core/5-3/\">November 12 2019</a></strong>, but we need <em>your</em> help to get there—if you haven’t tried 5.3 yet, now is the time!</p>\n\n\n\n<p>There are two ways to test the WordPress 5.3 release candidate:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.3-RC3.zip\">download the release candidate here</a> (zip).</li></ul>\n\n\n\n<p>For details about what to expect in WordPress 5.3, please see the <a href=\"https://wordpress.org/news/2019/10/wordpress-5-3-release-candidate/\">first</a> and <a href=\"https://wordpress.org/news/2019/10/wordpress-5-3-rc2/\">second</a> release candidate posts.</p>\n\n\n\n<p>Release Candidate 3 contains improvements to the new About page, bug fixes for the new default theme, Twenty Twenty (see <a href=\"https://core.trac.wordpress.org/ticket/48450\">#48450</a>), and 9 fixes for the following bugs and regressions:</p>\n\n\n\n<ul><li>Four bugs in the block editor have been fixed (see <a href=\"https://core.trac.wordpress.org/ticket/48447\">#48447</a>).</li><li>Three Date/Time related bugs have been fixed (see <a href=\"https://core.trac.wordpress.org/ticket/48384\">#48384</a>).</li><li>A regression in <code>date_i18n()</code> has been fixed (see <a href=\"https://core.trac.wordpress.org/ticket/28636\">#28636</a>).</li><li>An accessibility color contrast regression for primary buttons when using alternate admin color schemes was fixed (see <a href=\"https://core.trac.wordpress.org/ticket/48396\">#48396</a>).</li></ul>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.3 and update the <em>Tested up to</em> version in the readme to 5.3. If you find compatibility problems, please be sure to post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a> so we can figure those out before the final release.</p>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/core/2019/10/17/wordpress-5-3-field-guide/\">WordPress 5.3 Field Guide</a> has also been published, which details the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 29 Oct 2019 21:16:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WPTavern: WordPress Businesses Should Send Out Press Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95161\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wptavern.com/wordpress-businesses-should-send-out-press-releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7961:\"<p>I have only been on the job for less than two months. In that time, one thing has become abundantly clear. The largest companies in the WordPress ecosystem send out press releases to news organizations such as WP Tavern. Small businesses may send an email with few details. Others send nothing at all.</p>\n\n\n\n<p>As a former business owner, I never thought about writing a statement to send to the press. Now that I am on the other side, I see how I missed huge opportunities to potentially get more coverage and build a relationship with the publications within the WordPress arena.</p>\n\n\n\n<p><NAME> of <a href=\"https://poststatus.com\">Post Status</a>, a competing publication of WP Tavern, agrees that companies are missing opportunities. “There are many easy wins in PR that only a few companies take advantage of in our space,” said Krogsgard.</p>\n\n\n\n<p>As a journalist, I am here to tell the truth, regardless of who or what the story is about. However, there will always be a part of me that wants to see every businesses within the WordPress space succeed. Therefore, this article is a tutorial that will help businesses within our space get their news items out to the public. Plus, the larger and more successful the WordPress community grows, the more potential WP Tavern has of growing its audience. It is healthy for the ecosystem on the whole.</p>\n\n\n\n<p>Because of this symbiotic relationship between the media and product creators, it is important that business owners have a good working relationship with the publications that are writing about them.</p>\n\n\n\n<h2>What Is a Press Release?</h2>\n\n\n\n<p>A press release is sometimes called a “press statement” or “news release.” It is an official statement from a company about a particular news item. In a sense, it is a news story itself. There are some publications in the larger world of journalism that routinely publish only the press releases sent to them.</p>\n\n\n\n<p>A press release can be in the form of an email, text file, PDF, or even video. Its purpose is to simply let the press know about your news.</p>\n\n\n\n<h2>Why Should Companies Put Together Press Releases?</h2>\n\n\n\n<p>On occasion, I get a message that says something along the lines of, “Hey, you’re giving the big businesses too much coverage. How about throwing the smaller folks a bone?” That is a fair question. However, what is often the problem is that this news by a smaller company may not be on a particular publication’s radar.</p>\n\n\n\n<p>Enter the press release.</p>\n\n\n\n<p>This is where smaller companies should sneak a peek at larger companies’ playbooks. Large businesses often have entire public relations (PR) or communications departments. Sometimes they only have one person in that role. What those PR positions are doing is getting the word out, and they are making sure the publications within the WordPress realm know about their news.</p>\n\n\n\n<p>Individuals or small companies need not hire someone for communications with the press. However, at least one person should serve as a representative and handle this role.</p>\n\n\n\n<p>There are many things happening in the WordPress world on any given day. Even with a press release, there is no guarantee that WP Tavern or another publication will publish your story. There is a guarantee that they won’t if they do not know about it.</p>\n\n\n\n<p>A press release is a way to get your foot in the door and should be a part of any company’s strategy. </p>\n\n\n\n<p>“I definitely prefer press packets for product launches, particularly if I can see the key features ahead of time,” said Krogsgard. “Press releases at the time of a news event is fine, but the best company PR is usually done by working with media outlets ahead of a release schedule.”</p>\n\n\n\n<p>Whether your news is covered will depend on several factors. The important thing, particularly for smaller businesses, is that you put yourself on a publication’s radar.</p>\n\n\n\n<p>The team here at WP Tavern will certainly appreciate your company passing along a press release, but do not limit yourself. Send it to other publications. Give podcast creators a copy. Most will be accepting of any news you send their way.</p>\n\n\n\n<h2>How To Write a Press Release</h2>\n\n\n\n<p>Press releases can take a few different forms, but there are some things that should be included with every statement that a business issues. </p>\n\n\n\n<p>The following is an outline of a basic press release. You can deviate from the formula a bit, but make sure you include the important information.</p>\n\n\n\n<h3>Contact Information</h3>\n\n\n\n<p>Journalists need to know how to get in touch with you or the appropriate representative for your company for potential follow-up questions. In the WordPress world, this will primarily be a name and email address. However, including something like your WordPress Slack username for text chats helps. </p>\n\n\n\n<p>Most of all, you should provide the best way to contact you.</p>\n\n\n\n<p>This also means being prepared to answer questions if and when you are contacted. Quotes are like gold to journalists. It is often the human element that we are after. The press release opens the door to a conversation.</p>\n\n\n\n<h3>Story Headline</h3>\n\n\n\n<p>Journalists get a lot of emails, notes, and so on. A press release should contain a headline that is both factual and grabs attention. It should be a brief summary of what news you want to share. It is no different than writing a blog post. In our fast-paced culture, you only have a moment to let someone know that your story is worth reading. Avoid headlines that look like click-bait, but tell why your news is newsworthy.</p>\n\n\n\n<p>Depending on the news, a sub-headline is often an extra piece of info that helps. A quick sentence or two that expands on the headline is sometimes necessary to fully explain why the press should continue reading.</p>\n\n\n\n<h3>Dateline</h3>\n\n\n\n<p>A press release should always include a dateline. There are two types of datelines. The first type is the date of the press release. This means journalists can move forward with the story.</p>\n\n\n\n<p>However, you can also put a future date in the dateline. This is common when you want to prepare publications for an upcoming story that you don’t want to publicly announce yet. This is called requesting a news embargo, which means that publications should sit on the story until that particular date.</p>\n\n\n\n<h3>Introduction or Lede</h3>\n\n\n\n<p>A lede is the opening paragraph of a story that answers the five W’s: who, what, when, where, and why. This is the moment you should let journalists know what the story is about. Get to the point in answering those five questions. </p>\n\n\n\n<h3>Body Copy</h3>\n\n\n\n<p>After introducing the story, you should stick to relevant information about the story. Any data or details that are important for the story should be included.</p>\n\n\n\n<p>“Another thing that’s really helpful is screenshots, or short video overviews, and other brand assets that can provide visual appeal to go alongside a story,” said Krogsgard of writing a compelling press statement. “Do you have a revamped interface? Well nicely packaged visual materials really help sell that to convince me that it’s worth covering — and also to use in the article myself if I do write about it.”</p>\n\n\n\n<h3>Company Bio or Info</h3>\n\n\n\n<p>Last but certainly not least is including a section that provides details about your company. Consider it a short biography. </p>\n\n\n\n<p>One of the worst things for a journalist covering a story is spending hours trying to dig up your company’s information online instead of working on the story. Providing that information up front is a huge help to the press. It also ensures we are getting your information correct.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 29 Oct 2019 19:49:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WPTavern: Not Attending WordCamp US 2019? How to Watch From Home\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95149\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://wptavern.com/not-attending-wordcamp-us-2019-how-to-watch-from-home\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3419:\"<p>For those of you unable to attend WordCamp US at St. Louis, Missouri, this weekend, the event will be <a href=\"https://2019.us.wordcamp.org/livestream/\">available for live streaming</a>. The conference runs from Friday, November 1, through Sunday, November 3. Friday and Saturday’s regular sessions, which do not include workshops, will be streamed. </p>\n\n\n\n<p>While previous events like <a href=\"https://wptavern.com/wordcamp-us-2018-livestream-tickets-now-available\">WordCamp US 2018</a> have always been available to watch for free, they required you to sign up before viewing. This year’s event is open with no such restriction. You can simply pick a streaming video and watch.</p>\n\n\n\n<p>There will be multiple livestreams running simultaneously based on the room the parallel sessions are happening in. The WordCamp organizers have already set up the livestream videos with YouTube. By going to the <a href=\"https://2019.us.wordcamp.org/livestream/friday/\">Friday livestream</a> or <a href=\"https://2019.us.wordcamp.org/livestream/saturday/\">Saturday livestream</a> page, you can set a reminder for any particular room you want to watch via the YouTube embed.</p>\n\n\n\n<p>There are many sessions planned for the <a href=\"https://2019.us.wordcamp.org/schedule/\">camp schedule</a>. The tough problem is going to be figuring out what to watch with overlapping streams from three rooms. All times on the schedule are in Central Time US (CST).</p>\n\n\n\n<p>If you have a question for a particular speaker, WordCamp US will have a volunteer social media team keeping an eye on the following hashtags on Twitter. The volunteers may ask your question if time permits for the session.</p>\n\n\n\n<ul><li><a href=\"https://twitter.com/hashtag/AskWCUS220\">#AskWCUS220</a> (Room 220)</li><li><a href=\"https://twitter.com/hashtag/AskWCUS230\">#AskWCUS230</a> (Room 230)</li><li><a href=\"https://twitter.com/hashtag/AskWCUS240\">#AskWCUS240</a> (Room 240)</li><li><a href=\"https://twitter.com/hashtag/AskSOTW\">#AskSOTW</a> (State of the Word)</li></ul>\n\n\n\n<h2>Watch Previous WordCamp US Speakers</h2>\n\n\n\n<p>If you can’t wait for this year’s sessions, you can view the <a href=\"https://wordpress.tv/event/wordcamp-us-2018/\">2018 sessions</a> from WordPress TV. It is a good way to get yourself in the mood for this year’s event and to look at how much WordPress has changed in the past year.</p>\n\n\n\n<p>One of the most interesting WordCamp videos is always the “State of the Word” presented by <NAME>, co-founder of WordPress. You can watch last year’s video below. What do you expect to see in this year’s talk?</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"embed-wrap\"></div>\n</div>\n\n\n\n<h2>How Will You Attend WordPress US 2019?</h2>\n\n\n\n<p>Are you planning on attending in person this year? Or, will you be among the many who are watching from home, the office, or elsewhere?</p>\n\n\n\n<p>Unfortunately, WP Tavern will not be able to cover the event in person this year. However, we will be watching from home like many of you. Feel free to drop your recommended must-watch sessions in the comments.</p>\n\n\n\n<p>If you are unable to attend or watch via livestream, the videos will be available on <a href=\"https://wordpress.tv/\">WordPress TV</a> and <a href=\"https://www.youtube.com/channel/UCpJf6LGZ0a4n9Lj4aVt9spg\">YouTube</a> to watch at your leisure.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 28 Oct 2019 17:18:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WPTavern: Automatic Image Alt Tags and More with Image SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95129\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wptavern.com/automatic-image-alt-tags-and-more-with-image-seo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8901:\"<div class=\"wp-block-image\"><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/10/image-seo.jpg?ssl=1\" target=\"_blank\" rel=\"noreferrer noopener\"><img /></a></div>\n\n\n\n<p>I had the opportunity to test the <a href=\"https://wordpress.org/plugins/imageseo/\">Image SEO plugin</a> over the past week. Image SEO is a plugin that connects to an accompanying online service that processes images uploaded to a WordPress installation. The plugin can automatically rename file names, create alt tags for screen readers, and optimize images for Pinterest.</p>\n\n\n\n<p>The plugin is one half of a Software as a Service (SaaS) product. To use the image processing features, you must sign up for an account on the <a href=\"http://imageseo.io/\">Image SEO website</a>. Currently, users are provided credits for processing 10 images for free to test out the service. After that, image processing requires a monthly or annual fee based on a set number of images. Pricing starts at 4.99€ per month for the lowest tier and ranges up to 59.99€ for the enterprise option. The service also offers one-time purchases for a given number of images.</p>\n\n\n\n<p>The Image SEO team went public with their plugin and service in April and have been refining the product since. <NAME>, co-founder and chief marketing officer, said a big part of the process was removing unnecessary features in favor of developing the core product and creating new features.</p>\n\n\n\n<p>“[<NAME>] asked me in December 2018 to come and work with him on a project,” said Volle. “They had developed an Image SEO auditing tool but they were not able to sell it. I went through the product, cut so many features, created a new narrative, asked for reviews, etc.” Volle’s work primarily centered around identifying user needs and figuring out what they would be willing to pay for the service.</p>\n\n\n\n<p>Volle said they use all the major facial recognition APIs available on the market, but they are not willing to share their secret recipe at this time. “We process the results with an algorithm we created to provide our users with the most relevant data possible for alts and names,” said Volle. “We are still working on the algorithm. The results should be more and more accurate in the future.”</p>\n\n\n\n<p>When I come across a new WordPress plugin or theme with the term “SEO” in the name, I cringe. It is used so often as a marketing term that it has lost meaning for me. I’d like to ignore it like a bad commercial on TV, but it’s there in the name. I know it is probably smart to use it for marketing purposes. Despite my misgivings about the name, I gave Image SEO a serious look and found that I liked its potential.</p>\n\n\n\n<p><em>Would I use the plugin?</em> Probably not on a personal blog where I control all of the content. I am a stickler for controlling every aspect of my own content. I am not within the target audience for the plugin.</p>\n\n\n\n<p>However, I would use the plugin for a large site with multiple writers. It would work well as part of a quality control system.</p>\n\n\n\n<p>My primary interest was in how well Image SEO auto-created image alt tags. I have little interest in what search engine benefits the plugin might provide. I was more interested in how it could help describe images for users who use a screen reader. A plugin that can accurately add alt tags for users on assistive technologies could be useful in an environment with multiple writers. I have worked with clients in the past where such a plugin would have been a welcome addition to the site.</p>\n\n\n\n<p>This is not to say the plugin isn’t useful for single-person sites or those with a small group of writers. It depends on whether the individual site could use it. If needed, I would recommend the Image SEO plugin to anyone.</p>\n\n\n\n<p>The free service is currently only available in English. If you need alt tags in another language, you will need to go with a premium plan. This would be better opened up to all languages. It is hard to vouch for the accuracy of non-English alt tags when they are not available in the free plan.</p>\n\n\n\n<h2>How Well Does the Plugin Work?</h2>\n\n\n\n<p>The plugin gives you the option of automatically renaming image file names and setting alt tags. I would recommend using both of these options. File names like <code>IMG_2019_345.jpg</code> do not tell search engines or users anything about an image, and the automatic alt tags are the most useful feature of the plugin.</p>\n\n\n\n<p>The plugin doesn’t make you work to get results. I tested out 60 images (10 free plus an extra 50 provided by the Image SEO team). On the whole, the results were fairly accurate.</p>\n\n\n\n<p>However, not every image passed the accuracy test. Take note of the following screenshot with an image of two people standing at the end of some hallway or structure. I’m not exactly sure what they are in, and neither was the service. The resulting alt tag was “Archives – A very dark water – Art.”</p>\n\n\n\n<img />A rare inaccurate alt tag added by the plugin.\n\n\n\n<p>I had to throw a few curveballs at the software to see how it stood up. Technologically, humans are not at the pinnacle of artificial intelligence and recognition software, but we are constantly improving. The service will undoubtedly improve over time with anything thrown at it.</p>\n\n\n\n<p>My biggest gripe with the plugin is that it automatically prepended the post/page title to the front of every image’s alt tag when uploading via the post editor. There is no reason to do this. The post title often has nothing to do with describing the image for screen readers. I could see this being useful for product images on an eCommerce site. This feature should be opt-in. It would quickly become irritating to manually remove the post title from each image.</p>\n\n\n\n<p>The plugin also allows you to add a description, ID, and other elements for use with Pinterest. I also could not figure out how to get the attributes to show for my images on anything but attachment pages. It was unclear how this feature worked on the front end of the site. Admittedly, it did not bother me because I had no interest in this aspect of the plugin.</p>\n\n\n\n<h2>Bulk Optimizing Images</h2>\n\n\n\n<div class=\"wp-block-image\"><img />Bulk optimizing cat pictures, the most useful type of images for internet usage.</div>\n\n\n\n<p>The Image SEO plugin allows users to bulk optimize images across the entire site. The bulk optimization tool also allows you to preview the results before deciding on whether you want to make the changes. This can be an extremely powerful tool if you are running a site with a lot of old images with missing alt tags.</p>\n\n\n\n<p>The biggest thing to watch out for is that running this tool can eat up a ton of image credits. </p>\n\n\n\n<p>A fair word of warning: even the optimization preview uses image credits. I hope this limitation is addressed in some way because it is not clear up front. Using the feature can catch you off guard and drain money if you simply want to preview the optimization prior to deciding whether you want to go through with the changes.</p>\n\n\n\n<p>The textual description on the bulk optimization page may even lull you into a false sense of security. It reads, “No worries, you can get a preview of the results before going further.” Fortunately, I was running this on a free account and did not lose real dollars over it.</p>\n\n\n\n<p>It will take a bit of time to run, depending on the number of images, but the bulk optimization tool works flawlessly.</p>\n\n\n\n<h2>How Does the Code Stack Up?</h2>\n\n\n\n<p>I see little reason for concern with the code. The developers have a clear architecture and hierarchy. It is forward-thinking and uses modern PHP practices.</p>\n\n\n\n<p>The one caveat is that the plugin does not use the core WordPress HTTP API for handling remote requests to their service. Users without cURL enabled on their site would be unable to use the plugin, which is likely not an issue for most people. The team said they went with a custom implementation so they could easily deploy their project on other PHP projects and not be limited by tying the code to WordPress. They have reported no problems with customers thus far.</p>\n\n\n\n<h2>The Final Verdict</h2>\n\n\n\n<p>There is a lot to like about the plugin. If you are in it for the SEO benefits, having a system in place to automatically rename ugly image file names and create fairly accurate alt tags, you may find this plugin useful.</p>\n\n\n\n<p>The plugin is not 100% accurate by any means, but you won’t find that level of accuracy anywhere. With the 60 images I threw at it, it performed well. The pricing model also looks fair for what the service offers.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 25 Oct 2019 19:53:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WPTavern: GoDaddy Launches eCommerce Hosting Plan in Partnership with WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95119\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://wptavern.com/godaddy-launches-ecommerce-hosting-plan-in-partnership-with-woocommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3955:\"<p>GoDaddy launched an eCommerce tier for their <a href=\"https://www.godaddy.com/hosting/wordpress-hosting\">managed hosting plans</a> on October 22. The new tier launched in partnership with WooCommerce and offers over $1,500 of commercial extensions and themes for setting up an online shop.</p>\n\n\n\n<p>The eCommerce plan utilizes GoDaddy’s onboarding process available with all managed hosting plans. The system automatically sets up the user’s online shop based on answers provided during onboarding. This process eases the burden of setting up a fully-functional eCommerce website for users who are new to working with WordPress and WooCommerce. </p>\n\n\n\n<p>GoDaddy also sets up and maintains a free SSL certificate, a necessity for handling secure payments, as long as the site continues using their managed hosting. This service is available with some of their other managed hosting plans but not the lower tiers.</p>\n\n\n\n<p>It makes sense that GoDaddy would try to carve out a slice of the WooCommerce pie now that the plugin is powering 30% online shops around the world.</p>\n\n\n\n<p>Neither GoDaddy nor Automattic, the parent company of WooCommerce, has released the details of what the partnership entails. <NAME>, GoDaddy’s head of WordPress Ecosystem and Community, confirmed the two companies did have an official partnership.</p>\n\n\n\n<p>The available list of bundled WooCommerce extensions includes the following, but it is unclear what other extensions are available (official extensions number in the hundreds). Campbell said that some extensions are still rolling out on the platform.</p>\n\n\n\n<ul><li>Advanced Notifications</li><li>WooCommerce Brands</li><li>Checkout Field Editor</li><li>WooCommerce Deposits</li><li>Follow-Ups</li><li>WooCommerce Points and Rewards</li><li>WooCommerce Pre-Orders</li><li>Product Add-Ons</li><li>Product Vendors</li><li>Min/Max Quantities</li><li>Product CSV Import Suite</li><li>Memberships</li><li>Bulk Stock Management</li><li>Subscriptions</li><li>WooCommerce Bookings</li><li>UPS & USPS Shipping Methods</li></ul>\n\n\n\n<p>There are a few popular add-on plugins in the mix, but many store owners could need to purchase additional extensions to build their ideal online shop. Setup costs could be steeper than some customers anticipate. Official WooCommerce extensions can range between free and $299 per year.</p>\n\n\n\n<p>The plan also makes several premium <a href=\"https://wordpress.org/themes/storefront/\">Storefront</a> child themes available to customers. Like extensions, there is currently no public list of which themes are included with hosting.</p>\n\n\n\n<p>The new eCommerce tier runs on the same managed hosting system as other plans, which all allow site owners to run WooCommerce.</p>\n\n\n\n<p>“From an ease-of-setup standpoint, eCommerce site owners will definitely benefit from the simplified onboarding process that helps them through setting up their store,” said Campbell. (Read our <a href=\"https://wptavern.com/inside-look-at-godaddys-onboarding-process-for-managed-wordpress-hosting\">review of GoDaddy’s onboarding process</a>.)</p>\n\n\n\n<p>Aside from potential help from the onboarding process, the value-add for going with the eCommerce hosting tier is directly tied to the bundled WooCommerce extensions and themes. Without an official list available, it is hard to speculate whether the upgrade from the next lowest tier, Ultimate, is worth it. The Ultimate plan runs $5 cheaper each month ($60/year). It is virtually the same plan minus the WooCommerce extensions. Plus, you can run a second website on Ultimate. </p>\n\n\n\n<p>Shelling out the extra dollars for the eCommerce tier comes down to personal choice. Whether GoDaddy is offering an extension or theme that would cost more than the $60 in savings each year should play heavily into that decision. A single commercial extension or theme will likely exceed that cost.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Oct 2019 22:23:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WPTavern: Possibilities of a CMS in the Spatial Computing Future\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wptavern.com/possibilities-of-a-cms-in-the-spatial-computing-future\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10303:\"<p>In my role at WP Engine, I have the opportunity to travel the world serving as an ambassador for new and interesting ways of using WordPress. I was recently in Raleigh, North Carolina, at All Things Open talking about the possibilities of a CMS in the spatial computing future. This was a lofty topic for 45-minute talk, so I thought I’d share a more in-depth look at a new way to build Extended Reality (XR) experiences with WordPress using a headless approach.</p>\n\n\n\n<h2><strong>The Headless Craze</strong></h2>\n\n\n\n<p>I think many of us see headless primarily as a way to make our sites faster and decouple them from the CMS that controls our content. While true in some cases, this is probably not the most compelling lens to view this concept in when we consider what this means for native apps and Augmented, Virtual and Mixed Reality, more broadly defined as Extended Reality.</p>\n\n\n\n<p>In order to understand how WordPress can power XR experiences we must take a step back and understand what key features developers and designers desire in interactive applications.</p>\n\n\n\n<h2><strong>What is the core appeal of a CMS?</strong></h2>\n\n\n\n<p>Zooming out and looking at what a CMS is at its core highlights a few key features that make my future-looking imagination race. A CMS can be broadly defined as:</p>\n\n\n\n<ul><li>post/page data</li><li>meta associated with data like users and posts</li><li>a secure user system</li><li>a rich content editor</li><li>extendability through plugins/themes/etc. </li></ul>\n\n\n\n<p>WordPress shines brightly across this entire spectrum and, pairing that with open-source flexibility, you can build whatever you can dream. User systems and content are key requirements in interactive and media-rich applications such as XR. An open-source solution like WordPress gives developers greater freedom and more control over the source code and the software meaning they can tweak it to perform how they want, unrestricted by licensing. Another level of freedom was achieved when the new Gutenberg editor was merged into WordPress 5.0, further democratizing the power of the world’s most popular CMS.</p>\n\n\n\n<h2><strong>Possibilities with the New WordPress Editor</strong></h2>\n\n\n\n<p>We’ve spent a lot of time thinking through the front-end benefits in a unified way to control markup using blocks. I think one aspect of the new WordPress editor that has largely been overlooked in front-end development is the data structure of the blocks themselves. </p>\n\n\n\n<p>Pulling data via the REST API typically returns the final markup of a post. This makes it hard for non-html based applications to parse or use the data. You can certainly sanitize the final output, but it doesn’t provide confidence going forward and often removes important context.</p>\n\n\n\n<p>Before a post renders markup in the front end, there are valuable attributes used to determine that final markup. These options are often just as useful to a non-browser application as they would be for a browser-based experience; it’s just a matter of making sure the content is sanitized for your purposes.</p>\n\n\n\n<p>Let’s imagine we have an audio block with the attributes of <code>src</code>, <code>loop</code>, <code>autoplay</code>, etc. Those attributes are just as important to a non-browser application that expects the same decisions to be made at runtime. By querying a Gutenberg post, one can pull the audio file and also the attributes of how it should behave, leading to the application being unified with browser behavior.</p>\n\n\n\n<p>In the not too distant future, the physical and digital worlds will continue to blend together. As younger generations increasingly interact in ways other than through screens, keyboards, and mice, we should probably begin to create content with that future in mind. Do we really want all that markup saved? Is it even important? If it is, maybe that attribute should be saved, keyed, and exposed via JSON. Markup is really only useful to the front-end rendering.</p>\n\n\n\n<h2><strong>Sound-Only AR Blog Reader Concept</strong></h2>\n\n\n\n<p>Bose is pioneering an interesting approach to augmented reality. They have quickly been updating their product offerings to include 6 Degrees of Freedom (6DoF) sensors inside their headphones and sunglasses to power sound-only AR experiences. This gives us three important mechanics for XR; 6DoF head tracking, private sound experiences, and gesture recognition. I decided to use this technology to illustrate the potential in the data structure of Gutenberg blocks. </p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/10/bose_ar_glasses.jpg?w=627&ssl=1\" alt=\"photo of Bose AR sunglasses\" /></div>\n\n\n\n<p>Using the <a href=\"https://github.com/royboy789/gutenberg-object-plugin\">Gutenberg Object Plugin</a> open-sourced and built by <NAME> and contributors, I was able to expose the attribute data in a REST friendly way. I was then able to shift my focus on building mechanics and an MVP application to read a blog without sight. The application puts buttons in 3D space around the visitor. To the right, a “Next Post” button. Directly in front of them, a post body button that plays back a reading of the post data. The voice-to-text technology was made possible by using the <a href=\"https://wordpress.org/plugins/amazon-polly/\">Amazon AI Plugin for WordPress</a>. </p>\n\n\n\n<p>When double-tapping on the frame of the glasses while facing the post body, a voice prompts the visitor to use a nod gesture to playback the post audio. Within 24 hours of sketching the idea, I had a working proof of concept and I attribute that largely to not having to figure out how to prepare my data. Blocks and JSON did it all for me!</p>\n\n\n\n<p>The following image is a sketch of the concept along with the final product. </p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/10/sketch_of_AR_reader_idea.jpg?w=627&ssl=1\" alt=\"sketch of Bose AR blog reader.\" /></div>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/10/bose_ar_blog_reader.jpg?w=627&ssl=1\" alt=\"final design of Bose AR blog reader prototype.\" /></div>\n\n\n\n<h2><strong>Blocks in Traditional Augmented Reality</strong></h2>\n\n\n\n<p>Spatializing blocks was interesting to me, so I built another proof of concept that demonstrates how 3D prefab objects in a game engine can be associated with 2D blocks on a webpage. Below is a screenshot of a Gutenberg post rendered around my hotel room.</p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/10/gutenberg_shared_properties.jpg?w=627&ssl=1\" alt=\"Example showing relation of website and AR experience.\" /></div>\n\n\n\n<p>While a literal 1:1 representation of a webpage in AR illustrates that we can couple our design decisions in and out of a browser, I think we can go a step further. A block can represent many things; so why not use custom blocks to abstract 3D ideas?</p>\n\n\n\n<h2><strong>Non-Standard File Types and Abstracting 3D Objects</strong></h2>\n\n\n\n<p>HTML has a finite list of file types allowed out of the box. That is not to say we are limited to only those options. WordPress is flexible enough to extend to others by simply adding allowed types. </p>\n\n\n\n<p>I’ve been building a music game called <a href=\"https://broken.place\">Broken Place</a> that allows players to interact with real-time music in AR. The sound engine is running an open-source programming language called Pure Data (PD) that has a very specific file type that only it can read. In WordPress, I am managing post content in a custom post type called “songs” where players can upload their PD patch. Players simply log into the website as a contributor user role and upload their patch. The song post is queried from the native app and the patch is loaded. </p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/10/broken_place_ar_screenshot.jpg?w=627&ssl=1\" alt=\"An Augmented reality synthesizer on a beach\" /></div>\n\n\n\n<p>The content submission options open the potential of allowing users to design their own layouts for music interfaces. Imagine in the graphic below, that each of the 3D knobs pictured were associated with a Gutenberg block called “Knob” and each of those knobs have an attribute associated with the sound message being sent to the audio engine. Content creators could determine how the sound messages are mapped in a grid using the column block. When you nest blocks within a column block, the REST response also nests the objects as children of the block and logic can be applied using the JSON structure.</p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/10/broken_place_vr.jpg?w=627&ssl=1\" alt=\"A synthesizer interface in VR\" /></div>\n\n\n\n<h2><strong>Narrative Design Potential</strong></h2>\n\n\n\n<p>In post data, we are telling stories; some informational, some personal, but they serve as thought capsules. I dream of a future where posts are much more than just text and images on a screen. Spatializing content provides amazing opportunities for narrative design. I’ve seen this potential represented in the <a href=\"https://wptavern.com/wordpress-amp-plugin-version-1-2-introduces-gutenberg-powered-amp-stories-editor\">AMP Stories</a> and hope that structure could help inspire stories told within 3D physical spaces. </p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/06/AMP-stories-editor.png?ssl=1\" alt=\"image of AMP Stories block\" /></div>\n\n\n\n<p>Imagine the same post structure of AMP stories, but for 3D spaces that you can drop in your home or office. <a href=\"https://hubs.mozilla.com/\">Mozilla Hubs</a> is leading the charge in collaborative XR spaces open to all devices and I see interesting potential in combining a WordPress narrative design for Mozilla Hubs to allow shared storytelling experiences. </p>\n\n\n\n<p>I’m excited to continue exploring new ways of using headless WordPress to power XR experiences and help usher in an entirely new era in how we interact with and create digital content.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Oct 2019 13:00:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WPTavern: Curated List of Featured Themes Coming to the Theme Directory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94278\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/curated-list-of-featured-themes-coming-to-the-theme-directory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6712:\"<p>Themes are the face of WordPress.</p>\n\n\n\n<p>Like it or not, the average user is more interested in what their site looks like when they first begin using the platform than what the thousands upon thousands of plugins can do for them. Perhaps that’s unfair to plugin developers — there are more exciting things happening in the plugin world right now — but it is what it is. Themes are visual, and they are what sell the platform to people who just want a site that looks good.</p>\n\n\n\n<p>While WordPress is massive, I can’t help but think that it is losing out on more users because such users are not always presented with solid options for their site’s design out of the gate.</p>\n\n\n\n<p>Most of the default Twenty* themes are good introduction themes for first-time users, but they are not to everyone’s tastes.</p>\n\n\n\n<p>I’ve worked with numerous users who were setting up their first WordPress site over the years. Today, many similar people use a pre-installed script to launch WordPress from their web host. Much of the initial work is done for them. Often, they are unfamiliar with the WordPress community and what is available out there. They don’t know how to find, buy, and install a theme from a reputable commercial theme business.</p>\n\n\n\n<p>What they do is head over to the add-new theme page in their WordPress admin, and they are presented with the <a href=\"https://wordpress.org/themes/browse/featured/\">“Featured” themes list</a>.</p>\n\n\n\n<div class=\"wp-block-image\"><img />Featured themes list in the WordPress admin.</div>\n\n\n\n<p>Sometimes a user gets lucky. Other times it is a crapshoot.</p>\n\n\n\n<p>For several years now, the official WordPress theme directory has shown a random list of themes from the 7,000 or so themes available.</p>\n\n\n\n<p>While themes in the directory undergo a strict code review, there is no quality control on design. That is a good thing because it allows designers at any level to contribute to the platform. Open source communities should always have an open contribution process, and themes are one area that many developers get started with WordPress.</p>\n\n\n\n<p>However, the term “featured” implies that there is something particularly special about those themes. They should be distinctive in some way. They should be a cut above the rest. That’s not what we have today, and it’s not what has been presented to users for the last half decade.</p>\n\n\n\n<p>This is a huge missed opportunity.</p>\n\n\n\n<p>Today, web hosts have started taking over this role. Whether it is <a href=\"https://wptavern.com/inside-look-at-godaddys-onboarding-process-for-managed-wordpress-hosting\">GoDaddy’s onboarding process</a> with their custom Go theme or WP Engine with the Genesis framework, hosts are doing the job that WordPress.org couldn’t manage to get together.</p>\n\n\n\n<h2>How Featured Themes Became Random</h2>\n\n\n\n<p>In the 2013-2014 era, the WordPress theme review team (TRT) was trying to find a way to get more people to contribute to the review process. By that time, themes had become big business and more theme authors were submitting themes to the directory. The team implemented a program that allowed the top reviewers each month an opportunity to pick the featured themes.</p>\n\n\n\n<p>The program’s original intention was for reviewers to select a theme they liked during reviews. <em>The best-laid plans…</em></p>\n\n\n\n<p>The problem was that nearly all of the top reviewers were theme authors. Their incentive for doing reviews was to get their themes featured. Big theme businesses stood the most to gain. They could put multiple reviewers to work who would knock out review after review.</p>\n\n\n\n<p>It wasn’t a level playing field. Even if it had been, the featured themes list was being taken over by business interests via a pay-to-play system. Those with the most resources would always come out on top.</p>\n\n\n\n<p>Theme companies featured on WordPress.org were already raking in cash at that point. Zerif Lite, a theme in the popular list just two years later in 2016, <a href=\"https://wptavern.com/zerif-lite-returns-to-wordpress-org-after-5-month-suspension-and-63-decline-in-revenue\">reported north of $100 thousand per month</a> from upsells. Even at one-tenth of that number, it is enough incentive for any businesses to play the system to their advantage.</p>\n\n\n\n<p>In April 2014, the <a href=\"https://make.wordpress.org/themes/2014/04/18/theme-review-incentive-program/\">program was shut down</a> because reviewers were choosing their own themes and repeatedly featuring the same themes. The featured list then began showcasing a new set of random themes every day.</p>\n\n\n\n<p>Randomly-chosen featured themes levels the playing field for every theme author. However, it doesn’t showcase the best that WordPress has to offer.</p>\n\n\n\n<h2>A Curated List of Themes Coming Soon</h2>\n\n\n\n<p>The TRT decided in their team meeting yesterday on a change in how featured themes are handled. <NAME> wrote in the <a href=\"https://make.wordpress.org/themes/2019/10/22/meeting-notes-for-tuesday-22nd-october-2019/\">meeting notes</a> that the team would try a curated list for a few months to see how the WordPress community responds.</p>\n\n\n\n<p>The current plan is to hold a meeting every two or three weeks where people can recommend themes to be featured based on their design, code quality, and potentially other merits. The team reps would pick from the recommendations.</p>\n\n\n\n<p>The reps are still deciding how to best handle any foreseeable issues before the new program begins. The team was divided over whether there should be a curated list and what the criteria might be for such a list. The biggest concern is over the potential for abuse and conflicts of interest. These and other problems will be something the reps will need to figure out.</p>\n\n\n\n<p>The general consensus seems to be that featured themes would not have any upsells or other commercial aspects. That could limit the pool of potential themes considerably because many theme authors have some sort of commercial interest in having their themes hosted in the official directory.</p>\n\n\n\n<p>I welcome the change from seeing random themes every day. I want to see the diamonds in the rough that get buried beneath big business and themes that dominate the landscape in the separate <a href=\"https://wordpress.org/themes/browse/popular/\">popular list</a>. I want to see theme authors who are building unique themes front and center.</p>\n\n\n\n<p>The big question is whether this change will help users find that perfect theme for their sites.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Oct 2019 18:30:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"WordPress.org blog: WordPress 5.3 RC2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7425\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2019/10/wordpress-5-3-rc2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3740:\"<p>The second release candidate for WordPress 5.3 is now available!</p>\n\n\n\n<p>WordPress 5.3 is currently scheduled to be released on <strong><a href=\"https://make.wordpress.org/core/5-3/\">November 12 2019</a></strong>, but we need <em>your</em> help to get there—if you haven’t tried 5.3 yet, now is the time!</p>\n\n\n\n<p>There are two ways to test the WordPress 5.3 release candidate:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.3-RC2.zip\">download the release candidate here</a> (zip).</li></ul>\n\n\n\n<p>For details about what to expect in WordPress 5.3, please see the <a href=\"https://wordpress.org/news/2019/10/wordpress-5-3-release-candidate/\">first release candidate post</a>.</p>\n\n\n\n<p>Release Candidate 2 contains improvements to the new About page, and <a href=\"https://core.trac.wordpress.org/query?id=48381%2C48363%2C48022%2C48304%2C48379%2C48087%2C47699&milestone=5.3&group=component&col=id&col=summary&col=status&col=owner&col=type&col=priority&col=milestone&order=priority\">10 fixes</a> for the following bugs and regressions:</p>\n\n\n\n<ul><li>Three bugs contained in RC1 within the block editor have been fixed (see #<a href=\"https://core.trac.wordpress.org/ticket/48381\">48381</a>).</li><li>A bug has been fixed where links within comments did not get the correct <code>rel</code> attribute (see #<a href=\"https://core.trac.wordpress.org/ticket/48022\">48022</a>).</li><li>The <code>scaled-</code> string has been added to file names when images are downsized if determined “BIG” (see #<a href=\"https://core.trac.wordpress.org/ticket/48304\">48304</a>).</li><li>The buttons group layout has been fixed in IE11 (see #<a href=\"https://core.trac.wordpress.org/ticket/48087\">48087</a>).</li><li>A bug with <code>boolean</code> <code>false</code> meta values in the REST API has been fixed (see #<a href=\"https://core.trac.wordpress.org/ticket/48363\">48363</a>).</li><li>The error code encountered when the native PHP JSON extension is missing has been adjusted to be unique (see #<a href=\"https://core.trac.wordpress.org/ticket/47699\">47699</a>).</li><li>When uploading files, HTTP error code support has been expanded to include all 5xx errors (see #<a href=\"https://core.trac.wordpress.org/ticket/48379\">48379</a>).</li></ul>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.3 and update the <em>Tested up to</em> version in the readme to 5.3. If you find compatibility problems, please be sure to post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a> so we can figure those out before the final release.</p>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/core/2019/10/17/wordpress-5-3-field-guide/\">WordPress 5.3 Field Guide</a> has also been published, which details the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Oct 2019 20:08:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WPTavern: Gutenberg 6.7 Introduces Storybook and Gradient Backgrounds\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95081\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wptavern.com/gutenberg-6-7-introduces-storybook-and-gradient-backgrounds\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4533:\"<p>The Gutenberg team released version 6.7 of the Gutenberg plugin last week. The <a href=\"https://make.wordpress.org/core/2019/10/16/whats-new-in-gutenberg-16-october/\">announcement post</a> listed a little over three dozen bug fixes and several enhancements to existing features. The most notable features included in the update are Storybook support and gradient backgrounds for the button block.</p>\n\n\n\n<p>All of the bug fixes included in Gutenberg 6.7 were ported to the first <a href=\"https://wordpress.org/news/2019/10/wordpress-5-3-release-candidate/\">WordPress 5.3 release candidate</a>. WordPress 5.3 is expected to be released on or around November 12.</p>\n\n\n\n<p>This release also includes updates for experimental features, which can be enabled via the “Experiments” screen under the “Gutenberg” admin menu. The experimental nav menu block received alignment fixes and now only shows nested menu items when the parent item is selected.</p>\n\n\n\n<h2>First Implementation of Gradient Backgrounds</h2>\n\n\n\n<div class=\"wp-block-image\"><img />Adding a gradient to a button block.</div>\n\n\n\n<p>Version 6.7 introduces a new gradient background feature for the button block. The long-term plan is to make gradient backgrounds available to other blocks. The button block is a good testbed for the feature before moving forward with other blocks.</p>\n\n\n\n<p>The problem with introducing gradients is that the team didn’t go far enough with theme support early in the process. This is par for the course with Gutenberg development. New features are implemented without knowing exactly how themes fit into the picture. It is only after the feature is implemented that theme support is patched on. Often, this leads to theme authors scrambling to keep up. It would be better for the feature and the theme support to be developed in tandem with feedback from more theme authors in the process.</p>\n\n\n\n<p>At this stage, gradients are useless in most theme designs, which have custom color schemes that are unlikely to match Gutenberg’s gradient colors. At best, the gradients look OK with stock WordPress. At worst, they’re garish and an assault on the eyeballs. Starting with theme support would have at least offered theme authors a chance to make this a better experience for users.</p>\n\n\n\n<p>There is an open <a href=\"https://github.com/WordPress/gutenberg/pull/17841\">pull request on GitHub</a> to introduce theme support. Theme authors may be able to add custom gradients by version 6.8.</p>\n\n\n\n<p>In the future, this should be a powerful feature that allows users via custom theme gradients to create some unique designs for their posts and pages. For now, it is only in the “fun experiment” stage.</p>\n\n\n\n<h2>Storybook for Developers</h2>\n\n\n\n<div class=\"wp-block-image\"><img />Gutenberg button component stories.</div>\n\n\n\n<p>The Gutenberg development team introduced <a href=\"https://storybook.js.org\">Storybook</a> support for Gutenberg. Developers can test Storybook support via the <a href=\"https://wordpress.github.io/gutenberg/design-system/components/\">Gutenberg Storybook page</a>.</p>\n\n\n\n<p>Storybook is a development and testing environment for user interfaces. It allows developers to create, test, and showcase components in an isolated environment apart from the primary platform or application. This essentially allows developers to build components without the dependencies of the platform before porting them over. A story within the Storybook system represents the visual state of a component. Storybooks are collections of stories.</p>\n\n\n\n<p>The Storybook support uses the <a href=\"https://github.com/storybookjs/storybook/tree/next/addons/knobs\">Knobs add-on</a>, which allows developers to edit props dynamically via the Storybook UI. The <a href=\"https://wordpress.github.io/gutenberg/design-system/components/?path=/story/dashicon--default\">dashicons component</a> is a good place to test this out. Currently, it accepts values for the icon name, color, and size.</p>\n\n\n\n<p><NAME>, a principal engineer working on special projects at Automattic, wrote a tutorial and shared a YouTube video on how to <a href=\"https://mkaz.blog/code/coding-a-storybook-story/\">create a story for Gutenberg components</a>. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>For developers wanting to be involved, there are many <a href=\"https://github.com/WordPress/gutenberg/issues/17973\">components that still need a story</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Oct 2019 17:17:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WPTavern: Coming in WordPress 5.3: What is the PHP Spread Operator?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95062\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wptavern.com/coming-in-wordpress-5-3-what-is-the-php-spread-operator\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6962:\"<p>On October 9, <NAME> announced on the core WordPress blog that <a href=\"https://make.wordpress.org/core/2019/10/09/wp-5-3-introducing-the-spread-operator/\">WordPress 5.3 will use the spread operator</a>. The spread operator was one of the <a href=\"https://www.php.net/manual/en/migration56.new-features.php\">new features</a> made available in PHP 5.6, a version released in 2014.</p>\n\n\n\n<p>WordPress <a href=\"https://wptavern.com/wordpress-ends-support-for-php-5-2-5-5-bumps-minimum-required-php-version-to-5-6\">abandoned PHP 5.2 – 5.5</a> with the release of WordPress 5.2. This means the core team can start taking advantage of relatively new features, or at least 5-year-old features. For plugin and theme developers who maintain the same minimum version support as WordPress, they can also start exploring this feature.</p>\n\n\n\n<p>PHP 5.6 introduced two new methods of using the spread operator:</p>\n\n\n\n<ul><li>A Parameter in variadic functions.</li><li>Function argument unpacking of arrays and traversable objects.</li></ul>\n\n\n\n<p>This feature shouldn’t be confused with unpacking inside of arrays, which is only <a href=\"https://wptavern.com/first-look-at-php-7-4-for-wordpress-developers\">available in PHP 7.4</a>.</p>\n\n\n\n<p>The change in WordPress 5.3 is not expected to affect themes and plugins except in the rare case that a developer is overloading the <code>wpdb::prepare()</code> method. Developers should <a href=\"https://make.wordpress.org/core/2019/10/09/wp-5-3-introducing-the-spread-operator/\">read the announcement post</a> to dive into what code has changed in core WordPress.</p>\n\n\n\n<p>Developers should check their plugins and themes with debugging enabled in a test environment to check for any notices. There may be cases where the function signature doesn’t match.</p>\n\n\n\n<p>The spread operator is a tool, and like any tool, it should be used when it makes sense. Because it is a language construct, it does offer speed improvements over traditional methods of using a PHP function.</p>\n\n\n\n<p>The remainder of this post will dive into the using the spread operator to help teach WordPress developers how it works.</p>\n\n\n\n<h2>Creating a Variadic Function with the Spread Operator</h2>\n\n\n\n<p>Variadic functions are PHP functions that accept a variable number of arguments passed in. They have existed for years. However, they can be confusing without solid inline documentation from the developer who wrote the code. </p>\n\n\n\n<p>In the past, developers would need to use the <code>func_get_args()</code>, <code>func_get_arg()</code>, or <code>func_num_args()</code> functions to work with variadic functions. In PHP 5.6, developers can use a parameter such as <code>...$var_name</code> to represent a variable number of parameters.</p>\n\n\n\n<p>Take a look at the following multiplication function. It will accept one, two, three, or even more numbers and multiply each.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\nfunction tavern_multiply( ...$numbers ) {\n\n $total = 1;\n\n foreach ( $numbers as $number ) {\n $total = $total * intval( $number );\n }\n\n return $total;\n}\n</pre>\n\n\n<p>If we use that function as shown below, it will display <code>1024</code>:</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\necho tavern_multiply( 2, 4, 8, 16 );\n</pre>\n\n\n<p>This is simple to do with the spread operator.</p>\n\n\n\n<h2>Unpacking Arrays as Function Arguments</h2>\n\n\n\n<p>PHP 5.6 allows developers to unpack arrays and traversable objects as function arguments. To explain how this works, look at the following multiplication function for multiplying three numbers together.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\nfunction tavern_multiply_three( $x, $y, $z ) {\n return $x * $y * $z;\n}\n</pre>\n\n\n<p>Generally, you would need to manually pass the <code>$x</code>, <code>$y</code>, and <code>$z</code> parameters directly. However, there are cases in real-world projects where the data (numbers in this case) would already exist within an array such as:</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n$numbers = [ 3, 6, 9 ];\n</pre>\n\n\n<p>Prior to PHP 5.6, you would need to split that array and pass each value to the function as shown in the following snippet.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\necho tavern_multiply_three( $numbers[0], $numbers[1], $numbers[2] );\n</pre>\n\n\n<p>With PHP 5.6, you can simply pass in <code>...$numbers</code> like so:</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\necho tavern_multiply_three( ...$numbers );\n</pre>\n\n\n<p>Both methods work and will output <code>162</code>. However, the second method is easier to read and is less prone to typos because it uses fewer characters.</p>\n\n\n\n<h2>Comparing Code Changes in WordPress</h2>\n\n\n\n<p>For a more practical example, let’s compare a real-world code change in WordPress and how using the spread operator improves the code over other methods. We can do this by looking at the core <code>current_user_can()</code> function.</p>\n\n\n\n<p>First, see how the code is written in WordPress 5.2 and earlier. </p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\nfunction current_user_can( $capability ) {\n $current_user = wp_get_current_user();\n\n if ( empty( $current_user ) ) {\n return false;\n }\n\n $args = array_slice( func_get_args(), 1 );\n $args = array_merge( array( $capability ), $args );\n\n return call_user_func_array( array( $current_user, \'has_cap\' ), $args );\n}\n</pre>\n\n\n<p>Without looking at the full function, most developers would assume that <code>$capability</code> is the only accepted parameter for this function. However, the function accepts a variable number of parameters. Previously, WordPress had to use <code>func_get_args()</code> to get all the parameters, slice the array, and merge everything back together.</p>\n\n\n\n<p>It is inelegant coding, but it got the job done for old versions of PHP.</p>\n\n\n\n<p>Now compare what the same function looks like in WordPress 5.3. First, you can see the <code>...$args</code> parameter clearly in the function statement. You can also see there is no need for the clever coding to pass along a variable number of arguments.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\nfunction current_user_can( $capability, ...$args ) {\n $current_user = wp_get_current_user();\n\n if ( empty( $current_user ) ) {\n return false;\n }\n\n return $current_user->has_cap( $capability, ...$args );\n}\n</pre>\n\n\n<p>The change in WordPress 5.3 is a massive improvement in readability in comparison to earlier versions. It is nice to see these types of improvements to the core code.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 21 Oct 2019 16:43:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"WPTavern: Product Reviews in the WordPress Ecosystem: Honesty and Genuine Experiences\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94992\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://wptavern.com/product-reviews-in-the-wordpress-ecosystem-honesty-and-genuine-experiences\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8398:\"<p><em>I don’t write fluff pieces. I call ’em like I see ’em. If your project is a dumpster fire, I’m going to say it’s a dumpster fire.</em></p>\n\n\n\n<p>Whenever someone comes to me in hopes that I review their product, I give them some form of the preceding paragraph. It doesn’t matter if it is a plugin, theme, web host, or some other product. What matters is that I write my review with honesty and offer my genuine opinion about the thing they built.</p>\n\n\n\n<p>I rarely read most product reviews in the WordPress community anymore. Far too often the reviewers are not offering their genuine experience with a product. You get something like “XYZ is a multi-purpose theme that is built for…yadda, yadda, yadda…” <em>Yawn</em>. It reads as if publishers are trying to sell a product. If you dig deep enough, you realize that is what many are doing (<em>hello, affiliate links</em>).</p>\n\n\n\n<p>I also have it on good authority (I’ve seen some of the email exchanges) that a lot of money exchanges hands behinds the scenes for reviews. Most of the time, publishers are not writing a review of the product. They are selling you their dreams of a continued working relationship with the product maker.</p>\n\n\n\n<p>There’s nothing wrong with affiliate links if a publisher loves a product. There’s no issue with paid reviews if such reviews are honest experiences with the product. There’s also no problem with writing a love letter to your favorite plugin and theme with no financial incentive.</p>\n\n\n\n<p>However, what I generally see are shallow reviews at best. Many, dare I say most, reviews are not genuine. They are certainly not real journalism.</p>\n\n\n\n<p>The best place to find genuine reviews are from the user ratings on WordPress.org, assuming the plugin or theme is available there. Users tend to not hold back, particularly if their review is negative.</p>\n\n\n\n<p>It is tough as an artist (yes, I consider all programmers artists). I’ve been on the receiving end of negative reviews of things I’ve built. You learn to grow thick skin after a decade of putting your art out into the world. </p>\n\n\n\n<p>When I was younger, I tended to be a bit hot-headed whenever I got a bad review for something I had built. After pouring my heart and soul into a project, it cut deep to read a negative review. I wasn’t always the most gracious receiver of such reviews. There are responses I wish I could take back. Looking at those times now, I wish I would have been more open to hearing what the reviewer was saying. Even if I disagreed with every word, it did not mean that the person wasn’t providing me something of value with their review. </p>\n\n\n\n<p>With age and I hope a little more wisdom, I usually give myself time to think about what someone is saying before I respond. I allow my thoughts time to develop and mature. Often, it turns out, critical reviews are far more helpful in making better art than all the five-star ratings in the world.</p>\n\n\n\n<p>When I took the writing position at WP Tavern, I wanted to bring a review format to the website that is missing within our community. I wanted to do reviews based on my experience as both a user and a developer. I admit that I was not prepared for a negative reaction to what was in part a negative review. As always, I gave myself time to read and think over what some commenters were saying. This article is my response.</p>\n\n\n\n<h2>Reviews Are About Personal Experience</h2>\n\n\n\n<p>One of the things I learned early on as a writer is to not second guess myself, especially when writing an opinion piece. It is not good for one’s mental health.</p>\n\n\n\n<p>An opinion piece is about the moment. It is raw. It is passionate.</p>\n\n\n\n<p>Writers’ opinions may change over time. They are human and have the freedom to change their minds later. However, an opinion-based story should reflect that single moment in time and what the author’s feelings are at that moment.</p>\n\n\n\n<p>There’s a common (and wholly incorrect) notion that journalism should be nothing more than facts, that subjectivity is not allowed. Throughout the several hundred years that some form of journalism has existed, there has never existed a point where the whole of the field was objective. Even in the early days of U.S. journalism, my country’s founders published articles in newspapers to sway public opinion on ratifying the U.S. Constitution. </p>\n\n\n\n<p>Reporting, which is one form of journalism, does not represent the whole. It is the most objective form of journalism in which the reporter simply tells the news to readers. We certainly do plenty of that at the Tavern. However, other forms like editorials, features, and reviews are as important. These forms take a different approach.</p>\n\n\n\n<p>Reviews are the unwieldy beasts of journalism. They are hard to tame. They’re not always pretty. However, they should always be true to their nature. They can bring out angry hoards of fanboys down on the critic (ever read the comments of a critical review of an Apple product?).</p>\n\n\n\n<p>Honest reviews are about personal experience. If a film critic dislikes the latest movie in the Marvel Cinematic Universe, it is that critic’s duty to write about their experience watching it. The reviewer has an obligation to not huddle in fear of Iron Man fanatics who will inevitably send <em>ad hominem</em> attacks his way. Holding back one’s opinion within a review is the ultimate sin of a critic.</p>\n\n\n\n<p>Like with any products or forms of art, WordPress plugins and themes are not immune to this same criticism. Such criticism is even more important when the software costs money and potential buyers may be looking for genuine reviews.</p>\n\n\n\n<p>Disagreement with a review is OK. Disagreements are more interesting than everyone nodding their heads in unison. What a boring world it would be if we were all in agreement.</p>\n\n\n\n<p>However, I did want to address comments on my previous review about it being <em>unfair</em>, specifically the unfairness of my personal experience. It’s that personal experience that makes a review genuine. Not everyone’s experience will be the same. One person’s one-star rating does not discount another’s five stars. They are equally valid because they represent different experiences.</p>\n\n\n\n<h2>Developers Are Users Too</h2>\n\n\n\n<p>There’s a common idea in the WordPress community that developers are not users, that our experiences don’t count because our knowledge and skillsets are more advanced than the average. At first glance, the argument makes some sense. However, after giving it some serious thought, I reject the notion.</p>\n\n\n\n<p><em><NAME> can’t criticize films because he makes films. There’s no way he can feel what the average person does at the cinema.</em></p>\n\n\n\n<p><em>Beyoncé can’t judge a music competition because she’s a singer. She’s not listening with the ears of a normal human.</em></p>\n\n\n\n<p>Wait; that’s not right, is it?</p>\n\n\n\n<p>Why is it that developers’ opinions are so easily discounted when they are critical of user experience? I use WordPress, different themes, and various plugins every day. I use those that make me happy or serve essential functions. I don’t necessarily pick plugins out because I like their code. I use them because I too am a user in every way that a non-developer is a user. Having the ability to articulate the problems from a different viewpoint doesn’t change that.</p>\n\n\n\n<p>In many ways, developers can provide more useful software reviews than “average” users because we have some past experience solving the same problems.</p>\n\n\n\n<h2>Offering a Genuine Review</h2>\n\n\n\n<p>One thing you will always get from me is honesty. When I review a WordPress-related product, you will always read about my personal experience.</p>\n\n\n\n<p>I was fully prepared to say that <em>the gloves are coming off</em>, but the gloves have always been off. I will never hold back criticism. I’m always ready to pile on the praise too.</p>\n\n\n\n<p>But, I won’t lie to you.</p>\n\n\n\n<p>Who’s ready to have their theme or plugin reviewed next?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 18 Oct 2019 16:42:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: Chilean News Publication El Soberano First to Launch on Newspack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wptavern.com/chilean-news-publication-el-soberano-first-to-launch-on-newspack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9309:\"<div class=\"wp-block-image\"><img />El Soberano homepage on the Newspack platform.</div>\n\n\n\n<p>Nine months after the <a href=\"https://en.blog.wordpress.com/2019/01/14/newspack-by-wordpress-com/\">announcement of Newspack</a> by WordPress.com, the Chilean news site <a href=\"https://elsoberano.org\">El Soberano</a> became the first publication to launch on the new platform. On October 16, the small news team <a href=\"https://newspack.blog/2019/10/17/first-publisher-relaunches-using-newspack/\">relaunched with a fresh design</a> powered by the Newspack theme and its newsroom-focused plugins.</p>\n\n\n\n<p>Newspack is a project of Automattic, the parent company of WordPress.com. Its goal is to work with leaders in the news industry to create a platform that brings WordPress to more newsrooms. This year, the team behind Newspack has worked with several publications to address obstacles in journalism on the web.</p>\n\n\n\n<p>The Newspack team was primarily advised by <a href=\"https://newspack.blog/2019/04/03/newspack-chooses-12-publishers-new-platform/\">12 publications during their first phase</a>. Most of those publications are based in the U.S., but a few, such as El Soberano, are from other countries. The Daily Maverick from Johannesburg, South Africa, and Reveal from the Center for Investigative Reporting from California came on as advisers from the outset. However, they may also launch on Newspack sometime in the coming months.</p>\n\n\n\n<p>“We had 10 sites that we’re going to launch as soon as possible,” said <NAME>, head of Newspack Communications. “Of the 10, one dropped out as they changed publishers. So that leaves El Soberano and eight others, and those eight should launch in the coming weeks — certainly by year’s end. We’ve got the next few queued up.”</p>\n\n\n\n<p>During the initial phase, Beatty said the team was looking for small to medium-sized newsrooms that were covering local news or niche publications. The development hurdles would likely have been much higher starting with large organizations.</p>\n\n\n\n<p>“We wanted newsroom leaders who were willing to experiment and try something bold and different, knowing that there was a very real chance of growing pains,” said Beatty. “The partners in our pilot newsrooms have been incredibly helpful, patient, understanding and cheerful. I’m not sure we screened for all that in the application process, but it’s worked out quite well.”</p>\n\n\n\n<h2>El Soberano is a Fitting Launch Partner</h2>\n\n\n\n<div class=\"wp-block-image\"><img />Content Director <NAME> (left) and Executive Director <NAME> (right).</div>\n\n\n\n<p>WordPress.com claims its “mission is to democratize publishing one website at a time.” El Soberano, based in Santiago, is a smaller news publication with three people on the current full-time staff. Their goal is to connect citizens with organizations that will help defend their rights. The publication covers social movements within the country and to be an outlet for independent journalism.</p>\n\n\n\n<p>“In our news outlet we believe that only the organized people are sovereign of their destiny,” said <NAME>, Content Director at El Soberano. “Our name ‘<NAME>’ is all about <em>el pueblo soberano</em>, the ‘sovereign people’ in English. For us, individual rights and freedoms are crucial. Then, things like a secular state and civil rights, such as the legalization of cannabis, homoparental adoption or the right to a safe abortion, are things we report about.”</p>\n\n\n\n<p>Bruna further defined the publication’s goals.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>In El Soberano we defend an environment free of contamination; equal opportunities for women, ending the precariousness of their lives; a real pension system for citizens; sexual dissidence, to guarantee their equal rights and inclusion; a new development model based on innovation and knowledge; a secular state and freedom with critical thinking; urban planning and good housing solutions; consumers and a healthy and sustainable market and, finally, mechanisms that aim to create truly democratic constitutions for our countries.</p></blockquote>\n\n\n\n<p>El Soberano does not give space for other interest groups because such groups have the means to make their opinions publicly available. Instead, its mission is to report on social issues directly from citizens. “In them lies the power of decision regarding the direction that our democracies must take,” said Bruna.</p>\n\n\n\n<h2>Launching El Soberano with Newspack</h2>\n\n\n\n<p>As one of the first publications to launch with a new system, it’s tough to be a pioneer when a lot is riding on success. <NAME>, Executive Director of El Soberano, was ready to take the news website to the next level after three years.</p>\n\n\n\n<p>“When we decided to take the next step and transform El Soberano into a sustainable environment, it was a great achievement for us to be chosen for the Newspack pilot with other eleven news outlets,” said Arriagada. “We were the only news site in Spanish and from Latin America, so we felt very proud.”</p>\n\n\n\n<p>Arriagada has worked with the Newspack development team over the past six months to help guide them on what tools are needed to run a newsroom.</p>\n\n\n\n<p>The decision to apply for the Newspack pilot program was in part due to avoiding pitfalls they had seen with other digital media websites. “Friends with their websites hijacked by a former ‘friend’ developer when they try to move to a new platform, custom developments that only the author understood, huge invoices for maintenance hours, or even spending months working on a design that was not possible at the end,” said Arriagada. They wanted to avoid other problems such as taking too long to apply changes to the homepage in the fast-paced world of journalism where new stories should be front and center.</p>\n\n\n\n<p>Arriagada said such problems were resolved with Newspack and their team can concentrate on editorial and revenue generation.</p>\n\n\n\n<p>El Soberano originally launched on WordPress.com in January 2016. Arriagada said it was nearly impossible to find a good selection of templates that were built specifically to solve the problems of the news industry. “In Newspack we have the chance to combine different content blocks adapted to our needs, showing content in flexible ways,” said Arriagada. “Now we have tools designed to generate revenue with the experience and best practices from world-class digital media.”</p>\n\n\n\n<p>Arriagada called working with the Newspack team a “journey of discovery.” In the beginning, it wasn’t clear how the team would use the information they were collecting from El Soberano and other publications or how the team would resolve issues based on the information provided. Eventually, they received design proposals, which allowed them to get a feel for what they wanted and to further provide feedback to the Newspack team.</p>\n\n\n\n<p>“Later, we received the access to the platform where we were able to play around, putting things in order, creating and implementing what we were looking for,” said Arriagada. “More feedback, corrections, hopes, and dreams.”</p>\n\n\n\n<p>She said that working with the <a href=\"https://github.com/Automattic/newspack-blocks\">Content Blocks</a> system allowed her team to better create and assemble their homepage and articles. “But maybe the most interesting thing for us,” said Arriagada, “was that Newspack team and other news sites from the pilot program proposed things that we don’t consider for our site, such as an ultra-flexible donation system or workflow systems. We see a lot of power in that collaborative way to develop a product.”</p>\n\n\n\n<h2>The Future of Newspack</h2>\n\n\n\n<p>Newspack launched <a href=\"https://wptavern.com/newspack-opens-up-application-process-for-phase-two\">phase two of its program</a> in July, which sought to bring 50 more newsrooms to the platform. The new publications should be announced shortly.</p>\n\n\n\n<p>“Both the initial pilot group and this group of 50 (or so) are part of the one-year development period, which ends on February 29,” said Beatty. “We’re still determining what will happen on March 1. We’ll have a better sense of that when we start working with the 50 and see how quickly we can turn them around.”</p>\n\n\n\n<p>Like much of Automattic’s work, it is open source and freely available to the public. Newspack is a collection of packages to create a platform for newsrooms. Of note are the following repositories.</p>\n\n\n\n<ul><li><a href=\"https://github.com/Automattic/newspack-theme\">Newspack Theme</a></li><li><a href=\"https://github.com/Automattic/newspack-plugin\">Newspack Plugin</a></li><li><a href=\"https://github.com/Automattic/newspack-blocks\">Newspack Blocks</a></li></ul>\n\n\n\n<p>Developers can find all eight plugins from the <a href=\"https://github.com/Automattic?q=newspack\">Automattic GitHub page</a> if they want to give them a spin.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Oct 2019 17:56:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WordPress.org blog: Empowering Generations of Digital Natives\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7413\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://wordpress.org/news/2019/10/empowering-generations-of-digital-natives/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8892:\"<p>Technology is changing faster each year. Digital literacy can vary between ages but there are lots of ways different generations can work together and empower each as digital citizens.</p>\n\n\n\n<p>No matter whether you’re a parent or caregiver, teacher or mentor, it’s hard to know the best way to teach younger generations the skills needed to be an excellent digital citizen. If you’re not confident about your own tech skills, you may wonder how you can help younger generations become savvy digital citizens. But using technology responsibly is about more than just technical skills. By collaborating across generations, you can also strengthen all your family members’ skills, and offer a shared understanding of what the internet can provide and how to use it to help your neighborhoods and wider society. <br /></p>\n\n\n\n<h2>Taking Gen Z Beyond Digital Savvy</h2>\n\n\n\n<h3>Open up the dialogue</h3>\n\n\n\n<p>Even if you’re not fully confident in your own tech skills, you can help develop digital citizenship skills in others. If you feel comfortable during everyday conversation, you could describe a tech situation you have come across and ask family members if they have ever experienced something similar. You can give them a chance to share how they handled it or how it made them feel. This can help encourage them to think critically and to react with empathy. And being asked for advice can make them feel appreciated and empowered. But opening up the conversation can also be as simple as asking if they’ve seen anything online lately that they found interesting or wanted to talk about.</p>\n\n\n\n<h3>Share access to free and affordable training</h3>\n\n\n\n<p>Open source content management systems have made online publishing accessible to a more diverse group of people. Dozens of content platforms offer hands-on training at no or low cost. <a href=\"https://wordpress.tv/\">WordPress.tv</a>, <a href=\"https://www.linkedin.com/learning/topics/wordpress\">LinkedIn Learning</a>, and others have low-cost video libraries with thousands of recorded talks and workshops and the WordPress Training team have excellent downloadable lesson plans and materials. These platforms not only feature content that helps develop tech and content creation skills but also content around ethics, diversity and community building. </p>\n\n\n\n<h3>Find a sense of community and belonging</h3>\n\n\n\n<p>One of the disadvantages of increased digitalization is that <a href=\"https://www.theatlantic.com/magazine/archive/2017/09/has-the-smartphone-destroyed-a-generation/534198/\">younger generations and us all may spend less time hanging out in-person.</a> Digital time spent with others is no replacement for in-person interactions. The awareness and mutual understanding which comes from back and forth interaction is needed for positive interpersonal skills. This is hard to replace in digital communities and those skills can only be learned with lots of hands-on practice. </p>\n\n\n\n<h3>Learn the many benefits of volunteering </h3>\n\n\n\n<p>There are WordPress events across the world that provide a great place to learn new skills to share with your families and friends. Some work with schools and colleges to offer special events which are open to all ages. There are also plenty of small ways to volunteer with the WordPress project that can be done at home to practice new skills.</p>\n\n\n\n<p>In addition to attending events where you can learn skills and hang out with others with similar interests, the WordPress ecosystem offers countless opportunities to be actively involved. Professionals, hobbyists, and learners all make a difference by contributing to the ongoing creation of the WordPress platform. Together these people, who are known as contributors, form the <a href=\"https://make.wordpress.org/\">WordPress open source community.</a> </p>\n\n\n\n<h4>WordPress is created by volunteer contributors</h4>\n\n\n\n<p>Not only are these contributors creating an amazingly flexible platform for all to use, it is an environment where you can continue to improve your skills, both technical and interpersonal. Open-source software projects can introduce you to people you would otherwise not get the chance to meet, locally and internationally. If you have a zest for learning, and for finding others to connect with, WordPress has many ways to meet contributors in person!</p>\n\n\n\n<h4>WordPress events are organized by volunteers</h4>\n\n\n\n<p>WordPress community events are volunteer-run. This can be a great way to give back to the project and practice all sorts of skills. Talk to your local event about how you could get involved and if you would like to bring older teenagers and young adults with you. You will not need any pre-existing tech skills to attend these events but they are a great way to discover areas you might want to learn more about. </p>\n\n\n\n<h4>Contributor days offer a great opportunity to get involved</h4>\n\n\n\n<p>These events are specially designed to help you get involved in building the open-source WordPress platform. You can collaborate with other members of its community and find areas that are right for you to use and grow your skills. All of the tasks you will discover at an event can be continued at home and some are easy to get other family members involved in learning and adding in ideas. </p>\n\n\n\n<p>Contributors come from all sorts of backgrounds and locations, some may live near you and others thousands of miles away. Working alongside lots of different cultures and countries can open up new ideas for young people letting them learn new ways of doing things and discover different perspectives. All those different perspectives can cause misunderstandings. But being involved in a global learning community is a great way to practice communicating across cultural boundaries. </p>\n\n\n\n<h4>Getting involved can be rewarding in many (unexpected) ways</h4>\n\n\n\n<p>The most rewarding part of actively taking part in WordPress events is making budding friendships. New connections often turn into long-lasting friendships that are likely to continue for years to come, both online and offline. With a global community, these friendships can potentially lead to lots of international adventures too!</p>\n\n\n\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Getting ready for the <a href=\"https://twitter.com/WordCampBTN?ref_src=twsrc%5Etfw\">@WordCampBTN</a>. I’ve got my 5kg backpack and one-way ticket to London in a few days <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f929.png\" alt=\"🤩\" class=\"wp-smiley\" /> What shall I do after? <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" /> <a href=\"https://t.co/cdQqeyNWif\">pic.twitter.com/cdQqeyNWif</a></p>— <NAME> going to #WCKyiv (@sabrina_zeidan) <a href=\"https://twitter.com/sabrina_zeidan/status/1160265428473712640?ref_src=twsrc%5Etfw\">August 10, 2019</a></blockquote>\n\n\n\n<h3>Make our digital world safer and more inclusive</h3>\n\n\n\n<p>Befriending people from a wide variety of cultures and backgrounds can be an enriching experience in itself. It can also help you make us make more informed decisions. The more we interact with a diverse range of people, the more empathic we become. Some of the most valuable learning that can be offered to Gen Z (and probably to all of us at times) is that what we come across in fast-moving digital communities isn’t always the entire view. </p>\n\n\n\n<h2>All things considered….</h2>\n\n\n\n<p>Anyone who is a digital native may not need encouragement to obtain tech skills. But they may not be aware that digital communities are still communities and <a href=\"https://wordpress.org/news/2019/10/responsible-participation-in-online-communities/\">we need to use the same sorts of people skills for both offline and online locations</a>. Opening up conversations about situations they may experience online that may require them to (re)act responsibly, can encourage them to think critically and act with empathy. Compared to previous generations, digital natives spend substantially more time by themselves while using devices, so encouraging them to join real-life communities, such as WordPress, could be the first step to learning what it means to be a good digital citizen! </p>\n\n\n\n<h2>Contributors</h2>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/webcommsat/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webcommsat</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chanthaboune</a>, <a href=\"https://profiles.wordpress.org/yvettesonneveld/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>yvettesonneveld</a> & <a href=\"https://profiles.wordpress.org/annemariedh/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>annemariedh</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Oct 2019 20:03:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: <NAME> Joins Automattic as Chief Financial Officer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95009\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wptavern.com/mark-davies-joins-automattic-as-chief-financial-officer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4364:\"<p>Automattic, the company behind WordPress.com, WooCommerce, and various other products, announced earlier today that <NAME> has joined the team as its Chief Financial Officer (CFO). This news comes fresh off the heels of Automattic’s <a href=\"https://wptavern.com/automattic-acquires-tumblr-plans-to-rebuild-the-backend-powered-by-wordpress\">acquisition of Tumblr</a> in August and a <a href=\"https://wptavern.com/automattic-raises-300m-in-series-d-investment-round-valuation-jumps-to-3-billion\">$300 million Series D investment</a> from Salesforce Ventures in September. The investment round gave the company a $3 billion valuation after the funding.</p>\n\n\n\n<p>Davies graduated from Western Washington University with a bachelor’s degree in accounting and earned his MBA in finance at Arizona State University. He has since worked for large companies in key roles. Prior to taking the position with Automattic, Davies served as the CFO at Vivint, a North American smart home technology company.</p>\n\n\n\n<p>Vivint was founded in 1999 and claims over $1 billion in annual revenue. In 2012, The Blackstone Group <a href=\"https://www.reuters.com/article/us-blackstone-acquisition/blackstone-buys-security-firm-vivint-for-over-2-billion-idUSBRE88I0LF20120919\">purchased the company for over $2 billion</a>. Davies came on board in 2013 and would have played a large role in growing the company’s annual revenue.</p>\n\n\n\n<p>Vivint announced on October 15 that Davies <a href=\"http://investors.vivint.com/press-releases/press-release-details/2019/Vivint-Smart-Home-Announces-CFO-Transition/default.aspx\">was leaving the company</a>. “Mark has created a talented and experienced finance team with a solid track record of growth and financial discipline,” said <NAME>, co-founder and CEO of Vivint Smart Home. “We thank him for his six years with the company and wish him the best in his next role.”</p>\n\n\n\n<p>Before joining Vivint, Davies served as president of global business services with Alcoa. He was also a member of the Alcoa Executive Council. Prior to that position, he spent 12 years at Dell Inc. in various roles. His most recent position was as the managing vice president of strategic programs. He earlier served as the CFO of Dell’s Global Consumer Group, which is a $14 billion enterprise with operations across the world. He held positions with Applied Materials and HP earlier in his career.</p>\n\n\n\n<p>Davies should play a key role in helping Automattic grow beyond its current levels of revenue. He has the credentials and experience to do so.</p>\n\n\n\n<p>“Automattic is creating the operating system for the web, from websites to ecommerce to social networks,” said <NAME>, founder and CEO of Automattic and co-founder of WordPress. “As we zoom past 1,100 employees in over 70 countries, we wanted a financial leader with experience taking businesses from hundreds of millions in revenue to billions and even tens of billions, as Mark has. I’m excited about working alongside such an experienced leader day-to-day to build one of the defining technology companies of this era.”</p>\n\n\n\n<p>Mullenweg if often cited saying that he would like to see WordPress have an 85% share of the web. Currently, WordPress runs over 34% of the top 10 million websites. Automattic would certainly play a role in pushing the platform toward that lofty goal. He and <NAME> <a href=\"https://wptavern.com/matt-mullenweg-and-david-heinemeier-hansson-discuss-wordpress-market-share-monopolies-and-power-in-open-source-communities\">discussed the dynamics of power</a> in open source communities and whether such a goal was healthy for the web earlier this month. In the discussion, Mullenweg clarified that 85% was a “trailing indicator” rather than a goal.</p>\n\n\n\n<p><NAME> served as Automattic’s CFO for the last seven years. He will continue working within the company, but there is no word on what that new role is. “I want to thank Stu for his significant contributions to Automattic during his seven and a half years as CFO,” said Mullenweg. “He built a talented finance team during a period of 10x growth in staff and revenue and played an essential role in the success of our company.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Oct 2019 15:49:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Matt: New Automattic CFO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=50302\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://ma.tt/2019/10/new-automattic-cfo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:975:\"<p>As <a href=\"https://venturebeat.com/2019/10/16/automattic-nabs-vivint-cfo-to-chase-steep-revenue-growth/\">Venturebeat has picked up</a>, <NAME> will be leaving <a href=\"https://www.vivint.com/\">Vivint</a> and joining <a href=\"https://automattic.com/\">the merry band</a>. <span>Automattic is creating the operating system for the web, from <a href=\"https://wordpress.com/\">websites</a> to <a href=\"https://woocommerce.com/\">ecommerce</a> to <a href=\"https://tumblr.com/\">social networks</a>. As we zoom past 1,100 employees in over 70 countries, we wanted a financial leader with experience taking businesses from hundreds of millions in revenue to billions (Vivint) and even tens of billions (Alcoa and Dell), <a href=\"https://www.linkedin.com/in/mark-davies-14937a3/\">as Mark has</a>. I’m excited about working alongside such an experienced leader day-to-day to build what I hope will become one of the defining technology companies of the open web era.</span></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Oct 2019 15:28:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 25 Nov 2019 17:23:01 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Mon, 25 Nov 2019 17:15:12 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20130911040210\";}', 'no');
INSERT INTO `qod_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(399, '_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1574745782', 'no'),
(400, '_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1574702582', 'no'),
(401, '_transient_timeout_dash_v2_1f6be06cc73fd52d187c194a61b83c35', '1574745782', 'no'),
(402, '_transient_dash_v2_1f6be06cc73fd52d187c194a61b83c35', '<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://en-ca.wordpress.org/2017/04/18/wordcamp-coming-to-halifax-nova-scotia/\'>WordCamp Coming to Halifax, Nova Scotia!</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://bbpress.org/blog/2019/11/bbpress-2-6-2-is-out/\'>bbPress: bbPress 2.6.2 is out!</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/optimizing-code-in-a-world-that-doesnt-want-to-optimize\'>WPTavern: Optimizing Code in a World That Doesn’t Want to Optimize</a></li><li><a class=\'rsswidget\' href=\'https://heropress.com/five-years-since-the-dream-began/#utm_source=rss&utm_medium=rss&utm_campaign=five-years-since-the-dream-began\'>HeroPress: Five Years Since The Dream Began</a></li></ul></div>', 'no'),
(408, '_site_transient_timeout_theme_roots', '1574711757', 'no'),
(409, '_site_transient_theme_roots', 'a:1:{s:11:\"qod-starter\";s:7:\"/themes\";}', 'no'),
(410, '_site_transient_update_core', 'O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:63:\"https://downloads.wordpress.org/release/en_CA/wordpress-5.3.zip\";s:6:\"locale\";s:5:\"en_CA\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:63:\"https://downloads.wordpress.org/release/en_CA/wordpress-5.3.zip\";s:10:\"no_content\";b:0;s:11:\"new_bundled\";b:0;s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:3:\"5.3\";s:7:\"version\";s:3:\"5.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1574709959;s:15:\"version_checked\";s:3:\"5.3\";s:12:\"translations\";a:0:{}}', 'no'),
(411, '_site_transient_update_themes', 'O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1574709959;s:7:\"checked\";a:1:{s:11:\"qod-starter\";s:5:\"1.0.0\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}', 'no'),
(412, '_site_transient_update_plugins', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1574709960;s:7:\"checked\";a:8:{s:30:\"advanced-custom-fields/acf.php\";s:5:\"5.8.7\";s:31:\"query-monitor/query-monitor.php\";s:5:\"3.4.0\";s:47:\"show-current-template/show-current-template.php\";s:5:\"0.3.0\";s:27:\"svg-support/svg-support.php\";s:6:\"2.3.15\";s:41:\"wordpress-importer/wordpress-importer.php\";s:5:\"0.6.4\";s:21:\"wp-sweep/wp-sweep.php\";s:5:\"1.1.1\";s:24:\"wp-all-import/plugin.php\";s:5:\"3.5.2\";s:31:\"wp-migrate-db/wp-migrate-db.php\";s:6:\"1.0.11\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:2:{i:0;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:8:\"wp-sweep\";s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"1.1.1\";s:7:\"updated\";s:19:\"2018-12-19 13:36:47\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/translation/plugin/wp-sweep/1.1.1/en_CA.zip\";s:10:\"autoupdate\";b:1;}i:1;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:13:\"wp-migrate-db\";s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:6:\"1.0.11\";s:7:\"updated\";s:19:\"2019-02-13 16:24:42\";s:7:\"package\";s:81:\"https://downloads.wordpress.org/translation/plugin/wp-migrate-db/1.0.11/en_CA.zip\";s:10:\"autoupdate\";b:1;}}s:9:\"no_update\";a:8:{s:30:\"advanced-custom-fields/acf.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:36:\"w.org/plugins/advanced-custom-fields\";s:4:\"slug\";s:22:\"advanced-custom-fields\";s:6:\"plugin\";s:30:\"advanced-custom-fields/acf.php\";s:11:\"new_version\";s:5:\"5.8.7\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/advanced-custom-fields/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/advanced-custom-fields.5.8.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/advanced-custom-fields/assets/icon-256x256.png?rev=1082746\";s:2:\"1x\";s:75:\"https://ps.w.org/advanced-custom-fields/assets/icon-128x128.png?rev=1082746\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/advanced-custom-fields/assets/banner-1544x500.jpg?rev=1729099\";s:2:\"1x\";s:77:\"https://ps.w.org/advanced-custom-fields/assets/banner-772x250.jpg?rev=1729102\";}s:11:\"banners_rtl\";a:0:{}}s:31:\"query-monitor/query-monitor.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:27:\"w.org/plugins/query-monitor\";s:4:\"slug\";s:13:\"query-monitor\";s:6:\"plugin\";s:31:\"query-monitor/query-monitor.php\";s:11:\"new_version\";s:5:\"3.4.0\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/query-monitor/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/query-monitor.3.4.0.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:66:\"https://ps.w.org/query-monitor/assets/icon-256x256.png?rev=2056073\";s:2:\"1x\";s:58:\"https://ps.w.org/query-monitor/assets/icon.svg?rev=2056073\";s:3:\"svg\";s:58:\"https://ps.w.org/query-monitor/assets/icon.svg?rev=2056073\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/query-monitor/assets/banner-1544x500.png?rev=1629576\";s:2:\"1x\";s:68:\"https://ps.w.org/query-monitor/assets/banner-772x250.png?rev=1731469\";}s:11:\"banners_rtl\";a:0:{}}s:47:\"show-current-template/show-current-template.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:35:\"w.org/plugins/show-current-template\";s:4:\"slug\";s:21:\"show-current-template\";s:6:\"plugin\";s:47:\"show-current-template/show-current-template.php\";s:11:\"new_version\";s:5:\"0.3.0\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/show-current-template/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/show-current-template.0.3.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:73:\"https://ps.w.org/show-current-template/assets/icon-256x256.png?rev=976031\";s:2:\"1x\";s:65:\"https://ps.w.org/show-current-template/assets/icon.svg?rev=976031\";s:3:\"svg\";s:65:\"https://ps.w.org/show-current-template/assets/icon.svg?rev=976031\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}s:27:\"svg-support/svg-support.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/svg-support\";s:4:\"slug\";s:11:\"svg-support\";s:6:\"plugin\";s:27:\"svg-support/svg-support.php\";s:11:\"new_version\";s:6:\"2.3.15\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/svg-support/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/svg-support.2.3.15.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:64:\"https://ps.w.org/svg-support/assets/icon-256x256.png?rev=1417738\";s:2:\"1x\";s:56:\"https://ps.w.org/svg-support/assets/icon.svg?rev=1417738\";s:3:\"svg\";s:56:\"https://ps.w.org/svg-support/assets/icon.svg?rev=1417738\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/svg-support/assets/banner-1544x500.jpg?rev=1215377\";s:2:\"1x\";s:66:\"https://ps.w.org/svg-support/assets/banner-772x250.jpg?rev=1215377\";}s:11:\"banners_rtl\";a:0:{}}s:41:\"wordpress-importer/wordpress-importer.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:32:\"w.org/plugins/wordpress-importer\";s:4:\"slug\";s:18:\"wordpress-importer\";s:6:\"plugin\";s:41:\"wordpress-importer/wordpress-importer.php\";s:11:\"new_version\";s:5:\"0.6.4\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/wordpress-importer/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/wordpress-importer.0.6.4.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:71:\"https://ps.w.org/wordpress-importer/assets/icon-256x256.png?rev=1908375\";s:2:\"1x\";s:63:\"https://ps.w.org/wordpress-importer/assets/icon.svg?rev=1908375\";s:3:\"svg\";s:63:\"https://ps.w.org/wordpress-importer/assets/icon.svg?rev=1908375\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-importer/assets/banner-772x250.png?rev=547654\";}s:11:\"banners_rtl\";a:0:{}}s:21:\"wp-sweep/wp-sweep.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:22:\"w.org/plugins/wp-sweep\";s:4:\"slug\";s:8:\"wp-sweep\";s:6:\"plugin\";s:21:\"wp-sweep/wp-sweep.php\";s:11:\"new_version\";s:5:\"1.1.1\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/wp-sweep/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/wp-sweep.1.1.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:53:\"https://ps.w.org/wp-sweep/assets/icon.svg?rev=1098912\";s:3:\"svg\";s:53:\"https://ps.w.org/wp-sweep/assets/icon.svg?rev=1098912\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/wp-sweep/assets/banner-1544x500.jpg?rev=1098912\";s:2:\"1x\";s:63:\"https://ps.w.org/wp-sweep/assets/banner-772x250.jpg?rev=1098912\";}s:11:\"banners_rtl\";a:0:{}}s:24:\"wp-all-import/plugin.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:27:\"w.org/plugins/wp-all-import\";s:4:\"slug\";s:13:\"wp-all-import\";s:6:\"plugin\";s:24:\"wp-all-import/plugin.php\";s:11:\"new_version\";s:5:\"3.5.2\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wp-all-import/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/wp-all-import.3.5.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/wp-all-import/assets/icon-256x256.png?rev=1181068\";s:2:\"1x\";s:66:\"https://ps.w.org/wp-all-import/assets/icon-128x128.png?rev=1181068\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/wp-all-import/assets/banner-772x250.png?rev=735306\";}s:11:\"banners_rtl\";a:0:{}}s:31:\"wp-migrate-db/wp-migrate-db.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:27:\"w.org/plugins/wp-migrate-db\";s:4:\"slug\";s:13:\"wp-migrate-db\";s:6:\"plugin\";s:31:\"wp-migrate-db/wp-migrate-db.php\";s:11:\"new_version\";s:6:\"1.0.11\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wp-migrate-db/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/wp-migrate-db.1.0.11.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/wp-migrate-db/assets/icon-256x256.jpg?rev=1809889\";s:2:\"1x\";s:66:\"https://ps.w.org/wp-migrate-db/assets/icon-128x128.jpg?rev=1809889\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wp-migrate-db/assets/banner-1544x500.jpg?rev=1809889\";s:2:\"1x\";s:68:\"https://ps.w.org/wp-migrate-db/assets/banner-772x250.jpg?rev=1809889\";}s:11:\"banners_rtl\";a:0:{}}}}', 'no');
-- --------------------------------------------------------
--
-- Table structure for table `qod_pmxi_files`
--
CREATE TABLE `qod_pmxi_files` (
`id` bigint(20) UNSIGNED NOT NULL,
`import_id` bigint(20) UNSIGNED NOT NULL,
`name` text COLLATE utf8mb4_unicode_520_ci,
`path` text COLLATE utf8mb4_unicode_520_ci,
`registered_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `qod_pmxi_history`
--
CREATE TABLE `qod_pmxi_history` (
`id` bigint(20) UNSIGNED NOT NULL,
`import_id` bigint(20) UNSIGNED NOT NULL,
`type` enum('manual','processing','trigger','continue','') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`time_run` text COLLATE utf8mb4_unicode_520_ci,
`date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`summary` text COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `qod_pmxi_images`
--
CREATE TABLE `qod_pmxi_images` (
`id` bigint(20) UNSIGNED NOT NULL,
`attachment_id` bigint(20) UNSIGNED NOT NULL,
`image_url` varchar(600) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`image_filename` varchar(600) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `qod_pmxi_images`
--
INSERT INTO `qod_pmxi_images` (`id`, `attachment_id`, `image_url`, `image_filename`) VALUES
(1, 225, '', 'qod-logo.svg'),
(2, 235, '', '1f642.svg');
-- --------------------------------------------------------
--
-- Table structure for table `qod_pmxi_imports`
--
CREATE TABLE `qod_pmxi_imports` (
`id` bigint(20) UNSIGNED NOT NULL,
`parent_import_id` bigint(20) NOT NULL DEFAULT '0',
`name` text COLLATE utf8mb4_unicode_520_ci,
`friendly_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`type` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`feed_type` enum('xml','csv','zip','gz','') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`path` text COLLATE utf8mb4_unicode_520_ci,
`xpath` text COLLATE utf8mb4_unicode_520_ci,
`options` longtext COLLATE utf8mb4_unicode_520_ci,
`registered_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`root_element` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
`processing` tinyint(1) NOT NULL DEFAULT '0',
`executing` tinyint(1) NOT NULL DEFAULT '0',
`triggered` tinyint(1) NOT NULL DEFAULT '0',
`queue_chunk_number` bigint(20) NOT NULL DEFAULT '0',
`first_import` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`count` bigint(20) NOT NULL DEFAULT '0',
`imported` bigint(20) NOT NULL DEFAULT '0',
`created` bigint(20) NOT NULL DEFAULT '0',
`updated` bigint(20) NOT NULL DEFAULT '0',
`skipped` bigint(20) NOT NULL DEFAULT '0',
`deleted` bigint(20) NOT NULL DEFAULT '0',
`canceled` tinyint(1) NOT NULL DEFAULT '0',
`canceled_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`failed` tinyint(1) NOT NULL DEFAULT '0',
`failed_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`settings_update_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`last_activity` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`iteration` bigint(20) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `qod_pmxi_posts`
--
CREATE TABLE `qod_pmxi_posts` (
`id` bigint(20) UNSIGNED NOT NULL,
`post_id` bigint(20) UNSIGNED NOT NULL,
`import_id` bigint(20) UNSIGNED NOT NULL,
`unique_key` text COLLATE utf8mb4_unicode_520_ci,
`product_key` text COLLATE utf8mb4_unicode_520_ci,
`iteration` bigint(20) NOT NULL DEFAULT '0',
`specified` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `qod_pmxi_templates`
--
CREATE TABLE `qod_pmxi_templates` (
`id` bigint(20) UNSIGNED NOT NULL,
`options` longtext COLLATE utf8mb4_unicode_520_ci,
`scheduled` varchar(64) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`title` text COLLATE utf8mb4_unicode_520_ci,
`content` longtext COLLATE utf8mb4_unicode_520_ci,
`is_keep_linebreaks` tinyint(1) NOT NULL DEFAULT '0',
`is_leave_html` tinyint(1) NOT NULL DEFAULT '0',
`fix_characters` tinyint(1) NOT NULL DEFAULT '0',
`meta` longtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `qod_postmeta`
--
CREATE TABLE `qod_postmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`post_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `qod_postmeta`
--
INSERT INTO `qod_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(13, 19, '_edit_last', '1'),
(14, 21, '_edit_last', '1'),
(15, 21, '_qod_quote_source', 'The Structure and Interpretation of Computer Programs'),
(16, 23, '_edit_last', '1'),
(17, 25, '_edit_last', '1'),
(18, 27, '_edit_last', '1'),
(19, 29, '_edit_last', '1'),
(20, 31, '_edit_last', '1'),
(21, 33, '_edit_last', '1'),
(22, 33, '_qod_quote_source', 'Program or Be Programmed: Ten Commands for a Digital Age'),
(23, 35, '_edit_last', '1'),
(24, 37, '_edit_last', '1'),
(25, 37, '_qod_quote_source', 'Code Simplicity: The Fundamentals of Software'),
(26, 39, '_edit_last', '1'),
(27, 41, '_edit_last', '1'),
(28, 43, '_edit_last', '1'),
(29, 45, '_edit_last', '1'),
(30, 47, '_edit_last', '1'),
(31, 49, '_edit_last', '1'),
(32, 51, '_edit_last', '1'),
(33, 51, '_qod_quote_source', 'Game Programming Patterns'),
(34, 53, '_edit_last', '1'),
(35, 53, '_qod_quote_source', 'Game Programming Patterns'),
(36, 55, '_edit_last', '1'),
(37, 55, '_qod_quote_source', 'Clean Code: A Handbook of Agile Software Craftsmanship'),
(38, 57, '_edit_last', '1'),
(39, 57, '_qod_quote_source', 'Working Effectively with Legacy Code'),
(40, 59, '_edit_last', '1'),
(41, 61, '_edit_last', '1'),
(43, 63, '_edit_last', '1'),
(44, 65, '_edit_last', '1'),
(45, 67, '_edit_last', '1'),
(46, 69, '_edit_last', '1'),
(47, 71, '_edit_last', '1'),
(48, 73, '_edit_last', '1'),
(49, 75, '_edit_last', '1'),
(50, 77, '_edit_last', '1'),
(51, 79, '_edit_last', '1'),
(52, 79, '_qod_quote_source', 'The Mythical Man-Month'),
(53, 81, '_edit_last', '1'),
(54, 83, '_edit_last', '1'),
(55, 85, '_edit_last', '1'),
(56, 87, '_edit_last', '1'),
(57, 89, '_edit_last', '1'),
(58, 89, '_qod_quote_source', 'christianheilmann.com'),
(59, 89, '_qod_quote_source_url', 'https://www.christianheilmann.com/2005/11/08/do-hr-people-even-read-their-job-ads-when-they-get-published/'),
(60, 91, '_edit_last', '1'),
(61, 91, '_qod_quote_source', 'What Is Code?'),
(62, 91, '_qod_quote_source_url', 'http://www.bloomberg.com/graphics/2015-paul-ford-what-is-code/'),
(63, 93, '_edit_last', '1'),
(64, 95, '_edit_last', '1'),
(65, 97, '_edit_last', '1'),
(66, 101, '_edit_last', '1'),
(67, 101, '_qod_quote_source', 'The Art of Web Design'),
(68, 101, '_qod_quote_source_url', 'https://www.google.ca/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=0CDkQtwIwAGoVChMI1uS97rLuyAIVVfFjCh3DFwrM&url=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3D3iVVM_DgWY4&usg=AFQjCNGKP6BAccnj6iPxgUB_UhEsW-A5xg'),
(69, 103, '_edit_last', '1'),
(70, 103, '_qod_quote_source', 'gerrymcgovern.com'),
(71, 103, '_qod_quote_source_url', 'http://www.gerrymcgovern.com/new-thinking/why-do-organizations-hate-their-content-management-system'),
(72, 105, '_edit_last', '1'),
(73, 105, '_qod_quote_source', 'Medium'),
(74, 105, '_qod_quote_source_url', 'https://medium.com/javascript-scene/the-two-pillars-of-javascript-ee6f3281e7f3'),
(75, 159, '_edit_last', '1'),
(76, 161, '_edit_last', '1'),
(77, 161, '_qod_quote_source', '@sanityinc'),
(78, 161, '_qod_quote_source_url', 'https://twitter.com/sanityinc'),
(79, 163, '_edit_last', '1'),
(80, 163, '_qod_quote_source', '@iamdevloper'),
(81, 163, '_qod_quote_source_url', 'https://twitter.com/iamdevloper'),
(82, 165, '_edit_last', '1'),
(83, 165, '_qod_quote_source', '@garybernhardt'),
(84, 165, '_qod_quote_source_url', 'https://twitter.com/garybernhardt'),
(85, 169, '_edit_last', '1'),
(86, 169, '_qod_quote_source', '@tomscott'),
(87, 169, '_qod_quote_source_url', 'https://twitter.com/tomscott'),
(88, 171, '_edit_last', '1'),
(89, 171, '_qod_quote_source', '@d6'),
(90, 171, '_qod_quote_source_url', 'https://twitter.com/d6'),
(91, 173, '_edit_last', '1'),
(92, 173, '_qod_quote_source', '@JaesCoyle'),
(93, 173, '_qod_quote_source_url', 'https://twitter.com/JaesCoyle'),
(94, 175, '_edit_last', '1'),
(95, 175, '_qod_quote_source', '@nedbat'),
(96, 175, '_qod_quote_source_url', 'https://twitter.com/nedbat'),
(97, 177, '_edit_last', '1'),
(98, 177, '_qod_quote_source', '@fortes'),
(99, 177, '_qod_quote_source_url', 'https://twitter.com/fortes'),
(100, 179, '_edit_last', '1'),
(101, 179, '_qod_quote_source', '@mhoye'),
(102, 179, '_qod_quote_source_url', 'https://twitter.com/mhoye'),
(103, 181, '_edit_last', '1'),
(104, 204, '_edit_last', '1'),
(105, 204, '_qod_quote_source', '@jamesshore'),
(106, 204, '_qod_quote_source_url', 'https://twitter.com/jamesshore'),
(206, 207, '_edit_lock', '1574370855:1'),
(208, 211, '_edit_lock', '1574370712:1'),
(210, 215, '_edit_lock', '1574379899:1'),
(211, 217, '_edit_lock', '1574370461:1'),
(219, 105, '_edit_lock', '1574284409:1'),
(220, 204, '_edit_lock', '1574468319:1'),
(231, 225, '_wp_attached_file', '2019/11/qod-logo.svg'),
(232, 226, '_edit_last', '1'),
(233, 226, '_edit_lock', '1574466704:1'),
(234, 77, '_edit_lock', '1574295204:1'),
(235, 33, '_edit_lock', '1574295211:1'),
(236, 225, '_wp_attachment_image_alt', 'qod-logo'),
(237, 228, '_menu_item_type', 'custom'),
(238, 228, '_menu_item_menu_item_parent', '0'),
(239, 228, '_menu_item_object_id', '228'),
(240, 228, '_menu_item_object', 'custom'),
(241, 228, '_menu_item_target', ''),
(242, 228, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(243, 228, '_menu_item_xfn', ''),
(244, 228, '_menu_item_url', 'http://localhost:8888/qod/'),
(245, 228, '_menu_item_orphaned', '1574369022'),
(246, 229, '_menu_item_type', 'post_type'),
(247, 229, '_menu_item_menu_item_parent', '0'),
(248, 229, '_menu_item_object_id', '215'),
(249, 229, '_menu_item_object', 'page'),
(250, 229, '_menu_item_target', ''),
(251, 229, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(252, 229, '_menu_item_xfn', ''),
(253, 229, '_menu_item_url', ''),
(255, 230, '_menu_item_type', 'post_type'),
(256, 230, '_menu_item_menu_item_parent', '0'),
(257, 230, '_menu_item_object_id', '211'),
(258, 230, '_menu_item_object', 'page'),
(259, 230, '_menu_item_target', ''),
(260, 230, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(261, 230, '_menu_item_xfn', ''),
(262, 230, '_menu_item_url', ''),
(264, 231, '_menu_item_type', 'post_type'),
(265, 231, '_menu_item_menu_item_parent', '0'),
(266, 231, '_menu_item_object_id', '217'),
(267, 231, '_menu_item_object', 'page'),
(268, 231, '_menu_item_target', ''),
(269, 231, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(270, 231, '_menu_item_xfn', ''),
(271, 231, '_menu_item_url', ''),
(272, 231, '_menu_item_orphaned', '1574369022'),
(273, 232, '_menu_item_type', 'post_type'),
(274, 232, '_menu_item_menu_item_parent', '0'),
(275, 232, '_menu_item_object_id', '207'),
(276, 232, '_menu_item_object', 'page'),
(277, 232, '_menu_item_target', ''),
(278, 232, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(279, 232, '_menu_item_xfn', ''),
(280, 232, '_menu_item_url', ''),
(282, 233, '_menu_item_type', 'custom'),
(283, 233, '_menu_item_menu_item_parent', '0'),
(284, 233, '_menu_item_object_id', '233'),
(285, 233, '_menu_item_object', 'custom'),
(286, 233, '_menu_item_target', ''),
(287, 233, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(288, 233, '_menu_item_xfn', ''),
(289, 233, '_menu_item_url', 'https://redacademy.com/'),
(291, 235, '_wp_attached_file', '2019/11/1f642.svg'),
(292, 235, '_wp_attachment_image_alt', 'smile-svg'),
(293, 215, 'inline_featured_image', '0'),
(294, 215, '_edit_last', '1'),
(295, 215, 'qod_logo', '225'),
(296, 215, '_qod_logo', 'field_5dd5b1f1a1a60'),
(297, 236, 'qod_logo', ''),
(298, 236, '_qod_logo', 'field_5dd5b1f1a1a60'),
(299, 237, 'qod_logo', '225'),
(300, 237, '_qod_logo', 'field_5dd5b1f1a1a60'),
(301, 211, 'inline_featured_image', '0'),
(302, 211, '_edit_last', '1'),
(303, 211, 'qod_logo', '225'),
(304, 211, '_qod_logo', 'field_5dd5b1f1a1a60'),
(305, 239, 'qod_logo', '225'),
(306, 239, '_qod_logo', 'field_5dd5b1f1a1a60'),
(307, 207, 'inline_featured_image', '0'),
(308, 207, '_edit_last', '1'),
(309, 207, 'qod_logo', '225'),
(310, 207, '_qod_logo', 'field_5dd5b1f1a1a60'),
(311, 241, 'qod_logo', '225'),
(312, 241, '_qod_logo', 'field_5dd5b1f1a1a60'),
(313, 217, '_wp_trash_meta_status', 'publish'),
(314, 217, '_wp_trash_meta_time', '1574372873'),
(315, 217, '_wp_desired_post_slug', 'home'),
(316, 217, 'inline_featured_image', '0'),
(317, 244, 'inline_featured_image', '0'),
(318, 244, '_edit_lock', '1574375061:1'),
(319, 244, '_edit_last', '1'),
(320, 244, 'qod_logo', '225'),
(321, 244, '_qod_logo', 'field_5dd5b1f1a1a60'),
(322, 246, 'qod_logo', '225'),
(323, 246, '_qod_logo', 'field_5dd5b1f1a1a60'),
(324, 247, 'inline_featured_image', '0'),
(329, 204, 'inline_featured_image', '0'),
(331, 204, 'qod_logo', '225'),
(332, 204, '_qod_logo', 'field_5dd5b1f1a1a60'),
(333, 250, 'qod_logo', '225'),
(334, 250, '_qod_logo', 'field_5dd5b1f1a1a60'),
(335, 251, 'inline_featured_image', '0'),
(338, 251, '_qod_quote_source', 'test-source'),
(339, 251, '_qod_quote_source_url', 'test-source-url.com'),
(340, 251, '_wp_trash_meta_status', 'publish'),
(341, 251, '_wp_trash_meta_time', '1574717072'),
(342, 251, '_wp_desired_post_slug', 'test-title'),
(343, 253, 'inline_featured_image', '0'),
(344, 254, 'inline_featured_image', '0'),
(345, 254, '_wp_trash_meta_status', 'draft'),
(346, 254, '_wp_trash_meta_time', '1574720839'),
(347, 254, '_wp_desired_post_slug', ''),
(348, 253, '_wp_trash_meta_status', 'draft'),
(349, 253, '_wp_trash_meta_time', '1574720843'),
(350, 253, '_wp_desired_post_slug', ''),
(351, 257, 'inline_featured_image', '0'),
(352, 257, '_wp_trash_meta_status', 'draft'),
(353, 257, '_wp_trash_meta_time', '1574720987'),
(354, 257, '_wp_desired_post_slug', '');
-- --------------------------------------------------------
--
-- Table structure for table `qod_posts`
--
CREATE TABLE `qod_posts` (
`ID` bigint(20) UNSIGNED NOT NULL,
`post_author` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
`post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_parent` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `qod_posts`
--
INSERT INTO `qod_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(19, 1, '2015-10-30 23:13:59', '2015-10-30 23:13:59', '<!-- wp:paragraph -->\n<p>Talk is cheap. Show me the code.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'linus-torvalds', '', '', '2015-10-30 23:13:59', '2015-10-30 23:13:59', '', 0, 'http://localhost/quotesondev/?p=19', 0, 'post', '', 0),
(21, 1, '2015-10-30 23:35:43', '2015-10-30 23:35:43', '<!-- wp:paragraph -->\n<p>Programs must be written for people to read, and only incidentally for machines to execute.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'harold-abelson', '', '', '2015-10-30 23:35:43', '2015-10-30 23:35:43', '', 0, 'http://localhost/quotesondev/?p=21', 0, 'post', '', 0),
(23, 1, '2015-10-30 23:36:35', '2015-10-30 23:36:35', '<!-- wp:paragraph -->\n<p>Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'john-woods', '', '', '2015-10-30 23:36:35', '2015-10-30 23:36:35', '', 0, 'http://localhost/quotesondev/?p=23', 0, 'post', '', 0),
(25, 1, '2015-10-30 23:40:03', '2015-10-30 23:40:03', '<!-- wp:paragraph -->\n<p>Give a man a program, frustrate him for a day. Teach a man to program, frustrate him for a lifetime.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'waseem-latif', '', '', '2015-10-30 23:40:03', '2015-10-30 23:40:03', '', 0, 'http://localhost/quotesondev/?p=25', 0, 'post', '', 0),
(27, 1, '2015-10-31 20:25:18', '2015-10-31 20:25:18', '<!-- wp:paragraph -->\n<p>Perl – The only language that looks the same before and after RSA encryption.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'keith-bostic', '', '', '2015-10-31 20:25:18', '2015-10-31 20:25:18', '', 0, 'http://localhost/quotesondev/?p=27', 0, 'post', '', 0),
(29, 1, '2015-10-31 20:26:50', '2015-10-31 20:26:50', '<!-- wp:paragraph -->\n<p>Walking on water and developing software from a specification are easy if both are frozen.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'edward-berard', '', '', '2015-10-31 20:26:50', '2015-10-31 20:26:50', '', 0, 'http://localhost/quotesondev/?p=29', 0, 'post', '', 0),
(31, 1, '2015-10-31 20:27:03', '2015-10-31 20:27:03', '<!-- wp:paragraph -->\n<p>The most important property of a program is whether it accomplishes the intention of its user.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'c-a-r-hoare', '', '', '2015-10-31 20:27:03', '2015-10-31 20:27:03', '', 0, 'http://localhost/quotesondev/?p=31', 0, 'post', '', 0),
(33, 1, '2015-10-31 20:27:54', '2015-10-31 20:27:54', '<!-- wp:paragraph -->\n<p>We are looking at a society increasingly dependent on machines, yet decreasingly capable of making or even using them effectively.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'douglas-rushkoff', '', '', '2015-10-31 20:27:54', '2015-10-31 20:27:54', '', 0, 'http://localhost/quotesondev/?p=33', 0, 'post', '', 0),
(35, 1, '2015-10-31 20:28:34', '2015-10-31 20:28:34', '<!-- wp:paragraph -->\n<p>I\'m not a great programmer; I\'m just a good programmer with great habits.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'kent-beck', '', '', '2015-10-31 20:28:34', '2015-10-31 20:28:34', '', 0, 'http://localhost/quotesondev/?p=35', 0, 'post', '', 0),
(37, 1, '2015-10-31 20:29:52', '2015-10-31 20:29:52', '<!-- wp:paragraph -->\n<p>Some of the best programming is done on paper, really. Putting it into the computer is just a minor detail.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'max-kanat-alexander', '', '', '2015-10-31 20:29:52', '2015-10-31 20:29:52', '', 0, 'http://localhost/quotesondev/?p=37', 0, 'post', '', 0),
(39, 1, '2015-10-31 20:30:38', '2015-10-31 20:30:38', '<!-- wp:paragraph -->\n<p>Any fool can write code that a computer can understand. Good programmers write code that humans can understand.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'martin-fowler', '', '', '2015-10-31 20:30:38', '2015-10-31 20:30:38', '', 0, 'http://localhost/quotesondev/?p=39', 0, 'post', '', 0),
(41, 1, '2015-10-31 20:32:56', '2015-10-31 20:32:56', '<!-- wp:paragraph -->\n<p>Simplicity is prerequisite for reliability.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'edsger-w-dijkstra', '', '', '2015-10-31 20:32:56', '2015-10-31 20:32:56', '', 0, 'http://localhost/quotesondev/?p=41', 0, 'post', '', 0),
(43, 1, '2015-10-31 20:33:49', '2015-10-31 20:33:49', '<!-- wp:paragraph -->\n<p>The Analytical Engine weaves algebraic patterns, just as the Jacquard loom weaves flowers and leaves.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'ada-lovelace', '', '', '2015-10-31 20:33:49', '2015-10-31 20:33:49', '', 0, 'http://localhost/quotesondev/?p=43', 0, 'post', '', 0),
(45, 1, '2015-10-31 20:34:48', '2015-10-31 20:34:48', '<!-- wp:paragraph -->\n<p>Sometimes it pays to stay in bed on Monday, rather than spending the rest of the week debugging Monday\'s code</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'dan-salomon', '', '', '2015-10-31 20:34:48', '2015-10-31 20:34:48', '', 0, 'http://localhost/quotesondev/?p=45', 0, 'post', '', 0),
(47, 1, '2015-10-31 20:35:52', '2015-10-31 20:35:52', '<!-- wp:paragraph -->\n<p>It goes against the grain of modern education to teach children to program. What fun is there in making plans, acquiring discipline in organizing thoughts, devoting attention to detail and learning to be self-critical?</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'alan-j-perlis', '', '', '2015-10-31 20:35:52', '2015-10-31 20:35:52', '', 0, 'http://localhost/quotesondev/?p=47', 0, 'post', '', 0),
(49, 1, '2015-10-31 20:36:12', '2015-10-31 20:36:12', '<!-- wp:paragraph -->\n<p>Kids who are good at traditional school—repeating rote concepts and facts on a test—can fall apart in a situation where that isn’t enough. Programming rewards the experimental, curious mind.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'ketil-moland-olsen', '', '', '2015-10-31 20:36:12', '2015-10-31 20:36:12', '', 0, 'http://localhost/quotesondev/?p=49', 0, 'post', '', 0),
(51, 1, '2015-10-31 20:37:22', '2015-10-31 20:37:22', '<!-- wp:paragraph -->\n<p>Like so many things in software, MVC was invented by Smalltalkers in the seventies. Lispers probably claim they came up with it in the sixties but didn\'t bother writing it down.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'robert-nystrom', '', '', '2015-10-31 20:37:22', '2015-10-31 20:37:22', '', 0, 'http://localhost/quotesondev/?p=51', 0, 'post', '', 0),
(53, 1, '2015-10-31 20:38:02', '2015-10-31 20:38:02', '<!-- wp:paragraph -->\n<p>Most non-programmers don\'t think of plaintext like that. To them, text files feel like filling in tax forms for an angry robotic auditor that yells at them if they forget a single semicolon.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'robert-nystrom-2', '', '', '2015-10-31 20:38:02', '2015-10-31 20:38:02', '', 0, 'http://localhost/quotesondev/?p=53', 0, 'post', '', 0),
(55, 1, '2015-10-31 20:39:09', '2015-10-31 20:39:09', '<!-- wp:paragraph -->\n<p>Truth can only be found in one place: the code.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'robert-c-martin', '', '', '2015-10-31 20:39:09', '2015-10-31 20:39:09', '', 0, 'http://localhost/quotesondev/?p=55', 0, 'post', '', 0),
(57, 1, '2015-10-31 20:39:46', '2015-10-31 20:39:46', '<!-- wp:paragraph -->\n<p>Programming is the art of doing one thing at a time.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'michael-c-feathers', '', '', '2015-10-31 20:39:46', '2015-10-31 20:39:46', '', 0, 'http://localhost/quotesondev/?p=57', 0, 'post', '', 0),
(59, 1, '2015-10-31 20:57:19', '2015-10-31 20:57:19', '<!-- wp:paragraph -->\n<p>I love deadlines. I like the whooshing sound they make as they go by.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'douglas-adams', '', '', '2015-10-31 20:57:19', '2015-10-31 20:57:19', '', 0, 'http://localhost/quotesondev/?p=59', 0, 'post', '', 0),
(61, 1, '2015-10-31 20:57:57', '2015-10-31 20:57:57', '<!-- wp:paragraph -->\n<p>If debugging is the process of removing software bugs, then programming must be the process of putting them in.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'edsger-w-dijkstra-2', '', '', '2015-10-31 20:57:57', '2015-10-31 20:57:57', '', 0, 'http://localhost/quotesondev/?p=61', 0, 'post', '', 0),
(63, 1, '2015-10-31 20:58:40', '2015-10-31 20:58:40', '<!-- wp:paragraph -->\n<p>There are two ways of constructing a software design: One way is to make it so simple that there are obviously no deficiencies, and the other way is to make it so complicated that there are no obvious deficiencies. The first method is far more difficult.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'c-a-r-hoare-2', '', '', '2015-10-31 20:58:40', '2015-10-31 20:58:40', '', 0, 'http://localhost/quotesondev/?p=63', 0, 'post', '', 0),
(65, 1, '2015-10-31 20:59:24', '2015-10-31 20:59:24', '<!-- wp:paragraph -->\n<p>Measuring programming progress by lines of code is like measuring aircraft building progress by weight.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'bill-gates', '', '', '2015-10-31 20:59:24', '2015-10-31 20:59:24', '', 0, 'http://localhost/quotesondev/?p=65', 0, 'post', '', 0),
(67, 1, '2015-10-31 21:00:01', '2015-10-31 21:00:01', '<!-- wp:paragraph -->\n<p>Most good programmers do programming not because they expect to get paid or get adulation by the public, but because it is fun to program.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'linus-torvalds-2', '', '', '2015-10-31 21:00:01', '2015-10-31 21:00:01', '', 0, 'http://localhost/quotesondev/?p=67', 0, 'post', '', 0),
(69, 1, '2015-10-31 21:00:54', '2015-10-31 21:00:54', '<!-- wp:paragraph -->\n<p>People think that computer science is the art of geniuses but the actual reality is the opposite, just many people doing things that build on each other, like a wall of mini stones.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'donald-knuth', '', '', '2015-10-31 21:00:54', '2015-10-31 21:00:54', '', 0, 'http://localhost/quotesondev/?p=69', 0, 'post', '', 0),
(71, 1, '2015-10-31 21:01:52', '2015-10-31 21:01:52', '<!-- wp:paragraph -->\n<p>One of my most productive days was throwing away 1000 lines of code.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'ken-thompson', '', '', '2015-10-31 21:01:52', '2015-10-31 21:01:52', '', 0, 'http://localhost/quotesondev/?p=71', 0, 'post', '', 0),
(73, 1, '2015-10-31 21:02:24', '2015-10-31 21:02:24', '<!-- wp:paragraph -->\n<p>If builders built buildings the way programmers wrote programs, then the first woodpecker that came along wound destroy civilization.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'gerald-weinberg', '', '', '2015-10-31 21:02:24', '2015-10-31 21:02:24', '', 0, 'http://localhost/quotesondev/?p=73', 0, 'post', '', 0),
(75, 1, '2015-10-31 21:03:04', '2015-10-31 21:03:04', '<!-- wp:paragraph -->\n<p>Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'brian-w-kernighan', '', '', '2015-10-31 21:03:04', '2015-10-31 21:03:04', '', 0, 'http://localhost/quotesondev/?p=75', 0, 'post', '', 0),
(77, 1, '2015-10-31 21:03:48', '2015-10-31 21:03:48', '<!-- wp:paragraph -->\n<p>Some people, when confronted with a problem, think \"I know, I\'ll use regular expressions.\" Now they have two problems.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'jamie-zawinski', '', '', '2015-10-31 21:03:48', '2015-10-31 21:03:48', '', 0, 'http://localhost/quotesondev/?p=77', 0, 'post', '', 0),
(79, 1, '2015-10-31 21:04:45', '2015-10-31 21:04:45', '<!-- wp:paragraph -->\n<p>Nine people can\'t make a baby in a month.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'fred-brooks', '', '', '2015-10-31 21:04:45', '2015-10-31 21:04:45', '', 0, 'http://localhost/quotesondev/?p=79', 0, 'post', '', 0),
(81, 1, '2015-10-31 21:05:37', '2015-10-31 21:05:37', '<!-- wp:paragraph -->\n<p>Computer Science is no more about computers than astronomy is about telescopes.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'edsger-w-dijkstra-3', '', '', '2015-10-31 21:05:37', '2015-10-31 21:05:37', '', 0, 'http://localhost/quotesondev/?p=81', 0, 'post', '', 0),
(83, 1, '2015-10-31 21:06:01', '2015-10-31 21:06:01', '<!-- wp:paragraph -->\n<p>There are only two kinds of languages: the ones people complain about and the ones nobody uses.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'bjarne-stroustrup', '', '', '2015-10-31 21:06:01', '2015-10-31 21:06:01', '', 0, 'http://localhost/quotesondev/?p=83', 0, 'post', '', 0),
(85, 1, '2015-10-31 21:06:22', '2015-10-31 21:06:22', '<!-- wp:paragraph -->\n<p>The best thing about a boolean is even if you are wrong, you are only off by a bit.</p>\n<!-- /wp:paragraph -->', 'Anonymous', '', 'publish', 'open', 'open', '', 'anonymous', '', '', '2015-10-31 21:06:22', '2015-10-31 21:06:22', '', 0, 'http://localhost/quotesondev/?p=85', 0, 'post', '', 0),
(87, 1, '2015-10-31 21:07:06', '2015-10-31 21:07:06', '<!-- wp:paragraph -->\n<p>Commenting your code is like cleaning your bathroom—you never want to do it, but it really does create a more pleasant experience for you and your guests.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'ryan-campbell', '', '', '2015-10-31 21:07:06', '2015-10-31 21:07:06', '', 0, 'http://localhost/quotesondev/?p=87', 0, 'post', '', 0),
(89, 1, '2015-10-31 21:07:37', '2015-10-31 21:07:37', '<!-- wp:paragraph -->\n<p>Java is to JavaScript as car is to carpet.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'chris-heilmann', '', '', '2015-10-31 21:07:37', '2015-10-31 21:07:37', '', 0, 'http://localhost/quotesondev/?p=89', 0, 'post', '', 0),
(91, 1, '2015-10-31 21:10:27', '2015-10-31 21:10:27', '<!-- wp:paragraph -->\n<p>A computer is a clock with benefits.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'paul-ford', '', '', '2015-10-31 21:10:27', '2015-10-31 21:10:27', '', 0, 'http://localhost/quotesondev/?p=91', 0, 'post', '', 0),
(93, 1, '2015-10-31 21:11:54', '2015-10-31 21:11:54', '<!-- wp:paragraph -->\n<p>Programming is not a zero-sum game. Teaching something to a fellow programmer doesn\'t take it away from you. I\'m happy to share what I can, because I\'m in it for the love of programming.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'john-carmack', '', '', '2015-10-31 21:11:54', '2015-10-31 21:11:54', '', 0, 'http://localhost/quotesondev/?p=93', 0, 'post', '', 0),
(95, 1, '2015-10-31 21:13:05', '2015-10-31 21:13:05', '<!-- wp:paragraph -->\n<p>You might not think that programmers are artists, but programming is an extremely creative profession. It\'s logic-based creativity.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'john-romero', '', '', '2015-10-31 21:13:05', '2015-10-31 21:13:05', '', 0, 'http://localhost/quotesondev/?p=95', 0, 'post', '', 0),
(97, 1, '2015-10-31 21:14:21', '2015-10-31 21:14:21', '<!-- wp:paragraph -->\n<p>There are two ways to write error-free programs; only the third one works.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'alan-j-perlis-2', '', '', '2015-10-31 21:14:21', '2015-10-31 21:14:21', '', 0, 'http://localhost/quotesondev/?p=97', 0, 'post', '', 0),
(101, 1, '2015-11-01 04:35:03', '2015-11-01 04:35:03', '<!-- wp:paragraph -->\n<p>HTML is the cockroach that will survive a nuclear winter.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'jeffery-zeldman', '', '', '2015-11-01 04:35:03', '2015-11-01 04:35:03', '', 0, 'http://localhost/quotesondev/?p=101', 0, 'post', '', 0),
(103, 1, '2015-11-01 04:35:57', '2015-11-01 04:35:57', '<!-- wp:paragraph -->\n<p>A typical CMS is like a digestive system with no capacity to poop.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'gerry-mcgovern', '', '', '2015-11-01 04:35:57', '2015-11-01 04:35:57', '', 0, 'http://localhost/quotesondev/?p=103', 0, 'post', '', 0),
(105, 1, '2015-11-01 04:40:12', '2015-11-01 04:40:12', '<!-- wp:paragraph -->\n<p>What you make with your code is how you express yourself.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'eric-elliott', '', '', '2015-11-01 04:40:12', '2015-11-01 04:40:12', '', 0, 'http://localhost/quotesondev/?p=105', 0, 'post', '', 0),
(159, 1, '2017-10-10 21:41:55', '2017-10-10 21:41:55', '<!-- wp:paragraph -->\n<p>Hardware eventually fails. Software eventually works.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'michael-hartung', '', '', '2017-10-10 21:41:55', '2017-10-10 21:41:55', '', 0, 'http://localhost/quotesondev/?p=159', 0, 'post', '', 0),
(161, 1, '2017-10-10 21:44:10', '2017-10-10 21:44:10', '<!-- wp:paragraph -->\n<p>The Release Uncertainty Principle says you can accurately know what the software will do, or when you will get it, but not both.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'steve-purcell', '', '', '2017-10-10 21:44:10', '2017-10-10 21:44:10', '', 0, 'http://localhost/quotesondev/?p=161', 0, 'post', '', 0),
(163, 1, '2017-10-10 21:45:46', '2017-10-10 21:45:46', '<!-- wp:paragraph -->\n<p>The barman asks what the first one wants, two race conditions walk into a bar.</p>\n<!-- /wp:paragraph -->', 'I Am Devloper', '', 'publish', 'open', 'open', '', 'i-am-devloper', '', '', '2017-10-10 21:45:46', '2017-10-10 21:45:46', '', 0, 'http://localhost/quotesondev/?p=163', 0, 'post', '', 0),
(165, 1, '2017-10-10 21:47:46', '2017-10-10 21:47:46', '<!-- wp:paragraph -->\n<p>Programmer’s motto: “We’ll cross that bridge when it’s burning underneath us.”</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'gary-bernhardt', '', '', '2017-10-10 21:47:46', '2017-10-10 21:47:46', '', 0, 'http://localhost/quotesondev/?p=165', 0, 'post', '', 0),
(169, 1, '2017-10-11 12:56:06', '2017-10-11 12:56:06', '<!-- wp:paragraph -->\n<p>Some programmers, when confronted with a problem, think “I know, I’ll use floating point arithmetic.” Now they have 1.999999999997 problems.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'tom-scott', '', '', '2017-10-11 12:56:06', '2017-10-11 12:56:06', '', 0, 'http://localhost/quotesondev/?p=169', 0, 'post', '', 0),
(171, 1, '2017-10-11 12:57:15', '2017-10-11 12:57:15', '<!-- wp:paragraph -->\n<p>Some people, when confronted with a problem, think “I know, I’ll use multithreading”. Nothhw tpe yawrve o oblems.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'erik-osheim', '', '', '2017-10-11 12:57:15', '2017-10-11 12:57:15', '', 0, 'http://localhost/quotesondev/?p=171', 0, 'post', '', 0),
(173, 1, '2017-10-11 12:58:13', '2017-10-11 12:58:13', '<!-- wp:paragraph -->\n<p>Some people, when confronted with a problem, think “I know, I’ll use versioning.” Now they have 2.1.0 problems.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'jason-coyle', '', '', '2017-10-11 12:58:13', '2017-10-11 12:58:13', '', 0, 'http://localhost/quotesondev/?p=173', 0, 'post', '', 0),
(175, 1, '2017-10-11 12:58:58', '2017-10-11 12:58:58', '<!-- wp:paragraph -->\n<p>Some people, when faced with a problem, think, “I know, I’ll use binary.” Now they have 10 problems.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'ned-batchelder', '', '', '2017-10-11 12:58:58', '2017-10-11 12:58:58', '', 0, 'http://localhost/quotesondev/?p=175', 0, 'post', '', 0),
(177, 1, '2017-10-11 13:06:37', '2017-10-11 13:06:37', '<!-- wp:paragraph -->\n<p>Debugging is like being the detective in a crime movie where you are also the murderer.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'filipe-fortes', '', '', '2017-10-11 13:06:37', '2017-10-11 13:06:37', '', 0, 'http://localhost/quotesondev/?p=177', 0, 'post', '', 0),
(179, 1, '2017-10-11 13:26:04', '2017-10-11 13:26:04', '<!-- wp:paragraph -->\n<p>Unix will give you enough rope to shoot yourself in the foot. If you didn’t think rope would do that, you should have read the man page.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'mike-hoye', '', '', '2017-10-11 13:26:04', '2017-10-11 13:26:04', '', 0, 'http://localhost/quotesondev/?p=179', 0, 'post', '', 0),
(181, 1, '2017-10-11 13:27:11', '2017-10-11 13:27:11', '<!-- wp:paragraph -->\n<p>When your hammer is C++, everything begins to look like a thumb.</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'steve-haflich', '', '', '2017-10-11 13:27:11', '2017-10-11 13:27:11', '', 0, 'http://localhost/quotesondev/?p=181', 0, 'post', '', 0),
(204, 1, '2017-10-11 13:45:57', '2017-10-11 13:45:57', '<!-- wp:paragraph -->\n<p>Do; or do not. There is no //TODO</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'publish', 'open', 'open', '', 'james-shore', '', '', '2019-11-22 18:54:30', '2019-11-22 23:54:30', '', 0, 'http://localhost/quotesondev/?p=204', 0, 'post', '', 0),
(207, 1, '2019-11-19 14:47:21', '2019-11-19 19:47:21', '', 'Submit a Quote!', '', 'publish', 'closed', 'closed', '', 'submit', '', '', '2019-11-21 16:14:13', '2019-11-21 21:14:13', '', 0, 'http://localhost:8888/qod/?page_id=207', 0, 'page', '', 0),
(211, 1, '2019-11-19 14:49:35', '2019-11-19 19:49:35', '', 'Archives', '', 'publish', 'closed', 'closed', '', 'archives', '', '', '2019-11-21 16:11:50', '2019-11-21 21:11:50', '', 0, 'http://localhost:8888/qod/?page_id=211', 0, 'page', '', 0),
(215, 1, '2019-11-19 14:51:03', '2019-11-19 19:51:03', '<!-- wp:paragraph -->\n<p>Quotes on Dev is a project site for the RED Academy Web Developer Professional program. It’s used to experiment with Ajax, WP API, jQuery, and other cool things. <img class=\"wp-image-235\" style=\"width: 20px;\" src=\"http://localhost:8888/qod/wp-content/uploads/2019/11/1f642.svg\" alt=\"smile-svg\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This site is heavily inspired by <NAME>’s <a href=\"http://quotesondesign.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Quotes on Design</a>.</p>\n<!-- /wp:paragraph -->', 'About', '', 'publish', 'closed', 'closed', '', 'about-us', '', '', '2019-11-21 16:05:44', '2019-11-21 21:05:44', '', 0, 'http://localhost:8888/qod/?page_id=215', 0, 'page', '', 0),
(217, 1, '2019-11-19 14:53:18', '2019-11-19 19:53:18', '', 'Home', '', 'trash', 'closed', 'closed', '', 'home__trashed', '', '', '2019-11-21 16:47:53', '2019-11-21 21:47:53', '', 0, 'http://localhost:8888/qod/?page_id=217', 0, 'page', '', 0),
(225, 1, '2019-11-20 16:36:27', '2019-11-20 21:36:27', '', 'qod-logo', '', 'inherit', 'open', 'closed', '', 'qod-logo', '', '', '2019-11-21 16:05:44', '2019-11-21 21:05:44', '', 215, 'http://localhost:8888/qod/wp-content/uploads/2019/11/qod-logo.svg', 0, 'attachment', 'image/svg+xml', 0),
(226, 1, '2019-11-20 16:39:02', '2019-11-20 21:39:02', 'a:7:{s:8:\"location\";a:2:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"page\";}}i:1;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"post\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}', 'QoD-LOGO', 'qod-logo', 'publish', 'closed', 'closed', '', 'group_5dd5b1e996486', '', '', '2019-11-22 18:53:48', '2019-11-22 23:53:48', '', 0, 'http://localhost:8888/qod/?post_type=acf-field-group&p=226', 0, 'acf-field-group', '', 0),
(227, 1, '2019-11-20 16:39:02', '2019-11-20 21:39:02', 'a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:55:\"any image to be uploaded will be the site\'s header logo\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:4:\"full\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}', 'qod_logo', 'qod_logo', 'publish', 'closed', 'closed', '', 'field_5dd5b1f1a1a60', '', '', '2019-11-21 16:10:26', '2019-11-21 21:10:26', '', 226, 'http://localhost:8888/qod/?post_type=acf-field&p=227', 0, 'acf-field', '', 0),
(228, 1, '2019-11-21 15:43:42', '0000-00-00 00:00:00', '', 'Home', '', 'draft', 'closed', 'closed', '', '', '', '', '2019-11-21 15:43:42', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/qod/?p=228', 1, 'nav_menu_item', '', 0),
(229, 1, '2019-11-21 15:45:28', '2019-11-21 20:45:28', '', 'About', '', 'publish', 'closed', 'closed', '', 'about', '', '', '2019-11-21 15:45:40', '2019-11-21 20:45:40', '', 0, 'http://localhost:8888/qod/?p=229', 1, 'nav_menu_item', '', 0),
(230, 1, '2019-11-21 15:45:28', '2019-11-21 20:45:28', ' ', '', '', 'publish', 'closed', 'closed', '', '230', '', '', '2019-11-21 15:45:40', '2019-11-21 20:45:40', '', 0, 'http://localhost:8888/qod/?p=230', 2, 'nav_menu_item', '', 0),
(231, 1, '2019-11-21 15:43:42', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2019-11-21 15:43:42', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/qod/?p=231', 1, 'nav_menu_item', '', 0),
(232, 1, '2019-11-21 15:45:28', '2019-11-21 20:45:28', ' ', '', '', 'publish', 'closed', 'closed', '', '232', '', '', '2019-11-21 15:45:40', '2019-11-21 20:45:40', '', 0, 'http://localhost:8888/qod/?p=232', 3, 'nav_menu_item', '', 0),
(233, 1, '2019-11-21 15:45:28', '2019-11-21 20:45:28', '', 'RedAcademy', '', 'publish', 'closed', 'closed', '', 'redacademy', '', '', '2019-11-21 15:45:40', '2019-11-21 20:45:40', '', 0, 'http://localhost:8888/qod/?p=233', 4, 'nav_menu_item', '', 0),
(235, 1, '2019-11-21 15:52:20', '2019-11-21 20:52:20', '', 'smile-svg', '', 'inherit', 'open', 'closed', '', '1f642', '', '', '2019-11-21 15:52:30', '2019-11-21 20:52:30', '', 215, 'http://localhost:8888/qod/wp-content/uploads/2019/11/1f642.svg', 0, 'attachment', 'image/svg+xml', 0),
(236, 1, '2019-11-21 16:01:32', '2019-11-21 21:01:32', '<!-- wp:paragraph -->\n<p>Quotes on Dev is a project site for the RED Academy Web Developer Professional program. It’s used to experiment with Ajax, WP API, jQuery, and other cool things. <img class=\"wp-image-235\" style=\"width: 20px;\" src=\"http://localhost:8888/qod/wp-content/uploads/2019/11/1f642.svg\" alt=\"smile-svg\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This site is heavily inspired by <NAME>’s <a href=\"http://quotesondesign.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Quotes on Design</a>.</p>\n<!-- /wp:paragraph -->', 'About', '', 'inherit', 'closed', 'closed', '', '215-revision-v1', '', '', '2019-11-21 16:01:32', '2019-11-21 21:01:32', '', 215, 'http://localhost:8888/qod/215-revision-v1/', 0, 'revision', '', 0),
(237, 1, '2019-11-21 16:05:44', '2019-11-21 21:05:44', '<!-- wp:paragraph -->\n<p>Quotes on Dev is a project site for the RED Academy Web Developer Professional program. It’s used to experiment with Ajax, WP API, jQuery, and other cool things. <img class=\"wp-image-235\" style=\"width: 20px;\" src=\"http://localhost:8888/qod/wp-content/uploads/2019/11/1f642.svg\" alt=\"smile-svg\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This site is heavily inspired by <NAME>’s <a href=\"http://quotesondesign.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Quotes on Design</a>.</p>\n<!-- /wp:paragraph -->', 'About', '', 'inherit', 'closed', 'closed', '', '215-revision-v1', '', '', '2019-11-21 16:05:44', '2019-11-21 21:05:44', '', 215, 'http://localhost:8888/qod/215-revision-v1/', 0, 'revision', '', 0),
(238, 1, '2019-11-21 16:11:48', '2019-11-21 21:11:48', '', 'Archives', '', 'inherit', 'closed', 'closed', '', '211-revision-v1', '', '', '2019-11-21 16:11:48', '2019-11-21 21:11:48', '', 211, 'http://localhost:8888/qod/211-revision-v1/', 0, 'revision', '', 0),
(239, 1, '2019-11-21 16:11:50', '2019-11-21 21:11:50', '', 'Archives', '', 'inherit', 'closed', 'closed', '', '211-revision-v1', '', '', '2019-11-21 16:11:50', '2019-11-21 21:11:50', '', 211, 'http://localhost:8888/qod/211-revision-v1/', 0, 'revision', '', 0),
(240, 1, '2019-11-21 16:14:12', '2019-11-21 21:14:12', '', 'Submit a Quote!', '', 'inherit', 'closed', 'closed', '', '207-revision-v1', '', '', '2019-11-21 16:14:12', '2019-11-21 21:14:12', '', 207, 'http://localhost:8888/qod/207-revision-v1/', 0, 'revision', '', 0),
(241, 1, '2019-11-21 16:14:13', '2019-11-21 21:14:13', '', 'Submit a Quote!', '', 'inherit', 'closed', 'closed', '', '207-revision-v1', '', '', '2019-11-21 16:14:13', '2019-11-21 21:14:13', '', 207, 'http://localhost:8888/qod/207-revision-v1/', 0, 'revision', '', 0),
(242, 1, '2019-11-21 16:14:27', '2019-11-21 21:14:27', '', 'Submit a Quote!', '', 'inherit', 'closed', 'closed', '', '207-autosave-v1', '', '', '2019-11-21 16:14:27', '2019-11-21 21:14:27', '', 207, 'http://localhost:8888/qod/207-autosave-v1/', 0, 'revision', '', 0),
(243, 1, '2019-11-21 16:47:53', '2019-11-21 21:47:53', '', 'Home', '', 'inherit', 'closed', 'closed', '', '217-revision-v1', '', '', '2019-11-21 16:47:53', '2019-11-21 21:47:53', '', 217, 'http://localhost:8888/qod/217-revision-v1/', 0, 'revision', '', 0),
(244, 1, '2019-11-21 17:12:24', '2019-11-21 22:12:24', '', 'home', '', 'publish', 'closed', 'closed', '', 'home', '', '', '2019-11-21 17:13:53', '2019-11-21 22:13:53', '', 0, 'http://localhost:8888/qod/?page_id=244', 0, 'page', '', 0),
(245, 1, '2019-11-21 17:12:24', '2019-11-21 22:12:24', '', 'home', '', 'inherit', 'closed', 'closed', '', '244-revision-v1', '', '', '2019-11-21 17:12:24', '2019-11-21 22:12:24', '', 244, 'http://localhost:8888/qod/244-revision-v1/', 0, 'revision', '', 0),
(246, 1, '2019-11-21 17:12:25', '2019-11-21 22:12:25', '', 'home', '', 'inherit', 'closed', 'closed', '', '244-revision-v1', '', '', '2019-11-21 17:12:25', '2019-11-21 22:12:25', '', 244, 'http://localhost:8888/qod/244-revision-v1/', 0, 'revision', '', 0),
(247, 1, '2019-11-21 22:56:46', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'open', '', '', '', '', '2019-11-21 22:56:46', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/qod/?p=247', 0, 'post', '', 0),
(249, 1, '2019-11-22 18:54:28', '2019-11-22 23:54:28', '<!-- wp:paragraph -->\n<p>Do; or do not. There is no //TODO</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'inherit', 'closed', 'closed', '', '204-revision-v1', '', '', '2019-11-22 18:54:28', '2019-11-22 23:54:28', '', 204, 'http://localhost:8888/qod/204-revision-v1/', 0, 'revision', '', 0),
(250, 1, '2019-11-22 18:54:30', '2019-11-22 23:54:30', '<!-- wp:paragraph -->\n<p>Do; or do not. There is no //TODO</p>\n<!-- /wp:paragraph -->', '<NAME>', '', 'inherit', 'closed', 'closed', '', '204-revision-v1', '', '', '2019-11-22 18:54:30', '2019-11-22 23:54:30', '', 204, 'http://localhost:8888/qod/204-revision-v1/', 0, 'revision', '', 0),
(251, 1, '2019-11-25 16:18:43', '2019-11-25 21:18:43', 'test content', 'test-title', '', 'trash', 'closed', 'open', '', 'test-title__trashed', '', '', '2019-11-25 16:24:33', '2019-11-25 21:24:33', '', 0, 'http://localhost:8888/qod/?p=251', 0, 'post', '', 0),
(252, 1, '2019-11-25 16:18:43', '2019-11-25 21:18:43', 'test content', 'test-title', '', 'inherit', 'closed', 'closed', '', '251-revision-v1', '', '', '2019-11-25 16:18:43', '2019-11-25 21:18:43', '', 251, 'http://localhost:8888/qod/251-revision-v1/', 0, 'revision', '', 0),
(253, 1, '2019-11-25 17:27:23', '2019-11-25 22:27:23', 'gtrdgrd', 'eae`trert`', '', 'trash', 'closed', 'open', '', '__trashed-2', '', '', '2019-11-25 17:27:23', '2019-11-25 22:27:23', '', 0, 'http://localhost:8888/qod/?p=253', 0, 'post', '', 0),
(254, 1, '2019-11-25 17:27:19', '2019-11-25 22:27:19', 'gtrdgrd', 'eae`trert`', '', 'trash', 'closed', 'open', '', '__trashed', '', '', '2019-11-25 17:27:19', '2019-11-25 22:27:19', '', 0, 'http://localhost:8888/qod/?p=254', 0, 'post', '', 0),
(255, 1, '2019-11-25 17:27:19', '2019-11-25 22:27:19', 'gtrdgrd', 'eae`trert`', '', 'inherit', 'closed', 'closed', '', '254-revision-v1', '', '', '2019-11-25 17:27:19', '2019-11-25 22:27:19', '', 254, 'http://localhost:8888/qod/254-revision-v1/', 0, 'revision', '', 0),
(256, 1, '2019-11-25 17:27:23', '2019-11-25 22:27:23', 'gtrdgrd', 'eae`trert`', '', 'inherit', 'closed', 'closed', '', '253-revision-v1', '', '', '2019-11-25 17:27:23', '2019-11-25 22:27:23', '', 253, 'http://localhost:8888/qod/253-revision-v1/', 0, 'revision', '', 0),
(257, 1, '2019-11-25 17:29:47', '2019-11-25 22:29:47', 'adbul', 'abdul', '', 'trash', 'closed', 'open', '', '__trashed-3', '', '', '2019-11-25 17:29:47', '2019-11-25 22:29:47', '', 0, 'http://localhost:8888/qod/?p=257', 0, 'post', '', 0),
(258, 1, '2019-11-25 17:29:47', '2019-11-25 22:29:47', 'adbul', 'abdul', '', 'inherit', 'closed', 'closed', '', '257-revision-v1', '', '', '2019-11-25 17:29:47', '2019-11-25 22:29:47', '', 257, 'http://localhost:8888/qod/257-revision-v1/', 0, 'revision', '', 0);
-- --------------------------------------------------------
--
-- Table structure for table `qod_termmeta`
--
CREATE TABLE `qod_termmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`term_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `qod_terms`
--
CREATE TABLE `qod_terms` (
`term_id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `qod_terms`
--
INSERT INTO `qod_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Uncategorized', 'uncategorized', 0),
(2, 'Programming', 'programming', 0),
(3, 'Best Practices', 'best-practices', 0),
(4, 'computers', 'computers', 0),
(5, 'Humour', 'humour', 0),
(6, 'Learning to Code', 'learning-to-code', 0),
(7, 'perl', 'perl', 0),
(8, 'specifications', 'specifications', 0),
(9, 'critique', 'critique', 0),
(10, 'history', 'history', 0),
(11, 'Debugging', 'debugging', 0),
(12, 'creativity', 'creativity', 0),
(13, 'education', 'education', 0),
(14, 'teaching', 'teaching', 0),
(15, 'Languages', 'languages', 0),
(16, 'lisp', 'lisp', 0),
(17, 'mvc', 'mvc', 0),
(18, 'smalltalk', 'smalltalk', 0),
(19, 'plain text', 'plain-text', 0),
(20, 'Productivity', 'productivity', 0),
(21, 'analogies', 'analogies', 0),
(22, 'work', 'work', 0),
(23, 'computer science', 'computer-science', 0),
(24, 'Now They Have Two Problems', 'two-problems', 0),
(25, 'regular expressions', 'regular-expressions', 0),
(26, 'project management', 'project-management', 0),
(27, 'hardware', 'hardware', 0),
(28, 'commenting', 'commenting', 0),
(29, 'java', 'java', 0),
(30, 'javascript', 'javascript', 0),
(31, 'html', 'html', 0),
(32, 'cms', 'cms', 0),
(33, 'software', 'software', 0),
(34, 'floating point', 'floating-point', 0),
(35, 'threading', 'threading', 0),
(36, 'semver', 'semver', 0),
(37, 'binary', 'binary', 0),
(38, 'operating systems', 'operating-systems', 0),
(39, 'unix', 'unix', 0),
(40, 'c++', 'c', 0),
(41, 'Site_Menu', 'site_menu', 0);
-- --------------------------------------------------------
--
-- Table structure for table `qod_term_relationships`
--
CREATE TABLE `qod_term_relationships` (
`object_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`term_order` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `qod_term_relationships`
--
INSERT INTO `qod_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(19, 2, 0),
(21, 3, 0),
(21, 4, 0),
(23, 3, 0),
(25, 5, 0),
(25, 6, 0),
(27, 5, 0),
(27, 7, 0),
(29, 3, 0),
(29, 8, 0),
(31, 3, 0),
(33, 1, 0),
(33, 9, 0),
(35, 3, 0),
(37, 1, 0),
(37, 4, 0),
(39, 3, 0),
(39, 4, 0),
(41, 3, 0),
(43, 1, 0),
(43, 10, 0),
(45, 11, 0),
(47, 6, 0),
(47, 12, 0),
(47, 13, 0),
(47, 14, 0),
(49, 6, 0),
(49, 12, 0),
(49, 13, 0),
(49, 14, 0),
(51, 15, 0),
(51, 16, 0),
(51, 17, 0),
(51, 18, 0),
(53, 5, 0),
(53, 19, 0),
(55, 2, 0),
(55, 3, 0),
(57, 2, 0),
(57, 3, 0),
(59, 20, 0),
(61, 5, 0),
(61, 11, 0),
(63, 3, 0),
(65, 20, 0),
(65, 21, 0),
(67, 2, 0),
(67, 22, 0),
(69, 1, 0),
(69, 23, 0),
(71, 20, 0),
(73, 2, 0),
(73, 5, 0),
(73, 21, 0),
(75, 11, 0),
(77, 24, 0),
(77, 25, 0),
(79, 20, 0),
(79, 21, 0),
(79, 26, 0),
(81, 1, 0),
(81, 4, 0),
(81, 21, 0),
(81, 27, 0),
(83, 5, 0),
(83, 15, 0),
(85, 5, 0),
(87, 3, 0),
(87, 28, 0),
(89, 15, 0),
(89, 21, 0),
(89, 29, 0),
(89, 30, 0),
(91, 1, 0),
(91, 4, 0),
(91, 21, 0),
(93, 6, 0),
(93, 13, 0),
(93, 14, 0),
(95, 2, 0),
(95, 12, 0),
(97, 11, 0),
(101, 15, 0),
(101, 31, 0),
(103, 1, 0),
(103, 32, 0),
(105, 2, 0),
(105, 12, 0),
(159, 1, 0),
(159, 27, 0),
(159, 33, 0),
(161, 5, 0),
(161, 33, 0),
(163, 5, 0),
(165, 5, 0),
(169, 24, 0),
(169, 34, 0),
(171, 24, 0),
(171, 35, 0),
(173, 24, 0),
(173, 36, 0),
(175, 24, 0),
(175, 37, 0),
(177, 11, 0),
(179, 5, 0),
(179, 38, 0),
(179, 39, 0),
(181, 15, 0),
(181, 40, 0),
(204, 5, 0),
(204, 28, 0),
(229, 41, 0),
(230, 41, 0),
(232, 41, 0),
(233, 41, 0),
(251, 1, 0),
(253, 1, 0),
(254, 1, 0),
(257, 1, 0);
-- --------------------------------------------------------
--
-- Table structure for table `qod_term_taxonomy`
--
CREATE TABLE `qod_term_taxonomy` (
`term_taxonomy_id` bigint(20) UNSIGNED NOT NULL,
`term_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`parent` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `qod_term_taxonomy`
--
INSERT INTO `qod_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 8),
(2, 2, 'category', '', 0, 7),
(3, 3, 'category', '', 0, 11),
(4, 4, 'post_tag', '', 0, 5),
(5, 5, 'category', '', 0, 12),
(6, 6, 'category', '', 0, 4),
(7, 7, 'post_tag', '', 0, 1),
(8, 8, 'post_tag', '', 0, 1),
(9, 9, 'post_tag', '', 0, 1),
(10, 10, 'post_tag', '', 0, 1),
(11, 11, 'category', '', 0, 5),
(12, 12, 'post_tag', '', 0, 4),
(13, 13, 'post_tag', '', 0, 3),
(14, 14, 'post_tag', '', 0, 3),
(15, 15, 'category', '', 0, 5),
(16, 16, 'post_tag', '', 0, 1),
(17, 17, 'post_tag', '', 0, 1),
(18, 18, 'post_tag', '', 0, 1),
(19, 19, 'post_tag', '', 0, 1),
(20, 20, 'category', '', 0, 4),
(21, 21, 'post_tag', '', 0, 6),
(22, 22, 'post_tag', '', 0, 1),
(23, 23, 'post_tag', '', 0, 1),
(24, 24, 'category', '', 0, 5),
(25, 25, 'post_tag', '', 0, 1),
(26, 26, 'post_tag', '', 0, 1),
(27, 27, 'post_tag', '', 0, 2),
(28, 28, 'post_tag', '', 0, 2),
(29, 29, 'post_tag', '', 0, 1),
(30, 30, 'post_tag', '', 0, 1),
(31, 31, 'post_tag', '', 0, 1),
(32, 32, 'post_tag', '', 0, 1),
(33, 33, 'post_tag', '', 0, 2),
(34, 34, 'post_tag', '', 0, 1),
(35, 35, 'post_tag', '', 0, 1),
(36, 36, 'post_tag', '', 0, 1),
(37, 37, 'post_tag', '', 0, 1),
(38, 38, 'post_tag', '', 0, 1),
(39, 39, 'post_tag', '', 0, 1),
(40, 40, 'post_tag', '', 0, 1),
(41, 41, 'nav_menu', '', 0, 4);
-- --------------------------------------------------------
--
-- Table structure for table `qod_usermeta`
--
CREATE TABLE `qod_usermeta` (
`umeta_id` bigint(20) UNSIGNED NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `qod_usermeta`
--
INSERT INTO `qod_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'nickname', 'soservin07'),
(2, 1, 'first_name', ''),
(3, 1, 'last_name', ''),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'syntax_highlighting', 'true'),
(7, 1, 'comment_shortcuts', 'false'),
(8, 1, 'admin_color', 'fresh'),
(9, 1, 'use_ssl', '0'),
(10, 1, 'show_admin_bar_front', 'true'),
(11, 1, 'locale', ''),
(12, 1, 'qod_capabilities', 'a:1:{s:13:\"administrator\";b:1;}'),
(13, 1, 'qod_user_level', '10'),
(14, 1, 'dismissed_wp_pointers', ''),
(15, 1, 'show_welcome_panel', '0'),
(16, 1, 'session_tokens', 'a:4:{s:64:\"bf5472c5102062bf2caaf1cdc417f98366616bbcbe43e4382bcfd709b63cdb86\";a:4:{s:10:\"expiration\";i:1574889486;s:2:\"ip\";s:9:\"127.0.0.1\";s:2:\"ua\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:71.0) Gecko/20100101 Firefox/71.0\";s:5:\"login\";i:1574716686;}s:64:\"a21ab7f4dd02e28cfc18fafe8c121e7a6a8ac3d877ea78bbe9aa82fc3890c69a\";a:4:{s:10:\"expiration\";i:1574889486;s:2:\"ip\";s:9:\"127.0.0.1\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\";s:5:\"login\";i:1574716686;}s:64:\"128b7becc5acd2f53136dea42315285f4ac29ba98dc270a2ba1bc62824150d39\";a:4:{s:10:\"expiration\";i:1574889486;s:2:\"ip\";s:9:\"127.0.0.1\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\";s:5:\"login\";i:1574716686;}s:64:\"a59451fe05af711fa5f5269fa3434b1d5dcefbc39030a7b81b46b0ad5fbc54e0\";a:4:{s:10:\"expiration\";i:1574916600;s:2:\"ip\";s:9:\"127.0.0.1\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36\";s:5:\"login\";i:1574743800;}}'),
(17, 1, 'qod_dashboard_quick_press_last_post_id', '247'),
(18, 1, 'community-events-location', 'a:1:{s:2:\"ip\";s:9:\"127.0.0.0\";}'),
(19, 1, 'wpcf7_hide_welcome_panel_on', 'a:1:{i:0;s:3:\"5.1\";}'),
(20, 1, 'qod_user-settings', 'libraryContent=browse'),
(21, 1, 'qod_user-settings-time', '1574295732'),
(22, 1, 'managenav-menuscolumnshidden', 'a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),
(23, 1, 'metaboxhidden_nav-menus', 'a:1:{i:0;s:12:\"add-post_tag\";}'),
(24, 1, 'closedpostboxes_page', 'a:0:{}'),
(25, 1, 'metaboxhidden_page', 'a:0:{}'),
(26, 1, 'meta-box-order_page', 'a:4:{s:6:\"normal\";s:23:\"acf-group_5dd5b1e996486\";s:15:\"acf_after_title\";s:0:\"\";s:4:\"side\";s:0:\"\";s:8:\"advanced\";s:0:\"\";}'),
(27, 1, 'meta-box-order_acf-field-group', 'a:3:{s:4:\"side\";s:9:\"submitdiv\";s:6:\"normal\";s:80:\"acf-field-group-fields,acf-field-group-locations,acf-field-group-options,slugdiv\";s:8:\"advanced\";s:0:\"\";}'),
(28, 1, 'screen_layout_acf-field-group', '2'),
(29, 1, 'closedpostboxes_acf-field-group', 'a:0:{}'),
(30, 1, 'metaboxhidden_acf-field-group', 'a:1:{i:0;s:7:\"slugdiv\";}');
-- --------------------------------------------------------
--
-- Table structure for table `qod_users`
--
CREATE TABLE `qod_users` (
`ID` bigint(20) UNSIGNED NOT NULL,
`user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `qod_users`
--
INSERT INTO `qod_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'soservin07', '$P$BY8AF7Fm7O21GBahD3A5FaoI8PMgIL0', 'soservin07', '<EMAIL>', '', '2019-11-19 19:24:13', '', 0, 'soservin07');
-- --------------------------------------------------------
--
-- Table structure for table `wp_commentmeta`
--
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`comment_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_comments`
--
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) UNSIGNED NOT NULL,
`comment_post_ID` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_parent` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`user_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_comments`
--
INSERT INTO `wp_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(1, 1, 'A WordPress Commenter', '<EMAIL>', 'https://wordpress.org/', '', '2019-11-19 14:20:18', '2019-11-19 19:20:18', 'Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.', 0, '1', '', '', 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_links`
--
CREATE TABLE `wp_links` (
`link_id` bigint(20) UNSIGNED NOT NULL,
`link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) UNSIGNED NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_options`
--
CREATE TABLE `wp_options` (
`option_id` bigint(20) UNSIGNED NOT NULL,
`option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_options`
--
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://localhost:8888/qod', 'yes'),
(2, 'home', 'http://localhost:8888/qod', 'yes'),
(3, 'blogname', 'Quotes on Dev', 'yes'),
(4, 'blogdescription', 'Just another WordPress site', 'yes'),
(5, 'users_can_register', '0', 'yes'),
(6, 'admin_email', '<EMAIL>', 'yes'),
(7, 'start_of_week', '1', 'yes'),
(8, 'use_balanceTags', '0', 'yes'),
(9, 'use_smilies', '1', 'yes'),
(10, 'require_name_email', '1', 'yes'),
(11, 'comments_notify', '1', 'yes'),
(12, 'posts_per_rss', '10', 'yes'),
(13, 'rss_use_excerpt', '0', 'yes'),
(14, 'mailserver_url', 'mail.example.com', 'yes'),
(15, 'mailserver_login', '<EMAIL>', 'yes'),
(16, 'mailserver_pass', 'password', '<PASSWORD>'),
(17, 'mailserver_port', '110', 'yes'),
(18, 'default_category', '1', 'yes'),
(19, 'default_comment_status', 'open', 'yes'),
(20, 'default_ping_status', 'open', 'yes'),
(21, 'default_pingback_flag', '1', 'yes'),
(22, 'posts_per_page', '10', 'yes'),
(23, 'date_format', 'F j, Y', 'yes'),
(24, 'time_format', 'g:i a', 'yes'),
(25, 'links_updated_date_format', 'F j, Y g:i a', 'yes'),
(26, 'comment_moderation', '0', 'yes'),
(27, 'moderation_notify', '1', 'yes'),
(28, 'permalink_structure', '/%year%/%monthnum%/%day%/%postname%/', 'yes'),
(29, 'rewrite_rules', 'a:74:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}', 'yes'),
(30, 'hack_file', '0', 'yes'),
(31, 'blog_charset', 'UTF-8', 'yes'),
(32, 'moderation_keys', '', 'no'),
(33, 'active_plugins', 'a:0:{}', 'yes'),
(34, 'category_base', '', 'yes'),
(35, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
(36, 'comment_max_links', '2', 'yes'),
(37, 'gmt_offset', '0', 'yes'),
(38, 'default_email_category', '1', 'yes'),
(39, 'recently_edited', '', 'no'),
(40, 'template', 'twentytwenty', 'yes'),
(41, 'stylesheet', 'twentytwenty', 'yes'),
(42, 'comment_whitelist', '1', 'yes'),
(43, 'blacklist_keys', '', 'no'),
(44, 'comment_registration', '0', 'yes'),
(45, 'html_type', 'text/html', 'yes'),
(46, 'use_trackback', '0', 'yes'),
(47, 'default_role', 'subscriber', 'yes'),
(48, 'db_version', '45805', 'yes'),
(49, 'uploads_use_yearmonth_folders', '1', 'yes'),
(50, 'upload_path', '', 'yes'),
(51, 'blog_public', '1', 'yes'),
(52, 'default_link_category', '2', 'yes'),
(53, 'show_on_front', 'posts', 'yes'),
(54, 'tag_base', '', 'yes'),
(55, 'show_avatars', '1', 'yes'),
(56, 'avatar_rating', 'G', 'yes'),
(57, 'upload_url_path', '', 'yes'),
(58, 'thumbnail_size_w', '150', 'yes'),
(59, 'thumbnail_size_h', '150', 'yes'),
(60, 'thumbnail_crop', '1', 'yes'),
(61, 'medium_size_w', '300', 'yes'),
(62, 'medium_size_h', '300', 'yes'),
(63, 'avatar_default', 'mystery', 'yes'),
(64, 'large_size_w', '1024', 'yes'),
(65, 'large_size_h', '1024', 'yes'),
(66, 'image_default_link_type', 'none', 'yes'),
(67, 'image_default_size', '', 'yes'),
(68, 'image_default_align', '', 'yes'),
(69, 'close_comments_for_old_posts', '0', 'yes'),
(70, 'close_comments_days_old', '14', 'yes'),
(71, 'thread_comments', '1', 'yes'),
(72, 'thread_comments_depth', '5', 'yes'),
(73, 'page_comments', '0', 'yes'),
(74, 'comments_per_page', '50', 'yes'),
(75, 'default_comments_page', 'newest', 'yes'),
(76, 'comment_order', 'asc', 'yes'),
(77, 'sticky_posts', 'a:0:{}', 'yes'),
(78, 'widget_categories', 'a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(79, 'widget_text', 'a:0:{}', 'yes'),
(80, 'widget_rss', 'a:0:{}', 'yes'),
(81, 'uninstall_plugins', 'a:0:{}', 'no'),
(82, 'timezone_string', 'America/Toronto', 'yes'),
(83, 'page_for_posts', '0', 'yes'),
(84, 'page_on_front', '0', 'yes'),
(85, 'default_post_format', '0', 'yes'),
(86, 'link_manager_enabled', '0', 'yes'),
(87, 'finished_splitting_shared_terms', '1', 'yes'),
(88, 'site_icon', '0', 'yes'),
(89, 'medium_large_size_w', '768', 'yes'),
(90, 'medium_large_size_h', '0', 'yes'),
(91, 'wp_page_for_privacy_policy', '3', 'yes'),
(92, 'show_comments_cookies_opt_in', '1', 'yes'),
(93, 'admin_email_lifespan', '1589743217', 'yes'),
(94, 'initial_db_version', '45805', 'yes'),
(95, 'wp_user_roles', 'a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}', 'yes'),
(96, 'fresh_site', '1', 'yes'),
(97, 'WPLANG', 'en_CA', 'yes'),
(98, 'widget_search', 'a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}', 'yes'),
(99, 'widget_recent-posts', 'a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(100, 'widget_recent-comments', 'a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(101, 'widget_archives', 'a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(102, 'widget_meta', 'a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}', 'yes'),
(103, 'sidebars_widgets', 'a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}', 'yes'),
(104, 'cron', 'a:6:{i:1574194820;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1574234420;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1574277618;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1574277631;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1574277633;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}', 'yes'),
(105, 'widget_pages', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(106, 'widget_calendar', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(107, 'widget_media_audio', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(108, 'widget_media_image', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(109, 'widget_media_gallery', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(110, 'widget_media_video', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(111, 'widget_tag_cloud', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(112, 'widget_nav_menu', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(113, 'widget_custom_html', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(115, 'recovery_keys', 'a:0:{}', 'yes'),
(117, 'theme_mods_twentytwenty', 'a:1:{s:18:\"custom_css_post_id\";i:-1;}', 'yes'),
(120, '_site_transient_timeout_theme_roots', '1574193021', 'no'),
(121, '_site_transient_theme_roots', 'a:3:{s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";}', 'no'),
(123, '_site_transient_update_core', 'O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:63:\"https://downloads.wordpress.org/release/en_CA/wordpress-5.3.zip\";s:6:\"locale\";s:5:\"en_CA\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:63:\"https://downloads.wordpress.org/release/en_CA/wordpress-5.3.zip\";s:10:\"no_content\";b:0;s:11:\"new_bundled\";b:0;s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:3:\"5.3\";s:7:\"version\";s:3:\"5.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1574191227;s:15:\"version_checked\";s:3:\"5.3\";s:12:\"translations\";a:0:{}}', 'no'),
(124, '_site_transient_update_themes', 'O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1574191227;s:7:\"checked\";a:3:{s:14:\"twentynineteen\";s:3:\"1.4\";s:15:\"twentyseventeen\";s:3:\"2.2\";s:12:\"twentytwenty\";s:3:\"1.0\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}', 'no'),
(125, '_site_transient_update_plugins', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1574191228;s:7:\"checked\";a:2:{s:19:\"akismet/akismet.php\";s:5:\"4.1.3\";s:9:\"hello.php\";s:5:\"1.7.2\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:2:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.1.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}}s:9:\"hello.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}}}}', 'no'),
(126, '_site_transient_timeout_browser_f9f7120ce5a4a9cf082c424b40cf59f5', '1574796032', 'no'),
(127, '_site_transient_browser_f9f7120ce5a4a9cf082c424b40cf59f5', 'a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"78.0.3904.97\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}', 'no'),
(128, '_site_transient_timeout_php_check_d1959de4b7de84f195ea226c4728f095', '1574796033', 'no'),
(129, '_site_transient_php_check_d1959de4b7de84f195ea226c4728f095', 'a:5:{s:19:\"recommended_version\";s:3:\"7.3\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}', 'no'),
(131, '_site_transient_timeout_community-events-1aecf33ab8525ff212ebdffbb438372e', '1574234435', 'no'),
(132, '_site_transient_community-events-1aecf33ab8525ff212ebdffbb438372e', 'a:3:{s:9:\"sandboxed\";b:0;s:8:\"location\";a:1:{s:2:\"ip\";s:9:\"127.0.0.0\";}s:6:\"events\";a:0:{}}', 'no'),
(133, 'can_compress_scripts', '0', 'no'),
(134, '_transient_timeout_feed_53c6368e164927c356de1596c8cebec9', '1574234436', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(135, '_transient_feed_53c6368e164927c356de1596c8cebec9', 'a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Blog | WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"https://en-ca.wordpress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Apr 2017 18:38:31 -0400\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-CA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=5.4-alpha-46750\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:97:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordCamp Coming to Halifax, Nova Scotia!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://en-ca.wordpress.org/2017/04/18/wordcamp-coming-to-halifax-nova-scotia/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://en-ca.wordpress.org/2017/04/18/wordcamp-coming-to-halifax-nova-scotia/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Apr 2017 18:20:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:13:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"Canada\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"Canadian\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:9:\"community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:20:\"Dalhousie University\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:10:\"East Coast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:11:\"habourfront\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:7;a:5:{s:4:\"data\";s:7:\"Halifax\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:8;a:5:{s:4:\"data\";s:13:\"Happiness Bar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:9;a:5:{s:4:\"data\";s:11:\"Nova Scotia\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:10;a:5:{s:4:\"data\";s:5:\"tours\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:11;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:12;a:5:{s:4:\"data\";s:16:\"WordCamp Halifax\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://en-ca.wordpress.org/?p=409\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:320:\"This May marks a very special month for people in Atlantic Canada. Not only will the first signs of spring appear in the area (finally), but a new conference will be popping up as well. WordCamp Halifax is happening on May 27th at Marion McCain Building at Dalhousie University. This will be the first WordCamp […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3670:\"<figure id=\"attachment_412\" aria-describedby=\"caption-attachment-412\" style=\"width: 290px\" class=\"wp-caption alignright\"><img class=\"wp-image-412 size-medium\" src=\"https://en-ca.wordpress.org/files/2017/04/Large_lobster_wapuu-290x300.jpg\" alt=\"offical wapuu of WordCamp Halifax\" width=\"290\" height=\"300\" srcset=\"https://en-ca.wordpress.org/files/2017/04/Large_lobster_wapuu-290x300.jpg 290w, https://en-ca.wordpress.org/files/2017/04/Large_lobster_wapuu.jpg 400w\" sizes=\"(max-width: 290px) 100vw, 290px\" /><figcaption id=\"caption-attachment-412\" class=\"wp-caption-text\">Meet ‘Wabster’, WordCamp Halifax’s official wapuu!</figcaption></figure>\n<p>This May marks a very special month for people in Atlantic Canada. Not only will the first signs of spring appear in the area (finally), but a new conference will be popping up as well.</p>\n<p><a href=\"https://2017.halifax.wordcamp.org/\" target=\"_blank\" rel=\"noopener noreferrer\">WordCamp Halifax</a> is happening on May 27th at Marion McCain Building at Dalhousie University. This will be the first WordCamp in Canada East of Montreal, making it <em>the</em> web-related event of the season for Maritimers.</p>\n<p> </p>\n<h2>Get To Know Halifax</h2>\n<p>Halifax is best known for its friendly community and beautiful harbour. Take in cafes, beer gardens, the Citadel Hill, a farmers market and more pubs than you can count! May is a lovely time of year on the peninsula with lots of sunshine and occasional shower. Be sure to check out the newly built Central Library downtown – a spectacular architectural feat. Spend the whole week in Halifax to take road trips to other beautiful parts of the province: wine tours, U-picks and quaint fishing villages can all be found within a few hours drive away from the capital.</p>\n<p>WordCamp has affordable accommodations if you want to stay close to the venue. More information can be <a href=\"https://2017.halifax.wordcamp.org/venue/\" target=\"_blank\" rel=\"noopener noreferrer\">found here</a>.</p>\n<p> </p>\n<h2>What To Expect At WordCamp Halifax</h2>\n<p>With a mere $25 price tag, attendees can expect to enjoy:</p>\n<ul>\n<li>Catered lunch</li>\n<li>Swag bag with lots of goodies</li>\n<li>Happiness Bar where attendees can get one-on-one help with their website</li>\n<li>Lots of networking with people from a multitude of industries and skill levels</li>\n<li>25 local, national and international <a href=\"https://2017.halifax.wordcamp.org/speakers/\" target=\"_blank\" rel=\"noopener noreferrer\">speakers</a></li>\n<li>21 <a href=\"https://2017.halifax.wordcamp.org/sessions/\" target=\"_blank\" rel=\"noopener noreferrer\">informative sessions</a> in three tracks</li>\n<li>An After Party five minutes from the venue, with affordable bevvy’s & snacks (you know how Haligonians love a good kitchen party!)</li>\n</ul>\n<p>The team has worked hard to bring diverse programming to this inaugural WordCamp with three tracks of learning:</p>\n<ul>\n<li><strong>Content Creators:</strong> Easiest sessions. Little prior WordPress experience expected</li>\n<li><strong>Site Creators:</strong> Some WordPress experience would be beneficial for these sessions, but is not required. Small amounts of HTML, CSS, PHP and Javascript might be presented in some talks</li>\n<li><strong>Code Creators:</strong> Advanced WordPress concepts, HTML, CSS, PHP and Javascript will be presented.</li>\n</ul>\n<p> </p>\n<p>We can’t wait to see everyone this May, so <a href=\"https://2017.halifax.wordcamp.org/tickets/\" target=\"_blank\" rel=\"noopener noreferrer\">nab a ticket</a>. With a limited seating of 185, you’ll have to grab one before they’re gone!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://en-ca.wordpress.org/2017/04/18/wordcamp-coming-to-halifax-nova-scotia/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:67:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Canadian English Theme Translations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://en-ca.wordpress.org/2015/07/20/themes-in-en-ca/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://en-ca.wordpress.org/2015/07/20/themes-in-en-ca/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 20 Jul 2015 01:33:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:4:\"l10n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:6:\"Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://en-ca.wordpress.org/?p=303\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:396:\"The core WordPress project, have now opened up supported themes for translation into local languages. This has opened up thousands of new text strings to translate from US English to Canadian English. If you would like to assist, then you can head on over to https://translate.wordpress.org/locale/en-ca/default/wp-themes and start translating. We will then review all submitted stings […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:574:\"<p>The core WordPress project, have now opened up supported themes for translation into local languages. This has opened up thousands of new text strings to translate from US English to Canadian English.</p>\n<p>If you would like to assist, then you can head on over to <a href=\"https://translate.wordpress.org/locale/en-ca/default/wp-themes\">https://translate.wordpress.org/locale/en-ca/default/wp-themes</a> and start translating.</p>\n<p>We will then review all submitted stings for accuracy. You can post a comment to this post of the themes you have contributed to.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://en-ca.wordpress.org/2015/07/20/themes-in-en-ca/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:73:\"\n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"WordPress 4.0 “Benny”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://en-ca.wordpress.org/2014/09/04/wordpress-4-0-benny/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://en-ca.wordpress.org/2014/09/04/wordpress-4-0-benny/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 Sep 2014 22:34:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:16:\"English (Canada)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:5:\"en_CA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:9:\"WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://en-ca.wordpress.org/?p=278\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:366:\"The Canadian English version of WordPress 4.0 is now released! Official Notice from the Core team: Version 4.0 of WordPress, named “Benny” in honor of jazz clarinetist and bandleader<NAME>, is available for download or update in your WordPress dashboard. While 4.0 is just another number for us after 3.9 and before 4.1, we feel we’ve put a […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:701:\"<p>The Canadian English version of WordPress 4.0 is now released!</p>\n<p><a href=\"https://wordpress.org/news/2014/09/benny/\" target=\"_blank\">Official Notice from the Core team:</a></p>\n<blockquote><p>Version 4.0 of WordPress, named “Benny” in honor of jazz clarinetist and bandleader<a href=\"http://en.wikipedia.org/wiki/Benny_Goodman\"><NAME></a>, is available <a href=\"https://wordpress.org/download/\">for download</a> or update in your WordPress dashboard. While 4.0 is just another number for us after 3.9 and before 4.1, we feel we’ve put a little extra polish into it. This release brings you a smoother writing and management experience we think you’ll enjoy.</p></blockquote>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://en-ca.wordpress.org/2014/09/04/wordpress-4-0-benny/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:67:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"WordPress 3.9 “Smith”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://en-ca.wordpress.org/2014/04/21/wordpress-3-9-smith/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://en-ca.wordpress.org/2014/04/21/wordpress-3-9-smith/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 21 Apr 2014 00:41:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:16:\"English (Canada)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:5:\"en_CA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://en-ca.wordpress.org/?p=263\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:293:\"Version 3.9 of WordPress, named “Smith” in honor of jazz organist <NAME>, is available for download or update in your WordPress dashboard. This release features a number of refinements that we hope you’ll love. The full description of the update can be read on the official post.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:630:\"<p><span style=\"color: #444444\">Version 3.9 of WordPress, named “Smith” in honor of jazz organist </span><a style=\"color: #4ca6cf\" href=\"http://en.wikipedia.org/wiki/Jimmy_Smith_(musician)\"><NAME></a><span style=\"color: #444444\">, is available </span><a style=\"color: #4ca6cf\" href=\"https://wordpress.org/download/\">for download</a><span style=\"color: #444444\"> or update in your WordPress dashboard. This release features a number of refinements that we hope you’ll love.</span></p>\n<p>The full description of the update can be <a href=\"https://wordpress.org/news/2014/04/smith/\">read on the official post.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://en-ca.wordpress.org/2014/04/21/wordpress-3-9-smith/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:67:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"WordPress 3.8 is Out!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://en-ca.wordpress.org/2013/12/12/i-didnt-know-what-time-it-was-wordpress-3-8-is-out/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://en-ca.wordpress.org/2013/12/12/i-didnt-know-what-time-it-was-wordpress-3-8-is-out/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Dec 2013 23:57:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:16:\"English (Canada)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:5:\"en_CA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://en-ca.wordpress.org/?p=245\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:156:\"After lots of work by many. WordPress 3.8 is out in Canadian English. Update your sites now! It will look amazing! You can also read the release notes here.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:273:\"<p>After lots of work by many. WordPress 3.8 is out in Canadian English.</p>\n<p>Update your sites now! It will look amazing! You can also read the release notes <a title=\"WordPress 3.8 Parker\" href=\"https://wordpress.org/news/2013/12/parker/\" target=\"_blank\">here</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://en-ca.wordpress.org/2013/12/12/i-didnt-know-what-time-it-was-wordpress-3-8-is-out/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:67:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"WordPress 3.7 “Basie” in Canadian English, Eh!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://en-ca.wordpress.org/2013/10/24/wordpress-3-7-basie-in-canadian-english-eh/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://en-ca.wordpress.org/2013/10/24/wordpress-3-7-basie-in-canadian-english-eh/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Oct 2013 23:42:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:16:\"English (Canada)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:5:\"en_CA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://en-ca.wordpress.org/?p=241\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:360:\"It is that time that we get to release a brand new major release of WordPress. There are a lot of changes in the backend, not that you should notice. WordPress 3.7 “Basie” Posted October 24, 2013 by <NAME>. Filed under Releases. Version 3.7 of WordPress, named “Basie” in honor of Count Basie, is available for download or update […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2585:\"<p>It is that time that we get to release a brand new major release of WordPress. There are a lot of changes in the backend, not that you should notice.</p>\n<blockquote>\n<h2><a href=\"https://wordpress.org/news/2013/10/basie/\">WordPress 3.7 “Basie”</a></h2>\n<div>Posted October 24, 2013 by <a href=\"http://ma.tt/\"><NAME></a>. Filed under <a title=\"View all posts in Releases\" href=\"https://wordpress.org/news/category/releases/\" rel=\"category tag\">Releases</a>.</div>\n</blockquote>\n<div>\n<blockquote><p>Version 3.7 of WordPress, named “Basie” in honor of <a href=\"http://en.wikipedia.org/wiki/Count_basie\">Count Basie</a>, is available <a href=\"https://wordpress.org/download/\">for download</a> or update in your WordPress dashboard. This release features some of the most important architectural updates we’ve made to date. Here are the big ones:</p>\n<ul>\n<li><strong>Updates while you sleep</strong>: With WordPress 3.7, you don’t have to lift a finger to apply maintenance and security updates. Most sites are now able to automatically apply these updates in the background. The update process also has been made even more reliable and secure, with dozens of new checks and safeguards.</li>\n<li><strong>Stronger password recommendations</strong>: Your password is your site’s first line of defense. It’s best to create passwords that are complex, long, and unique. To that end, our password meter has been updated in WordPress 3.7 to recognize common mistakes that can weaken your password: dates, names, keyboard patterns (123456789), and even pop culture references.</li>\n<li><strong>Better global support</strong>: Localized versions of WordPress will receive faster and more complete translations. WordPress 3.7 adds support for automatically installing the right language files and keeping them up to date, a boon for the many millions who use WordPress in a language other than English.</li>\n</ul>\n<p>For developers there are lots of options around how to control the new updates feature, including allowing it to handle major upgrades as well as minor ones, more sophisticated date query support, and multisite improvements. As always, if you’re hungry for more <a href=\"https://codex.wordpress.org/Version_3.7\">dive into the Codex</a> or browse the <a href=\"https://core.trac.wordpress.org/query?status=closed&group=resolution&milestone=3.7\">over 400 closed tickets on Trac</a>.</p>\n<p>Read full post >> <a href=\"https://wordpress.org/news/2013/10/basie/\">https://wordpress.org/news/2013/10/basie/</a></p></blockquote>\n</div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://en-ca.wordpress.org/2013/10/24/wordpress-3-7-basie-in-canadian-english-eh/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:70:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Error in 3.6 Build\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://en-ca.wordpress.org/2013/08/06/error-in-3-6-build/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://en-ca.wordpress.org/2013/08/06/error-in-3-6-build/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Aug 2013 00:43:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:16:\"English (Canada)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:5:\"en_CA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:9:\"WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://en-ca.wordpress.org/?p=234\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:233:\"There was an error with the original build of the Canadian English 3.6 that was giving version 3.6-beta3-24485. I have fixed the build if you have the incorrect version then use the built-in updater now, or re-download on the right.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:241:\"<p>There was an error with the original build of the Canadian English 3.6 that was giving version 3.6-beta3-24485. I have fixed the build if you have the incorrect version then use the built-in updater now, or re-download on the right.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://en-ca.wordpress.org/2013/08/06/error-in-3-6-build/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:64:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"Long Weekend, Long Awaite WordPress 3.6 Released\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://en-ca.wordpress.org/2013/08/01/long-weekend-long-awaite-wordpress-3-6-released/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://en-ca.wordpress.org/2013/08/01/long-weekend-long-awaite-wordpress-3-6-released/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Aug 2013 23:02:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://en-ca.wordpress.org/?p=229\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:176:\"Hello everyone, it is the Thursday before the long weekend across Canada, and the next edition of WordPress 3.6. It is named Oscar after the legendary preformer Oscar Peterson.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:191:\"<p>Hello everyone, it is the Thursday before the long weekend across Canada, and the next edition of WordPress 3.6.</p>\n<p>It is named Oscar after the legendary preformer Oscar Peterson.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://en-ca.wordpress.org/2013/08/01/long-weekend-long-awaite-wordpress-3-6-released/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:54:\"\n \n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"WordPress 3.5.2 – Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://en-ca.wordpress.org/2013/06/21/wordpress-3-5-2-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Jun 2013 20:56:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:5:\"en_CA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://en-ca.wordpress.org/?p=218\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:358:\"Good day folks! The core WordPress team has released an important security release. Please update you sites now. If there are any problems with the update, post a comment here. Update: The post about the update is here https://wordpress.org/news/2013/06/wordpress-3-5-2/ There was an issue with the original file. It has been rebuilt and can be updated now.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:462:\"<p>Good day folks! The core WordPress team has released an important security release. Please update you sites now. If there are any problems with the update, post a comment here.</p>\n<p>Update: The post about the update is here <a href=\"https://wordpress.org/news/2013/06/wordpress-3-5-2/\" target=\"_blank\">https://wordpress.org/news/2013/06/wordpress-3-5-2/</a></p>\n<p>There was an issue with the original file. It has been rebuilt and can be updated now.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:51:\"\n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Support Questions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://en-ca.wordpress.org/2013/03/03/support-questions/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 03 Mar 2013 15:06:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"support\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://en-ca.wordpress.org/?p=127\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:342:\"I have been getting quite a few questions in the contact form. Here are the common questions and answers. 1. I lost my password: You can find help here Resetting Your Password « WordPress Codex or if you are using WordPress.com then try here Passwords — Support — WordPress.com 2. My site is not loading/working: Try to find […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1379:\"<p>I have been getting quite a few questions in the contact form. Here are the common questions and answers.</p>\n<p>1. I lost my password: You can find help here <a href=\"https://codex.wordpress.org/Resetting_Your_Password\">Resetting Your Password « WordPress Codex</a> or if you are using WordPress.com then try here <a href=\"http://en.support.wordpress.com/passwords/\">Passwords — Support — WordPress.com</a></p>\n<p>2. My site is not loading/working: Try to find your answer here <a href=\"https://codex.wordpress.org/Troubleshooting\">https://codex.wordpress.org/Troubleshooting</a></p>\n<p>3. A WordPress site has information I want taken down. You need to contact the site owner or their web host. WordPress is open source software users can install on a web server, it is not hosted by us. If it is on a WordPress.com site then you should report it here <a href=\"http://en.wordpress.com/abuse/\">http://en.wordpress.com/abuse/</a>. A good resource on this topic is available here <a href=\"http://lorelle.wordpress.com/2006/04/10/what-do-you-do-when-someone-steals-your-content\">What Do You Do When Someone Steals Your Content « Lorelle on WordPress</a>.</p>\n<p>Also if it is a general support question and not specific to the Canadian English translation the there is a support forum at <a href=\"https://wordpress.org/support\">https://wordpress.org/support</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:38:\"https://en-ca.wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n hourly \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n 1 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 19 Nov 2019 19:20:33 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Tue, 19 Nov 2019 19:08:06 GMT\";s:4:\"link\";s:64:\"<https://en-ca.wordpress.org/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20130911040210\";}', 'no'),
(136, '_transient_timeout_feed_mod_53c6368e164927c356de1596c8cebec9', '1574234436', 'no'),
(137, '_transient_feed_mod_53c6368e164927c356de1596c8cebec9', '1574191236', 'no'),
(138, '_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9', '1574234437', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(139, '_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9', 'a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"WordPress.org blog: WordPress 5.2.4 Update\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7787\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/news/2019/11/wordpress-5-2-4-update/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1100:\"<p>Late-breaking news on the<a href=\"https://wordpress.org/news/2019/10/wordpress-5-2-4-security-release/\"> 5.2.4 short-cycle security release </a>that landed October 14. When we released the news post, I inadvertently missed giving props to <NAME> of <a href=\"https://blog.ripstech.com/\">RIPS Technologies</a> for finding and disclosing an issue where path traversal can lead to remote code execution. </p>\n\n\n\n<p>Simon has done a <a href=\"https://wordpress.org/news/2018/12/wordpress-5-0-1-security-release/\">great</a> <a href=\"https://wordpress.org/news/2019/03/wordpress-5-1-1-security-and-maintenance-release/\">deal</a> of <a href=\"https://wordpress.org/news/2019/09/wordpress-5-2-3-security-and-maintenance-release/\">work</a> on the WordPress project, and failing to mention his contributions is a huge oversight on our end.</p>\n\n\n\n<p>Thank you to all of the reporters for <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">privately disclosing</a> vulnerabilities, which gave us time to fix them before WordPress sites could be attacked.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 19 Nov 2019 04:47:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WPTavern: Gutenberg 6.9 Introduces Image Titles, Block Patterns, and New Theme Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95365\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://wptavern.com/gutenberg-6-9-introduces-image-titles-block-patterns-and-new-theme-features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5671:\"<p>On November 13, the Gutenberg team <a href=\"https://make.wordpress.org/core/2019/11/13/whats-new-in-gutenberg-13-november/\">launched version 6.9</a> with several features, most of which were aimed at developers. Users can now add custom image title attributes. Plugin developers can start diving into the new Block Patterns API. Plus, theme authors can begin tinkering with the experimental gradient presets and block templates features.</p>\n\n\n\n<p>Gutenberg 6.9 fixed numerous bugs, including an annoying <a href=\"https://github.com/WordPress/gutenberg/issues/16429\">invalid content error</a> when selecting a color for the pullquote block. The update included several enhancements and changes to the underlying codebase.</p>\n\n\n\n<p>Much of the work in version 6.9 went toward experimental features, including the navigation block. At this point, the nav block still needs a ton of work for practical use. The interface is still a bit clunky. Undoubtedly, this is one of the toughest user experience challenges to solve and will take time before it is ready for widespread usage. Right now, it is about continually iterating upon the work from previous versions.</p>\n\n\n\n<h2>Image Title Attribute Field</h2>\n\n\n\n<div class=\"wp-block-image\"><img />Editing the image title field in Gutenberg.</div>\n\n\n\n<p>The ability to add image titles is perhaps the biggest user-facing feature added in Gutenberg 6.9. The <a href=\"https://github.com/WordPress/gutenberg/issues/11054\">original ticket</a> for adding the feature has been simmering for over a year.</p>\n\n\n\n<p>The Gutenberg team added the title field under the “Advanced” tab when editing an image block. This was a smart decision because image titles are often used incorrectly to describe an image, which is the job of the “Alt Text” field located under the “Image Settings” tab. Image titles are also generally unnecessary. When used, they should describe the role of the image on the page.</p>\n\n\n\n<h2>Initial Block Patterns API Merged</h2>\n\n\n\n<div class=\"wp-block-image\"><img />Choosing a column layout in the block editor.</div>\n\n\n\n<p>The Block Patterns API is a developer feature primarily for creating initial setup states for complex blocks. For example, the columns block has several common patterns that users may want to choose. By providing those patterns when first inserting a block, the user does not have to go through the routine of configuring all of the settings for it.</p>\n\n\n\n<p>The idea is to cut back on the complexities of configuring some blocks so that users can more quickly get to the point of adding their custom content and getting their desired results.</p>\n\n\n\n<p>The first step toward the Block Patterns API was <a href=\"https://github.com/WordPress/gutenberg/pull/18270\">merged into Gutenberg 6.9</a>, but it is still in the experimental stage at this point.</p>\n\n\n\n<h2>Block Gradient Presets</h2>\n\n\n\n<div class=\"wp-block-image\"><img />Adding a gradient background to a button in Gutenberg.</div>\n\n\n\n<p>Gutenberg introduced gradient backgrounds in <a href=\"https://wptavern.com/gutenberg-6-7-introduces-storybook-and-gradient-backgrounds\">version 6.7</a> for the button block. The feature launched with a set of gradients that did not match users’ themes, which meant the feature was little more than a fun experiment.</p>\n\n\n\n<p>In version 6.9, developers can register custom gradients that are less of an eyesore by using colors that fit into the theme’s color palette.</p>\n\n\n\n<p>Currently, <a href=\"https://developer.wordpress.org/block-editor/developers/themes/theme-support/#block-gradient-presets\">block gradient presets</a> are marked as an experimental feature and use the <code>__experimental-editor-gradient-presets</code> theme support flag. Now is a good time for theme authors to begin exploring this feature so they can be ready when the experimental flag is removed.</p>\n\n\n\n<h2>Block Templates for Themes</h2>\n\n\n\n<p>For theme authors, block templates were the most exciting aspect of Gutenberg’s potential when it first launched. Throughout all of WordPress’ history, creating custom page templates, particularly front page templates, has been an exercise in frustration. Theme authors have always had great ideas about what their themes’ front pages should look like. In a way, it is an author’s signature on a theme project. It is often what sets one theme apart from another.</p>\n\n\n\n<p>However, creating an interface that allows users to change what is traditionally a blog post list to something more ornate and complex is not an easy thing to do. Hundreds, perhaps thousands, of varying implementations are currently in the wild, each with their take on how to create a custom front page.</p>\n\n\n\n<p>Enter Gutenberg. Theme authors, regardless of whether they love or hate it, usually see the potential of a block-based editor in terms of laying out a front page. The idea of having complete control over where specific blocks sit and how they appear on the front end is an alluring one, especially if there is a standardized experience for users to figure out how to plug their content into the blocks.</p>\n\n\n\n<p>Gutenberg 6.9 <a href=\"https://github.com/WordPress/gutenberg/pull/18247\">laid the groundwork</a> toward this reality by resolving block templates from a theme’s <code>/block-templates</code> folder.</p>\n\n\n\n<p>At this point, theme block templates are still in the experimental stage as part of the <a href=\"https://github.com/WordPress/gutenberg/issues/17512\">full site editing feature</a>. From a theme development perspective, this could be revolutionary.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 18 Nov 2019 19:03:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"Post Status: <NAME> on WordPress, JAMstack, and the future of the independent developer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=71326\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://poststatus.com/wordpress-jamstack/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1823:\"<p>In this episode, Scott and I dig into his experience as an indie developer within the WordPress landscape.</p>\n\n\n\n<p>Scott has long used JavaScript as a core technology with AppPresser. I think he’s on the forefront of thinking about and using technologies that are new to WordPress but out in full force in other ecosystems. </p>\n\n\n\n<p>Scott is really into <a href=\"https://jamstack.org/\">JAMstack</a> (JavaScript, APIs, Markup). He’s working on <a href=\"https://staticfuse.com/\">Static Fuse</a> now, which helps connect WordPress to <a href=\"https://www.gatsbyjs.org/\">Gatsby</a>. Gatsby has a <em>lot</em> of attention in web tech right now.</p>\n\n\n\n<p>We also dig pretty deeply into the challenges and opportunities facing independent developers, and the interest levels in WordPress from the indie dev crowd. It’s an interesting episode, and I learned a lot from Scott. I hope you do too and enjoy our conversation.</p>\n\n\n\n\n\n\n\n<h3>Other links from the show</h3>\n\n\n\n<ul><li><a href=\"https://graphql.org/\">GraphQL</a> and <a href=\"https://www.wpgraphql.com/\">WPGraphQL</a></li><li><a href=\"https://scottbolinger.com/\">Scott’s website</a></li><li><a href=\"https://theproductbusiness.com/podcast/\">The Product Business podcast</a></li><li><NAME>’s <a href=\"https://javascriptforwp.com/product-category/courses/\">JavascriptforWP</a> courses</li></ul>\n\n\n\n<h3>Sponsor: Sandhills Development</h3>\n\n\n\n<p><a href=\"http://sandhillsdev.com/\">Sandhills Development</a> makes a suite of excellent plugins to power your WordPress website. Whether you need to sell digital downloads, restrict content, create an affiliate program, or manage an events calendar, they’ve got you covered. Thanks to <a href=\"http://sandhillsdev.com/\">Sandhills</a> for being a Post Status partner.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 16 Nov 2019 16:36:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"WPTavern: 24 WordPress Snippets ’til Christmas, Submissions Open for 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95346\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/24-wordpress-snippets-til-christmas-submissions-open-for-2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5943:\"<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>After a multi-year hiatus, <NAME> has relaunched his WordPress advent calendar and is looking for volunteers. The <a href=\"https://advent.elliottrichmond.co.uk/\">WP Snippets ’til Christmas</a> site will host 24 days of WordPress code snippets starting on December 1 and lasting until December 24. With each passing day, a new code snippet will be revealed.</p>\n\n\n\n<p>Advent calendars are special types of calendars used to count down the days until Christmas. They are often a part of religious celebrations but can be used for other purposes such as family traditions and games. For Richmond’s advent calendar, it is a way to contribute something back to the WordPress community.</p>\n\n\n\n<p>Richmond opened the site for developers to make contributions to the 24-day event. “I’ve been in touch with the original contributors in the hope that they’ll submit again and registration is also open to anyone else who wishes to contribute,” he said. “Otherwise, it will just be the Elliott Richmond show.” </p>\n\n\n\n<p>He would rather have community submissions than attempting to write all 24 code snippets alone. <NAME>, <NAME>, and <NAME>, all prominent developers in the WordPress community, have already signed on to submit code. <em>Author’s note: I am also considering joining because it sounds like fun.</em></p>\n\n\n\n<p>Anyone who wants to receive updates each day of the event can register for free on the <a href=\"https://advent.elliottrichmond.co.uk/\">WP Snippets ’til Christmas</a> website. The same signup form is available for contributors.</p>\n\n\n\n<p>There are no limitations on the types of code snippets that contributors can submit, only that they should be related to WordPress. Richmond says he has some ideas such as a WP-CLI script and a deployment tool for use on the command line. However, code snippets can be something as simple as sticking a basic function into a theme to more complex scripts.</p>\n\n\n\n<p>“I come from a frontend world and I’m a self-taught PHP developer,” said Richmond. “I’m evolving constantly and always eager to learn new things. I think WordPress is similar, it’s always evolving and inspiring innovation. If you put any limitations on things they rapidly become stagnated.”</p>\n\n\n\n<p>The code snippets are not aimed at any type of WordPress user in particular. “I think it’s really useful to see bite-size code snippets to help those in the community who are taking that next step into development,” said Richmond. “To those more seasoned developers, I think it’s always useful to see how other developers approach things.”</p>\n\n\n\n<p>Each code snippet will have an open comments section similar to a traditional blog. This will allow others to say thanks for sharing or to jump-start a conversation.</p>\n\n\n\n<h2>The Road Back to the Advent Calendar</h2>\n\n\n\n<p>Richmond has been a WordPress user and developer since the launch of the platform. He is the director of <a href=\"https://squareone.software/\">Square One Software</a>, a software development company that specializes in WordPress development.</p>\n\n\n\n<p>He <a href=\"https://wptavern.com/wordpress-snippets-til-christmas-submissions-opened-for-2013\">last ran the advent calendar</a> in 2013. After the success of the first year in 2012, he decided to put it together for a second round. He wanted to keep it going beyond the first two years, but work and other commitments took priority.</p>\n\n\n\n<p>In the years since, Richmond met other local WordPress enthusiasts at WordCamp London. He now helps host the local meetup in Cheltenham, UK. With the help of the community, he organized four teams of local project managers, designers, developers, and content writers for a <a href=\"https://doaction.org/event/cheltenham-2019/\">local do_action event</a>. “I’m still an enthusiastic proponent of giving back to the community and actively encourage others in our local community to share their experience and knowledge,” said Richmond.</p>\n\n\n\n<p><a href=\"https://doaction.org/\">do_action</a> events are charity hackathons that use WordPress to help provide local charity organizations an online presence.</p>\n\n\n\n<p>“Every single team and team member did an amazing job on the day for four local non-profit charities, putting together a functional WordPress website for each charity while I personally gave a charity representative some hands-on training,” said Richmond. “Taking away some of the overhead of creating a website for the charities allows them to concentrate on what they do best, which is raising money for their own community.”</p>\n\n\n\n<p>Richmond described needing to find something to do next while still riding the buzz from the event. That is when he decided to relaunch the WP Snippets ’til Christmas event.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p>Because it is the season, Richmond crowned “It’s a Wonderful Life” as the greatest Christmas movie.</p>\n\n\n\n<p>“I love classics and this one is a true classic, pretty apt in the current move to make people aware of mental health,” said Richmond. “The movie starts with depression and pending suicide when a guardian angel is bestowed to the main character <NAME>. George is shown how many lives he’s impacted on in his own local community and how things would have been if he didn’t exist, a real heartwarming feel-good reflection on the things that we take for granted in our own existence.”</p>\n\n\n\n<p>With this upcoming holiday season, considering taking the time to give back to both your local community and the WordPress community. One great way to do that is to contribute a code snippet to WP Snippets ’til Christmas.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Nov 2019 21:10:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"bbPress: bbPress 2.6.1 is out!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://bbpress.org/?p=205662\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://bbpress.org/blog/2019/11/bbpress-2-6-1-is-out/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2442:\"<p>It seems like only <a href=\"https://bbpress.org/blog/2019/11/bbpress-2-6/\">yesterday that 2.6.0</a> was released, and depending on where you live that might actually be true! <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f5d3.png\" alt=\"🗓\" class=\"wp-smiley\" /></p>\n\n\n\n<p>bbPress 2.6.1 fixes a few small (but very annoying bugs) that warranted some immediate attention:</p>\n\n\n\n<ul><li><a href=\"https://bbpress.trac.wordpress.org/ticket/3232\">One</a> was causing subforums not to be listed underneath their parents anymore.</li><li><a href=\"https://bbpress.trac.wordpress.org/ticket/3281\">Another</a> was causing styling issues for a few of the themes that come bundled with WordPress itself.</li><li><a href=\"https://bbpress.trac.wordpress.org/ticket/3280\">The last one</a> was causing issues with posting content within WordPress Admin, because of incompatibility with a few plugins that were interacting with the REST API in admin area pages in fun ways that we hadn’t anticipated yet.</li></ul>\n\n\n\n<p>Thanks to the quick reporting of <a href=\"https://bbpress.org/forums/profile/stevehammatt/\">stevehammatt</a> and <a href=\"https://bbpress.org/forums/profile/pdvwp/\">pdvwp</a>, we were able to identify all of these problems and get them into bbPress 2.6.1 right away. You both rock! <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f44f.png\" alt=\"👏\" class=\"wp-smiley\" /></p>\n\n\n\n<p class=\"has-text-color has-background has-very-dark-gray-color has-very-light-gray-background-color\">One bug still remains that we could use your help with, that is affecting sites that have a custom <code>bbpress.css</code> file in their theme. If you need to fix this ASAP, you can rename it to <code>bbpress.min.css</code> temporarily. If you’re able to chime into <a href=\"https://bbpress.org/forums/topic/child-css/\">this topic in the forums</a>, that would be super helpful!</p>\n\n\n\n<p>If you have a few moments, the great <NAME> from WPTavern <a href=\"https://wptavern.com/bbpress-2-6-released-after-6-years-includes-per-forum-moderation-and-engagements-api\">asked me a few questions about bbPress 2.6</a>, so consider giving it a read.</p>\n\n\n\n<p>Lastly, thank you everyone for the positive comments and responses to seeing bbPress 2.6 finally happen. It made my day, and I really appreciate it. <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f49a.png\" alt=\"💚\" class=\"wp-smiley\" /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Nov 2019 23:48:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"WPTavern: bbPress 2.6 Released After 6 Years, Includes Per-Forum Moderation and Engagements API\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95336\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://wptavern.com/bbpress-2-6-released-after-6-years-includes-per-forum-moderation-and-engagements-api\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7007:\"<p>On Tuesday, <NAME> announced that bbPress 2.6 was available to the public after a six-year wait in a post titled <a href=\"https://bbpress.org/blog/2019/11/bbpress-2-6/\">bbPress 2.6 — Better Great Than Never</a>. The announcement landed with a whimper as it was overshadowed by the release of WordPress 5.3 on the same day.</p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/bbpress/\">bbPress</a> is an official WordPress project for powering forums. It was <a href=\"https://bbpress.org/blog/2004/12/soft-launch/\">initially launched</a> on December 28, 2004, by <NAME> as a standalone project. During the first iteration’s heyday, it was popular within the WordPress community as a simple forum solution. In 2011, <a href=\"https://bbpress.org/blog/2011/09/bbpress-2-0-now-available/\">bbPress 2.0 relaunched</a> as a WordPress plugin with Jacoby as the lead developer.</p>\n\n\n\n<p>The bbPress team is primarily comprised of four part-time contributors with nearly no volunteers available for user testing. <NAME>, <NAME>, and <NAME> were the primary developers other than Jacoby behind version 2.6.</p>\n\n\n\n<p>“<NAME> deserves a mention for her contributions to 2.6 early on; she’s largely moved on but is wonderful,” said Jacoby. “Behind the scenes in the meta and forums teams are Samuel ‘Otto’ Wood, <NAME>, <NAME>, <NAME>, and countless others who provide feedback and feature requests upstream based on how WordPress.org uses bbPress.”</p>\n\n\n\n<p>Contributors resolved 420 open tickets with 1,737 code commits over the multi-year span it took for version 2.6 to drop. The new version ships with hundreds of bug fixes and improvements. Its features include per-forum moderation, new platforms to import forum content from, and an Engagements API.</p>\n\n\n\n<p>The new Engagements API connects user IDs to the various types of content in bbPress, such as forums, topics, replies, and topic tags. This works as a sort of relationship system between users and any content they interact with on the forums. In previous versions of bbPress, all of this data was saved in the user metadata table.</p>\n\n\n\n<p>Per-forum moderation is a key feature for forums, but it has been one of the missing elements in bbPress. The new feature takes advantage of the Engagements API to connect user IDs to forum IDs. In turn, this allows site owners to create moderators for individual forums. This feature works in contrast to the existing “moderator” role in bbPress, which provides users global moderation powers.</p>\n\n\n\n<h2>Why the 6-Year Wait?</h2>\n\n\n\n<p>You could be forgiven for wondering if bbPress was all but dead. The last minor release happened in 2017 when the team dropped version 2.5.14. The same year, bbPress 2.6 was <a href=\"https://wptavern.com/bbpress-2-6-beta-3-likely-as-team-focuses-on-solid-data-migration-path\">headed toward a third beta</a> and even had a <a href=\"https://bbpress.org/forums/topic/bbpress-2-6-beta/\">few release candidates</a>.</p>\n\n\n\n<p>“There was not very much feedback on the 2.6 beta or RC, and I had just transitioned into my role at Sandhills Development,” said Jacoby. “I decided it was better to concentrate on doing a good job where I could make a direct impact on people’s lives, rather than have no idea if I was doing a good job at all with bbPress.”</p>\n\n\n\n<p>Jacoby did not want to release a potentially buggy version 2.6 and take on the support burden at the time. Doing so would have interfered with his responsibilities at his new job. “Younger me would have tried to do both, and failed at both,” said Jacoby.</p>\n\n\n\n<p><em>Why such a long wait between releases?</em> Most likely, it was for the same reason the <a href=\"https://twitter.com/bbPress/status/1194327563407122432\">Twitter announcement</a> got fewer than a couple of dozen likes and even fewer retweets. There is not much community engagement with the project. On the flip side, the bbPress team has not been active on social media or the project’s official blog in the past two years. </p>\n\n\n\n<p>Despite the lack of community engagement, bbPress is currently installed on over 300,000 sites. It runs the forums at WordPress.org, WordPress.com, CSS-Tricks, and other large communities. However, there is not much help sent back to the bbPress project from most places.</p>\n\n\n\n<p>“On WordPress.org, bbPress is just one piece of a very complex puzzle, and everything is mostly in maintenance mode all the time,” said Jacoby. “The forums team focuses on the needs of the forums and the meta team helps maintain the code itself, but WordPress has made it easier and more rewarding to contribute to; so contributors graduate up to WordPress core and rarely look back.”</p>\n\n\n\n<p>The idea behind switching bbPress 2.x to a WordPress plugin from its standalone roots was that it would be simpler for the larger WordPress community to pitch in. Jacoby said that contributions have improved since the pre-plugin era, but it has not helped enough. “There’s more attention and accolades with WordPress and Gutenberg than there are with the bb’s or GlotPress,” he said.</p>\n\n\n\n<p>One of bbPress’ biggest problems is the lack of resources. There is no commercial element to the plugin and no major companies are funding anyone to work on the project full time.</p>\n\n\n\n<p>“For an open-source project to be sustainable long-term, it needs to have an economy behind it,” said Jacoby. “Without an economy, what’s the real goal? Market share? Building better forum software? Those are not enough by itself when people need to make a living, and when less work with WooCommerce can help you earn a better living.”</p>\n\n\n\n<h2>The Future of Forums</h2>\n\n\n\n<p>Six years between major releases is a lifetime in technological years, plenty enough time for another company to claim the WordPress forum market share. However, bbPress managed to keep its crown as the most-used WordPress forum plugin during the wait. It does beg the question of whether companies or developers see a future for forums.</p>\n\n\n\n<p>With so many alternative options for user engagement, are forums a dying breed of software?</p>\n\n\n\n<p>“If forums are dying, it’s a slow death, according to the numbers anyway,” said Jacoby. “Chat apps like Slack and Discord (or Twitch and YouTube) are where people do forum-type stuff these days. Moderating your own community takes dedication and work, and if you’re going to do work, why not build an audience someplace else instead?”</p>\n\n\n\n<p>Jacoby has hope for the future, however. “I can imagine a bunch of reasons why forums seem unattractive,” he said, “but to me they are still what everyone circles back around to, just like having their own blogs!”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Nov 2019 20:17:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: WordCamp US 2020 Date and Location Announced, New Weekday Schedule\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95327\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://wptavern.com/wordcamp-us-2020-date-and-location-announced-new-weekday-schedule\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3389:\"<p>Mark your calendars, folks. WordCamp US 2020 will start on a…<em>Tuesday</em>.</p>\n\n\n\n<p>On November 11, the WordCamp US team announced that next year’s event will happen during the middle of the week, from October 27 through October 29. This is a change from the usual three-day weekend event. The time frame puts the event’s days on Tuesday, Wednesday, and Thursday. The yearly conference will remain in St. Louis, Missouri, in 2020.</p>\n\n\n\n<p>Those planning ahead can sign up for updates via the new <a href=\"https://2020.us.wordcamp.org/\">WordCamp US 2020 site</a>.</p>\n\n\n\n<p>Thus far, the switch away from a weekend has been met with generally positive <a href=\"https://twitter.com/WordCampUS/status/1193910076244996096\">responses via Twitter</a> and Slack. However, some people fear the schedule will not allow them to attend. </p>\n\n\n\n<p>The WordCamp US Twitter account cited date availability, Halloween, and giving the weekend back to attendees as the reason behind the change.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Number of reasons from date availability, letting folks get home for Halloween, and letting folks have a their weekend back on an out-of-town event</p>— WordCamp US (@WordCampUS) <a href=\"https://twitter.com/WordCampUS/status/1193912839725101056?ref_src=twsrc%5Etfw\">November 11, 2019</a></blockquote>\n</div>\n\n\n\n<p>For professionals in the WordPress space, this move will likely be a welcome change. They are often able to get extra time off from work, sometimes paid leave, to attend the event. The company they work for may even be funding their travel. For them, attending a WordCamp is a part of their work. </p>\n\n\n\n<p>The unfortunate side effect of attending a WordCamp over the weekend is that some attendees usually have to wake up for work on Monday morning after traveling back home on Sunday. Many are essentially working two weeks straight without any downtime. This helps pile on the problem of developer burnout. Rest days, time with friends and family, and getting away from code-related things is a part of a healthy work-life balance.</p>\n\n\n\n<p>Moving the event to the middle of the week should allow professionals to better maintain that balance.</p>\n\n\n\n<p>On the other hand, some attendees may find it harder to attend during the week. This is particularly true for WordCamp-goers who do not work with WordPress professionally. They may not be able to get the time off work.</p>\n\n\n\n<p>As a general rule, Americans tend to have little paid leave they can take advantage of throughout the year. The average worker in the private sector only gets <a href=\"https://www.cnbc.com/2018/07/05/heres-how-many-paid-vacation-days-the-typical-american-worker-gets-.html\">10 paid vacation days</a> per year after one year of employment. Those numbers rise the longer an employee sticks with a single company. The US does not guarantee paid leave for workers.</p>\n\n\n\n<p>Without support from their employer, some people may have to choose between using their paid time off to attend and keeping those days in reserve for family vacation or holidays.</p>\n\n\n\n<p>Unlike local WordCamps, the US conference is more of an industry event that sees professionals from across the US and the world. The move to a weekday schedule should be a nice change for many.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Nov 2019 21:27:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"WPTavern: WordPress 5.3 “Kirk” Released, Brings New Default Theme, Editor Improvements, and UI Tweaks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95290\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://wptavern.com/wordpress-5-3-kirk-released-brings-new-default-theme-editor-improvements-and-ui-tweaks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7758:\"<div class=\"wp-block-image\"><img /><NAME><br />Credit: <a href=\"https://www.flickr.com/photos/heiner1947/4485444348/in/photostream/\"><NAME></a> CC BY-SA 2.0</div>\n\n\n\n<p><a href=\"https://wordpress.org/news/2019/11/kirk/\">WordPress 5.3 “Kirk,”</a> named in honor American jazz musician <NAME>, is now available for download. The update includes a new default theme named Twenty Twenty, user interface improvements aimed at accessibility, and new block editor features.</p>\n\n\n\n<p>This release saw contributions from 645 volunteers, which is the largest contributor group ever for a WordPress release.</p>\n\n\n\n<p>The release was led by <a href=\"https://ma.tt\"><NAME></a>, <a href=\"https://profiles.wordpress.org/francina/\"><NAME></a>, and <a href=\"https://profiles.wordpress.org/davidbaumwald\"><NAME></a>. They were joined by the following contributors in supporting roles in getting version 5.3 released.</p>\n\n\n\n<ul><li>Editor Tech Lead – <a href=\"https://profiles.wordpress.org/youknowriad/\"><NAME></a></li><li>Editor Design Lead – <a href=\"https://profiles.wordpress.org/mapk/\"><NAME></a></li><li>Core Tech Lead – <a href=\"https://profiles.wordpress.org/azaozz/\"><NAME></a></li><li>Default Theme Design Lead – <a href=\"https://profiles.wordpress.org/anlino/\"><NAME></a></li><li>Default Theme Wrangler – <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a></li><li>Docs Coordinator – <a href=\"https://profiles.wordpress.org/justinahinon/\"><NAME></a></li><li>Accessibility Lead – <a href=\"https://profiles.wordpress.org/audrasjb/\"><NAME></a></li><li>Marketing Lead – <a href=\"https://profiles.wordpress.org/mikerbg/\"><NAME></a></li><li>Media Focus Lead – <a href=\"https://profiles.wordpress.org/mikeschroder/\"><NAME></a></li></ul>\n\n\n\n<p>WordPress 5.2 had 84 million downloads before WordPress 5.3’s release.</p>\n\n\n\n<p>The PHP native JSON extension is now required for any site running WordPress 5.3 or later. This should not be an issue for the majority of users because the extension has been bundled with PHP by default since 2006. WordPress will output an error and cancel the update procedure if it detects the extension is missing. Users who are unable to update will need to contact their web hosts to have the extension enabled.</p>\n\n\n\n<h2>Twenty Twenty: New Default Theme</h2>\n\n\n\n<div class=\"wp-block-image\"><img />Screenshot of the Twenty Twenty WordPress theme.</div>\n\n\n\n<p>WordPress is getting a fresh coat of paint. <NAME> led the design team for the new <a href=\"https://wptavern.com/twenty-twenty-bundled-in-core-beta-features-overview\">Twenty Twenty</a> theme, which was a <a href=\"https://wptavern.com/first-look-at-twenty-twenty-new-wordpress-default-theme-based-on-chaplain\">fork of his original Chaplin theme</a>.</p>\n\n\n\n<p>The Twenty Twenty theme is completely geared toward creating content with the block editor with its bold and opinionated styling. It comes with a cover page template and has a custom color system designed to keep the site’s color contrast accessible.</p>\n\n\n\n<h2>Block Editor Features and Improvements</h2>\n\n\n\n<div class=\"wp-block-image\"><img />Nesting any block inside the Cover block.</div>\n\n\n\n<p>WordPress 5.3 includes features from the versions 5.4 – 6.5 of the Gutenberg plugin along with bug fixes and performance improvements from versions 6.6 and 6.7. For users who have not been running the plugin, they should see faster loading times and quicker responses from keystrokes.</p>\n\n\n\n<p>WP Tavern has covered every major release of the Gutenberg plugin that will be bundled in WordPress 5.3, except Gutenberg 5.6. Catch up on any features you missed with the following articles.</p>\n\n\n\n<ul><li><a href=\"https://wptavern.com/gutenberg-5-5-adds-new-group-block-for-nesting-child-blocks\">Gutenberg 5.5 Adds New Group Block for Nesting Child Blocks</a></li><li><a href=\"https://wptavern.com/gutenberg-5-7-adds-new-block-appender-for-group-and-columns-blocks\">Gutenberg 5.7 Adds New Block Appender for Group and Columns Blocks</a></li><li><a href=\"https://wptavern.com/gutenberg-5-8-released-with-prototype-of-new-block-based-widgets-screen\">Gutenberg 5.8 Released with Prototype of New Block-based Widgets Screen</a></li><li><a href=\"https://wptavern.com/gutenberg-5-9-brings-major-improvements-to-block-grouping-introduces-snackbar-notices\">Gutenberg 5.9 Brings Major Improvements to Block Grouping, Introduces Snackbar Notices</a></li><li><a href=\"https://wptavern.com/gutenberg-6-0-adds-layout-picker-to-columns-block\">Gutenberg 6.0 Adds Layout Picker to Columns Block </a></li><li><a href=\"https://wptavern.com/gutenberg-6-1-introduces-animation-to-block-moving-actions-adds-block-based-widgets-screen-experiments\">Gutenberg 6.1 Introduces Animation to Block Moving Actions, Adds Block-Based Widgets Screen Experiments</a></li><li><a href=\"https://wptavern.com/gutenberg-6-2-adds-nesting-capabilities-to-cover-media-text-blocks\">Gutenberg 6.2 Adds Nesting Capabilities to Cover, Media & Text Blocks</a></li><li><a href=\"https://wptavern.com/gutenberg-6-3-improves-accessibility-with-new-navigation-and-edit-modes\">Gutenberg 6.3 Improves Accessibility with New Navigation and Edit Modes</a></li><li><a href=\"https://wptavern.com/gutenberg-6-4-adds-new-typewriter-experience-cover-block-resizing-and-block-inserter-help-panel\">Gutenberg 6.4 Adds New Typewriter Experience, Cover Block Resizing, and Block Inserter Help Panel</a></li><li><a href=\"https://wptavern.com/gutenberg-6-5-adds-experimental-block-directory-search-to-inserter-and-new-social-links-block\">Gutenberg 6.5 Adds Experimental Block Directory Search to Inserter and New Social Links Block</a></li></ul>\n\n\n\n<h2>Other Core Features</h2>\n\n\n\n<p>Work toward <a href=\"https://wptavern.com/wordpress-5-3-improves-large-image-handling\">large image handling</a> went into the update. Instead of checking file sizes, images larger than 2,560 pixels are scaled down and used as the “full” image size. This change makes large images web ready and will significantly decrease file sizes for many users who upload images without optimizing them beforehand. This is common with mobile phone uploads. </p>\n\n\n\n<p>For those who prefer to maintain the original sizes of image uploads, which is sometimes the case with photography sites, grab the <a href=\"https://wordpress.org/plugins/disable-big-image-threshold/\">Disable “BIG Image” Threshold</a> plugin.</p>\n\n\n\n<p>The site health screen introduced in WordPress 5.2 has some user experience improvements, such as tweaking how the grading indicator works for clarity. WordPress site owners will also need to <a href=\"https://wptavern.com/wordpress-5-3-to-introduce-new-admin-email-verification-screen\">verify their admin email</a> every six months. This feature is to help make sure site recovery emails are being sent to the right place when an error occurs. It also lays the groundwork for future features that may build upon it.</p>\n\n\n\n<h2>Developer Changes</h2>\n\n\n\n<p>Developers should read the full <a href=\"https://make.wordpress.org/core/2019/10/17/wordpress-5-3-field-guide/\">WordPress 5.3 field guide</a> to make sure none of the changes affect their plugins or themes. Some of the changes include the following.</p>\n\n\n\n<ul><li>Full support for PHP 7.4.</li><li>Improved date/time handling.</li><li>Robots meta tag now used for discouraging search engines from listing a site.</li><li>New meta key comparison operators added.</li><li>Integers are no longer allowed for nav menu slugs.</li><li><code>wp_die()</code> now allows custom HTML.</li></ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Nov 2019 22:12:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"WordPress.org blog: WordPress 5.3 “Kirk”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7684\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/news/2019/11/kirk/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:56355:\"<div class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2019/11/5.3-album-cover.png?resize=632%2C632&ssl=1\" alt=\"Album cover for WordPress 5.3 Kirk, showcasing a duotone red/cream <NAME> playing the saxophone on a red background.\" class=\"wp-image-7710\" /></div>\n\n\n\n<p class=\"has-text-color has-background\">Introducing our most refined user experience with the improved block editor in WordPress 5.3! Named “Kirk” in honour of jazz multi-instrumentalist <NAME>, the latest and greatest version of WordPress is available for <a href=\"https://wordpress.org/download/\">download</a> or update in your dashboard.</p>\n\n\n\n<img src=\"https://i0.wp.com/wordpress.org/news/files/2019/11/divider.png?resize=632%2C159&ssl=1\" alt=\"\" class=\"wp-image-7721\" />\n\n\n\n<p><strong>5.3 expands and refines the block editor</strong> with more intuitive <strong>interactions</strong> and improved <strong>accessibility</strong>. New features in the editor increase design freedoms, provide additional layout options and style variations to allow designers more control over the look of a site.</p>\n\n\n\n<p>This release also introduces the <strong>Twenty Twenty theme</strong> giving the user more design flexibility and integration with the block editor. Creating beautiful web pages and advanced layouts has never been easier.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Block Editor Improvements</h2>\n\n\n\n\n\n\n\n<p>This enhancement-focused update introduces over 150 new features and usability improvements, including improved large image support for uploading non-optimized, high-resolution pictures taken from your smartphone or other high-quality cameras. Combined with larger default image sizes, pictures always look their best.</p>\n\n\n\n<p>Accessibility improvements include the integration of block editor styles in the admin interface. These improved styles fix many accessibility issues: color contrast on form fields and buttons, consistency between editor and admin interfaces, new snackbar notices, standardizing to the default WordPress color scheme, and the introduction of Motion to make interacting with your blocks feel swift and natural. </p>\n\n\n\n<p>For people who use a keyboard to navigate the dashboard, the block editor now has a Navigation mode. This lets you jump from block to block without tabbing through every part of the block controls.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Expanded Design Flexibility</h2>\n\n\n\n\n\n\n\n<p>WordPress 5.3 adds even more robust tools for creating amazing designs.</p>\n\n\n\n<ul><li>The new Group block lets you easily divide your page into colorful sections.</li><li>The Columns block now supports fixed column widths.</li><li>The new predefined layouts make it a cinch to arrange content into advanced designs.</li><li>Heading blocks now offer controls for text and background color.</li><li>Additional style options allow you to set your preferred style for any block that supports this feature.</li></ul>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Introducing Twenty Twenty</h2>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2019/11/twentytwenty-desktop.png?resize=632%2C626&ssl=1\" alt=\"A desktop preview of the Twenty Twenty theme, showing both the front-end and the editor view.\" class=\"wp-image-7686\" /></div>\n\n\n\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-top\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2019/11/twentytwenty-mobile.png?w=632&ssl=1\" alt=\"A mobile image of the Twenty Twenty theme, over a decorative backgorund of brown-grey bars.\" class=\"wp-image-7714\" /><div class=\"wp-block-media-text__content\">\n<p>As the block editor celebrates its first birthday, we are proud that Twenty Twenty is designed with flexibility at its core. Show off your services or products with a combination of columns, groups, and media blocks. Set your content to wide or full alignment for dynamic and engaging layouts. Or let your thoughts be the star with a centered content column!</p>\n\n\n\n<p class=\"has-normal-font-size\">As befits a theme called Twenty Twenty, clarity and readability is also a big focus. The theme includes the typeface <a href=\"https://rsms.me/inter/\">Inter</a>, designed by <NAME>. Inter comes in a Variable Font version, a first for default themes, which keeps load times short by containing all weights and styles of Inter in just two font files.</p>\n</div></div>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Improvements for Everyone</h2>\n\n\n\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2019/11/Rotate.png?w=632&ssl=1\" alt=\"An icon showing an arrow rotating a square.\" class=\"wp-image-7731\" /><div class=\"wp-block-media-text__content\">\n<h3>Automatic Image Rotation</h3>\n\n\n\n<p>Your images will be correctly rotated upon upload according to the embedded orientation data. This feature was first proposed nine years ago and made possible through the perseverance of many dedicated contributors.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2019/11/Health.png?w=632&ssl=1\" alt=\"A plus in a square, indicating health.\" class=\"wp-image-7732\" /><div class=\"wp-block-media-text__content\">\n<h3>Improved Site Health Checks</h3>\n\n\n\n<p>The improvements introduced in 5.3 make it even easier to identify issues. Expanded recommendations highlight areas that may need troubleshooting on your site from the Health Check screen.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2019/11/Email.png?w=632&ssl=1\" alt=\"A email icon.\" class=\"wp-image-7733\" /><div class=\"wp-block-media-text__content\">\n<h3>Admin Email Verification</h3>\n\n\n\n<p>You’ll now be periodically asked to confirm that your admin email address is up to date when you log in as an administrator. This reduces the chance of getting locked out of your site if you change your email address.</p>\n</div></div>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>For Developers</h2>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\">\n<h3>Date/Time Component Fixes</h3>\n\n\n\n<p>Developers can now work with <a href=\"https://make.wordpress.org/core/2019/09/23/date-time-improvements-wp-5-3/\">dates and timezones</a> in a more reliable way. Date and time functionality has received a number of new API functions for unified timezone retrieval and PHP interoperability, as well as many bug fixes.</p>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<h3>PHP 7.4 Compatibility</h3>\n\n\n\n<p>WordPress 5.3 aims to fully support PHP 7.4. This release contains <a href=\"https://make.wordpress.org/core/2019/10/11/wordpress-and-php-7-4/\">multiple changes</a> to remove deprecated functionality and ensure compatibility. WordPress continues to encourage all users to run the latest and greatest versions of PHP.</p>\n</div>\n</div>\n\n\n\n<img src=\"https://i0.wp.com/wordpress.org/news/files/2019/11/divider.png?resize=632%2C159&ssl=1\" alt=\"\" class=\"wp-image-7721\" />\n\n\n\n<h2>The Squad</h2>\n\n\n\n<p>This release was led by <a href=\"http://ma.tt/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/francina\"><NAME></a>, and <a href=\"https://dream-encode.com/blog/\"><NAME></a>. They were enthusiastically supported by a large release squad:</p>\n\n\n\n<ul><li><strong>Editor Tech</strong>: <NAME> (<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://profiles.wordpress.org/youknowriad/\"><strong>@youknowriad</strong></a>)</li><li><strong>Editor Design</strong>: <NAME> (<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://profiles.wordpress.org/mapk/\"><strong>@mapk</strong></a>)</li><li><strong>Core Tech</strong>: <NAME> (<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://profiles.wordpress.org/azaozz/\"><strong>@azaozz</strong></a>)</li><li><strong>Docs Coordinator</strong>: <NAME> (<a href=\"https://profiles.wordpress.org/justinahinon/\"><strong>@justinahinon</strong></a>)</li><li><strong>Marketing/Release Comms</strong>: <NAME> (<a href=\"https://profiles.wordpress.org/mikerbg/\"><strong>@mikerbg</strong></a>)</li><li><strong>Media/Uploader</strong>: <NAME> (<a href=\"https://profiles.wordpress.org/mikeschroder/\"><strong>@mikeschroder</strong></a>)</li><li><strong>Accessibility</strong>: JB Audras (<a href=\"https://profiles.wordpress.org/audrasjb/\"><strong>@audrasjb</strong></a>)</li><li><strong>Default Theme</strong> <strong>Wrangler</strong>: I<NAME> (<a href=\"https://profiles.wordpress.org/ianbelanger/\"><strong>@ianbelanger</strong></a>)</li><li><strong>Default Theme Designer</strong>: <NAME> (<a href=\"https://profiles.wordpress.org/anlino/\"><strong>@anlino</strong></a>)</li></ul>\n\n\n\n<p>The squad was joined throughout the twelve week release cycle by 645 generous volunteer contributors (our largest group of contributors to date) who collectively fixed 658 bugs.</p>\n\n\n\n<p>Put on a <NAME> playlist, click that update button (or <a href=\"https://wordpress.org/download/\">download it directly</a>), and check the profiles of the fine folks that helped:</p>\n\n\n<a href=\"https://profiles.wordpress.org/123host/\">123host</a>, <a href=\"https://profiles.wordpress.org/1994rstefan/\">1994rstefan</a>, <a href=\"https://profiles.wordpress.org/5hel2l2y/\">5hel2l2y</a>, <a href=\"https://profiles.wordpress.org/irsdl/\">@irsdl</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jorbin/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/aksdvp/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/abhijitrakas/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/abrightclearweb/\">abrightclearweb</a>, <a href=\"https://profiles.wordpress.org/acalfieri/\">acalfieri</a>, <a href=\"https://profiles.wordpress.org/acosmin/\">acosmin</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/adamsoucie/\"><NAME>oucie</a>, <a href=\"https://profiles.wordpress.org/adhitya03/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ahdeubzer/\">ahdeubzer</a>, <a href=\"https://profiles.wordpress.org/mrahmadawais/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ajayghaghretiya1/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ajitbohra/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ajlende/\">ajlende</a>, <a href=\"https://profiles.wordpress.org/atachibana/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/albertomake/\">albertomake</a>, <a href=\"https://profiles.wordpress.org/xknown/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/xavortm/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/alexclassroom/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/alexsanford1/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/xyfi/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/xel1045/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/alexvorn2/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/alexeyskr/\">alexeyskr</a>, <a href=\"https://profiles.wordpress.org/alextran/\">alextran</a>, <a href=\"https://profiles.wordpress.org/ayubi/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a>, <a href=\"https://profiles.wordpress.org/allendav/\">Allen Snook</a>, <a href=\"https://profiles.wordpress.org/alvarogois/\"><NAME> Santos</a>, <a href=\"https://profiles.wordpress.org/arush/\">Amanda Rush</a>, <a href=\"https://profiles.wordpress.org/amolv/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/anlino/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/afercia/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/andg/\"><NAME>ino</a>, <a href=\"https://profiles.wordpress.org/agengineering/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/andreamiddleton/\"><NAME>leton</a>, <a href=\"https://profiles.wordpress.org/abrain/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/andraganescu/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/aduth/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nacin/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/anevins/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/azaozz/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/andrewtaylor-1/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/rarst/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nosolosw/\">Andrés Maneiro</a>, <a href=\"https://profiles.wordpress.org/afragen/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/andizer/\">Andy Meerwaldt</a>, <a href=\"https://profiles.wordpress.org/angelagibson/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/rilwis/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/anischarolia/\">anischarolia</a>, <a href=\"https://profiles.wordpress.org/antpb/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/atimmer/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/apermo/\">Apermo</a>, <a href=\"https://profiles.wordpress.org/arafat/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/arena/\">arena</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/arunsathiya/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/artisticasad/\">As<NAME></a>, <a href=\"https://profiles.wordpress.org/asadkn/\">asadkn</a>, <a href=\"https://profiles.wordpress.org/mrasharirfan/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ashwinpc/\">ashwinpc</a>, <a href=\"https://profiles.wordpress.org/wpboss/\">Aslam Shekh</a>, <a href=\"https://profiles.wordpress.org/atlasmahesh/\">atlasmahesh</a>, <a href=\"https://profiles.wordpress.org/au87/\">au87</a>, <a href=\"https://profiles.wordpress.org/aubreypwd/\">Aubrey Portwood</a>, <a href=\"https://profiles.wordpress.org/augustuswm/\">augustuswm</a>, <a href=\"https://profiles.wordpress.org/aurooba/\">Aurooba Ahmed</a>, <a href=\"https://profiles.wordpress.org/avinapatel/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/aksl95/\">Axel DUCORON</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/backermann1978/\">backermann1978</a>, <a href=\"https://profiles.wordpress.org/b-07/\">Bappi</a>, <a href=\"https://profiles.wordpress.org/toszcze/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/pixolin/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/bfintal/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/benjamin_zekavica/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/bennemann/\">bennemann</a>, <a href=\"https://profiles.wordpress.org/bgermann/\">bgermann</a>, <a href=\"https://profiles.wordpress.org/bhaktirajdev/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/bibliofille/\">bibliofille</a>, <a href=\"https://profiles.wordpress.org/biranit/\">Biranit</a>, <a href=\"https://profiles.wordpress.org/birgire/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/bitcomplex/\">bitcomplex</a>, <a href=\"https://profiles.wordpress.org/bjornw/\">BjornW</a>, <a href=\"https://profiles.wordpress.org/boblinthorst/\">boblinthorst</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/bor0/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/crazyjaco/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/bradleyt/\"><NAME>aylor</a>, <a href=\"https://profiles.wordpress.org/kraftbj/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/brentswisher/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/bronsonquick/\">Bronson Quick</a>, <a href=\"https://profiles.wordpress.org/bsetiawan88/\">bsetiawan88</a>, <a href=\"https://profiles.wordpress.org/burhandodhy/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/cbravobernal/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/poena/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/cdog/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/cathibosco1/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/chandrapatel/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/caercam/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/chetan200891/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ketuchetan/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/blogginglife/\">Chico</a>, <a href=\"https://profiles.wordpress.org/chintan1896/\">Ch<NAME>ingrajiya</a>, <a href=\"https://profiles.wordpress.org/chrico/\">ChriCo</a>, <a href=\"https://profiles.wordpress.org/aprea/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/christian1012/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/needle/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/lovememore/\">christianoliff</a>, <a href=\"https://profiles.wordpress.org/christophherr/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/cleancoded/\">cleancoded</a>, <a href=\"https://profiles.wordpress.org/cmagrin/\">cmagrin</a>, <a href=\"https://profiles.wordpress.org/compilenix/\">CompileNix</a>, <a href=\"https://profiles.wordpress.org/salzano/\">Corey Salzano</a>, <a href=\"https://profiles.wordpress.org/courtney0burton/\">courtney0burton</a>, <a href=\"https://profiles.wordpress.org/cristianozanca/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/littlebigthing/\">Csaba (LittleBigThings)</a>, <a href=\"https://profiles.wordpress.org/dswebsme/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/daleharrison/\">daleharrison</a>, <a href=\"https://profiles.wordpress.org/danmicamediacom/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/goodevilgenius/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/danbuk/\">DanBUK</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/redsweater/\"><NAME> (Red Sweater)</a>, <a href=\"https://profiles.wordpress.org/danieltj/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/diddledan/\"><NAME>lyn</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/danieliser/\">danieliser</a>, <a href=\"https://profiles.wordpress.org/daniloercoli/\">daniloercoli</a>, <a href=\"https://profiles.wordpress.org/dvankooten/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nerrad/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/darthhexx/\">darthhexx</a>, <a href=\"https://profiles.wordpress.org/deapness/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/get_dave/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/drw158/\"><NAME>itley</a>, <a href=\"https://profiles.wordpress.org/davetgreen/\">davetgreen</a>, <a href=\"https://profiles.wordpress.org/davilera/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/davidanderson/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/david.binda/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/davidbinda/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/daveshine/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/dlh/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/daviedr/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/dshanske/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/daxelrod/\">daxelrod</a>, <a href=\"https://profiles.wordpress.org/dkarfa/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/dennis_f/\">Deni</a>, <a href=\"https://profiles.wordpress.org/dehisok/\"><NAME>iavsky</a>, <a href=\"https://profiles.wordpress.org/denisco/\">Denis Yanchevskiy</a>, <a href=\"https://profiles.wordpress.org/wpdennis/\">Dennis</a>, <a href=\"https://profiles.wordpress.org/dionysous/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/dmsnell/\">Denn<NAME></a>, <a href=\"https://profiles.wordpress.org/dsifford/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/derweili/\">derweili</a>, <a href=\"https://profiles.wordpress.org/dfangstrom/\">dfangstrom</a>, <a href=\"https://profiles.wordpress.org/dharmin16/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/dhavalkasvala/\">Dhaval kasavala</a>, <a href=\"https://profiles.wordpress.org/dhuyvetter/\">dhuyvetter</a>, <a href=\"https://profiles.wordpress.org/dianeco/\">Diane Co</a>, <a href=\"https://profiles.wordpress.org/diedeexterkate/\">DiedeExterkate</a>, <a href=\"https://profiles.wordpress.org/diego-la-monica/\">Diego La Monica</a>, <a href=\"https://profiles.wordpress.org/digitalapps/\">digitalapps</a>, <a href=\"https://profiles.wordpress.org/dilipbheda/\">D<NAME>heda</a>, <a href=\"https://profiles.wordpress.org/odminstudios/\">Dima</a>, <a href=\"https://profiles.wordpress.org/dingo_d/\">dingo-d</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dency/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/drewapicture/\">D<NAME>aynes</a>, <a href=\"https://profiles.wordpress.org/dukex/\">Dukex</a>, <a href=\"https://profiles.wordpress.org/dushanthi/\">dushanthi</a>, <a href=\"https://profiles.wordpress.org/seedsca/\">EcoTechie</a>, <a href=\"https://profiles.wordpress.org/ediamin/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/etoledom/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/iseulde/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/elliotcondon/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/codex-m/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/edocev/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/emiluzelac/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/epiqueras/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nrqsnchz/\"><NAME>ánchez</a>, <a href=\"https://profiles.wordpress.org/erikkroes/\">erikkroes</a>, <a href=\"https://profiles.wordpress.org/estelaris/\">estelaris</a>, <a href=\"https://profiles.wordpress.org/evalarumbe/\">evalarumbe</a>, <a href=\"https://profiles.wordpress.org/faazshift/\">faazshift</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy/\"><NAME>ägy</a>, <a href=\"https://profiles.wordpress.org/fblaser/\">fblaser</a>, <a href=\"https://profiles.wordpress.org/felipeelia/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/flixos90/\"><NAME>z</a>, <a href=\"https://profiles.wordpress.org/fencer04/\">Fencer04</a>, <a href=\"https://profiles.wordpress.org/flipkeijzer/\">flipkeijzer</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/foysalremon/\">Foysal Remon</a>, <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\"><NAME>der</a>, <a href=\"https://profiles.wordpress.org/voldemortensen/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/garyj/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/pento/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/guddu1315/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/gchtr/\">gchtr</a>, <a href=\"https://profiles.wordpress.org/soulseekah/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/loyaltymanufaktur/\">Gesundheit Bewegt GmbH</a>, <a href=\"https://profiles.wordpress.org/sachyya-sachet/\">ghoul</a>, <a href=\"https://profiles.wordpress.org/girlieworks/\">girlieworks</a>, <a href=\"https://profiles.wordpress.org/glauberglauber/\">glauberglauber</a>, <a href=\"https://profiles.wordpress.org/hometowntrailers/\">Glenn</a>, <a href=\"https://profiles.wordpress.org/gravityview/\">GravityView</a>, <a href=\"https://profiles.wordpress.org/gregsullivan/\">gregsullivan</a>, <a href=\"https://profiles.wordpress.org/gziolo/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/gwwar/\">gwwar</a>, <a href=\"https://profiles.wordpress.org/hardeepasrani/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/thakkarhardik/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/hardipparmar/\">hardipparmar</a>, <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh Pillai</a>, <a href=\"https://profiles.wordpress.org/hareesh pillai/\">Hareesh Pillai</a>, <a href=\"https://profiles.wordpress.org/harryfear/\">harryfear</a>, <a href=\"https://profiles.wordpress.org/harshbarach/\">harshbarach</a>, <a href=\"https://profiles.wordpress.org/haszari/\">haszari</a>, <a href=\"https://profiles.wordpress.org/hesyifei/\">He Yifei</a>, <a href=\"https://profiles.wordpress.org/helen/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/henrywright/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/herbmiller/\">herbmiller</a>, <a href=\"https://profiles.wordpress.org/herregroen/\">herregroen</a>, <a href=\"https://profiles.wordpress.org/hirofumi2012/\">hirofumi2012</a>, <a href=\"https://profiles.wordpress.org/hkandulla/\">HKandulla</a>, <a href=\"https://profiles.wordpress.org/howdy_mcgee/\">Howdy_McGee</a>, <a href=\"https://profiles.wordpress.org/hoythan/\">hoythan</a>, <a href=\"https://profiles.wordpress.org/hlashbrooke/\">Hugh Lashbrooke</a>, <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianmjones/\">ianmjones</a>, <a href=\"https://profiles.wordpress.org/zinigor/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/imath/\">imath</a>, <a href=\"https://profiles.wordpress.org/gsayed786/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/intimez/\">intimez</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/iqbalbary/\">iqbalbary</a>, <a href=\"https://profiles.wordpress.org/ireneyoast/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ismailelkorchi/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jdgrimes/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jagirbaheshwp/\">jagirbaheshwp</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jalpa1984/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jnylen0/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jameslnewell/\">jameslnewell</a>, <a href=\"https://profiles.wordpress.org/janak007/\">janak Kaneriya</a>, <a href=\"https://profiles.wordpress.org/jankimoradiya/\">Janki Moradiya</a>, <a href=\"https://profiles.wordpress.org/janwoostendorp/\">janw.oostendorp</a>, <a href=\"https://profiles.wordpress.org/jared_smith/\">jared_smith</a>, <a href=\"https://profiles.wordpress.org/jarocks/\">jarocks</a>, <a href=\"https://profiles.wordpress.org/jarretc/\">Jarret</a>, <a href=\"https://profiles.wordpress.org/javeweb/\">jave.web</a>, <a href=\"https://profiles.wordpress.org/javorszky/\">javorszky</a>, <a href=\"https://profiles.wordpress.org/jayswadas/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/iamjaydip/\">Jaydip</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jfarthing84/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jeichorn/\">jeichorn</a>, <a href=\"https://profiles.wordpress.org/jenblogs4u/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jenkoian/\">jenkoian</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/engelen/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/luminuu/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jffng/\">jffng</a>, <a href=\"https://profiles.wordpress.org/jikamens/\">jikamens</a>, <a href=\"https://profiles.wordpress.org/jitendrabanjara1991/\">jitendrabanjara1991</a>, <a href=\"https://profiles.wordpress.org/jkitchen/\">jkitchen</a>, <a href=\"https://profiles.wordpress.org/jmmathc/\">jmmathc</a>, <a href=\"https://profiles.wordpress.org/joakimsilfverberg/\">joakimsilfverberg</a>, <a href=\"https://profiles.wordpress.org/jobthomas/\">Job</a>, <a href=\"https://profiles.wordpress.org/jodamo5/\">jodamo5</a>, <a href=\"https://profiles.wordpress.org/joedolson/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/joehoyle/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/joemcgill/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/joen/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/johnbillion/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/johnregan3/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jojotjebaby/\">jojotjebaby</a>, <a href=\"https://profiles.wordpress.org/jrchamp/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jond/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/desrosj/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jg-visual/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\"><NAME>arris</a>, <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</a>, <a href=\"https://profiles.wordpress.org/joostdevalk/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/koke/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/josephscott/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">J<NAME></a>, <a href=\"https://profiles.wordpress.org/shelob9/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/joshuanoyce/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/joshuawold/\">JoshuaWold</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/jsnajdr/\">jsnajdr</a>, <a href=\"https://profiles.wordpress.org/juanfra/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/juiiee8487/\">Ju<NAME></a>, <a href=\"https://profiles.wordpress.org/jrf/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/juliobox/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/junktrunk/\">junktrunk</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/greenshady/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/kadamwhite/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/kafleg/\">kafleg</a>, <a href=\"https://profiles.wordpress.org/trepmal/\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/kakshak/\">Kakshak Kalaria</a>, <a href=\"https://profiles.wordpress.org/kamrankhorsandi/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/leprincenoir/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/karlgroves/\">karlgroves</a>, <a href=\"https://profiles.wordpress.org/katielgc/\">katielgc</a>, <a href=\"https://profiles.wordpress.org/kbrownkd/\">kbrownkd</a>, <a href=\"https://profiles.wordpress.org/ryelle/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/kellychoffman/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/kerfred/\">Kerfred</a>, <a href=\"https://profiles.wordpress.org/kingkero/\">kero</a>, <a href=\"https://profiles.wordpress.org/ketanumretiya030/\">ketanumretiya030</a>, <a href=\"https://profiles.wordpress.org/kevinkovadia/\">kevIN kovaDIA</a>, <a href=\"https://profiles.wordpress.org/killerbishop/\">killerbishop</a>, <a href=\"https://profiles.wordpress.org/killua99/\">killua99</a>, <a href=\"https://profiles.wordpress.org/kjellr/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/kokers/\">kokers</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a>, <a href=\"https://profiles.wordpress.org/kuus/\">kuus</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/lbenicio/\">lbenicio</a>, <a href=\"https://profiles.wordpress.org/leogermani/\">leogermani</a>, <a href=\"https://profiles.wordpress.org/leonblade/\">leonblade</a>, <a href=\"https://profiles.wordpress.org/lessbloat/\">lessbloat</a>, <a href=\"https://profiles.wordpress.org/lllor/\">lllor</a>, <a href=\"https://profiles.wordpress.org/lordlod/\">lordlod</a>, <a href=\"https://profiles.wordpress.org/loreleiaurora/\">LoreleiAurora</a>, <a href=\"https://profiles.wordpress.org/luan-ramos/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/luciano-croce/\">luciano-croce</a>, <a href=\"https://profiles.wordpress.org/luigipulcini/\">luigipulcini</a>, <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a>, <a href=\"https://profiles.wordpress.org/wpfed/\">Luke</a>, <a href=\"https://profiles.wordpress.org/lukecarbis/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/lukecavanagh/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/m1tk00/\">m1tk00</a>, <a href=\"https://profiles.wordpress.org/maartenleenders/\">maartenleenders</a>, <a href=\"https://profiles.wordpress.org/palmiak/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mahesh901122/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/majemedia/\">Maje Media LLC</a>, <a href=\"https://profiles.wordpress.org/malthert/\">malthert</a>, <a href=\"https://profiles.wordpress.org/manooweb/\">manooweb</a>, <a href=\"https://profiles.wordpress.org/manuelaugustin/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/manzoorwanijk/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/marcguay/\">MarcGuay</a>, <a href=\"https://profiles.wordpress.org/iworks/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/marcomartins/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/marcosalexandre/\">MarcosAlexandre</a>, <a href=\"https://profiles.wordpress.org/mkaz/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/marekhrabe/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/chaton666/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/maguiar/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nofearinc/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/clorith/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mdwolinski/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/markjaquith/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mapk/\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/markoheijnen/\"><NAME>nen</a>, <a href=\"https://profiles.wordpress.org/mspatovaliyski/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/splitti/\"><NAME>t</a>, <a href=\"https://profiles.wordpress.org/m-e-h/\"><NAME>ick</a>, <a href=\"https://profiles.wordpress.org/marybaum/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/masummdar/\">masummdar</a>, <a href=\"https://profiles.wordpress.org/matstars/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mat-lipe/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/iceable/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mattchowning/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mboynes/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mattheu/\"><NAME>-Young</a>, <a href=\"https://profiles.wordpress.org/matthiasthiel/\">matthias.thiel</a>, <a href=\"https://profiles.wordpress.org/mattyrob/\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/matveb/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/maximeculea/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/maximejobin/\">Maxime Jobin</a>, <a href=\"https://profiles.wordpress.org/maxme/\">maxme</a>, <a href=\"https://profiles.wordpress.org/mchavezi/\">mchavezi</a>, <a href=\"https://profiles.wordpress.org/immeet94/\">Meet Makadia</a>, <a href=\"https://profiles.wordpress.org/mehidi258/\">Mehidi Hassan</a>, <a href=\"https://profiles.wordpress.org/mehulkaklotar/\">Mehul Kaklotar</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/melinedo/\">Melin Edomwonyi</a>, <a href=\"https://profiles.wordpress.org/meloniq/\">meloniq</a>, <a href=\"https://profiles.wordpress.org/michael-arestad/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mbabker/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mnelson4/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/donmhico/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/michelweimerskirch/\">michel.weimerskirch</a>, <a href=\"https://profiles.wordpress.org/michielatyoast/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mcsf/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/miguelvieira/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mihaiiceyro/\">mihaiiceyro</a>, <a href=\"https://profiles.wordpress.org/miinasikk/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/simison/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mauteri/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mdgl/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mikehansenme/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mikejolley/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mikerbg/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\"><NAME>roder</a>, <a href=\"https://profiles.wordpress.org/mikengarrett/\">MikeNGarrett</a>, <a href=\"https://profiles.wordpress.org/dimadin/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mobeen-abdullah/\"><NAME>bdullah</a>, <a href=\"https://profiles.wordpress.org/mohsinrasool/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/monikarao/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/boemedia/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/gwendydd/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mor10/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/man4toman/\">M<NAME></a>, <a href=\"https://profiles.wordpress.org/mt8biz/\">moto hachi ( mt8.biz )</a>, <a href=\"https://profiles.wordpress.org/mppfeiffer/\">mppfeiffer</a>, <a href=\"https://profiles.wordpress.org/mrmadhat/\">mrmadhat</a>, <a href=\"https://profiles.wordpress.org/msaggiorato/\">msaggiorato</a>, <a href=\"https://profiles.wordpress.org/mtias/\">mtias</a>, <a href=\"https://profiles.wordpress.org/phpdocs/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/mukesh27/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/munyagu/\">munyagu</a>, <a href=\"https://profiles.wordpress.org/mzorz/\">mzorz</a>, <a href=\"https://profiles.wordpress.org/nadir/\">nadir</a>, <a href=\"https://profiles.wordpress.org/nfmohit/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/naveenkharwar/\">Naveen Kharwar</a>, <a href=\"https://profiles.wordpress.org/nayana123/\">Nayana Maradia</a>, <a href=\"https://profiles.wordpress.org/greatislander/\"><NAME>man</a>, <a href=\"https://profiles.wordpress.org/neelpatel7295/\"><NAME>l</a>, <a href=\"https://profiles.wordpress.org/nextendweb/\">Nextendweb</a>, <a href=\"https://profiles.wordpress.org/niallkennedy/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nickdaugherty/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/celloexpressions/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nickylimjj/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nicolad/\">nicolad</a>, <a href=\"https://profiles.wordpress.org/rahe/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nielsdeblaauw/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nielslange/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nikschavan/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nikolastoqnow/\">nikolastoqnow</a>, <a href=\"https://profiles.wordpress.org/niq1982/\">Niku Hietanen</a>, <a href=\"https://profiles.wordpress.org/rabmalin/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/nishitlangaliya/\">Nishit Langaliya</a>, <a href=\"https://profiles.wordpress.org/kailanitish90/\">Nitish Kaila</a>, <a href=\"https://profiles.wordpress.org/nmenescardi/\">nmenescardi</a>, <a href=\"https://profiles.wordpress.org/noahtallen/\">noahtallen</a>, <a href=\"https://profiles.wordpress.org/notnownikki/\">notnownikki</a>, <a href=\"https://profiles.wordpress.org/hideokamoto/\">Okamoto Hidetaka</a>, <a href=\"https://profiles.wordpress.org/lindstromer/\"><NAME>ström</a>, <a href=\"https://profiles.wordpress.org/moonomo/\">Omaar Osmaan</a>, <a href=\"https://profiles.wordpress.org/omarreiss/\">Omar Reiss</a>, <a href=\"https://profiles.wordpress.org/onlanka/\">onlanka</a>, <a href=\"https://profiles.wordpress.org/oxyc/\">oxyc</a>, <a href=\"https://profiles.wordpress.org/ozmatflc/\">ozmatflc</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">Paragon Initiative Enterprises</a>, <a href=\"https://profiles.wordpress.org/paresh07/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/swissspidy/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/casiepa/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/patilvikasj/\">patilvikasj</a>, <a href=\"https://profiles.wordpress.org/patrelentlesstechnologycom/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/pbearne/\"><NAME>ne</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/paulschreiber/\">Paul Schreiber</a>, <a href=\"https://profiles.wordpress.org/bassgang/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/pedromendonca/\"><NAME>ça</a>, <a href=\"https://profiles.wordpress.org/pputzer/\">pepe</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/phillipjohn/\">PhillipJohn</a>, <a href=\"https://profiles.wordpress.org/pierlo/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/pikamander2/\">pikamander2</a>, <a href=\"https://profiles.wordpress.org/decrecementofeliz/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/wppinar/\">Pinar Olguc</a>, <a href=\"https://profiles.wordpress.org/powerbuoy/\">powerbuoy</a>, <a href=\"https://profiles.wordpress.org/promz/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/pratikthink/\">Pratik</a>, <a href=\"https://profiles.wordpress.org/pratikkry/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/freewebmentor/\">Prem Tiwari</a>, <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/priyankkpatel/\"><NAME>l</a>, <a href=\"https://profiles.wordpress.org/quantumstate/\">Quantumstate</a>, <a href=\"https://profiles.wordpress.org/raajtram/\">Raaj Trambadia</a>, <a href=\"https://profiles.wordpress.org/raamdev/\">Raam Dev</a>, <a href=\"https://profiles.wordpress.org/raboodesign/\">raboodesign</a>, <a href=\"https://profiles.wordpress.org/rahulvaza/\">Rahul Vaza</a>, <a href=\"https://profiles.wordpress.org/superpoincare/\">Ramanan</a>, <a href=\"https://profiles.wordpress.org/ramiy/\"><NAME>uvaev</a>, <a href=\"https://profiles.wordpress.org/ramon-fincken/\">ramon fincken</a>, <a href=\"https://profiles.wordpress.org/rclations/\">RC Lations</a>, <a href=\"https://profiles.wordpress.org/rebasaurus/\">rebasaurus</a>, <a href=\"https://profiles.wordpress.org/reikodd/\">ReikoDD</a>, <a href=\"https://profiles.wordpress.org/remcotolsma/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/retrofox/\">retrofox</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\"><NAME>lla</a>, <a href=\"https://profiles.wordpress.org/rockfire/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/riddhiehta02/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/rbrishabh/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/noisysocks/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/miqrogroove/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/robi-bobi/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/rogueresearch/\">rogueresearch</a>, <a href=\"https://profiles.wordpress.org/rconde/\">Roi Conde</a>, <a href=\"https://profiles.wordpress.org/ronakganatra/\">R<NAME>anatra</a>, <a href=\"https://profiles.wordpress.org/raubvogel/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/karthost/\">Roy Randolph</a>, <a href=\"https://profiles.wordpress.org/roytanck/\">Roy Tanck</a>, <a href=\"https://profiles.wordpress.org/ryan/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ryankienstra/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/welcher/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/sebastienserre/\">Sébastien SERRE</a>, <a href=\"https://profiles.wordpress.org/samgordondev/\">samgordondev</a>, <a href=\"https://profiles.wordpress.org/sasiddiqui/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/solarissmoke/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/otto42/\"><NAME> (Otto)</a>, <a href=\"https://profiles.wordpress.org/progremzion/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/tinkerbelly/\">sarah semark</a>, <a href=\"https://profiles.wordpress.org/sarathar/\">sarath.ar</a>, <a href=\"https://profiles.wordpress.org/saskak/\">saskak</a>, <a href=\"https://profiles.wordpress.org/sbardian/\">sbardian</a>, <a href=\"https://profiles.wordpress.org/coffee2code/\"><NAME>illy</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/assassinateur/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\"><NAME>ov</a>, <a href=\"https://profiles.wordpress.org/vjik/\"><NAME>voditelev</a>, <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">sergiomdgomes</a>, <a href=\"https://profiles.wordpress.org/seuser/\">seuser</a>, <a href=\"https://profiles.wordpress.org/sgastard/\">sgastard</a>, <a href=\"https://profiles.wordpress.org/shadyvb/\">Shady Sharaf</a>, <a href=\"https://profiles.wordpress.org/shamim51/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/sharaz/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/shashank3105/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/shawfactor/\">shawfactor</a>, <a href=\"https://profiles.wordpress.org/shital-patel/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/siliconforks/\">siliconforks</a>, <a href=\"https://profiles.wordpress.org/simono/\">simono</a>, <a href=\"https://profiles.wordpress.org/sirreal/\">sirreal</a>, <a href=\"https://profiles.wordpress.org/sixes/\">Sixes</a>, <a href=\"https://profiles.wordpress.org/slaffik/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/slobodanmanic/\">S<NAME></a>, <a href=\"https://profiles.wordpress.org/smerriman/\">smerriman</a>, <a href=\"https://profiles.wordpress.org/snapfractalpop/\">snapfractalpop</a>, <a href=\"https://profiles.wordpress.org/socalchristina/\">socalchristina</a>, <a href=\"https://profiles.wordpress.org/soean/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/spectacula/\">Spectacula</a>, <a href=\"https://profiles.wordpress.org/spenserhale/\">spenserhale</a>, <a href=\"https://profiles.wordpress.org/spuds10/\">spuds10</a>, <a href=\"https://profiles.wordpress.org/sstoqnov/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ryokuhi/\">St<NAME></a>, <a href=\"https://profiles.wordpress.org/hypest/\">Stefanos Togoulidis</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/netweb/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/stevenkword/\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/studyboi/\">studyboi</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/sudhiryadav/\">Sudhir Yadav</a>, <a href=\"https://profiles.wordpress.org/manikmist09/\">S<NAME>ddin</a>, <a href=\"https://profiles.wordpress.org/tha_sun/\">sun</a>, <a href=\"https://profiles.wordpress.org/codesue/\">Suzen Fylke</a>, <a href=\"https://profiles.wordpress.org/svanhal/\">svanhal</a>, <a href=\"https://profiles.wordpress.org/patilswapnilv/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/swapnild/\">swapnild</a>, <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a>, <a href=\"https://profiles.wordpress.org/sergioestevao/\">Sérgio Estêvão</a>, <a href=\"https://profiles.wordpress.org/miyauchi/\">Takayuki Miyauchi</a>, <a href=\"https://profiles.wordpress.org/nevma/\">Takis</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tazotodua/\">tazotodua</a>, <a href=\"https://profiles.wordpress.org/technote0space/\">technote</a>, <a href=\"https://profiles.wordpress.org/tellyworth/\">Tellyworth</a>, <a href=\"https://profiles.wordpress.org/tessak22/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/themes-1/\">them.es</a>, <a href=\"https://profiles.wordpress.org/themezly/\">Themezly</a>, <a href=\"https://profiles.wordpress.org/thulshof/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/kraftner/\"><NAME>äftner</a>, <a href=\"https://profiles.wordpress.org/thomaswm/\">thomaswm</a>, <a href=\"https://profiles.wordpress.org/tdh/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/tfrommen/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/thrijith/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/tigertech/\">tigertech</a>, <a href=\"https://profiles.wordpress.org/n7studios/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/timhavinga/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/hedgefield/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/timph/\">timph</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tmdesigned/\">tmdesigned</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a>, <a href=\"https://profiles.wordpress.org/toddhalfpenny/\">toddhalfpenny</a>, <a href=\"https://profiles.wordpress.org/tosho/\"><NAME>ov</a>, <a href=\"https://profiles.wordpress.org/tjnowell/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/tferry/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/skithund/\"><NAME>ö</a>, <a href=\"https://profiles.wordpress.org/tonybogdanov/\">tonybogdanov</a>, <a href=\"https://profiles.wordpress.org/torres126/\">torres126</a>, <a href=\"https://profiles.wordpress.org/zodiac1978/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/itowhid06/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/trasweb/\">trasweb</a>, <a href=\"https://profiles.wordpress.org/travisnorthcutt/\">Travis Northcutt</a>, <a href=\"https://profiles.wordpress.org/travisseitler/\">travisseitler</a>, <a href=\"https://profiles.wordpress.org/triplejumper12/\">triplejumper12</a>, <a href=\"https://profiles.wordpress.org/truchot/\">truchot</a>, <a href=\"https://profiles.wordpress.org/truongwp/\">truongwp</a>, <a href=\"https://profiles.wordpress.org/dekervit/\">T<NAME> Kerviler</a>, <a href=\"https://profiles.wordpress.org/dinhtungdu/\">Tung Du</a>, <a href=\"https://profiles.wordpress.org/desaiuditd/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/utsav72640/\">Utsav tilava</a>, <a href=\"https://profiles.wordpress.org/vaishalipanchal/\">Vaishali Panchal</a>, <a href=\"https://profiles.wordpress.org/vbaimas/\">vbaimas</a>, <a href=\"https://profiles.wordpress.org/venutius/\">Venutius</a>, <a href=\"https://profiles.wordpress.org/fesovik/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/vishalkakadiya/\">V<NAME></a>, <a href=\"https://profiles.wordpress.org/vishitshah/\">vishitshah</a>, <a href=\"https://profiles.wordpress.org/vladlu/\">vladlu</a>, <a href=\"https://profiles.wordpress.org/vladwtz/\">V<NAME></a>, <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>, <a href=\"https://profiles.wordpress.org/svovaf/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/vrimill/\">vrimill</a>, <a href=\"https://profiles.wordpress.org/w3rkjana/\">w3rkjana</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">webcommsat AbhaNonStopNewsUK</a>, <a href=\"https://profiles.wordpress.org/webdados/\">Webdados (Marco Almeida)</a>, <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design | Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/earnjam/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/wpdavis/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/williampatton/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/withinboredom/\">withinboredom</a>, <a href=\"https://profiles.wordpress.org/worldweb/\">worldweb</a>, <a href=\"https://profiles.wordpress.org/yanngarcia/\">yanngarcia</a>, <a href=\"https://profiles.wordpress.org/collet/\">Yannicki</a>, <a href=\"https://profiles.wordpress.org/yarnboy/\">yarnboy</a>, <a href=\"https://profiles.wordpress.org/yashar_hv/\">yashar_hv</a>, <a href=\"https://profiles.wordpress.org/yoavf/\">Yo<NAME>hi</a>, <a href=\"https://profiles.wordpress.org/yodiyo/\">yodiyo</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, <a href=\"https://profiles.wordpress.org/yvettesonneveld/\">Yvette Sonneveld</a>, <a href=\"https://profiles.wordpress.org/zaantar/\">zaantar</a>, <a href=\"https://profiles.wordpress.org/zalak151291/\">zalak151291</a>, <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a>, <a href=\"https://profiles.wordpress.org/chesio/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/airathalitov/\">АЙРАТ ХАЛИТОВ <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f525.png\" alt=\"🔥\" class=\"wp-smiley\" /></a>, and <a href=\"https://profiles.wordpress.org/ounziw/\">水野史土</a>.\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>Many thanks to all of the community volunteers who contribute in the <a href=\"https://wordpress.org/support/\">support forums</a>. They answer questions from people across the world, whether they are using WordPress for the first time or since the first release. These releases are more successful for their efforts!</p>\n\n\n\n<p>Finally, thanks to all the community translators who worked on WordPress 5.3. Their efforts bring WordPress fully translated to 47 languages at release time, with more on the way.</p>\n\n\n\n<p>If you want learn more about volunteering with WordPress, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> or the <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p class=\"has-text-align-center has-medium-font-size\">Thanks for choosing WordPress!</p>\n\n\n\n<img src=\"https://i0.wp.com/wordpress.org/news/files/2019/11/image.png?fit=632%2C414&ssl=1\" alt=\"\" class=\"wp-image-7755\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Nov 2019 21:38:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WPTavern: Recurring Payments Feature Launches for WordPress.com and Jetpack Users\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95300\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://wptavern.com/recurring-payments-feature-launches-for-wordpress-com-and-jetpack-users\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3978:\"<p>WordPress.com <a href=\"https://en.blog.wordpress.com/2019/11/12/recurring-payments/\">launched a new recurring payments feature</a> its users today. The payments system will allow bloggers to earn money for their content directly from any page on their site. The feature is also available for self-hosted WordPress users who have the Jetpack plugin installed.</p>\n\n\n\n<p>The recurring payments system works alongside <a href=\"https://stripe.com\">Stripe</a>, so users must have a connected account to receive payments. Stripe currently serves over 30 countries around the world. WordPress.com’s documentation maintains an up-to-date <a href=\"https://en.support.wordpress.com/recurring-payments-button/#stripe-supported-countries\">list of countries</a> currently allowed to use the payment gateway.</p>\n\n\n\n<p>The new feature doesn’t come for free. Recurring payments access is only available to users on a premium WordPress.com plan. Plus, on top of the 2.9% + $0.30 for each payment that Stripe collects, WordPress.com has a <a href=\"https://en.support.wordpress.com/recurring-payments-button/#related-fees\">tiered fee table</a> based on the user’s plan.</p>\n\n\n\n<ul><li>WordPress.com eCommerce – No fee</li><li>WordPress.com Business – 2% per sale</li><li>WordPress.com Premium – 4% per sale</li><li>WordPress.com Personal – 8% per sale</li></ul>\n\n\n\n<p>At the lowest tier, users will see nearly 11% of sales go toward WordPress.com and Stripe fees. If accepting large volumes of payments, it will make sense for most users to upgrade to a higher plan to offset the fees. The tiers seem reasonably priced because the infrastructure is completely handled by WordPress.com. </p>\n\n\n\n<p>Self-hosted users can bypass the WordPress.com fees with a multitude of existing payment plugins. They will have to decide whether the tools and support provided by WordPress.com is enough of a value-add to go for their service.</p>\n\n\n\n<p>The Jetpack team first <a href=\"https://wptavern.com/jetpack-opens-signup-for-membership-block-beta\">opened a limited beta test</a> for this new feature on May 18, 2019. At the time, the feature was referred to as a “membership block.” The announcement post says that users can “offer ongoing subscriptions, site memberships, monthly donations, and more.”</p>\n\n\n\n<p>However, members-based content seems to be limited in comparison to other fully-featured membership plugins and would require extra manual work to limit access to a site’s premium content. The WordPress.com recommendation is to <a href=\"https://en.support.wordpress.com/recurring-payments-button/#limit-access-to-content\">password-protect posts</a> and email out the password to subscribers or set up a newsletter.</p>\n\n\n\n<p>This is far from a true membership system, but it could be enough for the average blogger who wants to make a few dollars on the side. The groundwork is there for a more powerful membership system in the future if the WordPress.com and Jetpack teams want to pursue it. The market is still ripe for innovation in the membership space.</p>\n\n\n\n<h2>Recurring Payments Block</h2>\n\n\n\n<div class=\"wp-block-image\"><img />Jetpack recurring payments editor block</div>\n\n\n\n<p>The new recurring payments feature requires at least Jetpack version 7.4. The feature comes in the form of a block for the block editor (Gutenberg) and is located under the “Jetpack” tab when inserting a new block.</p>\n\n\n\n<p>The block has four fields that can be customized:</p>\n\n\n\n<ul><li>Currency</li><li>Price</li><li>Description</li><li>Renewal Interval – limited to monthly and yearly renewals</li></ul>\n\n\n\n<p>There is no limit on the number of different payment blocks users can add. Users can create a new payment plan by adding a new block. Previous options are backed up and will appear when inserting the block for users who need to output an existing plan on a new post or page.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Nov 2019 19:45:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"bbPress: bbPress 2.6 – Better Great Than Never\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://bbpress.org/?p=193159\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://bbpress.org/blog/2019/11/bbpress-2-6/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2501:\"<p>There’s no way for me to contain either my excitement or anxiety when I say that bbPress 2.6.0 is available now! <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f389.png\" alt=\"🎉\" class=\"wp-smiley\" /></p>\n\n\n\n<p>This version of bbPress has been in development for just a bit under 6 years (yikes!) over which 420 tickets were resolved via 1737 individual code commits.</p>\n\n\n\n<p>There are so many improvements that a changelog hardly seems fitting for this post, but the major features include per-forum moderation, a bunch of new platforms to import from, and an extensible engagements API that now powers the relationships between users, forums, topics, replies, subscriptions, and favorites.</p>\n\n\n\n<p>At the time of this writing, bbPress is installed on approximately 336,000 WordPress installations, and is the most widely installed forum software in the world (according to BuiltWith.com and other sources.) Several of those are right here on bbPress.org, BuddyPress.org, and WordPress.org, the later of which includes a few dozen separate languages for non-English speaking communities of contributors all over the world.</p>\n\n\n\n<p>The elephant in the room… the reason that 2.6.0 took so long, is pretty simple. bbPress has a small contributor pool, and none of us are 100% dedicated towards it. The project gets very little community feedback, which makes it hard to know if everything is working perfectly, or nobody is testing it at all. </p>\n\n\n\n<p>So… 4 less-than part-time folks supporting over 300k sites, each with their own thousands of users, depending on us. </p>\n\n\n\n<p>The pressure is high, and the chamber is echo’y, and as my own career has progressed these past 13 years, the numbers above make me increasingly nervous.</p>\n\n\n\n<p>And the longer something takes to do is the higher the expectations are, and I personally locked up pretty hard multiple times on whether done was done enough to be trusted by so many having been tested by so few.</p>\n\n\n\n<p>But… good things come to those who wait, and I’m sincerely sorry to have kept any of you waiting for too long.</p>\n\n\n\n<p>bbPress 2.6.0 has been running smoothly on these forums since day 0. It’s stable, pretty, and a joy to use. We know you are gonna love it!</p>\n\n\n\n<p><img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f41d.png\" alt=\"🐝\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f49a.png\" alt=\"💚\" class=\"wp-smiley\" /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Nov 2019 18:42:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WPTavern: Beyond Prefixing: A WordPress Developer’s Guide to PHP Namespaces\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95284\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wptavern.com/beyond-prefixing-a-wordpress-developers-guide-to-php-namespaces\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9768:\"<p><em>Prefix everything.</em></p>\n\n\n\n<p>It is an adage that is old as the WordPress software itself. Prefixing has been a standard for WordPress developers for so long that it’s hard to imagine doing anything different. But, the time has come for something new. Well, it is long past due, but WordPress lags a bit behind in standard practices in the larger PHP world.</p>\n\n\n\n<p>Prefixing is the practice of creating a code-friendly version of your project name and sticking it to the front of functions, classes, and other things in the global namespace. For example, you would name a function <code>tavern_get_post()</code> instead of <code>get_post()</code> to avoid function name clashes, which would result in a fatal error.</p>\n\n\n\n<p>Prefixing is one form of “namespacing,” which is just a fancy way of saying that names in this space belong to a specific project. However, prefixing (and suffixing, which is less common) is a hack from a time when no solution existed for the PHP language.</p>\n\n\n\n<p>PHP 5.3 introduced an official method of namespacing, so the standard has existed for years. Because WordPress 5.2 <a href=\"https://wptavern.com/wordpress-ends-support-for-php-5-2-5-5-bumps-minimum-required-php-version-to-5-6\">bumped the minimum PHP requirement</a> to 5.6, it is time for developers to shed their old habits and catch up to the rest of the PHP world.</p>\n\n\n\n<h2>Namespace (Almost) Everything</h2>\n\n\n\n<p>PHP namespacing only covers the following items.</p>\n\n\n\n<ul><li>Classes</li><li>Interfaces</li><li>Traits</li><li>Functions</li><li>Constants declared with the <code>const</code> keyword but not <code>define()</code></li></ul>\n\n\n\n<p>When it comes to script handles, image size names, database options, and other items in the global namespace, you must still prefix them. Those are IDs and outside the scope of PHP namespacing.</p>\n\n\n\n<h2>How to Create Namespaces</h2>\n\n\n\n<p>Namespaces are simple to declare. At the top of any PHP file that you want to use a particular namespace, declare it as shown in the following code snippet.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n<?php\n\nnamespace Tavern;\n</pre>\n\n\n<p>What this line of code does is declare that everything within this particular file has the namespace of <code>Tavern</code>.</p>\n\n\n\n<p>Take a look at a simple function under that namespace for outputting a <code>Hello, World!</code> message.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n<?php\n\nnamespace Tavern;\n\nfunction hello() {\n _e( \'Hello, World!\', \'example-textdomain\' );\n}\n</pre>\n\n\n<p>If following the old rules of prefixing, <code>hello()</code> would have been named <code>tavern_hello()</code>. However, that’s not the case with namespaces. The <code>hello()</code> function is encapsulated within the <code>Tavern</code> namespace and will not conflict with other functions named <code>hello()</code>.</p>\n\n\n\n<p>Classes and interfaces work the same as functions. With a class name of <code>Article</code>, the class file might look like the following.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n<?php\n\nnamespace Tavern;\n\nclass Article {\n // ...\n}\n</pre>\n\n\n<p><strong>Note:</strong> There should only ever be one class or interface per file. This is particularly important if you ever plan to use an autoloader.</p>\n\n\n\n<h2>How to <em>Name</em> Namespaces</h2>\n\n\n\n<p>Developers like to argue over how to name things, and there is no one-size-fits-all solution. The most important rule is to be unique to avoid clashes with code from other projects. One of the best ways to do that is to use a top-level <code>Vendor</code> namespace with a <code>Package</code> sub-namespace.</p>\n\n\n\n<p>Suppose the vendor namespace was <code>Tavern</code> and the project in question was a WordPress theme named <code>News</code>. The namespace for the project might look like the following.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n<?php\n\nnamespace Tavern\\News;\n</pre>\n\n\n<p>That may be a bit verbose for some developers. If your project’s name is already fairly unique, such as “Awesomesauce,” you may simply want to use the following.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n<?php\n\nnamespace Awesomesauce;\n</pre>\n\n\n<p>You will want to come up with some sort of standard convention, at the very least, for yourself. Eventually, you’ll want to get into things like auto-loading, so having a system you follow in all your projects will help. Feel free to peruse the PHP-FIG <a href=\"https://www.php-fig.org/psr/psr-4/\">Autoloader standard</a>.</p>\n\n\n\n<h2>Importing Classes and Functions into a Different Namespace</h2>\n\n\n\n<p>When you need to use a class or function from a different namespace than the current namespace, you need to import it. This is done via the <code>use</code> keyword in PHP.</p>\n\n\n\n<p>The <code>use</code> statement must come after the <code>namespace</code> declaration. It should also reference the fully-qualified class name. The following code imports the <code>Tavern\\Helpers\\Post</code> class into a file with a different namespace.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n<?php\n\nnamespace Tavern\\Template;\n\nuse Tavern\\Helpers\\Post;\n</pre>\n\n\n<p>Once it is imported, you are safe to use the <code>Post</code> class directly as shown in the next snippet.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n$post = new Post();\n</pre>\n\n\n<p>As of PHP 5.6, you can also import functions and constants from other namespaces using the <code>use function</code> and <code>use const</code> keywords, respectively. The following code block demonstrates how to import both a function and a constant.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n<?php\n\nnamespace Tavern\\Template;\n\nuse function Tavern\\Helpers\\func_name;\nuse const Tavern\\Helpers\\CONSTANT_NAME;\n</pre>\n\n\n<h2>Aliasing Classes and Functions</h2>\n\n\n\n<p>Eventually, you will run into a situation where you need to import a class or function that has the same name as a class or function within the current namespace. You might be thinking that this is the problem that namespaces were meant to solve. Fortunately, PHP provides a method of creating an alias on import.</p>\n\n\n\n<p>Suppose you have a class named <code>Tavern\\User</code> and need to implement the <code>Tavern\\Contracts\\User</code> interface. When importing the interface, you will need to create an alias as shown below.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n<?php\n\nnamespace Tavern;\n\nuse Tavern\\Contracts\\User as UserContract;\n\nclass User implements UserContract {\n // ...\n}\n</pre>\n\n\n<p>The <code>as UserContract</code> appended to the end of the <code>use</code> statement creates an alias for the <code>User</code> interface. You can safely use the new <code>UserContract</code> name without error.</p>\n\n\n\n<p>Classes, interfaces, functions, and constants all follow the same method for creating an alias.</p>\n\n\n\n<h2>Organizing Folder Structure Based on Namespaces</h2>\n\n\n\n<p>It is standard practice in the wider PHP world for namespaces and the project’s file and folder structure to match. Doing this makes it easy for other developers to easily locate code within your project. It also makes it simple to build autoloaders for loading classes on demand.</p>\n\n\n\n<p>Generally, all PHP code should go into a <code>/src</code>, <code>/inc</code>, or similarly-named folder in your project. An example plugin file and folder structure might look like the following.</p>\n\n\n<pre class=\"brush: plain; gutter: false; title: ; wrap-lines: false; notranslate\">\n/plugin-name\n /src\n /Core\n /Activate.php\n /Setup.php\n /View\n /Post.php\n /Page.php\n</pre>\n\n\n<p>If following the same structure with namespaces, the above <code>.php</code> files would contain the following classes.</p>\n\n\n\n<ul><li><code>Tavern\\Core\\Activate</code></li><li><code>Tavern\\Core\\Setup</code></li><li><code>Tavern\\View\\Post</code></li><li><code>Tavern\\View\\Page</code></li></ul>\n\n\n\n<p>Take note that file and folder names are case-sensitive and should match the namespace and class name exactly.</p>\n\n\n\n<p>Of course, you are free to follow any convention that you wish. However, the preceding recommendation is good practice and will simplify how you organize your projects in the long term.</p>\n\n\n\n<h2>Benefits of Using Namespaces</h2>\n\n\n\n<p>The most obvious benefit is to avoid clashes between classes and functions with the same name. You should use real namespaces for the same reason you used prefixes.</p>\n\n\n\n<p>Namespaces help to avoid long class names. Typing long names throughout a large project is a tedious practice at best.</p>\n\n\n\n<p>More easily switch implementations by importing. Once you get the hang of importing classes and interfaces from other namespaces, you can switch an implementation of an interface with a single line of code.</p>\n\n\n\n<p>Autoloading classes is far easier if you follow the <a href=\"https://www.php-fig.org/psr/psr-4/\">PSR-4: Autoloader</a> standard, which requires at least a top-level namespace.</p>\n\n\n\n<p>For developers in the professional space, you will gain a marketable skill beyond the WordPress ecosystem. You will be hard-pressed to find PHP development work if you don’t know how to use namespaces. It is not a tough concept to grasp, but there can be a learning curve for some in practice.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Nov 2019 18:43:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Matt: Farnam Street’s Great Mental Models, Presented by Automattic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=50433\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://ma.tt/2019/11/farnam-streets-great-mental-models-presented-by-automattic/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1075:\"<p>I’ve been a fan of <NAME> and his indispensable <a href=\"https://fs.blog/\">Farnam Street</a> for many years now. Shane is a <a href=\"https://www.nytimes.com/2018/11/11/business/intelligence-expert-wall-street.html\">fascinating person</a> — he’s a former cybersecurity expert for the Canadian intelligence agency and occasional blogger who turned his website into a full-time career. Oh and <a href=\"http://fs.blog\">fs.blog</a> is on WordPress, too. <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f60e.png\" alt=\"😎\" class=\"wp-smiley\" /></p>\n\n\n\n<p>His book, <a href=\"https://fs.blog/tgmm/\"><em>The Great Mental Models: General Thinking Concepts</em></a>, has been tremendously valuable to me in my work. So valuable, in fact, that Automattic is now sponsoring the next printing of the hardcover edition. <a href=\"https://www.amazon.com/Great-Mental-Models-Thinking-Concepts/dp/1999449002/\">You can pre-order it here</a>, then learn more about <a href=\"https://fs.blog/general-thinking-concepts/\">the mental models outlined in it</a>. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Nov 2019 15:59:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"BuddyPress: The road to BuddyPress blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=308912\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://buddypress.org/2019/11/the-road-to-buddypress-blocks/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5679:\"<p>Hi everyone!</p>\n\n\n\n<p>First, we’d like to thank all the people who contributed to the poll we shared on our <a href=\"https://bpdevel.wordpress.com/2019/10/10/take-the-buddypress-blocks-poll/\">development updates blog</a> and into <a href=\"https://buddypress.org/support/topic/take-the-buddypress-blocks-poll/\">a topic of one of our forums</a> a month ago. It was really important for us to have your expectations about the content the plugin should provide to the WordPress Block Editor.</p>\n\n\n\n<p>It’s now time for us to share with you the <a href=\"https://poll.fm/10425422/results\">results of this poll</a> and tell you how we plan to work on BuddyPress blocks for the next release(s) of your favorite community engine!</p>\n\n\n\n<span id=\"more-308912\"></span>\n\n\n\n<h2>The results of the Blocks Poll</h2>\n\n\n\n<p>It received a total of 161 votes divided as follows:</p>\n\n\n\n<ul><li>A block to share a post or a page via the Activity Stream : <strong>17 votes</strong>.</li><li>A block to list the recently published posts from across your network (Exists as a widget) : <strong>13 votes</strong>.</li><li>A block to display Sitewide Notices posted by the site administrator (Exists as a widget) : <strong>12 votes</strong>.</li><li>A block to dynamicaly list the recently active, popular, newest, or alphabetical groups (Exists as a widget) : <strong>11 votes</strong>.</li><li>A block to display Profile photos of online users (Exists as a widget) : <strong>10 votes</strong>.</li><li><em>A block to highlight a single Group</em> : <strong>10 votes</strong>.</li><li><em>A block to highlight a single Member</em> : <strong>10 votes</strong>.</li><li>A block to dynamicaly list the recently active, popular, and newest Friends of a given member (Exists as a widget) : <strong>9 votes</strong>.</li><li>A block to display the Profile photos of recently active members (Exists as a widget) : <strong>9 votes</strong>.</li><li>A block to restrict content to a Group type : <strong>9 votes</strong>.</li><li>A block to dynamicaly list the recently active, popular, and newest members (Exists as a widget) : <strong>8 votes</strong>.</li><li>A block to restrict content to a Member type : <strong>8 votes</strong>.</li><li>A block to restrict content to Group members : <strong>7 votes</strong>.</li><li>A block to list the Member types : <strong>7 votes</strong>.</li><li>A block to display a selected Activity as a quote : <strong>6 votes</strong>.</li><li>A block to list the Group types : <strong>5 votes</strong>.</li><li>A placeholder block for directory pages to eventually make them benefit from wide alignments : <strong>5 votes</strong>.</li><li>No blocks! : <strong>3 votes</strong>.</li><li>Other : <strong>2 votes</strong>.</li></ul>\n\n\n\n<p>As you can see, top results are mostly corresponding to existing widgets except for:</p>\n\n\n\n<ul><li>A block to share a post or a page via the Activity Stream.</li><li><em>A block to highlight a single Group or a single Member</em>.</li></ul>\n\n\n\n<p>We also analyze from these results that there is no blocks expected to be a must have and it’s interesting to see that the 2 first blocks are about highlighting WordPress content. Finally only one suggestion was made : A “Block for Activity Stream component” (<em>PS: in Nouveau there’s an existing widget for it</em>).</p>\n\n\n\n<h2>About the BuddyPress development team’s decision regarding BuddyPress blocks.</h2>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/11/starting-point-1024x520.png\" alt=\"\" class=\"wp-image-308935\" />Screen capture of the BuddyPress Blocks category when the <a href=\"https://github.com/buddypress/bp-blocks\">BP Blocks</a> plugin is active.</div>\n\n\n\n<p>We think working on blocks to highlight a single Group or a single Member is a good starting point. Moreover it’s something we don’t make possible yet. We also think converting existing widgets to blocks is an obvious move to do.</p>\n\n\n\n<p>We’ve decided to work on these blocks from a specific <a href=\"https://github.com/buddypress/bp-blocks\">GitHub repository</a> and to merge into the Core of the BuddyPress plugin the “JavaScript built” blocks as soon as they are ready. To the very least, we’ll have the 2 blocks to highlight a Group or a Member of your community site merged into BuddyPress for its next major release (<strong>6.0.0</strong>).</p>\n\n\n\n<p>We’ve just pushed the <a href=\"https://github.com/buddypress/bp-blocks/commit/227a15814cfbf239fb382ee5b11d29240a6ae54f\">minimal code</a> to start working on BuddyPress blocks into the BP Blocks’ GitHub repository. We’ll soon add contributing notes into this repository so that you can help us building beautiful BuddyPress blocks. You can already share with us your “Pull Requests” forking the repository.</p>\n\n\n\n<p>If you can’t wait for the contributing notes to start working on BuddyPress Blocks, here’s a quick “how-to” :</p>\n\n\n\n<ul><li>Once you cloned your fork into your development environment, do <code>npm install</code></li><li>The JavaScript (ESNext) code for your block needs to land into the <code>/src/bp-{ID of the BP Component}/js/blocks/</code> directory.</li><li>Have a look at the way the <code>bp/member</code> block is registered <a href=\"https://github.com/buddypress/bp-blocks/blob/master/build/bp-members/bp-members-blocks.php#L19-L29\">here</a> to build your registration code.</li><li>run <code>npm start</code> to see how your JavaScript code behaves at each edit.</li></ul>\n\n\n\n<p>Let’s build awesome BuddyPress blocks, together <3.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Nov 2019 18:30:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"imath\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"WordPress.org blog: People of WordPress: <NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7662\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2019/11/people-of-wordpress-kim-parsell/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6063:\"<p><em>You’ve probably heard that WordPress is open-source software, and may know that it’s created and run by volunteers. WordPress enthusiasts share many examples of how WordPress changed people’s lives for the better. This monthly series shares some of those lesser-known, amazing stories.</em></p>\n\n\n\n<h2><strong>Meet <NAME></strong></h2>\n\n\n\n<p>We’d like to introduce you to <NAME>. Kim was an active and well-loved member of the WordPress community. Unfortunately, she passed away in 2015. Lovingly referred to as #wpmom, she leaves behind a legacy of service. </p>\n\n\n\n<img src=\"https://i1.wp.com/wordpress.org/news/files/2019/11/Kim-Parsell-1.jpg?fit=632%2C252&ssl=1\" alt=\"\" class=\"wp-image-7664\" /><NAME>\n\n\n\n<h2><strong>How Kim became #wpmom</strong></h2>\n\n\n\n<p>In order to understand how highly valued the WordPress community was to <NAME>, you have to know a bit about her environment.</p>\n\n\n\n<p>Kim was a middle-aged woman who lived off a dirt road, on top of a hill, in Southern rural Ohio. She was often by herself, taking care of the property with only a few neighbors up and down the road.</p>\n\n\n\n<p>She received internet access from towers that broadcast wireless signals, similar to cell phones but at lower speeds.</p>\n\n\n\n<h2><strong>Connecting through attending live podcast recordings</strong></h2>\n\n\n\n<p>By listening to the regular podcast, WordPress Weekly, Kim met members of the WordPress community and was able to talk to them on a weekly basis. The show and its after-hours sessions provided Kim a chance to mingle with the who’s who of WordPress at the time. It helped establish long-lasting relationships that would open up future opportunities for her.</p>\n\n\n\n<p>Since she lived in a location where few around her used or had even heard of WordPress, the community was an opportunity for her to be with like-minded people. Kim enjoyed interacting with the community, both online and at WordCamp events, and many community members became her second family, a responsibility she took very seriously.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>“Many members of the WordPress community became her second family, a responsibility she took very seriously.”</em></p><cite><em><NAME></em></cite></blockquote>\n\n\n\n<h2><strong>One of the first women of WordPress</strong></h2>\n\n\n\n<p>Kim is regarded as one of the first “women of WordPress,” investing a lot of her time in women who wanted to break into tech. She worked hard to create a safe environment sharing herself and her knowledge and was affectionately called #wpmom.</p>\n\n\n\n<p>She contributed countless hours of volunteer time, receiving “props” for 5 major releases of WordPress, and was active on the documentation team. </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>“Affectionately called #wpmom, Kim was an investor. She invested countless hours into the WordPress project and in women who wanted to break into tech.”</em></p><cite><em><NAME></em></cite></blockquote>\n\n\n\n<img src=\"https://i0.wp.com/wordpress.org/news/files/2019/11/KimParsell2.jpg?fit=632%2C468&ssl=1\" alt=\"\" class=\"wp-image-7663\" />Kim at WordCamp San Francisco\n\n\n\n<h2><strong><NAME> Memorial Scholarship</strong></h2>\n\n\n\n<p>In 2014, she received a travel stipend offered by the WordPress Foundation that enabled her to attend the WordPress community summit, held in conjunction with WordCamp San Francisco. She shared with anyone who would listen, that this was a life-changing event for her. </p>\n\n\n\n<p>The WordPress Foundation now offers that scholarship in her memory. The Kim Parsell Memorial Scholarship provides funding annually for a woman who contributes to WordPress to attend WordCamp US, a flagship event for the WordPress community.</p>\n\n\n\n<p>This scholarship truly is a fitting memorial. Her contributions have been vital to the project. Moreover, the way she treated and encouraged the people around her has been an inspiration to many. </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>Her spirit lives on in the people she knew and inspired. Here’s hoping that the Kim Parsell Memorial Scholarship will serve to further inspire those who follow in her footsteps.</em></p><cite><em><NAME></em></cite></blockquote>\n\n\n\n<h2><strong>Kim is missed, but her spirit continues to live on</strong></h2>\n\n\n\n<p>Sadly Kim died just a few short months later. But her spirit lives on in the people she knew and inspired within her communities. The Kim Parsell Memorial Scholarship will serve to further inspire those who follow in her footsteps.</p>\n\n\n\n<h2><strong>Contributors</strong></h2>\n\n\n\n<p><NAME> (<a href=\"https://profiles.wordpress.org/wpfiddlybits/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>wpfiddlybits</a>), <NAME> (<a href=\"https://profiles.wordpress.org/yvettesonneveld/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>yvettesonneveld</a>), <NAME> (<a href=\"https://profiles.wordpress.org/chanthaboune/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chanthaboune</a>), <NAME> (<a href=\"https://profiles.wordpress.org/topher1kenobe/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>topher1kenobe</a>), <NAME>, <NAME>, <NAME>, <NAME>, <NAME></p>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\">\n<img src=\"https://i1.wp.com/wordpress.org/news/files/2019/07/heropress_large_white_logo.jpg?resize=632%2C474&ssl=1\" alt=\"\" class=\"wp-image-7025\" />\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<p> <em>This post is based on an article originally published on HeroPress.com, a community initiative created by <a href=\"https://profiles.wordpress.org/topher1kenobe/\"><NAME></a>. HeroPress highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.</em> </p>\n</div>\n</div>\n\n\n\n<p> <em>Meet more WordPress community members over at </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>!</em> </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Nov 2019 23:58:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Yvette Sonneveld\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"Post Status: A Teenage Woman’s Perspective On The State of The Word\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=70959\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://poststatus.com/a-teenage-womans-perspective-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6917:\"<p>Hello everyone! This year I got the chance to go to the <a href=\"https://poststatus.com/matt-mullenweg-state-of-the-word-2019/\">State of the Word</a>, which is a talk given by <NAME> each year at WordCamp US (WCUS). Here are my thoughts and views on this year’s State of the Word.</p>\n\n\n\n<p>Before he even got started with the State of the Word, Matt premiered a new documentary that focuses on the fact that WordPress is both open source and also a big community. The documentary takes you to WordCamp Phoenix, WordCamp US (2018), and others. It also gives you first-hand exposure to what the community is really like.</p>\n\n\n\n<p>Another thing that the film emphasizes, is the fact that everyone wants everyone in the community to succeed, and this might be one of the unique features of the WordPress community — how members are supportive of each other.</p>\n\n\n\n<h3>Let’s Get Started!</h3>\n\n\n\n<p>Matt discussed several milestones and release notes for WordPress.</p>\n\n\n\n<h4>Two different releases within a year:</h4>\n\n\n\n<ul><li>WordPress 5.1: Developer Experience Improvements </li><li>WordPress 5.2: New Widgets, which can be shown or hidden</li></ul>\n\n\n\n<h4>The future of releases:</h4>\n\n\n\n<div class=\"wp-block-columns has-2-columns\">\n<div class=\"wp-block-column\">\n<p><strong>WordPress 5.3</strong></p>\n\n\n\n<ul><li>November 12</li><li>Over 150 block editor improvements</li><li>Twenty Twenty theme</li><li>Admin Email Verification</li><li>Time/Date Component Fixes</li><li>PHP 7.4 Cap</li><li>MinPHP 5.6.20</li></ul>\n\n\n\n<p><strong>Mobile</strong></p>\n\n\n\n<ul><li>Got Gutenberg on mobile </li><li><strong>Almost</strong> done with offline mode</li><li>DARK MODE 8</li></ul>\n\n\n\n<p><strong>Social</strong></p>\n\n\n\n<ul><li>141 WordCamps </li><li>About 15 KidsCamp</li><li>HeroPress</li><li>There is going to be a new scholarship to bring more people to WCUS</li></ul>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<img src=\"https://cdn.poststatus.com/wp-content/uploads/2019/11/blocks.png\" alt=\"\" class=\"wp-image-71109\" />\n</div>\n</div>\n\n\n\n<h3>Let’s Time Travel…</h3>\n\n\n\n<div class=\"wp-block-columns has-3-columns\">\n<div class=\"wp-block-column\">\n<p><strong>A Year Ago</strong></p>\n\n\n\n<ul><li>People did not like Gutenberg</li></ul>\n\n\n\n<img src=\"https://cdn.poststatus.com/wp-content/uploads/2019/11/GUT.png\" alt=\"\" class=\"wp-image-71110\" />\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<p><strong>Today</strong></p>\n\n\n\n<ul><li>They have added motion</li><li>Typewritter mode</li><li>Block previews</li></ul>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<p><strong>Future</strong></p>\n\n\n\n<ul><li>SOCIAL ICONS!!! (This is going to be a Gutenberg block)</li><li>The Navigation block/editor</li><li>GRADIENTS (I’m excited!)</li><li><span>Multi-Button Block</span></li><li>Block Directory </li><li>Block patterns </li></ul>\n</div>\n</div>\n\n\n\n<h3>Community</h3>\n\n\n\n<ul><li>There are so many different sites just using the block editor.</li><li>You are able to use Microsoft Word with the new editor using the Copy and Paste method.</li></ul>\n\n\n\n<h3>Beyond</h3>\n\n\n\n<p>Gutenberg is about 20% done. There are going to be 4 phases of Gutenberg:</p>\n\n\n\n<ul><li>Easier Editing</li><li>Customization</li><li>Collaboration</li><li>Multilingual</li></ul>\n\n\n\n<h3>Our Path Forward…</h3>\n\n\n\n<div class=\"wp-block-columns has-2-columns\">\n<div class=\"wp-block-column\">\n<ul><li>Help be the change \n<ul>\n<li>Go to Contributor Day</li>\n<li>Design Experiments by the WordPress team.</li>\n</ul>\n</li><li>More Blocks!\n<ul>\n<li>Learn JavaScript Deeply. </li>\n</ul>\n</li><li>Help <strong>Teach the change</strong></li><li>There are meetups everywhere</li><li>Help open the web. </li><li>Five for the future\n<ul>\n<li><a href=\"http://wordpress.org/5\">wordpress.org/5</a> or <a href=\"http://wordpress.org/five\">wordpress.org/five</a></li>\n</ul>\n</li></ul>\n\n\n\n<p></p>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<img src=\"https://cdn.poststatus.com/wp-content/uploads/2019/11/path.png\" alt=\"\n\" class=\"wp-image-71111\" />\n</div>\n</div>\n\n\n\n<h3>My Thoughts</h3>\n\n\n\n<h4>As a young person…</h4>\n\n\n\n<p>As I was listening to the talk, I did find some golden gems that I thought my generation might be able to take advantage of and use to the benefit of both our generation and also the WordPress community.</p>\n\n\n\n<p>One of those things is the new documentary that shows how open the WordPress Community really is.</p>\n\n\n\n<p>Another thing, and yes, I am serious about this, is the fact that they are adding gradients to the WordPress editor for the Gutenberg blocks. I think that addition is going to bring out the artistic side of those of us who do not know how to do gradients in code yet.</p>\n\n\n\n<h4>That time I asked <NAME> a question…</h4>\n\n\n\n<p>One of the major things that I did during my WordCamp US trip happened during the Q&A Session which is right after the State of the Word. I decided to try to ask a question of my own.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>Me asking <NAME> a question\n\n\n\n<p>And to summarize, I asked what was Matt’s plan for the inclusion of the next generation of WordPress users. His response to that is the fact that <a href=\"https://poststatus.com/automattic-has-purchased-tumblr/\">Automattic bought Tumblr</a> and is going to turn the back end of their site into a Gutenberg-centric WordPress interface.</p>\n\n\n\n<p>I do not think that this is a bad thing. In fact, I think that this is a good thing because of the fact that Tumblr is something that is attracting the younger generation of users.</p>\n\n\n\n<p>I think Tumblr’s addition is going to be targeted towards some of the same people who are already using WordPress, and I was just hoping for a start to something that is able to capture a new group of people who are not using Tumblr to blog.</p>\n\n\n\n<p>And now I know what you are thinking, <em>Doesn’t KidsCamp already attract the younger generation</em>? I LOVE KidsCamp and everyone and everything to do with KidsCamp. But here is the thing, KidsCamp is something that happens in less than half of the WordCamps inside of the United States, and getting there might be difficult for some parents, especially if they are going to bring their kids with them.</p>\n\n\n\n<h3>In conclusion</h3>\n\n\n\n<p>The organization of the whole event played out nicely. The media (or the people who tweet the most) got to sit in the front rows for the convenience of taking photos and notes.</p>\n\n\n\n<p>There was no line for any of it, therefore we got the chance to fully enjoy the afternoon break that came right before the State of the Word.</p>\n\n\n\n<p>I’m glad I got to ask my question to Matt. I think that there are some different ways that different people from the WordPress community are able to step in and help, beyond Tumblr, and beyond KidsCamp.</p>\n\n\n\n<p>But that is going to come inside of a different blog post later in the future.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Nov 2019 23:15:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WPTavern: Themes of the Future: A Design Framework and a Master Theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95267\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wptavern.com/themes-of-the-future-a-design-framework-and-a-master-theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8858:\"<p>WordPress theming has a rich history. Over the years, theme authors have brought a plethora of features to the platform. In part, it is because they have often had to solve foundational issues with WordPress to create the features that end users want.</p>\n\n\n\n<p>The post and body classes all theme authors use today? Those were originally in a theme called Sandbox. </p>\n\n\n\n<p>Featured images? Those were popularized by <em>magazine</em> themes a decade ago. </p>\n\n\n\n<p>You think post formats originated with Tumblr? <NAME>, co-creator of WordPress, taught us how to <a href=\"https://ma.tt/2004/05/asides/\">create aside posts</a> in our themes in 2004, but they existed before that.</p>\n\n\n\n<p>WordPress features often get their start in the theme world. We sometimes take for granted the years of experimentation and iteration on ideas where theme authors are putting in the work. Even the block editor is handling items that have traditionally been within the realm of theme design. The cover block is a good example. For years, theme authors built theme options for a basic hero image with text and buttons overlain. The result was often clunky and not ideal for users. By bringing this feature into core, it provided users the ability to put this cover block in any permitted block area.</p>\n\n\n\n<p>The reason many theme features make it to core is that they simply work better when they are standardized. Users know what to expect, and theme authors can focus on the design aspect rather than solving the user experience problem.</p>\n\n\n\n<p>Part of the problem of the past is that each new feature adopted into core did not follow any standard design pattern or naming scheme. A huge skill in designing WordPress themes is committing the mish-mash of hundreds of classes to memory.</p>\n\n\n\n<p>The block editor is in a unique position to change that by creating a universal design framework.</p>\n\n\n\n<h2>Does WordPress Need a Front-End Design Framework?</h2>\n\n\n\n<p>With block patterns coming in the future and full-site customization at some point after that, theme authors are wondering just exactly where this ship is sailing. It is exciting because the possibilities are boundless for end users. It is frightening for theme authors who have built their empires upon one way of doing things, but development is more about adaptation than anything else.</p>\n\n\n\n<p>Armed with the foreknowledge that the landscape is changing, this is the moment theme authors need to band together to shape their futures in a block-based world.</p>\n\n\n\n<p>There is a bit of a running joke in one of the developer groups I am involved in that core developers are not theme authors. From the theme author perspective, it can sometimes seem like ideas are haphazardly thrown together with no thought toward CSS design systems.</p>\n\n\n\n<p><em>Oh, I see some BEM. Why does this sub-element not follow the same naming scheme? Wait. Is that a 38-character utility class?</em></p>\n\n\n\n<p>What WordPress has always lacked is a universal front-end design system. At times, that has been a good thing. It has allowed theme authors to use their preferred framework. Any theme author who has been in the game long enough will tell you, that sort of flexibility is great…<em>until it is not</em>. Have you ever tried adding contextual classes to widgets? What about adding a utility class to the comment form wrapper? You will need an Aspirin. Or two.</p>\n\n\n\n<p>With WordPress, some things are set in stone and others are pluggable. Some features follow a standard class-naming scheme and others make no sense. The result for themes is often bloated CSS in an attempt to wrangle the various components.</p>\n\n\n\n<p>It is next to impossible to fully use a utility-class framework like <a href=\"https://tailwindcss.com\">Tailwind CSS</a> in a theme without recreating core features. </p>\n\n\n\n<p>Much of this stems from years of legacy code piling up and WordPress’ commitment to backward compatibility. But, the future does not have to resemble the past. We are at the threshold of a new era, and now is the time for front end designers to jump into the conversation.</p>\n\n\n\n<p>WordPress needs a solid front-end design framework.</p>\n\n\n\n<p>That is a loaded statement. If you put 20 designers in a room and ask them to discuss design frameworks, it could be a recipe for fisticuffs. I tend to be an optimist and hope the debate provided results.</p>\n\n\n\n<p>Gutenberg has pushed us partially in this direction, but it does not quite go far enough. With full-site editing in the future, there is a need for a more holistic approach in tackling this problem.</p>\n\n\n\n<p>More than anything, we need more front end designers in the conversation. There is no way <code>.has-subtle-pale-green-background-color</code> should exist as a utility class over something like <code>.bg-pale-green</code>, <code>.bg-green-100</code>, or even <code>.background-pale-green</code>, if you want to be more verbose. There was no concept of optimization that went into that decision. In a time where developers are running on gigabyte internet connections, it is easy to forget that much of the world is following along at a slower pace.</p>\n\n\n\n<p>A component-based naming scheme with a healthy dose of utility classes is one option that could hit several sweet spots. This is not an argument for one CSS framework over another. There are many good, existing options. WordPress should tackle this head on by borrowing from the groundwork laid down by other projects and creating something uniquely WordPress. It should be a leader in the field.</p>\n\n\n\n<p>Design frameworks are also about plugins. There is some crossover into the realm of themes where the two have been waging an ongoing war since the dawn of the theme system. The battlefield between themes and plugins is littered with the deaths of good ideas. Far too many never garnered the support they needed to land in core. Some sort of universal design standard could stanch the flood of issues and call for a cease-fire.</p>\n\n\n\n<p>A plugin that outputs a custom front-end component has no way of knowing how the current theme handles vertical rhythm, for example. <em>Does it use top or bottom margin? What is the value and unit used?</em> This is foundational stuff, and it is almost always broken when the plugin attempts to add custom CSS to handle it.</p>\n\n\n\n<p>WordPress needs a design framework, or language, that allows all of its moving parts to come together in harmony on the front end. I am sure we will get there at some point. I hope that it is more cohesive than the random components and naming schemes of the past. We should also have a clear roadmap that fills in some of the technical details so developers and designers might be prepared.</p>\n\n\n\n<h2>Is a One-Theme Future Possible?</h2>\n\n\n\n<p><NAME> makes the argument that core WordPress could provide a single parent theme in his article <a href=\"https://richtabor.com/the-future-of-wordpress-themes/\">A Look at WordPress Themes of the Future</a>. The idea is that theme authors would be relegated to creating a child theme for this “master” theme.</p>\n\n\n\n<p>The gut reaction for many would be that it would not work, themes would lose their personality and we would live in a world of cookie-cutter designs. </p>\n\n\n\n<p>The reality is that we are barreling toward a future where the idea of a single parent or master theme is a serious consideration. </p>\n\n\n\n<p>Most themes are custom groupings of standard elements that exist in nearly all themes. There are some decisions, aside from stylistic concerns, that make themes different from one another, such as the layout of the header. One theme might have a site title and nav menu in one block. Another might have a nav menu, title, and a second nav menu below. Yet, another theme might show a search box. In a world where full-site customization belongs to the user, those decisions become a part of the user experience rather than the developer experience.</p>\n\n\n\n<p>Themes will need to stand out with color palettes, typography, and their own brand of quirkiness — a return of the days of <a href=\"http://csszengarden.com/\">CSS Zen Garden</a> but on a much larger scale.</p>\n\n\n\n<p>I won’t be sad about that. It would be interesting to see the competition between the top designers in the field. It may also bring WordPress theming back to an era when anyone could do it with a little CSS knowledge and determination.</p>\n\n\n\n<p>While we are not quite ready for a future in which one theme rules theme all, it is a place to start the conversation. If we designed WordPress for this potential future, even if we never implement a master theme, what would the roadmap look like? What obstacles stand in the way? Is it feasible?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Nov 2019 21:13:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"WPTavern: Oklahoma Watch Becomes First U.S. Publication on Newspack; 34 Pilot Newsrooms Announced for Second Round\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95252\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:123:\"https://wptavern.com/oklahoma-watch-becomes-first-u-s-publication-on-newspack-34-pilot-newsrooms-announced-for-second-round\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7869:\"<div class=\"wp-block-image\"><img />Homepage of the Oklahoma Watch website on Newspack.</div>\n\n\n\n<p><a href=\"https://oklahomawatch.org/\">Oklahoma Watch</a> is the first U.S. publication to relaunch and the second publication to go live on Newspack, a platform created this year to bring WordPress to newsrooms. Newspack <a href=\"https://newspack.blog/2019/11/07/newspack-announces-second-set-of-pilot-newsrooms-first-u-s-site-relaunches-on-new-platform/\">announced the relaunch</a> today. The announcement includes the list of 34 new publications that will work with the Newspack team during its second phase.</p>\n\n\n\n<p>Newspack is a project of Automattic, the parent company of WordPress.com. Its mission is to create a platform for more newsrooms to make the move to WordPress. The team has been working alongside industry leaders and small publications during the pilot program this year to tackle issues with running online newsrooms.</p>\n\n\n\n<p>Chilean news site El Soberano was the first newsroom to go live on the new system, <a href=\"https://wptavern.com/chilean-news-publication-el-soberano-first-to-launch-on-newspack\">relaunching their site</a> on October 16. Oklahoma Watch follows them as only the second publication to take the next step. The remaining participants in the pilot program are expected to launch in the coming weeks.</p>\n\n\n\n<p>Oklahoma Watch is a non-partisan publication that does not publish opinion pieces. It is a nonprofit news organization that covers stories on public-policy issues within the state of Oklahoma. “Those include education, criminal justice, public and mental health, state government, poverty, and human-needs issues that disproportionately affect women, children, and the disadvantaged,” said executive editor <NAME>. “Our staples are in-depth stories, searchable data, interactives, public forums, live-tweeting and other social media, and, increasingly, video.”</p>\n\n\n\n<p>The publication distributes its stories for free republication to around 100 newspapers and radio and TV news outlets throughout the state.</p>\n\n\n\n<h2>Oklahoma Watch’s Move to Newspack</h2>\n\n\n\n<p>In 2013, the Oklahoma Watch site moved to <a href=\"https://largo.inn.org/\">Largo</a>, a WordPress theme framework for news publishers. It is developed and maintained by the Institute for Nonprofit News.</p>\n\n\n\n<p>“Our website was clean and bright, but was rather monotonous, with a long stack of same-sized headlines, excerpts and a right sidebar with typical fixtures, such as a newsletter sign-up ask and our Twitter feed,” said Fritze. After bringing on a visual journalist to bring the site up to date with media, they still felt tools were limited and needed a site refresh.</p>\n\n\n\n<p>“We went live with Newspack more than a week ago, and we’re still gradually digging around — spelunking in a way — to learn how to make the most of it,” said Fritze. “But I would say it already has and will make a world of difference.”</p>\n\n\n\n<p>He sent the following update to the publication’s email subscribers.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>[Newspack] gives smaller organizations more tools to deliver their content in engaging, creative ways. What you will notice: a faster mobile experience; a better showcasing of visuals, stories, and informational bits, and a more vibrant, flexible home page – with new features to come. The goal is to make oklahomawatch.org a richer experience for you and to enhance the investigative reporting that is central to our mission.</p></blockquote>\n\n\n\n<p>The team switched from the classic editor and has been learning the block editor (Gutenberg) along with the Newspack tools. Fritze said the team is happy about:</p>\n\n\n\n<ul><li>Being able to serve donation and subscription forms anywhere.</li><li>Having the ability to more easily manage their homepage content, media, and headlines.</li><li>Making changes without spending valuable time that would be better spent investigating stories.</li></ul>\n\n\n\n<p>As part of the initial pilot program, Oklahoma Watch was in a unique position to help make this an easier process for future publications on the platform. “We were fortunate to be a pilot site and have the full let’s-develop-this attention of the Newspack team — on Slack, in regular video conference calls, in emails, and by phone,” said Fritze.</p>\n\n\n\n<p>“Early on, it became clear that some of the news sites’ reps were more well-versed in web tech and other programs than we were, so it took me a while to get my bearings,” said Fritze of the process. “But I requested specific features and preservation of one or two of the tools we already have and prefer.” One such tool was the <a href=\"https://tablepress.org/\">TablePress plugin</a>. The Oklahoma Watch team uses it to display interactive, tabular data from CSV files.</p>\n\n\n\n<p>Fritze said he had a few requests for other features that are still pending, such as a film-strip-like homepage carousel. However, the Newspack team was clear from the outset that not all plugins or features would be adopted for the system.</p>\n\n\n\n<p>“Perhaps that would give some clients pause, not being able to pull any fish you wanted out of the sea of WordPress plugins, based on some mention on the web,” said Fritze. “On the other hand, the quality control is reassuring, especially for smaller organizations like ours that have little time to go kicking those tires.”</p>\n\n\n\n<p>In any controlled system, it makes sense that not every feature request will be granted. It would increase the quality control burden. However, without more control over tools or features, it could be a non-starter for some publications.</p>\n\n\n\n<p>Fritze does have a big feature request for the long term. “If there is one thing that Newspack should make sure happens going forward, it’s to promote easy interaction among Newspack sites, including the ability to communicate one on one and find peer sites that have similar needs and challenges,” he said.</p>\n\n\n\n<h2>Second Round of Pilot Newsrooms Announced</h2>\n\n\n\n<p>Oklahoma Watch and the 11 other newsrooms currently in the program are being followed by a larger group of publications. The 34 new sites will have the benefit of the past seven months of work the Newspack team and pilot newsrooms put into the initial launch. Newsrooms in the second phase are expected to relaunch their sites on the platform by the end of February 2020.</p>\n\n\n\n<p>Publications such as the <a href=\"https://www.hongkongfp.com/\">Hong Kong Free Press</a>, <a href=\"https://mlk50.com\">MLK50: Justice Through Journalism</a>, and <a href=\"https://www.dailyyonder.com/\">The Daily Yonder</a> are a part of the second group. Most are small or medium-sized publications that focus on local news. The full list is <a href=\"https://newspack.blog/2019/11/07/newspack-announces-second-set-of-pilot-newsrooms-first-u-s-site-relaunches-on-new-platform/\">available via the announcement post</a> on the Newspack blog.</p>\n\n\n\n<p>Like the first group, the new newsrooms will work directly with the Newspack team to identify and address technical issues faced in online journalism. They will continue helping to design and test the platform’s features.</p>\n\n\n\n<p>All pilot newsrooms will continue using Newspack for free until March 2020. After that point, the price will jump to $1,000 per month. The price includes priority access to Newspack developers, some level of premium support, quarterly benchmarking reports, and community membership with other Newspack users.</p>\n\n\n\n<p>The Newspack team plans to consider additional applications in January 2020. Nearly 500 applicants have applied for the program thus far.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Nov 2019 18:50:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WPTavern: The Power of Stories: <NAME> and the Bridge Framework\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95240\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://wptavern.com/the-power-of-stories-chris-lema-and-the-bridge-framework\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5474:\"<p>I would tell you that when <NAME>, VP of Products at Liquid Web, is speaking, you should listen. But, there is no need to say that. He has an infectious quality that grabs your attention and doesn’t let go. I found myself hanging onto every word in his session, <a href=\"https://2019.us.wordcamp.org/session/the-content-framework-that-powers-stories-landing-pages-more/\">The Content Framework that Powers Stories, Landing Pages, & More</a>, via the WordCamp U.S. livestream this past weekend.</p>\n\n\n\n<p>Telling stories is a uniquely human trait. Our ability to weave narratives together is what separates us from lower animals. Sure, other important things such as the ability to make fire, understand advanced mathematics, and build rocket-powered ships all set us apart. But, it is the stories we tell that are the most interesting things about us as a species.</p>\n\n\n\n<p>Any good story leaves you waiting to see what will happen next and how the people within those stories react. How they grow. How they change.</p>\n\n\n\n<p>This fundamental human activity was at the heart of Lema’s 15-minute presentation. “When people believe that you’ve been where they are and can see that you’ve gotten to the other side, they will follow,” said Lema of selling products.</p>\n\n\n\n<p>Ultimately, the bridge framework is about guiding others through your journey and helping them cross the bridge you have found. This framework can apply to your brand, your products, or any other content that you are providing to others.</p>\n\n\n\n<p>One thing product makers often fail at is providing a solution before sharing how they have encountered the same problem. “No one feels like they need a bridge until they are facing a river,” said Lema. The struggle must come first.</p>\n\n\n\n<h2>What Comes After the Product</h2>\n\n\n\n<p>In 2007, I built one of the most popular themes ever in WordPress’ short history. It does not matter what theme it was. It is long retired. What mattered was it helped users get to their destination.</p>\n\n\n\n<p>One theme user who stood out was building a Formula 1 racing website. I was a mediocre designer at best, but this user would create some of the most beautiful customizations that I had ever seen. It seemed like he would change the design every week. Each time, I was in awe at his talent. He continued using this same theme of mine for years, even after I archived it and moved onto other theme projects.</p>\n\n\n\n<p>What I should have learned during those years was, without knowing, I had the story right. I knew the technical aspects of why this specific theme was a leap forward. However, I didn’t understand the story I was telling users was drawing people in.</p>\n\n\n\n<p>I had been where they were. I had struggled to get to where I was going. I had braved the journey beyond that point and found a path for others to join me.</p>\n\n\n\n<p>As time moved on, I became a better developer. I had one more insanely popular theme. Again, it was about the story. I could recognize the problems. I had the same frustrations as others. I had a way to fix those problems and get people from Point A to Point B. I invited others along. I told them I would be there every step of the way.</p>\n\n\n\n<p>I never recreated that early success with another theme, at least not on the same scale.</p>\n\n\n\n<p>I stopped focusing on what mattered.</p>\n\n\n\n<p>I marketed future themes based far too much on the technical aspects. Essentially, I was flaunting my development skills. After years of lucking into success by being a storyteller, I tried to follow the trends of others who were marketing their HTML5, CSS3, or whatever other keyword was popular at the time.</p>\n\n\n\n<p>Fortunately, I had loyal users who stuck with me over the years. There was one theme user who would often switch themes whenever I released a new one. Like the racing enthusiast, this person would put his own spin on the design. He used the themes on his photography site. What was interesting about some of the themes was they were not specifically built with photography in mind. That was never my goal when creating them.</p>\n\n\n\n<p><em>What was it that made this user continue using different themes of mine?</em></p>\n\n\n\n<p>It was never about all the bells and whistles. Many of them were unused on the site. It was about what came after activating the theme. It wasn’t about me. It was about the user being able to tell his own story through photos.</p>\n\n\n\n<p>In hindsight, I could see that the projects I achieved the most success with were the projects I was the most passionate about. I had built them to solve specific problems. The technical details did not matter. I had built or found a bridge to get to the place that I wanted to be. My excitement and passion naturally transferred to how I spoke about those projects. It changed how I sold them to users. I told my story.</p>\n\n\n\n<p>The biggest failures I had were when I did not have a good story to tell.</p>\n\n\n\n<h2>Watch <NAME>’s Speech</h2>\n\n\n\n<p>For those that are running any type of business, you owe it to yourselves to listen to Lema explain how to connect with customers.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p><em>Lema’s session starts at the 2:59:46 mark if the videos doesn’t start at the correct point. The embedded video should begin at his introduction.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Nov 2019 17:53:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Matt: State of the Word 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=50414\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://ma.tt/2019/11/state-of-the-word-2019/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2061:\"<p>In case you missed it, here’s the first-ever State of the Word… designed completely in Gutenberg: </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p><a href=\"https://2019.us.wordcamp.org/\">WordCamp US</a> was a fantastic experience, as always. Thank you again to the hundreds of organizers and volunteers who made it happen, to the thousands who attended, and to the city of St. Louis for hosting us. We’ll be back there again next year.</p>\n\n\n\n<p>And special thanks to this next generation of WordPress contributors. So exciting to see <a href=\"https://2019.us.wordcamp.org/kidscamp/\">KidsCamps</a> continue to expand and thrive:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Thank you <a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a> for stopping by KidsCamp today. The kids loved your visit! <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> <a href=\"https://twitter.com/hashtag/KidsCamp?src=hash&ref_src=twsrc%5Etfw\">#KidsCamp</a> <a href=\"https://twitter.com/hashtag/WCUS?src=hash&ref_src=twsrc%5Etfw\">#WCUS</a> <a href=\"https://t.co/cq65sHkjsI\">pic.twitter.com/cq65sHkjsI</a></p>— <NAME> (@sunsanddesign) <a href=\"https://twitter.com/sunsanddesign/status/1191093861172559873?ref_src=twsrc%5Etfw\">November 3, 2019</a></blockquote>\n</div>\n\n\n\n<p>As you can see, my site is now featuring the new <a href=\"https://make.wordpress.org/core/2019/09/06/introducing-twenty-twenty/\">WordPress Twenty Twenty theme</a>. And for more coverage from my State of the Word, check out the recaps from <a href=\"https://wptavern.com/state-of-the-word-2019-recap-all-roads-lead-to-the-block-editor\">WP Tavern</a> and <a href=\"https://poststatus.com/matt-mullenweg-state-of-the-word-2019/\">Post Status</a>. Here’s my full audience Q&A below: </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>You can see my previous <a href=\"https://ma.tt/tag/sotw/\">State of the Word keynotes here</a>. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Nov 2019 06:38:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"WordPress.org blog: WordPress 5.3 RC4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7596\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2019/11/wordpress-5-3-rc4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3672:\"<p>The fourth release candidate for WordPress 5.3 is now available!</p>\n\n\n\n<p>WordPress 5.3 is currently scheduled to be released on <strong><a href=\"https://make.wordpress.org/core/5-3/\">November 12 2019</a></strong>, but we need <em>your</em> help to get there—if you haven’t tried 5.3 yet, now is the time!</p>\n\n\n\n<p>There are two ways to test the WordPress 5.3 release candidate:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.3-RC4.zip\">download the release candidate here</a> (zip).</li></ul>\n\n\n\n<p>For details about what to expect in WordPress 5.3, please see the <a href=\"https://wordpress.org/news/2019/10/wordpress-5-3-release-candidate/\">first</a>, <a href=\"https://wordpress.org/news/2019/10/wordpress-5-3-rc2/\">second</a> and <a href=\"https://wordpress.org/news/2019/10/wordpress-5-3-rc3/\">third</a> release candidate posts.</p>\n\n\n\n<p>Release Candidate 4 contains three bug fixes for the new default theme, Twenty Twenty (see <a href=\"https://core.trac.wordpress.org/ticket/48450\">#48450</a>), and addresses the following:</p>\n\n\n\n<ul><li>The Twemoji library has been updated from 12.1.2 to 12.1.3 (see <a href=\"https://core.trac.wordpress.org/ticket/48293\">#48293</a>).</li><li>Two regressions in the Media component (see <a href=\"https://core.trac.wordpress.org/ticket/48451\">#48451</a> and <a href=\"https://core.trac.wordpress.org/ticket/48453\">#48453</a>).</li><li>One bug in the Upload component (see <a href=\"https://core.trac.wordpress.org/ticket/48472\">#48472</a>)</li><li>Five bugs in the Block Editor component (see <a href=\"https://core.trac.wordpress.org/ticket/48502\">#48502</a>)</li></ul>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.3 and update the <em>Tested up to</em> version in the readme to 5.3. If you find compatibility problems, please be sure to post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a> so we can figure those out before the final release.</p>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/core/2019/10/17/wordpress-5-3-field-guide/\">WordPress 5.3 Field Guide</a> has also been published, which details the major changes.</p>\n\n\n\n<p>A new dev note has been published since the Field Guide was released, <a href=\"https://make.wordpress.org/core/2019/11/05/use-of-the-wp_update_attachment_metadata-filter-as-upload-is-complete-hook/\">Use of the “wp_update_attachment_metadata” filter as “upload is complete” hook</a>. Plugin and theme authors are asked to please read this note and make any necessary adjustments to continue working well in WordPress 5.3 or share any difficulties encountered on <a href=\"https://core.trac.wordpress.org/ticket/48451\">#48451</a>.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Nov 2019 23:56:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"BuddyPress: Test BuddyPress 5.1.0-beta1 thanks to our new BP Beta Tester plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=308797\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://buddypress.org/2019/11/buddypress-5-1-0-beta1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2816:\"<p>Hi BuddyPress contributors!</p>\n\n\n\n<p>We will soon publish a maintenance release (<strong>5.1.0</strong>) to fix some issues that arose since BuddyPress 5.0.0 “Le Gusto”. A detailed changelog will be part of our official release notes, but, until then, you can check out this <a href=\"https://buddypress.trac.wordpress.org/query?status=closed&group=resolution&milestone=5.1.0\">report on Trac</a> for the full list of fixes.</p>\n\n\n\n<p>Today we’re publishing a very specific<a href=\"https://downloads.wordpress.org/plugin/buddypress.5.1.0-beta1.zip\"> beta release</a> for version 5.1.0 as it has two goals:</p>\n\n\n\n<ul><li>Let you make sure the fixes have no side effects on your community site’s configuration.</li><li>Test in real conditions the plugin we’ve been working on and which should greatly simplify the way you betatest BuddyPress.</li></ul>\n\n\n\n<h2>Meet BP Beta Tester</h2>\n\n\n\n<img src=\"https://buddypress.org/wp-content/uploads/1/2019/11/bp-beta-tester-github-featured-image-1024x512.jpeg\" alt=\"\" class=\"wp-image-308803\" />\n\n\n\n<p>Once installed it will help you to upgrade your website to the latest Beta or Release candidate. You will also be able to downgrade to the latest stable release once you finished your Beta tests.</p>\n\n\n\n<img src=\"https://buddypress.org/wp-content/uploads/1/2019/11/bp-beta-tester-01.png\" alt=\"\" class=\"wp-image-308800\" />\n\n\n\n<p>Once activated, go to the home page of your Dashboard (Network Dashboard if your are using WordPress Multisite) to find the BP Beta Tester sub menu of the Dashboard menu. From this page, you’ll be able to install the 5.1.0-beta1 release clicking on the tab “Upgrade to 5.1.0-beta1”.</p>\n\n\n\n<img src=\"https://buddypress.org/wp-content/uploads/1/2019/11/bp-beta-tester-02.png\" alt=\"\" class=\"wp-image-308801\" />You can always downgrade to the latest stable version of BuddyPress using the corresponding tab of the page’s header.\n\n\n\n<p>The development version of this plugin is hosted on <a href=\"https://github.com/buddypress/bp-beta-tester\">GitHub</a>: you can contribute to it <a href=\"https://github.com/buddypress/bp-beta-tester/pulls\">pulling requests</a> or <a href=\"https://github.com/buddypress/bp-beta-tester/issues\">reporting issues</a>. We plan to submit this plugin on the WordPress.org Plugins directory so that it’s easier to install.</p>\n\n\n\n<p><a href=\"https://github.com/buddypress/bp-beta-tester/releases/download/1.0.0-beta1/bp-beta-tester.zip\"><strong>Download BP Beta Tester</strong></a><strong> or </strong><a href=\"https://downloads.wordpress.org/plugin/buddypress.5.1.0-beta1.zip\"><strong>Download BuddyPress 5.1.0-beta1</strong></a><strong>.</strong></p>\n\n\n\n<p>Happy testing <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f609.png\" alt=\"😉\" class=\"wp-smiley\" /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Nov 2019 14:48:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"imath\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: State of the Word 2019 Recap: All Roads Lead to the Block Editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95216\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wptavern.com/state-of-the-word-2019-recap-all-roads-lead-to-the-block-editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11947:\"<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>If there was one common theme in Matt Mullenweg’s State of the Word address this year at WordCamp U.S., it was that all roads lead to the block editor. His speech was primarily about blocks, blocks, more blocks, and a dash of community. This doesn’t come as a surprise because we are closing in on the one year mark of the official merge of the Gutenberg plugin into the core WordPress code. It has been a year about blocks, and nothing is changing that course.</p>\n\n\n\n<p><a href=\"https://2019.us.wordcamp.org\">WordCamp U.S. 2019</a> was held in St. Louis, Missouri, over this past weekend. The event was planned and put together by 47 organizers and 122 volunteers. There were 90 speakers who held sessions across a range of topics in multiple rooms.</p>\n\n\n\n<p>For people who were not able to attend or watch via the livestream, the sessions are <a href=\"https://www.youtube.com/channel/UCpJf6LGZ0a4n9Lj4aVt9spg\">available via YouTube</a>. Eventually, the videos will also make their way over to <a href=\"https://wordpress.tv/event/wordcamp-us-2019/\">WordPress.tv</a></p>\n\n\n\n<h2>Open: The Community Code</h2>\n\n\n\n<p>Mullenweg opened The State of the Word by showing a documentary named <a href=\"https://open.film/\">Open: The Community Code</a>, which is a film that primarily focuses on the WordPress community.</p>\n\n\n\n<p>The film explores why people are so passionate about a project that is essentially just code. What drives them to organize and attend events like WordCamps? Why do they volunteer their free time contributing to an industry that sees over $10 billion in profits? What makes the WordPress community different from other projects? The film team interviewed 37 people to get to the bottom of these questions.</p>\n\n\n\n<p>The team behind the project is also providing the film and all of the raw footage as open source for others to use.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"embed-vimeo\"></div>\n</div>\n\n\n\n<h2>The Events of the Past Year</h2>\n\n\n\n<p>Mullenweg primarily focused on WordPress updates and changes within the community when recapping events of the past year. Since the <a href=\"https://wptavern.com/wordpress-5-0-bebo-released-lays-a-foundation-for-the-platforms-future\">release of WordPress 5.0</a> on December 6, 2018, WordPress has had two major releases. A third major release, WordPress 5.3, is scheduled to launch on November 12. </p>\n\n\n\n<p>During 2019, most heavy work went into the Gutenberg plugin, which was ported back into core WordPress. The number of contributors to Gutenberg more than doubled since WordPress 5.0 launch, an increase from 200 to 480 individuals.</p>\n\n\n\n<p>The <a href=\"https://wptavern.com/wordpress-5-1-improves-editor-performance-encourages-users-to-update-outdated-php-versions\">release of WordPress 5.1</a> introduced the first iteration of the site health page, new cron features, and a site meta table for multisite installations.</p>\n\n\n\n<p>“WordPress is all about empowering users and we wanted to put the information and the tools in the hands of users as well to keep the site running in tip-top shape as we power an ever-increasing percentage of the web,” said Mullenweg of the site health feature. He further explained that it is WordPress’ responsibility to make sure users are up to date and running the latest versions of software.</p>\n\n\n\n<p>Building on top of the site health introduction, <a href=\"https://wptavern.com/wordpress-5-2-jaco-released-includes-fatal-php-error-protection-and-a-recovery-mode\">WordPress 5.2 launched</a> with a PHP fatal error protection and recovery mode. The release also bumped the minimum PHP version to 5.6 and ported all widgets to blocks.</p>\n\n\n\n<p>Mullenweg then outlined the work done toward getting WordPress 5.3 ready for its November 12 launch date. The major changes include:</p>\n\n\n\n<ul><li>150+ block editor improvements</li><li>Twenty Twenty default theme</li><li>Date/Time improvements and fixes</li><li>PHP 7.4 compatibility</li></ul>\n\n\n\n<p>As of now, 83% of all users on WordPress 5.2 or newer are running at least PHP 7. This means the WordPress project has done what it can from the user end. It is now time to start working with hosts to get sites updated to the latest version of PHP.</p>\n\n\n\n<p>The block editor is now available on both Android and iOS devices. Mullenweg announced they were almost done with offline post support and that a dark mode is coming in weeks.</p>\n\n\n\n<p>The community had a good year. In 2019, there were 141 WordCamp events, 34 of which were in new cities. There were 17 Kids Camps for younger contributors to get involved. There were also over 5,000 meetups and 16 <a href=\"https://doaction.org/\">do_action() charity hackathons</a>.</p>\n\n\n\n<p>The <a href=\"https://wordpress.org/news\">WordPress news page</a> has been highlighting one story from <a href=\"https://heropress.com/\">HeroPress</a> every month in the past year. HeroPress is a project that allows people to tell their stories of how they got involved with WordPress.</p>\n\n\n\n<p>Mullenweg held a moment of silence for long-time community member <NAME> (viper007bond) who passed away earlier this year after a <a href=\"https://alex.blog/2019/02/18/leukemia-has-won/\">long-fought battle</a> with leukemia. Automattic is planning to finance a scholarship in his honor. The scholarship will go to a plugin developer to attend WordCamp U.S. who has not had an opportunity to attend.</p>\n\n\n\n<h2>2019: The Year of the Block Editor</h2>\n\n\n\n<div class=\"wp-block-image\"><img />Slide with screenshots of Gutenberg criticism from users.</div>\n\n\n\n<p>Mullenweg started focusing on the block editor after recapping the events of the past year. WordPress 5.0 was released one day before WordCamp U.S. 2018 in Nashville.</p>\n\n\n\n<p>“We had people coordinating work from airplanes,” said Mullenweg. “There were impromptu groups of core developers, testing and packaging the release in the hallways. The polyglots, marketers, and support teams were just scrambling to get ready.”</p>\n\n\n\n<p>He explained the reason for the biggest change to WordPress in its then 16-year history. “We came together and decided to make this big change cause we wanted to first disrupt ourselves. We wanted to empower more WordPress users to realize our mission of democratizing publishing, and wanted to make the web a more open and welcoming place.”</p>\n\n\n\n<p>Not everyone was happy with the direction of WordPress and its new block editor. It was a rough year from a leadership perspective to have a vision and see it through, despite constant negative feedback. Mullenweg highlighted some of the comments that were critical of the block editor and explained that they had learned a lot from the process.</p>\n\n\n\n<p>“I think that we also have a great opportunity when we make big changes in the future,” said Mullenweg. “Sort of build that trust in the conversations around testing, using GitHub for development, things like accessibility. So, I understand why we had a lot of this feedback. But, we did get through it together.”</p>\n\n\n\n<p>Mullenweg highlighted that, according to Jetpack plugin stats, over 50 million posts have been written in the block editor. That amounts to around 270 thousand posts per day. It is important to note that this stat is on the lower end because it only accounts for users of the Jetpack plugin. Therefore, the number is likely much higher.</p>\n\n\n\n<p>He covered the performance improvements to the editor, block motion when moving blocks, typewriter mode, block previews, and the social block. “These are like the Nascar stickers of the web,” he said of social icons. “They’re everywhere.”</p>\n\n\n\n<h2>The Next Steps for the Block Editor</h2>\n\n\n\n<p>In his address, Mullenweg covered the four phases of the Gutenberg project.</p>\n\n\n\n<ol><li>Easier Editing</li><li>Customization</li><li>Collaboration</li><li>Multilingual</li></ol>\n\n\n\n<p>The first phase was the initial launch and iteration of the block editor for content. The second stage, which we are in now, is about full site customization. This includes widgets and non-content areas, and will eventually cover areas like the site header and footer. It will be interesting to see how page-building plugins work with these upcoming changes. Some could use WordPress as the foundational, framework-type layer. Others may go their own way. Themes will also have to keep pace with the changes.</p>\n\n\n\n<p>Phase three, collaboration, will introduce a feature that allows multiple authors to collaborate and co-edit posts on a site in real time. With any luck, WordPress will also build in a proper system for attributing posts to multiple authors.</p>\n\n\n\n<p>The fourth and final phase cannot get here fast enough. As WordPress usage continues to grow around the world, it is past time that it offered a multilingual experience. “We’re going to tackle the Babel fish problem,” said Mullenweg.</p>\n\n\n\n<p>Also on the roadmap is the concept of block patterns. Patterns would be a groups of blocks that follows common patterns seen across the web. The existing Media & Text block is an example of a common pattern, but new patterns would go far beyond something so basic. By providing patterns to users, they could simply insert a pattern and fill in their details, which should make it easy to rapidly create rich content.</p>\n\n\n\n<h2>Watch the State of the Word</h2>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"embed-wrap\"></div>\n</div>\n\n\n\n<p>Mullenweg’s entire presentation was done from the block editor. He used the <a href=\"https://wordpress.org/plugins/slide/\">Slides plugin</a> created by <NAME>.</p>\n\n\n\n<h2>Community Questions and Answers</h2>\n\n\n\n<p>The Q&A sessions after Mullenweg’s address was more focused on community and policy.</p>\n\n\n\n<p><NAME> asked whether we would see official policies on accessibility, ethics, conflicts of interest, and diversity. She wanted to know how the community could make this happen over the next year.</p>\n\n\n\n<p>While a privacy policy is in the footer of WordPress.org, Mullenweg expressed his desire to not make changes than lean too heavily on policy. “That is in spite of there being a policy or not, we’ve tried to enact bigger changes in WordPress in a policy-first way in the past,” he said. “To be honest, it felt nice but didn’t always make things actually change.” He said we usually do better by working with people to make changes rather than starting with the policy.</p>\n\n\n\n<p><NAME>, a young WordCamp speaker behind <a href=\"http://lemonadecode.com\">Lemonade Code</a>, asked Mullenweg how we could inspire kids who are currently in school to get involved with WordPress. The project has tough competition coming from more exciting technology sectors such as robotics and other industries that are swaying the next generation.</p>\n\n\n\n<p>“This is going to be on YouTube later, and boys and girls, maybe of your generation, will see you here asking a question and being a speaker at WordCamp in front of a thousand adults,” said Mullenweg. “And, you know, it’s kind of beautiful.”</p>\n\n\n\n<p>Mullenweg said that we need more stories from younger people on HeroPress and that Kids Camps will help. He said that WordPress should be easier and more accessible, which are things that the current generation is more aware of and care about. He also mentioned Automattic’s recent acquisition of Tumblr, which has a larger user base of young users, as a way to introduce them to WordPress.</p>\n\n\n\n<p>View the Q&A portion of The State of the Word in the following video.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"embed-wrap\"></div>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Nov 2019 19:18:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"Post Status: Matt Mullenweg’s State of the Word, 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=70832\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://poststatus.com/matt-mullenweg-state-of-the-word-2019/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10363:\"<p><a href=\"https://2019.us.wordcamp.org/\">WordCamp US 2019</a> is taking place for the first time in St. Louis, Missouri, where more than 1,300 WordPress community members and leaders are gathered.</p>\n\n\n\n<p>It’s been the year of Gutenberg in 2019, and in his State of the Word, <NAME> highlighted what has been accomplished and what is coming next.</p>\n\n\n\n<p>Matt kicked off the event with the premiere of <a href=\"http://open.film/\"><em>Open: The Community Code</em></a>, a film about the WordPress open source community.</p>\n\n\n\n<p><em>Open</em> was really well done and made a great introduction to Matt’s review of the year’s achievements. In the film, Matt says that $10 billion flows through the WordPress economy every year, but that doesn’t define the community. WordPress is more than code, more than business. Matt says, “It’s more than a tool.” It’s more like a canvas that “anyone can paint on.” </p>\n\n\n\n<p><em>Open</em> is a film about WordPress and what WordPress really is — not just software, but people, a community, and a mission. <em>Open</em> is a documentary short produced by <NAME> and directed by <NAME>. Executive producers <NAME> and <NAME> of <a href=\"https://www.wordfence.com/\">WordFence</a> contributed to the production of <em>Open</em> as well, and they are submitting it to independent and documentary film festivals.</p>\n\n\n\n<h3>The WordPress Community</h3>\n\n\n\n<p>The community continues to evolve, thrive, and adapt to the changing environment.</p>\n\n\n\n<h4>WordCamp US 2020</h4>\n\n\n\n<p>The next WordCamp US will be hosted during the workweek and won’t overlap with Halloween. This is something I’m personally thankful for, as it opens up the weekend for family. Many people, including me, got to the conference late this year due to spending the holiday trick-or-treating with family.</p>\n\n\n\n<h4>Volunteers Organizers, Speakers, and Sponsors</h4>\n\n\n\n<p>WCUS was made possible by 47 organizers, 122 volunteers, and 90 speakers. Bluehost, WooCommerce, Jetpack, and Google are this year’s lead sponsors. Thank you to everyone!</p>\n\n\n\n<h4>Meetups, People, and Community Endeavors</h4>\n\n\n\n<p>There have been more than 5,000 WordCamp events and several do_action WordPress community events as well.</p>\n\n\n\n<p>One <a href=\"https://heropress.com/\">HeroPress</a> story per month is now being featured on the WordPress blog. </p>\n\n\n\n<p>Matt honored <a href=\"https://poststatus.com/footnotes/were-sad-to-report-that-alex/\"><NAME></a>, a prolific early and long-time contributor to WordPress who passed away in 2015.</p>\n\n\n\n<h4>WordCamps</h4>\n\n\n\n<p>There will be a total of 141 WordCamps in 2019, including 34 in brand new cities. There are also 17 KidsCamps happening in 2019.</p>\n\n\n\n<p>This year there are at least four WordCamp US speakers under age 15, which makes them younger than WordPress itself.</p>\n\n\n\n<p>In 2020, the first WordCamp Asia is happening in February, in Bangkok, Thailand. WordCamp Europe will convene in Porto, Portugal.</p>\n\n\n\n<h4>One year ago</h4>\n\n\n\n<p>WordPress 5.0 was released just before WCUS began in Nashville last year, a contentious decision on timing in itself. 2018 was what Matt calls a “controversial year,” where we wanted to “disrupt ourselves.” Gutenberg was included in core despite a lot of criticism in and outside of the community about this decision. Matt says we learned a lot from the process, and it was “really good practice for future changes we want to make.”</p>\n\n\n\n<p>He also added, “I understand why we had a lot of this feedback,” and he expressed excitement for WordPress’s future.</p>\n\n\n\n<h4>Ways to Get Involved with WordPress</h4>\n\n\n\n<p>Matt highlighted several ways to get involved in the WordPress community today:</p>\n\n\n\n<ul><li>Participate in WordCamp contributor days, including one at WCUS.</li><li>Install the <a href=\"https://wordpress.org/plugins/gutenberg/\">Gutenberg</a> plugin, which is now a testing ground for features. About 275,000 people are taking part in this effort.</li><li>Install <a href=\"https://wordpress.org/plugins/design-experiments/\">Design Experiments</a>, a new feature plugin to test user interface experiments.</li><li>Create blocks! Matt made a call for Gutenberg block creation to “expand the window for how people are creating WordPress sites today.” If it’s JavaScript only it will be able to go easily into the new block directory.</li><li>Help teach others in the community.</li></ul>\n\n\n\n<p>When Matt says <em>why</em> we do all this, he says it’s to “help the open web.” He says the open web is like a pendulum that can swing to being more closed or more open over time.</p>\n\n\n\n<h4>Five for the Future</h4>\n\n\n\n<p>There’s now a dedicated landing page for <a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a> to highlight people and organizations devoting 5% of their resources to WordPress development through this program.</p>\n\n\n\n<h3>Core WordPress Development</h3>\n\n\n\n<p>There have been two core releases in 2019. WordPress 5.1, “<a href=\"https://wordpress.org/support/wordpress-version/version-5-1/\">Betty</a>,” brought the “Site Health” screen, along with other feature adjustments and bug fixes. It also included the Cron API and Site Meta for Multisite.</p>\n\n\n\n<p>WordPress 5.2, “<a href=\"https://wordpress.org/support/wordpress-version/version-5-2/\">Jaco</a>,” included live block previews, better block management, and the end of the WSOD (White Screen of Death).</p>\n\n\n\n<p>WordPress 5.3 will be released on November 12th. It includes more than 150 block editor improvements. Also in 5.3 is the beautiful Twenty Twenty theme. And thanks to a new security feature, every six months or so, WordPress will send administrator email verifications to help ensure site admins are staying up to date.</p>\n\n\n\n<p>The minimum PHP version requirement for WordPress is now 5.6.20, which ended support for 5.2 and 5.3. Compatibility is now up to PHP 7.4. More than 80% of all WordPress sites are now on PHP 7 or higher. Matt highlighted the still-urgent need to improve update mechanisms and strategies with webhosts and site owners.</p>\n\n\n\n<p>We are currently at 1,122 total unique contributors to WordPress this year. WordPress 5.3 will have more than a hundred contributors than any release before.</p>\n\n\n\n<h3>Gutenberg</h3>\n\n\n\n<p>There have been more than 20 major Gutenberg releases, and the number of Gutenberg contributors is up to 480 from 200 a year ago. Matt says the number of sites using Gutenberg is up more than 2.7 times, and we just surpassed 50 million posts created in Gutenberg. Gutenberg-based posts are increasing at a rate of about 270,000 posts per day as tracked by Jetpack, so that’s a conservative estimate.</p>\n\n\n\n<p>In last year’s State of the Word question and answer session, someone asked what percentage of Gutenberg was complete, and Matt answered “10%.” A year later he says he thinks it’s about 20% complete. He also highlighted how it’s an ongoing process that he expects to take a decade to bring to fruition everything he envisions.</p>\n\n\n\n<h4>Gutenberg Feature Improvements</h4>\n\n\n\n<p>There are a lot of improvements happening:</p>\n\n\n\n<ul><li>Gutenberg is now fully mobile compatible, and many of the core blocks are fully integrated. Offline support and dark mode are also nearly complete.</li><li>The average time to load Gutenberg has been cut in half, and time to type has been reduced from 170ms to 53ms.</li><li>There is now a smoother scrolling motion in Gutenberg.</li><li>Block previews allow you to see what a block looks like before you insert it, and it also allows you to see more information about what the block does.</li></ul>\n\n\n\n<p><strong>Other Gutenberg features in the works:</strong></p>\n\n\n\n<ul><li>Social icons that can be placed anywhere.</li><li>The navigation menu is going to be an inline Gutenberg block — a likely precursor to “customize all the things.”</li><li>Gradients will be more a part of the Gutenberg experience.</li><li>Core Gutenberg is getting a button block.</li></ul>\n\n\n\n<p>Matt recognizes that we’ll have thousands of blocks created for Gutenberg, and there will be a block directory which will load inside the Gutenberg editor. Patterns will be collections of blocks that people can install in bulk.</p>\n\n\n\n<p>Matt says he thinks people will be able to create just about any type of website layout in just a few clicks when Gutenberg is mature.</p>\n\n\n\n<p>Several use cases of Gutenberg were highlighted in Matt’s talk, from newsletter editors to WordCamps, newsrooms, Microsoft Word converters, and more.</p>\n\n\n\n<h4>The Four Phases of Gutenberg</h4>\n\n\n\n<p>Matt continues to highlight the four phases of Gutenberg development and where we are now.</p>\n\n\n\n<ul><li><strong>Easier editing</strong>: simply making the WordPress editing experience better has been the focus of the last year.</li><li><strong>Customization</strong>: we are “in the thick” of the customization phase now, some of which is complete, and some (like full inline site editing) is still to come.</li><li><strong>Collaboration</strong>: real-time editing collaboration is coming in the third phase, something I’m very excited about.</li><li><strong>Multilingual</strong>: core WordPress and core Gutenberg will have complete multilingual support.</li></ul>\n\n\n\n<h3>In conclusion</h3>\n\n\n\n<p>Matt’s slides for the State of the Word were actually built with Gutenberg.</p>\n\n\n\n<p>The code for the presentation <a href=\"https://github.com/wordpress/slides\">is on Github</a> for anyone to use.</p>\n\n\n\n<p>It’s been an interesting and challenging year for WordPress. With that observation, Matt opened up the question period.</p>\n\n\n\n<p>Here’s the complete video:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>And the Q&A session:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p><em>Photo of Matt by <a href=\"https://twitter.com/rzen\"><NAME></a> for Post Status. Thank you to <a href=\"https://twitter.com/dimensionmedia\"><NAME></a> for live-tweeting the event while I wrote this.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 02 Nov 2019 22:10:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"WordPress.org blog: 2019 Annual Survey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7460\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/news/2019/11/2019-annual-survey/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1735:\"<div class=\"wp-block-image\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2019/11/image-12-1.png?fit=632%2C281&ssl=1\" alt=\"\" class=\"wp-image-7472\" width=\"329\" height=\"146\" /></div>\n\n\n\n<p>It’s time for our annual user and developer survey! If you’re a WordPress user or professional, we want your feedback.</p>\n\n\n\n<p>It only takes a few minutes to <a href=\"https://wordpressdotorg.survey.fm/wordpress-2019-survey-english\">fill out the survey</a>, which will provide an overview of how people use WordPress. We’re excited to announce that this year, for the first time, the survey is also available in 5 additional languages: <a href=\"https://wordpressdotorg.survey.fm/wordpress-2019-survey-french\">French</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2019-survey-german\">German</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2019-survey-japanese\">Japanese</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2019-survey-russian\">Russian</a>, and <a href=\"https://wordpressdotorg.survey.fm/wordpress-2019-survey-spanish\">Spanish</a>. Many thanks to the community volunteers who helped with the translation effort!</p>\n\n\n\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link has-background has-vivid-cyan-blue-background-color\" href=\"https://wordpressdotorg.survey.fm/wordpress-2019-survey-english\">Take the WordPress survey!</a></div>\n\n\n\n<p>The survey will be open for 4 weeks, and results will be published on this blog. All data will be anonymized: no email addresses or IP addresses will be associated with published results. To learn more about WordPress.org’s privacy practices, check out the <a href=\"https://wordpress.org/about/privacy/\">privacy policy</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 02 Nov 2019 21:15:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: BoldGrid Joins Forces with W3 Edge, Acquires W3 Total Cache Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95188\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://wptavern.com/boldgrid-joins-forces-with-w3-edge-acquires-w3-total-cache-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5167:\"<p><a href=\"https://www.boldgrid.com\">BoldGrid</a>, a WordPress product and services company, announced today that it has joined forces with <a href=\"https://www.w3-edge.com/\">W3 Edge</a>, the parent company behind the popular <a href=\"https://wordpress.org/plugins/w3-total-cache/\">W3 Total Cache</a> (W3TC) plugin. BoldGrid acquired the W3TC plugin and retained its creator, <NAME>, along with its development and support staff. The two teams will operate as sister companies but jointly work on the plugin’s future roadmap.</p>\n\n\n\n<p>“There are some things a larger team can accomplish for Total Cache that we are targeting right now,” said <NAME>, development manager at BoldGrid. “After a few more releases of core Total Cache features, the TC team is slated to help accelerate our CRIO Theme Framework on the BoldGrid side.”</p>\n\n\n\n<p>BoldGrid has a range of plugins, themes, and services for WordPress sites. The company offers plugins like its post and page builder, themes such as its “super theme” CRIO, and services like testing and performance coaching.</p>\n\n\n\n<p>W3 Edge’s primary product is its W3TC plugin, which serves as the caching solution for over one million WordPress installs. It is one of the most-used caching plugins available in the official WordPress plugin directory. </p>\n\n\n\n<p>Many competing caching plugins have been gaining considerable exposure in the past few years. Some of those are free. Others, such as WP Rocket, have captured large segments of the premium market. Managed WordPress hosts also generally offer built-in caching solutions as part of their strategy to build their customer numbers. The question is whether this move will provide growth for W3TC and any related products or services.</p>\n\n\n\n<h2>The Future of the W3TC Plugin</h2>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/10/w3tc-stats.png?ssl=1\" target=\"_blank\" rel=\"noreferrer noopener\"><img /></a>Screenshot of a new Caching Statistics page for W3 Total Cache</div>\n\n\n\n<p>The BoldGrid team has plans to continue developing the W3TC plugin. “Since joining with the awesome team at W3, we have been working to add in some slick new features like Caching Statistics and Lazy Loading,” said <NAME>, product manager at BoldGrid.</p>\n\n\n\n<p>“We are also looking to partner with theme and plugin developers to ensure the widest range of compatibility for the product, and the WordPress Community,” said Jackson. It is unclear what such partnerships would entail and the type of compatibility needed from third-party developers. The BoldGrid team did not provide further details.</p>\n\n\n\n<p>For some users, the W3TC interface and options can be overwhelming. “User Experience is at the top of the list of things we are working on,” said <NAME>, BoldGrid’s marketing manager. “It can be challenging for some users to fully understand and utilize all the powerful features. We will soon be adding an on-boarding and configuration guide to the plugin that will hopefully make the plugin accessible to more users.”</p>\n\n\n\n<h2>Building Trust After a Rocky Past</h2>\n\n\n\n<p>Despite setbacks in 2016, the W3TC plugin has maintained over one million active installs over the past three years. In March of that year, there was <a href=\"https://wptavern.com/frederick-townes-confirms-w3-total-cache-is-not-abandoned\">concern that the plugin was abandoned</a> after no activity for seven months. The plugin was not working for many users on the latest version of WordPress.</p>\n\n\n\n<p>Much of the issue seemed to stem from not yet knowing how to scale such a popular product with a small team.</p>\n\n\n\n<p>Later in September of 2016, a <a href=\"https://wptavern.com/high-risk-xss-vulnerability-discovered-in-w3-total-cache-plugin\">high-risk XSS vulnerability</a> was discovered with the plugin. The plugin developer <a href=\"https://wptavern.com/w3-total-cache-0-9-5-packages-xss-vulnerability-patch-with-major-update\">patched the plugin</a> quickly. However, the updated versions introduced new bugs and a poor experience for many users.</p>\n\n\n\n<p>While things seem to have been running more smoothly in recent years, there is still some level of distrust within the inner WordPress community. When asked how they are prepared to address past issues and assure they are looking out for the best interests of users in the future, the BoldGrid team said that security is a top priority. They also expressed their openness to community feedback for improvement.</p>\n\n\n\n<p>“As with all big plugins, there are challenges with functionality, features, and security,” said Jackson. “With a bigger team and additional Quality Assurance resources we feel that Total Cache will continue to improve in all the major areas. We have also introduced a public pull request process to facilitate additional feedback and bug fixes. Though you can’t ever guarantee security, our team is very committed and respects our responsibilities to our million-plus users.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Nov 2019 14:01:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Akismet: Version 4.1.3 of the Akismet WordPress Plugin is Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=2058\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://blog.akismet.com/2019/10/31/akismet-plugin-4-1-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:640:\"<p>Version 4.1.3 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available. It contains the following changes:</p>\n\n\n\n<ul>\n<li>We’ve improved the activation and setup process.</li>\n<li>We’ve fixed a bug that could have allowed an attacker to make you recheck your Pending comments for spam.</li>\n</ul>\n\n\n\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 31 Oct 2019 15:59:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Matt: New Automattic CFO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=50302\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://ma.tt/2019/10/new-automattic-cfo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:975:\"<p>As <a href=\"https://venturebeat.com/2019/10/16/automattic-nabs-vivint-cfo-to-chase-steep-revenue-growth/\">Venturebeat has picked up</a>, <NAME> will be leaving <a href=\"https://www.vivint.com/\">Vivint</a> and joining <a href=\"https://automattic.com/\">the merry band</a>. <span>Automattic is creating the operating system for the web, from <a href=\"https://wordpress.com/\">websites</a> to <a href=\"https://woocommerce.com/\">ecommerce</a> to <a href=\"https://tumblr.com/\">social networks</a>. As we zoom past 1,100 employees in over 70 countries, we wanted a financial leader with experience taking businesses from hundreds of millions in revenue to billions (Vivint) and even tens of billions (Alcoa and Dell), <a href=\"https://www.linkedin.com/in/mark-davies-14937a3/\">as Mark has</a>. I’m excited about working alongside such an experienced leader day-to-day to build what I hope will become one of the defining technology companies of the open web era.</span></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Oct 2019 15:28:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"HeroPress: 14 Years’ Detour\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2972\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://heropress.com/essays/14-years-detour/#utm_source=rss&utm_medium=rss&utm_campaign=14-years-detour\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:35176:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2019/10/100219-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I learned not only to keep face and move forward, but also to dare.\" /><p><a href=\"https://heropress.com/feed/#ru\">Это эссе также доступно на русском языке</a></p>\n<blockquote><p>Knowing what you want isn’t enough.</p></blockquote>\n<p>At the age of fifteen, I was told to hurry up with my professional education, if I don’t get a free place at university no one will pay for me. Last one was obvious and not because of money. I didn’t know how high or low my chances are even I had very good marks. I could have been just the biggest fish in the pond, but I wanted to leave people who treat me like expense item as soon as possible anyway. I made up my mind and it’s separated me from my classmates. I got secondary school certificate and left school instantly without goodbyes.</p>\n<p>My knowledge of opportunities was very narrow. I thought to be an ecologist or guide translator from German, based on what I was taught at school, or an advertiser, it was ads boom in Russia, ads were fascinating, and I collected flyers. At the same time, I was already good a computer user and did a lot of typing for one of the school’s principals, sometimes instead of classes, volunteered once and they couldn’t say “no”.</p>\n<p>No one bothered to give me advice, but I was sure my future was unimaginable without computers and came to a general decision to be a programmer. The range of technical schools was not wide, and names of specializations looked very abstruse. I messed up and spend four years studying transistor markings, soldering and drawing PCB layouts. Programming course turns out to be a bit of a joke, it was Pascal, we didn’t even try to do something useful with it. English course was another flaw in this education, the teacher was busy showing off and teasing girls. I’m not sure if he even knew the subject. He was fired after our collective petition. We got good marks just to forget about it. I left technical school with honors degree and improved typing skills.</p>\n<p>It was wild unfriendly market I faced. I didn’t know how to recognize a normal job offer from sinister one, so I bumped into several, like banging in people’s doors and pitch them in buying cheap stuff for very high price. It was harassing and I have no idea how long I would’ve looked for work without help.</p>\n<h3>The wrong approach can cause failure</h3>\n<p>I was lucky to have a father in an IT company. He proposed me like a substitute to typists when I was still a student and when I finished, helped me to get a job on updating a law system on client’s computers. Maybe I could get it by coming from the street, but I had to know where the entrance is. Half a year later I got a full-time job in the same service department and started to play volleyball with colleagues. It was great to meet people from other departments and on the field was no big difference between director and analyst, it’s fair play. I liked my place and my clients, but I was “friendly” told that without a university degree I will have no further promotions.</p>\n<p>At this time, I tried to study PHP by a book. It was very exciting at first, but a lot of functions without explanation how to build something useful with them didn’t make much sense and when I tried, I failed and backed off. It was hard to admit a fail even to myself and it was nagging me for a long time.</p>\n<p>I had to choose something I can handle; I’m interested in and can afford. It turned out to be advertising. I spent most of my and my husband’s holidays on sessions in the next 6 years. It was tricky for him to make me to leave a computer, once I was glued to it, so he bought me my first laptop. English was still hard for me, I got my high marks just memorizing all the words in a textbook and how they must sound. Again, I wanted something I cannot handle.</p>\n<blockquote><p>I started to hate my workplace long before I finished education with another honor degree no one was interested in.</p></blockquote>\n<p>I got a promotion quite soon despite apprehensions but then my chief was dismissed and with new one the things became very tense; I escaped to have a baby and spent a whole three years on child’s care holidays full of doubts. I tried to get off by studying, drawing and baking but the pram was pulling me back. I didn’t use to stay put, rely on my husband’s money and be separate from other people. I didn’t want to come back, but it looked like I have no better choice, I was convinced (overall, rightly) that not too many companies want in office position a woman with small baby and lots of sick leaves.</p>\n<p>After I returned at work it became clear that the situation in my department was unhealthier than ever, I lost my place and next boss treated all back-office girls like pieces of furniture. In a few months I had enough.</p>\n<h3>The flip side of the coin can become a black swan</h3>\n<p>I wanted to be a marketer. Knowing how tricky it is to sell intangibles, I wanted solid product to work with. Now I see that it isn’t a point at all.</p>\n<p>It turned out to be difficult to find a job outside IT, some HRs was kind enough to answer that with my experience I’ll better be in IT.</p>\n<p>Still I was very hopeful, studied hard and considered myself well, but once again I set a low bar to my employers. Companies I worked in wanted to get all publicity and sales rise through a cost of my salaries. I was careless once, the next time I asked specifically about budget before signing up and was assured, but still they meant my wages. It was a tough period of disappointments.</p>\n<p>When I was offered a part-time administrative job with “ok” to sick leaves, I took it gladly like a reprieve. It was far from home, and I was spending 2-3 hours a day on buses with Harry Potter audio books for company. In these traffic jams I started to feel English at last and loved it, it gave me a freedom no money can buy. And despite the long way I managed to play volleyball with my husband and his colleagues. Life was getting better.</p>\n<p>This job itself in addition to low payment had something valuable to me — a working website. After my boss had a row with its developer, I got it to maintain, did some reverse engineering and understood how it works. It wasn’t a most creative site, but it gave me a view. I started to write simple sites from scratch.</p>\n<blockquote><p>My first JavaScript calculator almost made me crazy, but I pursued.</p></blockquote>\n<p>From time to time I was asked for help from a friend or relative, usually to solve some urgent problems. So, I started to meet popular CMSs. One of the first I met with was WordPress. There was some issue in theme, which was changed and dropped by developer. I was digging a whole weekend deciphering how it works and found infinity loop to fix. Back then for me it was just a system…</p>\n<p>Two years later I found myself still clinging to my temporary job. I was tired of working for a hard nosed dictator, the last drop was his statement that I was not a programmer, because he hadn’t seen anything I made. I’ve already written some parts of website he asked for, so it was just unfair. I became angry and it was exactly what I needed, a big kick.</p>\n<p>I went out but still had no courage to pretend on a developer’s place and landed in some franchise company selling “box version” websites. It was another tough half of a year with a lot of work, low payment and plan failures, ending with pneumonia. I see now that I was making a disservice to customers, websites are not a microwave meal — quick, cheap and dummy. There was no life in them without a lot of work no one bargained to buy or do. Most of the sites I sold back then died when year expired but they never were truly alive and useful.</p>\n<h3>You need to pluck up your courage to become lucky</h3>\n<p>When I recovered, I search through developer’s job offers, but it was difficult to find something suitable worth trying to apply. I was reading job advertising and it looked, and still is, like mostly IT company are presented and they want geniuses who know a lot of technologies and frameworks at once. It was very distressing just to look.</p>\n<p>And then I became lucky again. I opened a private ads site and almost immediately found a job which was fitted me perfectly — they wanted someone with experience to write from scratch, understand another’s code and maintain it, ability to translate technical documentation and articles and make simple design of printing products. I made test task and there was no need in my resume or diplomas, I was taken. It’s turned out direct ad from one of sales departments in tech company and I passed by HR, who most likely wouldn’t even have considered me. Superior agreed to have me remotely most of the time, it solved sick leaves problem even if it was already much better than before. Addition to better salaries and calm work without over hours, I got very pleasant colleagues. We are friends ever since, despite back then no one guessed to invite me to play volleyball.</p>\n<p>It was 14 years after the original decision to be a programmer and it was only the beginning. I left this amazing place a couple years later when it held no more challenges for me.</p>\n<h3>Conscious decisions require wide knowledge</h3>\n<p>After I worked with a bunch of CMSs, I started to be able to compare them and understood not only that WordPress is the best one for developers and clients but also that I didn’t see right examples at all. The biggest flaw of WordPress — it’s so easy to make things work that there’s no need to bother and do things right and this becomes a problem later. I also saw bad cases on very different systems… and did them as well.</p>\n<p>I used to work relying on examples at hand, documentation and Google, but searching for a specific feature or a solution, I found myself again missing the whole picture. At this point Udemy courses came very handy and then I started to attend WordPress events, firstly online and then by foot, trains and airplanes and discovered a wide and very alive community. Now I know not only where to look but whom to ask and how to be not far from those who stays on top of things as much as possible. Most important is that I found allies who don’t think I’m going crazy, speaking with shining eyes about work, with whom I share a passion and fondness to WordPress. It’s what matters.</p>\n<p>Now, after 6 years of full time in development, I still feel myself like a newbie, it’s endless learning, frequent discoveries, mistakes and impassable wish to do better…</p>\n<h3>The way is the destination</h3>\n<p>I made a path very uneven, a lot of mess and banging, but for me it’s like a kaleidoscope where a little turn presents a new picture, new “a-ha” moment, new excitement after seemingly pointless efforts. When in doubt I remind myself about <NAME> who tried a lot of things before struck gold with advertising and it’s maybe why.</p>\n<p>Finally, I learned not only to keep face and move forward but also to dare.</p>\n<h3>Freedom is to make your own mind</h3>\n<p>I left my last workplace after we finished exhausted two years project on another CMS system which was a big reinventing of wheels and made up my mind to work only with WordPress from now on and dare to be my own boss.</p>\n<p>Now I’m officially an entrepreneur. This big boy’s stuff looks difficult. But I don’t want to be told, collaboration is a new black wherever I look.</p>\n<h2 id=\"ru\">Крюк длинной в 14 лет</h2>\n<blockquote><p>Не достаточно знать, что хочешь</p></blockquote>\n<p>В 15 лет мне было сказано, чтобы я поспешила с профессиональным образованием, если не поступлю бесплатно в институт, никто платить за меня не будет. Последнее было очевидно и не из-за денег. Несмотря на весьма хорошие оценки, я не могла оценить свои шансы, могло оказаться, что я просто большая рыба в маленьком пруду. Но в любом случае, я хотела как можно быстрей расстаться с людьми, видящими во мне одну большую статью расходов. Я приняла решение и это откололо меня от моих одноклассников. Ушла из школы я, не прощаясь, как только получила на руки сертификат об окончании 9 классов.</p>\n<p>Нужно было выбрать профессию, но потенциальные возможности были весьма туманны. Я могла стать экологом или немецкоязычным гид-переводчиком, на основе того, чему училась в школе, или рекламщиком, в России тогда начался рекламный бум, и она казалась очень захватывающей, я даже листовки собирала. В то же самое время я уже была хорошим пользователем компьютера и набирала документы для завуча старших классов, иногда вместо занятий — вызвалась один раз и потом уже не могла сказать «нет».</p>\n<p>Никто не пытался дать мне совет, но я была уверена, что будущее немыслимо без компьютеров и решила стать программистом. Выбор техникумов в пределах разумной досягаемости, был не очень большой, а названия специальностей выглядели очень мудрено. Я ошиблась и провела следующие 4 года изучая маркировку транзисторов, паяя и чертя печатные платы. Курс программирования обернулся дурной шуткой, это был Паскаль, и мы даже не пытались сделать с ним что-то полезное. Другим серьезным недостатком этого обучения стал английский язык, преподаватель выпендривался и задирал девушек, я так и не поняла знал ли он язык вообще. В конце концов он был уволен после нашей коллективной жалобы, а мы получили хорошие оценки, в качестве решения проблемы. Я выпустилась из техникума с красным дипломом и улучшенными навыками машинистки.</p>\n<p>Рынок труда был диким и неизведанным. Не зная, как распознать сомнительное предложение о работе, наткнулась на несколько таких, как ходить по домам и навязывать людям дешевые утюги за внушительную цену. Поиск работы оказался изматывающим, без посторонней помощи, я могла бы еще долго ходить по этим собеседованиям.</p>\n<h3>Неправильный подход может быть причиной неудачи</h3>\n<p>Мне повезло, отец работал в IT-компании. Он предложил меня в качестве подмены наборщикам, когда я еще училась, а когда закончила, помог получить работу по обновлению правовой системы на компьютерах у клиентов. Может быть меня взяли бы и, приди я с улицы, но для этого нужно было знать, куда идти. Через полгода я получила место в офисе в том же отделе обслуживания, а также начала играть с коллегами в волейбол. Это было здорово, знакомиться с людьми из других отделов, а еще на поле нет большой разницы между директором и аналитиком. Мне нравилось мое место и мои клиенты, но опять мне было «дружески» сказано, что без высшего образования, на большее я могу не рассчитывать.</p>\n<p>В это время я пыталась изучать PHP по книге. В начале все выглядело очень захватывающе, но функции без понимания как из них построить что-то целое не имели большого смысла, я пробовала, у меня не получалось, и в конце концов сдалась. Было сложно признаться, что я не смогла, даже самой себе и это неприятное чувство преследовало меня долгое время.</p>\n<p>Нужно было выбрать то, с чем я смогу справиться, что-то интересное и что будет мне по карману. Выбор пал на рекламу. В следующие 6 лет большая часть наших с мужем отпусков ушла на мои сессии. Ему было сложно выгнать меня из-за компьютера, я к нему приклеилась, поэтому он купил мне мой первый ноутбук. Английский по-прежнему давался мне очень трудно, и чтобы получить пять, пришлось переводить и запоминать вместе с транскрипцией все слова в учебном пособии. Снова я хотела то, что мне не давалось.</p>\n<blockquote><p>Я начала ненавидеть свое рабочее место задолго до того, как закончила университет с еще одним никому не нужным красным дипломом.</p></blockquote>\n<p>Я получила повышение достаточно скоро, несмотря на опасения, но затем руководство сменилось и работать с новым стало весьма напряженно. Я сбежала в декрет и провела следующие три года отпуска по уходу за ребенком полные сомнений. Учеба, рисование и приготовление пирогов отвлекали, но я оказалась не готова быть привязанной к коляске — ограниченной в передвижениях, оторванной от других людей, полагаться на деньги мужа. Возвращаться на работу я не хотела, но не видела лучшего выхода, была убеждена, и вполне резонно, что ни так много компаний готовы взять на офисную позицию женщину с маленьким ребенком и кучей больничных.</p>\n<p>После того, как я вернулась на работу, стало ясно, что ситуация стала еще хуже, чем была. Я потеряла свое место, а очередной новый руководитель относился во всем девушкам «поддержки» как к мебели. Несколько месяцев мне хватило.</p>\n<h3>Обратная сторона медали может быть золотой</h3>\n<p>Я хотела быть маркетологом. Зная, как непросто продавать что-то неосязаемое, решила работать с товаром, который можно пощупать. Сейчас думаю, разница была только в голове.</p>\n<p>Оказалось, сложно найти работу вне IT-сектора, некоторые менеджеры по персоналу снисходили для объяснений, что мне будет лучше в IT.</p>\n<p>И все-таки я была настроена оптимистично, я усердно училась и считала, что хорошо справляюсь, но опять, оказалось, что установила слишком низкую планку для работодателей. Компании, в которых я работала, хотели и публикации, и рост продаж исключительно за счет моей зарплаты. Ошибившись один раз, в следующий я специально уточнила вопрос с бюджетом, и меня заверили, что он есть. Оказалось, что это по-прежнему только зарплата. Это был период разочарований.</p>\n<p>Когда мне предложили административную работу на полставки с терпимым отношением к больничным, я с радостью ухватилась за возможность взять передышку. Работа была далеко от дома, и я проводила 2-3 часа в маршрутках каждый день в компании с аудиокнигами про <NAME>. В этих дорожных пробках я наконец почувствовала английский язык и полюбила его, это дало мне свободу, которую невозможно купить за деньги. И, несмотря на долгую дорогу, я смогла играть после работы в волейбол с мужем и его коллегами. Жизнь налаживалась.</p>\n<p>Эта работа сама по себе, помимо низкой зарплаты, имела нечто ценное для меня – работающий сайт. После того, как мой начальник поссорился с разработчиком, я получила его на поддержку. Разобрав его на части, я поняла, как он работает. Это не был самый креативный сайт в мире, но он дал мне целостное представление, и я начала писать простые сайты с нуля.</p>\n<blockquote><p>Мой первый калькулятор на JavaScript практически свел меня с ума, но я продолжила.</p></blockquote>\n<p>Время от времени меня просили помочь родственники и друзья, обычно решить какую-то срочную проблему. Так я стала встречаться с популярными CMS. Одной из первых оказался WordPress. Там была проблема в теме, которую разработчик изменил и бросил. Я копала все выходные, но в конце концов нашла место, где код уходил в бесконечный цикл и исправила. Тогда для меня это была просто какая-то система…</p>\n<p>Два года спустя я все еще держалась за свою временную работу. Резкие манеры начальника перестали казаться забавными и последней каплей стало его категорическое заявление, что я не программист, потому что он не видел ничего, созданного мной. На тот момент я уже написала для сайта функционал, который он же просил, так что это было обидно. Я разозлилась и это стало толчком в нужном направлении.</p>\n<p>Я ушла, но все еще не пыталась получить работу разработчика, и в результате оказалась в одной из франшизных компаний, продающих сайты «из коробки». Это были сложные полгода с кучей работы, низкой зарплатой и провалами плана, закончившиеся воспалением легких. Сейчас, думаю, я оказывала клиентам медвежью услугу, сайт – не готовое блюдо для микроволновки, быстрое, дешевое и типовое. В этих сайтах нет жизни без вложения огромного труда, за которых никто не готов был платить. Большая часть сайтов умерли через год, но они и живыми то не были.</p>\n<h3>Нужно набраться смелости, чтобы повезло</h3>\n<p>Когда я поправилась, начала искать работу разработчика, но было сложно найти что-то подходящее даже просто чтобы решиться ответить на вакансию. В объявлениях были в основном представлены IT-компании, которым нужны гении, знающие огромное количество технологий и фреймворков. Только вид этих вакансий вгонял в депрессию.</p>\n<p>А потом мне снова повезло. Я открыла сайт частных объявлений и буквально сразу же нашла работу, которая мне подходила идеально — они хотели кого-то с опытом написания с нуля, умеющего разбираться и дописывать чужой код, переводить техническую документацию и статьи, а также делать простую полиграфию. Я сделала тестовое задание и была принята, ни дипломы, ни резюме уже не понадобились. Оказалось, это был объявление одного из отделов продаж в компании, занимающейся промышленным оборудованием, и я прошла в обход отделка кадров, который, уверена, даже не посмотрел бы на меня. Начальник согласился на мою работу удаленно, что решило проблему частых больничных, хотя ребенок рос, и их уже стало намного меньше. В дополнение к лучшей зарплате и спокойной работе без переработок и нервотрепки, мне достались замечательные коллеги. Мы дружим с тех пор, несмотря на то, что тогда никто не догадался позвать меня играть в волейбол.</p>\n<p>Это случилось через 14 лет после первоначального решения стать программистом и это был только начало. Я ушла через пару лет, когда ничего нового в работе уже не осталось.</p>\n<h3>Сознательные решения требуют широкий знаний</h3>\n<p>После того, как я поработала с разными CMS, смогла не только сравнить их между собой и понять, что WordPress лучшая из всех как для разработчиков, так и для клиентов, но также обнаружить, что вообще не видела хороших примеров разработки. Самая большая проблема WordPress — сделать так, чтобы работало, настолько легко, что мало кто не утруждает себя делать правильно, что позже оборачивается проблемами при доработке и поддержке. Впрочем, я видела плохие решения на разных CMS, да и сама их делала.</p>\n<p>Отталкиваясь от доступных примеров и документации и ища в поисковиках конкретные решения, я опять обнаружила, что не вижу всей картины. В этот момент курсы Udemy оказались очень кстати, а затем я начала посещать мероприятия WordPress, сначала онлайн, потом топая ни них ножками, оправляясь на поездах и самолетах, и обнаружила большое и весьма активное сообщество. Наконец-то я нашла не только тех, у кого можно спросить, но и как быть недалеко от тех, кто «в теме», насколько это вообще возможно. Самое важное – я нашла единомышленников, тех, кто не думает, что человек, говорящий с горящими глазами о работе, рехнулся, с кем у нас общая страсть и любовь к WordPress. Это то, что имеет значение.</p>\n<p>Сейчас, проработав 6 лет как разработчик, я все еще чувствую себя новичком, это бесконечное обучение, частые открытия, ошибки и непроходящее желание сделать лучше.</p>\n<h3>Смысл пути в самом пути</h3>\n<p>Мой путь очень извилистый, много метаний и набитых шишек, но для меня это как калейдоскоп, где каждый поворот показывает новую картинку, новое озарение, дает энергию двигаться дальше после казавшихся напрасными усилий. В периоды сомнений, я напоминаю себе о Дэвиде Огилви, который сменил множество специальностей, пока не добился успеха в рекламе.</p>\n<p>Я научилась не только сохранять лицо и идти вперед, но также набралась смелости.</p>\n<h3>Свобода — возможность принимать решения</h3>\n<p>Я ушла со своего последнего места работы, где мы закончили изматывающий двухлетний проект на другой CMS, ставший сам по себе большой ошибкой, и ни только приняла решение работать исключительно с WordPress, но и стать своим собственным начальником.</p>\n<p>Теперь я официально предприниматель. Все эти вещи «для больших мальчиков» выглядят достаточно сложными, но я больше не хочу слепо делать то, что мне скажут. В тренде коллаборации, куда ни глянь.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: 14 Years’ Detour\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=14%20Years%E2%80%99%20Detour&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2F14-years-detour%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: 14 Years’ Detour\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2F14-years-detour%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2F14-years-detour%2F&title=14+Years%E2%80%99+Detour\" rel=\"nofollow\" target=\"_blank\" title=\"Share: 14 Years’ Detour\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/14-years-detour/&media=https://heropress.com/wp-content/uploads/2019/10/100219-150x150.jpg&description=14 Years’ Detour\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: 14 Years’ Detour\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/14-years-detour/\" title=\"14 Years’ Detour\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/14-years-detour/\">14 Years’ Detour</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Oct 2019 05:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"BuddyPress: BuddyPress 5.0.0 “Le Gusto”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=308041\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://buddypress.org/2019/09/buddypress-5-0-0-le-gusto/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10760:\"<p>Here’s our latest major release featuring the <strong>BuddyPress REST API</strong> !!</p>\n\n\n\n<div class=\"wp-block-button aligncenter is-style-squared\"><a class=\"wp-block-button__link has-background\" href=\"https://downloads.wordpress.org/plugin/buddypress.5.0.0.zip\">Get BuddyPress 5.0.0</a></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>We are very excited to announce the BuddyPress community the immediate availability of <strong>BuddyPress 5.0.0</strong> code-named “<strong><NAME></strong>“. You can get it clicking on the above button, downloading it from our <a href=\"https://wordpress.org/plugins/buddypress/\">WordPress.org plugin repository</a> or checking it out from our <a href=\"https://buddypress.trac.wordpress.org/browser/branches/5.0\">subversion repository</a>.</p>\n\n\n\n<p><em>NB: if you’re upgrading from a previous version of BuddyPress, please make sure to back-up your WordPress database and files before proceeding. </em></p>\n\n\n\n<p>You can view all the changes we made in 5.0.0 thanks to our <a href=\"https://codex.buddypress.org/releases/version-5-0-0/\">full release note</a>. Below are the key features we want to get your attention on.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div><span class=\"dashicons dashicons-rest-api\"></span></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>The BP REST API opens a new era for BuddyPress!</h2>\n\n\n\n<p>You can now enjoy REST API endpoints for members, groups, activities, private messages, screen notifications and extended profiles.</p>\n\n\n\n<p>BuddyPress endpoints provide machine-readable external access to your WordPress site with a clear, standards-driven interface, paving the way for new and innovative methods of interacting with your community through plugins, themes, apps, and beyond.</p>\n\n\n\n<p>The BP REST API opens great new opportunities to improve the way you play with the BuddyPress component features: we couldn’t resist to start building on top of it introducing… </p>\n\n\n\n<h3>A new interface for managing group members.</h3>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://buddypress.org/wp-content/uploads/1/2019/09/group-manage-members.png\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/09/group-manage-members.png\" alt=\"Screen Capture of the new Group Mange Members UI\" class=\"wp-image-308052\" /></a></div>\n\n\n\n<p>Group administrators will love our new interface for managing group membership. Whether you’re working as a group admin on the front-end Manage tab, or as the site admin on the Dashboard, the new REST API-based tools are faster, easier to use, and more consistent.</p>\n\n\n\n<h3>The BP REST API is fully documented</h3>\n\n\n\n<p>The development team worked hard on the features but also took the time to <a href=\"https://buddypress.org/2019/09/bp-devhub-1-0/\">write the documentation</a> about how to use it and how to extend it. BuddyPress developers, let’s start building great stuff for our end users: take a look at <a href=\"https://developer.buddypress.org/bp-rest-api/\">the BP REST API developer reference</a>.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div><span class=\"dashicons dashicons-buddicons-groups\"></span></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Improved Group invites and membership requests</h2>\n\n\n\n<p>Thanks to the new BP Invitations API, Group invites and membership requests are now managed in a more consistent way. The BP Invitations API abstracts how these two actions are handled and allows developers to use them for any object on your site (e.g., Sites of a WordPress network).</p>\n\n\n\n<p>Read more about the <a href=\"https://bpdevel.wordpress.com/2019/09/16/new-invitations-api-coming-in-buddypress-5-0/\">BP Invitations API</a>.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div><span class=\"dashicons dashicons-buddicons-forums\"></span></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Help our support volunteers help you.</h2>\n\n\n\n<p>Knowing your WordPress and BuddyPress configuration is very important when one of our beloved support volunteers tries to help you fix an issue. That’s why we added a BuddyPress section to the Site Health Info Administration screen.</p>\n\n\n\n<a href=\"https://buddypress.org/wp-content/uploads/1/2019/09/debug-buddypress.png\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/09/debug-buddypress.png\" alt=\"Screen capture of the BuddyPress section of the Site Health screen.\" class=\"wp-image-308058\" /></a>\n\n\n\n<p>The panel is displayed at the bottom of the screen. It includes the BuddyPress version, active components, active template pack, and a list of other component-specific settings information.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-columns has-2-columns\">\n<div class=\"wp-block-column\">\n<div><span class=\"dashicons dashicons-heart\"></span></div>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<div><span class=\"dashicons dashicons-wordpress-alt\"></span></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Improved integrations with WordPress</h2>\n\n\n\n<h3>BP Nouveau Template Pack</h3>\n\n\n\n<p>In BuddyPress 5.0.0, the BP Nouveau template pack looks better than ever with the Twenty Nineteen theme.</p>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://buddypress.org/wp-content/uploads/1/2019/09/edit-password.png\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/09/edit-password.png\" alt=\"\" class=\"wp-image-308069\" /></a></div>\n\n\n\n<p>Nouveau now uses the same password control as the one used in WordPress Core, for better consistency between BuddyPress and WordPress spaces.</p>\n\n\n\n<h3>BuddyPress Blocks now have their own category into the Block Editor.</h3>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://buddypress.org/wp-content/uploads/1/2019/09/bp-blocks.png\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/09/bp-blocks.png\" alt=\"\" class=\"wp-image-308070\" /></a></div>\n\n\n\n<p>Developers building tools for the Block Editor can now add their blocks to the BuddyPress category. This change provides a foundation for organizing custom BuddyPress blocks.</p>\n\n\n\n<p>Read more about this feature in this <a href=\"https://bpdevel.wordpress.com/2019/07/31/a-category-to-store-your-buddypress-blocks/\">development note</a>.</p>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://buddypress.org/2018/11/buddypress-4-0-0-pequod/#comment-44752\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/09/matt-comment.png\" alt=\"\" class=\"wp-image-308075\" /></a>Screen capture of the <a href=\"https://buddypress.org/2018/11/buddypress-4-0-0-pequod/#comment-44752\">comment</a> Matt made about BuddyPress 4.0.0</div>\n\n\n\n<p><em>PS: we know, just like Matt, you’re eager to enjoy high quality community blocks: now we have the BP REST API and this new Blocks category available in BuddyPress Core, get ready to be amazed for our next release. Fasten your seatbelts: BuddyPress blocks are arriving!</em></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/09/pizza.png\" alt=\"\" class=\"wp-image-308073\" /></div>\n\n\n\n<h2>BuddyPress Le Gusto</h2>\n\n\n\n<p>5.0.0 is code-named <strong>“Le Gusto”</strong> after the <a href=\"https://goo.gl/maps/tpvew6YSivZ5KX218\">well known Pizza restaurant</a> in Fortaleza, Brazil. It’s the perfect place to meet with friends and start tasting new flavors like <a class=\"bp-suggestions-mention\" href=\"https://buddypress.org/members/espellcaste/\" rel=\"nofollow\">@espellcaste</a>’s favorite one: the “Pizza de Camarão”. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div><span class=\"dashicons dashicons-buddicons-buddypress-logo\"></span></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Muito Obrigado</h2>\n\n\n\n<p>As usual, this BuddyPress release is only possible thanks to the contributions of the community. Special thanks to the following folks who contributed code and testing to the release: <a href=\"https://github.com/baconbro\">baconbro</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\"><NAME> (boonebgorges)</a>, <a href=\"https://profiles.wordpress.org/joncadams/\">boop (joncadams)</a>, <a href=\"https://profiles.wordpress.org/sbrajesh/\"><NAME> (sbrajesh)</a>, <a href=\"https://profiles.wordpress.org/dcavins/\"><NAME> (dcavins)</a>, <a href=\"https://profiles.wordpress.org/ericlewis/\"><NAME> (ericlewis)</a>, <a href=\"https://profiles.wordpress.org/geminorum/\">geminorum</a>, <a href=\"https://profiles.wordpress.org/gingerbooch/\">gingerbooch</a>, <a href=\"https://profiles.wordpress.org/ivinco/\">Ivinco</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\"><NAME> (whyisjake)</a>, <a href=\"https://profiles.wordpress.org/JarretC/\">Jarret (JarretC)</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\"><NAME> (johnjamesjacoby)</a>, <a href=\"https://profiles.wordpress.org/klawton/\">klawton</a>, <a href=\"https://profiles.wordpress.org/kristianngve/\"><NAME> (kristianngve)</a>, <a href=\"https://profiles.wordpress.org/maniou/\">Maniou</a>, <a href=\"https://profiles.wordpress.org/netweblogic/\">Marcus (netweblogic)</a>, <a href=\"https://profiles.wordpress.org/imath/\"><NAME> (imath)</a>, <a href=\"https://github.com/bhoot-biswas\"><NAME></a>, <a href=\"https://profiles.wordpress.org/modemlooper/\">modemlooper</a>, <a href=\"https://profiles.wordpress.org/DJPaul/\"><NAME> (DJPaul)</a>, <a href=\"https://profiles.wordpress.org/r-a-y/\">r-a-y</a>, <a href=\"https://profiles.wordpress.org/razor90/\">razor90</a>, <a href=\"https://profiles.wordpress.org/espellcaste/\">Renato Alves (espellcaste)</a>, <a href=\"https://profiles.wordpress.org/slaFFik/\"><NAME> (slaFFik)</a>, <a href=\"https://profiles.wordpress.org/netweb/\"><NAME> (netweb)</a>, <a href=\"https://profiles.wordpress.org/truchot/\">truchot</a>, <a href=\"https://profiles.wordpress.org/venutius/\">Venutius</a>, <a href=\"https://profiles.wordpress.org/wegosi/\">wegosi</a>, and of course you for using BuddyPress <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f609.png\" alt=\"😉\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div><span class=\"dashicons dashicons-format-chat\"></span></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Feedbacks welcome!</h2>\n\n\n\n<p>Receiving your feedback and suggestions for future versions of BuddyPress genuinely motivates and encourages our contributors. Please share your feedback about this version of BuddyPress in the comments area of this post. And of course, if you’ve found a bug: please tell us about it into our <a href=\"https://buddypress.org/support/\">Support forums</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 28 Sep 2019 11:07:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"imath\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Gary: Talking with WP&UP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://pento.net/?p=5120\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://pento.net/2019/09/26/talking-with-wpup/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:348:\"<p>At WordCamp Europe this year, I had the opportunity to chat with the folks at WP&UP, who are doing wonderful work providing mental health support in the WordPress community.</p>\n\n\n\n<p><a href=\"https://wpandup.org/podcast/getting-to-the-core-of-wordpress-021/\">Listen to the podcast</a>, and check out the services that WP&UP provide!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 Sep 2019 04:35:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Gary\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"Post Status: Salesforce Ventures invests $300 million in Automattic, at a $3 billion valuation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=68901\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://poststatus.com/salesforce-ventures-automattic/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6125:\"<p>Salesforce Ventures is the investment arm of Salesforce. Prior to this investment in <a href=\"https://automattic.com/\">Automattic</a>, Salesforce Ventures had <a href=\"https://www.salesforce.com/company/ventures/funds/\">announced</a> $875 million raised across 11 fund initiatives — but none that amounts to $300 million. Previosuly, each fund has been between $50 to $125 million spread across several <a href=\"https://www.crunchbase.com/organization/salesforce-ventures/investments/investments_list\">investments</a>.</p>\n\n\n\n<p>I believe <a href=\"https://www.salesforce.com/company/ventures/\">Salesforce Ventures</a> called up funds specifically for this strategic investment in Automattic, which would likely put their total dollars invested (or committed to existing funds) well beyond $1 billion, and the $300 million into Automattic would be their largest investment to date, to my knowledge.</p>\n\n\n\n<p>Salesforce Ventures states on their website that they are exclusively seeking investments in “enterprise cloud” companies. In Automattic Founder and CEO <NAME>’s <a href=\"https://ma.tt/2019/09/series-d/\">announcement</a> about the funding, he specifically noted how Salesforce CEO <NAME>, “helped open my eyes to the incredible traction WordPress <a href=\"https://wpvip.com/\">and WP VIP</a> has seen in the enterprise market, and how much potential there still is there.” I am curious to see how Automattic changes their approach to VIP in particular, in light of this.</p>\n\n\n\n<p>$300 million is a lot of money. Salesforce is joining Insight Venture Partners, Tiger Global, and True Ventures as primary outside investors in Automattic. </p>\n\n\n\n<p>Given that Salesforce was the lead and only investor here, they now own a significant stake in Automattic — and it will be interesting to see what kind of confluence that enables between the two companies. Automattic CEO <NAME> tells me, “Automattic has been a long-time customer of Salesforce’s products, and we think there are lots of opportunities for closer integration.”</p>\n\n\n\n<p>Since Automattic recently acquired Tumblr and brought on a few hundred new employees from it, it’s natural to think the new fundraising is related. I asked Matt about that, and he said it was unrelated in terms of financial justification, but they did, “disclose the Tumblr transaction to Salesforce during [their] discussions.”</p>\n\n\n\n<p>Automattic hasn’t raised money since 2014, and it seems like this round is similar to prior ones, wherein the money helps spur their growth plans along but that they are operationally profitable — or close to it. Matt <a href=\"https://techcrunch.com/2019/09/19/automattic-raises-300-million-at-3-billion-valuation-from-salesforce-ventures/\">told Techcrunch</a>, “The roadmap is the same. I just think we might be able to do it in five years instead of ten.”</p>\n\n\n\n<p>Matt called the investment proof of Salesforce’s own “tremendous vote of confidence for Automattic and for the open web.” Salesforce does have some history of supporting <a href=\"https://opensource.salesforce.com/\">open source projects</a>, although that shouldn’t be equated to an investment in Automattic as a company; it is a vote of confidence for companies that rely on open-source platforms as a part of their line of business.</p>\n\n\n\n<p>Automattic is the single most significant contributor to WordPress and related open-source projects. It also relies on open-source software for its product development — particularly Jetpack and WooCommerce — and features like Gutenberg as the core experience for writing and site-building. How that blend of open source software and business development plays out, in the long run, is certainly of high interest to the open-source community.</p>\n\n\n\n<p>I have long discussed on various platforms how I think there are a handful of companies that are big enough to acquire Automattic someday. I still think Automattic is more likely to go public at some point, but if they are acquired, Salesforce is definitely one of those few with the resources to make it happen, and perhaps the operational congruence as well.</p>\n\n\n\n<p>Reaching a $3 billion valuation is an amazing feat that Automattic has achieved. Matt has said before that he believes each of their primary lines of business — WordPress.com, WooCommerce, and Jetpack — can be multi-billion dollar opportunities. I agree with him, particularly for WooCommerce. I think there’s a good chance WooCommerce will end up several times more valuable than all their other lines of business combined. <span class=\"pullquote alignleft\">I would love to see these new funds be funnelled into the incredible opportunity in the eCommerce landscape; one only needs to look at what Shopify has done to see what’s possible, and just how successful it can be.</span> </p>\n\n\n\n<p>I asked Matt why he was attracted to an investment from Salesforce’s VC arm, rather than an investment-only style firm. He said, “I love Salesforce’s philosophy, how they cultivate such a fantastic community, how they support progressive policies in San Francisco and the other cities they operate in, how they’ve been founder-led, their scale, their leadership, and their longevity in defining an entirely new class of software and being the most significant player in it.”</p>\n\n\n\n<p>I love the point about Salesforce defining a class of software — and I have realized recently just how huge their developer community is — so I really appreciate this comment from Matt. Making commercial and SaaS software is a well-established business now. Automattic is in a unique position as the most powerful player in an <em>open</em> ecosystem proud of its independence. This provides many unique opportunities for Automattic the business and unique challenges for Automattic the WordPress community member.</p>\n\n\n\n<p><em>Image credit: <a href=\"https://ma.tt/2019/09/series-d/\"><NAME></a>, whose blog I brazenly stole it from.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 19 Sep 2019 23:05:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"HeroPress: Life Stacks Up – From A Small Town Boy To A Geek Entrepreneur\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2963\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:192:\"https://heropress.com/essays/life-stacks-up-from-a-small-town-boy-to-a-geek-entrepreneur/#utm_source=rss&utm_medium=rss&utm_campaign=life-stacks-up-from-a-small-town-boy-to-a-geek-entrepreneur\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10001:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2019/09/091719-min-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: For me, WordPress means freedom, self expression, and adaptability.\" /><p>A six year old is in deep thought. His gaze stuck on an intricate structure made with wooden sticks – a large rectangular box in the centre, a tall stick, some knitting threads running up and down. All this is arranged in a shelf in a common terrace wall of two middle class Indian homes.</p>\n<p>The boy is holding what seems like a paper cup telephone – two paper cups with a thread running between. Soon, he smiles and throws one paper cup over the wall to the other side. His counterpart on the other side picks up his side of the “telephone” and they start talking.</p>\n<p>“I made a TV using the sticks. I’m now going to set up a power line…”</p>\n<p>“Awesome, I’ll be there after my homework!”</p>\n<p>Aha! Now it makes sense. The kids are pretend-playing, and this one in particular is into science and model making. He has made an elaborate television model with limited resources.</p>\n<p>Fast forward six years, and the boy is writing programs on a school computer. Couple years later he’s making model rockets and planes.</p>\n<p>Fast forward another six years, and the boy is sitting with <NAME>, being one of the eight national winners in a competition.</p>\n<p>He goes on to launch India’s first electronic magazine, a web solutions business, local language versions of Linux and OpenOffice, a content management system, few books and a string of businesses that have made millions of dollars.</p>\n<p>And he fondly remembers meeting <NAME> and <NAME> at WordCamp San Francisco in 2014. His web agency business had gone bust around 2011, and his WordPress plugins business was picking up. Those meetings strengthened his conviction for WordPress and he doubled down on his plugins. Today his team takes care of 200,000+ active users across two dozen of their plugins – both free and premium.</p>\n<p>That small town boy is me.</p>\n<h3>Who I Am</h3>\n<p>My name is <NAME>. I live in Mumbai, and I’m super passionate content, commerce and contribution. I run three businesses – two in WordPress (<a href=\"https://www.storeapps.org/\">StoreApps.org</a> – where we solve problems for growing WooCommerce stores,<a href=\"http://icegram.com/\"> Icegram.com</a> – where creators find tools to inspire, engage and convert their audiences), and one SaaS business (<a href=\"https://www.putler.com/\">Putler</a> – meaningful analytics for e-commerce).</p>\n<p>I have done some or other form of writing for over two decades. I’ve done open source for my whole life and used Drupal and Joomla earlier. As a matter of fact, I created a content management system using PHP back in 2000. But I liked the simplicity and community of WordPress. So when I wanted to start two blogs in 2006, I jumped on to WordPress.</p>\n<blockquote><p>And it was amazing. WordPress simplified a whole lot of things, allowed customization and had extensive plugin ecosystem.</p></blockquote>\n<p>I continued blogging and tinkering with WordPress. WordPress kept growing, and when I was looking for “the next big thing” around 2011, I figured I can bet on e-commerce with WordPress.</p>\n<p>There was no WooCommerce back then, and we built an extension to WPeC – an e-commerce plugin that was popular at that time. Smart Manager – the plugin we built – allowed managing products, orders and customers using an easy spreadsheet like interface. It quickly became popular. When WooCommerce came along, we ported our WPeC plugins to WooCommerce, and also became an official third-party developers with our Smart Coupons plugin. StoreApps – our WooCommerce plugins business continues to be our top business today.</p>\n<p>WordPress has changed my life. For me, WordPress means freedom, self expression and adaptability.</p>\n<h3>Where I Came From</h3>\n<p>I’m from a small town, I am not an engineer, I didn’t do an MBA. I don’t have a godfather. But I’ve always wanted to contribute to a larger community, I’m a stickler for elegant solutions that solve practical problems and I’m ready to delay gratification. I believe grit and humility are essential. I’m a curious lifetime learner. I’ve realized that money is important, it’s a great resource. But I’ve also learnt that the joy of seeing someone benefit from your work far surpasses anything else.</p>\n<p>WordPress fits perfectly here. It gives me a platform to reach out to the whole world. It’s built on community and greater good. There are lots of opportunities and entry barriers are low.</p>\n<h3>What WordPress Has Given Me</h3>\n<p>WordPress allowed me to exercise my creative skills and easily build solutions on top of the core platform. I am not a great marketer, and WordPress and WooCommerce enabled me to build strong businesses by tapping into their distribution prowess. WordPress was easy to learn, so when we found people with the right mindset, they became productive soon.</p>\n<p>Icegram – our onsite and email marketing plugins business – is a clear example of the power of WordPress. Icegram Engage shows popups, header-footer bars and many other types of visitor engagement and call to action messages. Maintaining such a solution on a large scale would require huge server costs and sys-op efforts. We could avoid all that because we could keep most of the functionality in WordPress. It also provided a cleaner and much better user experience than typical SaaS solutions. When I wrote the initial code for it, I wanted to keep the frontend logic in JavaScript – and of course, WordPress allowed doing that. Eventually, it was also easy to migrate to a hybrid model – where complex functions are performed on our servers and rest remains in WordPress.</p>\n<blockquote><p>WordPress has given me great friends. I’ve met so many talented people online and at WordCamps! Me and my WordPress friends have done amazing adventures together! And the circle keeps expanding. You will find amazing people in WordPress!</p></blockquote>\n<p>When you look at my life, and if important events were plotted as a chart, you won’t see a straight curve. It’s a bundle of long lull-times with gyrating ups and downs in between. I studied behavior patterns, data modelling and visualization for Putler – our multi-system analytics solution for online businesses. I also get to see numbers from many other businesses. I wanted to analyze how businesses work. What causes success.</p>\n<p>And one big, common takeaway – in both business and life – is that results are non-linear. There is no single cause to any result.</p>\n<h3>Back To You</h3>\n<p>It all starts simple. What you do today, is shaped by something you did earlier, and will shape something else you’ll do in the future.</p>\n<p>Every little act of courage, every little getting out of your comfort zone, every new thing you learn, every setback, every little success… It all keeps building who you are.</p>\n<p>You see, life stacks up!</p>\n<p>Do not despair, do not lose faith. Series of actions produce a result, and you have the ability to act.</p>\n<p>So stay on!</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Life Stacks Up – From A Small Town Boy To A Geek Entrepreneur\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Life%20Stacks%20Up%20%2D%20%20From%20A%20Small%20Town%20Boy%20To%20A%20Geek%20Entrepreneur&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Flife-stacks-up-from-a-small-town-boy-to-a-geek-entrepreneur%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Life Stacks Up – From A Small Town Boy To A Geek Entrepreneur\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Flife-stacks-up-from-a-small-town-boy-to-a-geek-entrepreneur%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Flife-stacks-up-from-a-small-town-boy-to-a-geek-entrepreneur%2F&title=Life+Stacks+Up+%26%238211%3B++From+A+Small+Town+Boy+To+A+Geek+Entrepreneur\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Life Stacks Up – From A Small Town Boy To A Geek Entrepreneur\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/life-stacks-up-from-a-small-town-boy-to-a-geek-entrepreneur/&media=https://heropress.com/wp-content/uploads/2019/09/091719-min-150x150.jpg&description=Life Stacks Up - From A Small Town Boy To A Geek Entrepreneur\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Life Stacks Up – From A Small Town Boy To A Geek Entrepreneur\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/life-stacks-up-from-a-small-town-boy-to-a-geek-entrepreneur/\" title=\"Life Stacks Up – From A Small Town Boy To A Geek Entrepreneur\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/life-stacks-up-from-a-small-town-boy-to-a-geek-entrepreneur/\">Life Stacks Up – From A Small Town Boy To A Geek Entrepreneur</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 Sep 2019 03:00:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"Donncha: WP Super Cache 1.6.9: security update\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://odd.blog/?p=89502593\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://odd.blog/2019/07/25/wp-super-cache-1-6-9-security-update/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1776:\"<p><a href=\"https://wordpress.org/plugins/wp-super-cache/\">WP Super Cache</a> is a full page caching plugin for WordPress.</p>\n\n\n\n<p>Version 1.6.9 has just been released and is a required upgrade for all users as it resolves a security issue in the debug log. The issue can only be exploited if debugging is enabled in the plugin which will not be the case for almost all users.</p>\n\n\n\n<p>The debug log is usually only enabled temporarily if a site owner is debugging a caching problem and isn’t something that should be left on permanently as it will slow down a site.</p>\n\n\n\n<p>If there is an existing debug log it will be deleted after updating the plugin.</p>\n\n\n\n<p>This release also improves the debug log by hiding sensitive data such as the ABSPATH directory of the WordPress install and login cookies. Unfortunately in the past users have copied the log file data into forum posts. A warning message has been added asking the site owner not to publish the debug log.</p>\n\n\n\n<p>Details of the security issue will be added to this post in time to allow sites to update their plugin.</p>\n\n<p><strong>Related Posts</strong><ul><li> <a href=\"https://odd.blog/2013/10/23/wp-super-cache-1-4/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 1.4\">WP Super Cache 1.4</a></li><li> <a href=\"https://odd.blog/2008/10/24/wp-super-cache-084-the-garbage-collector/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.8.4, the garbage collector\">WP Super Cache 0.8.4, the garbage collector</a></li><li> <a href=\"https://odd.blog/2009/01/09/wp-super-cache-087/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.8.7\">WP Super Cache 0.8.7</a></li></ul></p>\n<p><a href=\"https://odd.blog/2019/07/25/wp-super-cache-1-6-9-security-update/\" rel=\"nofollow\">Source</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 25 Jul 2019 12:57:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Donncha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Akismet: Version 4.1.2 of the Akismet WordPress Plugin is Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=2039\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://blog.akismet.com/2019/05/14/akismet-plugin-4-1-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:885:\"<p>Version 4.1.2 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available. It contains the following changes:</p>\n\n\n\n<ul>\n<li>We’ve reduced the number of API requests made by the plugin when attempting to verify the API key.</li>\n<li>We’re now including additional data in the pingback pre-check API request to help make stats more accurate.</li>\n<li>We fixed a bug that was enabling the “Check for Spam” button when no comments were eligible to be checked.</li>\n<li>We’ve improved Akismet’s AMP compatibility.</li>\n</ul>\n\n\n\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 14 May 2019 15:06:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Gary: React Isn’t The Problem\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"https://pento.net/?p=5045\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://pento.net/2019/04/04/react-isnt-the-problem/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6365:\"<p>As React (via Gutenberg) becomes more present in the WordPress world, I’m seeing some common themes pop up in conversations about it. I spoke a bit about this kind of thing at WordCamp US last year, but if you don’t feel like sitting through a half hour video, let me summarise my thoughts. <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>I agree that React is hard. I <em>strongly</em> disagree with the commonly contrasted view that HTML, CSS, PHP, or vanilla JavaScript are easy. They’re all just as hard to work with as React, sometimes more-so, particularly when having to deal with the exciting world of cross-browser compatibility.</p>\n\n\n\n<p>The advantage that PHP has over modern JavaScript development isn’t that it’s easy, or that the tooling is better, or more reliable, or anything like that. The advantage is that it’s familiar. If you’re new to web development, React is just as easy anything else to start with.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Something I’m seeing a lot.<br /><br />Beginners: This makes sense, we understand it.<br /><br />Experienced developers: There’s no way beginners would understand it. It’s not like <a thing I learned ten years ago>.</p>— <NAME> (@dan_abramov) <a href=\"https://twitter.com/dan_abramov/status/1096784072943300608?ref_src=twsrc%5Etfw\">February 16, 2019</a></blockquote>\n</div>\n\n\n\n<p>I’m honestly shocked when someone manages to wade through the mess of tooling (even pre-Gutenberg) to contribute to WordPress. It’s such an incomprehensible, thankless, unreliable process, the tenacity of anyone who makes it out the other side should be applauded. That said, this high barrier is unacceptable.</p>\n\n\n\n<p>I’ve been working in this industry for long enough to have forgotten the number of iterations of my personal development environment I’ve gone through, to get to where I can set up something for myself which <em>isn’t awful</em>. React wasn’t around for all of that time, so that can’t be the reason web development has been hard for as long as I remember. What is, then?</p>\n\n\n\n<h2>Doing Better</h2>\n\n\n\n<p>Over the past year or so, I’ve been tinkering with a tool to help deal with the difficulties of contributing to WordPress. That tool is called <a href=\"https://github.com/pento/testpress/\">TestPress</a>, it’s getting pretty close to being usable, at least on MacOS. Windows support is a little less reliable, but getting better. <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" /> If you enjoy tinkering with tools, too, you’re welcome to try out the development version, but it does still has some bugs in it. Feedback and PRs are always welcome! There are some screenshots in <a href=\"https://github.com/pento/testpress/issues/114\">this issue</a> that give an idea of what the experience is like, if you’d like to check it out that way.</p>\n\n\n\n<p>TestPress is not a panacea: at best, it’s an attempt at levelling the playing field a little bit. You shouldn’t need years of experience to build a reliable development environment, that should be the bare minimum we provide.</p>\n\n\n\n<h2>React is part of the solution</h2>\n\n\n\n<p>There’s still a lot of work to do to make web development something that anyone can easily get into. I think React is part of the solution to this, however.</p>\n\n\n\n<p>React isn’t without its problems, of course. Modern JavaScript can encourage iteration for the sake of iteration. Certainly, there’s a drive to React-ify All The Things (a trap I’m guilty of falling into, as well). React’s development model is fundamentally different to that of vanilla JavaScript or jQuery, which is why it can seem incomprehensible if you’re already well versed in the old way of doing things: it requires a shift in your mental model of how JavaScript works. This is a hard problem to solve, but it’s not insurmountable.</p>\n\n\n\n<p>Perhaps a little controversially, I <em>don’t</em> think that React is guilty of causing the web to become less accessible. At worst, it’s continuing the long standing practice of web standards making accessibility an optional extra. Building anything beyond a basic, non-interactive web page with just HTML and CSS will inevitably cause accessibility issues, unless you happen to be familiar with the mystical combinations of accessible tags, or applying aria attributes, or styling your content in just the right way (and none of the wrong ways).</p>\n\n\n\n<p>React (or any component-based development system, really) can improve accessibility for everyone, and we’re seeing this with Gutenberg already. By providing a set of base components for plugin and theme authors to use, we can ensure the correct HTML is produced for screen readers to work with. Much like desktop and mobile app developers don’t need to do anything to make their apps accessible (because it’s baked into the APIs they use to build their apps), web developers should have the same experience, regardless of the complexity of the app they’re building.</p>\n\n\n\n<p>Arguing that accessibility needs to be part of the design process is the wrong argument. Accessibility shouldn’t be a consideration, it should be unavoidable.</p>\n\n\n\n<h2>Do Better</h2>\n\n\n\n<p>Now, can we do better? Absolutely. There’s always room for improvement. People shouldn’t need to learn React if they don’t want to. They shouldn’t have to deal with the complexities of the WCAG. They should have the freedom to tinker, and the reassurance that they can tinker without breaking everything.</p>\n\n\n\n<p>The pre-React web didn’t arrive in its final form, all clean, shiny, and perfect. It took decades of evolution to get there. The post-React web needs some time to evolve, too, but it has the benefit of hindsight: we can compress the decades of evolving into a much shorter time period, provide a fresh start for those who want it, while also providing backwards compatibility with the existing ways of doing things.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 Apr 2019 06:31:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Gary\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Donncha: WP Super Cache 1.6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://odd.blog/?p=89502017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://odd.blog/2018/08/17/wp-super-cache-1-6-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4917:\"<p>WP Super Cache is a full page caching plugin for WordPress. When a page is cached almost all of WordPress is skipped and the page is sent to the browser with the minimum amount of code executed. This makes the page load much faster.</p>\n\n\n\n<p>1.6.3 is the latest release and is mostly a bugfix release but it also adds some new features.</p>\n\n\n\n<ul><li>Added cookie helper functions (<a href=\"https://github.com/Automattic/wp-super-cache/pull/580\">#580</a>)</li><li>Added plugin helper functions (<a href=\"https://github.com/Automattic/wp-super-cache/pull/574\">#574</a>)</li><li>Added actions to modify cookie and plugin lists. (<a href=\"https://github.com/Automattic/wp-super-cache/pull/582\">#582</a>)</li><li>Really disable garbage collection when timeout = 0 (<a href=\"https://github.com/Automattic/wp-super-cache/pull/571\">#571</a>)</li><li>Added warnings about DISABLE_WP_CRON (<a href=\"https://github.com/Automattic/wp-super-cache/pull/575\">#575</a>)</li><li>Don’t clean expired cache files after preload if garbage collection is disabled (<a href=\"https://github.com/Automattic/wp-super-cache/pull/572\">#572</a>)</li><li>On preload, if deleting a post don’t delete the sub directories if it’s the homepage. (<a href=\"https://github.com/Automattic/wp-super-cache/pull/573\">#573</a>)</li><li>Fix generation of semaphores when using WP CLI (<a href=\"https://github.com/Automattic/wp-super-cache/pull/576\">#576</a>)</li><li>Fix deleting from the admin bar (<a href=\"https://github.com/Automattic/wp-super-cache/pull/578\">#578</a>)</li><li>Avoid a strpos() warning. (<a href=\"https://github.com/Automattic/wp-super-cache/pull/579\">#579</a>)</li><li>Improve deleting of cache in edit/delete/publish actions (<a href=\"https://github.com/Automattic/wp-super-cache/pull/577\">#577</a>)</li><li>Fixes to headers code (<a href=\"https://github.com/Automattic/wp-super-cache/pull/496\">#496</a>)</li></ul>\n\n\n\n<p>This release makes it much easier for plugin developers to interact with WP Super Cache. In the past a file had to be placed in the “WP Super Cache plugins directory” so that it would be loaded correctly but in this release I’ve added new actions that will allow you to load code from other directories too.</p>\n\n\n\n<p>Use the <strong>wpsc_add_plugin</strong> action to add your plugin to a list loaded by WP Super Cache. Use it like this:<br /></p>\n\n\n\n<pre class=\"wp-block-preformatted\">do_action( \'wpsc_add_plugin\', WP_PLUGIN_DIR . \'/wpsc.php\' )</pre>\n\n\n\n<p>You can give it the full path, with or without ABSPATH. Use it after “init”. It only needs to be called once, but duplicates will not be stored.</p>\n\n\n\n<p>In a similar fashion, use <strong>wpsc_delete_plugin</strong> to remove a plugin.</p>\n\n\n\n<p>The release also makes it much simpler to modify the cookies used by WP Super Cache to identify “known users”. This is useful to identify particular types of pages such as translated pages that should only be shown to certain users. For example, visitors who have the English cookie will be shown cached pages in English. The German cookie will fetch German cached pages. The action <strong>wpsc_add_cookie</strong> makes this possible.</p>\n\n\n\n<pre class=\"wp-block-preformatted\">do_action( \'wpsc_add_cookie\', \'language\' );</pre>\n\n\n\n<p>Execute that in your plugin and WP Super Cache will watch out for the language cookie. The plugin will use the cookie name <em>and</em> value in determining what cached page to display. So “language = irish” will show a different page to “language = french”.</p>\n\n\n\n<p>Use <strong>wpsc_delete_cookie</strong> to remove a cookie. Cache files won’t be deleted. It’s doubtful they’d be served however because of the hashed key used to name the filenames.<br /></p>\n\n\n\n<pre class=\"wp-block-preformatted\">do_action( \'wpsc_delete_cookie\', \'language\' );</pre>\n\n\n\n<p>If you’re going to use either of the plugin or cookie actions here I recommend using <strong>Simple Caching</strong>. While the plugin will attempt to update mod_rewrite rules, it is much simpler to have PHP serve the files. Apart from that, any plugins loaded by WP Super Cache will be completely skipped if Expert mode is enabled.</p>\n\n<p><strong>Related Posts</strong><ul><li> <a href=\"https://odd.blog/2008/10/24/wp-super-cache-084-the-garbage-collector/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.8.4, the garbage collector\">WP Super Cache 0.8.4, the garbage collector</a></li><li> <a href=\"https://odd.blog/2009/01/09/wp-super-cache-087/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.8.7\">WP Super Cache 0.8.7</a></li><li> <a href=\"https://odd.blog/2010/02/08/wp-super-cache-099/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.9.9\">WP Super Cache 0.9.9</a></li></ul></p>\n<p><a href=\"https://odd.blog/2018/08/17/wp-super-cache-1-6-3/\" rel=\"nofollow\">Source</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Aug 2018 16:36:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Donncha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"<NAME>: Page Links To v3.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://markjaquith.wordpress.com/?p=5675\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://markjaquith.wordpress.com/2018/07/23/page-links-to/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2482:\"<p>Today I pushed an update to my redirect and repointing plugin, <a href=\"https://wordpress.org/plugins/page-links-to/\">Page Links To</a>. Tomorrow, this plugin will have been in the WordPress.org Plugin Directory for 13 years (it was the 339th plugin in the WordPress plugin repository; there are now over 75,000!).</p>\n<p>To celebrate its transition to a teenager, I’ve added some new features and UI enhancements.</p>\n<p>Last month, I received survey responses from over 800 Page Links To users and learned a lot about how it’s being put to work. One of the most interesting things I found was how many people are using it for URL redirects. For example, they might have a really long URL on their own site or someone else’s site that they want to be nice. <em>example.com/summer-sale</em> instead of <em>example.com/store/specials.aspx?season=summer&_utm_source=internal</em>. But in order to create these redirects, you have to go through the cluttered and sometimes slow post creation screen. All you really need to create a redirect is a title, a destination URL, and a local short URL.</p>\n<p>You’ll now find a menu item “Add Page Link” that will allow you to quickly add a redirected Page without having to wait for the entire WordPress post editing interface to load. It’s <em>super</em> fast, and it doesn’t redirect you away from the screen you’re on.</p>\n<p><img /></p>\n<p>Since short URLs are better for sharing (and remembering), the UI will give you a little push to shorten the URL if the one generated from your title is too long. From there, you can Save Draft or Publish.</p>\n<img />Hey, that URL is getting a bit long\n<img />Custom slug, for a better short URL\n<p>Additionally, this release includes a “link” indicator on post and page list screens, so you can easily see what items have been re-pointed with Page Links To. When hovered, the link icon will reveal the destination URL for a quick view.</p>\n<img />The “link” icon means that this item has been pointed elsewhere.\n<p>If you want to grab the “local” short URL (which will be redirected to your chosen URL when someone visits it), just click “Copy Short URL” from the actions, and it’ll be in your clipboard.</p>\n<img />Hover the “link” icon to see where it’s pointing.\n<p>That’s it for version 3.0, but I’ll have more to announce soon — stay tuned!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Jul 2018 22:02:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"<NAME>: Making ScoutDocs: Build Tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://markjaquith.wordpress.com/?p=5665\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://markjaquith.wordpress.com/2018/06/19/making-scoutdocs-build-tools/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2928:\"<p>Continuing my series about <a href=\"https://wordpress.org/plugins/scoutdocs/\">ScoutDocs</a> and the process of building it, this week I’m talking about <strong>Build Tools</strong>.</p>\n<p><img /><em>What is <a href=\"https://scoutdocs.com/\">ScoutDocs</a>? ScoutDocs is a WordPress plugin that adds simple file-sharing to your WordPress site.</em></p>\n<p>Coding in React involves JSX, a bizarre-but-wonderful XML syntax that you dump directly into the middle of your JavaScript code. It feels exquisitely wrong. Browsers agree, so your JSX-containing JS code will have to be transpiled to regular JavaScript. This can involve using a complex maze of tools. Babel, NPM, Webpack, Browserify, Gulp, Grunt, Uglify, Uglifyify (yes, you read that right), and more. You have decisions to make, and you will find fierce advocates for various solutions.</p>\n<p>For ScoutDocs, I decided to go with <a href=\"https://gruntjs.com/\">Grunt</a> for task running, because I was already comfortable with it, and I needed it for <a href=\"https://www.npmjs.com/package/grunt-wp-deployhttps://www.npmjs.com/package/grunt-wp-deploy\">grunt-wp-deploy</a>. <b>Use a task runner you are already comfortable with.</b> Even if it is just NPM scripts. You’re learning a lot of new things already. It’s okay to keep your task runner setup.</p>\n<p>Next, I had to choose a JS bundler which would let me write and use modular code that gets pulled together into a browser-executable bundle. After deliberating between <a href=\"https://webpack.js.org\">Webpack</a> and <a href=\"http://browserify.org/\">Browserify</a>, I chose Browserify. <b>Webpack is really complicated.</b> It is also very powerful. I recommend you avoid it until you need it. I haven’t needed it yet, and found Browserify to be easier to configure and use, even though it’s a bit on the slow side.</p>\n<p>As I was building ScoutDocs and tweaking my dev tools, tweaking my Grunt file, and writing code to search/replace strings etc, I began to feel like the time I was spending too much time on tooling. Was I becoming one of those people who spend all their time listening to productivity podcasts instead of… being productive? I can see how someone could get sucked into that trap, but putting a reasonable amount of time into configuring your development tools can pay dividends for you beyond simply the time saved. It can also prevent mistakes, keep you in coding mode more often, and increasing your confidence in your code builds. <b>Spend the time up front to make your tools work for you.</b></p>\n<p>Other posts in this series:</p>\n<ul>\n<li><a href=\"https://markjaquith.wordpress.com/2018/06/01/lessons-learned-making-scoutdocs-outsourcing/\">Outsourcing</a></li>\n<li><a href=\"https://markjaquith.wordpress.com/2018/06/11/making-scoutdocs-react\">React</a></li>\n<li>WordPress Rest API</li>\n<li>PHP 7</li>\n<li>Build tools</li>\n<li>Unit testing</li>\n</ul>\n<p> </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 19 Jun 2018 17:59:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"Lorelle on WP: Vulnerability in phpMyAdmin Requires Immediate Patch\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"http://lorelle.wordpress.com/?p=14409\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://lorelle.wordpress.com/2018/01/06/vulnerability-in-phpmyadmin-requires-immediate-patch/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4312:\"<p>A <a href=\"http://www.itprotoday.com/patch-management/critical-csrf-security-vulnerability-phpmyadmin-database-tool-patched\" title=\"Critical CSRF Vulnerability in phpMyAdmin Database Tool Patched | IT Pro\">critical CSRF Vulnerability in phpMyAdmin Database administration tool</a> has been found and a <a href=\"https://www.phpmyadmin.net/security/PMASA-2017-9/\" title=\"phpMyAdmin - Security - PMASA-2017-9\">patch is available</a> for all computers and servers running the MySQL database. </p>\n<p>Does this include you?</p>\n<p>If you are using WordPress, yes it does. </p>\n<p>Contact your web host to ensure phpMyAdmin is updated immediately. </p>\n<p>If you are self-hosted and manage your own server, update phpMyAdmin immediately. </p>\n<p>If you are using WordPress or phpMyAdmin and MySQL on your computer through <a href=\"http://www.wampserver.com/en/\" title=\"WAMP\">WAMP</a>, <a href=\"http://www.mamp.info/en/index.html\" title=\"MAMP\">MAMP</a>, <a href=\"http://www.apachefriends.org/en/xampp.html\" title=\"XAMPP\">XAMPP</a>, <a href=\"http://www.instantwp.com/\" title=\"Instant WordPress\">Instant WordPress</a>, <a href=\"http://serverpress.com/products/desktopserver/\" title=\"DesktopServer\">DesktopServer</a>, <a href=\"http://bitnami.org/stack/wordpress\" title=\"BitNami\">BitNami</a> or any of the other ways you can install WordPress on your computer or a stick (USB), update phpMyAdmin by using the patch or check the install technique’s site for updates. </p>\n<p><strong>If you are using WordPress.com, don’t worry.</strong> This does not apply to you or your site. </p>\n<p>The flaw affects phpMyAdmin versions 4.7.x prior to 4.7.7. Hopefully, your server/web host company has been updating phpMyAdmin all along and you don’t need to worry, but even though this is a medium security vulnerability, it is your responsibility as a site owner and administrator to ensure that your site is safe. Don’t just rely on GoDaddy, Dreamhost, or whatever hosting service you use to take care of these things for you. Sometimes they are on top of these before an announcement is made public. Other times, they are clueless and require customer intervention and nagging.<br />\n<span id=\"more-14409\"></span></p>\n<p>Now, what is phpMyAdmin?</p>\n<p>MySQL is an open source database program, and <a href=\"https://www.phpmyadmin.net/\" title=\"phpMyAdmin\">phpMyAdmin</a> is the free, open source tool that makes the administration and use of MySQL easier to manage. <em>It is not a database. It is a database manager.</em> You can <a href=\"https://lorelle.wordpress.com/2014/08/10/find-search-replace-and-delete-in-the-wordpress-database/\" title=\"Find, Search, Replace, and Delete in the WordPress Database « Lorelle on WordPress\">easily search and replace data</a> in the database, make changes, and do other maintenance and utility tasks in the database.</p>\n<p>Every installation of WordPress requires PHP and MySQL along with a variety of other web-based programming packages and software. Most installations by web hosts and portable versions of WordPress add phpMyAdmin to manage the WordPress site. It is not required for WordPress to work, but don’t assume that it is or isn’t installed. CHECK. </p>\n<p>To find out if phpMyAdmin is installed on your site:</p>\n<ol>\n<li>Check with your web host and ask. Don’t expect their customer service staff to know for sure. Make them check your account and verify whether or not it is installed, and if they’ve updated. Push them for a specific answer.</li>\n<li>Check the site admin interface (cPanel, Plesk, etc.) to see if it is installed.</li>\n<li>Log into your site through secure FTP into the root (if you have access) and look for the installation at <em>/usr/share/phpmyadmin</code> or <code>localhost/phpmyadmin</code></em>. Unfortunately, it could be anywhere depending upon the installation as these are virtual folders, not folders found on your computer, so it must be assigned to a location.</li>\n<li>If running a portable installation of MySQL and/or WordPress, follow the instructions for that tool and download and install all patches to ensure phpMyAdmin is updated to the latest secure version.</li>\n</ol>\n<div class=\"sig\">\n<p><img src=\"https://lorelle.files.wordpress.com/2006/08/sig.gif\" alt=\"\" /></p>\n<hr /></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 06 Jan 2018 16:55:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"bbPress: bbPress 2.5.14\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://bbpress.org/?p=186831\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://bbpress.org/blog/2017/09/bbpress-2-5-14/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:710:\"<p>Today we are releasing bbPress 2.5.14, which fixes a few small bugs we’ve noticed since 2.5.13 was released, in particular we’ve fixed some incompatibilities when using PHP 7.1, an unexpected debug notice with the Topics & Replies widgets, and improved validation and sanitization of database properties with the forum converter.</p>\n<p>Also, remember that since bbPress 2.5.12, the minimum WordPress version allowed is 4.7. If you need to use a previous version of WordPress, you will want to continue to use 2.5.11.</p>\n<p>bbPress 2.6 is still in the release candidate phase while we tie up some loose ends across WordPress.org, but I’ll let you know when it’s ready to go!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Sep 2017 19:39:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"Lorelle on WP: WordPress School: Shortcodes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"http://lorelle.wordpress.com/?p=14325\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://lorelle.wordpress.com/2017/08/18/wordpress-school-shortcodes/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:12915:\"<p><a href=\"https://lorelle.wordpress.com/category/wordpress/wordpress-school/\" title=\"WordPress School taught by Lorelle VanFossen.\"><img /></a></p>\n<p>WordPress shortcodes are abbreviated code placed into the WordPress Visual or Text Editors that expands into a larger code structure. As we continue with <a href=\"https://lorelle.wordpress.com/classes-and-workshops/wordpress-school/\" title=\"WordPress School « Lorelle on WordPress\">Lorelle’s WordPress School free online course</a>, it’s time to explore the basics of WordPress shortcodes.</p>\n<p>The following is the embed code for a Google Map, pointing to one of my favorite local museums, <a href=\"http://ricenorthwestmuseum.com/\">The Rice Northwest Rocks and Minerals Museum</a> in Hillsboro, Oregon:</p>\n<p><code><a href=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2792.809130780463!2d-122.94987648443889!3d45.57427677910247!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x54950456e76e254b%3A0xdfad5d11bde5b6cc!2s26385+NW+Groveland+Dr%2C+Hillsboro%2C+OR+97124!5e0!3m2!1sen!2sus!4v1502560000052\">https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2792.809130780463!2d-122.94987648443889!3d45.57427677910247!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x54950456e76e254b%3A0xdfad5d11bde5b6cc!2s26385+NW+Groveland+Dr%2C+Hillsboro%2C+OR+97124!5e0!3m2!1sen!2sus!4v1502560000052</a></code></p>\n<p>When the post or Page is saved, WordPress.com automatically converts it to the embed code for Google Maps like this:</p>\n<p><code>[googlemaps https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2792.809130780463!2d-122.94987648443889!3d45.57427677910247!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x54950456e76e254b%3A0xdfad5d11bde5b6cc!2s26385+NW+Groveland+Dr%2C+Hillsboro%2C+OR+97124!5e0!3m2!1sen!2sus!4v1502560000052&w=600&h=450]</code></p>\n<p>This is what you see in your Visual or Text/HTML editors. Doesn’t look like a map, yet, does it? </p>\n<p>When the post is previewed or published, you will see the map like this:</p>\n<div class=\"googlemaps\"></div>\n<p>The map is not a screenshot. It is interactive. Zoom in and out and move around on the map. The <a href=\"https://en.support.wordpress.com/google-maps/\" title=\"Google Maps — Support — WordPress.com\">Google Maps shortcode</a> taps into the Google Maps API allowing a live section of the map to be embedded on your site to help people find locations and directions. </p>\n<p>Google Maps are a great way of providing instructions to the location of a store or company on a Contact web page. They are also fun to embed in a post about a favorite park, hike, fishing hole, vacation spot, or even create a custom map that charts your travels, hikes, or a specific route for shopping or exploring. </p>\n<p><strong>NOTE:</strong> <em>Google Map embeds are tricky. You need to search for the exact address and use that embed code. If you search for a business name, you may get an invalid server request from Google Maps. Also note that WordPress.com has made it easier to use shortcodes by skipping the extra code and converting links and embed codes automatically to shortcodes. This may require saving your post as a draft twice before you can see the results on the front end preview of the post or Page.</em></p>\n<p>Shortcodes allow the user to add content and functionality to a WordPress site without knowing extensive code or digging into the programming of a WordPress Theme or Plugin. With the shortcut of a shortcode, WordPress users may add all sorts of customization features to their site.</p>\n<p>There are a variety of shortcodes in the core of WordPress. WordPress Themes have the ability to enable or disable these, and add more, as do WordPress Plugins.</p>\n<p>Let’s experiment with the <a title=\"Archives Shortcode — Support — WordPress.com\" href=\"http://en.support.wordpress.com/archives-shortcode/\">Archives Shortcode</a>.</p>\n<ol>\n<li>Add a New Page to your site. Title it “Site Map” or “Archives.”</li>\n<li>Type in <code>[archives]</code>.</li>\n<li>Preview, then publish the post when ready to see a listing of all of the published posts on your site in a list.</li>\n</ol>\n<p>Check out my <a href=\"https://lorelle.wordpress.com/site-map/\" title=\"Site Map « Lorelle on WordPress\">site map</a> as an example of what’s possible. </p>\n<h3>What You Need to Know About WordPress Shortcodes</h3>\n<p>Shortcodes come with WordPress out of the box, and also with WordPress Themes and Plugins. These snippets of code allow the user to add functionality to their site without touching the code. </p>\n<p>The PHP code that enables the functionality, and adds the ability to use the abbreviated code to generate that functionality on the site, is called a <code>function</code>. </p>\n<p>At its core, this is the function found to generate all WordPress Shortcodes:</p>\n<pre class=\"brush: xml; title: ; notranslate\">//[foobar]\nfunction foobar_func( $atts ){\n return \"foo and bar\";\n}\nadd_shortcode( \'foobar\', \'foobar_func\' );</pre>\n<p>The attributes, represented in this abbreviated version by <code>$atts</code>, are the instructions as to what the shortcode is to do.</p>\n<p>In the expanded form with functionality, I’ve called the shortcode “elephant” and set up two attribute values, “trumpet loudly” and “stomp.” </p>\n<pre class=\"brush: xml; title: ; notranslate\">// [elephant foo=\"foo-value\"]\nfunction elephant_func( $atts ) {\n $a = shortcode_atts( array(\n \'foo\' => \'trumpet loudly\',\n \'bar\' => \'stomp\',\n ), $atts );\n\n return \"foo = {$a[\'foo\']}\";\n}\nadd_shortcode( \'elephant\', \'elephant_func\' );</pre>\n<p>Depending upon what “foo” and “bar” represent, the results would be “trumpet loudly” and “stomp.” What these represent are HTML code, modifications to HTML code, and initiates the programming such as generating a list of all the posts you’ve published as an archive list.</p>\n<p>Right now, you aren’t at the stage where you can program shortcodes and add them to WordPress Themes or create WordPress Plugins, so I’m not going to dive into these much deeper. You need to learn how these work and how to use them on your site, and the more you use them, the better feel you will have for what a shortcode can do on your site. </p>\n<p>WordPress.com offers a <a href=\"https://en.support.wordpress.com/category/shortcodes/\" title=\"Support — WordPress.com\">wide range of shortcodes</a> to add functionality to your site. To learn about how to use these, see <a title=\"Shortcodes — Support — WordPress.com\" href=\"http://en.support.wordpress.com/shortcodes/\">Shortcodes — Support</a>. </p>\n<p>Here are some examples of shortcodes to experiment with on WordPress.com.</p>\n<ul>\n<li><a href=\"https://en.support.wordpress.com/videos/youtube/\" title=\"YouTube — Support — WordPress.com\">YouTube Shortcode</a></li>\n<li><a href=\"https://en.support.wordpress.com/audio/\" title=\"Audio — Support — WordPress.com\">Audio Shortcode</a></li>\n<li><a href=\"https://en.support.wordpress.com/soundcloud-audio-player/\">SoundCloud Audio Player Shortcode</a></li>\n<li><a href=\"https://en.support.wordpress.com/gallery/\" title=\"Galleries and Slideshows — Support — WordPress.com\">Galleries and Slideshows Shortcode</a></li>\n<li><a href=\"https://en.support.wordpress.com/instagram/\" title=\"Instagram — Support — WordPress.com\">Instagram Shortcode</a></li>\n<li><a href=\"https://en.support.wordpress.com/archives-shortcode/\" title=\"Create an Archive using the Archives Shortcode — Support — WordPress.com\">Archives Shortcode</a></li>\n<li><a href=\"https://en.support.wordpress.com/blog-subscription-shortcode/\" title=\"Blog Subscription Shortcode — Support — WordPress.com\">Blog Subscription Shortcode</a></li>\n<li><a href=\"https://en.support.wordpress.com/forms/contact-form/\" title=\"Contact Form — Support — WordPress.com\">Contact Form Shortcode</a></li>\n<li><a href=\"https://en.support.wordpress.com/google-maps/\" title=\"Google Maps — Support — WordPress.com\">Google Maps Shortcode</a></li>\n<li><a href=\"https://en.support.wordpress.com/recipes/\" title=\"Recipes — Support — WordPress.com\">Recipes Shortcode</a></li>\n</ul>\n<h4>More Information on WordPress Shortcodes</h4>\n<ul>\n<li><a title=\"Shortcodes — Support — WordPress.com\" href=\"http://en.support.wordpress.com/shortcodes/\">Shortcodes – Support – WordPress.com</a></li>\n<li><a title=\"Shortcodes — Support — WordPress.com\" href=\"http://en.support.wordpress.com/shortcodes/\">List of Shortcodes available for WordPress.com sites</a></li>\n<li><a title=\"Shortcode « WordPress Codex\" href=\"http://codex.wordpress.org/Shortcode\">Shortcode – WordPress Codex</a></li>\n<li><a title=\"Support — WordPress.com\" href=\"http://en.support.wordpress.com/category/shortcodes/\">Shortcodes for WordPress.com</a></li>\n<li><a title=\"Gallery Shortcode « WordPress Codex\" href=\"http://codex.wordpress.org/Gallery_Shortcode\">Gallery Shortcode – WordPress Codex</a></li>\n<li><a href=\"https://www.smashingmagazine.com/2012/05/wordpress-shortcodes-complete-guide/\" title=\"WordPress Shortcodes: A Complete Guide – Smashing Magazine\">WordPress Shortcodes: A Complete Guide – Smashing Magazine</a></li>\n<li><a href=\"http://www.wpbeginner.com/wp-tutorials/how-to-add-a-shortcode-in-wordpress/\" title=\"How to Add A Shortcode in WordPress?\">How to Add A Shortcode in WordPress? – WPBeginner</a></li>\n<li><a href=\"http://www.wpbeginner.com/beginners-guide/7-essential-tips-for-using-shortcodes-in-wordpress/\" title=\"7 Essential Tips for Using Shortcodes in WordPress\">7 Essential Tips for Using Shortcodes in WordPress – WPBeginner</a></li>\n<li><a href=\"https://code.tutsplus.com/articles/getting-started-with-wordpress-shortcodes--wp-21197\" title=\"Getting Started With WordPress Shortcodes\">Getting Started With WordPress Shortcodes – Envatotuts+</a></li>\n</ul>\n<h3>Assignment</h3>\n<p><img />Your assignment in these WordPress School exercises is to experiment with WordPress shortcodes, specifically the ones available on WordPress.com. </p>\n<p>I’ve listed some examples of shortcodes on WordPress.com above, and you may find more in the <a href=\"https://en.support.wordpress.com/category/shortcodes/\" title=\"Support — WordPress.com\">WordPress.com list of Shortcodes</a>.</p>\n<p>Your assignment is to use shortcodes to add features to your site. </p>\n<ul>\n<li>Create a Page called “Site Map” or “Archives” and add an archive list shortcode.</li>\n<li>Add a Google Map to a post or Page using the Google Maps shortcode.</li>\n<li>Add a gallery to a post or Page with the gallery shortcode, testing the various options (parameters) to get the look and feel you like best.</li>\n<li>Add a recipe to a post using the recipe shortcode.</li>\n<li>Find another shortcode with a variety of features to experiment with. See how many ways you can change the look and feel of the content. If you wish, blog about your discoveries with screenshots or examples in the post. Let us know about it in the comments below so we can come inspect your work.</li>\n</ul>\n<p><em>This is a tutorial from <a href=\"https://lorelle.wordpress.com/classes-and-workshops/wordpress-school/\" title=\"WordPress School « Lorelle on WordPress\">Lorelle’s WordPress School</a>. For more information, and to join this free, year-long, online WordPress School, see:</em></p>\n<ul>\n<li><a href=\"https://lorelle.wordpress.com/2015/01/24/welcome-to-lorelles-wordpress-school/\" title=\"Welcome to Lorelle’s WordPress School « Lorelle on WordPress\">Lorelle’s WordPress School Introduction</a></li>\n<li><a href=\"https://lorelle.wordpress.com/classes-and-workshops/wordpress-school/\" title=\"WordPress School « Lorelle on WordPress\">Lorelle’s WordPress School Description</a></li>\n<li><a href=\"https://lorelle.wordpress.com/classes-and-workshops/wordpress-school/tutorials/\" title=\"Tutorials « Lorelle on WordPress\">WordPress School Tutorials List</a></li>\n<li><a href=\"https://plus.google.com/u/0/communities/115251582756616355670\" title=\"WordPress School Google+ Community\">WordPress School Google+ Community</a></li>\n<li><a href=\"https://lorelle.wordpress.com/2015/01/12/wordpress-publishing-checklist/\" title=\"WordPress Publishing Checklist\">WordPress Publishing Checklist</a></li>\n<li><a href=\"https://lorelle.wordpress.com/classes-and-workshops/wordpress-school/feedback-and-criticism/\" title=\"How to Give Feedback and Criticism - Lorelle\'s WordPress School.\">How to Give Feedback and Criticism</a></li>\n</ul>\n<div class=\"sig\">\n<p><img src=\"https://lorelle.files.wordpress.com/2006/08/sig.gif\" alt=\"\" /></p>\n<hr /></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 18 Aug 2017 11:02:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"bbPress: bbPress 2.5.13\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://bbpress.org/?p=185643\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://bbpress.org/blog/2017/07/bbpress-2-5-13/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:983:\"<p>Today we are releasing bbPress 2.5.13, which fixes a few small bugs we’ve noticed since 2.5.12 was released, and also adds some sanitization to anonymous user data that went missing from previous versions.</p>\n<p>If your site allows anonymous users (users without registered accounts) to create topics & replies in your forums, you’ll want to upgrade to 2.5.13 right away. This feature is not very widely used on public forums because spammers very aggressively target these kinds of sites, but for communities that rely on this feature, please know you can safely upgrade to 2.5.13 without any issues.</p>\n<p>Also, remember that since bbPress 2.5.12, the minimum WordPress version allowed is 4.7. If you need to use a previous version of WordPress, you will want to continue to use 2.5.11.</p>\n<p>bbPress 2.6 is still in the release candidate phase while we tie up some loose ends across WordPress.org, but I’ll let you know when it’s ready to go!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Jul 2017 20:17:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WordPress.tv Blog: The Humanity Of WordPress – Rich Robinkoff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.wordpress.tv/?p=654\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://blog.wordpress.tv/2016/09/23/the-humanity-of-wordpress-rich-robinkoff/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:922:\"<p><NAME> “nails it” during his presentation titled The Humanity of WordPress!</p>\n<p>Rich gave this presentation at <a href=\"https://2016.columbus.wordcamp.org/speakers/\">WordCamp Columbus</a> on August 27th and again at <a href=\"https://wordpress.tv/?s=pittsburgh\">WordCamp Pittsburgh</a> on September 17th. I was lucky enough to be in attendance in Pittsburgh.</p>\n<p>He talks about human interactions and the fact that people may not realize the impact they might have on somebodies life in just a short conversation. Rich gives several examples of the relationships that can be built and the giving nature of the WordPress Community.</p>\n<p>Please watch until the end as Rich talks about the contributions to the WordPress Community by #WPMOM.</p>\n<p></p>\n<p>See more great WordCamp videos at <a href=\"https://wordpress.tv\" target=\"_blank\">WordPress.tv »</a></p>\n<p> </p>\n<p> </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 23 Sep 2016 17:14:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WordPress.tv Blog: Data-Driven SEO with Google Analytics – <NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.wordpress.tv/?p=634\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://blog.wordpress.tv/2016/09/10/data-driven-seo-with-google-analytics-rebecca-haden/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:691:\"<div class=\"video-description\">\n<p>SEO can be confusing if you rely on tips and tricks. Instead, you can rely on data from your own website.This presentation by <NAME> from <a href=\"http://wordpress.tv/event/wordcamp-fayetteville-2016/\">WordCamp Fayetteville 2016</a> helps you to get to know Google Analytics and other analytics tools with WordPress plugins, find the actionable information in your analytics reports, and implement your own SEO strategy.</p>\n<p></p>\n<p><a href=\"http://2016.fayetteville.wordcamp.org/files/2016/07/Data-Driven-SEO.ppt\">Presentation Slides »</a></p>\n<p>More great WordCamp videos on <a href=\"http://wordpress.tv/\">WordPress.tv »</a></p>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 10 Sep 2016 00:16:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"WP Mobile Apps: WordPress for iOS: Version 6.4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://apps.wordpress.com/?p=3568\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://apps.wordpress.com/2016/08/26/wordpress-for-ios-version-6-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4146:\"<p>Hi there, WordPress users! <a href=\"https://itunes.apple.com/us/app/wordpress/id335703880?mt=8&uo=6&at=&ct=\">Version 6.4 of the WordPress for iOS app</a> is now available in the App Store.</p>\n<h1>What’s New:</h1>\n<p><strong>iPad Keyboard Shortcuts.</strong> Press down the command key on your external keyboard to see a list of available shortcuts in the main screen and in the post editor.</p>\n\n<a href=\"https://apps.wordpress.com/img_0007/\"><img width=\"300\" height=\"225\" src=\"https://apps.files.wordpress.com/2016/08/img_0007.png?w=300&h=225\" class=\"attachment-medium size-medium\" alt=\"\" /></a>\n<a href=\"https://apps.wordpress.com/img_0006/\"><img width=\"300\" height=\"225\" src=\"https://apps.files.wordpress.com/2016/08/img_0006.png?w=300&h=225\" class=\"attachment-medium size-medium\" alt=\"\" /></a>\n\n<p><strong>Share Media.</strong> Our sharing extension now supports media, too!</p>\n\n<a href=\"https://apps.wordpress.com/img_2385/\"><img width=\"169\" height=\"300\" src=\"https://apps.files.wordpress.com/2016/08/img_2385.png?w=169&h=300\" class=\"attachment-medium size-medium\" alt=\"\" /></a>\n<a href=\"https://apps.wordpress.com/img_2386/\"><img width=\"169\" height=\"300\" src=\"https://apps.files.wordpress.com/2016/08/img_2386.png?w=169&h=300\" class=\"attachment-medium size-medium\" alt=\"\" /></a>\n\n<p><strong>People Management.</strong> You can now manage your site’s users and roles using your mobile device.</p>\n\n<a href=\"https://apps.wordpress.com/img_2392/\"><img width=\"169\" height=\"300\" src=\"https://apps.files.wordpress.com/2016/08/img_2392.png?w=169&h=300\" class=\"attachment-medium size-medium\" alt=\"\" /></a>\n<a href=\"https://apps.wordpress.com/img_2393/\"><img width=\"169\" height=\"300\" src=\"https://apps.files.wordpress.com/2016/08/img_2393.png?w=169&h=300\" class=\"attachment-medium size-medium\" alt=\"\" /></a>\n<a href=\"https://apps.wordpress.com/img_2394/\"><img width=\"169\" height=\"300\" src=\"https://apps.files.wordpress.com/2016/08/img_2394.png?w=169&h=300\" class=\"attachment-medium size-medium\" alt=\"\" /></a>\n\n<p><strong>Search in the Reader.</strong> The Reader now has search capability and autocompletes suggestions.</p>\n\n<a href=\"https://apps.wordpress.com/img_2390/\"><img width=\"169\" height=\"300\" src=\"https://apps.files.wordpress.com/2016/08/img_23901.png?w=169&h=300\" class=\"attachment-medium size-medium\" alt=\"\" /></a>\n<a href=\"https://apps.wordpress.com/img_2389/\"><img width=\"169\" height=\"300\" src=\"https://apps.files.wordpress.com/2016/08/img_2389.png?w=169&h=300\" class=\"attachment-medium size-medium\" alt=\"\" /></a>\n\n<p><strong>Improved Gestures.</strong> Full screen image previews can be dismissed with a swanky flick/toss gesture.</p>\n<p><strong>Bugs Squashed.</strong> A new homemade bug spray formula has allowed us to squash <a href=\"https://github.com/wordpress-mobile/WordPress-iOS/issues?q=is%3Aclosed+is%3Aissue+milestone%3A6.4+label%3A%22%5BType%5D+Bug%22\">many uninvited guests</a>.</p>\n<p><strong>And much more! </strong>You can see the full list of changes <a href=\"https://github.com/wordpress-mobile/WordPress-iOS/issues?utf8=✓&q=is%3Aissue%20is%3Aclosed%20milestone%3A6.4\">here</a>.</p>\n<h1>Thank You</h1>\n<p>Thanks to all of the contributors who worked on this release:<br />\n<a href=\"https://github.com/aerych\">@aerych</a>, <a href=\"https://github.com/astralbodies\">@astralbodies</a>, <a href=\"https://github.com/claudiosmweb\">@claudiosmweb</a>, <a href=\"https://github.com/diegoreymendez\">@diegoreymendez</a>, <a href=\"https://github.com/frosty\">@frosty</a>, <a href=\"https://github.com/jleandroperez\">@jleandroperez</a>, <a href=\"https://github.com/koke\">@koke</a>, <a href=\"https://github.com/kurzee\">@kurzee</a>, <a href=\"https://github.com/kwonye\">@kwonye</a>, <a href=\"https://github.com/oguzkocer\">@oguzkocer</a>, <a href=\"https://github.com/sendhil\">@sendhil</a>, <a href=\"https://github.com/SergioEstevao\">@SergioEstevao</a>.</p>\n<p>You can track the development progress for the next update by visiting <a href=\"https://github.com/wordpress-mobile/WordPress-iOS/issues?utf8=✓&q=is%3Aissue+milestone%3A6.5+\" target=\"_blank\">our 6.5 milestone on GitHub</a>. Until next time!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 26 Aug 2016 12:27:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"diegoreymendez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"WP Mobile Apps: WordPress for Android: Version 5.7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://apps.wordpress.com/?p=3535\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://apps.wordpress.com/2016/08/26/wordpress-for-android-version-5-7/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2330:\"<p>Hello WordPress users! <a href=\"https://play.google.com/store/apps/details?id=org.wordpress.android\" target=\"_blank\">Version 5.7 of the WordPress for Android app</a> is now available in the Google Play Store.</p>\n<h1>New “Plans” section in My Site</h1>\n<p>Starting with 5.7, you can see your current WordPress.com plan and learn more about the benefits we offer in other plans.</p>\n<p><img /></p>\n<h1>Manage your followers and viewers from the “People Management” screen</h1>\n<p>You’re now able to use the app to invite new Administrators, Editors, Authors or Contributors to your site, or remove unwanted followers.</p>\n<p><img /></p>\n<h1 id=\"other-changes\">Other Changes</h1>\n<p>Version 5.7 also comes with a few other changes and fixes:</p>\n<ul>\n<li>Reader tweaks in the Post Detail screen for tablets.</li>\n<li>Keeps the “View Site” link visible for newly created users.</li>\n<li>Fixes a rare crash when creating a new account.</li>\n</ul>\n<p>You can track our development progress for the next release by visiting <a href=\"https://github.com/wordpress-mobile/WordPress-Android/milestones/5.8\">our 5.8 milestone on GitHub</a>.</p>\n<h1>Beta</h1>\n<p>Do you like keeping up with what’s new in the app? Do you enjoy testing new stuff before anyone else? Our testers have access to beta versions with updates shipped directly through Google Play. The beta versions may have new features, new fixes — and possibly new bugs! Testers make it possible for us to improve the overall app experience, and offer us invaluable development feedback.</p>\n<p>Want to become a tester? <a href=\"https://play.google.com/apps/testing/org.wordpress.android\">Opt-in</a>!</p>\n<h1>Thank you</h1>\n<p>Thanks to our GitHub contributors: <a href=\"https://github.com/0nko\">@0nko</a>, <a href=\"https://github.com/aforcier\">@aforcier</a>, <a href=\"https://github.com/hypest\">@hypest</a>, <a href=\"https://github.com/karambir252\">@karambir252</a>, <a href=\"https://github.com/khaykov\">@khaykov</a>, <a href=\"https://github.com/kwonye\">@kwonye</a>, <a href=\"https://github.com/maxme\">@maxme</a>, <a href=\"https://github.com/mzorz\">@mzorz</a>, <a href=\"https://github.com/nbradbury\">@nbradbury</a>, <a href=\"https://github.com/oguzkocer\">@oguzkocer</a>, and <a href=\"https://github.com/theck13\">@theck13</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 26 Aug 2016 11:33:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Maxime\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"Joseph: Trying Out The Twenty Sixteen Theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://josephscott.org/?p=15135\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://blog.josephscott.org/2016/02/10/trying-out-the-twenty-sixteen-theme/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:547:\"<p>Switched to the <a href=\"https://wordpress.org/themes/twentysixteen/\">Twenty Sixteen WordPress Theme</a>.</p>\n<p><a href=\"https://blog.josephscott.org/wp-content/uploads/2016/02/twentysixteen-screenshot-1.png\" rel=\"attachment wp-att-15136\"><img src=\"https://blog.josephscott.org/wp-content/uploads/2016/02/twentysixteen-screenshot-1-1024x768.png\" alt=\"twentysixteen-screenshot\" width=\"840\" height=\"630\" class=\"aligncenter size-large wp-image-15136\" /></a></p>\n<p>I opted to remove the sidebar, to give more focus on the content of the page.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Feb 2016 18:11:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"josephscott\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Joseph: Recommended Consultants\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://josephscott.org/?p=9888\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://blog.josephscott.org/2015/07/22/recommended-consultants/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:277:\"<p>My personal list of WordPress consultants has dried up ( some took full time jobs, the rest are always booked solid ). Now I’m directing people to the <a href=\"http://jkudish.com/recommendations/\">Recommended Consultants & Resources list</a> from Joey Kudish.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Jul 2015 14:01:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"josephscott\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"<NAME>: Smarter algorithms, smarter defaults\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"http://nacin.com/?p=4329\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://nacin.com/2015/05/24/smart-algorithms-defaults/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:757:\"<blockquote><p>Instead of showing the user an alert that something might not work, maybe we can build a smarter algorithm. Instead of asking the user to make a choice up front, maybe we can set a smart default and see if there is high demand after launch for more customization.</p></blockquote>\n<p>— <a href=\"http://www.rebeccarolfe.com/\"><NAME></a> on the Google Chrome team, interviewed in <a href=\"http://www.refinery29.com/female-white-hat-hackers-google-chrome\">The Badass Women of Chrome’s Security Team</a> in Refinery29.</p>\n<p>(More on making <a href=\"http://nacin.com/2011/12/18/in-open-source-learn-to-decide/\">decisions</a>, <a href=\"http://nacin.com/2013/07/01/firefox-makes-a-decision-removes-an-option/\">not options</a>.)</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 24 May 2015 23:11:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 19 Nov 2019 19:20:34 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Tue, 19 Nov 2019 19:00:09 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20130911040210\";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(140, '_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1574234437', 'no'),
(141, '_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1574191237', 'no'),
(142, '_transient_timeout_dash_v2_1f6be06cc73fd52d187c194a61b83c35', '1574234437', 'no'),
(143, '_transient_dash_v2_1f6be06cc73fd52d187c194a61b83c35', '<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://en-ca.wordpress.org/2017/04/18/wordcamp-coming-to-halifax-nova-scotia/\'>WordCamp Coming to Halifax, Nova Scotia!</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2019/11/wordpress-5-2-4-update/\'>WordPress.org blog: WordPress 5.2.4 Update</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/gutenberg-6-9-introduces-image-titles-block-patterns-and-new-theme-features\'>WPTavern: Gutenberg 6.9 Introduces Image Titles, Block Patterns, and New Theme Features</a></li><li><a class=\'rsswidget\' href=\'https://poststatus.com/wordpress-jamstack/\'>Post Status: <NAME> on WordPress, JAMstack, and the future of the independent developer</a></li></ul></div>', 'no');
-- --------------------------------------------------------
--
-- Table structure for table `wp_postmeta`
--
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`post_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_postmeta`
--
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'default'),
(2, 3, '_wp_page_template', 'default');
-- --------------------------------------------------------
--
-- Table structure for table `wp_posts`
--
CREATE TABLE `wp_posts` (
`ID` bigint(20) UNSIGNED NOT NULL,
`post_author` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
`post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_parent` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_posts`
--
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1, 1, '2019-11-19 14:20:18', '2019-11-19 19:20:18', '<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->', 'Hello world!', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2019-11-19 14:20:18', '2019-11-19 19:20:18', '', 0, 'http://localhost:8888/qot/?p=1', 0, 'post', '', 1),
(2, 1, '2019-11-19 14:20:18', '2019-11-19 19:20:18', '<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://localhost:8888/qot/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->', 'Sample Page', '', 'publish', 'closed', 'open', '', 'sample-page', '', '', '2019-11-19 14:20:18', '2019-11-19 19:20:18', '', 0, 'http://localhost:8888/qot/?page_id=2', 0, 'page', '', 0),
(3, 1, '2019-11-19 14:20:18', '2019-11-19 19:20:18', '<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Our website address is: http://localhost:8888/qot.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What personal data we collect and why we collect it</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Comments</h3><!-- /wp:heading --><!-- wp:paragraph --><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Media</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Contact forms</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Cookies</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Embedded content from other websites</h3><!-- /wp:heading --><!-- wp:paragraph --><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Analytics</h3><!-- /wp:heading --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Your contact information</h2><!-- /wp:heading --><!-- wp:heading --><h2>Additional information</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>How we protect your data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What data breach procedures we have in place</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What third parties we receive data from</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What automated decision making and/or profiling we do with user data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Industry regulatory disclosure requirements</h3><!-- /wp:heading -->', 'Privacy Policy', '', 'draft', 'closed', 'open', '', 'privacy-policy', '', '', '2019-11-19 14:20:18', '2019-11-19 19:20:18', '', 0, 'http://localhost:8888/qot/?page_id=3', 0, 'page', '', 0),
(4, 1, '2019-11-19 14:20:33', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2019-11-19 14:20:33', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/qot/?p=4', 0, 'post', '', 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_termmeta`
--
CREATE TABLE `wp_termmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`term_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_terms`
--
CREATE TABLE `wp_terms` (
`term_id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_terms`
--
INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Uncategorized', 'uncategorized', 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_term_relationships`
--
CREATE TABLE `wp_term_relationships` (
`object_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`term_order` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_term_relationships`
--
INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(1, 1, 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_term_taxonomy`
--
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) UNSIGNED NOT NULL,
`term_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`parent` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_term_taxonomy`
--
INSERT INTO `wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 1);
-- --------------------------------------------------------
--
-- Table structure for table `wp_usermeta`
--
CREATE TABLE `wp_usermeta` (
`umeta_id` bigint(20) UNSIGNED NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_usermeta`
--
INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'nickname', 'soservin07'),
(2, 1, 'first_name', ''),
(3, 1, 'last_name', ''),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'syntax_highlighting', 'true'),
(7, 1, 'comment_shortcuts', 'false'),
(8, 1, 'admin_color', 'fresh'),
(9, 1, 'use_ssl', '0'),
(10, 1, 'show_admin_bar_front', 'true'),
(11, 1, 'locale', ''),
(12, 1, 'wp_capabilities', 'a:1:{s:13:\"administrator\";b:1;}'),
(13, 1, 'wp_user_level', '10'),
(14, 1, 'dismissed_wp_pointers', ''),
(15, 1, 'show_welcome_panel', '1'),
(16, 1, 'session_tokens', 'a:1:{s:64:\"e0b3f48d367aaaa93f140758a23da763e6d2854e9d12e94fd9264d9b6040f570\";a:4:{s:10:\"expiration\";i:1574364030;s:2:\"ip\";s:9:\"127.0.0.1\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36\";s:5:\"login\";i:1574191230;}}'),
(17, 1, 'wp_dashboard_quick_press_last_post_id', '4'),
(18, 1, 'community-events-location', 'a:1:{s:2:\"ip\";s:9:\"127.0.0.0\";}');
-- --------------------------------------------------------
--
-- Table structure for table `wp_users`
--
CREATE TABLE `wp_users` (
`ID` bigint(20) UNSIGNED NOT NULL,
`user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `wp_users`
--
INSERT INTO `wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'soservin07', '$P$BKFbXBJOgIDJahANuOccYMgG2oLbdf/', 'soservin07', '<EMAIL>', '', '2019-11-19 19:20:17', '', 0, 'soservin07');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `qod_commentmeta`
--
ALTER TABLE `qod_commentmeta`
ADD PRIMARY KEY (`meta_id`),
ADD KEY `comment_id` (`comment_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `qod_comments`
--
ALTER TABLE `qod_comments`
ADD PRIMARY KEY (`comment_ID`),
ADD KEY `comment_post_ID` (`comment_post_ID`),
ADD KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
ADD KEY `comment_date_gmt` (`comment_date_gmt`),
ADD KEY `comment_parent` (`comment_parent`),
ADD KEY `comment_author_email` (`comment_author_email`(10));
--
-- Indexes for table `qod_links`
--
ALTER TABLE `qod_links`
ADD PRIMARY KEY (`link_id`),
ADD KEY `link_visible` (`link_visible`);
--
-- Indexes for table `qod_options`
--
ALTER TABLE `qod_options`
ADD PRIMARY KEY (`option_id`),
ADD UNIQUE KEY `option_name` (`option_name`),
ADD KEY `autoload` (`autoload`);
--
-- Indexes for table `qod_pmxi_files`
--
ALTER TABLE `qod_pmxi_files`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `qod_pmxi_history`
--
ALTER TABLE `qod_pmxi_history`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `qod_pmxi_images`
--
ALTER TABLE `qod_pmxi_images`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `qod_pmxi_imports`
--
ALTER TABLE `qod_pmxi_imports`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `qod_pmxi_posts`
--
ALTER TABLE `qod_pmxi_posts`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `qod_pmxi_templates`
--
ALTER TABLE `qod_pmxi_templates`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `qod_postmeta`
--
ALTER TABLE `qod_postmeta`
ADD PRIMARY KEY (`meta_id`),
ADD KEY `post_id` (`post_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `qod_posts`
--
ALTER TABLE `qod_posts`
ADD PRIMARY KEY (`ID`),
ADD KEY `post_name` (`post_name`(191)),
ADD KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
ADD KEY `post_parent` (`post_parent`),
ADD KEY `post_author` (`post_author`);
--
-- Indexes for table `qod_termmeta`
--
ALTER TABLE `qod_termmeta`
ADD PRIMARY KEY (`meta_id`),
ADD KEY `term_id` (`term_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `qod_terms`
--
ALTER TABLE `qod_terms`
ADD PRIMARY KEY (`term_id`),
ADD KEY `slug` (`slug`(191)),
ADD KEY `name` (`name`(191));
--
-- Indexes for table `qod_term_relationships`
--
ALTER TABLE `qod_term_relationships`
ADD PRIMARY KEY (`object_id`,`term_taxonomy_id`),
ADD KEY `term_taxonomy_id` (`term_taxonomy_id`);
--
-- Indexes for table `qod_term_taxonomy`
--
ALTER TABLE `qod_term_taxonomy`
ADD PRIMARY KEY (`term_taxonomy_id`),
ADD UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
ADD KEY `taxonomy` (`taxonomy`);
--
-- Indexes for table `qod_usermeta`
--
ALTER TABLE `qod_usermeta`
ADD PRIMARY KEY (`umeta_id`),
ADD KEY `user_id` (`user_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `qod_users`
--
ALTER TABLE `qod_users`
ADD PRIMARY KEY (`ID`),
ADD KEY `user_login_key` (`user_login`),
ADD KEY `user_nicename` (`user_nicename`),
ADD KEY `user_email` (`user_email`);
--
-- Indexes for table `wp_commentmeta`
--
ALTER TABLE `wp_commentmeta`
ADD PRIMARY KEY (`meta_id`),
ADD KEY `comment_id` (`comment_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `wp_comments`
--
ALTER TABLE `wp_comments`
ADD PRIMARY KEY (`comment_ID`),
ADD KEY `comment_post_ID` (`comment_post_ID`),
ADD KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
ADD KEY `comment_date_gmt` (`comment_date_gmt`),
ADD KEY `comment_parent` (`comment_parent`),
ADD KEY `comment_author_email` (`comment_author_email`(10));
--
-- Indexes for table `wp_links`
--
ALTER TABLE `wp_links`
ADD PRIMARY KEY (`link_id`),
ADD KEY `link_visible` (`link_visible`);
--
-- Indexes for table `wp_options`
--
ALTER TABLE `wp_options`
ADD PRIMARY KEY (`option_id`),
ADD UNIQUE KEY `option_name` (`option_name`),
ADD KEY `autoload` (`autoload`);
--
-- Indexes for table `wp_postmeta`
--
ALTER TABLE `wp_postmeta`
ADD PRIMARY KEY (`meta_id`),
ADD KEY `post_id` (`post_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `wp_posts`
--
ALTER TABLE `wp_posts`
ADD PRIMARY KEY (`ID`),
ADD KEY `post_name` (`post_name`(191)),
ADD KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
ADD KEY `post_parent` (`post_parent`),
ADD KEY `post_author` (`post_author`);
--
-- Indexes for table `wp_termmeta`
--
ALTER TABLE `wp_termmeta`
ADD PRIMARY KEY (`meta_id`),
ADD KEY `term_id` (`term_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `wp_terms`
--
ALTER TABLE `wp_terms`
ADD PRIMARY KEY (`term_id`),
ADD KEY `slug` (`slug`(191)),
ADD KEY `name` (`name`(191));
--
-- Indexes for table `wp_term_relationships`
--
ALTER TABLE `wp_term_relationships`
ADD PRIMARY KEY (`object_id`,`term_taxonomy_id`),
ADD KEY `term_taxonomy_id` (`term_taxonomy_id`);
--
-- Indexes for table `wp_term_taxonomy`
--
ALTER TABLE `wp_term_taxonomy`
ADD PRIMARY KEY (`term_taxonomy_id`),
ADD UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
ADD KEY `taxonomy` (`taxonomy`);
--
-- Indexes for table `wp_usermeta`
--
ALTER TABLE `wp_usermeta`
ADD PRIMARY KEY (`umeta_id`),
ADD KEY `user_id` (`user_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `wp_users`
--
ALTER TABLE `wp_users`
ADD PRIMARY KEY (`ID`),
ADD KEY `user_login_key` (`user_login`),
ADD KEY `user_nicename` (`user_nicename`),
ADD KEY `user_email` (`user_email`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `qod_commentmeta`
--
ALTER TABLE `qod_commentmeta`
MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `qod_comments`
--
ALTER TABLE `qod_comments`
MODIFY `comment_ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `qod_links`
--
ALTER TABLE `qod_links`
MODIFY `link_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `qod_options`
--
ALTER TABLE `qod_options`
MODIFY `option_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=414;
--
-- AUTO_INCREMENT for table `qod_pmxi_files`
--
ALTER TABLE `qod_pmxi_files`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `qod_pmxi_history`
--
ALTER TABLE `qod_pmxi_history`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `qod_pmxi_images`
--
ALTER TABLE `qod_pmxi_images`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `qod_pmxi_imports`
--
ALTER TABLE `qod_pmxi_imports`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `qod_pmxi_posts`
--
ALTER TABLE `qod_pmxi_posts`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `qod_pmxi_templates`
--
ALTER TABLE `qod_pmxi_templates`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `qod_postmeta`
--
ALTER TABLE `qod_postmeta`
MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=355;
--
-- AUTO_INCREMENT for table `qod_posts`
--
ALTER TABLE `qod_posts`
MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=259;
--
-- AUTO_INCREMENT for table `qod_termmeta`
--
ALTER TABLE `qod_termmeta`
MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `qod_terms`
--
ALTER TABLE `qod_terms`
MODIFY `term_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=42;
--
-- AUTO_INCREMENT for table `qod_term_taxonomy`
--
ALTER TABLE `qod_term_taxonomy`
MODIFY `term_taxonomy_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=42;
--
-- AUTO_INCREMENT for table `qod_usermeta`
--
ALTER TABLE `qod_usermeta`
MODIFY `umeta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31;
--
-- AUTO_INCREMENT for table `qod_users`
--
ALTER TABLE `qod_users`
MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `wp_commentmeta`
--
ALTER TABLE `wp_commentmeta`
MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_comments`
--
ALTER TABLE `wp_comments`
MODIFY `comment_ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `wp_links`
--
ALTER TABLE `wp_links`
MODIFY `link_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_options`
--
ALTER TABLE `wp_options`
MODIFY `option_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=144;
--
-- AUTO_INCREMENT for table `wp_postmeta`
--
ALTER TABLE `wp_postmeta`
MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `wp_posts`
--
ALTER TABLE `wp_posts`
MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `wp_termmeta`
--
ALTER TABLE `wp_termmeta`
MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_terms`
--
ALTER TABLE `wp_terms`
MODIFY `term_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `wp_term_taxonomy`
--
ALTER TABLE `wp_term_taxonomy`
MODIFY `term_taxonomy_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `wp_usermeta`
--
ALTER TABLE `wp_usermeta`
MODIFY `umeta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;
--
-- AUTO_INCREMENT for table `wp_users`
--
ALTER TABLE `wp_users`
MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
IF NOT EXISTS
(
SELECT *
FROM sys.objects
WHERE object_id = OBJECT_ID(N'[dbo].[PatientSexualHistory]')
AND type IN(N'U')
)
BEGIN
CREATE TABLE PatientSexualHistory
(
[Id] [int] IDENTITY(1,1) NOT NULL,
[PatientId] [int] NOT NULL,
[PatientMasterVisitId] [int] NOT NULL,
[PartnerGender] [int] NOT NULL,
[PartnerHivStatus] [int] NOT NULL,
[PatientSexualOrientation] [int] NOT NULL,
[DeleteFlag] [bit] NOT NULL,
[CreatedBy] [int] NOT NULL,
[CreateDate] [datetime] NULL,
[UpdateDate] [datetime] NULL,
[AuditData] [xml] NULL
CONSTRAINT [PK_PatientSexualHistory] PRIMARY KEY CLUSTERED
(
[Id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
END
go
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
IF NOT EXISTS
(
SELECT *
FROM sys.objects
WHERE object_id = OBJECT_ID(N'[dbo].[PatientHighRisk]')
AND type IN(N'U')
)
BEGIN
CREATE TABLE PatientHighRisk
(
[Id] [int] IDENTITY(1,1) NOT NULL,
[PatientId] [int] NOT NULL,
[PatientMasterVisitId] [int] NOT NULL,
[PartnerId] [int] NOT NULL,
[HighRisk] [int] NOT NULL,
[DeleteFlag] [bit] NOT NULL,
[CreatedBy] [int] NOT NULL,
[CreateDate] [datetime] NULL,
[UpdateDate] [datetime] NULL,
[AuditData] [xml] NULL
CONSTRAINT [PK_PatientHighRisk] PRIMARY KEY CLUSTERED
(
[Id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
END
go
IF NOT EXISTS
(
SELECT *
FROM sys.objects
WHERE object_id = OBJECT_ID(N'[dbo].[PatientPartner]')
AND type IN(N'U')
)
BEGIN
CREATE TABLE PatientPartner
(
[Id] [int] IDENTITY(1,1) NOT NULL,
[PatientId] [int] NOT NULL,
[PatientMasterVisitId] [int] NOT NULL,
[NoofPartners] [int] NOT NULL,
[DeleteFlag] [bit] NOT NULL,
[CreatedBy] [int] NOT NULL,
[CreateDate] [datetime] NULL,
[UpdateDate] [datetime] NULL,
[AuditData] [xml] NULL
CONSTRAINT [PK_PatientPartner] PRIMARY KEY CLUSTERED
(
[Id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
END
|
-- Duplicate the word_markings schema.
CREATE TABLE `tmp_word_markings` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`index` int(11) DEFAULT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
`user_id` int(11) DEFAULT NULL,
`facet_id` int(11) DEFAULT NULL,
`prism_id` varchar(36) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_word_markings_on_index` (`index`),
KEY `index_word_markings_on_prism_id_and_index` (`prism_id`,`index`)
) ENGINE=InnoDB AUTO_INCREMENT=808384 DEFAULT CHARSET=latin1;
-- Crunch down all markings for each user.
INSERT INTO tmp_word_markings
(`index`, user_id, facet_id, prism_id, created_at, updated_at)
SELECT `index`, user_id, facet_id, prism_id, MIN(created_at), MAX(updated_at)
FROM word_markings
WHERE user_id IS NOT NULL
GROUP BY `index`, user_id, facet_id, prism_id;
-- Just copy over data from NULL users (legacy data).
INSERT INTO tmp_word_markings
(`index`, user_id, facet_id, prism_id, created_at, updated_at)
SELECT `index`, user_id, facet_id, prism_id, created_at, updated_at
FROM word_markings
WHERE user_id IS NULL;
-- Swap over the tables.
RENAME TABLE word_markings TO old_word_markings,
tmp_word_markings TO word_markings;
|
<filename>atc/db/migration/migrations/1598284990_alter_id_on_resource_config_versions_bigint.up.sql
ALTER TABLE resource_config_versions ALTER COLUMN id TYPE bigint;
|
CREATE TABLESPACE mytblspace FILESPACE dfs_system;
|
/* concat all tables into `market_orders` */
INSERT INTO `market_orders` (`albion_id`, `item_id`, `quality_level`, `enchantment_level`, `price`, `amount`, `auction_type`, `expires`, `location`, `created_at`, `updated_at`, `deleted_at`) SELECT `id`, `item_id`, `quality_level`, `enchantment_level`, `price`, `amount`, `auction_type`, `expires`, `location`, `created_at`, `updated_at`, `deleted_at` FROM `bridgewatch_market_orders`;
INSERT INTO `market_orders` (`albion_id`, `item_id`, `quality_level`, `enchantment_level`, `price`, `amount`, `auction_type`, `expires`, `location`, `created_at`, `updated_at`, `deleted_at`) SELECT `id`, `item_id`, `quality_level`, `enchantment_level`, `price`, `amount`, `auction_type`, `expires`, `location`, `created_at`, `updated_at`, `deleted_at` FROM `caerleon_market_orders`;
INSERT INTO `market_orders` (`albion_id`, `item_id`, `quality_level`, `enchantment_level`, `price`, `amount`, `auction_type`, `expires`, `location`, `created_at`, `updated_at`, `deleted_at`) SELECT `id`, `item_id`, `quality_level`, `enchantment_level`, `price`, `amount`, `auction_type`, `expires`, `location`, `created_at`, `updated_at`, `deleted_at` FROM `fort_sterling_market_orders`;
INSERT INTO `market_orders` (`albion_id`, `item_id`, `quality_level`, `enchantment_level`, `price`, `amount`, `auction_type`, `expires`, `location`, `created_at`, `updated_at`, `deleted_at`) SELECT `id`, `item_id`, `quality_level`, `enchantment_level`, `price`, `amount`, `auction_type`, `expires`, `location`, `created_at`, `updated_at`, `deleted_at` FROM `lymhurst_market_orders`;
INSERT INTO `market_orders` (`albion_id`, `item_id`, `quality_level`, `enchantment_level`, `price`, `amount`, `auction_type`, `expires`, `location`, `created_at`, `updated_at`, `deleted_at`) SELECT `id`, `item_id`, `quality_level`, `enchantment_level`, `price`, `amount`, `auction_type`, `expires`, `location`, `created_at`, `updated_at`, `deleted_at` FROM `martlock_market_orders`;
INSERT INTO `market_orders` (`albion_id`, `item_id`, `quality_level`, `enchantment_level`, `price`, `amount`, `auction_type`, `expires`, `location`, `created_at`, `updated_at`, `deleted_at`) SELECT `id`, `item_id`, `quality_level`, `enchantment_level`, `price`, `amount`, `auction_type`, `expires`, `location`, `created_at`, `updated_at`, `deleted_at` FROM `thetford_market_orders`;
/* Set initial_amount (which we didn't have before) to amount */
UPDATE `market_orders` SET `initial_amount` = `amount`; |
/*
-- Query: SELECT * FROM movies2017.awards_movies
LIMIT 0, 1000
-- Date: 2018-03-31 00:20
*/
INSERT INTO `awards_movies` (`Award_idAward`,`Movies_idMovies`) VALUES (1,1);
INSERT INTO `awards_movies` (`Award_idAward`,`Movies_idMovies`) VALUES (2,1);
INSERT INTO `awards_movies` (`Award_idAward`,`Movies_idMovies`) VALUES (3,1);
INSERT INTO `awards_movies` (`Award_idAward`,`Movies_idMovies`) VALUES (4,1);
INSERT INTO `awards_movies` (`Award_idAward`,`Movies_idMovies`) VALUES (5,2);
INSERT INTO `awards_movies` (`Award_idAward`,`Movies_idMovies`) VALUES (6,3);
INSERT INTO `awards_movies` (`Award_idAward`,`Movies_idMovies`) VALUES (7,3);
INSERT INTO `movies2017`.`awards_movies` (`Award_idAward`, `Movies_idMovies`) VALUES ('7', '4');
INSERT INTO `movies2017`.`awards_movies` (`Award_idAward`, `Movies_idMovies`) VALUES ('8', '4');
INSERT INTO `movies2017`.`awards_movies` (`Award_idAward`, `Movies_idMovies`) VALUES ('9', '4');
INSERT INTO `movies2017`.`awards_movies` (`Award_idAward`, `Movies_idMovies`) VALUES ('10', '5');
INSERT INTO `movies2017`.`awards_movies` (`Award_idAward`, `Movies_idMovies`) VALUES ('11', '5');
INSERT INTO `movies2017`.`awards_movies` (`Award_idAward`, `Movies_idMovies`) VALUES ('12', '5');
INSERT INTO `movies2017`.`awards_movies` (`Award_idAward`, `Movies_idMovies`) VALUES ('10', '6');
INSERT INTO `movies2017`.`awards_movies` (`Award_idAward`, `Movies_idMovies`) VALUES ('7', '6');
INSERT INTO `movies2017`.`awards_movies` (`Award_idAward`, `Movies_idMovies`) VALUES ('11', '6');
|
<gh_stars>0
set echo off
set feedback off
set linesize 512
prompt
prompt All Tables in Database
prompt
break on OWNER
SELECT *
FROM DBA_TABLES
WHERE OWNER NOT IN ('SYS','SYSTEM','OUTLN','DBSNMP')
ORDER BY OWNER, TABLE_NAME; |
<reponame>Quebe/Mercury-Care-Management
-- DBO.[SPONSOR] (BEGIN)
/*
IF EXISTS (SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE (TABLE_NAME = 'Sponsor') AND (TABLE_SCHEMA = 'dbo'))
DROP TABLE dbo.[Sponsor]
GO
*/
CREATE TABLE dbo.[Sponsor] (
SponsorId BIGINT NOT NULL IDENTITY (1000000000, 1),
EntityId BIGINT NOT NULL,
ExternalSponsorId VARCHAR (0020) NOT NULL CONSTRAINT [Sponsor_Dft_ExternalSponsorId] DEFAULT (''),
CreateAuthorityName VARCHAR (0060) NOT NULL CONSTRAINT [Sponsor_Dft_CreateAuthorityName] DEFAULT ('SQL Server'),
CreateAccountId VARCHAR (0060) NOT NULL CONSTRAINT [Sponsor_Dft_CreateAccountId] DEFAULT (CAST (ISNULL (SUSER_ID (), SUSER_NAME ()) AS VARCHAR (060))),
CreateAccountName VARCHAR (0060) NOT NULL CONSTRAINT [Sponsor_Dft_CreateAccountName] DEFAULT (CAST (SUSER_NAME () AS VARCHAR (060))),
CreateDate DATETIME NOT NULL CONSTRAINT [Sponsor_Dft_CreateDate] DEFAULT (GETDATE ()),
ModifiedAuthorityName VARCHAR (0060) NOT NULL CONSTRAINT [Sponsor_Dft_ModifiedAuthorityName] DEFAULT ('SQL Server'),
ModifiedAccountId VARCHAR (0060) NOT NULL CONSTRAINT [Sponsor_Dft_ModifiedAccountId] DEFAULT (CAST (ISNULL (SUSER_ID (), SUSER_NAME ()) AS VARCHAR (060))),
ModifiedAccountName VARCHAR (0060) NOT NULL CONSTRAINT [Sponsor_Dft_ModifiedAccountName] DEFAULT (CAST (SUSER_NAME () AS VARCHAR (060))),
ModifiedDate DATETIME NOT NULL CONSTRAINT [Sponsor_Dft_ModifiedDate] DEFAULT (GETDATE ())
, CONSTRAINT [Sponsor_Pk] PRIMARY KEY (SponsorId)
, CONSTRAINT [Sponsor_Fk_EntityId] FOREIGN KEY (EntityId) REFERENCES dbo.[Entity] (EntityId)
) -- dbo.Sponsor
GO
/*
-- COLUMN DESCRIPTIONS
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Unique Identifier', @level0type=N'SCHEMA', @level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Sponsor', @level2type=N'COLUMN', @level2name=N'SponsorId'
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Unique Identifier [Entity Reference]', @level0type=N'SCHEMA', @level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Sponsor', @level2type=N'COLUMN', @level2name=N'EntityId'
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Unique Business Identifier', @level0type=N'SCHEMA', @level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Sponsor', @level2type=N'COLUMN', @level2name=N'ExternalSponsorId'
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Name [Security Authority Name]', @level0type=N'SCHEMA', @level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Sponsor', @level2type=N'COLUMN', @level2name=N'CreateAuthorityName'
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Unique User Account ID', @level0type=N'SCHEMA', @level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Sponsor', @level2type=N'COLUMN', @level2name=N'CreateAccountId'
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Name [User Account Name]', @level0type=N'SCHEMA', @level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Sponsor', @level2type=N'COLUMN', @level2name=N'CreateAccountName'
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and Time [Create Date]', @level0type=N'SCHEMA', @level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Sponsor', @level2type=N'COLUMN', @level2name=N'CreateDate'
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Name [Security Authority Name]', @level0type=N'SCHEMA', @level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Sponsor', @level2type=N'COLUMN', @level2name=N'ModifiedAuthorityName'
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Unique User Account ID', @level0type=N'SCHEMA', @level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Sponsor', @level2type=N'COLUMN', @level2name=N'ModifiedAccountId'
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Name [User Account Name]', @level0type=N'SCHEMA', @level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Sponsor', @level2type=N'COLUMN', @level2name=N'ModifiedAccountName'
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and Time [Modified Date]', @level0type=N'SCHEMA', @level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Sponsor', @level2type=N'COLUMN', @level2name=N'ModifiedDate'
GO
*/
-- DBO.SPONSOR ( END )
|
CREATE PROCEDURE execute_immediate(in_sql varchar(4000))
BEGIN
SET @tmp_sql=in_sql;
PREPARE s1 FROM @tmp_sql;
EXECUTE s1;
DEALLOCATE PREPARE s1;
END;
|
-- phpMyAdmin SQL Dump
-- version 4.8.4
-- https://www.phpmyadmin.net/
--
-- Servidor: 127.0.0.1
-- Tiempo de generación: 26-07-2021 a las 00:11:55
-- Versión del servidor: 10.1.37-MariaDB
-- Versión de PHP: 5.6.39
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Base de datos: `locatel`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `address`
--
CREATE TABLE `address` (
`add_id` int(11) NOT NULL,
`add_street` varchar(150) NOT NULL,
`add_city` varchar(150) NOT NULL,
`add_state` varchar(150) NOT NULL,
`add_postal_code` int(11) DEFAULT NULL,
`add_country` varchar(150) NOT NULL,
`per_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Volcado de datos para la tabla `address`
--
INSERT INTO `address` (`add_id`, `add_street`, `add_city`, `add_state`, `add_postal_code`, `add_country`, `per_id`) VALUES
(1, 'street 122', 'Villavicencio', 'Meta', 50001, 'Colombia', 7),
(6, 'calle 21', 'Villavicencio', 'Meta', 50001, 'Colombia', 12),
(10, 'street 12', 'Villavicencio', 'Meta', 50001, 'Colombia', 16);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `person`
--
CREATE TABLE `person` (
`per_id` int(11) NOT NULL,
`per_name` varchar(255) NOT NULL,
`per_phone` varchar(15) NOT NULL,
`per_email` varchar(100) NOT NULL,
`per_rol` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Volcado de datos para la tabla `person`
--
INSERT INTO `person` (`per_id`, `per_name`, `per_phone`, `per_email`, `per_rol`) VALUES
(7, '<NAME>', '3225158496', '<EMAIL>', 2),
(12, '<NAME>', '3143377003', '<EMAIL>', 2),
(16, '<NAME>', '2313', '<EMAIL>', 1);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `roles`
--
CREATE TABLE `roles` (
`rol_id` int(11) NOT NULL,
`rol_nombre` varchar(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Volcado de datos para la tabla `roles`
--
INSERT INTO `roles` (`rol_id`, `rol_nombre`) VALUES
(1, 'Student'),
(2, 'Professor');
--
-- Índices para tablas volcadas
--
--
-- Indices de la tabla `address`
--
ALTER TABLE `address`
ADD PRIMARY KEY (`add_id`),
ADD KEY `person_address` (`per_id`);
--
-- Indices de la tabla `person`
--
ALTER TABLE `person`
ADD PRIMARY KEY (`per_id`),
ADD KEY `person_rol` (`per_rol`);
--
-- Indices de la tabla `roles`
--
ALTER TABLE `roles`
ADD PRIMARY KEY (`rol_id`);
--
-- AUTO_INCREMENT de las tablas volcadas
--
--
-- AUTO_INCREMENT de la tabla `address`
--
ALTER TABLE `address`
MODIFY `add_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15;
--
-- AUTO_INCREMENT de la tabla `person`
--
ALTER TABLE `person`
MODIFY `per_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21;
--
-- AUTO_INCREMENT de la tabla `roles`
--
ALTER TABLE `roles`
MODIFY `rol_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- Restricciones para tablas volcadas
--
--
-- Filtros para la tabla `address`
--
ALTER TABLE `address`
ADD CONSTRAINT `person_address` FOREIGN KEY (`per_id`) REFERENCES `person` (`per_id`);
--
-- Filtros para la tabla `person`
--
ALTER TABLE `person`
ADD CONSTRAINT `person_rol` FOREIGN KEY (`per_rol`) REFERENCES `roles` (`rol_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 */;
|
<gh_stars>100-1000
-- in2.test
--
-- execsql {
-- SELECT 1 IN (SELECT a FROM a WHERE (i < ii) OR (i >= N))
-- }
SELECT 1 IN (SELECT a FROM a WHERE (i < ii) OR (i >= N))
|
<reponame>psdgal/d365fo.tools
SELECT FROMDATETIME, TODATETIME, AOSID
FROM SysBroadcastMessage
WHERE TODATETIME > GETDATE()
ORDER BY RECID |
<gh_stars>1-10
ALTER TABLE Src.OrderLines
DROP COLUMN TotalPrice
ALTER TABLE Src.OrderLines
ADD TOtalPrice AS (UnitPrice * Quantity) PERSISTED |
<reponame>mixyoung/SSRPanel
-- 邮件投递记录增加最后更新字段
ALTER TABLE `email_log`
ADD COLUMN `updated_at` DATETIME NULL DEFAULT NULL COMMENT '最后更新时间' AFTER `created_at`;
-- 加入支付宝当面付
INSERT INTO `config` values ('84', 'is_f2fpay', 0);
INSERT INTO `config` VALUES ('85', 'f2fpay_app_id', '');
INSERT INTO `config` VALUES ('86', 'f2fpay_private_key', '');
INSERT INTO `config` VALUES ('87', 'f2fpay_public_key', ''); |
-- CreateTable
CREATE TABLE "Comment" (
"id" SERIAL NOT NULL,
"uuid" TEXT NOT NULL,
"nickname" TEXT NOT NULL,
"body" TEXT NOT NULL,
"image_url" TEXT NOT NULL,
"comment_number" INTEGER NOT NULL,
"good_vote" INTEGER NOT NULL,
"bad_vote" INTEGER NOT NULL,
"posted_at" TIMESTAMP(3) NOT NULL,
"updatedAt" TIMESTAMP(3) NOT NULL,
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
CONSTRAINT "Comment_pkey" PRIMARY KEY ("id")
);
-- CreateIndex
CREATE UNIQUE INDEX "Comment_uuid_key" ON "Comment"("uuid");
-- CreateIndex
CREATE UNIQUE INDEX "Comment_comment_number_key" ON "Comment"("comment_number");
|
<filename>packages/acs-events/sql/postgresql/test/utest.sql
-- packages/acs-events/sql/postgresql/test/utest.sql
--
-- Regression test of the unit test package (aha, recursion ;-).
--
-- @author <EMAIL>
-- @creation-date 2001-06-26
--
-- $Id: utest.sql,v 1.4 2015/12/04 13:50:03 cvs Exp $
--
-- procedure inline_0/0
--
CREATE OR REPLACE FUNCTION inline_0(
) RETURNS integer AS $$
DECLARE
v_str varchar;
v_datetest timestamp;
v_dateref timestamp;
BEGIN
PERFORM ut_assert__eq(
'Test of ut_assert__eq (equality).',
'1',
'1',
'f',
't'
);
PERFORM ut_assert__eq(
'Test of ut_assert__eq (equality).',
'1',
'1'
);
PERFORM ut_assert__eq(
'Test of ut_assert__eq (inequality).',
'1',
'0',
'f',
'f' -- we dont want to raise an exception here
);
PERFORM ut_assert__eq(
'Test of ut_assert__eq (inequality).',
'1',
'0'
);
PERFORM ut_assert__eq(
'Test of ut_assert__b2v (true).',
ut_assert__b2v(1+1 = 2),
'true',
'f',
't'
);
PERFORM ut_assert__eq(
'Test of ut_assert__b2v (true).',
ut_assert__b2v(1+1 = 2),
'true'
);
PERFORM ut_assert__eq(
'Test of ut_assert__b2v (false).',
ut_assert__b2v(1+1 = 1),
'false',
'f',
't'
);
PERFORM ut_assert__eq(
'Test of ut_assert__b2v (false).',
ut_assert__b2v(1+1 = 1),
'false'
);
PERFORM ut_assert__eq(
'Test of ut_assert__eq (boolean,boolean).',
1+1 = 2,
'true',
'f',
't'
);
PERFORM ut_assert__eq(
'Test of ut_assert__eq (boolean,boolean).',
1+1 = 2,
'true'
);
PERFORM ut_assert__eq(
'Test of ut_assert__eq (boolean,boolean).',
1+1 = 1,
'false',
'f',
't'
);
PERFORM ut_assert__eq(
'Test of ut_assert__eq (boolean,boolean).',
1+1 = 1,
'false'
);
select now() into v_dateref;
v_datetest := v_dateref;
PERFORM ut_assert__eq(
'Test of ut_assert__eq (timestamp,timestamp).',
v_datetest,
v_dateref,
'f',
'f'
);
PERFORM ut_assert__eq(
'Test of ut_assert__eq (timestamp,timestamp).',
v_datetest,
v_dateref
);
v_datetest := now() + interval '1 days';
PERFORM ut_assert__eq(
'Test of ut_assert__eq (timestamp,timestamp).',
v_datetest,
v_dateref,
'f',
'f' -- do not raise exception
);
PERFORM ut_assert__eq(
'Test of ut_assert__eq (timestamp,timestamp).',
v_datetest,
v_dateref
);
PERFORM ut_assert__ieqminus(
'Test of query equality.',
'select 1 from dual',
'select 1 from dual',
'Simple select from dual.',
't'
);
PERFORM ut_assert__ieqminus(
'Test of query inequality.',
'select 1 from dual',
'select 2 from dual',
'simple select from dual ',
'f' -- do not raise exception since this will fail
);
create table ut_temp (
an_integer integer,
a_varchar varchar);
insert into ut_temp values (1,'a');
insert into ut_temp values (2,'b');
PERFORM ut_assert__ieqminus(
'Test of query equality.',
'select * from ut_temp where an_integer = 1',
'select * from ut_temp where a_varchar = ' || '''' || 'a' || '''',
'Simple comparison of two tables.',
't'
);
PERFORM ut_assert__ieqminus(
'Test of query inequality.',
'select * from ut_temp where an_integer = 2',
'select * from ut_temp',
'Simple comparison of two unequal tables.',
'f'
);
create table ut_another as select * from ut_temp;
PERFORM ut_assert__eqtable(
'Test of simple table equality.',
'ut_another',
'ut_temp',
null,
null,
't'
);
PERFORM ut_assert__eqtable(
'Test of simple table equality.',
'ut_another',
'ut_temp'
);
PERFORM ut_assert__eqtable(
'Test of simple table equality.',
'ut_another',
'ut_temp',
'an_integer = 1',
'a_varchar = ' || '''' || 'a' || '''',
't'
);
PERFORM ut_assert__eqtable(
'Test of simple table inequality.',
'ut_another',
'ut_temp',
'an_integer = 1',
'a_varchar = ' || '''' || 'b' || '''',
'f'
);
PERFORM ut_assert__eqtabcount(
'Test of simple table count equality.',
'ut_another',
'ut_temp',
null,
null,
't'
);
PERFORM ut_assert__eqtabcount(
'Test of simple table count equality.',
'ut_another',
'ut_temp',
'an_integer = 1',
'a_varchar = ' || '''' || 'a' || '''',
't'
);
PERFORM ut_assert__eqtabcount(
'Test of simple table inequality.',
'ut_another',
'ut_temp',
null,
'a_varchar = ' || '''' || 'b' || '''',
'f'
);
PERFORM ut_assert__eqquery(
'Test of query equality.',
'select * from ut_temp where an_integer = 1',
'select * from ut_temp where a_varchar = ' || '''' || 'a' || '''',
't'
);
PERFORM ut_assert__eqquery(
'Test of query equality.',
'select * from ut_temp where an_integer = 1',
'select * from ut_temp where a_varchar = ' || '''' || 'a' || ''''
);
PERFORM ut_assert__eqquery(
'Test of query equality.',
'select * from ut_temp where an_integer = 2',
'select * from ut_temp',
'f'
);
PERFORM ut_assert__eqquery(
'Test of query equality.',
'select * from ut_temp where an_integer = 2',
'select * from ut_temp'
);
delete from ut_another where an_integer=2;
PERFORM ut_assert__eqtable(
'Test of simple table inequality.',
'ut_another',
'ut_temp',
null,
null,
'f'
);
PERFORM ut_assert__eqtable(
'Test of simple table inequality.',
'ut_another',
'ut_temp'
);
PERFORM ut_assert__isnotnull(
'Degenerate test of non-null',
'1',
'f',
't'
);
PERFORM ut_assert__isnotnull(
'Degenerate test of non-null',
'1'
);
PERFORM ut_assert__isnull(
'Degenerate test of null',
null,
'f',
't'
);
PERFORM ut_assert__isnull(
'Degenerate test of null',
null
);
-- We already deleted this, so v_str should be null
select into v_str a_varchar from ut_another where an_integer = 2;
PERFORM ut_assert__isnull(
'Degenerate test of null',
v_str,
'f',
't'
);
PERFORM ut_assert__isnull(
'Degenerate test of null',
v_str
);
-- Still in table, so should be non-null.
select into v_str a_varchar from ut_another where an_integer = 1;
PERFORM ut_assert__isnotnull(
'Degenerate test of null',
v_str,
'f',
't'
);
PERFORM ut_assert__isnotnull(
'Degenerate test of null',
v_str
);
drop table ut_temp;
drop table ut_another;
return 0;
END;
$$ LANGUAGE plpgsql;
select (case when inline_0 () = 0
then
'Regression test is a success.'
end) as test_result;
drop function inline_0 ();
|
-- etldoc: layer_aeroway[shape=record fillcolor=lightpink, style="rounded,filled",
-- etldoc: label="layer_aeroway |<z10> z10|<z11> z11|<z12> z12|<z13> z13|<z14_> z14+" ];
CREATE OR REPLACE FUNCTION layer_aeroway(bbox geometry, zoom_level int)
RETURNS TABLE
(
icgc_id bigint,
geometry geometry,
class text,
ref text,
tipus int
)
AS
$$
SELECT icgc_id, geometry, aeroway AS class, ref, tipus
FROM (
-- etldoc: osm_aeroway_linestring_gen_z10 -> layer_aeroway:z10
SELECT NULL::int AS icgc_id, oel.geometry, oel.aeroway, oel.ref, NULL::int as tipus
FROM osm_aeroway_linestring_gen_z10 oel, icgc_data.catalunya c
WHERE zoom_level = 10
AND ST_Disjoint(c.geometry, oel.geometry)
UNION ALL
-- etldoc: osm_aeroway_linestring_gen_z11 -> layer_aeroway:z11
SELECT NULL::int AS icgc_id, oel.geometry, oel.aeroway, oel.ref, NULL::int as tipus
FROM osm_aeroway_linestring_gen_z11 oel, icgc_data.catalunya c
WHERE zoom_level = 11
AND ST_Disjoint(c.geometry, oel.geometry)
UNION ALL
-- etldoc: osm_aeroway_linestring_gen_z12 -> layer_aeroway:z12
SELECT NULL::int AS icgc_id, oel.geometry, oel.aeroway, oel.ref, NULL::int as tipus
FROM osm_aeroway_linestring_gen_z12 oel, icgc_data.catalunya c
WHERE zoom_level = 12
AND ST_Disjoint(c.geometry, oel.geometry)
UNION ALL
-- etldoc: osm_aeroway_linestring -> layer_aeroway:z13
-- etldoc: osm_aeroway_linestring -> layer_aeroway:z14_
SELECT NULL::int AS icgc_id, oel.geometry, oel.aeroway, oel.ref, NULL::int as tipus
FROM osm_aeroway_linestring oel, icgc_data.catalunya c
WHERE zoom_level >= 13
AND ST_Disjoint(c.geometry, oel.geometry)
UNION ALL
-- etldoc: osm_aeroway_polygon_gen_z10 -> layer_aeroway:z10
SELECT NULL::int AS icgc_id, oep.geometry, oep.aeroway, oep.ref, NULL::int as tipus
FROM osm_aeroway_polygon_gen_z10 oep, icgc_data.catalunya c
WHERE zoom_level = 10
AND ST_Disjoint(c.geometry, oep.geometry)
UNION ALL
-- etldoc: osm_aeroway_polygon_gen_z11 -> layer_aeroway:z11
SELECT NULL::int AS icgc_id, oep.geometry, oep.aeroway, oep.ref, NULL::int as tipus
FROM osm_aeroway_polygon_gen_z11 oep, icgc_data.catalunya c
WHERE zoom_level = 11
AND ST_Disjoint(c.geometry, oep.geometry)
UNION ALL
-- etldoc: osm_aeroway_polygon_gen_z12 -> layer_aeroway:z12
SELECT NULL::int AS icgc_id, oep.geometry, oep.aeroway, oep.ref, NULL::int as tipus
FROM osm_aeroway_polygon_gen_z12 oep, icgc_data.catalunya c
WHERE zoom_level = 12
AND ST_Disjoint(c.geometry, oep.geometry)
UNION ALL
-- etldoc: osm_aeroway_polygon_gen_z13 -> layer_aeroway:z13
SELECT NULL::int AS icgc_id, oep.geometry, oep.aeroway, oep.ref, NULL::int as tipus
FROM osm_aeroway_polygon_gen_z13 oep, icgc_data.catalunya c
WHERE zoom_level = 13
AND ST_Disjoint(c.geometry, oep.geometry)
UNION ALL
-- etldoc: osm_aeroway_polygon -> layer_aeroway:z14_
SELECT NULL::int AS icgc_id, oep.geometry, oep.aeroway, oep.ref, NULL::int as tipus
FROM osm_aeroway_polygon oep, icgc_data.catalunya c
WHERE zoom_level = 14
AND ST_Disjoint(c.geometry, oep.geometry)
UNION ALL
-- etldoc: osm_aeroway_point -> layer_aeroway:z14_
SELECT NULL::int AS icgc_id, oep.geometry, oep.aeroway, oep.ref, NULL::int as tipus
FROM osm_aeroway_point oep, icgc_data.catalunya c
WHERE zoom_level = 14
AND ST_Disjoint(c.geometry, oep.geometry)
UNION ALL
-- icgc aeroway
SELECT icgc_id, geom, class AS aeroway, NULL::text AS ref, tipus
FROM icgc_data.aeroway
WHERE zoom_level >= 10 AND geom && bbox
) AS zoom_levels
WHERE geometry && bbox;
$$ LANGUAGE SQL STABLE
-- STRICT
PARALLEL SAFE;
|
# Item schema
# --- !Ups
CREATE TABLE ITEM (
ID BIGSERIAL PRIMARY KEY,
ITEM_NUMBER TEXT NOT NULL UNIQUE,
CATEGORY TEXT NOT NULL,
DONOR TEXT NOT NULL,
DESCRIPTION TEXT NOT NULL,
MINBID MONEY NOT NULL,
ESTVALUE MONEY NOT NULL
);
# --- !Downs
DROP TABLE ITEM;
|
-- phpMyAdmin SQL Dump
-- version 4.8.2
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Jan 04, 2019 at 10:23 AM
-- Server version: 10.1.34-MariaDB
-- PHP Version: 7.2.7
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: `qlsv`
--
-- --------------------------------------------------------
--
-- Table structure for table `lop`
--
CREATE TABLE `lop` (
`LopID` int(11) NOT NULL,
`MaLop` varchar(20) NOT NULL,
`TenLop` varchar(100) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Dumping data for table `lop`
--
INSERT INTO `lop` (`LopID`, `MaLop`, `TenLop`) VALUES
(3, 'THTD55', 'Tin học trắc địa K55'),
(4, 'THKT62', 'Tin học Kinh tếK62'),
(6, 'CNPM65', 'Công nghệ phần mềm K65'),
(7, 'HTTT64', 'Hệ thống thông tin K64');
-- --------------------------------------------------------
--
-- Table structure for table `sinhvien`
--
CREATE TABLE `sinhvien` (
`SinhVienID` int(11) NOT NULL,
`MaSinhVien` varchar(20) NOT NULL,
`TenSinhVien` varchar(100) NOT NULL,
`LopID` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Dumping data for table `sinhvien`
--
INSERT INTO `sinhvien` (`SinhVienID`, `MaSinhVien`, `TenSinhVien`, `LopID`) VALUES
(1, '0987654321', '<NAME>', 3),
(4, 'SV2', '<NAME>', 7);
-- --------------------------------------------------------
--
-- Table structure for table `taikhoan`
--
CREATE TABLE `taikhoan` (
`ID` int(11) NOT NULL,
`TenDangNhap` varchar(20) NOT NULL,
`MatKhau` varchar(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `taikhoan`
--
INSERT INTO `taikhoan` (`ID`, `TenDangNhap`, `MatKhau`) VALUES
(1, 'admin', '12345');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `lop`
--
ALTER TABLE `lop`
ADD PRIMARY KEY (`LopID`);
--
-- Indexes for table `sinhvien`
--
ALTER TABLE `sinhvien`
ADD PRIMARY KEY (`SinhVienID`),
ADD KEY `LopID` (`LopID`);
--
-- Indexes for table `taikhoan`
--
ALTER TABLE `taikhoan`
ADD PRIMARY KEY (`ID`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `lop`
--
ALTER TABLE `lop`
MODIFY `LopID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT for table `sinhvien`
--
ALTER TABLE `sinhvien`
MODIFY `SinhVienID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `taikhoan`
--
ALTER TABLE `taikhoan`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
<gh_stars>0
drop table usuaris if exists;
drop table opcions if exists;
drop table votacions if exists;
create table votacions (
hash_votacio varchar(100) /* hashVotacio */ ,
nom varchar(100) /* nom */ ,
descripcio varchar(100) /* descripcio */ ,
data_inici timestamp /* dataInici */ ,
data_fi timestamp /* dataFi */
);
alter table votacions add constraint pk_votacions primary key (hash_votacio);
create table opcions (
id_opcio integer unique /* id.idOpcio */ ,
hash_votacio varchar(100) /* id.hashVotacio */ ,
nom varchar(100) /* nom */ ,
descripcio varchar(100) /* descripcio */
);
alter table opcions add constraint pk_opcions primary key (id_opcio,hash_votacio);
alter table opcions alter column id_opcio integer generated by default as identity(start with 100);
create table usuaris (
hash_usuari varchar(100) /* id.hashUsuari */ ,
hash_votacio varchar(100) /* id.hashVotacio */ ,
email varchar(100) /* email */ ,
alias varchar(100) /* alias */ ,
id_opcio_votada integer /* idOpcioVotada */ ,
data_votacio timestamp /* dataVotacio */
);
alter table usuaris add constraint pk_usuaris primary key (hash_usuari,hash_votacio);
alter table opcions add foreign key (hash_votacio) references votacions (hash_votacio);
alter table usuaris add foreign key (hash_votacio) references votacions (hash_votacio);
alter table usuaris add foreign key (id_opcio_votada) references opcions (id_opcio);
|
create table orcas_orderentry_meta.categories
(
ctgr_id number(15) not null,
version number(15) default "0" not null,
name varchar2(30) not null,
description varchar2(1000) not null,
constraint ctgr_pk primary key (ctgr_id),
constraint ctgr_uc unique (name),
index orcas_orderentry_data.ctgr_description_ix (description),
comment on column version is 'default ist null';
comment on table is 'categories tabelle';
);
|
UPDATE ko_cluster_manifest SET network_vars='[{\"name\":\"calico\",\"version\":\"v3.14.1\"}, {\"name\":\"flanneld\",\"version\":\"v0.12.0\"}, {\"name\":\"cilium\",\"version\":\"v1.9.5\"}]' WHERE name='v1.18.4-ko1';
UPDATE ko_cluster_manifest SET network_vars='[{\"name\":\"calico\",\"version\":\"v3.14.1\"}, {\"name\":\"flanneld\",\"version\":\"v0.12.0\"}, {\"name\":\"cilium\",\"version\":\"v1.9.5\"}]' WHERE name='v1.18.6-ko1';
UPDATE ko_cluster_manifest SET network_vars='[{\"name\":\"calico\",\"version\":\"v3.14.1\"}, {\"name\":\"flanneld\",\"version\":\"v0.12.0\"}, {\"name\":\"cilium\",\"version\":\"v1.9.5\"}]' WHERE name='v1.18.8-ko1';
UPDATE ko_cluster_manifest SET network_vars='[{\"name\":\"calico\",\"version\":\"v3.14.1\"}, {\"name\":\"flanneld\",\"version\":\"v0.12.0\"}, {\"name\":\"cilium\",\"version\":\"v1.9.5\"}]' WHERE name='v1.18.10-ko1';
UPDATE ko_cluster_manifest SET network_vars='[{\"name\":\"calico\",\"version\":\"v3.16.5\"}, {\"name\":\"flanneld\",\"version\":\"v0.13.0\"}, {\"name\":\"cilium\",\"version\":\"v1.9.5\"}]' WHERE name='v1.18.12-ko1';
UPDATE ko_cluster_manifest SET network_vars='[{\"name\":\"calico\",\"version\":\"v3.16.5\"}, {\"name\":\"flanneld\",\"version\":\"v0.13.0\"}, {\"name\":\"cilium\",\"version\":\"v1.9.5\"}]' WHERE name='v1.18.14-ko1';
UPDATE ko_cluster_manifest SET network_vars='[{\"name\":\"calico\",\"version\":\"v3.16.5\"}, {\"name\":\"flanneld\",\"version\":\"v0.13.0\"}, {\"name\":\"cilium\",\"version\":\"v1.9.5\"}]' WHERE name='v1.18.15-ko1';
UPDATE ko_cluster_manifest SET network_vars='[{\"name\":\"calico\",\"version\":\"v3.16.5\"}, {\"name\":\"flanneld\",\"version\":\"v0.13.0\"}, {\"name\":\"cilium\",\"version\":\"v1.9.5\"}]' WHERE name='v1.20.4-ko1'; |
set client_encoding = 'utf-8';
set client_min_messages = warning;
create extension if not exists pgtap;
reset client_min_messages;
begin;
select * from no_plan();
insert into swrs_extract.eccc_xml_file (xml_file) values ($$
<ReportData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<RegistrationData>
<Organisation>
<Details>
<BusinessLegalName><NAME></BusinessLegalName>
<EnglishTradeName><NAME></EnglishTradeName>
<FrenchTradeName/>
<CRABusinessNumber>12345</CRABusinessNumber>
<DUNSNumber>0</DUNSNumber>
<WebSite>www.nhl.com</WebSite>
</Details>
</Organisation>
<Facility>
<Details>
<FacilityName>fname</FacilityName>
<RelationshipType>Owned and Operated</RelationshipType>
<PortabilityIndicator>N</PortabilityIndicator>
<Status>Active</Status>
</Details>
</Facility>
<Contacts/>
</RegistrationData>
<ReportDetails>
<ReportID>1234</ReportID>
<ReportType>R1</ReportType>
<FacilityId>0000</FacilityId>
<FacilityType>EIO</FacilityType>
<OrganisationId>0000</OrganisationId>
<ReportingPeriodDuration>2025</ReportingPeriodDuration>
<ReportStatus>
<Status>Submitted</Status>
<SubmissionDate>2013-03-27T19:25:55.32</SubmissionDate>
<LastModifiedBy>Buddy</LastModifiedBy>
</ReportStatus>
</ReportDetails>
<OperationalWorkerReport/>
<VerifyTombstone>
<Organisation>
<Details>
<BusinessLegalName><NAME></BusinessLegalName>
<EnglishTradeName><NAME></EnglishTradeName>
<CRABusinessNumber>123456778</CRABusinessNumber>
<DUNSNumber>00-000-0000</DUNSNumber>
</Details>
</Organisation>
<Facility>
<Details>
<FacilityName><NAME></FacilityName>
</Details>
</Facility>
</VerifyTombstone>
<ActivityData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ActivityPages>
<Process ProcessName="ElectricityGeneration">
<SubProcess SubprocessName="Emissions from fuel combustion for electricity generation" InformationRequirement="Required">
</SubProcess>
</Process>
<Process>
<SubProcess SubprocessName="Additional Reportable Information as per WCI.352(i)(1)-(12)" InformationRequirement="MandatoryAdditional">
<Amount AmtDomain="PulpAndPaperBlackLiquor" AmtAction="Combusted" AmtPeriod="Annual">168389</Amount>
<PercentSolidsByWeight>53</PercentSolidsByWeight>
<PulpAndPaperCarbonates/>
</SubProcess>
</Process>
</ActivityPages>
</ActivityData>
</ReportData>
$$);
-- Run table export function without clearing the materialized views (for data equality tests below)
SET client_min_messages TO WARNING; -- load is a bit verbose
select swrs_transform.load(true, false);
-- Table swrs.additional_data exists
select has_table('swrs'::name, 'additional_data'::name);
-- Additional Data has pk
select has_pk('swrs', 'additional_data', 'ggircs_additional_data has primary key');
-- Additional Data has fk
select has_fk('swrs', 'additional_data', 'ggircs_additional_data has foreign key constraint(s)');
-- Additional Data has data
select isnt_empty('select * from swrs.additional_data', 'there is data in swrs.additional_data');
-- FKey tests
-- Additional Data -> Activity
select set_eq(
$$
select distinct(activity.eccc_xml_file_id) from swrs.additional_data
join swrs.activity
on additional_data.activity_id = activity.id
$$,
'select distinct(eccc_xml_file_id) from swrs.activity',
'Foreign key activity_id in swrs.additional_data references swrs.activity.id'
);
-- Additional Data -> Report
select set_eq(
$$
select distinct(report.eccc_xml_file_id) from swrs.additional_data
join swrs.report
on additional_data.report_id = report.id
$$,
'select distinct(eccc_xml_file_id) from swrs.report',
'Foreign key report_id in swrs.additional_data references swrs.report.id'
);
-- Data in swrs_transform.additional_data === data in swrs.additional_data
select set_eq(
$$
select
eccc_xml_file_id,
grandparent,
parent,
class,
attribute,
attr_value,
node_value
from swrs_transform.additional_data
order by
eccc_xml_file_id,
grandparent,
parent,
class,
node_value
asc
$$,
$$
select
eccc_xml_file_id,
grandparent,
parent,
class,
attribute,
attr_value,
node_value
from swrs.additional_data
order by
eccc_xml_file_id,
grandparent,
parent,
class,
node_value
asc
$$,
'data in swrs_transform.additional_data === swrs.additional_data');
select * from finish();
rollback;
|
-- @testpoint: opengauss关键字sqlcode(非保留),作为游标名,部分测试点合理报错
--前置条件
drop table if exists explain_test cascade;
create table explain_test(cid int,fid int);
--关键字不带引号-成功
start transaction;
cursor sqlcode for select * from explain_test order by 1;
close sqlcode;
end;
--关键字带双引号-成功
start transaction;
cursor "sqlcode" for select * from explain_test order by 1;
close "sqlcode";
end;
--关键字带单引号-合理报错
start transaction;
cursor 'sqlcode' for select * from explain_test order by 1;
close 'sqlcode';
end;
--关键字带反引号-合理报错
start transaction;
cursor `sqlcode` for select * from explain_test order by 1;
close `sqlcode`;
end;
drop table if exists explain_test cascade; |
CREATE FUNCTION dbo.GetNextDayOfWeek
(
@StartDate DATE
, @DesiredDayOfWeek VARCHAR(9)
)
RETURNS Date
AS
/*
Returns the next day of the week for a given date.
For example, PResidents Day in the US is the third Monday in February. This commands returns PResidents Day for 2019
SELECT dbo.GetNextDayOfWeek('02/15/2019', 'MONDAY') => 2019-02-18
*/
BEGIN
DECLARE @Result DATE
, @Plus1 DATE = DATEADD(DAY, 1, @StartDate)
, @Plus2 DATE = DATEADD(DAY, 2, @StartDate)
, @Plus3 DATE = DATEADD(DAY, 3, @StartDate)
, @Plus4 DATE = DATEADD(DAY, 4, @StartDate)
, @Plus5 DATE = DATEADD(DAY, 5, @StartDate)
, @Plus6 DATE = DATEADD(DAY, 6, @StartDate)
SELECT @Result = CASE
WHEN DATENAME(WEEKDAY, @Plus1) = @DesiredDayOfWeek THEN @Plus1
WHEN DATENAME(WEEKDAY, @Plus2) = @DesiredDayOfWeek THEN @Plus2
WHEN DATENAME(WEEKDAY, @Plus3) = @DesiredDayOfWeek THEN @Plus3
WHEN DATENAME(WEEKDAY, @Plus4) = @DesiredDayOfWeek THEN @Plus4
WHEN DATENAME(WEEKDAY, @Plus5) = @DesiredDayOfWeek THEN @Plus5
WHEN DATENAME(WEEKDAY, @Plus6) = @DesiredDayOfWeek THEN @Plus6
ELSE @StartDate END
RETURN @Result
END
|
SELECT
wpaef_posts.post_type,
wpaef_posts.ID,
wpaef_posts.post_author,
wpaef_users.display_name,
wpaef_posts.post_modified,
wpaef_posts.post_date,
wpaef_posts.post_title,
wpaef_posts.post_excerpt,
wpaef_posts.post_status,
wpaef_postmeta.meta_key,
wpaef_postmeta.meta_value
FROM
(
wpaef_posts
LEFT JOIN
wpaef_users
ON
wpaef_posts.ID = wpaef_users.ID
)
LEFT JOIN
wpaef_postmeta
ON
wpaef_posts.ID = wpaef_postmeta.post_id
ORDER BY
wpaef_posts.post_type,
wpaef_users.display_name,
wpaef_posts.post_modified DESC ,
wpaef_posts.post_date DESC;
SELECT
p.post_type,
p.ID, p.post_author,
u.display_name,
p.post_modified,
p.post_date,
p.post_title,
p.post_excerpt,
p.post_status,
tt.taxonomy, t.name
FROM
(
wpaef_posts AS p
LEFT JOIN
wpaef_users AS u
ON
p.ID = u.ID
)
LEFT JOIN
(
(
wpaef_terms AS t
RIGHT JOIN
wpaef_term_taxonomy AS tt
ON t.term_id = tt.term_id
)
RIGHT JOIN
wpaef_term_relationships AS tr
ON tt.term_taxonomy_id = tr.term_taxonomy_id
)
ON p.ID = tr.object_id
ORDER BY
p.post_type,
u.display_name,
p.post_modified DESC,
p.post_date DESC;
SELECT
tv.display_name,
DATE_FORMAT(tv.post_date,"%Y-%m-%d") AS post_date,
COUNT(DISTINCT tv.taxonomy) AS n_count_taxonomies,
IF(post_type='entity',COUNT(DISTINCT tv.ID),0) AS n_count_entities,
IF(post_type='person',COUNT(DISTINCT tv.ID),0) AS n_count_persons,
IF(post_type='book',COUNT(DISTINCT tv.ID),0) AS n_count_books,
IF(post_type='company',COUNT(DISTINCT tv.ID),0) AS n_count_companies,
IF(post_type='exhibition',COUNT(DISTINCT tv.ID),0) AS n_count_entities,
COUNT(DISTINCT tv.ID) AS n_count_total
FROM
wpaef_xtr_vw_total_taxonomy AS tv
GROUP BY
tv.display_name,
DATE_FORMAT(tv.post_date,"%Y-%m-%d");
SELECT
DATE_FORMAT(tv.post_date,"%Y-%m-%d") AS post_date,
COUNT(DISTINCT tv.taxonomy) AS n_count_taxonomies,
IF(post_type='entity',COUNT(DISTINCT tv.ID),0) AS n_count_entities,
IF(post_type='person',COUNT(DISTINCT tv.ID),0) AS n_count_persons,
IF(post_type='book',COUNT(DISTINCT tv.ID),0) AS n_count_books,
IF(post_type='company',COUNT(DISTINCT tv.ID),0) AS n_count_companies,
IF(post_type='exhibition',COUNT(DISTINCT tv.ID),0) AS n_count_entities,
COUNT(DISTINCT tv.ID) AS n_count_total
FROM
wpaef_xtr_vw_total_taxonomy AS tv
GROUP BY
DATE_FORMAT(tv.post_date,"%Y-%m-%d");
SELECT
p.ID,
u.display_name,
p.post_title,
m.meta_key,
m.meta_value
FROM
(
wpaef_posts p
LEFT JOIN
wpaef_users u
ON
wpaef_posts.ID = wpaef_users.ID
)
LEFT JOIN
wpaef_postmeta
ON
wpaef_posts.ID = wpaef_postmeta.post_id
WHERE
p.post_type = 'entity'
AND
p.post_status = 'publish'
ORDER BY
wpaef_posts.post_type,
wpaef_users.display_name,
wpaef_posts.post_modified DESC ,
wpaef_posts.post_date DESC;
/* DUPLICATE SEARCH */
SELECT
p1.ID as id1,
p1.post_title as title1,
p1.post_author as post_author1,
p2.ID as id2,
p2.post_title as title2,
p2.post_author as post_author2
FROM
wpaef_posts AS p1
JOIN
wpaef_posts AS p2
ON
(
p1.ID < p2.ID /* don't duplicate pairs a/b b/a */
AND
p1.post_title= p2.post_title
);
/************/
SELECT
meta_value,
LENGTH(REPLACE(meta_value, ', ', ',')) - LENGTH(REPLACE(REPLACE(meta_value, ', ', ','),',','')) AS findme_count
FROM
wpaef_postmeta
WHERE
meta_key LIKE "%_town"
/*************/
SELECT
IF( LENGTH( meta_value ) - LENGTH( REPLACE( meta_value, ';', '' ) ) + 1 >= 3,
SUBSTRING_INDEX(SUBSTRING_INDEX(meta_value, ';', 3), ';', -1),
'') AS s_country,
IF( LENGTH( meta_value ) - LENGTH( REPLACE( meta_value, ';', '' ) ) + 1 >= 3,
SUBSTRING_INDEX(SUBSTRING_INDEX(meta_value, ';', 2), ';', -1),
'') AS s_autonomous_community,
IF( LENGTH( meta_value ) - LENGTH( REPLACE( meta_value, ';', '' ) ) + 1 >= 3,
SUBSTRING_INDEX(SUBSTRING_INDEX(meta_value, ';', 1), ';', -1),
'') AS s_town,
COUNT(DISTINCT post_id) AS n_posts,
COUNT(DISTINCT meta_id) AS n_meta
FROM
wpaef_postmeta
WHERE
meta_key LIKE "%_town"
GROUP BY
IF( LENGTH( meta_value ) - LENGTH( REPLACE( meta_value, ';', '' ) ) + 1 >= 3,
SUBSTRING_INDEX(SUBSTRING_INDEX(meta_value, ';', 3), ';', -1),
''),
IF( LENGTH( meta_value ) - LENGTH( REPLACE( meta_value, ';', '' ) ) + 1 >= 3,
SUBSTRING_INDEX(SUBSTRING_INDEX(meta_value, ';', 2), ';', -1),
''),
IF( LENGTH( meta_value ) - LENGTH( REPLACE( meta_value, ';', '' ) ) + 1 >= 3,
SUBSTRING_INDEX(SUBSTRING_INDEX(meta_value, ';', 1), ';', -1),
'')
/**************/
/*
AUTOLOOKUP_FIELDS:
ent
parent_entity
entity_relation
boo
paper_author
sponsorship
exh
parent_exhibition
info_source
artwork_author
supporter_entity
funding_entity
curator
catalog
museography
*/ |
<filename>DenimGroup/resetdb-threadfix.sql<gh_stars>0
# This file is subject to the terms and conditions defined in
# 'LICENSE.txt', which is part of this source code distribution.
#
# Copyright 2012-2016 Software Assurance Marketplace
drop database if exists threadfix;
create database threadfix character set = utf8mb4 collate = utf8mb4_unicode_ci;
|
<reponame>0417taehyun/blog
-- [ 프로그래머스 ] 이름이 있는 동물의 아이디
SELECT ANIMAL_ID
FROM ANIMAL_INS
WHERE NAME IS NOT NULL
ORDER BY ANIMAL_ID; |
<filename>backend/cen-v4.sql<gh_stars>1-10
DROP TABLE IF EXISTS TCNReport;
CREATE TABLE `TCNReport` (
`reportVK` varchar(32) DEFAULT "",
`report` varchar(4000) DEFAULT "",
`reportTS` int unsigned,
PRIMARY KEY (`reportVK`,`reportTS`),
KEY (`reportTS`)
);
|
-- Creator: MySQL Workbench 5.2.38/ExportSQLite plugin 2009.12.02
-- Author: <NAME>
-- Caption: New Model
-- Project: Name of the project
-- Changed: 2012-03-02 22:46
-- Created: 2012-03-02 20:47
PRAGMA foreign_keys = OFF;
-- Schema: mydb
BEGIN;
CREATE TABLE "tServer"(
"ID" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL CHECK("ID">=0),
"Name" VARCHAR(45) NOT NULL,
"IPAddress" VARCHAR(45) NOT NULL,
"Model" VARCHAR(45),
CONSTRAINT "ID_UNIQUE"
UNIQUE("ID")
);
CREATE TABLE "tType"(
"ID" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL CHECK("ID">=0),
"Name" VARCHAR(45) NOT NULL,
CONSTRAINT "ID_UNIQUE"
UNIQUE("ID")
);
CREATE TABLE "tLocation"(
"ID" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL CHECK("ID">=0),
"Address" VARCHAR(45),
"City" VARCHAR(45),
"State" VARCHAR(45),
"ZIPCode" VARCHAR(45),
"Country" VARCHAR(45),
CONSTRAINT "ID_UNIQUE"
UNIQUE("ID")
);
CREATE TABLE "tDatacenter"(
"ID" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL CHECK("ID">=0),
"Name" VARCHAR(45) NOT NULL,
"LocationID" INTEGER NOT NULL CHECK("LocationID">=0),
CONSTRAINT "ID_UNIQUE"
UNIQUE("ID"),
CONSTRAINT "LocationID"
FOREIGN KEY()
REFERENCES "tLocation"()
);
CREATE INDEX "tDatacenter.LocationID" ON "tDatacenter"();
CREATE TABLE "tDataLog"(
"ServerID" INTEGER PRIMARY KEY NOT NULL CHECK("ServerID">=0),
"Key" VARCHAR(45) NOT NULL,
"Value" VARCHAR(45) NOT NULL,
"Timestamp" DATETIME NOT NULL,
CONSTRAINT "ServerID"
FOREIGN KEY()
REFERENCES "tServer"()
);
CREATE INDEX "tDataLog.ServerID" ON "tDataLog"();
CREATE TABLE "tCluster"(
"ID" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL CHECK("ID">=0),
"Name" VARCHAR(45) NOT NULL,
"TypeID" INTEGER NOT NULL CHECK("TypeID">=0),
CONSTRAINT "ID_UNIQUE"
UNIQUE("ID"),
CONSTRAINT "TypeID"
FOREIGN KEY()
REFERENCES "tType"()
);
CREATE INDEX "tCluster.TypeID" ON "tCluster"();
CREATE TABLE "tClusterServer"(
"ClusterID" INTEGER NOT NULL CHECK("ClusterID">=0),
"ServerID" INTEGER NOT NULL CHECK("ServerID">=0),
PRIMARY KEY("ClusterID","ServerID"),
CONSTRAINT "ClusterID"
FOREIGN KEY()
REFERENCES "tCluster"(),
CONSTRAINT "ServerID"
FOREIGN KEY()
REFERENCES "tServer"()
);
CREATE INDEX "tClusterServer.ClusterID" ON "tClusterServer"();
CREATE INDEX "tClusterServer.ServerID" ON "tClusterServer"();
CREATE TABLE "tDatacenterCluster"(
"DatacenterID" INTEGER NOT NULL CHECK("DatacenterID">=0),
"ClusterID" INTEGER NOT NULL CHECK("ClusterID">=0),
PRIMARY KEY("DatacenterID","ClusterID"),
CONSTRAINT "DatacenterID"
FOREIGN KEY()
REFERENCES "tDatacenter"(),
CONSTRAINT "ClusterID"
FOREIGN KEY()
REFERENCES "tCluster"()
);
CREATE INDEX "tDatacenterCluster.DatacenterID" ON "tDatacenterCluster"();
CREATE INDEX "tDatacenterCluster.ClusterID" ON "tDatacenterCluster"();
COMMIT;
|
<reponame>Abelarde/Bd1-project2
DROP SCHEMA IF EXISTS `CPM` ;
CREATE SCHEMA IF NOT EXISTS `CPM` DEFAULT CHARACTER SET utf8mb4 ;
USE `CPM` ;
DROP TABLE IF EXISTS `CPM`.`Profesional` ;
CREATE TABLE IF NOT EXISTS `CPM`.`Profesional` (
`idProfesional` INT NOT NULL AUTO_INCREMENT,
`nombre` VARCHAR(255) NULL,
`salario` INT NULL,
`comision` INT NULL,
`fechaInicioFunciones` DATE NULL,
PRIMARY KEY (`idProfesional`))
ENGINE = InnoDB;
DROP TABLE IF EXISTS `CPM`.`Invento` ;
CREATE TABLE IF NOT EXISTS `CPM`.`Invento` (
`idInvento` INT NOT NULL AUTO_INCREMENT,
`nombre` VARCHAR(255) NULL,
`anio` INT NULL,
`Profesional_idProfesional` INT NOT NULL,
PRIMARY KEY (`idInvento`),
CONSTRAINT `fk_Invento_Profesional1`
FOREIGN KEY (`Profesional_idProfesional`)
REFERENCES `CPM`.`Profesional` (`idProfesional`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE INDEX `fk_Invento_Profesional1_idx` ON `CPM`.`Invento` (`Profesional_idProfesional` ASC) VISIBLE;
DROP TABLE IF EXISTS `CPM`.`Region` ;
CREATE TABLE IF NOT EXISTS `CPM`.`Region` (
`idRegion` INT NOT NULL AUTO_INCREMENT,
`nombre` VARCHAR(255) NULL,
`Region_idRegion` INT NULL,
PRIMARY KEY (`idRegion`),
CONSTRAINT `fk_Region_Region1`
FOREIGN KEY (`Region_idRegion`)
REFERENCES `CPM`.`Region` (`idRegion`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE INDEX `fk_Region_Region1_idx` ON `CPM`.`Region` (`Region_idRegion` ASC) VISIBLE;
DROP TABLE IF EXISTS `CPM`.`Pais` ;
CREATE TABLE IF NOT EXISTS `CPM`.`Pais` (
`idPais` INT NOT NULL AUTO_INCREMENT,
`nombre` VARCHAR(255) NULL,
`capital` VARCHAR(255) NULL,
`ar` INT NULL,
`poblacion` INT NULL,
`Region_idRegion` INT NULL,
PRIMARY KEY (`idPais`),
CONSTRAINT `fk_Pais_Region1`
FOREIGN KEY (`Region_idRegion`)
REFERENCES `CPM`.`Region` (`idRegion`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE INDEX `fk_Pais_Region1_idx` ON `CPM`.`Pais` (`Region_idRegion` ASC) VISIBLE;
DROP TABLE IF EXISTS `CPM`.`Inventor` ;
CREATE TABLE IF NOT EXISTS `CPM`.`Inventor` (
`idInventor` INT NOT NULL AUTO_INCREMENT,
`nombre` VARCHAR(255) NULL,
`Pais_idPais` INT NOT NULL,
PRIMARY KEY (`idInventor`),
CONSTRAINT `fk_Inventor_Pais1`
FOREIGN KEY (`Pais_idPais`)
REFERENCES `CPM`.`Pais` (`idPais`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE INDEX `fk_Inventor_Pais1_idx` ON `CPM`.`Inventor` (`Pais_idPais` ASC) VISIBLE;
DROP TABLE IF EXISTS `CPM`.`Patente` ;
CREATE TABLE IF NOT EXISTS `CPM`.`Patente` (
`idPatente` INT NOT NULL AUTO_INCREMENT,
`Invento_idInvento` INT NOT NULL,
`Inventor_idInventor` INT NOT NULL,
`Pais_idPais` INT NOT NULL,
PRIMARY KEY (`idPatente`),
CONSTRAINT `fk_Patente_Invento1`
FOREIGN KEY (`Invento_idInvento`)
REFERENCES `CPM`.`Invento` (`idInvento`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_Patente_Inventor1`
FOREIGN KEY (`Inventor_idInventor`)
REFERENCES `CPM`.`Inventor` (`idInventor`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_Patente_Pais1`
FOREIGN KEY (`Pais_idPais`)
REFERENCES `CPM`.`Pais` (`idPais`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE INDEX `fk_Patente_Invento1_idx` ON `CPM`.`Patente` (`Invento_idInvento` ASC) VISIBLE;
CREATE INDEX `fk_Patente_Inventor1_idx` ON `CPM`.`Patente` (`Inventor_idInventor` ASC) VISIBLE;
CREATE INDEX `fk_Patente_Pais1_idx` ON `CPM`.`Patente` (`Pais_idPais` ASC) VISIBLE;
DROP TABLE IF EXISTS `CPM`.`Encuesta` ;
CREATE TABLE IF NOT EXISTS `CPM`.`Encuesta` (
`idEncuesta` INT NOT NULL AUTO_INCREMENT,
`nombre` VARCHAR(255) NULL,
PRIMARY KEY (`idEncuesta`))
ENGINE = InnoDB;
DROP TABLE IF EXISTS `CPM`.`Respuesta` ;
CREATE TABLE IF NOT EXISTS `CPM`.`Respuesta` (
`idRespuesta` INT NOT NULL AUTO_INCREMENT,
`nombre` VARCHAR(255) NULL,
PRIMARY KEY (`idRespuesta`))
ENGINE = InnoDB;
DROP TABLE IF EXISTS `CPM`.`Pregunta` ;
CREATE TABLE IF NOT EXISTS `CPM`.`Pregunta` (
`idPregunta` INT NOT NULL AUTO_INCREMENT,
`nombre` VARCHAR(255) NULL,
`Respuesta_idRespuestaCorrecta` INT NULL,
PRIMARY KEY (`idPregunta`),
CONSTRAINT `fk_Pregunta_Respuesta1`
FOREIGN KEY (`Respuesta_idRespuestaCorrecta`)
REFERENCES `CPM`.`Respuesta` (`idRespuesta`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE INDEX `fk_Pregunta_Respuesta1_idx` ON `CPM`.`Pregunta` (`Respuesta_idRespuestaCorrecta` ASC) VISIBLE;
DROP TABLE IF EXISTS `CPM`.`EncuestaPregunta` ;
CREATE TABLE IF NOT EXISTS `CPM`.`EncuestaPregunta` (
`Encuesta_idEncuesta` INT NOT NULL,
`Pregunta_idPregunta` INT NOT NULL,
`Respuesta_idRespuestaPais` INT NULL,
`Pais_idPais` INT NOT NULL,
CONSTRAINT `fk_EncuestaPregunta_Encuesta1`
FOREIGN KEY (`Encuesta_idEncuesta`)
REFERENCES `CPM`.`Encuesta` (`idEncuesta`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_EncuestaPregunta_Pregunta1`
FOREIGN KEY (`Pregunta_idPregunta`)
REFERENCES `CPM`.`Pregunta` (`idPregunta`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_EncuestaPregunta_Respuesta1`
FOREIGN KEY (`Respuesta_idRespuestaPais`)
REFERENCES `CPM`.`Respuesta` (`idRespuesta`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_EncuestaPregunta_Pais1`
FOREIGN KEY (`Pais_idPais`)
REFERENCES `CPM`.`Pais` (`idPais`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE INDEX `fk_EncuestaPregunta_Encuesta1_idx` ON `CPM`.`EncuestaPregunta` (`Encuesta_idEncuesta` ASC) VISIBLE;
CREATE INDEX `fk_EncuestaPregunta_Pregunta1_idx` ON `CPM`.`EncuestaPregunta` (`Pregunta_idPregunta` ASC) VISIBLE;
CREATE INDEX `fk_EncuestaPregunta_Respuesta1_idx` ON `CPM`.`EncuestaPregunta` (`Respuesta_idRespuestaPais` ASC) VISIBLE;
CREATE INDEX `fk_EncuestaPregunta_Pais1_idx` ON `CPM`.`EncuestaPregunta` (`Pais_idPais` ASC) VISIBLE;
DROP TABLE IF EXISTS `CPM`.`PreguntaRespuesta` ;
CREATE TABLE IF NOT EXISTS `CPM`.`PreguntaRespuesta` (
`Respuesta_idRespuesta` INT NULL,
`Pregunta_idPregunta` INT NULL,
CONSTRAINT `fk_PreguntaRespuesta_Respuesta1`
FOREIGN KEY (`Respuesta_idRespuesta`)
REFERENCES `CPM`.`Respuesta` (`idRespuesta`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_PreguntaRespuesta_Pregunta1`
FOREIGN KEY (`Pregunta_idPregunta`)
REFERENCES `CPM`.`Pregunta` (`idPregunta`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE INDEX `fk_PreguntaRespuesta_Respuesta1_idx` ON `CPM`.`PreguntaRespuesta` (`Respuesta_idRespuesta` ASC) VISIBLE;
CREATE INDEX `fk_PreguntaRespuesta_Pregunta1_idx` ON `CPM`.`PreguntaRespuesta` (`Pregunta_idPregunta` ASC) VISIBLE;
DROP TABLE IF EXISTS `CPM`.`AreaInvestigacion` ;
CREATE TABLE IF NOT EXISTS `CPM`.`AreaInvestigacion` (
`idAreaInvestigacion` INT NOT NULL AUTO_INCREMENT,
`nombre` VARCHAR(255) NULL,
`ranking` INT NULL,
`Profesional_idProfesionalJefe` INT NULL,
`Profesional_idProfesionalJefeJefe` INT NULL,
PRIMARY KEY (`idAreaInvestigacion`),
CONSTRAINT `fk_AreaInvestigacion_Profesional1`
FOREIGN KEY (`Profesional_idProfesionalJefe`)
REFERENCES `CPM`.`Profesional` (`idProfesional`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_AreaInvestigacion_Profesional2`
FOREIGN KEY (`Profesional_idProfesionalJefeJefe`)
REFERENCES `CPM`.`Profesional` (`idProfesional`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE INDEX `fk_AreaInvestigacion_Profesional1_idx` ON `CPM`.`AreaInvestigacion` (`Profesional_idProfesionalJefe` ASC) VISIBLE;
CREATE INDEX `fk_AreaInvestigacion_Profesional2_idx` ON `CPM`.`AreaInvestigacion` (`Profesional_idProfesionalJefeJefe` ASC) VISIBLE;
DROP TABLE IF EXISTS `CPM`.`ProfesionalAreaInvestigacion` ;
CREATE TABLE IF NOT EXISTS `CPM`.`ProfesionalAreaInvestigacion` (
`AreaInvestigacion_idAreaInvestigacion` INT NULL,
`Profesional_idProfesional` INT NULL,
CONSTRAINT `fk_ProfesionalAreaInvestigacion_AreaInvestigacion1`
FOREIGN KEY (`AreaInvestigacion_idAreaInvestigacion`)
REFERENCES `CPM`.`AreaInvestigacion` (`idAreaInvestigacion`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_ProfesionalAreaInvestigacion_Profesional1`
FOREIGN KEY (`Profesional_idProfesional`)
REFERENCES `CPM`.`Profesional` (`idProfesional`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE INDEX `fk_ProfesionalAreaInvestigacion_AreaInvestigacion1_idx` ON `CPM`.`ProfesionalAreaInvestigacion` (`AreaInvestigacion_idAreaInvestigacion` ASC) VISIBLE;
CREATE INDEX `fk_ProfesionalAreaInvestigacion_Profesional1_idx` ON `CPM`.`ProfesionalAreaInvestigacion` (`Profesional_idProfesional` ASC) VISIBLE;
DROP TABLE IF EXISTS `CPM`.`Frontera` ;
CREATE TABLE IF NOT EXISTS `CPM`.`Frontera` (
`idFrontera` INT NOT NULL AUTO_INCREMENT,
`Pais_idPaisPrincipal` INT NULL,
`Pais_idPaisSecundario` INT NULL,
`norte` CHAR(1) NULL,
`sur` CHAR(1) NULL,
`este` CHAR(1) NULL,
`oeste` CHAR(1) NULL,
PRIMARY KEY (`idFrontera`),
CONSTRAINT `fk_Frontera_Pais1`
FOREIGN KEY (`Pais_idPaisPrincipal`)
REFERENCES `CPM`.`Pais` (`idPais`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_Frontera_Pais2`
FOREIGN KEY (`Pais_idPaisSecundario`)
REFERENCES `CPM`.`Pais` (`idPais`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE INDEX `fk_Frontera_Pais1_idx` ON `CPM`.`Frontera` (`Pais_idPaisPrincipal` ASC) VISIBLE;
CREATE INDEX `fk_Frontera_Pais2_idx` ON `CPM`.`Frontera` (`Pais_idPaisSecundario` ASC) VISIBLE;
|
<filename>timer.sql
-----------------------------------------------------------------------------
--
-- Script: timer.sql
--
-- Author: <NAME>
-- www.oracle-developer.net
--
-- Package: TIMER
--
--
-- Purpose: Timing package for testing durations of alternative coding
-- approaches. Based on Steven Feuerstein's original timer package
-- but simplified and modified. Works for Oracle versions 8i and
-- above.
--
-----------------------------------------------------------------------------
CREATE OR REPLACE PACKAGE timer AS
secs CONSTANT PLS_INTEGER := 1;
mins CONSTANT PLS_INTEGER := 2;
hrs CONSTANT PLS_INTEGER := 3;
days CONSTANT PLS_INTEGER := 4;
PROCEDURE snap (
show_stack_in IN BOOLEAN DEFAULT FALSE
);
PROCEDURE show (
prefix_in IN VARCHAR2 DEFAULT NULL,
format_in IN PLS_INTEGER DEFAULT timer.secs
);
END timer;
/
sho err
CREATE OR REPLACE PACKAGE BODY timer IS
/* Package (global) variables... */
g_last_timing PLS_INTEGER := NULL;
g_show_stack BOOLEAN := FALSE;
/******************* FUNCTION caller *********************/
FUNCTION caller RETURN VARCHAR2 IS
v_stk VARCHAR2(4000) := DBMS_UTILITY.FORMAT_CALL_STACK;
v_dpt PLS_INTEGER := 6;
v_pos PLS_INTEGER := 21;
v_dlm VARCHAR2(1) := CHR(10);
BEGIN
RETURN NVL(
SUBSTR(
SUBSTR(
v_stk,
INSTR( v_stk, v_dlm ,1,(v_dpt-1))+1,
INSTR( v_stk, v_dlm ,1, v_dpt) - (INSTR( v_stk, v_dlm, 1, (v_dpt-1)))-1
),
v_pos ),
'[unknown]' );
END caller;
/******************* PROCEDURE snap *********************/
PROCEDURE snap (
show_stack_in IN BOOLEAN DEFAULT FALSE
) IS
BEGIN
g_last_timing := DBMS_UTILITY.GET_TIME;
IF show_stack_in THEN
g_show_stack := show_stack_in;
DBMS_OUTPUT.PUT_LINE('[started ' || caller() || ']');
END IF;
END snap;
/******************* FUNCTION elapsed *********************/
FUNCTION elapsed RETURN NUMBER IS
BEGIN
RETURN DBMS_UTILITY.GET_TIME - g_last_timing;
END elapsed;
/******************* FUNCTION reformat *********************/
FUNCTION reformat (
input_in IN NUMBER,
format_in IN VARCHAR2 DEFAULT 9999900
) RETURN VARCHAR2 IS
BEGIN
RETURN TRIM(TO_CHAR(input_in, format_in));
END reformat;
/******************* FUNCTION remainder *********************/
FUNCTION REMAINDER (
input_in IN PLS_INTEGER,
modulus_in IN PLS_INTEGER,
format_in IN VARCHAR2 DEFAULT '900'
) RETURN VARCHAR2 IS
BEGIN
RETURN reformat(MOD(input_in, modulus_in), format_in);
END REMAINDER;
/******************* PROCEDURE show *********************/
PROCEDURE show (
prefix_in IN VARCHAR2 DEFAULT NULL,
format_in IN PLS_INTEGER DEFAULT timer.secs
) IS
/*
* Construct message for display of elapsed time. Programmer can
* include a prefix to the message and also ask that the last
* timing variable be reset/updated to save calling snap again.
*/
TYPE typ_rec_elapsed IS RECORD
( hsecs PLS_INTEGER
, secs PLS_INTEGER
, mins PLS_INTEGER
, hrs PLS_INTEGER
, days PLS_INTEGER
);
rec_elapsed typ_rec_elapsed;
v_elapsed_string VARCHAR2(128);
v_message VARCHAR2(512);
v_label VARCHAR2(128);
BEGIN
IF g_last_timing IS NULL THEN
DBMS_OUTPUT.PUT_LINE('Timer not started.');
ELSE
/* Capture the elapsed time and format it into the "set timing on" format of SQL*Plus... */
rec_elapsed.hsecs := elapsed();
rec_elapsed.secs := TRUNC(rec_elapsed.hsecs/100);
rec_elapsed.mins := TRUNC(rec_elapsed.hsecs/6000);
rec_elapsed.hrs := TRUNC(rec_elapsed.hsecs/360000);
rec_elapsed.days := TRUNC(rec_elapsed.hsecs/8640000);
IF format_in = timer.secs THEN
v_elapsed_string := reformat(rec_elapsed.hsecs/100, '99999990.00') || ' seconds';
ELSIF format_in = timer.mins THEN
v_elapsed_string := reformat(rec_elapsed.mins)
|| ' minutes '
|| REMAINDER(rec_elapsed.secs,60)
|| ' seconds';
ELSIF format_in = timer.hrs THEN
v_elapsed_string := reformat(rec_elapsed.hrs)
|| ' hours '
|| REMAINDER(rec_elapsed.mins,60)
|| ' minutes';
ELSE
v_elapsed_string := reformat(rec_elapsed.days)
|| ' days '
|| REMAINDER(rec_elapsed.hrs,24)
|| ' hours';
END IF;
/* Build the message string... */
v_label := NVL(prefix_in, 'elapsed');
v_message := '[' || v_label ||'] '|| v_elapsed_string;
/* Output... */
IF g_show_stack THEN
DBMS_OUTPUT.PUT_LINE('[stopped ' || caller() || ']');
END IF;
DBMS_OUTPUT.PUT_LINE(v_message);
/* Reset... */
g_last_timing := NULL;
g_show_stack := FALSE;
END IF;
END show;
END timer;
/
CREATE PUBLIC SYNONYM timer FOR timer;
GRANT EXECUTE ON timer TO PUBLIC;
|
<filename>10_stop_mysql_replication.sql
STOP SLAVE;
RESET SLAVE;
|
<filename>Sqlite/Search/Avg_Query_22mb_onPC_remote_from_pi.sql<gh_stars>1-10
-- For 22mb onPC remote from pi
-- The average of the ping current values, this will be the second value displayed
SELECT avg(wattage) FROM PowerMeasurement
WHERE strftime('%H %M %S %f', date) BETWEEN strftime('%H %M %S %f', '2022-03-29 17:21:19.742187') AND strftime('%H %M %S %f', '2022-03-29 17:22:06.528692')
OR strftime('%H %M %S %f', date) BETWEEN strftime('%H %M %S %f', '2022-03-29 17:22:15.294373') AND strftime('%H %M %S %f', '2022-03-29 17:23:06.131283')
OR strftime('%H %M %S %f', date) BETWEEN strftime('%H %M %S %f', '2022-03-29 17:23:13.016478') AND strftime('%H %M %S %f', '2022-03-29 17:24:02.530557')
OR strftime('%H %M %S %f', date) BETWEEN strftime('%H %M %S %f', '2022-03-29 17:24:15.304683') AND strftime('%H %M %S %f', '2022-03-29 17:25:12.359532')
UNION
-- The average of the nonping current values, this will be the first value displayed
SELECT avg(wattage) FROM PowerMeasurement
WHERE strftime('%H %M %S %f', date) NOT BETWEEN strftime('%H %M %S %f', '2022-03-29 17:21:19.742187') AND strftime('%H %M %S %f', '2022-03-29 17:22:06.528692')
OR strftime('%H %M %S %f', date) NOT BETWEEN strftime('%H %M %S %f', '2022-03-29 17:22:15.294373') AND strftime('%H %M %S %f', '2022-03-29 17:23:06.131283')
OR strftime('%H %M %S %f', date) NOT BETWEEN strftime('%H %M %S %f', '2022-03-29 17:23:13.016478') AND strftime('%H %M %S %f', '2022-03-29 17:24:02.530557')
OR strftime('%H %M %S %f', date) NOT BETWEEN strftime('%H %M %S %f', '2022-03-29 17:24:15.304683') AND strftime('%H %M %S %f', '2022-03-29 17:25:12.359532'); |
-- fts1porter.test
--
-- execsql {
-- DELETE FROM t1_term;
-- DELETE FROM t1_content;
-- INSERT INTO t1(word) VALUES(pfrom);
-- SELECT term FROM t1_term;
-- }
DELETE FROM t1_term;
DELETE FROM t1_content;
INSERT INTO t1(word) VALUES(pfrom);
SELECT term FROM t1_term;
|
<reponame>Shuttl-Tech/antlr_psql
-- file:arrays.sql ln:384 expect:true
insert into arr_tbl values ('{2,3,4}')
|
<reponame>obi-two/GameServer<filename>data/sql/galaxy/procedures/sp_LoadReservedNames.sql
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!40014 SET FOREIGN_KEY_CHECKS=0 */;
DROP PROCEDURE IF EXISTS `sp_LoadReservedNames`;
DELIMITER //
CREATE PROCEDURE `sp_LoadReservedNames`()
BEGIN
SELECT * FROM `name_reserved`;
END//
DELIMITER ;
/*!40014 SET FOREIGN_KEY_CHECKS=1 */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
<reponame>newjersey/d4ad
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('6','511020','0','0','0','-99999','-99999','-99999','-99999','-99999','10','10','7','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('6','520211','0','0','0','-99999','-99999','-99999','-99999','-99999','10','10','10','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('6','520409','0','0','0','-99999','-99999','-99999','-99999','-99999','7','7','7','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('6','999999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','3','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('27','100308','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','0','3','2','0','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('27','110301','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('27','110601','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('27','510710','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','1','0','2','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('27','511020','0.8','0.8','-99999','-99999','-99999','-99999','-99999','-99999','5','5','0','4','4','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('27','520301','0.714285714285714','1','-99999','5013','5869','-99999','-99999','-99999','7','6','4','5','6','2','3','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('27','520401','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','1','1','2','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('37','110601','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','0','2','2','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('37','120503','0.529411764705882','0.588235294117647','0.714285714285714','3034','5947','7548','0.8','0.8','17','17','7','9','10','5','10','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('37','131501','0.740740740740741','0.636363636363636','0.833333333333333','5173','6007','6624','1','1','27','22','12','20','14','10','13','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('37','430109','0.733333333333333','0.692307692307692','0.555555555555556','4906','1487','6233','0.818181818181818','0.714285714285714','15','13','9','11','9','5','11','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('37','460401','0.736842105263158','0.736842105263158','0.846153846153846','6711','6962','7438','0.928571428571429','0.909090909090909','19','19','13','14','14','11','14','11');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('37','520302','0.411764705882353','0.588235294117647','0.6','8398','6849','8689','0.75','-99999','17','17','10','7','10','6','8','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('64','011103','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','0','2','2','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('64','110801','0.666666666666667','0.666666666666667','0.714285714285714','6338','9701.5','14606.5','0.736842105263158','0.909090909090909','27','24','14','18','16','10','19','11');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('64','110901','0.795918367346939','0.847826086956522','0.823529411764706','7133','7308','10674','0.921052631578947','0.923076923076923','49','46','17','39','39','14','38','13');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('64','131206','0.873417721518987','0.892307692307692','0.935483870967742','12480','13161.5','16672','0.966666666666667','0.964285714285714','158','130','62','138','116','58','120','56');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('64','160103','0.631578947368421','0.705882352941177','-99999','9456','8024.5','-99999','0.9','-99999','19','17','3','12','12','3','10','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('64','310501','0.736842105263158','0.795918367346939','0.740740740740741','4832','5245','5800','0.945945945945946','0.818181818181818','57','49','27','42','39','20','37','22');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('64','460000','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('64','460403','0.661016949152542','0.741379310344828','0.75','16166','17634','21769.5','0.974358974358974','1','59','58','24','39','43','18','39','15');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('64','480508','0.8','0.866666666666667','0.857142857142857','7129.5','8019','13364.5','0.833333333333333','0.8','15','15','7','12','13','6','12','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('64','510601','0.805555555555556','0.841269841269841','0.838709677419355','4682.5','5144','4527.5','0.911111111111111','0.954545454545455','72','63','31','58','53','26','45','22');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('64','510710','0.8','0.90625','0.8125','6237.5','5935','6232','1','0.846153846153846','40','32','16','32','29','13','27','13');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('64','510714','0.588235294117647','0.529411764705882','-99999','7246','9042','-99999','0.7','-99999','17','17','2','10','9','0','10','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('64','510801','0.769230769230769','-99999','-99999','7041.5','-99999','-99999','-99999','-99999','13','0','0','10','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('64','510805','0.583333333333333','0.708333333333333','0.5','3706','4895','5522','1','0.8','24','24','10','14','17','5','14','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('64','510808','0.904761904761905','0.818181818181818','0.923076923076923','5459','6650','7000','0.857142857142857','0.923076923076923','21','22','13','19','18','12','21','13');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('64','512602','0.712765957446808','0.741176470588235','0.7','3714','5086','4097','0.915254237288136','0.961538461538462','94','85','40','67','63','28','59','26');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('64','512604','0.785714285714286','0.791666666666667','0.818181818181818','4251','4343','7809','0.894736842105263','1','28','24','11','22','19','9','19','8');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('64','513501','0.6','0.65','0.625','4326.5','6266','8594','0.769230769230769','0.666666666666667','20','20','8','12','13','5','13','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('64','513801','0.777777777777778','0.666666666666667','0.833333333333333','3575','9586.5','3494','0.714285714285714','-99999','9','9','6','7','6','5','7','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('64','513902','0.859574468085106','0.834319526627219','0.859154929577465','5453.5','5537','5706','0.899280575539568','0.892857142857143','235','169','71','202','141','61','139','56');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('64','520201','0.851851851851852','0.851851851851852','0.875','16830','19252','19470','1','1','27','27','24','23','23','21','23','20');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('64','520206','0.5','0.5','0.5','-99999','-99999','-99999','-99999','-99999','6','6','6','3','3','3','4','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('64','520302','0.666666666666667','0.608695652173913','0.583333333333333','8709.5','9811','10747','0.933333333333333','0.833333333333333','24','23','12','16','14','7','15','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('64','520401','0.555555555555556','0.555555555555556','0.555555555555556','6124','6389','7497','1','1','9','9','9','5','5','5','5','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('64','520809','0.8','-99999','-99999','-99999','-99999','-99999','-99999','-99999','5','0','0','4','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('64','521501','0.666666666666667','0.727272727272727','0.75','9326.5','9244.5','10406','0.982142857142857','0.923076923076923','117','88','40','78','64','30','56','26');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('65','110301','0.104477611940299','0.192307692307692','-99999','4614','12234','-99999','-99999','-99999','67','52','2','7','10','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('65','120505','0','0','-99999','-99999','-99999','-99999','-99999','-99999','17','11','4','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('65','150613','0','0','-99999','-99999','-99999','-99999','-99999','-99999','25','15','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('65','340103','0.142857142857143','0.142857142857143','-99999','-99999','-99999','-99999','-99999','-99999','7','7','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('65','510802','0','0','0.0714285714285714','-99999','-99999','-99999','-99999','-99999','14','14','14','0','0','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('65','510805','0','0','0','-99999','-99999','-99999','-99999','-99999','11','11','5','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('65','510902','0','0','0','-99999','-99999','-99999','-99999','-99999','17','14','6','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('65','511009','0','0','-99999','-99999','-99999','-99999','-99999','-99999','6','6','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('65','520203','0','0.0476190476190476','0.0434782608695652','-99999','-99999','-99999','-99999','-99999','63','63','23','0','3','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('65','520205','0','0','0','-99999','-99999','-99999','-99999','-99999','15','15','7','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('65','521001','0','0','-99999','-99999','-99999','-99999','-99999','-99999','14','14','1','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('65','522101','0.032258064516129','0.037037037037037','0','-99999','-99999','-99999','-99999','-99999','31','27','10','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('68','110103','0.6','0.8','-99999','8394','8975.5','-99999','1','-99999','10','10','0','6','8','0','7','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('68','110201','0.833333333333333','1','-99999','9725','9838','-99999','1','-99999','6','6','0','5','6','0','5','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('68','110501','0.7','0.7','-99999','4607','5561','-99999','0.857142857142857','-99999','10','10','3','7','7','3','7','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('68','111001','0.375','0.75','-99999','-99999','5956.5','-99999','-99999','-99999','8','8','4','3','6','3','3','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('68','120401','0.714285714285714','-99999','-99999','2797','-99999','-99999','-99999','-99999','7','0','0','5','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('68','120501','0.714285714285714','0.571428571428571','-99999','2311','-99999','-99999','-99999','-99999','7','7','0','5','4','0','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('68','131202','0.630434782608696','0.709677419354839','-99999','4607','5814.5','-99999','0.882352941176471','-99999','46','31','0','29','22','0','17','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('68','151001','0.513513513513513','0.575757575757576','0.769230769230769','15618','17118','15740.5','1','-99999','37','33','13','19','19','10','13','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('68','460302','0.789115646258503','0.80952380952381','0.923076923076923','9480','9787','11816.5','0.890756302521008','0.934210526315789','147','147','91','116','119','84','119','76');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('68','460403','0.736363636363636','0.790909090909091','0.833333333333333','13834','14665','16544','0.975','0.971428571428571','110','110','48','81','87','40','80','35');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('68','460412','0.625','0.625','-99999','18124','19154','-99999','-99999','-99999','8','8','0','5','5','0','4','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('68','460503','0.907692307692308','0.892307692307692','0.916666666666667','12127','13070','13812','0.929824561403509','0.933333333333333','65','65','36','59','58','33','57','30');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('68','470201','0.8875','0.875','0.836734693877551','8054','8939','10909','0.953125','0.853658536585366','80','80','49','71','70','41','64','41');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('68','470604','0.714285714285714','0.714285714285714','0.714285714285714','3861.5','6181','9836','0.875','0.8','14','14','7','10','10','5','8','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('68','480508','0.775','0.75','0.882352941176471','6821','6783.5','9050','0.931034482758621','0.909090909090909','40','40','17','31','30','15','29','11');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('68','510801','0.6','0.7','0.8','6293','5417','5214.5','1','0.833333333333333','10','10','10','6','7','8','6','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('68','510805','0.714285714285714','0.6875','0.777777777777778','4394','4373','6914','0.909090909090909','0.8','21','16','9','15','11','7','11','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('68','510808','0.9375','1','0.875','4221','4225','5277','1','0.875','16','16','8','15','16','7','15','8');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('68','511011','0.8','0.866666666666667','0.733333333333333','3699','4134','7274','0.818181818181818','0.727272727272727','15','15','15','12','13','11','11','11');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('68','513902','0.923076923076923','0.875','0.875','5588','7011','6129','0.857142857142857','0.857142857142857','13','8','8','12','7','7','7','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('68','520302','0.583333333333333','0.416666666666667','-99999','6474','8770','-99999','0.714285714285714','-99999','12','12','0','7','5','0','7','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('68','521501','0.526315789473684','0.578947368421053','-99999','4870.5','7995','-99999','0.857142857142857','-99999','19','19','0','10','11','0','7','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('70','110301','0.611111111111111','0.555555555555556','0.555555555555556','16274','19142','13186.5','0.8','0.8','18','18','18','11','10','10','10','10');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('70','111006','0.833333333333333','0.916666666666667','0.916666666666667','12357.5','12793','15462','0.9','0.9','12','12','12','10','11','11','10','10');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('70','151301','0.777777777777778','0.888888888888889','0.888888888888889','17628','20276','20735','1','1','9','9','9','7','8','8','6','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('70','460302','0','0','0','-99999','-99999','-99999','-99999','-99999','6','6','6','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('70','470104','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','4','4','4','4','4','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('70','510000','0.692982456140351','0.719298245614035','0.798245614035088','3834','4580.5','8173','0.896103896103896','0.935064935064935','114','114','114','79','82','91','77','77');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('70','510716','0.619047619047619','0.590909090909091','0.571428571428571','6793','9602','8471.5','0.923076923076923','0.846153846153846','21','22','21','13','13','12','13','13');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('70','512602','0.833333333333333','0.833333333333333','0.5','4071','3919','-99999','1','0.6','6','6','6','5','5','3','5','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('70','513801','0.428571428571429','0.428571428571429','0.428571428571429','-99999','-99999','-99999','-99999','-99999','7','7','7','3','3','3','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('70','513902','0.5','0.666666666666667','0.5','-99999','-99999','-99999','-99999','-99999','6','6','6','3','4','3','4','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('70','520101','0.8','0.9','0.7','24618.5','21223','25388','0.888888888888889','0.777777777777778','10','10','10','8','9','7','9','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('70','520206','0.7','0.8','0.8','10130','10120.5','10385.5','1','1','10','10','10','7','8','8','7','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('70','520211','0.5','0.5','0.75','-99999','-99999','13430','-99999','-99999','8','8','8','4','4','6','4','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('70','520302','0.8','0.6','0.8','-99999','-99999','-99999','-99999','-99999','5','5','5','4','3','4','4','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('70','521005','0.8','0.8','0.8','-99999','-99999','-99999','-99999','-99999','5','5','5','4','4','4','4','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('70','521206','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','4','2','2','2','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('89','030104','0','0','0','-99999','-99999','-99999','-99999','-99999','8','8','8','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('89','110202','0.2','0.125','0.2','-99999','-99999','-99999','-99999','-99999','10','8','5','2','1','1','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('89','110901','0','0','0','-99999','-99999','-99999','-99999','-99999','5','5','5','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('89','111004','0','0','-99999','-99999','-99999','-99999','-99999','-99999','6','6','3','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('89','520201','0.0566037735849057','0.0416666666666667','0.0740740740740741','-99999','-99999','-99999','-99999','-99999','53','48','27','3','2','2','3','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('89','520211','0.1','0.1','0.1','-99999','-99999','-99999','-99999','-99999','10','10','10','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('114','340199','0.64','0.68','0.72','5648.5','5516','3419','0.923076923076923','0.923076923076923','25','25','25','16','17','18','13','13');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('114','510805','0.75','0.583333333333333','0.833333333333333','3538','6850','6497.5','0.777777777777778','1','12','12','12','9','7','10','9','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('114','511020','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','3','2','2','2','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('133','320111','0.506702412868633','0.704615384615385','0.71195652173913','5979','7343','9097','0.865546218487395','0.789473684210526','746','650','368','378','458','262','238','152');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('133','480510','0.5','0.875','0.875','-99999','4193','2052','-99999','-99999','8','8','8','4','7','7','4','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('133','490205','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','3','4','4','3','3','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('133','510805','0.777777777777778','0.814814814814815','0.80952380952381','3930','4726','5946','0.9375','0.928571428571429','27','27','21','21','22','17','16','14');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('133','511020','0.754716981132076','0.754716981132076','0.827586206896552','3772.5','6227','6845','0.96875','1','53','53','29','40','40','24','32','20');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('133','520203','0.725','0.8','0.839285714285714','8879.5','10125','10444','0.953488372093023','0.95','80','65','56','58','52','47','43','40');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('146','510801','0.857142857142857','0.885714285714286','0.942857142857143','5472','5588','6281','0.928571428571429','0.964285714285714','35','35','35','30','31','33','28','28');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('146','513901','0.904347826086957','0.923076923076923','0.909090909090909','10566.5','9256','12026','0.961538461538462','0.875','115','65','11','104','60','10','52','8');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('146','513902','0.88135593220339','0.891304347826087','-99999','6333','7240','-99999','0.928571428571429','-99999','59','46','1','52','41','1','42','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('146','513999','0.930232558139535','0.906976744186046','0.930232558139535','9076.5','8782','9844','0.975','0.975','43','43','43','40','39','40','40','40');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('147','510801','0.833333333333333','0.875','0.791666666666667','4506','4235','6469','0.833333333333333','0.777777777777778','24','24','24','20','21','19','18','18');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('147','513901','0.900900900900901','0.909090909090909','0.846153846153846','8929.5','10762.5','10540','0.964285714285714','0.888888888888889','111','66','13','100','60','11','56','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('147','513902','0.804347826086957','0.878787878787879','-99999','6986','7926','-99999','1','-99999','46','33','3','37','29','3','25','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('147','513999','0.821428571428571','0.821428571428571','0.928571428571429','7253','9033','10898','0.95','1','28','28','28','23','23','26','20','20');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('149','190501','0.6','0.2','-99999','-99999','-99999','-99999','-99999','-99999','5','5','0','3','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('149','301901','0.6','0.5','-99999','10451.5','-99999','-99999','-99999','-99999','10','6','3','6','3','2','3','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('149','513102','0.6','0.6','0.2','-99999','-99999','-99999','-99999','-99999','5','5','5','3','3','1','3','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('149','513501','0.702702702702703','0.666666666666667','0.666666666666667','6945.5','7725','6159.5','0.826086956521739','0.857142857142857','37','33','9','26','22','6','23','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('162','120301','0.685714285714286','0.689655172413793','0.642857142857143','6696.5','6093.5','6522','0.941176470588235','0.8','35','29','14','24','20','9','17','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('162','120503','0.727272727272727','0.782608695652174','0.916666666666667','6200.5','3976.5','3816','0.777777777777778','0.909090909090909','33','23','12','24','18','11','18','11');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('162','510713','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('162','510801','0.759562841530055','0.8','0.822784810126582','6755','6619','7912','0.906779661016949','0.87719298245614','183','155','79','139','124','65','118','57');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('162','513901','0.78021978021978','0.845070422535211','0.95','11664','12554','13352.5','0.978723404255319','1','91','71','40','71','60','38','47','22');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('162','520201','0.866666666666667','0.866666666666667','0.9','8544','7998','8796','0.923076923076923','1','15','15','10','13','13','9','13','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('162','520407','0.76','0.82','0.787878787878788','6942','7806','8394','0.891891891891892','0.884615384615385','50','50','33','38','41','26','37','26');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('174','150303','0.827067669172932','0.809090909090909','0.711538461538462','7203.5','7171','7030','0.826086956521739','0.767441860465116','133','110','52','110','89','37','92','43');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('174','150501','0.773913043478261','0.848837209302326','0.78','8175','8411','9696','0.907692307692308','0.885714285714286','115','86','50','89','73','39','65','35');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('174','261201','0.880952380952381','0.852941176470588','0.8','8534','8623','8905.5','0.9','0.888888888888889','42','34','10','37','29','8','30','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('174','510601','0.889632107023411','0.904761904761905','0.850746268656716','5773.5','6153.5','7334','0.938864628820961','0.890756302521008','299','252','134','266','228','114','229','119');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('174','510701','0.94047619047619','0.925373134328358','0.9','6958','7316.5','8227','0.938461538461538','0.9','84','67','30','79','62','27','65','30');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('174','510801','0.840182648401826','0.897849462365591','0.8625','6222.5','6389','6414','0.922155688622755','0.869565217391304','219','186','80','184','167','69','167','69');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('174','510805','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','4','4','4','4','4','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('174','513501','0.833333333333333','0.86046511627907','0.608695652173913','3745.5','3985','5851.5','0.914285714285714','0.684210526315789','48','43','23','40','37','14','35','19');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('174','513902','0.642857142857143','0.833333333333333','-99999','2416','2405','-99999','0.8','-99999','14','12','3','9','10','3','10','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('176','120505','0.5','0.5','-99999','-99999','-99999','-99999','-99999','-99999','8','8','0','4','4','0','4','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('191','120401','0.770491803278688','0.75','0.777777777777778','3724','3084','4232','0.897435897435897','0.952380952380952','61','48','27','47','36','21','39','21');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('191','120402','0.611111111111111','0.647058823529412','0.777777777777778','4264','5805','6388','0.8','0.833333333333333','18','17','9','11','11','7','10','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('191','120409','0.708333333333333','0.708333333333333','0.88','4965.5','5145.5','4075.5','0.848484848484849','0.944444444444444','48','48','25','34','34','22','33','18');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('191','120410','0.833333333333333','-99999','-99999','3953','-99999','-99999','-99999','-99999','6','4','3','5','4','3','3','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('191','120499','1','-99999','-99999','3766','-99999','-99999','-99999','-99999','13','0','0','13','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('193','120401','0.671875','0.660377358490566','0.705882352941177','4773','5117','4650.5','0.810810810810811','0.75','64','53','34','43','35','24','37','24');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('193','120402','0.4','0.40625','0.416666666666667','3893.5','4493','4286','0.833333333333333','-99999','40','32','12','16','13','5','12','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('193','120409','0.692307692307692','0.653061224489796','0.529411764705882','6203.5','6745.5','9998','0.805555555555556','0.75','52','49','17','36','32','9','36','12');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('193','120410','0.608695652173913','0.75','0.769230769230769','5491.5','6594','5650.5','0.933333333333333','0.777777777777778','23','20','13','14','15','10','15','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('193','120413','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('193','120499','0.555555555555556','-99999','-99999','7204','-99999','-99999','-99999','-99999','9','0','0','5','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('194','120401','0.706521739130435','0.76','0.805555555555556','4315','4169','3982','0.936170212765957','0.857142857142857','92','75','36','65','57','29','47','21');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('194','120402','0.5','0.411764705882353','0.6','3322','3282','9129','0.555555555555556','0.8','18','17','10','9','7','6','9','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('194','120409','0.75','0.849056603773585','0.827586206896552','4976.5','4709','6588.5','0.916666666666667','0.777777777777778','64','53','29','48','45','24','36','18');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('194','120410','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','3','2','3','3','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('194','120413','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('194','120499','0.8','-99999','-99999','5409','-99999','-99999','-99999','-99999','10','4','0','8','2','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('199','110901','0.909090909090909','0.777777777777778','-99999','6204.5','4056','-99999','0.875','-99999','11','9','2','10','7','2','8','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('199','510601','0.785714285714286','0.753623188405797','0.787878787878788','4524','6115','6284','0.839285714285714','0.84','84','69','33','66','52','26','56','25');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('199','510716','0.769230769230769','0.761904761904762','0.75','6243.5','7107.5','6821','0.933333333333333','0.857142857142857','26','21','12','20','16','9','15','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('199','510801','0.771428571428571','0.796610169491525','0.852941176470588','4737.5','5311','4914','0.948717948717949','0.956521739130435','70','59','34','54','47','29','39','23');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('199','513902','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('199','520401','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','2','0','0','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('200','131206','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','2','0','4','2','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('200','360119','0.4','0.533333333333333','0.5','10102','9931.5','-99999','0.8','-99999','15','15','8','6','8','4','5','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('200','490102','0.363636363636364','0.5','1','-99999','-99999','8735','-99999','-99999','11','8','6','4','4','6','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('200','490108','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','0','2','2','0','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('206','110901','0.739130434782609','0.816326530612245','0.764705882352941','7050','7829','8305','0.861111111111111','0.769230769230769','69','49','17','51','40','13','36','13');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('206','510801','0.853658536585366','0.848648648648649','0.83','5914','6194','7264','0.911949685534591','0.840909090909091','205','185','100','175','157','83','159','88');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('206','513901','0.808864265927978','0.859778597785978','0.93','10216','12297','12466','0.951086956521739','0.987012987012987','361','271','100','292','233','93','184','77');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('206','513902','0.873239436619718','0.934426229508197','0.952380952380952','5713.5','7776','9968','0.978260869565217','0.96875','71','61','42','62','57','40','46','32');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('207','110901','0.785714285714286','0.835443037974684','0.714285714285714','7861','7913','7770.5','0.861538461538462','0.705882352941177','98','79','42','77','66','30','65','34');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('207','150801','0.869565217391304','-99999','-99999','6499','-99999','-99999','-99999','-99999','23','0','0','20','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('207','510801','0.906779661016949','0.876288659793814','0.871794871794872','6132','6520','6864','0.916666666666667','0.903225806451613','118','97','39','107','85','34','84','31');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('207','513901','0.909090909090909','0.945054945054945','0.933333333333333','9737.5','12305','12314','0.930555555555556','0.914285714285714','154','91','45','140','86','42','72','35');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('207','513902','0.823529411764706','0.911764705882353','0.846153846153846','5891.5','5403','6744','0.961538461538462','0.818181818181818','34','34','26','28','31','22','26','22');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('215','110801','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('215','110901','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','2','2','2','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('215','430109','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','1','2','2','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('215','510708','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('215','510716','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('215','510720','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('215','520201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('215','520401','0.7','0.9','0.7','6074','9512','8996','1','0.857142857142857','10','10','10','7','9','7','7','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('215','521701','0.4','0.4','0.6','-99999','-99999','-99999','-99999','-99999','5','5','5','2','2','3','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('219','120401','0.61198738170347','0.612167300380228','0.654411764705882','3047.5','2782','4863','0.797202797202797','0.837837837837838','317','263','136','194','161','89','143','74');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('219','120413','0.428571428571429','0.833333333333333','-99999','-99999','3239','-99999','-99999','-99999','7','6','4','3','5','3','4','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('226','131401','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('226','230101','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('226','231303','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('226','320109','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('226','510000','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('226','510601','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('226','510713','0.833333333333333','0.8','-99999','5825','-99999','-99999','-99999','-99999','6','5','2','5','4','1','4','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('226','510714','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','2','0','2','2','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('226','510720','0.875','0.75','0.75','4070','1771','3762','1','1','16','8','8','14','6','6','6','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('226','510801','0.416666666666667','0.555555555555556','0.714285714285714','3778','5836','7344','1','-99999','24','18','7','10','10','5','7','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('226','510902','0.692307692307692','0.933333333333333','0.833333333333333','7062','6584.5','8242','1','0.833333333333333','26','15','6','18','14','5','13','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('226','511009','0.484848484848485','0.64','0.714285714285714','5003','5319.5','6136','0.928571428571429','1','33','25','14','16','16','10','14','8');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('226','513501','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','1','2','1','1','2','0','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('226','513902','0.666666666666667','0.75','0.6','4755','3602','-99999','0.833333333333333','-99999','12','8','5','8','6','3','6','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('228','490304','0.561728395061728','0.659863945578231','0.551282051282051','8122','8245','10675','0.935483870967742','0.739130434782609','162','147','78','91','97','43','62','23');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('236','470302','0.852941176470588','0.84','-99999','10178.5','10813.5','-99999','0.897435897435897','-99999','68','50','0','58','42','0','39','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('236','470613','0.815261044176707','0.813186813186813','0.880597014925373','9279','10149.5','11876','0.91304347826087','0.895833333333333','249','182','67','203','148','59','138','48');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('236','480508','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('240','120401','0.558232931726908','0.641791044776119','0.647058823529412','3477','4122','4370','0.789473684210526','0.767441860465116','249','201','85','139','129','55','114','43');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('240','120413','0.857142857142857','0.8','-99999','2815','-99999','-99999','-99999','-99999','7','5','3','6','4','2','4','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('254','220301','0.666666666666667','0.75','-99999','4070','5450','-99999','1','-99999','12','12','3','8','9','3','6','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('254','510714','0.666666666666667','0.75','0.75','6580.5','5715','7237.5','0.9375','1','24','20','8','16','15','6','16','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('254','510801','0.792682926829268','0.823076923076923','0.681818181818182','5758','6560','7230','0.904255319148936','0.6875','164','130','22','130','107','15','94','16');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('254','513501','0.730769230769231','0.651162790697674','0.666666666666667','4492','4571','5656','0.806451612903226','0.75','52','43','9','38','28','6','31','8');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('259','510801','0.701492537313433','0.735849056603774','0.851851851851852','5937','6120','8382','0.90625','0.916666666666667','67','53','27','47','39','23','32','12');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('259','510803','0.641025641025641','0.726530612244898','0.867132867132867','6473.5','11130','13140','0.905511811023622','0.923076923076923','312','245','143','200','178','124','127','65');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('259','510901','0.722222222222222','0.779310344827586','0.826666666666667','8741','9840','11494','0.912087912087912','0.914285714285714','198','145','75','143','113','62','91','35');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('259','510909','0.708860759493671','0.75','0.837837837837838','9656','10454','10008','0.871794871794872','0.941176470588235','79','68','37','56','51','31','39','17');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('259','510910','0.674418604651163','0.720930232558139','0.65','8316','8370','10124','0.884615384615385','0.8','43','43','20','29','31','13','26','10');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('259','513901','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','3','1','2','3','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('260','513501','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('262','513501','0.6','0.745454545454545','0.740740740740741','3838.5','4604','5696','0.918918918918919','0.833333333333333','70','55','27','42','41','20','37','18');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('279','490205','0.680933852140078','0.708333333333333','0.739130434782609','9568','10156.5','13502','0.821705426356589','0.766666666666667','257','192','92','175','136','68','129','60');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('288','150501','0.692682926829268','0.723270440251572','0.825','7870','9490','11008.5','0.877777777777778','0.971428571428571','205','159','80','142','115','66','90','35');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('288','460302','0.765625','0.786885245901639','0.822784810126582','7259.5','8099.5','8045','0.863309352517986','0.814814814814815','256','183','79','196','144','65','139','54');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('288','470604','0.761806981519507','0.776315789473684','0.792349726775956','6995','7358','8433','0.916058394160584','0.848739495798319','487','380','183','371','295','145','274','119');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('288','480510','0.827160493827161','0.884057971014493','0.916666666666667','10101','11266.5','13753','0.936363636363636','0.92156862745098','162','138','72','134','122','66','110','51');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('289','150501','0.604166666666667','0.739583333333333','0.655172413793103','7472.5','7787','7759','0.913793103448276','0.692307692307692','96','96','29','58','71','19','58','13');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('289','460302','0.686046511627907','0.686046511627907','0.72','5638','5004','8152.5','0.862068965517241','0.8','86','86','25','59','59','18','58','15');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('289','470201','0.4','0.56','0.5','5001.5','7099.5','6447.5','0.7','0.714285714285714','25','25','12','10','14','6','10','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('289','470604','0.792682926829268','0.829268292682927','0.869565217391304','6438','7399.5','10069.5','0.898550724637681','0.947368421052632','82','82','23','65','68','20','69','19');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('307','460302','0.555555555555556','0.571428571428571','0.611111111111111','3933.5','3095','4960','0.69047619047619','0.75','90','77','36','50','44','22','42','16');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('307','470201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','3','1','3','2','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('307','510710','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('307','510713','0.578947368421053','0.789473684210526','-99999','3993','8017','-99999','1','-99999','19','19','1','11','15','1','9','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('307','510717','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('307','510801','0.681818181818182','0.76271186440678','0.68','3712','4543','6512','0.925','0.823529411764706','66','59','25','45','45','17','40','17');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('307','513902','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','2','0','2','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('317','100305','0.428571428571429','-99999','-99999','-99999','-99999','-99999','-99999','-99999','7','0','0','3','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('317','320111','0.491525423728814','0.473684210526316','0.4','2306','2590','3005','0.76','0.555555555555556','118','114','60','58','54','24','50','36');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('322','110901','0.80625','0.765765765765766','0.813953488372093','8542','9954','11413','0.868131868131868','0.90625','160','111','43','129','85','35','91','32');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('326','120401','0.633040935672515','0.679389312977099','0.711934156378601','3827','4128','4908','0.852941176470588','0.81294964028777','684','524','243','433','356','173','306','139');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('326','120406','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('326','120409','0.681481481481481','0.701492537313433','0.651515151515151','5327.5','6458','6963','0.840909090909091','0.75','135','134','66','92','94','43','88','40');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('326','120410','0.6','0.8','0.8','-99999','-99999','-99999','-99999','-99999','5','5','5','3','4','4','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('326','120413','0.761904761904762','0.80952380952381','0.727272727272727','7129','6287','7540.5','1','1','21','21','11','16','17','8','14','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('326','120499','0.700787401574803','0.686274509803922','-99999','4439','5651','-99999','0.793103448275862','-99999','127','51','1','89','35','1','29','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('328','460302','0.816037735849057','0.775280898876405','0.71264367816092','6694','7025','6946.5','0.880281690140845','0.806451612903226','212','178','87','173','138','62','142','62');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('328','470201','0.778625954198473','0.726851851851852','0.752212389380531','7927.5','8808','9896','0.811764705882353','0.835294117647059','262','216','113','204','157','85','170','85');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('328','470603','0.717647058823529','0.723684210526316','0.842105263157895','4532','5037','6223','0.833333333333333','0.782608695652174','85','76','38','61','55','32','48','23');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('328','470604','0.809210526315789','0.78125','0.802816901408451','6495','7037','7649','0.878787878787879','0.87719298245614','152','128','71','123','100','57','99','57');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('328','470605','0.720338983050847','0.73469387755102','0.788461538461538','7006','7707.5','10393','0.888888888888889','0.837837837837838','118','98','52','85','72','41','63','37');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('328','510716','0.837320574162679','0.854838709677419','0.767676767676768','5474','6266','6684','0.931972789115646','0.8','209','186','99','175','159','76','147','75');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('328','510805','0.921052631578947','0.882352941176471','1','5102','4521','5611','0.9','1','38','34','19','35','30','19','30','17');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('341','110101','0.714285714285714','0.857142857142857','0.857142857142857','9331','8379','10661','-99999','-99999','7','7','7','5','6','6','4','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('341','470201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','3','3','2','2','3','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('341','510000','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','3','3','3','3','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('341','510707','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','4','3','3','3','3','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('341','510714','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','4','3','4','4','4','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('341','510801','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','4','3','3','3','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('341','510901','0.666666666666667','0.666666666666667','1','-99999','-99999','8058','0.8','1','6','6','6','4','4','6','5','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('341','520201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','0','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('341','520401','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','4','3','3','4','3','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('347','120401','0.833333333333333','0.819047619047619','0.878504672897196','3548','3813','4182.5','0.911242603550296','0.919540229885057','270','210','107','225','172','94','169','87');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('347','120409','0.804780876494024','0.804123711340206','0.797752808988764','4457','5037','6317','0.887323943661972','0.871428571428571','251','194','89','202','156','71','142','70');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('347','120410','0.833333333333333','0.833333333333333','0.666666666666667','3662','7773','-99999','-99999','-99999','6','6','6','5','5','4','3','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('347','510713','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('352','120401','0.766666666666667','0.79047619047619','0.773584905660377','3254.5','3956','4933','0.893333333333333','0.875','120','105','53','92','83','41','75','32');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('352','120402','0.8','0.772727272727273','0.857142857142857','6709.5','4821','5817','0.9375','1','25','22','14','20','17','12','16','10');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('352','120409','0.772727272727273','0.785714285714286','0.736842105263158','4915.5','3603','4586.5','0.935483870967742','0.857142857142857','44','42','19','34','33','14','31','14');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('352','120410','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','1','0','2','0','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('352','120413','0.8','-99999','-99999','-99999','-99999','-99999','-99999','-99999','5','4','0','4','4','0','4','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('354','490205','0.75','0.713692946058091','0.71264367816092','10547.5','12941.5','14923.5','0.822857142857143','0.793650793650794','344','241','87','258','172','62','175','63');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('359','513501','0.571428571428571','0.646017699115044','0.654411764705882','4917.5','5564','6729','0.885964912280702','0.805970149253731','259','226','136','148','146','89','114','67');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('378','470607','0.709433962264151','0.786069651741294','0.811594202898551','7139','8735','11050','0.882352941176471','0.89010989010989','265','201','138','188','158','112','136','91');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('391','490205','0.710144927536232','0.631578947368421','0.692307692307692','5452','9188.5','10582.5','0.702702702702703','0.8125','69','57','52','49','36','36','37','32');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('394','131401','0.142857142857143','0.285714285714286','-99999','-99999','-99999','-99999','-99999','-99999','14','14','2','2','4','2','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('394','320101','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('394','320105','0.307692307692308','0.346153846153846','0.5','3384','4677','-99999','0.428571428571429','-99999','26','26','6','8','9','3','7','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('394','320109','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','3','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('394','430109','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','1','0','2','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('394','510716','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','0','1','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('394','521803','0.2','0.666666666666667','-99999','-99999','-99999','-99999','-99999','-99999','5','6','4','1','4','3','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('394','521910','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('394','530201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','1','2','2','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('404','460302','0.733333333333333','0.793103448275862','0.65','5103','7312','7848','0.904761904761905','0.642857142857143','45','29','20','33','23','13','21','14');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('404','460503','0.866666666666667','0.75','0.571428571428571','6722','6977','-99999','0.818181818181818','0.666666666666667','15','12','7','13','9','4','11','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('404','470201','0.608695652173913','0.666666666666667','0.7','8114.5','6201.5','9392','0.875','0.833333333333333','23','15','10','14','10','7','8','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('404','521201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','3','2','1','1','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('410','010504','0.695652173913043','0.888888888888889','0.888888888888889','5016.5','6135.5','7197.5','1','1','23','18','9','16','16','8','14','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('410','120401','0.75','0.666666666666667','1','2784','3268.5','5139','0.857142857142857','-99999','12','12','5','9','8','5','7','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('410','150506','0.953846153846154','0.934426229508197','0.871794871794872','14687.5','14679','15880.5','0.95','0.894736842105263','65','61','39','62','57','34','60','38');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('410','460201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','0','2','2','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('410','460302','0.790322580645161','0.82','0.692307692307692','8573','10123','11377','0.926829268292683','0.714285714285714','62','50','26','49','41','18','41','21');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('410','460503','0.771428571428571','0.838709677419355','0.842105263157895','9336','12231.5','13373.5','0.923076923076923','1','35','31','19','27','26','16','26','15');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('410','470201','0.6875','0.6875','0.8','5882','6453','9351','0.95','1','32','32','15','22','22','12','20','11');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('410','470604','1','1','1','7282','6748','8161','-99999','-99999','5','5','5','5','5','5','4','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('410','470605','0.875','0.875','-99999','5464','8384','-99999','1','-99999','8','8','4','7','7','3','7','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('410','480508','0.714285714285714','0.761904761904762','0.8','7809','8516.5','8904','0.866666666666667','0.916666666666667','42','42','20','30','32','16','30','12');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('410','490205','0.833333333333333','0.866666666666667','-99999','10964','8363','-99999','1','-99999','18','15','3','15','13','1','11','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('410','510601','0.909090909090909','0.931818181818182','0.9375','7759','8378','8266','0.975609756097561','0.933333333333333','44','44','16','40','41','15','41','15');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('410','510716','0.7','0.75','0.8','4365.5','6172','6895.5','0.923076923076923','0.857142857142857','20','20','10','14','15','8','13','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('410','510802','1','1','-99999','4783','5060','-99999','1','-99999','7','9','3','7','9','3','7','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('410','510808','0.941176470588235','0.823529411764706','-99999','4901','5036','-99999','0.866666666666667','-99999','17','17','4','16','14','3','15','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('410','511009','0.755102040816326','0.816326530612245','0.826086956521739','5980','6004','8795','0.942857142857143','0.882352941176471','49','49','23','37','40','19','35','17');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('410','511020','1','1','1','6569','6456','8497','1','1','7','7','7','7','7','7','7','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('410','513901','0.766666666666667','0.782608695652174','0.8','9805','9366','10143.5','0.894736842105263','0.875','30','23','10','23','18','8','19','8');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('410','513902','0.737704918032787','0.723404255319149','0.85','5029','4971','8739','0.870967741935484','1','61','47','20','45','34','17','31','12');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('412','120401','1','1','-99999','2795.5','3872','-99999','1','-99999','6','6','1','6','6','1','6','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('412','320101','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('412','480508','0.857142857142857','0.857142857142857','-99999','5113.5','6809.5','-99999','1','-99999','7','7','0','6','6','0','6','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('412','510601','1','1','-99999','7198','7634','-99999','1','-99999','10','10','0','10','10','0','10','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('412','513901','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','1','1','2','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('412','520401','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('414','470604','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('414','480508','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('414','490205','0.819672131147541','0.843137254901961','0.85','5601.5','6334','5477','0.923076923076923','0.933333333333333','61','51','20','50','43','17','39','15');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('414','510801','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','0','0','4','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('414','513901','0.909090909090909','0.939393939393939','0.909090909090909','10419','10494','9485','1','0.964285714285714','33','33','33','30','31','30','28','28');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('423','511009','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','2','1','2','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('451','510801','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','3','1','1','2','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('451','510805','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','0','0','2','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('451','510808','0.647058823529412','0.705882352941177','0.833333333333333','3450','3956.5','8640','0.9','-99999','17','17','6','11','12','5','10','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('451','510902','0.714285714285714','0.714285714285714','-99999','6747','4782','-99999','1','-99999','7','7','2','5','5','2','5','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('451','511009','0.846153846153846','-99999','-99999','5419','-99999','-99999','-99999','-99999','13','3','0','11','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('492','120501','0.777777777777778','0.333333333333333','-99999','6018','-99999','-99999','-99999','-99999','9','6','1','7','2','0','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('492','120503','0.555555555555556','0.5','-99999','6941','7878','-99999','0.666666666666667','-99999','18','10','3','10','5','3','6','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('495','520401','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','1','0','0','1','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('499','320101','0.375','0.5','-99999','-99999','-99999','-99999','-99999','-99999','8','6','1','3','3','0','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('501','510801','1','1','1','6344.5','5392.5','6029','1','1','34','26','13','34','26','13','23','13');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('501','510805','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('501','510902','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('501','511009','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','3','2','4','2','2','2','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('501','512602','0.871428571428571','0.883333333333333','0.866666666666667','5560','5743','6572.5','0.942307692307692','0.857142857142857','70','60','30','61','53','26','52','28');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('501','513902','0.853372434017595','0.804347826086957','0.78021978021978','5827','6416','6443','0.877005347593583','0.831168831168831','341','230','91','291','185','71','187','77');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('511','110301','0.52','0.473684210526316','0.5','1548','4112','-99999','0.857142857142857','-99999','25','19','8','13','9','4','7','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('511','520302','0.571428571428571','-99999','-99999','-99999','-99999','-99999','-99999','-99999','7','0','0','4','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('514','110901','0.785714285714286','0.825174825174825','0.861538461538462','7976','7645.5','9780.5','0.914285714285714','0.918367346938776','182','143','65','143','118','56','105','49');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('514','510703','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('514','510713','0.7875','0.864406779661017','0.769230769230769','7387','7005','7851','0.933333333333333','0.941176470588235','80','59','26','63','51','20','45','17');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('514','510801','0.805714285714286','0.858156028368794','0.913793103448276','5223','6379','7813','0.935779816513762','0.933333333333333','175','141','58','141','121','53','109','45');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('514','513901','0.760233918128655','0.837606837606838','0.815789473684211','11796.5','12369','11614','0.948275862068966','0.9','171','117','38','130','98','31','58','10');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('514','513902','0.950819672131147','0.868852459016393','0.67741935483871','5816.5','6594','7238','0.959183673469388','0.807692307692308','61','61','31','58','53','21','49','26');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('539','511009','0.8','0.9','1','3056.5','6452','6305','1','1','10','10','5','8','9','5','8','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('539','512602','0.571428571428571','0.714285714285714','0.714285714285714','-99999','4462','6923','-99999','-99999','7','7','7','4','5','5','4','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('539','513901','0.807228915662651','0.852941176470588','0.882352941176471','11584','14878','12875','1','0.941176470588235','83','68','34','67','58','30','42','17');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('539','513902','0.802325581395349','0.828947368421053','0.901960784313726','5704','5852','7131.5','0.948275862068966','0.973684210526316','86','76','51','69','63','46','58','38');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('550','510720','0.882352941176471','0.866666666666667','1','6023','6662','10050','0.923076923076923','1','34','30','6','30','26','6','26','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('550','510801','0.9','0.888888888888889','0.857142857142857','8103','5232','4669.5','1','1','10','9','7','9','8','6','8','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('550','510910','0.736842105263158','0.818181818181818','0.846153846153846','7624.5','6597','6477','0.9','0.857142857142857','38','33','13','28','27','11','20','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('550','513902','0.744186046511628','0.742857142857143','0.689655172413793','6321','6762','6337','0.901960784313726','0.727272727272727','86','70','29','64','52','20','51','22');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('568','120505','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('568','510801','0.791666666666667','0.772727272727273','0.727272727272727','6631','6224','5856','0.8','0.666666666666667','24','22','22','19','17','16','15','15');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('568','511009','0.5','-99999','-99999','4518','-99999','-99999','-99999','-99999','10','0','0','5','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('602','513901','0.844444444444444','0.866666666666667','-99999','8236','13820','-99999','0.928571428571429','-99999','45','45','1','38','39','0','28','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('606','110901','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','1','2','2','1','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('606','510801','0.866666666666667','0.846153846153846','-99999','8105','8396','-99999','1','-99999','15','13','1','13','11','1','10','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('615','513902','0.790322580645161','0.838383838383838','0.805555555555556','4298','4681','4943','0.915492957746479','0.916666666666667','124','99','36','98','83','29','71','24');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('622','111001','0.538461538461538','0.615384615384615','0.777777777777778','9274','10383.5','9506','0.833333333333333','-99999','13','13','9','7','8','7','6','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('622','111003','0.793103448275862','0.84','-99999','6710','8665','-99999','1','-99999','29','25','4','23','21','3','16','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('622','151302','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','1','2','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('622','510716','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('622','520401','0.726190476190476','0.714285714285714','0.804878048780488','5933','6474','8080','0.882352941176471','0.925925925925926','84','77','41','61','55','33','51','27');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('631','510902','1','1','-99999','5105','2201','-99999','1','-99999','5','5','0','5','5','0','5','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('631','511009','0.909090909090909','1','-99999','6564','6695','-99999','1','-99999','22','13','0','20','13','0','12','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('631','512602','0.653846153846154','0.68','0.923076923076923','7053','7337','6280','0.882352941176471','1','26','25','13','17','17','12','17','11');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('631','512603','1','1','-99999','5475.5','7410','-99999','1','-99999','8','7','0','8','7','0','7','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('631','513902','0.86','0.791044776119403','0.916666666666667','6670','6996','7207.5','0.847457627118644','0.91304347826087','100','67','24','86','53','22','59','23');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('691','120401','0.888888888888889','0.777777777777778','-99999','2630','4585','-99999','0.875','-99999','9','9','0','8','7','0','8','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('691','120501','0.333333333333333','-99999','-99999','-99999','-99999','-99999','-99999','-99999','9','4','0','3','1','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('691','120503','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','0','2','2','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('691','460201','0.714285714285714','0.714285714285714','-99999','12005.5','10549.5','-99999','0.909090909090909','-99999','14','14','0','10','10','0','11','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('691','460302','0.814814814814815','0.814814814814815','-99999','7506.5','6747.5','-99999','0.91304347826087','-99999','27','27','0','22','22','0','23','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('691','460503','0.961538461538462','0.961538461538462','-99999','10814','9620','-99999','1','-99999','26','26','0','25','25','0','24','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('691','470201','0.866666666666667','0.866666666666667','-99999','9454','10384','-99999','1','-99999','15','15','0','13','13','0','13','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('691','470603','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','0','0','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('691','470604','0.875','0.75','-99999','6169','8453','-99999','0.75','-99999','8','8','0','7','6','0','8','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('691','480508','0.777777777777778','0.851851851851852','-99999','14118','12549','-99999','0.909090909090909','-99999','27','27','0','21','23','0','22','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('700','320107','0.15','0.257142857142857','0.333333333333333','2272','3133','2921','-99999','-99999','40','35','21','6','9','7','4','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('700','350103','0.5','0.666666666666667','0.833333333333333','-99999','-99999','2980','-99999','-99999','6','6','6','3','4','5','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('702','120500','0.538461538461538','0.538461538461538','0.538461538461538','3101','2637','2641','0.833333333333333','0.666666666666667','13','13','13','7','7','7','6','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('709','512202','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('717','320107','0.653846153846154','0.807692307692308','0.7','1079','3073','4594','0.842105263157895','0.714285714285714','26','26','10','17','21','7','19','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('717','320111','0.588235294117647','0.535714285714286','0.592592592592593','2769.5','4149','4085','0.8','0.909090909090909','170','168','54','100','90','32','80','22');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('718','110301','0.6','0.4','-99999','-99999','-99999','-99999','-99999','-99999','5','5','1','3','2','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('718','110601','0.611111111111111','0.625','0.8','3395','6074.5','9060.5','0.75','1','18','16','10','11','10','8','8','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('718','320107','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','2','1','2','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('718','320109','0.521739130434783','0.466666666666667','-99999','5465.5','3933','-99999','0.714285714285714','-99999','23','15','0','12','7','0','7','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('718','510720','0.772727272727273','0.727272727272727','0.764705882352941','7161','7270.5','7341','0.933333333333333','0.833333333333333','44','44','34','34','32','26','30','24');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('718','511009','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('718','520302','0.662921348314607','0.671232876712329','0.6875','4800','8105','8237','0.9','0.9','89','73','32','59','49','22','40','20');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('718','520401','0.285714285714286','0.428571428571429','0.428571428571429','-99999','-99999','-99999','-99999','-99999','7','7','7','2','3','3','3','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('718','530201','0.651898734177215','0.656488549618321','0.542857142857143','5937','4313.5','5147.5','0.8375','0.75','158','131','70','103','86','38','80','40');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('729','140903','0.6','-99999','-99999','-99999','-99999','-99999','-99999','-99999','5','4','1','3','2','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('729','510710','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','1','0','0','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('729','510801','0.666666666666667','0.733333333333333','0.7','7277','8199','8339','1','0.857142857142857','15','15','10','10','11','7','9','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('729','520201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('729','520203','0.3125','0.333333333333333','0.222222222222222','8374','15302','-99999','0.6','-99999','16','15','9','5','5','2','5','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('729','520205','0.428571428571429','0.285714285714286','0.2','-99999','-99999','-99999','-99999','-99999','7','7','5','3','2','1','2','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('729','520206','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('729','520211','0.454545454545455','0.277777777777778','0.153846153846154','16081','20066','-99999','-99999','-99999','22','18','13','10','5','2','4','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('729','520302','0.25','0.1875','0.173913043478261','4775','8830','-99999','1','-99999','32','32','23','8','6','4','5','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('729','520407','0.588235294117647','0.692307692307692','-99999','4925','8500','-99999','-99999','-99999','17','13','4','10','9','3','2','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('729','520804','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('729','521001','0.583333333333333','0.666666666666667','-99999','13761','10076','-99999','1','-99999','12','12','2','7','8','2','6','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('729','521003','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','2','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('729','521401','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','1','1','0','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('729','521701','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('729','521801','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','1','0','2','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('740','320107','0.355932203389831','0.52','0.483870967741935','1545','1669.5','1666','0.916666666666667','0.666666666666667','59','50','31','21','26','15','12','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('740','350103','0.571428571428571','0.571428571428571','0.571428571428571','-99999','-99999','-99999','-99999','-99999','7','7','7','4','4','4','4','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('744','490205','0.718421052631579','0.714285714285714','0.680272108843537','9636','11567.5','11586','0.831730769230769','0.765957446808511','380','294','147','273','210','100','208','94');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('747','320107','0.850746268656716','0.745098039215686','0.833333333333333','2076','2746','2115','0.8','-99999','67','51','6','57','38','5','40','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('747','350103','0.942857142857143','0.96','0.6','2081','2128.5','-99999','0.958333333333333','-99999','35','25','5','33','24','3','24','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('791','320105','0.636363636363636','0.636363636363636','0.75','4572','4675','5343','0.75','0.875','11','11','12','7','7','9','8','8');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('791','320109','0.317073170731707','0.25','0.5','4089','5480','-99999','0.777777777777778','-99999','41','36','8','13','9','4','9','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('791','513902','0.746031746031746','0.781818181818182','0.869565217391304','4232','6037','5897','0.909090909090909','1','63','55','23','47','43','20','33','15');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('792','320101','0.5','0.541666666666667','0.511111111111111','2943.5','3819','3967','0.75','0.611111111111111','48','48','45','24','26','23','20','18');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('792','320105','0.52','0.56','0.5','3380','2690','4475','0.636363636363636','0.571428571428571','25','25','12','13','14','6','11','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('792','320107','0.6','0.8','1','-99999','-99999','2665','-99999','-99999','5','5','5','3','4','5','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('792','320109','0.5','0.666666666666667','0.8','2287','5009','-99999','-99999','-99999','12','12','5','6','8','4','3','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('792','513902','0.757575757575758','0.772727272727273','0.625','5407','5432','5038.5','0.911111111111111','0.789473684210526','66','66','32','50','51','20','45','19');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('804','110103','0.692307692307692','0.75','0.875','15436','9662','18873','0.888888888888889','0.833333333333333','13','12','8','9','9','7','9','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('804','110201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','0','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('804','110202','0.73015873015873','0.696428571428571','0.69047619047619','19706.5','18564','23180','0.794871794871795','0.740740740740741','63','56','42','46','39','29','39','27');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('804','110901','0.789473684210526','0.75','0.714285714285714','16156','16820.5','24544','0.923076923076923','0.833333333333333','19','16','7','15','12','5','13','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('804','111003','0.75','0.875','1','14468.5','14111','21519','1','1','8','8','7','6','7','7','7','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('804','510705','0.868421052631579','0.894736842105263','0.769230769230769','7861','8198','8701.5','0.935483870967742','0.8','38','38','13','33','34','10','31','10');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('804','510707','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('804','511005','0.666666666666667','0.6','0.8','-99999','-99999','-99999','-99999','-99999','6','5','5','4','3','4','3','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('804','513901','0.555555555555556','0.555555555555556','0.555555555555556','1506','4574','6992','-99999','-99999','9','9','9','5','5','5','4','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('804','520101','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','0','1','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('804','520205','0.5','0.6','0.625','16937','21538','17024','-99999','-99999','10','10','8','5','6','5','4','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('804','520211','0.615384615384615','0.725274725274725','0.836734693877551','17155.5','19510.5','18863','0.886792452830189','0.9','104','91','49','64','66','41','53','30');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('804','520302','1','1','1','8482','8361.5','8420','1','1','6','6','6','6','6','6','6','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('804','520401','0.759493670886076','0.835616438356164','0.846153846153846','8914.5','9871','10351','0.925925925925926','0.931034482758621','79','73','39','60','61','33','54','29');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('804','521201','0.684210526315789','0.685185185185185','0.769230769230769','10585','13629','14082.5','0.848484848484849','0.857142857142857','57','54','26','39','37','20','33','14');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('859','520901','0.467741935483871','0.576923076923077','0.590909090909091','4937','4674.5','3527','0.793103448275862','0.8','62','52','22','29','30','13','29','10');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('882','320109','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','3','0','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('882','510601','0.892857142857143','0.925925925925926','0.846153846153846','7082','6144','5638','1','0.818181818181818','28','27','13','25','25','11','23','11');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('882','510808','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('882','512602','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','0','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('882','513902','0.857142857142857','1','1','7395.5','8147','5946','1','1','7','7','7','6','7','7','5','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('917','320107','0.75','0.666666666666667','-99999','296.5','-99999','-99999','0.6','-99999','8','6','1','6','4','1','5','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('917','350103','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('938','120505','0.6','0.9','0.6','5641.5','2177','9978.5','1','0.8','10','10','10','6','9','6','5','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('938','320101','0.470588235294118','0.588235294117647','0.571428571428571','4227.5','3625','-99999','0.8','-99999','51','51','7','24','30','4','25','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('938','320111','0.333333333333333','0.666666666666667','-99999','-99999','3521.5','-99999','-99999','-99999','12','12','0','4','8','0','4','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('938','470105','0.833333333333333','1','0.916666666666667','12360','12672','12435','1','1','12','12','12','10','12','11','9','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('938','510805','0.571428571428571','0.714285714285714','0.714285714285714','-99999','2416','3977','-99999','-99999','7','7','7','4','5','5','3','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('938','510904','0.698412698412698','0.682539682539683','0.682539682539683','4581','4648','4563','0.837209302325581','0.790697674418605','63','63','63','44','43','43','43','43');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('938','510911','0.857142857142857','0.928571428571429','1','20144.5','21482','19401.5','1','1','14','14','14','12','13','14','13','13');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('938','510920','1','1','1','11568','17265','15105','1','1','9','9','9','9','9','9','9','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('938','512208','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','0','1','2','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('938','520406','0.75','1','0.833333333333333','7219','6268.5','8871.5','1','0.777777777777778','12','12','12','9','12','10','9','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('938','521803','0.625','0.5','-99999','1810','-99999','-99999','-99999','-99999','8','8','2','5','4','2','4','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('961','110101','0.655172413793103','0.7','-99999','5945','6414','-99999','0.909090909090909','-99999','29','20','0','19','14','0','11','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('961','130604','0.214285714285714','0.25','-99999','-99999','-99999','-99999','-99999','-99999','14','12','3','3','3','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('961','190000','0.433673469387755','0.551948051948052','0.675324675324675','1220','1288','1331','0.770833333333333','0.647058823529412','196','154','77','85','85','52','48','17');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('961','320101','0.641098484848485','0.656184486373166','0.659649122807018','4553','5048','5487','0.856649395509499','0.831884057971015','1056','954','570','677','626','376','579','345');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('961','320105','0.5','0.553571428571429','0.547169811320755','4081.5','4808','5127','0.766666666666667','0.703703703703704','56','56','53','28','31','29','30','27');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('961','320109','0.470588235294118','0.524475524475524','0.471428571428571','5164.5','4887','5364','0.88135593220339','0.708333333333333','153','143','70','72','75','33','59','24');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('961','320111','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','0','2','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('961','330102','0.62280701754386','0.657657657657658','0.597014925373134','5078','5268.5','5961.5','0.877697841726619','0.752941176470588','228','222','134','142','146','80','139','85');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('961','330104','1','1','-99999','1093','2054','-99999','1','-99999','10','11','0','10','11','0','6','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('961','350103','0.488448844884488','0.485148514851485','0.563318777292576','2376','2931','4156','0.696296296296296','0.647058823529412','303','303','229','148','147','129','135','102');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('961','480508','0.666666666666667','0.791666666666667','0.625','7692.5','7273','8108','0.882352941176471','-99999','24','24','8','16','19','5','17','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('961','510714','0.656716417910448','0.8','0.75','3382.5','4620','5403','0.878048780487805','0.851851851851852','67','60','40','44','48','30','41','27');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('961','520203','0.911764705882353','0.903225806451613','0.916666666666667','10042','12582','10150','0.96','0.947368421052632','34','31','24','31','28','22','25','19');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('961','520302','0.708333333333333','0.823529411764706','0.625','8281','7684','6156','1','-99999','24','17','8','17','14','5','10','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('961','520401','0.541666666666667','0.590909090909091','0.714285714285714','7345','7209','8502.5','0.9','0.8','24','22','14','13','13','10','10','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('961','520408','0.740740740740741','0.714285714285714','0.722222222222222','4934','5527.5','6609','0.941176470588235','1','27','28','18','20','20','13','17','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('961','530201','0.735955056179775','0.733766233766234','0.689189189189189','2832','3358','4485','0.89010989010989','0.826086956521739','178','154','74','131','113','51','91','46');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('966','490205','0.771844660194175','0.751412429378531','0.75','9587','10795','11082','0.877862595419847','0.849315068493151','206','177','100','159','133','75','131','73');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1032','320101','0.340579710144928','0.298507462686567','-99999','2093','2723','-99999','0.6','-99999','138','67','0','47','20','0','25','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1092','110601','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','3','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1092','131206','0','0','0','-99999','-99999','-99999','-99999','-99999','8','8','8','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1092','430107','0','0','0','-99999','-99999','-99999','-99999','-99999','22','22','22','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1092','510000','0','0','0','-99999','-99999','-99999','-99999','-99999','16','16','16','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1092','510801','0.0666666666666667','0','-99999','-99999','-99999','-99999','-99999','-99999','15','15','3','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1092','510802','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','4','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1092','510805','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1092','511011','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','3','0','0','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1092','513902','0','0','0','-99999','-99999','-99999','-99999','-99999','16','16','15','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1100','510000','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1100','510801','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1100','513902','0','0','0','-99999','-99999','-99999','-99999','-99999','14','11','10','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1100','520203','0.136363636363636','0.13953488372093','0','10088','9524','-99999','1','-99999','44','43','18','6','6','0','5','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1100','520901','0','0','0','-99999','-99999','-99999','-99999','-99999','30','30','12','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1104','320107','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','1','2','2','0','2','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1104','350103','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','0','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1109','490205','0.642857142857143','0.608695652173913','0.666666666666667','9948','10527','10195.5','0.857142857142857','1','28','23','9','18','14','6','14','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1127','320105','0.166666666666667','0.166666666666667','-99999','-99999','-99999','-99999','-99999','-99999','6','6','4','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1127','320107','0.285714285714286','0.571428571428571','0.8','-99999','-99999','-99999','-99999','-99999','7','7','5','2','4','4','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1144','111004','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','1','1','1','1','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1144','151201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','1','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1146','111001','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1146','513501','0.775','0.714285714285714','0.615384615384615','4434','4605','6851','0.952380952380952','0.666666666666667','40','35','13','31','25','8','21','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1149','120401','0.5','0.616822429906542','0.761904761904762','4345','4339.5','4420.5','0.875','0.916666666666667','134','107','42','67','66','32','56','24');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1149','120402','0.433333333333333','0.6','0.583333333333333','5596','5935','6828','0.923076923076923','0.666666666666667','30','25','12','13','15','7','13','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1149','120410','0.552631578947368','0.413793103448276','0.2','6966','7790.5','-99999','0.6875','-99999','38','29','10','21','12','2','16','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1182','110103','0.659090909090909','0.710526315789474','0.75','8580','8320','10325','1','0.888888888888889','44','38','12','29','27','9','25','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1182','510714','0.785714285714286','0.782608695652174','0.875','4304.5','6938','5448','0.833333333333333','0.833333333333333','28','23','8','22','18','7','18','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1182','520408','0.739130434782609','0.8','-99999','7349','6896.5','-99999','0.952380952380952','-99999','46','30','0','34','24','0','21','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1182','520411','0.7','0.8','0.7','5734','2293','5044','1','1','10','10','10','7','8','7','6','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1185','110901','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1185','510705','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','2','1','2','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1185','510801','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','1','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1185','511010','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','0','0','2','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1185','512602','0.72972972972973','0.76','0.758620689655172','5418','5911','6950.5','0.885416666666667','0.891891891891892','185','150','58','135','114','44','96','37');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1185','513902','0.849315068493151','0.798165137614679','0.87037037037037','5531','6741','6436','0.843373493975904','0.880952380952381','146','109','54','124','87','47','83','42');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1200','320109','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','0','1','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1200','460302','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1200','490205','0.679389312977099','0.725274725274725','0.75','10229','12139.5','9802','0.842105263157895','-99999','131','91','16','89','66','12','38','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1215','513501','0.875','0.75','0.823529411764706','5289','5219.5','6466','0.85','0.928571428571429','24','24','17','21','18','14','20','14');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1223','190708','0.666666666666667','0.625','0.708333333333333','3836.5','3727','3677','0.933333333333333','0.866666666666667','24','24','24','16','15','17','15','15');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1226','460403','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','2','0','1','0','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1230','110501','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','2','2','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1230','110901','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1230','111002','0.333333333333333','-99999','-99999','-99999','-99999','-99999','-99999','-99999','6','1','1','2','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1230','520205','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','1','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1230','520211','0.375','0.625','0.666666666666667','-99999','16779','-99999','-99999','-99999','8','8','6','3','5','4','3','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1230','520401','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1230','521001','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1232','513501','0.802197802197802','0.808823529411765','0.810810810810811','4660','5640','5501','0.91304347826087','0.896551724137931','91','68','37','73','55','30','46','29');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1240','111003','0.2','0.8','0.6','-99999','-99999','-99999','-99999','-99999','5','5','5','1','4','3','3','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1240','520205','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','1','1','2','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1250','110103','0.4','0.5','0.666666666666667','-99999','25630','30143.5','-99999','-99999','10','10','9','4','5','6','3','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1250','110202','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','0','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1250','110301','0.142857142857143','0.428571428571429','-99999','-99999','-99999','-99999','-99999','-99999','7','7','2','1','3','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1250','110401','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','0','2','2','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1250','110802','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','1','1','2','1','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1250','110901','0.705882352941177','0.785714285714286','0.909090909090909','20573','19130','18388','1','1','17','14','11','12','11','10','8','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1250','111001','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','0','0','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1250','111003','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','1','2','2','1','2','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1250','261103','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1250','500401','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1250','510716','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','1','3','3','1','3','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1250','510801','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1250','520201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1250','520401','0.555555555555556','0.733333333333333','0.833333333333333','10250','8963','9399','1','-99999','18','15','6','10','11','5','8','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1253','190708','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','1','3','2','0','3','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1253','520401','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1258','510701','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1258','520201','0.523489932885906','0.67175572519084','0.758620689655172','22247','22855.5','23913','0.864406779661017','0.904761904761905','149','131','58','78','88','44','59','21');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1271','490205','0.779661016949153','0.703703703703704','0.48','8382.5','8235','12094','0.857142857142857','0.785714285714286','59','54','25','46','38','12','35','14');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','110101','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','110103','0.481012658227848','0.507936507936508','0.62962962962963','18335','17022','16864','0.863636363636364','1','79','63','27','38','32','17','22','11');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','110201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','110202','0.363636363636364','0.333333333333333','-99999','-99999','-99999','-99999','-99999','-99999','11','9','0','4','3','0','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','110203','0.7','0.6875','-99999','10345','9861','-99999','0.888888888888889','-99999','20','16','2','14','11','1','9','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','110301','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','2','1','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','110801','0.521739130434783','0.5','0.5','9709.5','14306','12415','0.777777777777778','-99999','23','18','10','12','9','5','9','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','110803','0.703703703703704','0.608695652173913','-99999','4610','8323','-99999','1','-99999','27','23','3','19','14','2','12','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','110901','0.576923076923077','0.55','-99999','9402','11966','-99999','0.818181818181818','-99999','26','20','3','15','11','3','11','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','111002','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','1','0','1','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','111003','0.714285714285714','0.538461538461538','-99999','6416','12587','-99999','0.666666666666667','-99999','21','13','3','15','7','2','6','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','111004','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','3','1','2','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','120401','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','141401','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','1','0','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','144501','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','151001','0.625','0.625','-99999','10239','9231','-99999','-99999','-99999','8','8','0','5','5','0','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','151201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','190708','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','3','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','220211','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','220301','1','1','-99999','3772','8160','-99999','-99999','-99999','5','5','2','5','5','1','4','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','220302','0.32258064516129','0.365853658536585','0.8','10643','10766','12770.5','0.7','0.909090909090909','62','41','15','20','15','12','20','11');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','231303','0.8','-99999','-99999','-99999','-99999','-99999','-99999','-99999','5','4','1','4','3','1','2','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','310504','0.428571428571429','0.166666666666667','-99999','-99999','-99999','-99999','-99999','-99999','7','6','4','3','1','2','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','310507','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','1','2','2','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','410301','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','460201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','490202','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','500701','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','510601','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','510706','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','1','1','1','0','2','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','510709','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','510711','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','510713','0.530120481927711','0.656716417910448','0.653846153846154','7485.5','7417','7220','0.823529411764706','0.625','83','67','26','44','44','17','34','16');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','510720','1','0.75','0.666666666666667','6781.5','5892','-99999','1','-99999','8','8','6','8','6','4','6','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','510805','0.571428571428571','-99999','-99999','-99999','-99999','-99999','-99999','-99999','7','4','0','4','2','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','510808','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','2','2','2','1','2','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','510913','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','511005','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','3','2','0','2','2','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','511020','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','520101','0.52','0.473684210526316','0.5','8838','9575','10983','0.7','-99999','25','19','10','13','9','5','10','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','520201','0.575757575757576','0.703703703703704','0.642857142857143','14567','17999','12730','0.857142857142857','0.8','33','27','14','19','19','9','14','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','520203','0.352941176470588','0.357142857142857','0.285714285714286','5461.5','3172','-99999','-99999','-99999','17','14','7','6','5','2','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','520205','0.714285714285714','0.666666666666667','-99999','15581.5','29267','-99999','0.8','-99999','14','9','2','10','6','2','5','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','520206','0.4','0.647058823529412','0.4','10810','11120','-99999','1','-99999','20','17','5','8','11','2','5','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','520208','0.478260869565217','0.705882352941177','0.5','12757','12044','-99999','1','-99999','23','17','6','11','12','3','10','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','520302','0.548387096774194','0.464285714285714','0.545454545454545','7352','10176','10740','0.833333333333333','-99999','31','28','11','17','13','6','12','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','520305','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','520401','0.545454545454545','0.60655737704918','0.631578947368421','8750','8798','13142','0.84375','0.8','66','61','19','36','37','12','32','10');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','520402','0.428571428571429','0.6','-99999','-99999','-99999','-99999','-99999','-99999','7','5','2','3','3','1','2','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','520408','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','1','1','2','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','520411','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','520803','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','520903','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','520907','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','521001','0.547169811320755','0.642857142857143','0.727272727272727','8668','11294','10120','0.9','0.833333333333333','53','42','22','29','27','16','20','12');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','521201','0.454545454545455','0.6','-99999','5683','15698','-99999','-99999','-99999','11','10','4','5','6','3','4','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1301','521401','0.5','0.6','-99999','18328','22373.5','-99999','-99999','-99999','10','10','1','5','6','1','4','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1304','150403','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1304','150612','0.625','0.75','0.8125','9806.5','10652','10678','0.916666666666667','0.916666666666667','16','16','16','10','12','13','12','12');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1304','510801','0.105263157894737','0.1875','0.4','-99999','-99999','-99999','-99999','-99999','19','16','5','2','3','2','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1304','510902','0.4','0.4','-99999','-99999','-99999','-99999','-99999','-99999','5','5','1','2','2','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1304','511009','0.314285714285714','0.474576271186441','0.689655172413793','5678','6346','6083.5','0.916666666666667','0.75','70','59','29','22','28','20','24','20');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1304','513902','0.340425531914894','0.318181818181818','0.65','6023.5','6982','4273','0.8125','0.666666666666667','47','44','20','16','14','13','16','15');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1304','520211','0.115384615384615','0.136363636363636','-99999','-99999','-99999','-99999','-99999','-99999','26','22','0','3','3','0','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1307','320105','0.576470588235294','0.706666666666667','0.702702702702703','2454','2935','3732.5','0.785714285714286','0.833333333333333','85','75','37','49','53','26','42','18');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1449','220302','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1467','220302','0.6','0.8','0.6','6796','10943','11989.5','-99999','-99999','10','10','10','6','8','6','4','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1467','520206','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1507','110201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('1507','110901','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('2087','510801','0.533333333333333','0.533333333333333','0.833333333333333','5361','4915.5','6042.5','0.625','0.833333333333333','15','15','12','8','8','10','8','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('2087','510805','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('2087','510902','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','0','0','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('2087','510910','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('2087','511009','0.333333333333333','0.388888888888889','0.611111111111111','2589.5','7672','6398','0.571428571428571','0.714285714285714','18','18','18','6','7','11','7','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('2229','520809','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('2229','521501','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','3','2','2','3','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('2229','521701','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('2348','320105','0.384615384615385','-99999','-99999','1162','-99999','-99999','-99999','-99999','13','1','1','5','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('2509','090902','0','0','0','-99999','-99999','-99999','-99999','-99999','17','16','8','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('2509','520201','0','0','-99999','-99999','-99999','-99999','-99999','-99999','13','8','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('2528','513501','0.714285714285714','0.771428571428571','0.75','5869','6453','6746.5','0.88','0.791666666666667','35','35','32','25','27','24','25','24');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('2848','513501','0.545454545454545','0.702702702702703','0.571428571428571','5509','5737.5','6563.5','0.956521739130435','0.777777777777778','44','37','14','24','26','8','23','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('2928','320101','0.553191489361702','0.522727272727273','0.540540540540541','2743.5','4449','4612.5','0.652173913043478','0.65','47','44','37','26','23','20','23','20');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('3148','513501','0.533333333333333','0.545454545454545','-99999','7458.5','7493','-99999','0.833333333333333','-99999','15','11','0','8','6','0','6','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('3268','513501','0.80952380952381','0.842105263157895','-99999','9033','9954.5','-99999','0.928571428571429','-99999','21','19','0','17','16','0','14','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('3268','513502','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','0','1','0','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('3388','320105','0.44','0.4','-99999','3975','7159','-99999','0.8','-99999','25','15','1','11','6','1','5','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('3388','512602','0.888888888888889','0.818181818181818','-99999','3099.5','3750','-99999','0.8','-99999','18','11','4','16','9','2','10','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('3388','513902','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','3','1','3','2','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('3388','520401','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('3388','520408','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','0','0','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('3388','520908','0.833333333333333','0.6','-99999','3061','-99999','-99999','-99999','-99999','6','5','0','5','3','0','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('3408','513902','0.842105263157895','0.789473684210526','0.736842105263158','5298.5','2598','3497.5','0.882352941176471','0.823529411764706','19','19','19','16','15','14','17','17');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('3752','490205','0.741935483870968','0.666666666666667','0.818181818181818','6205','8962','11898','0.636363636363636','0.9','31','30','11','23','20','9','22','10');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('4268','470603','0.457142857142857','0.534246575342466','0.631578947368421','9008','9279','8642.5','0.966666666666667','1','105','73','19','48','39','12','30','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('4268','470604','0.4','0.426470588235294','0.636363636363636','4678.5','4922','8226.5','0.866666666666667','-99999','85','68','22','34','29','14','15','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('4268','480303','0.378378378378378','0.482758620689655','0.6','7319','7571.5','7840','0.833333333333333','-99999','37','29','15','14','14','9','6','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('4348','512602','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('4628','513801','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('4648','512602','0.752941176470588','0.791666666666667','0.9','5665','5948','6573.5','0.961538461538462','1','85','72','20','64','57','18','52','13');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('4648','513902','0.601731601731602','0.676923076923077','0.630952380952381','5850','5719.5','6688','0.880733944954128','0.880952380952381','231','195','84','139','132','53','109','42');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('4688','490205','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('4808','120401','0.652173913043478','0.637931034482759','0.657142857142857','3846','3949','4383','0.878787878787879','0.80952380952381','69','58','35','45','37','23','33','21');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('4808','120409','0.675','0.606299212598425','0.605263157894737','4687.5','6666','5886.5','0.855263157894737','0.755555555555556','160','127','76','108','77','46','76','45');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('4808','120410','0.4','0.4','-99999','-99999','-99999','-99999','-99999','-99999','5','5','4','2','2','1','2','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('4808','120413','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','2','2','2','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('4868','110901','0.703030303030303','0.654411764705882','0.661538461538462','8971','8585','9718','0.797872340425532','0.818181818181818','165','136','65','116','89','43','94','44');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('5029','110103','0.637931034482759','0.647058823529412','0.833333333333333','9000','9646','14007','0.758620689655172','1','58','51','18','37','33','15','29','11');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('5029','110401','0.307692307692308','0.5','0.833333333333333','-99999','15252','15625','0.8','-99999','13','10','6','4','5','5','5','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('5029','110501','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','2','0','1','1','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('5029','110901','0.666666666666667','0.727272727272727','0.64','10316','10239','12245','0.892857142857143','0.642857142857143','66','44','25','44','32','16','28','14');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('5029','120409','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('5029','301601','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('5029','510705','0.5','0.628571428571429','0.68','8244.5','9074.5','9872','1','0.9','44','35','25','22','22','17','16','10');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('5029','510706','0.5','-99999','-99999','-99999','-99999','-99999','-99999','-99999','6','3','2','3','1','2','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('5029','510710','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('5029','510713','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','0','0','2','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('5029','510720','0.7','0.647058823529412','-99999','8786','9617','-99999','1','-99999','40','34','0','28','22','0','18','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('5029','520302','0.69047619047619','0.682926829268293','0.76','4565','6229','9482','0.791666666666667','0.857142857142857','42','41','25','29','28','19','24','14');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('5029','520402','0.636363636363636','0.75','0.636363636363636','5040','6929.5','7977','0.777777777777778','0.666666666666667','33','16','11','21','12','7','9','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('5388','320101','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('5708','480508','0.0909090909090909','0','0.636363636363636','-99999','-99999','6470','-99999','-99999','11','11','11','1','0','7','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('5748','510801','0.625','0.571428571428571','-99999','4160','5478','-99999','0.818181818181818','-99999','24','21','0','15','12','0','11','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('5748','511009','0.857142857142857','1','-99999','4341','6307','-99999','-99999','-99999','7','5','0','6','5','0','4','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('5748','513501','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','3','0','2','2','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('5769','490205','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('5848','520204','0.739130434782609','0.777777777777778','-99999','5733','6657','-99999','1','-99999','23','18','0','17','14','0','10','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('5948','100303','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','1','2','0','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('5948','110201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','0','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('5948','110901','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','1','1','2','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('5948','111003','0.714285714285714','0.857142857142857','0.9375','19755','20670','27929','0.9375','0.928571428571429','21','21','16','15','18','15','16','14');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('5948','510720','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','2','2','2','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('5948','520302','0.7','0.7','0.823529411764706','10405.5','12186.5','12966.5','0.866666666666667','1','20','20','17','14','14','14','15','12');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('5948','520401','0.701754385964912','0.711538461538462','0.739130434782609','8086.5','8717','10086','0.891891891891892','0.888888888888889','57','52','23','40','37','17','37','18');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('5948','521201','0.684931506849315','0.728571428571429','0.8125','17695.5','19506','24462','0.9','0.966666666666667','73','70','48','50','51','39','40','30');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('5988','460000','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('5988','530201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('6068','110201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('6068','110901','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','2','0','1','2','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('6068','510716','0.5','0.857142857142857','0.8','6471.5','5631','-99999','-99999','-99999','12','7','5','6','6','4','3','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('6068','510720','0.454545454545455','0.727272727272727','0.625','3522','4778','3726','0.75','1','22','22','16','10','16','10','8','8');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('6068','510801','0.769230769230769','1','1','3636','5032.5','3962','1','-99999','13','10','5','10','10','5','5','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('6068','510805','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','3','2','2','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('6068','511009','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','2','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('6068','513902','0.785714285714286','0.805555555555556','0.75','5994','6331','5049','0.892857142857143','0.857142857142857','42','36','20','33','29','15','28','14');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('6068','520211','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','2','1','3','2','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('6068','520401','0.739130434782609','0.65','0.666666666666667','8199','8042','7514.5','0.833333333333333','0.8','23','20','9','17','13','6','12','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('6348','510801','0.725490196078431','0.73015873015873','0.75','5464','5679.5','6067','0.907894736842105','0.882352941176471','153','126','56','111','92','42','76','34');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('6348','510902','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('6348','510910','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('6348','511009','0.590909090909091','0.714285714285714','-99999','4519','3251','-99999','0.9','-99999','22','21','3','13','15','2','10','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('6348','513501','0.62962962962963','0.526315789473684','0.6','3644','3881','5360','1','1','27','19','15','17','10','9','9','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('6408','110501','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('6728','110103','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('6728','110801','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('6728','520201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('6728','520205','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','1','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('6728','520211','0.125','0.3','0.285714285714286','-99999','-99999','-99999','-99999','-99999','16','10','7','2','3','2','2','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('6728','520304','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','1','1','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('6728','521001','0.230769230769231','0.333333333333333','0.375','-99999','-99999','-99999','-99999','-99999','13','9','8','3','3','3','3','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('6728','521804','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('6888','120401','0.411764705882353','0.411764705882353','0.6','4191','5879','-99999','1','-99999','17','17','5','7','7','3','7','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('6888','120409','0.666666666666667','0.833333333333333','-99999','-99999','4698','-99999','-99999','-99999','6','6','3','4','5','2','4','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7048','513501','0.80952380952381','0.736842105263158','0.857142857142857','6187.5','8451.5','4988.5','0.866666666666667','1','42','38','14','34','28','12','30','11');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7208','490205','0.5','0.6875','0.75','6424','6143','9677','0.777777777777778','0.777777777777778','16','16','16','8','11','12','9','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7429','513501','0.888888888888889','0.85','-99999','5221','6469','-99999','1','-99999','36','20','1','32','17','1','15','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7468','320109','0.375','0.5','-99999','-99999','-99999','-99999','-99999','-99999','8','8','1','3','4','1','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7468','520401','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','0','2','2','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7528','110202','0.571428571428571','0.75','0.875','28188.5','29391','28815','0.857142857142857','-99999','14','12','8','8','9','7','7','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7528','110901','0.7','0.7','0.857142857142857','17977','17277','20750','1','1','10','10','7','7','7','6','7','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7528','510705','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7528','510707','0.791666666666667','0.681818181818182','0.8','7317','7720','8348.5','0.764705882352941','0.785714285714286','24','22','15','19','15','12','17','14');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7528','510714','1','0.9375','0.866666666666667','8043','9011','10054','0.923076923076923','0.833333333333333','16','16','15','16','15','13','13','12');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7528','510720','1','1','-99999','8690.5','7804','-99999','1','-99999','8','6','4','8','6','4','6','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7528','520211','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7528','520302','0.769230769230769','0.761904761904762','0.727272727272727','9795.5','11576','12917','0.875','0.777777777777778','26','21','11','20','16','8','16','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7528','520401','0.761194029850746','0.841269841269841','0.833333333333333','8075','11236','10700','0.975','0.933333333333333','67','63','42','51','53','35','40','30');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7528','521201','0.692307692307692','0.76056338028169','0.74468085106383','16877.5','19001.5','24269','0.936170212765957','0.852941176470588','78','71','47','54','54','35','47','34');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7608','310501','0.623376623376623','0.696428571428571','0.744186046511628','8013','7359','7002','0.861111111111111','0.793103448275862','77','56','43','48','39','32','36','29');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7716','510801','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','0','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7716','512602','0.888888888888889','0.777777777777778','0.777777777777778','5755','2129','6525','0.777777777777778','0.777777777777778','9','9','9','8','7','7','9','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7716','513902','0.863636363636364','0.852272727272727','0.825396825396825','5991','6517','5910.5','0.936708860759494','0.87719298245614','88','88','63','76','75','52','79','57');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7754','120503','0.761904761904762','0.8','0.666666666666667','4075.5','4705','-99999','0.866666666666667','0.8','21','20','6','16','16','4','15','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7776','460403','0.491039426523298','0.518867924528302','0.452173913043478','13861','15417.5','13677','0.798165137614679','0.618181818181818','279','212','115','137','110','52','109','55');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7780','513501','0.526315789473684','0.555555555555556','0.583333333333333','3408.5','5329','11389','0.888888888888889','0.833333333333333','19','18','12','10','10','7','9','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7781','510720','1','1','-99999','3469','4123','-99999','-99999','-99999','6','6','4','6','6','4','4','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7781','510801','0.857142857142857','1','1','3353','3696','6811','-99999','-99999','7','5','5','6','5','5','3','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7781','510805','0.6','0.5625','0.75','4348','5517','8098.5','0.8','1','15','16','8','9','9','6','10','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7781','510902','0.909090909090909','1','0.833333333333333','5551','6486','5999','1','0.833333333333333','11','11','6','10','11','5','11','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7781','511009','0.745762711864407','0.76271186440678','0.815789473684211','5194.5','5919','5428','0.85','0.846153846153846','59','59','38','44','45','31','40','26');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7781','511011','1','1','-99999','4412','3810','-99999','-99999','-99999','5','5','0','5','5','0','4','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7781','512602','0.735294117647059','0.676470588235294','0.826086956521739','3749','5068','4928','0.95','0.933333333333333','34','34','23','25','23','19','20','15');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7781','513902','0.75','0.8','0.9','6770','8485.5','9688','0.928571428571429','0.833333333333333','20','20','10','15','16','9','14','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7791','510720','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','4','2','2','2','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7791','510801','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','1','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7791','511009','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','0','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7791','512603','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','4','3','3','3','3','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7791','513902','0.777777777777778','0.888888888888889','0.777777777777778','6277','7048','9881','1','0.857142857142857','9','9','9','7','8','7','7','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7795','510710','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7795','510711','0.777777777777778','0.777777777777778','0.777777777777778','6581','9200','10172','0.875','0.75','9','9','9','7','7','7','8','8');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7795','510713','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','4','4','4','1','3','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7795','510801','0.785714285714286','0.782608695652174','0.846153846153846','6471.5','6929','6788','0.862068965517241','0.9','84','69','26','66','54','22','58','20');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7795','510805','0.727272727272727','0.941176470588235','0.666666666666667','6989','6345.5','9906.5','1','0.714285714285714','22','17','9','16','16','6','14','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7795','510901','0.63265306122449','0.75609756097561','0.8','9059','9639','10353.5','0.869565217391304','0.727272727272727','49','41','20','31','31','16','23','11');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7795','510902','0.895833333333333','0.933333333333333','0.785714285714286','6208','6849.5','7426','0.958333333333333','0.818181818181818','48','30','14','43','28','11','24','11');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7795','510903','0.8','0.878787878787879','0.916666666666667','12613.5','13676','10965','0.923076923076923','1','40','33','12','32','29','11','26','8');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7795','510907','0.714285714285714','0.954545454545455','0.888888888888889','11446','12208','15030','1','-99999','28','22','9','20','21','8','13','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7795','510909','0.789473684210526','0.766666666666667','0.947368421052632','7830.5','11306','11924','0.8','0.916666666666667','38','30','19','30','23','18','20','12');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7795','510910','0.707865168539326','0.708333333333333','0.891304347826087','10561','11563','12108','0.909090909090909','0.952380952380952','89','72','46','63','51','41','44','21');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7795','510915','0.80952380952381','0.769230769230769','-99999','8985','10764.5','-99999','0.9','-99999','21','13','4','17','10','3','10','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7807','510720','0.6','1','1','4696','7108','8124','1','1','10','10','10','6','10','10','10','10');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7807','510801','0.666666666666667','0.666666666666667','0.666666666666667','-99999','-99999','-99999','-99999','-99999','6','6','6','4','4','4','4','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7807','510902','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','3','1','2','3','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7807','511009','0.8','0.8','0.8','-99999','-99999','-99999','-99999','-99999','5','5','5','4','4','4','4','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7807','512602','0.8046875','0.797872340425532','0.790697674418605','4877','5670','6863','0.895522388059702','0.9375','128','94','43','103','75','34','67','32');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7807','513902','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','3','4','4','2','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7807','520302','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','4','3','3','2','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7836','510714','0.583333333333333','0.909090909090909','0.8','3756','4075','-99999','1','-99999','12','11','5','7','10','4','5','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7836','510801','0.571428571428571','0.666666666666667','0.8','-99999','-99999','-99999','0.8','-99999','7','6','5','4','4','4','5','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7836','510904','0.701149425287356','0.810810810810811','0.866666666666667','6240','6659','6880.5','0.942307692307692','1','87','74','30','61','60','26','52','21');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7836','511020','0.780487804878049','0.794117647058823','0.757575757575758','5700.5','6923','7623','0.891304347826087','0.818181818181818','82','68','33','64','54','25','46','22');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7836','512602','0.71830985915493','0.7109375','0.816326530612245','5346','5588','6680','0.870588235294118','0.78125','142','128','49','102','91','40','85','32');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7836','512603','0.935943060498221','0.943965517241379','0.925','7611','7655','7597','0.963133640552995','0.947826086956522','281','232','120','263','219','111','217','115');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7836','513501','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','2','3','3','1','3','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7836','513902','0.708955223880597','0.741666666666667','0.723404255319149','5527','5491','7197.5','0.891566265060241','0.8125','134','120','47','95','89','34','83','32');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7846','150613','0.637931034482759','0.630434782608696','0.529411764705882','7635','8314','12557','0.923076923076923','-99999','58','46','17','37','29','9','26','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7846','460302','0.773584905660377','0.709302325581395','0.767857142857143','6411.5','7647','8262','0.9','0.833333333333333','106','86','56','82','61','43','60','36');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7846','460401','0.6','0.769230769230769','0.666666666666667','6123.5','6477','10152.5','1','0.888888888888889','30','26','18','18','20','12','15','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7846','460503','0.714285714285714','0.633333333333333','0.588235294117647','4938','6990','7574','1','0.857142857142857','42','30','17','30','19','10','15','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7846','480508','0.56989247311828','0.573529411764706','0.711111111111111','6529','6677','8288.5','0.944444444444444','0.954545454545455','93','68','45','53','39','32','36','22');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7853','490205','0.708333333333333','0.675675675675676','0.384615384615385','9053','8363','9282','0.826086956521739','0.5','48','37','13','34','25','5','23','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7884','110301','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7884','120505','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','0','2','2','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7884','320101','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','4','1','2','2','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7890','301901','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7890','513304','0.307692307692308','0.3','-99999','-99999','-99999','-99999','-99999','-99999','13','10','0','4','3','0','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7893','140401','0.580645161290323','0.592592592592593','0.588235294117647','10566','11502.5','12087.5','0.733333333333333','0.5','31','27','17','18','16','10','15','10');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7893','460503','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7920','460302','0.9','0.8','-99999','5507','9317.5','-99999','0.8','-99999','10','10','0','9','8','0','10','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7920','510601','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','0','3','2','0','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7920','510716','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','0','1','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7920','510801','0.84','0.88','-99999','6710','7072','-99999','0.916666666666667','-99999','25','25','0','21','22','0','24','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7920','510805','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7920','513501','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','0','4','4','0','4','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7922','310501','0.282608695652174','0.395348837209302','0.666666666666667','6946','4067','6554','0.75','0.875','46','43','30','13','17','20','12','8');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7924','512602','0.634146341463415','0.692307692307692','0.8','4918','4570','3164.5','0.733333333333333','-99999','41','26','10','26','18','8','15','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7924','513902','0.7981220657277','0.825','0.824561403508772','5325','5692','4866.5','0.900662251655629','0.897435897435897','213','200','114','170','165','94','151','78');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7927','110301','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7927','220000','0.75','0.428571428571429','-99999','5329','-99999','-99999','-99999','-99999','8','7','3','6','3','1','4','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7927','430103','0.796296296296296','0.777777777777778','0.818181818181818','7507','8731','8481.5','0.914285714285714','0.866666666666667','54','45','22','43','35','18','35','15');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7927','430107','0.758064516129032','0.703703703703704','0.541666666666667','5025','6008.5','7671','0.842105263157895','0.733333333333333','62','54','24','47','38','13','38','15');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7927','510000','0.833333333333333','0.666666666666667','0.777777777777778','5897.5','6826','6912','0.888888888888889','0.857142857142857','12','12','9','10','8','7','9','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7927','510701','0.727272727272727','0.722222222222222','0.916666666666667','7202','7131','9676','1','1','22','18','12','16','13','11','12','8');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7927','510707','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','1','1','1','1','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7927','510713','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7927','510801','0.825','0.779661016949153','0.954545454545455','5432','5516','5425','0.86','0.95','80','59','22','66','46','21','50','20');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7927','511020','0.806451612903226','0.875','1','9547','9959','11009','1','1','31','24','11','25','21','11','17','8');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7927','513902','0.785714285714286','0.714285714285714','0.869565217391304','4684.5','5841.5','6454.5','0.818181818181818','1','28','28','23','22','20','20','22','18');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7927','520201','0.8','0.864197530864197','0.9375','8433.5','8694','9935','0.969230769230769','0.964285714285714','95','81','32','76','70','30','65','28');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7927','520301','0.923076923076923','1','0.9','9841.5','9987','9684','1','0.875','26','20','10','24','20','9','18','8');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7927','521101','0.857142857142857','0.833333333333333','-99999','13982','10274','-99999','0.8','-99999','7','6','4','6','5','4','5','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7927','521401','1','1','-99999','8781','9861','-99999','1','-99999','9','9','3','9','9','3','9','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7927','521902','0.953488372093023','0.891891891891892','1','5108','6369','5642','0.966666666666667','1','43','37','16','41','33','16','30','15');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7929','430103','0.625','0.857142857142857','-99999','10365','5946','-99999','-99999','-99999','8','7','0','5','6','0','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7929','430107','0.625','0.857142857142857','-99999','7229','3842.5','-99999','1','-99999','8','7','0','5','6','0','5','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7929','500408','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','1','0','2','1','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7929','510701','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','0','2','2','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7929','520201','0.571428571428571','0.625','-99999','8568','11354','-99999','0.888888888888889','-99999','21','16','0','12','10','0','9','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7929','520301','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7929','520804','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7929','521101','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','1','0','2','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7929','521401','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','0','1','1','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7929','521902','0.909090909090909','1','-99999','6164.5','4343','-99999','1','-99999','11','9','0','10','9','0','8','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7930','110301','0.6','0.75','0.615384615384615','6757','9291.5','10818','0.866666666666667','0.555555555555556','25','24','13','15','18','8','15','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7930','220000','0.769230769230769','0.692307692307692','0.833333333333333','6169','8509','6741','0.875','-99999','13','13','6','10','9','5','8','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7930','430103','0.918604651162791','0.828947368421053','0.875','6982','8481','10062.5','0.861538461538462','0.880952380952381','86','76','48','79','63','42','65','42');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7930','430104','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','3','0','4','2','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7930','430107','0.852459016393443','0.722222222222222','0.590909090909091','5570.5','6552','7507','0.837209302325581','0.722222222222222','61','54','22','52','39','13','43','18');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7930','500408','0.594594594594595','0.575757575757576','0.6875','8957','8026','10586','0.888888888888889','0.857142857142857','37','33','16','22','19','11','18','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7930','500409','0.714285714285714','0.740740740740741','0.75','5909','8792','10381','0.888888888888889','0.857142857142857','35','27','12','25','20','9','18','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7930','510000','0.903225806451613','0.888888888888889','1','9128','7891.5','10360','0.92','1','31','27','13','28','24','13','25','12');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7930','510701','0.912280701754386','0.903846153846154','0.8125','8879','8502','10368.5','0.957446808510638','0.896551724137931','57','52','32','52','47','26','47','29');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7930','510707','0.875','0.833333333333333','1','9403.5','8650','11028','0.888888888888889','1','16','12','6','14','10','6','9','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7930','510713','0.736842105263158','0.8125','0.666666666666667','6326','8149','9531','0.916666666666667','1','19','16','9','14','13','6','12','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7930','510801','0.842465753424658','0.801652892561983','0.76','5035','5609','5299','0.89247311827957','0.854545454545454','146','121','75','123','97','57','93','55');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7930','510909','0.792207792207792','0.823529411764706','0.703703703703704','10223','10900','11952','0.961538461538462','0.733333333333333','77','68','27','61','56','19','52','15');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7930','511020','0.842105263157895','0.831325301204819','0.861111111111111','8389','8391','10068','0.924242424242424','0.923076923076923','95','83','36','80','69','31','66','26');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7930','513801','1','1','-99999','19748','22082','-99999','1','-99999','14','6','0','14','6','0','6','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7930','513901','0.823529411764706','0.761194029850746','0.928571428571429','8331.5','10566','11982','0.847826086956522','0.916666666666667','102','67','42','84','51','39','46','24');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7930','513902','0.793103448275862','0.8','0.803571428571429','7189','7611','6982','0.934426229508197','0.85','87','80','56','69','64','45','61','40');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7930','520201','0.833333333333333','0.859756097560976','0.918032786885246','8413.5','9423','10646','0.946564885496183','0.943396226415094','192','164','61','160','141','56','131','53');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7930','520301','0.885245901639344','0.909090909090909','0.941176470588235','9418','9908.5','11617.5','0.955555555555556','0.96551724137931','61','55','34','54','50','32','45','29');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7930','520804','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7930','521101','0.6','0.833333333333333','0.8','7682','8368.5','-99999','1','-99999','15','12','5','9','10','4','8','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7930','521401','0.571428571428571','0.666666666666667','0.4','8298','8369.5','-99999','1','-99999','14','12','5','8','8','2','5','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7930','521902','0.828571428571429','0.818181818181818','0.769230769230769','6549','5642','14144.5','0.888888888888889','0.909090909090909','35','33','13','29','27','10','27','11');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7935','510713','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','0','2','2','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7935','510714','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','0','3','3','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7935','510801','0.82','0.86','-99999','4731','6117','-99999','0.921052631578947','-99999','50','50','0','41','43','0','38','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7935','510805','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','0','0','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7935','513501','0.666666666666667','0.866666666666667','-99999','3689','5613','-99999','0.909090909090909','-99999','15','15','0','10','13','0','11','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7943','510601','0.836601307189543','0.8671875','0.818181818181818','5836.5','6317','6722','0.936936936936937','0.844827586206897','153','128','66','128','111','54','111','58');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7943','510710','0.807692307692308','0.771428571428571','0.857142857142857','7679.5','8177.5','7332.5','0.818181818181818','0.875','104','70','21','84','54','18','55','16');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7943','510801','0.85981308411215','0.826086956521739','0.792592592592593','6394','6786','7403','0.913875598086124','0.854545454545454','321','253','135','276','209','107','209','110');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7943','510902','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7943','511009','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','1','3','3','1','3','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7943','511020','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','1','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7948','490205','0.404332129963899','0.308080808080808','0.337837837837838','10583.5','10067','9819','0.55','0.428571428571429','277','198','74','112','61','25','60','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7950','490205','0.641975308641975','0.76271186440678','0.857142857142857','10114.5','11639','10389.5','0.883720930232558','1','81','59','14','52','45','12','43','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7970','111003','0.759259259259259','0.777777777777778','0.764705882352941','4688','6887','7677','0.8','0.730769230769231','54','54','34','41','42','26','40','26');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7970','320109','0.188405797101449','0.238805970149254','0.560606060606061','4364','6738.5','6154','0.818181818181818','1','69','67','66','13','16','37','11','11');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7970','510601','0.854166666666667','0.8375','0.829268292682927','4979','6229','6892','0.907692307692308','0.870967741935484','96','80','41','82','67','34','65','31');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7970','510801','0.774752475247525','0.761764705882353','0.79144385026738','4788','5342','6141.5','0.884462151394422','0.867647058823529','404','340','187','313','259','148','251','136');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7970','510910','0.75','0.8','0.869565217391304','7250','11274','11765.5','0.925925925925926','1','36','35','23','27','28','20','27','17');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7970','513501','0.734513274336283','0.66304347826087','0.775510204081633','4197','5239','5290','0.793103448275862','0.84375','113','92','49','83','61','38','58','32');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7970','520401','0.875','0.875','-99999','4679.5','5646.5','-99999','0.928571428571429','-99999','32','16','2','28','14','2','14','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7973','320101','0.380281690140845','0.408450704225352','0.411764705882353','1218','1865','2436','0.652173913043478','0.666666666666667','71','71','34','27','29','14','23','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7973','320109','0.354838709677419','0.290322580645161','0.266666666666667','2794','4130.5','-99999','0.454545454545455','-99999','62','62','15','22','18','4','22','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7980','513902','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7984','110103','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','1','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7984','110201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','1','0','2','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7984','110801','0.5','0.666666666666667','0.571428571428571','4270','3843','-99999','1','-99999','12','12','7','6','8','4','6','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7984','110802','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','0','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7984','110901','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7984','111001','0.833333333333333','0.8','-99999','4661','-99999','-99999','-99999','-99999','6','5','0','5','4','0','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7984','111003','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','2','0','2','2','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7984','140801','0.6','0.4','0.6','-99999','-99999','-99999','-99999','-99999','5','5','5','3','2','3','3','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7984','500409','0.5','0.75','-99999','-99999','7432.5','-99999','-99999','-99999','8','8','1','4','6','0','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7984','510713','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','0','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7984','510716','1','-99999','-99999','9010','-99999','-99999','-99999','-99999','5','2','0','5','2','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7984','510801','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7984','510805','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7984','520201','0.5','0.375','-99999','-99999','-99999','-99999','-99999','-99999','8','8','1','4','3','1','4','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7984','520301','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','0','1','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7984','520304','0.709677419354839','0.692307692307692','0.647058823529412','9889.5','9724.5','9942','0.944444444444444','0.666666666666667','31','26','17','22','18','11','18','12');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7984','520401','0.680851063829787','0.642857142857143','0.75','7850.5','10400','12002','0.846153846153846','0.933333333333333','47','42','24','32','27','18','26','15');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7984','521001','0.8','0.8','-99999','-99999','-99999','-99999','-99999','-99999','5','5','0','4','4','0','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7987','512602','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','1','0','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7987','513902','0.75','0.85','0.8','6089','5224','6292.5','0.882352941176471','0.823529411764706','20','20','20','15','17','16','17','17');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7988','510601','0.892494929006085','0.879177377892031','0.878306878306878','7925.5','8096','8948.5','0.917847025495751','0.910714285714286','493','389','189','440','342','166','353','168');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7990','220303','0.125','0.315789473684211','0.3','-99999','5031','-99999','-99999','-99999','24','19','10','3','6','3','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7990','440000','0','0','0.8125','-99999','-99999','4767','-99999','-99999','16','16','16','0','0','13','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7990','460201','0.255813953488372','0.25','0.731707317073171','5775.5','6947','7205','-99999','-99999','86','72','41','22','18','30','4','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7990','460302','0.456140350877193','0.457142857142857','0.775','8418.5','8624.5','9644','0.838709677419355','0.8','171','140','80','78','64','62','31','10');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7990','460401','0.352517985611511','0.35042735042735','0.754385964912281','6889','8572','8342','0.6875','-99999','139','117','57','49','41','43','16','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7990','460503','0.4','0.451612903225806','0.833333333333333','6907.5','5770','6213','-99999','-99999','40','31','12','16','14','10','3','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7990','470201','0.43298969072165','0.525974025974026','0.8','9050.5','9071','9617.5','0.923076923076923','0.5','194','154','70','84','81','56','26','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7990','510710','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','0','3','2','0','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7991','320101','0.513888888888889','0.522613065326633','0.58252427184466','3378','3091','2917','0.711538461538462','0.72','216','199','103','111','104','60','104','50');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7991','320105','0.477272727272727','0.48','0.6','2400','1030','2377','0.545454545454545','0.545454545454545','44','25','25','21','12','15','11','11');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7991','490205','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7991','513501','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('7996','490205','0.749167591564928','0.731707317073171','0.740740740740741','11818','12787','13437','0.855212355212355','0.823293172690763','901','697','351','675','510','260','518','249');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8010','120401','0.662222222222222','0.663101604278075','0.717391304347826','3160','3784.5','4908.5','0.786885245901639','0.764705882352941','225','187','92','149','124','66','122','68');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8010','120413','0.6','-99999','-99999','-99999','-99999','-99999','-99999','-99999','5','4','2','3','2','2','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8011','120401','0.641414141414141','0.625','0.725','3098','3609.5','3978.5','0.757894736842105','0.790697674418605','198','160','80','127','100','58','95','43');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8011','120413','0.714285714285714','0.8','-99999','2170','-99999','-99999','0.8','-99999','7','5','4','5','4','4','5','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8013','470104','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8019','510714','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','2','2','1','2','2','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8019','510801','0.785714285714286','0.823529411764706','-99999','6732','7875','-99999','0.928571428571429','-99999','42','17','2','33','14','2','14','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8019','510904','0.4','0.75','0.833333333333333','-99999','2331','4052','0.8','-99999','10','8','6','4','6','5','5','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8019','511020','0.689655172413793','0.566666666666667','0.4','5074.5','5128','-99999','0.736842105263158','0.444444444444444','58','30','10','40','17','4','19','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8019','512602','0.671052631578947','0.75','0.785714285714286','4571','3783','7138','0.888888888888889','0.9','76','52','14','51','39','11','36','10');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8019','512603','0.923076923076923','0.828571428571429','0.75','7862.5','8096','9819.5','0.870967741935484','0.8','65','35','16','60','29','12','31','15');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8019','513902','0.70253164556962','0.766129032258065','0.757575757575758','5874','5384','6273.5','0.909090909090909','0.916666666666667','158','124','66','111','95','50','88','48');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8021','490205','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8021','513501','0.709677419354839','0.714285714285714','0.647058823529412','4883','4079.5','5968','0.789473684210526','0.769230769230769','31','28','17','22','20','11','19','13');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8028','521501','0.508771929824561','0.591397849462366','0.60377358490566','9258.5','8499','6049','0.918367346938776','0.851851851851852','114','93','53','58','55','32','49','27');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8028','521701','0.769230769230769','0.673913043478261','0.681818181818182','8084','9628','10749','0.78125','0.785714285714286','52','46','22','40','31','15','32','14');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8032','010608','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8038','220302','0.833333333333333','0.666666666666667','0.666666666666667','7281','-99999','-99999','0.6','0.8','6','6','6','5','4','4','5','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8042','151299','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8044','111002','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8044','510720','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','0','0','2','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8045','513902','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8051','510714','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','4','3','3','4','3','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8051','510801','1','0.666666666666667','-99999','6121','-99999','-99999','0.666666666666667','-99999','6','6','4','6','4','4','6','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8051','513501','0.777777777777778','0.777777777777778','0.666666666666667','5264','7312','6754','1','0.833333333333333','9','9','9','7','7','6','6','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8052','520407','0.285714285714286','0.571428571428571','0.714285714285714','-99999','-99999','3322','-99999','-99999','7','7','7','2','4','5','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8056','110201','0.2','0.4','-99999','-99999','-99999','-99999','-99999','-99999','5','5','4','1','2','1','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8056','110501','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8056','110802','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8056','320105','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8056','520201','0.3','0.2','-99999','-99999','-99999','-99999','-99999','-99999','10','10','3','3','2','0','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8056','520401','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8060','490205','0.894736842105263','-99999','-99999','17004','-99999','-99999','-99999','-99999','19','2','0','17','2','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8063','150501','0.111111111111111','0.133333333333333','0.333333333333333','8570','-99999','-99999','-99999','-99999','45','30','9','5','4','3','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8063','460302','0.101449275362319','0.130434782608696','0.0769230769230769','8246','8492','-99999','1','-99999','69','69','26','7','9','2','6','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8063','470603','0.126315789473684','0.218390804597701','0.135135135135135','5286','5220','7211','0.833333333333333','-99999','95','87','37','12','19','5','12','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8063','470604','0.0324675324675325','0.0694444444444444','0.121951219512195','3189','5061.5','8677.5','-99999','-99999','154','144','82','5','10','10','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8063','470613','0.0903614457831325','0.144654088050314','0.126436781609195','9344','9329','10162','0.866666666666667','-99999','166','159','87','15','23','11','15','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8063','480508','0.113207547169811','0.138157894736842','0.2109375','4696','6022','6173','0.666666666666667','-99999','371','304','128','42','42','27','12','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8068','120401','0.644067796610169','0.654545454545455','0.583333333333333','4600','4192','3699','0.857142857142857','0.708333333333333','59','55','36','38','36','21','35','24');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8068','120402','0.363636363636364','0.2','0.375','-99999','-99999','-99999','-99999','-99999','11','10','8','4','2','3','4','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8068','120409','0.777777777777778','0.777777777777778','0.785714285714286','3929.5','5552','5219','0.846153846153846','0.818181818181818','18','18','14','14','14','11','13','11');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8068','120410','0.181818181818182','0.333333333333333','-99999','-99999','-99999','-99999','-99999','-99999','11','9','4','2','3','2','2','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8068','120413','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','1','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8073','510714','0.857142857142857','1','-99999','8459.5','6212.5','-99999','1','-99999','7','6','0','6','6','0','5','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8073','510720','0.727272727272727','0.636363636363636','0.636363636363636','3993','8528','3237','0.777777777777778','0.777777777777778','22','22','22','16','14','14','18','18');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8073','510801','0.893617021276596','0.840909090909091','0.884615384615385','5452','5268','6686','0.871794871794872','0.909090909090909','47','44','26','42','37','23','39','22');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8073','510909','0.928571428571429','1','1','9587','9262','10606.5','1','1','14','10','10','13','10','10','9','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8073','510910','0.8125','0.9','0.888888888888889','9481','9876','13418','1','1','16','10','9','13','9','8','7','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8073','511020','0.936170212765957','0.861111111111111','0.846153846153846','8071','9511','9994','0.909090909090909','0.88','47','36','26','44','31','22','33','25');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8075','510801','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8075','512602','0.617021276595745','0.621951219512195','0.692307692307692','3706','4358','3949','0.851063829787234','0.761904761904762','94','82','39','58','51','27','47','21');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8075','513902','0.795454545454545','0.821428571428571','0.848484848484849','5156','5892.5','6390','0.875','0.833333333333333','132','112','66','105','92','56','88','54');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8076','513901','0.793478260869565','0.805970149253731','0.970588235294118','8863','11559.5','11657','0.869565217391304','1','92','67','34','73','54','33','46','21');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8078','512602','0.677685950413223','0.715789473684211','0.558823529411765','4944','5435','8561','0.82089552238806','0.608695652173913','121','95','34','82','68','19','67','23');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8078','513902','0.795454545454545','0.864864864864865','0.785714285714286','5513','5812','7424','0.931034482758621','0.818181818181818','44','37','14','35','32','11','29','11');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8080','010504','0.2','-99999','-99999','-99999','-99999','-99999','-99999','-99999','5','4','2','1','2','2','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8082','110501','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','0','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8119','513902','0.714285714285714','-99999','-99999','6772','-99999','-99999','-99999','-99999','7','1','1','5','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8121','510713','0.4','0.4','0.4','-99999','-99999','-99999','-99999','-99999','5','5','5','2','2','2','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8121','510801','0.85','0.830188679245283','0.793103448275862','8148','8655','8196','0.909090909090909','0.826086956521739','60','53','29','51','44','23','44','23');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8121','510909','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','3','3','3','3','3','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8130','510705','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','0','2','2','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8130','510711','0.823529411764706','0.823529411764706','0.823529411764706','6176','7265.5','7717','0.857142857142857','0.857142857142857','17','17','17','14','14','14','14','14');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8130','510713','0.75','0.681818181818182','0.777777777777778','4163','6995','7689','0.866666666666667','0.75','32','22','9','24','15','7','15','8');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8130','510801','0.852579852579853','0.855384615384615','0.839080459770115','6172','6915','6853.5','0.923954372623574','0.857142857142857','407','325','174','347','278','146','263','133');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8130','520302','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8130','520401','0.7','0.631578947368421','0.461538461538462','6090','7897.5','7673','0.833333333333333','0.714285714285714','20','19','13','14','12','6','12','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8137','110101','0.304347826086957','0.431818181818182','0.652173913043478','5291','8899','9835','0.8','-99999','46','44','23','14','19','15','10','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8137','110601','0.333333333333333','0.583333333333333','0.666666666666667','-99999','6320','-99999','-99999','-99999','12','12','6','4','7','4','4','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8137','510706','0.125','0.4','1','-99999','7073.5','8294','-99999','-99999','16','15','10','2','6','10','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8137','510714','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','1','1','2','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8137','520101','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8145','110901','0.625','0.714285714285714','0.857142857142857','8877','6814.5','8094','0.888888888888889','-99999','16','14','7','10','10','6','9','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8145','120401','0.666666666666667','0.5','0.833333333333333','-99999','-99999','5554','-99999','-99999','6','6','6','4','3','5','3','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8145','190709','0.526315789473684','0.411764705882353','0.5','5442.5','4380','-99999','0.714285714285714','-99999','19','17','6','10','7','3','7','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8145','510601','0.684210526315789','0.733333333333333','0.727272727272727','4359','5207','7786','1','1','19','15','11','13','11','8','9','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8145','510805','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','1','2','1','1','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8145','511020','0.8','0.8','-99999','-99999','-99999','-99999','-99999','-99999','5','5','3','4','4','2','4','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8149','510603','0.785714285714286','1','-99999','5139','7156','-99999','1','-99999','28','12','0','22','12','0','11','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8152','513901','0.714285714285714','0.714285714285714','1','7108','13602','11531','1','1','7','7','7','5','5','7','5','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8153','110801','0.166666666666667','0.166666666666667','-99999','-99999','-99999','-99999','-99999','-99999','6','6','1','1','1','1','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8153','220301','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','2','3','3','1','3','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8153','510706','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','0','4','3','0','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8153','510716','0.444444444444444','0.375','-99999','-99999','-99999','-99999','-99999','-99999','9','8','2','4','3','0','3','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8153','510720','0.428571428571429','0.714285714285714','0.571428571428571','2845','2487','5185.5','1','0.666666666666667','14','14','14','6','10','8','6','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8153','520201','0.571428571428571','0.666666666666667','-99999','14069.5','17331','-99999','0.666666666666667','-99999','14','12','4','8','8','2','6','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8153','520204','0.49','0.446153846153846','-99999','4075','5315','-99999','0.807692307692308','-99999','100','65','1','49','29','0','26','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8153','520302','0.4375','0.8','-99999','6801','6584','-99999','1','-99999','16','15','2','7','12','2','6','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8153','520401','0.383333333333333','0.388888888888889','0.612903225806452','3965','4888','5394','0.875','0.909090909090909','60','54','31','23','21','19','16','11');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8153','520407','0.543478260869565','0.625','0.523809523809524','6544','7220','6221','0.941176470588235','0.857142857142857','46','40','21','25','25','11','17','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8157','513501','0.733333333333333','0.6','0.909090909090909','6538','6766','5186.5','0.666666666666667','0.875','15','15','11','11','9','10','9','8');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8157','513902','0.814814814814815','-99999','-99999','5187.5','-99999','-99999','-99999','-99999','27','0','0','22','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8158','490205','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8162','460403','0.888888888888889','0.875','-99999','11437.5','13331','-99999','1','-99999','9','8','4','8','7','4','6','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8172','490202','0.552631578947368','0.614583333333333','0.607142857142857','6789','7503','8453','0.792452830188679','0.818181818181818','114','96','56','63','59','34','53','22');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8172','490205','0.857142857142857','0.785714285714286','0.714285714285714','6868.5','7743','7967.5','0.769230769230769','0.692307692307692','14','14','14','12','11','10','13','13');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8172','510801','0.768115942028985','0.803571428571429','0.851851851851852','5564','6378','7139','0.973684210526316','0.894736842105263','69','56','27','53','45','23','38','19');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8172','511009','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','2','2','2','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8172','513902','0.813953488372093','0.836363636363636','0.833333333333333','5963','5924','6806.5','0.918604651162791','0.877551020408163','129','110','60','105','92','50','86','49');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8177','512602','0.765625','0.765625','0.738461538461539','4848','5161','4626.5','0.914893617021277','0.829787234042553','64','64','65','49','49','48','47','47');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8177','513902','0.850806451612903','0.83743842364532','0.849557522123894','5901','6033','6229','0.902173913043478','0.884615384615385','248','203','113','211','170','96','184','104');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8189','510801','0.75','0.769230769230769','0.5','4259.5','5024','2710','0.882352941176471','0.5','32','26','14','24','20','7','17','10');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8189','510805','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8200','120401','0.530612244897959','0.611764705882353','0.615384615384615','4471.5','4701','6250.5','0.9','0.8','98','85','39','52','52','24','40','20');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8200','120402','0.305555555555556','0.333333333333333','0.294117647058824','5313','5516.5','3438','0.625','-99999','36','30','17','11','10','5','8','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8200','120409','0.5','0.608695652173913','0.636363636363636','2577','3745.5','2041','0.888888888888889','0.8','26','23','11','13','14','7','9','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8200','120410','0.647058823529412','0.379310344827586','0.5','4906.5','8159','-99999','0.6875','0.8','34','29','8','22','11','4','16','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8200','120413','1','0.8','-99999','3847','-99999','-99999','0.8','-99999','5','5','4','5','4','1','5','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8253','510801','0.644444444444444','0.693181818181818','0.676470588235294','4938','5676','6847.5','0.885714285714286','0.804878048780488','225','176','68','145','122','46','105','41');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8253','510805','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8253','510902','0.285714285714286','0.666666666666667','-99999','-99999','-99999','-99999','-99999','-99999','7','6','4','2','4','2','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8253','511009','0.704545454545455','0.594594594594595','0.588235294117647','4342','5219','4620','0.909090909090909','0.875','44','37','17','31','22','10','22','8');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8253','513902','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','0','2','2','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8254','513501','0.696428571428571','0.6875','0.761904761904762','5806','7480','7998.5','0.870967741935484','1','56','48','21','39','33','16','31','14');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8258','010504','0.428571428571429','0.611111111111111','0.5','4219','3929','5532','0.888888888888889','-99999','21','18','10','9','11','5','9','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8264','510801','0.75','0.416666666666667','0.583333333333333','3572','6503','6489','0.5','0.5','12','12','12','9','5','7','8','8');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8264','520407','1','0.8','0.8','6701.5','6314','8077','0.888888888888889','0.777777777777778','10','10','10','10','8','8','9','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8268','510000','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8268','511005','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8269','111003','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8269','190000','0.64','0.708333333333333','0.571428571428571','3563','4143','6188','0.846153846153846','0.583333333333333','25','24','21','16','17','12','13','12');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8269','190505','0.583333333333333','0.6','-99999','3193','4783','-99999','1','-99999','12','10','0','7','6','0','6','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8269','320105','0.573684210526316','0.540816326530612','0.716981132075472','4066','4681','4901.5','0.775862068965517','0.852941176470588','190','98','53','109','53','38','58','34');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8269','320110','0.888888888888889','0.571428571428571','-99999','2208.5','2000','-99999','0.6','-99999','18','14','0','16','8','0','10','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8269','430109','0.857142857142857','1','-99999','6143.5','6251','-99999','-99999','-99999','7','5','0','6','5','0','4','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8269','512602','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8269','520411','0.428571428571429','0.428571428571429','0.2','-99999','-99999','-99999','-99999','-99999','7','7','5','3','3','1','3','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8273','510601','1','-99999','-99999','5342','-99999','-99999','-99999','-99999','12','0','0','12','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8273','510714','0.833333333333333','-99999','-99999','6059','-99999','-99999','-99999','-99999','6','0','0','5','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8273','510801','0.8','-99999','-99999','-99999','-99999','-99999','-99999','-99999','5','0','0','4','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8273','510909','1','-99999','-99999','11325.5','-99999','-99999','-99999','-99999','8','0','0','8','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8273','513902','0.953488372093023','-99999','-99999','5496','-99999','-99999','-99999','-99999','43','1','1','41','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8280','460403','0.393939393939394','0.46875','0.636363636363636','15643','15150','16542','0.909090909090909','1','33','32','11','13','15','7','11','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8282','110901','0.791044776119403','0.780487804878049','0.666666666666667','8587','9701.5','11715.5','0.903225806451613','0.666666666666667','67','41','18','53','32','12','31','12');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8283','490205','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8285','520201','0.548387096774194','0.548387096774194','0.733333333333333','21754','19013','26557','0.857142857142857','1','31','31','15','17','17','11','14','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8285','520210','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','0','1','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8285','520211','0.590909090909091','0.689655172413793','0.7','15616.5','16220','15450','0.958333333333333','-99999','88','58','10','52','40','7','24','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8295','470604','0.521776259607173','0.62993762993763','0.846758349705305','7345','8499','9780','0.929530201342282','0.94','1171','962','509','611','606','431','298','100');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8295','470605','0.523166023166023','0.609876543209876','0.822222222222222','10231','10914','11847','0.91970802919708','0.971428571428571','518','405','225','271','247','185','137','35');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8306','120401','0.706349206349206','0.738738738738739','0.761194029850746','3941','4628','4651','0.881578947368421','0.893617021276596','126','111','67','89','82','51','76','47');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8306','120402','0.461538461538462','0.3','-99999','3170.5','-99999','-99999','-99999','-99999','13','10','0','6','3','0','4','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8306','120409','0.798165137614679','0.817204301075269','0.727272727272727','5031','5324.5','5654','0.891891891891892','0.774193548387097','109','93','44','87','76','32','74','31');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8306','120413','1','1','-99999','5312','5040.5','-99999','1','-99999','7','6','2','7','6','1','6','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8306','490205','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8306','511009','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8307','090701','0.654867256637168','0.632075471698113','0.7','5434','5265','5799','0.932203389830508','0.739130434782609','113','106','50','74','67','35','59','23');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8308','090701','0.888888888888889','-99999','-99999','6756.5','-99999','-99999','-99999','-99999','9','0','0','8','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8327','120409','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','0','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8327','490205','0.808988764044944','0.794520547945205','0.677083333333333','9421.5','9822','10313','0.863905325443787','0.712121212121212','267','219','96','216','174','65','169','66');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8333','512601','0.888888888888889','-99999','-99999','3785.5','-99999','-99999','-99999','-99999','9','1','0','8','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8333','512602','0.733333333333333','0.666666666666667','-99999','2744','4295.5','-99999','0.833333333333333','-99999','15','15','0','11','10','0','12','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8335','110201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','1','2','2','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8335','110801','0.5','0.375','-99999','-99999','-99999','-99999','-99999','-99999','8','8','3','4','3','2','3','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8335','111006','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','0','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8335','150505','0.5','0.375','-99999','-99999','-99999','-99999','-99999','-99999','8','8','3','4','3','1','3','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8335','510713','0.571428571428571','0.857142857142857','-99999','-99999','4631','-99999','-99999','-99999','7','7','1','4','6','1','4','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8335','520201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','1','1','1','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8335','520401','0.472727272727273','0.392857142857143','-99999','2928.5','2906','-99999','0.666666666666667','-99999','55','28','0','26','11','0','12','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8335','520901','0.272727272727273','0.454545454545455','0.6','-99999','3079','5240','-99999','-99999','11','11','10','3','5','6','4','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8338','320105','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','1','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8338','520408','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8361','513501','0.5','0.461538461538462','0.5','3444.5','2861.5','-99999','0.8','-99999','16','13','6','8','6','3','5','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8361','513602','0.833333333333333','0.75','0.714285714285714','10702','10858','19502','0.888888888888889','-99999','12','12','7','10','9','5','9','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8362','510713','0.666666666666667','0.785714285714286','-99999','6653','8338','-99999','0.777777777777778','-99999','15','14','2','10','11','2','9','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8362','510716','0.533333333333333','0.466666666666667','0.666666666666667','6744','8913','6301.5','0.75','0.8','15','15','12','8','7','8','8','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8362','510801','0.810810810810811','0.803418803418803','0.826086956521739','6182.5','6709','7117.5','0.934210526315789','0.896551724137931','148','117','46','120','94','38','76','29');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8362','513902','0.75','0.7','0.789473684210526','6201','7217','7794','0.764705882352941','0.75','20','20','19','15','14','15','17','16');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8362','520302','0.825','0.777777777777778','0.916666666666667','5914','8600','9015','0.85','0.888888888888889','40','27','12','33','21','11','20','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8362','520401','0.9375','0.75','-99999','7054','8033','-99999','0.833333333333333','-99999','16','8','3','15','6','3','6','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8363','512602','0.733590733590734','0.754098360655738','0.679245283018868','6244.5','7118','9733.5','0.892857142857143','0.857142857142857','259','183','53','190','138','36','112','28');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8363','513902','0.789473684210526','0.736842105263158','0.684210526315789','5234','6491.5','6789','0.818181818181818','0.909090909090909','19','19','19','15','14','13','11','11');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8367','320101','0.538461538461538','0.461538461538462','0.461538461538462','2671','3356','4301.5','0.625','0.625','13','13','13','7','6','6','8','8');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8373','521005','0.692307692307692','0.538461538461538','-99999','19975','9612','-99999','0.777777777777778','-99999','13','13','0','9','7','0','9','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8376','460403','0.555555555555556','-99999','-99999','15841','-99999','-99999','-99999','-99999','9','1','0','5','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8390','460403','0.725','0.75','0.827586206896552','10518','11122','10533.5','0.86046511627907','0.894736842105263','80','60','29','58','45','24','43','19');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8390','500406','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','0','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8393','512602','0.880952380952381','0.904761904761905','0.92','6284','7475.5','5362','0.96','0.875','42','42','25','37','38','23','25','8');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8393','512603','0.810810810810811','0.810810810810811','0.789473684210526','5948','5998.5','7022.5','0.935483870967742','0.838709677419355','37','37','38','30','30','30','31','31');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8393','513902','0.545454545454545','0.5','0.8','4874.5','4703','4599','-99999','-99999','22','10','10','12','5','8','3','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8396','510902','0.875','0.8','1','6295','-99999','7044','-99999','-99999','8','5','5','7','4','5','4','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8396','511009','0.873015873015873','0.9375','0.842105263157895','5071','5656','4073','0.972972972972973','0.866666666666667','63','48','19','55','45','16','37','15');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8396','512602','0.741379310344828','0.636363636363636','0.75','3230','4152.5','5011','0.777777777777778','0.84','58','44','36','43','28','27','27','25');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8396','512603','0.951219512195122','0.909090909090909','0.95','7266','7748','6464','0.9375','0.95','41','33','20','39','30','19','32','20');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8396','513902','0.843511450381679','0.857142857142857','0.8','5367','5368','5674.5','0.931428571428571','0.845360824742268','262','210','120','221','180','96','175','97');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8397','120401','0.644736842105263','0.7','0.652777777777778','3537.5','4132','5287','0.804347826086957','0.808510638297872','152','130','72','98','91','47','92','47');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8397','120413','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8398','120401','0.60377358490566','0.69811320754717','0.666666666666667','4103','4790','5143.5','0.96969696969697','0.857142857142857','53','53','24','32','37','16','33','14');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8398','120402','0.214285714285714','0.428571428571429','0.222222222222222','-99999','2752','-99999','-99999','-99999','14','14','9','3','6','2','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8398','120406','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8398','120409','0.857142857142857','0.80952380952381','1','3807','4924','4563','0.941176470588235','1','21','21','12','18','17','12','17','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8398','120410','0.538461538461538','0.461538461538462','0.375','5034','6340.5','-99999','0.75','0.6','13','13','8','7','6','3','8','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8400','510601','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','3','1','0','2','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8400','510603','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','3','2','2','2','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8401','510601','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8401','510602','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','1','3','3','0','3','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8401','510603','0.5','0.611111111111111','0.636363636363636','3954.5','2130','4739','0.777777777777778','0.666666666666667','20','18','11','10','11','7','9','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8401','510604','0.785714285714286','0.7','-99999','3639','1310','-99999','0.714285714285714','-99999','14','10','0','11','7','0','7','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8408','490205','0.619047619047619','0.705882352941177','-99999','13435','8669','-99999','0.9','-99999','21','17','4','13','12','4','10','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8416','131209','0.857142857142857','0.892857142857143','-99999','2767','6390','-99999','0.952380952380952','-99999','28','28','0','24','25','0','21','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8416','131501','0.666666666666667','0.5','0.666666666666667','-99999','-99999','-99999','-99999','-99999','6','6','6','4','3','4','3','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8420','470110','0.5','0.666666666666667','-99999','4259','7325','-99999','0.75','-99999','12','12','0','6','8','0','8','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8420','470201','0.592592592592593','0.740740740740741','-99999','6498.5','6619.5','-99999','1','-99999','27','27','0','16','20','0','16','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8420','510601','0.652173913043478','0.695652173913043','-99999','5459','6236.5','-99999','0.866666666666667','-99999','23','23','2','15','16','0','15','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8420','510720','0.714285714285714','0.571428571428571','-99999','3058','6816.5','-99999','0.8','-99999','14','14','0','10','8','0','10','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8420','510801','0.837209302325581','0.906976744186046','-99999','6253','7601','-99999','0.942857142857143','-99999','43','43','2','36','39','1','35','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8421','510713','0.944444444444444','0.666666666666667','-99999','5525','5017.5','-99999','0.666666666666667','-99999','18','9','3','17','6','1','9','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8421','510801','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','0','0','3','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8421','510902','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','0','0','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8421','510917','0.428571428571429','0.428571428571429','0.428571428571429','-99999','-99999','-99999','-99999','-99999','7','7','7','3','3','3','3','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8421','511009','0.769230769230769','0.7','-99999','3840','6237','-99999','0.75','-99999','26','10','4','20','7','4','8','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8421','512602','0.811428571428571','0.80952380952381','0.72972972972973','5250.5','5525','5680','0.9','0.816326530612245','175','147','74','142','119','54','110','49');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8421','513902','0.855072463768116','0.796296296296296','0.925925925925926','6078','5639','5397','0.904761904761905','0.956521739130435','69','54','27','59','43','25','42','23');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8426','110103','1','0.4','-99999','3472','-99999','-99999','-99999','-99999','5','5','3','5','2','2','4','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8426','110301','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8426','110801','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','1','3','3','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8426','110802','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8426','111001','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','1','1','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8429','470404','0.52','0.409090909090909','0.588235294117647','4530','6340','6321.5','0.571428571428571','1','25','22','17','13','9','10','7','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8437','490205','0.754266211604096','0.729257641921397','0.672727272727273','10107','10844','12476.5','0.851190476190476','0.779220779220779','293','229','110','221','167','74','168','77');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8444','510801','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8444','510805','0.705882352941177','0.763157894736842','0.833333333333333','5713','6189','6649','0.916666666666667','0.882352941176471','51','38','24','36','29','20','24','17');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8444','510902','0.851063829787234','0.839506172839506','0.886363636363636','5439','6911','6563','0.888888888888889','0.916666666666667','94','81','44','80','68','39','63','36');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8444','511009','0.767543859649123','0.801136363636364','0.82051282051282','5060','5344','6730.5','0.914728682170543','0.886792452830189','228','176','78','175','141','64','129','53');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8444','511011','0.761904761904762','0.702702702702703','0.692307692307692','6903.5','7461.5','9663.5','0.851851851851852','0.789473684210526','42','37','26','32','26','18','27','19');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8444','512602','0.72289156626506','0.712121212121212','0.608695652173913','3686','4439','4450','0.878048780487805','0.764705882352941','83','66','23','60','47','14','41','17');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8444','513501','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','1','1','2','1','0','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8444','513902','0.795081967213115','0.827586206896552','0.66','5522','5930','7058','0.891304347826087','0.75','122','116','50','97','96','33','92','40');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8448','111001','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8465','512602','0.705882352941177','0.660714285714286','0.863636363636364','5722','6309','6509','0.892857142857143','0.923076923076923','68','56','22','48','37','19','28','13');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8465','513902','0.85981308411215','0.837209302325581','0.714285714285714','6619.5','7508.5','7684','0.929577464788732','0.8','107','86','42','92','72','30','71','35');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8466','490205','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','2','2','2','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8467','010504','0.516129032258065','0.541666666666667','0.5','4894.5','6504','6987','0.769230769230769','0.714285714285714','31','24','12','16','13','6','13','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8478','110801','0.3','0.333333333333333','-99999','-99999','-99999','-99999','-99999','-99999','10','6','2','3','2','1','3','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8478','470104','0.5','0.769230769230769','0.636363636363636','557','5650.5','5400','0.714285714285714','0.666666666666667','14','13','11','7','10','7','7','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8478','510714','0.720930232558139','0.694444444444444','0.857142857142857','7042','9199','10995','0.791666666666667','0.923076923076923','43','36','14','31','25','12','24','13');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8478','520302','0.694444444444444','0.714285714285714','0.714285714285714','5904.5','7575','8319','0.885714285714286','0.916666666666667','72','56','21','50','40','15','35','12');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8478','520401','0.739130434782609','0.714285714285714','-99999','5599','4945','-99999','0.666666666666667','-99999','23','14','0','17','10','0','9','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8483','510714','1','1','0.857142857142857','11304','8502','15499.5','1','0.857142857142857','7','7','7','7','7','6','7','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8483','511599','0.0808080808080808','0.0169491525423729','-99999','15519','-99999','-99999','-99999','-99999','99','59','0','8','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8483','520207','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8483','520213','0.333333333333333','0.333333333333333','-99999','15327','15824.5','-99999','1','-99999','24','24','0','8','8','0','8','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8483','521001','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8491','512601','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','0','3','4','0','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8491','513902','0.827586206896552','0.827586206896552','0.875','6140','6013','5594','0.956521739130435','1','29','29','8','24','24','7','23','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8494','520212','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8497','120401','0.625','0.846153846153846','-99999','4093','5103','-99999','1','-99999','24','13','0','15','11','0','11','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8497','120402','0.714285714285714','-99999','-99999','9293','-99999','-99999','-99999','-99999','7','4','1','5','3','1','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8497','120409','0.823529411764706','0.916666666666667','-99999','3855.5','3345','-99999','0.888888888888889','-99999','17','12','4','14','11','2','9','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8497','120413','0.5','0.6','-99999','-99999','-99999','-99999','-99999','-99999','6','5','3','3','3','2','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8499','500410','0.52','0.52','-99999','3256','3728','-99999','0.9','-99999','25','25','0','13','13','0','10','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8499','500701','0.285714285714286','0.41304347826087','-99999','2364','2758','-99999','0.761904761904762','-99999','49','46','0','14','19','0','21','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8499','500705','0.318181818181818','0.35','-99999','2548','1933','-99999','0.75','-99999','22','20','0','7','7','0','8','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8508','513501','0.886792452830189','0.867924528301887','0.892857142857143','5018','5782','6319','0.954545454545455','0.958333333333333','53','53','28','47','46','25','44','24');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8516','120500','0.416666666666667','-99999','-99999','5612','-99999','-99999','-99999','-99999','12','0','0','5','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8516','120503','0.384615384615385','0.307692307692308','-99999','4359','-99999','-99999','0.428571428571429','-99999','13','13','0','5','4','0','7','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8516','470604','0.666666666666667','-99999','-99999','-99999','-99999','-99999','-99999','-99999','6','0','0','4','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8527','510801','0.833333333333333','0.904761904761905','0.857142857142857','5518','5465','6949','0.914285714285714','0.914285714285714','42','42','42','35','38','36','35','35');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8527','510909','0.818181818181818','0.818181818181818','0.818181818181818','8676','7764','9373','0.888888888888889','0.888888888888889','11','11','11','9','9','9','9','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8527','520407','1','1','1','3847','6677.5','4382','1','1','6','6','6','6','6','6','5','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8529','120503','0.5','0.4','0.6','3849','-99999','4860.5','0.428571428571429','0.714285714285714','10','10','10','5','4','6','7','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8529','510801','0.741935483870968','0.806451612903226','0.838709677419355','6156','6226','7691','0.91304347826087','0.869565217391304','31','31','31','23','25','26','23','23');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8529','511011','0.833333333333333','0.666666666666667','0.666666666666667','5976','-99999','-99999','0.6','0.8','6','6','6','5','4','4','5','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8530','120505','0.0344827586206897','0.0344827586206897','0.862068965517241','-99999','-99999','5940','-99999','-99999','29','29','29','1','1','25','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8530','510801','0.153846153846154','0.0769230769230769','0.846153846153846','-99999','-99999','3968','-99999','-99999','13','13','13','2','1','11','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8530','511011','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','1','1','2','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8530','520407','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','0','0','2','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8530','520904','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','0','0','2','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8531','120501','0.714285714285714','0.857142857142857','0.857142857142857','4057','3755','4015','1','0.8','7','7','7','5','6','6','5','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8531','120503','0.62962962962963','0.555555555555556','0.62962962962963','3675','6040','5447','0.7','0.75','27','27','27','17','15','17','20','20');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8531','510801','0.916666666666667','0.75','0.875','5236.5','6387.5','6656','0.9','0.95','24','24','24','22','18','21','20','20');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8531','520909','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','4','4','3','3','4','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8532','120401','0','0','0.583333333333333','-99999','-99999','6883','-99999','-99999','12','12','12','0','0','7','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8532','120501','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','3','0','0','3','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8532','120503','0.0769230769230769','0.0769230769230769','0.923076923076923','-99999','-99999','6162.5','-99999','-99999','13','13','13','1','1','12','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8532','510801','0','0.0142857142857143','0.771428571428571','-99999','-99999','6617','-99999','-99999','70','70','70','0','1','54','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8532','510909','0.0909090909090909','0.0909090909090909','0.545454545454545','-99999','-99999','9171.5','-99999','-99999','11','11','11','1','1','6','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8532','511011','0','0.0666666666666667','0.8','-99999','-99999','6057','-99999','-99999','15','15','15','0','1','12','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8532','520909','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','0','0','2','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8533','440701','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','0','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8533','510716','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8533','510720','0.647058823529412','0.588235294117647','0.764705882352941','6754','7962','6410','1','1','34','34','34','22','20','26','16','16');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8533','510801','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','1','1','2','1','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8533','510902','0.818181818181818','0.714285714285714','-99999','3800','5493','-99999','1','-99999','11','7','2','9','5','2','5','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8533','511009','0.5625','0.5','0.875','3210.5','3383','6987','0.647058823529412','0.833333333333333','32','30','8','18','15','7','17','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8533','511020','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','2','0','1','2','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8533','513902','0.696428571428571','0.744186046511628','0.794117647058823','6268.5','7112.5','7855','0.824561403508772','0.869565217391304','112','86','34','78','64','27','57','23');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8535','110901','0.375','-99999','-99999','4585.5','-99999','-99999','-99999','-99999','16','0','0','6','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8535','320109','0.578947368421053','0.473684210526316','-99999','2549','4471','-99999','0.7','-99999','19','19','0','11','9','0','10','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8535','530201','0.5','0.785714285714286','-99999','5649','5003','-99999','1','-99999','18','14','0','9','11','0','9','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8540','320110','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8540','510801','0.816091954022989','0.828767123287671','0.847826086956522','5682.5','5601','6548.5','0.936363636363636','0.911764705882353','174','146','92','142','121','78','110','68');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8540','510902','0.794520547945205','0.9','0.878048780487805','4467','5753','6334.5','0.98','0.962962962962963','73','70','41','58','63','36','50','27');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8540','511009','0.872340425531915','0.783783783783784','0.916666666666667','5261','5345','7044','0.862068965517241','0.9','47','37','12','41','29','11','29','10');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8540','513501','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','2','2','1','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8544','110301','0.298850574712644','0.315068493150685','0.185185185185185','4879.5','7141','7717','0.846153846153846','-99999','87','73','27','26','23','5','13','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8544','111003','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8544','111006','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','2','1','1','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8544','470104','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','4','2','1','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8544','510000','0.413461538461538','0.44578313253012','0.458333333333333','5603','4929','7174','0.875','0.666666666666667','104','83','24','43','37','11','24','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8544','510601','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8544','510706','0.421052631578947','0.470588235294118','-99999','3185','4659','-99999','-99999','-99999','19','17','3','8','8','1','4','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8544','510707','0.240343347639485','0.324175824175824','0.303571428571429','5437.5','6155','6000','0.771428571428571','-99999','233','182','56','56','59','17','35','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8544','510710','0.29646017699115','0.378787878787879','0.181818181818182','4281','4860.5','-99999','0.852941176470588','-99999','226','132','22','67','50','4','34','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8544','510713','0.358974358974359','0.392857142857143','0.571428571428571','4997','7650','-99999','0.8','-99999','39','28','7','14','11','4','5','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8544','510714','0.275862068965517','0.3','0.333333333333333','5000','7544.5','-99999','-99999','-99999','29','20','9','8','6','3','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8544','510716','0.519480519480519','0.555555555555556','0.666666666666667','6007','6137.5','6368','0.833333333333333','-99999','77','54','15','40','30','10','18','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8544','510803','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8544','510805','0.315789473684211','0.483870967741935','0.44','4871.5','4910','3840','0.888888888888889','-99999','76','62','25','24','30','11','18','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8544','520407','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8544','520411','0.05','-99999','-99999','-99999','-99999','-99999','-99999','-99999','20','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8554','510713','0.0491803278688525','0.639344262295082','0.655172413793103','-99999','8825','9285.5','-99999','-99999','61','61','58','3','39','38','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8555','010505','0.222857142857143','0.284615384615385','0.385542168674699','5777','8951','9933','0.772727272727273','0.857142857142857','175','130','83','39','37','32','22','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8559','320105','0.6','0.75','0.428571428571429','3551','3294','3560','0.882352941176471','0.5','30','28','14','18','21','6','17','10');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8563','512601','0.835616438356164','0.857142857142857','0.833333333333333','5787','6042','6177','0.909090909090909','0.882352941176471','73','70','42','61','60','35','55','34');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8564','320105','0.488888888888889','0.471698113207547','0.509433962264151','3436','2480','2522','0.555555555555556','0.592592592592593','90','53','53','44','25','27','27','27');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8565','320109','0.493333333333333','0.495495495495495','0.617647058823529','6208','6167','6342','0.875','0.833333333333333','150','111','34','74','55','21','48','18');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8572','120401','0.75','0.628571428571429','0.80952380952381','3011','3494','4266','0.84','0.941176470588235','48','35','21','36','22','17','25','17');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8572','120402','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','1','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8572','120409','0.722222222222222','0.666666666666667','0.714285714285714','3772','4217','4892','0.818181818181818','1','18','15','7','13','10','5','11','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8572','120410','0.545454545454545','0.611111111111111','0.4','4465.5','5248','-99999','0.9','-99999','22','18','5','12','11','2','10','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8572','120413','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','0','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8573','520201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8573','520305','0.666666666666667','0.833333333333333','0.833333333333333','-99999','9251','10760','-99999','-99999','6','6','6','4','5','5','4','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8573','520408','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','3','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8582','320109','0','0','-99999','-99999','-99999','-99999','-99999','-99999','5','5','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8582','510706','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','1','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8582','510713','0.8','0.8','-99999','-99999','-99999','-99999','-99999','-99999','5','5','2','4','4','1','4','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8582','510716','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8582','510720','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','2','2','2','2','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8582','510801','0.477272727272727','0.529411764705882','-99999','3875','4239','-99999','0.916666666666667','-99999','44','34','2','21','18','1','12','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8582','510805','0.533333333333333','0.6','-99999','3823.5','2630','-99999','0.75','-99999','30','25','0','16','15','0','12','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8582','511009','0.461538461538462','0.592592592592593','-99999','2722','3784.5','-99999','0.909090909090909','-99999','26','27','0','12','16','0','11','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8582','513902','0.611111111111111','0.529411764705882','-99999','6291','4939','-99999','0.8','-99999','18','17','1','11','9','1','10','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8588','120401','0.833333333333333','0.666666666666667','0.8','3506','-99999','-99999','0.8','-99999','6','6','5','5','4','4','5','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8588','120402','1','1','-99999','950','4321','-99999','-99999','-99999','5','5','4','5','5','3','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8588','120409','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','2','2','2','1','2','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8588','120410','0.833333333333333','0.833333333333333','-99999','4947','3636','-99999','1','-99999','6','6','0','5','5','0','5','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8588','120413','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','2','3','3','2','3','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8593','320105','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8594','520302','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','4','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8594','520401','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','0','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8598','510000','0.3125','0.4','0.166666666666667','15401','9497.5','-99999','0.6','-99999','16','15','6','5','6','1','5','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8598','510706','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','0','1','0','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8598','510802','0.25','0.333333333333333','0.666666666666667','-99999','-99999','-99999','-99999','-99999','12','9','6','3','3','4','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8600','513902','0.822784810126582','0.777777777777778','0.714285714285714','6708','6974','6102.5','0.839285714285714','0.833333333333333','79','63','28','65','49','20','56','24');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8601','110801','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8601','110901','0.5','0.666666666666667','0.4','-99999','-99999','-99999','-99999','-99999','6','6','5','3','4','2','4','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8601','320109','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8601','510801','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8601','511020','0.714285714285714','0.583333333333333','0.75','5418.5','7378','8139','0.857142857142857','0.6','14','12','8','10','7','6','7','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8601','512602','0.75','0.833333333333333','-99999','6679','8469','-99999','1','-99999','16','6','0','12','5','0','5','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8601','513902','0.675675675675676','0.769230769230769','0.730769230769231','5864.5','5717','6922','0.804878048780488','0.733333333333333','74','65','26','50','50','19','41','15');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8601','520201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','1','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8603','110901','0.666666666666667','0.714285714285714','-99999','8177','15295','-99999','-99999','-99999','12','7','0','8','5','0','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8603','131501','0.777777777777778','0.777777777777778','0.8','4746','4976','-99999','1','-99999','9','9','5','7','7','4','5','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8603','190709','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','0','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8603','510713','0.538461538461538','0.555555555555556','-99999','6193','8750','-99999','-99999','-99999','13','9','1','7','5','1','4','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8603','510801','0.769230769230769','0.75','-99999','6627','3924','-99999','1','-99999','13','8','0','10','6','0','5','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8603','510805','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','3','3','3','3','3','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8603','510909','0.714285714285714','-99999','-99999','5473','-99999','-99999','-99999','-99999','7','1','0','5','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8603','511009','0.571428571428571','0.666666666666667','-99999','-99999','-99999','-99999','-99999','-99999','7','6','0','4','4','0','4','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8603','511020','0.692307692307692','0.75','0.7','4314','4459','4509','0.875','0.833333333333333','13','12','10','9','9','7','8','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8603','512308','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8603','520401','0.75','-99999','-99999','5869.5','-99999','-99999','-99999','-99999','8','3','0','6','3','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8610','510801','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','0','2','4','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8610','513902','0.727272727272727','0.727272727272727','-99999','4558','2856.5','-99999','0.625','-99999','11','11','0','8','8','0','8','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8613','520201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8613','520203','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','2','2','2','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8613','520211','0.4','0.8','0.888888888888889','-99999','32327.5','39061','-99999','-99999','10','10','9','4','8','8','4','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8615','111003','0.775862068965517','0.741379310344828','0.794117647058823','5983','6439','8931','0.866666666666667','0.875','58','58','34','45','43','27','45','24');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8615','510601','0.883720930232558','0.878787878787879','0.941176470588235','6976.5','6257','7478.5','0.933333333333333','1','43','33','17','38','29','16','30','16');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8615','510801','0.846153846153846','0.848275862068966','0.902777777777778','5576.5','5815','6407','0.934959349593496','0.935483870967742','182','145','72','154','123','65','123','62');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8615','510910','0.777777777777778','1','0.833333333333333','8069.5','10377.5','13058','1','-99999','18','14','6','14','14','5','9','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8615','513501','0.780487804878049','0.815789473684211','0.666666666666667','3343','5724','4312.5','0.961538461538462','1','41','38','15','32','31','10','26','8');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8616','150803','0.766666666666667','0.566666666666667','0.666666666666667','6418','5733','6513','0.708333333333333','0.791666666666667','30','30','30','23','17','20','24','24');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8616','460401','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','0','0','3','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8617','512602','0.818181818181818','0.8','0.853658536585366','4514','4859','4774','0.883720930232558','0.9','55','55','41','45','44','35','43','30');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8617','513602','0.764705882352941','0.705882352941177','0.588235294117647','5142','4170.5','5901','0.846153846153846','0.692307692307692','17','17','17','13','12','10','13','13');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8617','513902','0.857142857142857','0.8','0.814814814814815','5536','6681.5','6896.5','0.862068965517241','0.826086956521739','42','35','27','36','28','22','29','23');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8619','520302','0.6','0.545454545454545','-99999','5060','3997.5','-99999','0.8','-99999','10','11','1','6','6','0','5','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8619','520401','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8619','530201','0.431034482758621','0.515625','-99999','3732','4842','-99999','0.620689655172414','-99999','116','64','0','50','33','0','29','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8620','513902','0.666666666666667','0.833333333333333','0.75','5520.5','4960.5','5455','1','1','12','12','12','8','10','9','9','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8620','521803','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','0','2','2','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8621','510801','0.428571428571429','-99999','-99999','-99999','-99999','-99999','-99999','-99999','7','4','0','3','3','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8621','511010','0.777777777777778','0.857142857142857','-99999','6159','5075.5','-99999','-99999','-99999','9','7','2','7','6','2','4','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8631','520302','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8633','120401','0.745454545454545','0.888888888888889','-99999','3330','3523.5','-99999','0.95','-99999','55','27','1','41','24','1','20','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8633','120413','0.6','-99999','-99999','-99999','-99999','-99999','-99999','-99999','5','2','0','3','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8635','510720','0.25','0.25','0.25','-99999','-99999','-99999','-99999','-99999','8','8','8','2','2','2','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8637','490205','0.763636363636364','0.682926829268293','0.866666666666667','7573','8841','10645','0.862068965517241','0.909090909090909','55','41','15','42','28','13','29','11');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8643','460000','0.8125','0.818181818181818','-99999','4882','6035','-99999','0.857142857142857','-99999','16','11','3','13','9','0','7','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8643','460302','0.675925925925926','0.597014925373134','0.696969696969697','4952','7372.5','6354','0.805555555555556','0.789473684210526','108','67','33','73','40','23','36','19');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8643','470201','0.571428571428571','0.578947368421053','0.7','8914.5','9680','11764','0.9','-99999','28','19','10','16','11','7','10','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8643','510710','0.625','-99999','-99999','6968','-99999','-99999','-99999','-99999','8','4','0','5','1','0','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8643','510713','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','0','0','2','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8643','510801','0.595238095238095','0.666666666666667','0.631578947368421','4855','3630','4952','0.8125','0.9','42','36','19','25','24','12','16','10');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8654','510716','1','1','-99999','7840','10761','-99999','1','-99999','5','5','4','5','5','4','5','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8654','510801','0.666666666666667','0.777777777777778','0.666666666666667','3617','4874','6945','1','0.666666666666667','9','9','9','6','7','6','6','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8654','510806','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8654','511009','0.4','0.6','0.6','-99999','-99999','-99999','-99999','-99999','5','5','5','2','3','3','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8654','511020','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8654','513902','0.777777777777778','0.625','-99999','9635','7074','-99999','0.833333333333333','-99999','9','8','2','7','5','2','6','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8663','120401','0.735294117647059','0.586206896551724','0.75','3664','4167','3160','0.842105263157895','0.714285714285714','34','29','12','25','17','9','19','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8663','120409','0.65','0.722222222222222','-99999','4007','4960','-99999','0.9','-99999','20','18','3','13','13','3','10','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8663','120413','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','1','0','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8669','510706','0.571428571428571','0.4','-99999','3298','-99999','-99999','-99999','-99999','14','10','0','8','4','0','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8669','510707','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','1','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8669','510711','0.625','0.727272727272727','-99999','5828.5','6265','-99999','0.833333333333333','-99999','16','11','0','10','8','0','6','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8671','220000','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8671','430103','0.857142857142857','0.857142857142857','1','10240.5','13290.5','12725','1','1','7','7','6','6','6','6','6','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8671','430107','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','3','3','3','3','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8671','510701','0.9','0.9','1','9518','7997','10987','0.9','1','10','10','5','9','9','5','10','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8671','510707','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','1','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8671','510801','0.793650793650794','0.857142857142857','0.840909090909091','7293.5','8301.5','8369','0.927272727272727','0.846153846153846','63','63','44','50','54','37','55','39');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8671','510909','0.8','0.8','-99999','9095.5','10621.5','-99999','-99999','-99999','10','10','4','8','8','4','4','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8671','511020','0.863636363636364','0.909090909090909','0.818181818181818','9736','9573','8094','0.944444444444444','1','22','22','11','19','20','9','18','8');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8671','513901','0.935483870967742','1','-99999','9057','12812','-99999','1','-99999','31','31','4','29','31','3','26','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8671','513902','0.9','0.9','0.9','5247','7274','5906','0.857142857142857','0.857142857142857','10','10','10','9','9','9','7','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8671','520201','0.842105263157895','0.789473684210526','0.75','7459.5','8566','8760','0.857142857142857','0.777777777777778','19','19','12','16','15','9','14','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8671','520301','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8671','521401','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','1','2','2','1','2','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8671','521902','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','3','3','4','3','3','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8674','510713','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8674','510720','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','4','4','4','4','4','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8674','510908','0.75','-99999','-99999','5512.5','-99999','-99999','-99999','-99999','8','2','2','6','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8674','511009','0.650793650793651','0.595238095238095','0.642857142857143','4053','4915','4338','0.785714285714286','0.894736842105263','63','42','28','41','25','18','28','19');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8674','513902','0.804123711340206','0.842857142857143','0.711538461538462','4770.5','5070','7945','0.916666666666667','0.8','97','70','52','78','59','37','48','35');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8681','513902','0.875','1','0.75','5926','5638.5','5961','1','0.714285714285714','8','8','8','7','8','6','7','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8689','340199','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','0','2','2','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8689','430109','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8689','510719','0.6','0.25','-99999','3856','-99999','-99999','-99999','-99999','10','8','0','6','2','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8689','510801','0.68','0.833333333333333','0.666666666666667','5857','5307.5','5150.5','0.941176470588235','0.833333333333333','25','24','9','17','20','6','17','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8689','510902','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8689','511009','0.818181818181818','0.6','-99999','5494','4883','-99999','0.666666666666667','-99999','11','10','1','9','6','1','9','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8689','513902','0.8','0.666666666666667','-99999','3181.5','-99999','-99999','0.8','-99999','10','6','1','8','4','1','5','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8691','460000','0.363636363636364','0.363636363636364','0.571428571428571','-99999','-99999','-99999','-99999','-99999','11','11','7','4','4','4','4','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8691','460302','0.5','0.5','0.6','-99999','-99999','-99999','-99999','-99999','6','6','5','3','3','3','2','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8691','470201','0.2','0.3','0.444444444444444','-99999','-99999','-99999','-99999','-99999','10','10','9','2','3','4','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8691','510710','0.4','0.6','0.705882352941177','2546','3638','6127','0.714285714285714','0.833333333333333','20','20','17','8','12','12','7','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8697','120500','0.788235294117647','0.727272727272727','0.8','4847','5786','5525.5','0.8','0.833333333333333','85','77','15','67','56','12','65','12');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8703','511011','1','1','-99999','4858','7152','-99999','1','-99999','15','12','0','15','12','0','9','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8703','512602','0.813084112149533','0.844660194174757','0.851851851851852','5213','5620','6415','0.916666666666667','0.947368421052632','107','103','27','87','87','23','84','19');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8703','513902','0.78','0.863636363636364','0.769230769230769','4838','4689','6147','0.944444444444444','0.8','50','44','13','39','38','10','36','10');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8711','320101','0.547945205479452','0.582191780821918','0.589285714285714','2845.5','3926','4428.5','0.721518987341772','0.672413793103448','146','146','112','80','85','66','79','58');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8717','320105','0.67741935483871','0.5','0.52','1886','4088','4584','0.631578947368421','0.666666666666667','31','30','25','21','15','13','19','15');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8718','430109','0.78125','0.896551724137931','-99999','4472','4899.5','-99999','0.909090909090909','-99999','32','29','1','25','26','1','22','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8720','513902','0.333333333333333','0.666666666666667','0.666666666666667','-99999','-99999','-99999','-99999','-99999','6','6','6','2','4','4','4','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8721','513501','0.246153846153846','0.32258064516129','0.428571428571429','4920','3825','3550','0.888888888888889','0.714285714285714','65','62','42','16','20','18','9','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8722','110899','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8723','110103','0.2','0.3','0.166666666666667','-99999','-99999','-99999','-99999','-99999','10','10','6','2','3','1','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8723','110201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8723','490205','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8723','520201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8725','120502','0.136','0.129032258064516','-99999','14280','12012','-99999','0.823529411764706','-99999','125','124','0','17','16','0','17','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8727','513902','0.791666666666667','0.853658536585366','0.818181818181818','6187','5737','8304','0.96875','1','96','41','11','76','35','9','32','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8728','520201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','0','1','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8728','520211','0.4','0.4','0.4','-99999','-99999','-99999','-99999','-99999','5','5','5','2','2','2','3','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8728','521001','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','4','2','3','3','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8729','510713','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','1','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8729','510801','0.705882352941177','0.846153846153846','-99999','5021','3072','-99999','1','-99999','17','13','4','12','11','4','8','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8729','510902','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','1','1','2','1','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8729','511009','0.611111111111111','0.666666666666667','-99999','4422','5972','-99999','0.8','-99999','18','12','3','11','8','3','5','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8729','513902','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','1','0','2','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8730','010504','0.432432432432432','0.620689655172414','0.647058823529412','4035.5','4446','6626','0.916666666666667','0.75','37','29','17','16','18','11','12','8');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8732','430109','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','3','3','3','3','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8736','520204','0.888888888888889','0.888888888888889','0.888888888888889','4207','4917.5','4970','1','1','9','9','9','8','8','8','5','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8736','520401','0.384615384615385','0.538461538461538','0.846153846153846','3494','6824','6627','-99999','-99999','13','13','13','5','7','11','3','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8738','320101','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8738','510713','0.375','0.375','-99999','-99999','-99999','-99999','-99999','-99999','8','8','0','3','3','0','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8738','510908','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','0','0','4','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8738','511009','0.8','0.80327868852459','-99999','5244.5','5612','-99999','0.895833333333333','-99999','90','61','4','72','49','4','48','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8738','513902','0.729411764705882','0.675','0.774193548387097','4474.5','4448','4952.5','0.794520547945205','0.875','170','120','31','124','81','24','73','16');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8744','320101','0.363636363636364','0.413793103448276','0.571428571428571','2631.5','3537.5','3957','1','-99999','44','29','14','16','12','8','6','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8744','320109','0.414634146341463','0.384615384615385','0.666666666666667','2994','3992.5','5500.5','0.666666666666667','-99999','41','26','9','17','10','6','6','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8744','513902','0.916666666666667','0.833333333333333','0.833333333333333','3564','3199','3818','0.833333333333333','0.833333333333333','12','12','12','11','10','10','12','12');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8747','521701','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8751','110201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','3','0','3','0','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8751','510801','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8751','520901','0.285714285714286','0.571428571428571','-99999','-99999','-99999','-99999','-99999','-99999','7','7','1','2','4','0','3','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8756','150505','0.517241379310345','0.6','0.444444444444444','5043','8032','-99999','0.8','-99999','29','25','9','15','15','4','15','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8761','110901','0.818181818181818','0.727272727272727','-99999','8509','9241.5','-99999','0.777777777777778','-99999','11','11','0','9','8','0','9','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8761','500409','0.75','0.75','-99999','1814.5','5026.5','-99999','1','-99999','8','8','0','6','6','0','5','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8761','510713','0.870967741935484','0.806451612903226','-99999','6507','6962','-99999','0.814814814814815','-99999','31','31','0','27','25','0','27','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8761','510801','0.707070707070707','0.729166666666667','-99999','5027.5','5560.5','-99999','0.838235294117647','-99999','99','96','0','70','70','0','68','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8762','430109','0.8','0.84','0.6','4712','4927','6987','0.85','0.625','25','25','10','20','21','6','20','8');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8765','320101','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8765','530201','0.0666666666666667','0.133333333333333','0','-99999','-99999','-99999','-99999','-99999','15','15','14','1','2','0','2','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8767','340199','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8767','512602','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','0','3','3','0','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8767','513902','0.8','0.8','-99999','-99999','-99999','-99999','-99999','-99999','5','5','3','4','4','2','4','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8768','510720','0.5','1','-99999','9612','12952','-99999','1','-99999','12','6','0','6','6','0','6','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8768','510801','0.74468085106383','0.835616438356164','0.954545454545455','5362','6177','5980','0.925925925925926','0.944444444444444','94','73','22','70','61','21','54','18');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8768','511009','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','1','0','4','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8768','512602','0.75','0.8','-99999','7112','-99999','-99999','0.8','-99999','8','5','0','6','4','0','5','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8768','512603','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8768','513902','0.741071428571429','0.733333333333333','1','5143','5330.5','5261','0.902439024390244','1','112','60','7','83','44','7','41','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8769','120401','0.625','0.615384615384615','0.625','4216','4752','3164','0.875','-99999','16','13','8','10','8','5','8','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8769','120402','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8769','120408','0.555555555555556','0.571428571428571','-99999','2764','-99999','-99999','-99999','-99999','9','7','1','5','4','1','4','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8769','120410','0.615384615384615','0.571428571428571','-99999','4387.5','4469','-99999','1','-99999','26','14','3','16','8','1','7','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8769','120413','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8773','510902','0.714285714285714','0.714285714285714','-99999','1964','2375','-99999','1','-99999','7','7','3','5','5','3','5','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8773','511009','0.7','0.722222222222222','0.882352941176471','4484','5441','5818','1','1','20','18','17','14','13','15','11','10');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8773','512602','0.571428571428571','0.642857142857143','0.714285714285714','4042.5','5026.5','4377.5','1','1','28','28','28','16','18','20','12','12');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8773','513902','0.726495726495726','0.741935483870968','0.805555555555556','5403','5609','4360','0.890625','0.826086956521739','117','93','36','85','69','29','64','23');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8777','510801','0.814814814814815','0.769230769230769','-99999','7185','6488.5','-99999','0.863636363636364','-99999','27','26','0','22','20','0','22','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8777','513501','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','0','3','3','0','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8779','110103','0.75','0.740740740740741','0.8','16560','18991','17028','0.842105263157895','0.888888888888889','36','27','10','27','20','8','19','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8779','110301','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','1','1','3','0','0','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8779','110401','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','0','1','2','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8779','110801','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','1','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8779','110802','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8779','110901','0.68','0.666666666666667','0.625','11580','11177','13242','0.888888888888889','0.875','25','18','16','17','12','10','9','8');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8779','111001','0.736842105263158','0.615384615384615','0.833333333333333','4389','7168','12176','0.875','-99999','19','13','6','14','8','5','8','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8779','111003','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','2','2','2','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8779','140801','0.5','-99999','-99999','-99999','-99999','-99999','-99999','-99999','6','3','0','3','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8779','140903','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8779','151203','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8779','500409','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8779','510706','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8779','510713','0.428571428571429','-99999','-99999','-99999','-99999','-99999','-99999','-99999','7','4','0','3','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8779','510716','0.615384615384615','0.727272727272727','0.4','6563.5','5856','-99999','0.857142857142857','-99999','13','11','5','8','8','2','7','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8779','510801','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','3','3','2','3','1','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8779','510805','0.833333333333333','0.833333333333333','0.6','5378','2158','-99999','0.8','-99999','6','6','5','5','5','3','5','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8779','513902','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8779','520201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','1','3','2','1','2','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8779','520301','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','1','1','0','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8779','520304','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','1','0','3','1','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8779','520401','0.586206896551724','0.72','0.555555555555556','6943','9320','12380.5','0.923076923076923','0.8','29','25','18','17','18','10','13','10');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8779','521001','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','1','0','1','1','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8781','512602','0.777777777777778','1','0.75','8131','5862','5023','1','0.666666666666667','9','9','8','7','9','6','7','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8782','510911','0.962962962962963','1','1','12914.5','12367','13402.5','1','1','27','27','14','26','27','14','26','13');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8783','220000','0.666666666666667','0.625','-99999','6646','7986','-99999','0.833333333333333','-99999','9','8','4','6','5','4','6','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8783','430103','0.771428571428571','0.833333333333333','0.777777777777778','7040','5271','8450.5','0.833333333333333','0.785714285714286','35','30','18','27','25','14','24','14');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8783','430107','0.743589743589744','0.794871794871795','0.65','4385','4578','7768','0.892857142857143','0.692307692307692','39','39','20','29','31','13','28','13');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8783','510000','0.875','0.857142857142857','-99999','6154','6367','-99999','1','-99999','8','7','2','7','6','2','5','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8783','510701','0.944444444444444','0.923076923076923','0.75','8577','6232.5','8551.5','0.916666666666667','0.75','18','13','8','17','12','6','12','8');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8783','510707','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8783','510801','0.892857142857143','0.785714285714286','0.714285714285714','5751','5557','5661','1','-99999','28','14','7','25','11','5','8','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8783','511020','0.545454545454545','0.571428571428571','1','8323','-99999','14191','-99999','-99999','11','7','5','6','4','5','3','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8783','513902','0.952380952380952','0.9','0.5','3175','5433','-99999','0.875','0.4','21','20','8','20','18','4','16','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8783','520201','0.825','0.72972972972973','0.555555555555556','7241','8777','8832','0.925925925925926','0.692307692307692','40','37','18','33','27','10','27','13');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8783','520301','0.75','0.833333333333333','-99999','8361.5','6814','-99999','-99999','-99999','8','6','4','6','5','4','4','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8783','521401','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','2','2','2','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8783','521902','0.857142857142857','1','1','8820','6425','8921','1','-99999','14','13','5','12','13','5','10','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8791','490205','0.675675675675676','0.657142857142857','0.6','9420','12167','8761.5','0.818181818181818','0.666666666666667','37','35','10','25','23','6','22','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8792','513902','0.856','0.865168539325843','0.823529411764706','5285','5168','3854.5','0.890243902439024','0.8125','125','89','17','107','77','14','82','16');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8794','513501','0.391304347826087','0.454545454545455','-99999','2626','3655','-99999','1','-99999','23','22','0','9','10','0','9','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8797','490205','0.72','0.68','0.72','8193','10452','12053','0.8125','0.8125','25','25','25','18','17','18','16','16');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8803','510711','0.761194029850746','0.641791044776119','0.738095238095238','5664','5896','6747','0.8','0.733333333333333','67','67','42','51','43','31','45','30');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8803','510713','0.803921568627451','0.8','0.72972972972973','6807','7215','7914','0.932203389830508','0.916666666666667','102','80','37','82','64','27','59','24');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8803','510805','0.625','0.75','0.714285714285714','3117','3462.5','3973','0.833333333333333','0.8','8','8','7','5','6','5','6','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8803','510902','0.782608695652174','0.695652173913043','0.826086956521739','4580.5','5909.5','6811','0.769230769230769','0.846153846153846','23','23','23','18','16','19','13','13');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8803','511009','0.757322175732218','0.769230769230769','0.80327868852459','4932','6027.5','4828','0.908333333333333','0.833333333333333','239','169','61','181','130','49','120','42');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8808','120401','0.612903225806452','0.423076923076923','0.5','4018','5403','5633.5','0.642857142857143','0.5','31','26','16','19','11','8','14','8');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8808','120402','0.5','0.333333333333333','-99999','2600','-99999','-99999','-99999','-99999','22','9','3','11','3','1','3','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8808','120409','0.607142857142857','0.708333333333333','0.8125','3286','3945','6508','0.866666666666667','0.909090909090909','28','24','16','17','17','13','15','11');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8808','120413','0.714285714285714','0.833333333333333','-99999','4079','3765','-99999','-99999','-99999','7','6','3','5','5','3','4','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8809','490205','0.732394366197183','0.792452830188679','0.724137931034483','10328.5','10801','12466','0.868421052631579','0.842105263157895','71','53','29','52','42','21','38','19');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8812','513902','0.875','0.75','0.875','7426','8667','9075','0.857142857142857','1','8','8','8','7','6','7','7','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8824','110201','0.428571428571429','0.857142857142857','0.857142857142857','-99999','10926','10184','-99999','-99999','7','7','7','3','6','6','3','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8824','520201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','2','3','2','1','2','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8826','430112','0.714285714285714','0.571428571428571','0.714285714285714','3402','-99999','4524','-99999','-99999','7','7','7','5','4','5','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8829','110101','0.555555555555556','0.555555555555556','0.4','5997','3531','-99999','-99999','-99999','9','9','5','5','5','2','4','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8829','110501','0.714285714285714','0.909090909090909','-99999','4724.5','5759','-99999','1','-99999','14','11','1','10','10','1','7','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8829','110801','0.375','0.333333333333333','0.2','-99999','-99999','-99999','-99999','-99999','8','6','5','3','2','1','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8829','520201','0.636363636363636','0.727272727272727','-99999','8898','10814.5','-99999','0.857142857142857','-99999','11','11','2','7','8','1','7','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8829','520407','0.692307692307692','0.75','-99999','7581','8090','-99999','0.875','-99999','13','12','4','9','9','3','8','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8829','520408','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','2','2','3','2','2','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8829','520701','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','2','0','2','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8831','120505','0.285714285714286','0.285714285714286','0.714285714285714','-99999','-99999','1494','-99999','-99999','7','7','7','2','2','5','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8831','120506','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','1','1','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8831','120507','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8831','120508','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8834','320105','0.583333333333333','-99999','-99999','855','-99999','-99999','-99999','-99999','12','0','0','7','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8834','320107','0.516949152542373','0.606741573033708','0.636363636363636','2447','2422.5','1810.5','0.722222222222222','0.75','118','89','22','61','54','14','54','12');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8834','320111','0.507042253521127','0.75609756097561','-99999','2457.5','3045','-99999','0.875','-99999','142','82','0','72','62','0','48','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8839','110201','0.428571428571429','-99999','-99999','-99999','-99999','-99999','-99999','-99999','7','3','0','3','2','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8839','110802','0.25','-99999','-99999','-99999','-99999','-99999','-99999','-99999','8','4','1','2','3','1','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8839','111005','0.5','0.5','0.615384615384615','11367','13260','14330.5','0.875','1','22','18','13','11','9','8','8','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8839','513902','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8839','520201','0.4','-99999','-99999','-99999','-99999','-99999','-99999','-99999','5','4','2','2','2','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8839','520211','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8839','520408','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','0','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8840','510909','0.8','-99999','-99999','-99999','-99999','-99999','-99999','-99999','5','3','0','4','2','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8840','511020','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','4','3','3','4','3','2','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8840','512602','0.8','1','-99999','-99999','4003','-99999','-99999','-99999','5','5','0','4','5','0','4','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8843','320101','0.473684210526316','0.540540540540541','0.608695652173913','2080.5','2569','3731','0.7','0.785714285714286','38','37','23','18','20','14','20','14');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8844','320101','0.526315789473684','0.526315789473684','0.5','2263','3901.5','4736','0.7','0.666666666666667','19','19','18','10','10','9','10','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8850','430109','0.838709677419355','0.753246753246753','0.761904761904762','5378','5559.5','6495','0.823076923076923','0.788461538461538','217','154','63','182','116','48','130','52');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8852','510713','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8852','510801','0.6','0.8','-99999','-99999','-99999','-99999','-99999','-99999','5','5','4','3','4','3','2','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8852','511009','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','0','1','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8869','520208','0.5','-99999','-99999','-99999','-99999','-99999','-99999','-99999','6','1','0','3','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8869','521803','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8881','512601','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','2','3','2','1','2','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8881','512602','0.642857142857143','0.692307692307692','-99999','6802','7667','-99999','1','-99999','14','13','1','9','9','1','6','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8887','460201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','3','3','3','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8892','490205','0.819148936170213','0.777777777777778','0.933333333333333','8996','10493','10673','0.847826086956522','1','94','63','15','77','49','14','46','13');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8906','460201','0.062111801242236','0.0476190476190476','0.0232558139534884','13563.5','11517','-99999','0.833333333333333','-99999','161','126','43','10','6','1','6','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8907','520201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','0','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8907','520401','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8907','520411','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','1','0','1','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8908','010504','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8908','320109','0.375','0.25','-99999','-99999','-99999','-99999','-99999','-99999','8','8','3','3','2','1','2','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8908','490205','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','2','2','2','2','2','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8908','510801','0.571428571428571','0.80952380952381','0.777777777777778','7474.5','5752','7831','1','0.857142857142857','21','21','9','12','17','7','13','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8908','510805','0.444444444444444','0.4','0.6','-99999','-99999','-99999','-99999','-99999','9','5','5','4','2','3','3','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8908','511009','1','-99999','-99999','2054','-99999','-99999','-99999','-99999','5','0','0','5','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8908','513501','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8908','513902','0.777777777777778','0.85','0.666666666666667','6764','7131','6553.5','0.944444444444444','0.75','27','20','9','21','17','6','18','8');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8908','520302','0.782608695652174','0.866666666666667','0.857142857142857','7907.5','8925','9321.5','0.909090909090909','0.833333333333333','23','15','7','18','13','6','11','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8908','520401','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','2','1','2','1','1','1','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8915','512602','1','1','1','8065','9331','9372','1','1','5','5','5','5','5','5','5','5');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8920','513501','0.488372093023256','0.526315789473684','0.48','4686','4641','8014.5','0.777777777777778','0.75','43','38','25','21','20','12','18','12');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8922','090102','0.6','0.4','-99999','-99999','-99999','-99999','-99999','-99999','5','5','0','3','2','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8922','090799','0.428571428571429','0.272727272727273','-99999','4802.5','-99999','-99999','0.6','-99999','28','11','0','12','3','0','5','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8922','100303','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8922','302901','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8922','320105','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','0','0','2','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8922','520301','0.6','0.666666666666667','-99999','-99999','-99999','-99999','-99999','-99999','5','6','0','3','4','0','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8922','520901','0.553571428571429','0.612903225806452','-99999','2523','4364','-99999','0.875','-99999','56','31','1','31','19','0','16','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8923','131209','0.777777777777778','0.888888888888889','-99999','4229','4478.5','-99999','1','-99999','9','9','2','7','8','2','6','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8925','120500','0.217391304347826','0.130434782608696','0.571428571428571','645','-99999','-99999','-99999','-99999','23','23','7','5','3','4','4','2');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8926','110103','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8926','520201','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8928','513501','0.171428571428571','0.295081967213115','0.388888888888889','3251','3748','3543','0.571428571428571','-99999','70','61','36','12','18','14','7','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8929','510801','0.673913043478261','0.807692307692308','-99999','4515','5992','-99999','0.944444444444444','-99999','46','26','1','31','21','1','18','1');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8929','513902','0.720930232558139','0.696969696969697','0.888888888888889','3406','5777','11002.5','0.826086956521739','0.888888888888889','43','33','9','31','23','8','23','9');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8938','490202','0.68','0.583333333333333','0.461538461538462','5465','6512','7350.5','0.8125','0.714285714285714','25','24','13','17','14','6','16','7');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8943','320110','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8943','490205','0.704545454545455','0.75','0.571428571428571','6962','8601.5','-99999','0.9','0.666666666666667','44','32','7','31','24','4','20','6');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8946','513902','0.727272727272727','-99999','-99999','8421.5','-99999','-99999','-99999','-99999','11','1','0','8','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8948','510601','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','1','0','4','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8948','510801','0.85','-99999','-99999','5595','-99999','-99999','-99999','-99999','20','3','0','17','3','0','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8948','513501','0.5','-99999','-99999','-99999','-99999','-99999','-99999','-99999','8','4','0','4','4','0','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8948','520401','0.923076923076923','0.833333333333333','-99999','6416.5','5373','-99999','0.8','-99999','13','6','0','12','5','0','5','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8953','110901','0.608695652173913','-99999','-99999','9133.5','-99999','-99999','-99999','-99999','23','0','0','14','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8954','120401','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8956','120507','0.75','0.833333333333333','-99999','1797','2616','-99999','0.909090909090909','-99999','12','12','4','9','10','4','11','4');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8961','110801','0.75','0.875','-99999','2280.5','1955','-99999','0.8','-99999','8','8','0','6','7','0','5','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8967','470604','0.559558823529412','0.770330652368186','0.793624161073825','10400','11153','13037','0.890756302521008','0.902173913043478','1360','1119','596','761','861','473','476','92');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8971','110801','0.8','0.8','-99999','-99999','-99999','-99999','-99999','-99999','5','5','0','4','4','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8976','470604','0.0662393162393162','0.0837696335078534','0.1','5923.5','9629.5','11056','0.594594594594595','1','936','764','400','62','64','40','37','8');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8976','470605','0.0492227979274611','0.0848484848484849','0.0914285714285714','9478','11564.5','11891.5','0.857142857142857','-99999','386','330','175','19','28','16','14','3');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8987','513501','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8990','010504','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8993','513901','0.857142857142857','-99999','-99999','7821','-99999','-99999','-99999','-99999','7','0','0','6','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8998','370105','0.4','-99999','-99999','-99999','-99999','-99999','-99999','-99999','5','0','0','2','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('8998','513603','0.833333333333333','-99999','-99999','13750','-99999','-99999','-99999','-99999','6','1','0','5','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('9005','511009','0.806451612903226','0.777777777777778','-99999','6241','6661.5','-99999','0.923076923076923','-99999','31','18','0','25','14','0','13','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('9005','513902','0.710526315789474','0.714285714285714','-99999','5933','4243','-99999','0.80952380952381','-99999','38','28','0','27','20','0','21','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('9011','120401','0.777777777777778','0.764705882352941','-99999','3605','4545','-99999','0.923076923076923','-99999','27','17','0','21','13','0','13','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('9011','120402','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','1','0','1','1','0','1','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('9011','120409','0.714285714285714','0.714285714285714','-99999','5493.5','3462.5','-99999','0.9','-99999','14','14','0','10','10','0','10','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('9011','120410','0.8','0.6','-99999','-99999','-99999','-99999','-99999','-99999','5','5','0','4','3','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('9013','120401','0.4','-99999','-99999','-99999','-99999','-99999','-99999','-99999','5','1','0','2','1','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('9013','120402','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('9013','120409','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','2','0','0','2','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('9024','530105','0.6','0.8','-99999','-99999','-99999','-99999','-99999','-99999','5','5','0','3','4','0','3','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('9031','512602','0.875','1','-99999','4127','3783.5','-99999','1','-99999','8','6','0','7','6','0','6','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('9034','120402','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('9042','513902','0.857142857142857','-99999','-99999','8308','-99999','-99999','-99999','-99999','7','2','0','6','2','0','2','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('9066','320111','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','4','2','0','2','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('9096','512602','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('9120','320107','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('9133','513501','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','1','0','0','1','0','0','0','0');
INSERT INTO outcomes_cip (providerid,cipcode,PerEmployed2,PerEmployed4,PerEmployed8,AvgQuarterlyWage2,AvgQuarterlyWage4,AvgQuarterlyWage8,PerRetention4,PerRetention8,NumCompleted2,NumCompleted4,NumCompleted8,NumUsedWageCalc2,NumUsedWageCalc4,NumUsedWageCalc8,NumUsedRetentionCalc4,NumUsedRetentionCalc8) values ('9142','511009','-99999','-99999','-99999','-99999','-99999','-99999','-99999','-99999','0','0','0','0','0','0','0','0');
|
SELECT DepositGroup, MAX(MagicWandSize) AS [LongestMagicWand]
From WizzardDeposits
GROUP BY DepositGroup |
<reponame>RasikaKoranne/testGUI<gh_stars>0
SELECT employee.employee_id,employee.first_name,employee.middle_name,employee.last_name,employee.known_as_name,employee.salutation,employee.date_of_birth,employee.territory_id,employee.home_address_id,employee.mail_address_id,employee.commencement_date,employee.termination_date,employee.current_position_title,employee.current_position_start_date,employee.sales_rep_flag,employee.buyer_flag,employee.manager_flag,employee.full_time_flag,employee.creating_employee_id,employee.created_datetime,employee.last_change_employee_id,employee.last_change_datetime FROM dbo.employee employee |
INSERT INTO q_dt_enrolmentenrolsubject(
enrolment_id, enrolsubject_id, personenrolsubject_id, mark,
uid, utid, uapp, status, actual, note, crtuser, crtusergroup,
update_date, create_date, markscale_id, personaward_id) VALUES
(1, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(1, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(1, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(2, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(2, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(2, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(3, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(3, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(3, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(4, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(4, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(4, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(5, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(5, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(5, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(6, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(6, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(6, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(7, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(7, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(7, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(8, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(8, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(8, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(9, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(9, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(9, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(10, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(10, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(10, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(11, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(11, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(11, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(12, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(12, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(12, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(13, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(13, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(13, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(14, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(14, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(14, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(15, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(15, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(15, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(16, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(16, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(16, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(17, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(17, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(17, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(18, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(18, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(18, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(19, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(19, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(19, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(20, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(20, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(20, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(21, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(21, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(21, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(22, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(22, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(22, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(23, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(23, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(23, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(24, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(24, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(24, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(25, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(25, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(25, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(26, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(26, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(26, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(27, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(27, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(27, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(28, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(28, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(28, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(29, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(29, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(29, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(30, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(30, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(30, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(31, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(31, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(31, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(32, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(32, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(32, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(33, 1, 1, 180, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(33, 2, 1, 160, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL),
(33, 3, 1, 170, 1, 'utid', 'uapp', 'ACTIVE', 1, 'note', 'crtuser', 'public', now(), now(), 5, NULL); |
<reponame>chried/sea
/*
Navicat Premium Data Transfer
Source Server : localhost_3306
Source Server Type : MySQL
Source Server Version : 80015
Source Host : localhost:3306
Source Schema : sea
Target Server Type : MySQL
Target Server Version : 80015
File Encoding : 65001
Date: 23/10/2019 16:56:09
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for menu
-- ----------------------------
DROP TABLE IF EXISTS `menu`;
CREATE TABLE `menu` (
`id` varchar(19) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
`parent_id` varchar(19) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL,
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL,
`code` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL,
`url` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL,
`icon` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of menu
-- ----------------------------
INSERT INTO `menu` VALUES ('1184268940045864961', NULL, '系统管理', 'system', 'url-1', '_qq');
INSERT INTO `menu` VALUES ('1184268940154916865', NULL, 'name-2', 'code-2', 'url-2', '_qq');
INSERT INTO `menu` VALUES ('1185009311382134786', '1184268940045864961', '用户管理', 'userManage', 'userManage', '_qq');
INSERT INTO `menu` VALUES ('1185009311453437954', '1184268940045864961', '角色管理', 'roleManage', 'roleManage', '_qq');
INSERT INTO `menu` VALUES ('1185009311512158209', '1184268940045864961', '菜单管理', 'menuManage', 'menuManage', '_qq');
INSERT INTO `menu` VALUES ('1186562633700462593', '1184268940045864961', '权限管理', 'permissionManage', 'permissionManage', '_qq');
-- ----------------------------
-- Table structure for message
-- ----------------------------
DROP TABLE IF EXISTS `message`;
CREATE TABLE `message` (
`id` varchar(19) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
`type` bit(1) NULL DEFAULT NULL COMMENT '消息分类',
`title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '消息标题',
`content` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '消息内容',
`read` bit(1) NULL DEFAULT NULL COMMENT '是否已读',
`role_id` bigint(19) NULL DEFAULT NULL COMMENT '接收权限',
`create_date` datetime(0) NULL DEFAULT NULL,
`read_date` datetime(0) NULL DEFAULT NULL COMMENT '阅读时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for permission
-- ----------------------------
DROP TABLE IF EXISTS `permission`;
CREATE TABLE `permission` (
`id` varchar(19) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '权限名称',
`sign` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '权限名称',
`url` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '管理url',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of permission
-- ----------------------------
INSERT INTO `permission` VALUES ('1178504627830034434', 'permission-1', 'permission-1', '/order/get');
INSERT INTO `permission` VALUES ('1178504628027166721', 'permission-2', 'permission-2', '/auth/index');
INSERT INTO `permission` VALUES ('1178504628064915458', 'permission-3', 'ROLE_ANONYMOUS', '/login');
INSERT INTO `permission` VALUES ('1178504628127830018', 'permission-4', 'permission-4', '/order/get/4');
INSERT INTO `permission` VALUES ('1178504628173967361', 'permission-5', 'permission-5', '/order/get/5');
INSERT INTO `permission` VALUES ('1178504628228493314', 'permission-6', 'permission-6', '/order/get/6');
INSERT INTO `permission` VALUES ('1178504628287213570', 'permission-7', 'permission-7', '/order/get/7');
INSERT INTO `permission` VALUES ('1178504628329156609', 'permission-8', 'permission-8', '/order/get/8');
INSERT INTO `permission` VALUES ('1178504628396265473', 'permission-9', 'permission-9', '/order/get/9');
INSERT INTO `permission` VALUES ('1178504628450791425', 'permission-10', 'permission-10', '/order/get/10');
INSERT INTO `permission` VALUES ('1178504628492734466', 'permission-11', 'permission-11', '/order/get/11');
INSERT INTO `permission` VALUES ('1178504628547260418', 'permission-12', 'permission-12', '/order/get/12');
INSERT INTO `permission` VALUES ('1178504628585009153', 'permission-13', 'permission-13', '/order/get/13');
INSERT INTO `permission` VALUES ('1178504628635340801', 'permission-14', 'permission-14', '/order/get/14');
INSERT INTO `permission` VALUES ('1178504628685672449', 'permission-15', 'permission-15', '/order/get/15');
INSERT INTO `permission` VALUES ('1178504628769558529', 'permission-16', 'permission-16', '/order/get/16');
INSERT INTO `permission` VALUES ('1178504628828278785', 'permission-17', 'permission-17', '/order/get/17');
INSERT INTO `permission` VALUES ('1178504628861833218', 'permission-18', 'permission-18', '/order/get/18');
INSERT INTO `permission` VALUES ('1178504628903776257', 'permission-19', 'permission-19', '/order/get/19');
-- ----------------------------
-- Table structure for role
-- ----------------------------
DROP TABLE IF EXISTS `role`;
CREATE TABLE `role` (
`id` varchar(19) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL,
`sign` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of role
-- ----------------------------
INSERT INTO `role` VALUES ('1178505622140203009', 'role-1', 'ROLE_ADMIN');
INSERT INTO `role` VALUES ('1178505622387666945', 'role-2', 'role-2');
INSERT INTO `role` VALUES ('1178505622467358722', 'role-3', 'role-3');
INSERT INTO `role` VALUES ('1178505622509301761', 'role-4', 'role-4');
INSERT INTO `role` VALUES ('1178505622551244801', 'role-5', 'role-5');
INSERT INTO `role` VALUES ('1178505622626742273', 'role-6', 'role-6');
INSERT INTO `role` VALUES ('1178505622630936578', 'role-7', 'role-7');
INSERT INTO `role` VALUES ('1178505622744182786', 'role-8', 'role-8');
INSERT INTO `role` VALUES ('1178505622786125826', 'role-9', 'role-9');
INSERT INTO `role` VALUES ('1178505622823874562', 'role-10', 'role-10');
INSERT INTO `role` VALUES ('1186107351820021762', '12', '12');
INSERT INTO `role` VALUES ('1186107907020042241', '33', '33');
INSERT INTO `role` VALUES ('1186184216194764802', '44551', '44551');
INSERT INTO `role` VALUES ('1186459594771537921', 'rrra', 'rrra');
INSERT INTO `role` VALUES ('1186459836690604034', '管理员', 'manage');
-- ----------------------------
-- Table structure for role_menu
-- ----------------------------
DROP TABLE IF EXISTS `role_menu`;
CREATE TABLE `role_menu` (
`id` varchar(19) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
`role_id` varchar(19) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL,
`menu_id` varchar(19) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of role_menu
-- ----------------------------
INSERT INTO `role_menu` VALUES ('1186924788912189441', '1178505622140203009', '1184268940154916865');
INSERT INTO `role_menu` VALUES ('1186924788920578050', '1178505622140203009', '1184268940045864961');
INSERT INTO `role_menu` VALUES ('1186924788928966657', '1178505622140203009', '1185009311453437954');
-- ----------------------------
-- Table structure for role_permission
-- ----------------------------
DROP TABLE IF EXISTS `role_permission`;
CREATE TABLE `role_permission` (
`id` varchar(19) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
`permission_id` varchar(19) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL,
`role_id` varchar(19) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of role_permission
-- ----------------------------
INSERT INTO `role_permission` VALUES ('1178508944213422081', '1178504628492734466', '1178505622387666945');
INSERT INTO `role_permission` VALUES ('1178508944276336642', '1178504628547260418', '1178505622387666945');
INSERT INTO `role_permission` VALUES ('1178508944318279682', '1178504628585009153', '1178505622387666945');
INSERT INTO `role_permission` VALUES ('1178508944372805633', '1178504628635340801', '1178505622387666945');
INSERT INTO `role_permission` VALUES ('1178508944498634753', '1178504628685672449', '1178505622387666945');
INSERT INTO `role_permission` VALUES ('1178508944540577793', '1178504628769558529', '1178505622387666945');
INSERT INTO `role_permission` VALUES ('1178508944586715137', '1178504628828278785', '1178505622387666945');
INSERT INTO `role_permission` VALUES ('1178508944641241089', '1178504628861833218', '1178505622387666945');
INSERT INTO `role_permission` VALUES ('1178508944771264513', '1178504628903776257', '1178505622387666945');
INSERT INTO `role_permission` VALUES ('1186928525865050113', '1178504627830034434', '1178505622140203009');
INSERT INTO `role_permission` VALUES ('1186928525886021634', '1178504628027166721', '1178505622140203009');
INSERT INTO `role_permission` VALUES ('1186928525886021635', '1178504628064915458', '1178505622140203009');
-- ----------------------------
-- Table structure for url_error
-- ----------------------------
DROP TABLE IF EXISTS `url_error`;
CREATE TABLE `url_error` (
`id` varchar(19) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT 'id',
`error_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '请求类型',
`msg` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '错误消息',
`error_code` smallint(5) NULL DEFAULT NULL COMMENT '错误码',
`url` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '错误地址',
`create_date` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`update_date` datetime(0) NULL DEFAULT NULL COMMENT '最近更新时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of url_error
-- ----------------------------
INSERT INTO `url_error` VALUES ('1184299469818556418', 'ajax', '', 404, 'http://localhost:60456/message/count', '2019-10-16 10:46:11', '2019-10-17 08:44:56');
INSERT INTO `url_error` VALUES ('1184388517740294146', 'ajax', '', 500, 'http://localhost:60456/admin/user/getUserInfo', '2019-10-16 16:40:02', '2019-10-21 14:21:25');
INSERT INTO `url_error` VALUES ('1184631525081608194', 'ajax', '', 404, 'http://localhost:60456/adminmessage/count', '2019-10-17 08:45:40', '2019-10-17 08:45:40');
INSERT INTO `url_error` VALUES ('1184632063055622146', 'ajax', '', 500, 'http://localhost:60456/admin/message/count', '2019-10-17 08:47:48', '2019-10-17 11:04:12');
INSERT INTO `url_error` VALUES ('1186099708468580354', 'ajax', '', 500, 'http://localhost:60456/login', '2019-10-21 09:59:42', '2019-10-21 09:59:42');
INSERT INTO `url_error` VALUES ('1186103654083907586', 'ajax', '', 404, 'http://localhost:60456/admin/role/addOrEdit?id=&name=admin&sign=123456', '2019-10-21 10:15:23', '2019-10-21 10:15:23');
INSERT INTO `url_error` VALUES ('1186174794416418817', 'ajax', '', 500, 'http://localhost:60456/admin/role/addOrEdit', '2019-10-21 14:58:04', '2019-10-21 15:11:14');
INSERT INTO `url_error` VALUES ('1186207421701726210', 'ajax', '', 404, 'http://localhost:60456/', '2019-10-21 17:07:43', '2019-10-21 17:07:43');
INSERT INTO `url_error` VALUES ('1186484549446004738', 'ajax', '', 404, 'http://localhost:60456/admin/menu/addOrUpdate1', '2019-10-22 11:28:55', '2019-10-22 11:28:55');
INSERT INTO `url_error` VALUES ('1186518619827671041', 'ajax', '', 405, 'http://localhost:60456/admin/menu/queryChild?parentId=', '2019-10-22 13:44:18', '2019-10-22 13:44:43');
INSERT INTO `url_error` VALUES ('1186549511186972674', 'ajax', '', 404, 'http://localhost:60456/admin/user/query', '2019-10-22 15:47:03', '2019-10-22 15:47:23');
INSERT INTO `url_error` VALUES ('1186565531985498113', 'ajax', '', 404, 'http://localhost:60456/admin/permission/addOrEdit', '2019-10-22 16:50:43', '2019-10-22 16:50:49');
INSERT INTO `url_error` VALUES ('1186844075479158785', 'ajax', NULL, NULL, 'http://localhost:60456/admin/user/handleUserRole', '2019-10-23 11:17:33', '2019-10-23 11:30:49');
-- ----------------------------
-- Table structure for user
-- ----------------------------
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`id` varchar(19) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
`account` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '账号',
`phone` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '手机号',
`create_date` datetime(0) NULL DEFAULT NULL,
`update_date` datetime(0) NULL DEFAULT NULL,
`x_status` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL,
`x_edition` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL,
`password` varchar(70) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '密码',
`email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '邮箱',
`portrait` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '头像',
`nickname` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '昵称',
`lock_date` datetime(0) NULL DEFAULT NULL COMMENT '锁定时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of user
-- ----------------------------
INSERT INTO `user` VALUES ('1177027183994355714', 'chried', '15884499510', '2019-09-26 09:08:43', '2019-09-26 09:08:43', 'ACTIVE', 'abb277ca-5841-40a8-8a49-582ddbf0e65d', '$<PASSWORD>', '<EMAIL>', 'https://avatar.csdn.net/B/E/F/3_spring21st.jpg', '高小帅', '2019-09-28 17:17:53');
-- ----------------------------
-- Table structure for user_role
-- ----------------------------
DROP TABLE IF EXISTS `user_role`;
CREATE TABLE `user_role` (
`id` varchar(19) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
`user_id` varchar(19) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL,
`role_id` varchar(19) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL,
`expire_date` datetime(0) NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of user_role
-- ----------------------------
INSERT INTO `user_role` VALUES ('1186871587009613826', '1177027183994355714', '1178505622140203009', '2020-10-23 13:06:52');
INSERT INTO `user_role` VALUES ('1186871587018002433', '1177027183994355714', '1178505622387666945', '2020-10-23 13:06:52');
INSERT INTO `user_role` VALUES ('1186871587018002434', '1177027183994355714', '1186459836690604034', '2020-10-23 13:06:52');
SET FOREIGN_KEY_CHECKS = 1;
|
INSERT INTO REF.Garaging (countryGeoId, optionDesc, optionValue) VALUES
(0, 'Unknown', 0),
(0, 'Outside', 1),
(0, 'Inside', 2)
;
|
-- This file and its contents are licensed under the Apache License 2.0.
-- Please see the included NOTICE for copyright information and
-- LICENSE-APACHE for a copy of the license.
CREATE OR REPLACE VIEW timescaledb_experimental.chunk_replication_status AS
SELECT
h.schema_name AS hypertable_schema,
h.table_name AS hypertable_name,
c.schema_name AS chunk_schema,
c.table_name AS chunk_name,
h.replication_factor AS desired_num_replicas,
count(cdn.chunk_id) AS num_replicas,
array_agg(cdn.node_name) AS replica_nodes,
-- compute the set of data nodes that doesn't have the chunk
(SELECT array_agg(node_name) FROM
(SELECT node_name FROM _timescaledb_catalog.hypertable_data_node hdn
WHERE hdn.hypertable_id = h.id
EXCEPT
SELECT node_name FROM _timescaledb_catalog.chunk_data_node cdn
WHERE cdn.chunk_id = c.id
ORDER BY node_name) nodes) AS non_replica_nodes
FROM _timescaledb_catalog.chunk c
INNER JOIN _timescaledb_catalog.chunk_data_node cdn ON (cdn.chunk_id = c.id)
INNER JOIN _timescaledb_catalog.hypertable h ON (h.id = c.hypertable_id)
GROUP BY h.id, c.id, hypertable_schema, hypertable_name, chunk_schema, chunk_name
ORDER BY h.id, c.id, hypertable_schema, hypertable_name, chunk_schema, chunk_name;
GRANT SELECT ON ALL TABLES IN SCHEMA timescaledb_experimental TO PUBLIC;
|
<reponame>cafagna/PostgreSQLWithNearestNeighbourJoin<filename>postgis-2.2.0/regress/cluster.sql
-- tests for ST_ClusterIntersecting and ST_ClusterWithin
CREATE TEMPORARY TABLE cluster_inputs (id int, geom geometry);
INSERT INTO cluster_inputs VALUES
(1, 'LINESTRING (0 0, 1 1)'),
(2, 'LINESTRING (5 5, 4 4)'),
(3, NULL),
(4, 'LINESTRING (0 0, -1 -1)'),
(5, 'LINESTRING (6 6, 7 7)'),
(6, 'POLYGON EMPTY'),
(7, 'POLYGON ((0 0, 4 0, 4 4, 0 4, 0 0))');
SELECT 't1', ST_AsText(unnest(ST_ClusterIntersecting(geom ORDER BY id))) FROM cluster_inputs;
SELECT 't2', ST_AsText(unnest(ST_ClusterIntersecting(ST_Accum(geom ORDER BY id)))) FROM cluster_inputs;
SELECT 't3', ST_AsText(unnest(ST_ClusterWithin(geom, 1.4 ORDER BY id))) FROM cluster_inputs;
SELECT 't4', ST_AsText(unnest(ST_ClusterWithin(ST_Accum(geom ORDER BY id), 1.5))) FROM cluster_inputs;
|
<reponame>opengauss-mirror/Yat
-- @testpoint:opengauss关键字types(非保留),作为表空间名
--关键字不带引号,创建成功
drop tablespace if exists types;
CREATE TABLESPACE types RELATIVE LOCATION 'hdfs_tablespace/hdfs_tablespace_1';
drop tablespace types;
--关键字带双引号,创建成功
drop tablespace if exists "types";
CREATE TABLESPACE "types" RELATIVE LOCATION 'hdfs_tablespace/hdfs_tablespace_1';
drop tablespace "types";
--关键字带单引号,合理报错
drop tablespace if exists 'types';
CREATE TABLESPACE 'types' RELATIVE LOCATION 'hdfs_tablespace/hdfs_tablespace_1';
--关键字带反引号,合理报错
drop tablespace if exists `types`;
CREATE TABLESPACE `types` RELATIVE LOCATION 'hdfs_tablespace/hdfs_tablespace_1';
|
-- phpMyAdmin SQL Dump
-- version 4.8.1
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Generation Time: Sep 30, 2019 at 09:56 AM
-- Server version: 8.0.11
-- PHP Version: 7.2.6
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
SET FOREIGN_KEY_CHECKS=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: `guoxue`
--
--
-- Dumping data for table `auth_policy`
--
INSERT INTO `auth_policy` (`id`, `ver`, `statements`, `create_time`, `update_time`, `name`, `note`, `cate`, `is_default_version`) VALUES
(5, 1, '[{\"Action\":\"Clients:*\",\"Resource\":\"*\",\"Effect\":\"Allow\"}]', 1545642993, 1545643105, 'ClientsFullAccess', '管理所有应用(CLIENTS)权限', 'system', 1),
(12, 1, '[{\"Action\":[\"Clients:test*\"],\"Resource\":\"Clients:*\",\"Effect\":\"Allow\",\"Condition\":{\"StringEquals\":{\"by:post_table\":\"asasi\"},\"DateGreaterThan\":{\"by:CurrentTime\":\"2018-12-25 10:53:00\"},\"IpAddress\":{\"by:SourceIp\":[\"192.168.3.11\",\"8.8.8.8\"]}}}]', 1545643279, 1545643279, 'DbhClientsTestDenyAccess', '管理所有应用(CLIENTS)权限', 'system', 1),
(13, 1, '[{\"Action\":\"*\",\"Resource\":\"*\",\"Effect\":\"Allow\"}]', 1545643417, 1545643417, 'DbhAdministratorAccess', '超级管理员权限', 'system', 1),
(14, 1, '[{\"Action\":\"Clients:*\",\"Resource\":\"*\",\"Effect\":\"Deny\"}]', 1545716754, 1545716754, 'DbhClientsTestAccess', '管理所有应用(CLIENTS)权限', 'system', 1),
(16, 1, '[{\"Action\":\"Auth*:*\",\"Resource\":\"*\",\"Effect\":\"Allow\"}]', 1547026949, 1547026949, 'DbhAuthAllAlow', '管理所有(Auth)', 'system', 1),
(18, 1, '[{\"Action\":\"UserLoginSession:*\",\"Resource\":\"*\",\"Effect\":\"Allow\"}]', 1547027264, 1547027264, 'DbhLoginAlow', '登录权限', 'system', 1),
(19, 1, '[{\"Action\":\"SecurityCode:*\",\"Resource\":\"*\",\"Effect\":\"Allow\"}]', 1547027313, 1547027313, 'DbhSecurityCodeAlow', '验证码权限', 'system', 1),
(21, 1, '[{\"Action\":\"Datatree:*\",\"Resource\":\"*\",\"Effect\":\"Allow\"}]', 1547027362, 1547027362, 'DbhDatatreeAlow', '数据字典权限', 'system', 1),
(22, 1, '[{\"Action\":\"Log:*\",\"Resource\":\"*\",\"Effect\":\"Allow\"}]', 1547027362, 1547538965, 'DbhLogAlow', '日志权限', 'system', 1),
(23, 1, '[{\"Action\":\"UserAccount:query\",\"Resource\":\"*\",\"Effect\":\"Allow\"}]', 1547634815, 1547634815, 'DbhUserAccountQueryAllow', '根据手机号查询用户', 'system', 1),
(24, 1, '[{\"Action\":\"Message:*\",\"Resource\":\"*\",\"Effect\":\"Allow\"}]', 1547705515, 1547705515, 'DbhMessageAllow', 'Mesage', 'system', 1),
(25, 1, '[{\"Action\":\"Config:*\",\"Resource\":\"*\",\"Effect\":\"Allow\"}]', 1547705515, 1547705515, 'DbhConfigAllow', 'Config', 'system', 1),
(26, 1, '[{\"Action\":\"Menu:*\",\"Resource\":\"*\",\"Effect\":\"Allow\"}]', 1547717699, 1547717699, 'DbhMenuAllow', 'Menu Resource ', 'system', 1),
(27, 1, '[{\"Action\":\"Album*:*\",\"Resource\":\"*\",\"Effect\":\"Allow\"}]', 1548136252, 1548139714, 'DbhAlbumAllAlow', 'Album Authority', 'system', 1),
(28, 1, '[{\"Action\":\"Banners:*\",\"Resource\":\"*\",\"Effect\":\"Allow\"}]', 1548472957, 1548472957, 'DbhBannersAllow', 'banners', 'system', 1),
(29, 1, '[{\"Action\":\"CmsArticle:*\",\"Resource\":\"*\",\"Effect\":\"Allow\"}]', 1551514464, 1551514464, 'CmsArticlePolicy', 'CmsArticle', 'system', 1),
(30, 1, '[{\"Action\":\"Sp*:*\",\"Resource\":\"*\",\"Effect\":\"Allow\"}]', 1551514464, 1551514464, 'SpAll', 'Shop All', 'system', 1),
(31, 1, '[{\"Action\":\"PayOrder:*\",\"Resource\":\"*\",\"Effect\":\"Allow\"}]', 1551514464, 1551514464, 'PayOrder', 'Pay Order', 'system', 1),
(32, 1, '[{\"Action\":\"GxOrder:*\",\"Resource\":\"*\",\"Effect\":\"Allow\"}]', 1551514464, 1551514464, 'GxOrder', 'GxOrder', 'system', 1),
(33, 1, '[{\"Action\":\"ProfitGraph:*\",\"Resource\":\"*\",\"Effect\":\"Allow\"}]', 1551514464, 1551514464, 'ProfitGraph', 'ProfitGraph', 'system', 1),
(35, 1, '[{\"Action\":\"Withdraw:*\",\"Resource\":\"*\",\"Effect\":\"Allow\"}]', 1551514464, 1551514464, 'Withdraw', 'Withdraw', 'system', 1),
(36, 1, '[{\"Action\":\"UserWallet:*\",\"Resource\":\"*\",\"Effect\":\"Allow\"}]', 1551514464, 1551514464, 'UserWallet', 'UserWallet', 'system', 1),
(37, 1, '[{\"Action\":\"UserBankCard:*\",\"Resource\":\"*\",\"Effect\":\"Allow\"}]', 1551514464, 1551514464, 'UserBankCard', 'UserBankCard', 'system', 1),
(38, 1, '[{\"Action\":\"UserIdCard:*\",\"Resource\":\"*\",\"Effect\":\"Allow\"}]', 1551514464, 1551514464, 'UserIdCard', 'UserIdCard', 'system', 1),
(39, 1, '[{\"Action\":\"LoginSession:logout\",\"Resource\":\"*\",\"Effect\":\"Allow\"}]', 1551514464, 1551514464, 'LoginSession', 'LoginSession', 'system', 1);
--
-- Dumping data for table `auth_policy_role`
--
INSERT INTO `auth_policy_role` (`role_id`, `policy_id`) VALUES
(1, 13),
(2, 18),
(2, 19),
(2, 32),
(2, 33),
(2, 35),
(2, 36),
(2, 37),
(2, 38),
(2, 39),
(3, 5),
(3, 18),
(3, 19);
--
-- Dumping data for table `auth_role`
--
INSERT INTO `auth_role` (`id`, `name`, `note`, `enable`) VALUES
(1, 'Administrator', 'Administrator', 1),
(2, 'Operator', 'Operator', 1),
(3, 'Base', 'Base', 1),
(12, '测试角色', '测试', 1);
--
-- Dumping data for table `auth_role_menu`
--
INSERT INTO `auth_role_menu` (`role_id`, `menu_id`) VALUES
(2, 2),
(2, 4),
(2, 23),
(2, 32),
(2, 33),
(2, 34),
(2, 35),
(2, 36);
--
-- Dumping data for table `auth_user_role`
--
INSERT INTO `auth_user_role` (`user_id`, `role_id`) VALUES
(2, 3),
(3, 2),
(3, 3),
(4, 2),
(4, 3);
--
-- Dumping data for table `common_clients`
--
INSERT INTO `common_clients` (`id`, `uid`, `client_id`, `client_name`, `client_secret`, `api_alg`, `project_id`, `create_time`, `update_time`, `total_limit`, `day_limit`, `user_private_key`, `user_public_key`, `sys_public_key`, `sys_private_key`) VALUES
(1, 2, 'by04esfH0fdc6Y', '基础', 'fcbe33277447fbd48343b68d1b3f8de0', 'nothing', 'P2', 1545300406, 1545384329, 0, 0, '', '', '', ''),
(8, 4, 'by04esfH0glASt', '接口', 'ee7c5016ee68051d9d3d9448ff3c89e7', 'nothing', 'P2', 1562999162, 1562999162, 0, 0, '<KEY>AKV9z31H9V8e94uA0MYjrr8he5pxv82YiQS3QEsU1Dtqb8ujmuVj4Mop67XhBbnY5KdeL2AdYV77FvtiSvHhfsT//pfcBYFMSGteuczqjAIH2skTsL4bp+NMIgFzAsgbxBCvdUy+LNChooWKDI1HQuVuCr3dW7aGRUroEF8JDWUZHKkYqVbWqp8/H0uscKF/Sh6XQItvhJKbxuuRb5xySrsueP8gSuJ47T7aQRc9L3oQ1Fm8iyU6iFYE98o1ph1eioiVcO0xd2Ma/ddtW3Bqcwx8SF8fdEFGJHhmE5d9bX6TwnzkfzC4l8L4ENjKf/V6gIh+bHgeO6RK1Hm+mqn5uwQKBgQDdON7wG91dGoG71IzZzzeg1FNbLaOWuBelpZeTLHz9vZPZG9qCI05Z0Ftlj/blSqEvFi9OliE3dE6z6hKRhJtB+PL68Lmxuq4LSrQQxmZmCaOfWoD2j9a4JOIONn8iSCgF8KMHrlM4q0XS+9Cf2uPQhEtiq1Fqamdg9nrrniRTiQKBgQDOz0A2nZPheMICXXCVwzz219tfWC3209AosCFThrq7/lW6dSWJBCm+Y8hO4LVd6v7q9fSgBGqCuG1PW1WHJDY8uWc+9w/vXvFT7G9KiYn4GD8ZKGhpN27TmoTQ2cFI9TjI0S4w/mruobXyzNkWY/DyVhX7LkxCedx0xk2Hs7iF9wKBgAYP/OwPl21pwIxpMsL1Tsz1hKNHCOikeuFrPFAoM/SwMVEN1lsipI8JirepzlZSSUCFFx7MNnTSlyWPEJs0SxzvuZju5+fa+dINZgnfpga91OIVFNus7XF2cUt6atmBqLcg9RbMzDMNXoh9piX7VartNTOrBjwoVlTt7EhwuQYhAoGAEtujJ1fHHFA+oKiUk5NyA7A7OL55soAuAwfMgilO7cWLW61C9vOCOvIuWcLzxtSe2h4DaHP+olze2tWhPul2aKMfXwZ4VYN6zgRJQaq5Af50An9ExhNf77uvULwKe/SgcO9iHuWUKp5kUPeM9BW46uAesQDPw2AJUjyi5TTmJpECgYEApkR5l01Wo9i6yKkwqDO8g2wsXK84ASC5vFJUXpiukmBQ0aZAHZUlI7ZvxKh4FgXTFR/dg0E8gIURCaoo5kgPpxJ9U0tfdhhzu2TTOFkEsfXXQpk7w8036aXlEWyqSAVDDhAD3YHMwlU5yrDmENQSIGQcHFXPB1ICkA6WSI2LGBM=', '<KEY>', '<KEY>', '<KEY>),
(9, 3, 'by04esfH0glAa1', '普通管理员', '7e4bb4955864d558a82ce0f0dfce2805', 'nothing', 'P2', 1562999604, 1562999604, 0, 0, 'MIIEvwIBADANBgkqhkiG9w0BAQEFAASCBKkwggSlAgEAAoIBAQDDJr7wn807BFLNYU4VPkAala185a5HCx3QO4nBCRuA1xvWXLjMpRM6ThBHObTBBrCsW8tyo2CcWfrPC707BFlCPIeXj6MRg4ztkX/48o/HVU7tMxnOW/zJAFjPXxnlKAPTd1xdfIpJY5UDsbVQrehLEy+FrlrL6rKhc7AYPpRJsWCJUeGzKOgmBwbUQSW0t2/RmHKPSA0+ajMk/Yz5vGpay7hbsX6HiVCJHBkuyDgp5o4pDNFX7xPwazfPuhWIflqtTH7MJKcQDnhwAMmlDOCwWaO9il4h4dZkCL8qFMB6pew0/HGMnuwq50JJn2M+vWNWaueHf/3K8KG/wXCeCaYJAgMBAAECggEAPLKwcOdDTjfqCTdasgDKr3oem9pUeoRaoYnjLsdGZqyBXAs672vorxnYtk6cie0qxnFGtkFaq0bRW9Sq5tBTcuagxeNHNQtVqg63XxcS4U0HX3+lZyn1Vg9lkBpkU4I+rmdRs0IpQOpYTu3XF2D//1nYThwM4Z/+L3lsLB5KwSB/eQPEWQZGRxirgv3cmMz+gGjxcKGAHyhvevbofqmM4+p7vcnMwc16d5NHNymmChhVjzinTJYFHzs+QxM0s17trh/4lXeWsSuV4JvzRg53CXDpZlPAJ6WY09VdJALTajcsZa6PMQgs+PCcdfjuELsxwnSKXNMGJh5fRNdMourQAQKBgQDiLzhah027x4+uY3qqDRPP2oMZX1cCPNfaJrxcMryMxLPxPORayWVA0YI1Wnh6zKLIVvfdrHYTbIpVntfn3FUpsbEusd2wUEuFWfB269H6C+El5jk9K/KomSoywrQ12+OMf0cEOOGNr4ctgFReunatTb2PGjo+h+D+AqEuoRohWQKBgQDc4EnJhb6l+M2ETOPTYf4ob/T5N73LGSzjmbQV+2ts48PJ1GIbKE+C/o/bqRkeX0tpscCs31luxCze/zt/+eE9rd8lorbvzppFUbh2d0yezpGS2VyztMHCkm1n6mREIG9NQzwyqD5mGo05rUteatdbo7mkkRKrp+CNMWOOBEbkMQKBgQDLNL89Xffxb53ff9JResRE5j0IC4bBJOaMQGbTsmWBVquPXTSPeAa20ENaKbi6IqVQtgmkJ3BBjS9PMxEoZuRAPDtCB1xzLgBbgu0t+jnAmvGhOhBMq/IrlMe7qP98r9vkeujTm0LRJ1ScBYJHROCgXIqkSVzwluUFcFlc6jHuqQKBgQCU5c5YQAUptfQ1v+/FzEWd1Pt8FguoIqyUMkWom/jrSw/tu3L3g9E2KY2pMvFv/CXGdsHAyEBt32mwWrctqrIg9ll78ZkJSGnPWSvVEM9iLzcLm+RWcQA9vqBqcSRumL7vgufN7oVCJ5wUybIJUFUlvdWkDvhbJ6zFAgpu7osrwQKBgQCXxplQ8yiG1/NE8WUKdT5TiVrXZid082PkV7mNWpNCSdJiwpUOi80IuVk+Tyy6BqVmX320PfA2+M+5HLNyB09+L838AvN4jpIZD5jRo9GjdN9wL8OlHiUvyd9uMMklqZcvX0Kg9r8JDv6Zg+hB9QfrxSS2gzJDdp2Eb9Ap/FgSvQ==', '<KEY>', '<KEY>', '<KEY>');
--
-- Dumping data for table `common_config`
--
INSERT INTO `common_config` (`id`, `name`, `project_id`, `type`, `title`, `cate`, `extra`, `remark`, `create_time`, `update_time`, `status`, `value`, `sort`) VALUES
(1, 'WEBSITE_TITLE', 'a', 1, '网站标题2', '1', '', '网站标题前台显示标题3', 1378898976, 1547714096, 1, '管理平台', 4),
(9, 'CONFIG_TYPE_LIST', 'a', 3, '配置类型列表', '4', '', '主要用于数据解析和页面表单的生成', 1378898976, 1435743903, 1, '0:数字\r\n1:字符\r\n2:文本\r\n3:数组\r\n4:枚举\r\n5:图片', 2),
(10, 'WEBSITE_ICP', 'a', 1, '网站备案号', '1', '', '设置在网站底部显示的备案号,如“沪ICP备120079号-2', 1378900335, 1379235859, 1, '', 9),
(20, 'CONFIG_GROUP_LIST', 'a', 3, '配置分组', '4', ' e', '配置分组', 1379228036, 1491124301, 1, '1:基本\r\n2:内容\r\n4:系统\r\n7:支付\r\n8:邮件\r\n11:APP推送\r\n6:APP通用\r\n12:Android\r\n13:IOS \r\n14:API配置\r\n15:短信', 1),
(39, 'WEBSITE_OWNER', 'a', 1, '网站拥有者', '1', '', '当前网站拥有者或是开发者', 1419415563, 1419415563, 1, '管理平台', 1),
(41, 'APP_VERSION', 'a', 0, '程序版本', '4', '', '程序版本主版本+大改动+小改动', 1419496611, 1419496611, 1, '1.0.0', 5),
(42, 'UCENTER_PLATFORM', 'a', 2, '管理平台名称', '1', '', '', 1420006808, 1547714259, 1, '', 1),
(54, 'ALIPAY_API', 'a', 3, '支付宝API', '7', '', '', 1441857154, 1553246925, 1, 'app_id:2016092800613314\nnotify_url:http://apidev.xxx.cn/index.php/alipay/notify\nreturn_url:http://apidev.xxx.cn/index.php/alipay/show\nali_public_key:<KEY> <KEY>', 0),
(57, 'CUSTOMER_PHONE', 'a', 3, '客服电话', '13', '', '手机端在线电话', 1444982224, 1476771344, 1, 'tel:400-863-9156\r\nname: XXX', 0),
(65, 'FILTRATION_KEYWORDS', 'a', 2, '过滤关键词', '1', '', '过滤关键词', 1459935711, 1460167342, 1, '', 0),
(67, 'ANDROID_VERSION', 'a', 0, 'android版本', '12', '', 'app版本', 1459935711, 1478328548, 1, '1000', 0),
(68, 'APP_DOWNLOAD_URL', 'a', 2, 'APP下载地址', '13', '', '下载地址', 1459935711, 1478328433, 1, 'https://apidev.asasi.com/appdownload.php', 0),
(70, 'ANDROID_UPDATE_LOG', 'a', 2, 'android更新日志', '12', '', '版本更新日志', 1459935711, 1478328032, 1, '', 0),
(73, 'ANDROID_PAY_TYPE', 'a', 3, 'asasi安卓支付方式', '12', '', '', 1466133249, 1466133249, 1, '1:支付宝支付\r\n2:微信支付\r\n3:余额支付', 0),
(79, 'smtp_username', 'a', 1, '发送邮件地址', '8', '', '系统用此邮箱作为发送方', 1488351856, 1488351856, 1, '<EMAIL>', 0),
(80, 'smtp_password', 'a', 1, '发送方邮件密码', '8', '', '', 1488351894, 1488353622, 1, 'xxxasasi2017', 0),
(81, 'smtp_port', 'a', 1, 'smtp端口', '8', '', '', 1488353646, 1488353646, 1, '80', 0),
(82, 'smtp_send_email', 'a', 1, 'smtp发送方邮件完整地址', '8', '', 'smtp发送方邮件完整地址(例如: <EMAIL>)', 1488355460, 1488355521, 1, '<EMAIL>', 0),
(83, 'smtp_sender_name', 'a', 1, '发送方称谓', '8', '', '发送方称谓', 1488355502, 1488355566, 1, '股份有限公司', 0),
(84, 'smtp_host', 'a', 1, '邮件服务器地址', '8', '', '邮件服务器的地址', 1488437581, 1488437581, 1, 'smtpdm.aliyun.com', 0),
(85, 'login_session_expire_time', 'a', 0, '系统通用会话过期时间', '1', '', '', 1489212177, 1489212177, 1, '7200', 0),
(90, 'admin_email', 'a', 1, '系统管理员邮箱', '4', '', '系统管理员邮箱', 1491449513, 1491449513, 1, '', 0),
(92, 'sys_default_password', 'a', 1, '系统中用户默认密码', '1', '', '系统中用户默认密码,长度控制8-24最佳', 1492066573, 1492066761, 1, 'it<PASSWORD>5678', 0),
(95, 'umeng_ios_asasi', 'a', 3, '(ios)', '11', '', '(ios)', 1511579884, 1547715078, 1, 'alias_type:asasi.asasiyiyuan\r\ndevice_type:ios\r\nappkey:5a55bc52f29d9846e9000101\r\nsecret:adz5mrun5krfgtgjkzdgsijpgwwetpen\r\nproduction_mode:true', 0),
(96, 'umeng_android_asasi', 'a', 3, '安卓', '11', '', '(安卓)', 1511579928, 1547715085, 1, 'alias_type:asasiyiyuan\r\ndevice_type:android\r\nappkey:5a4365e68f4a9d0f6c00000c\r\nsecret:adn9lbe7va9fpg58yysc0huphx7wrygn\r\nproduction_mode:true', 0),
(153, 'code_sms_juhe', 'a', 3, '通用验证码', '15', '', '聚合短信', 1516010379, 1516010379, 1, 'app_key:847ef926829b6b248ef7653e57305ab2\r\ntpl_id:164289', 1),
(155, 'code_sms_qcloud', 'a', 3, 'test', '15', '', 'test', 1515984412, 1515984412, 1, 'app_key:test2\r\ntpl_id:test', 1),
(158, 'sys_default_user_group', 'a', 0, '默认注册用户所属组', '1', '', '', 0, 0, 0, '15', 0),
(161, 'sys_random_avatar', 'a', 1, '注册时随机系统头像', '4', '', '注册时随机系统头像', 0, 0, 0, '87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102', 0),
(163, 'IOS_VERSION', 'a', 1, 'ios最新版本', '13', '', '', 0, 0, 0, '1.0.0', 0),
(164, 'IOS_DOWNLOAD_URL', 'a', 2, 'IOS新版下载地址', '13', '', '', 0, 0, 0, 'taobao://taobao.com', 0),
(165, 'wx_open_config', 'a', 3, '微信开放平台配置', '14', '', '微信开放平台配置', 0, 0, 0, 'app_id:wx49cccd968b96ff87\r\napp_secret:81c1a9b79d9c3426fabc17fbdec38cb0\r\ncallback:http://asasi.xxx.com/callback.php/wx_login_callback/index', 0),
(167, 'code_sms_alert', 'a', 3, '直接返回', '15', '', '直接返回', 1516010379, 1516010379, 1, 'app_key:52ad13f9d647a730e11ff34dc6511d90\r\ntpl_id:106943', 5),
(170, 'SYS_BRAND', 'a', 1, '平台名称', '1', '', '平台名称', 1378898976, 1547714096, 1, 'DBH', 4),
(171, 'CONFIG_VERSION', 'a', 1, '配置版本', '1', '', '用于远程获取配置判断是否更新过,递增值', 1378898976, 1547714096, 1, '10000', 4),
(172, 'SYS_BRAND', 'P2', 1, '平台名称', '1', '', '平台名称', 1378898976, 1547714096, 1, 'DBH', 4),
(173, 'CONFIG_VERSION', 'P2', 1, '配置版本', '1', '', '用于远程获取配置判断是否更新过,递增值', 1378898976, 1547714096, 1, '10000', 4),
(174, 'WEBSITE_TITLE', 'P2', 1, '网站标题2', '1', '', '网站标题前台显示标题3', 1378898976, 1547714096, 1, '管理平台', 4),
(175, 'CONFIG_TYPE_LIST', 'P2', 3, '配置类型列表', '4', '', '主要用于数据解析和页面表单的生成', 1378898976, 1435743903, 1, '0:数字\r\n1:字符\r\n2:文本\r\n3:数组\r\n4:枚举\r\n5:图片', 2),
(176, 'WEBSITE_ICP', 'P2', 1, '网站备案号', '1', '', '设置在网站底部显示的备案号,如“沪ICP备12007941号-2', 1378900335, 1379235859, 1, '', 9),
(177, 'CONFIG_GROUP_LIST', 'P2', 3, '配置分组', '4', ' e', '配置分组', 1379228036, 1491124301, 1, '1:基本\r\n2:内容\r\n4:系统\r\n7:支付\r\n8:邮件\r\n11:APP推送\r\n6:APP通用\r\n12:Android\r\n13:IOS \r\n14:API配置\r\n15:短信', 1),
(178, 'WEBSITE_OWNER', 'P2', 1, '网站拥有者', '1', '', '当前网站拥有者或是开发者', 1419415563, 1419415563, 1, '管理平台', 1),
(179, 'APP_VERSION', 'P2', 0, '程序版本', '4', '', '程序版本主版本+大改动+小改动', 1419496611, 1419496611, 1, '1.0.0', 5),
(180, 'UCENTER_PLATFORM', 'P2', 2, '管理平台名称', '1', '', '', 1420006808, 1547714259, 1, '', 1),
(181, 'ALIPAY_API', 'P2', 3, '支付宝API', '7', '', '', 1441857154, 1553246925, 1, 'app_id:333\nnotify_url:http://apidev.xxx.cn/index.php/alipay/notify\nreturn_url:http://apidev.xxx.cn/index.php/alipay/show\nali_public_key:<KEY>', 0),
(182, 'CUSTOMER_PHONE', 'P2', 3, '客服电话', '13', '', '手机端在线电话', 1444982224, 1476771344, 1, 'tel:400-00-000-000\r\nname: XXX', 0),
(183, 'FILTRATION_KEYWORDS', 'P2', 2, '过滤关键词', '1', '', '过滤关键词', 1459935711, 1460167342, 1, '', 0),
(184, 'ANDROID_VERSION', 'P2', 0, 'android版本', '12', '', 'app版本', 1459935711, 1478328548, 1, '1000', 0),
(185, 'APP_DOWNLOAD_URL', 'P2', 2, 'APP下载地址', '13', '', '下载地址', 1459935711, 1478328433, 1, 'https://apidev.asasi.com/appdownload.php', 0),
(186, 'ANDROID_UPDATE_LOG', 'P2', 2, 'android更新日志', '12', '', '版本更新日志', 1459935711, 1478328032, 1, '', 0),
(187, 'ANDROID_PAY_TYPE', 'P2', 3, 'asasi安卓支付方式', '12', '', '', 1466133249, 1466133249, 1, '1:支付宝支付\r\n2:微信支付\r\n3:余额支付', 0),
(188, 'smtp_username', 'P2', 1, '发送邮件地址', '8', '', '系统用此邮箱作为发送方', 1488351856, 1488351856, 1, '@<EMAIL>', 0),
(189, 'smtp_password', 'P2', 1, '发送方邮件密码', '8', '', '', 1488351894, 1488353622, 1, 'aliyun2017', 0),
(190, 'smtp_port', 'P2', 1, 'smtp端口', '8', '', '', 1488353646, 1488353646, 1, '80', 0),
(191, 'smtp_send_email', 'P2', 1, 'smtp发送方邮件完整地址', '8', '', 'smtp发送方邮件完整地址(例如: <EMAIL>)', 1488355460, 1488355521, 1, '<EMAIL>', 0),
(192, 'smtp_sender_name', 'P2', 1, '发送方称谓', '8', '', '发送方称谓', 1488355502, 1488355566, 1, '股份有限公司', 0),
(193, 'smtp_host', 'P2', 1, '邮件服务器地址', '8', '', '邮件服务器的地址', 1488437581, 1488437581, 1, 'smtpdm.aliyun.com', 0),
(194, 'login_session_expire_time', 'P2', 0, '系统通用会话过期时间', '1', '', '', 1489212177, 1489212177, 1, '7200', 0),
(195, 'admin_email', 'P2', 1, '系统管理员邮箱', '4', '', '系统管理员邮箱', 1491449513, 1491449513, 1, '', 0),
(196, 'sys_default_password', 'P2', 1, '系统中用户默认密码', '1', '', '系统中用户默认密码,长度控制8-24最佳', 1492066573, 1492066761, 1, 'it12345678', 0),
(197, 'umeng_ios_asasi', 'P2', 3, '(ios)', '11', '', '(ios)', 1511579884, 1547715078, 1, 'alias_type:asasi.asasiyiyuan\r\ndevice_type:ios\r\nappkey:5a55bc52f29d9846e9000101\r\nsecret:adz5mrun5krfgtgjkzdgsijpgwwetpen\r\nproduction_mode:true', 0),
(198, 'umeng_android_asasi', 'P2', 3, '安卓', '11', '', '(安卓)', 1511579928, 1547715085, 1, 'alias_type:asasiyiyuan\r\ndevice_type:android\r\nappkey:5a4365e68f4a9d0f6c00000c\r\nsecret:adn9lbe7va9fpg58yysc0huphx7wrygn\r\nproduction_mode:true', 0),
(199, 'code_sms_juhe', 'P2', 3, '通用验证码', '15', '', '聚合短信', 1516010379, 1516010379, 1, 'app_key:847ef926829b6b248ef7653e57305ab2\r\ntpl_id:164289', 1),
(200, 'code_sms_qcloud', 'P2', 3, 'test', '15', '', 'test', 1515984412, 1515984412, 1, 'app_key:test2\r\ntpl_id:test', 1),
(201, 'sys_default_user_group', 'P2', 0, '默认注册用户所属组', '1', '', '', 0, 0, 0, '15', 0),
(202, 'sys_random_avatar', 'P2', 1, '注册时随机系统头像', '4', '', '注册时随机系统头像', 0, 0, 0, '87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102', 0),
(203, 'IOS_VERSION', 'P2', 1, 'ios最新版本', '13', '', '', 0, 0, 0, '1.0.0', 0),
(204, 'IOS_DOWNLOAD_URL', 'P2', 2, 'IOS新版下载地址', '13', '', '', 0, 0, 0, 'taobao://taobao.com', 0),
(205, 'wx_open_config', 'P2', 3, '微信开放平台配置', '14', '', '微信开放平台配置', 0, 0, 0, 'app_id:wx49cccd968b96ff87\r\napp_secret:81c1a9b79d9c3426fabc17fbdec38cb0\r\ncallback:http://asasi.xxx.com/callback.php/wx_login_callback/index', 0),
(206, 'code_sms_alert', 'P2', 3, '直接返回', '15', '', '直接返回', 1516010379, 1516010379, 1, 'app_key:52ad13f9d647a730e11ff34dc6511d90\r\ntpl_id:106943', 5),
(207, 'gx_config', 'P2', 3, 'guoxue全局配置', '14', '', 'guoxue全局配置', 1516010379, 1516010379, 1, 'max_income:5900000\r\nplatform_fixed_profit:99\r\npay_fee:0.005\r\nvip1:499\r\nvip_upgrade:200', 1);
--
-- Dumping data for table `common_country`
--
INSERT INTO `common_country` (`id`, `name`, `code`, `tel_prefix`, `py`) VALUES
(1, '中国中国', 'ZH', '+86', 'ZG'),
(2, '阿尔巴尼亚', 'ALB', '+355', 'AEBNY'),
(3, '阿尔及利亚', 'DZA', '+213', 'AEJLY'),
(4, '阿富汗', 'AFG', '+93', 'AFH'),
(5, '阿根廷', 'ARG', '+54', 'AGT'),
(6, '阿拉伯联合酋长国', 'ARE', '+971', 'ALBLHQCG'),
(7, '阿鲁巴', 'ABW', '+297', 'ALB'),
(8, '阿曼', 'OMN', '+968', 'AM'),
(9, '阿塞拜疆', 'AZE', '+994', 'ASBJ'),
(10, '阿森松岛', 'ASC', '+247', 'ASSD'),
(11, '埃及', 'EGY', '+20', 'AJ'),
(12, '埃塞俄比亚', 'ETH', '+251', 'ASEBY'),
(13, '爱尔兰', 'IRL', '+353', 'AEL'),
(14, '爱沙尼亚', 'EST', '+372', 'ASNY'),
(15, '安道尔', 'AND', '+376', 'ADE'),
(16, '安哥拉', 'AGO', '+244', 'AGL'),
(17, '安圭拉', 'AIA', '+1264', 'AGL'),
(18, '安提瓜岛和巴布达', 'ATG', '+1268', 'ATGDHBBD'),
(19, '澳大利亚', 'AUS', '+61', 'ADLY'),
(20, '奥地利', 'AUT', '+43', 'ADL'),
(21, '奥兰群岛', 'ALA', '+358', 'ALQD'),
(22, '巴巴多斯岛', 'BRB', '+1246', 'BBDSD'),
(23, '巴布亚新几内亚', 'PNG', '+675', 'BBYXJNY'),
(24, '巴哈马', 'BHS', '+1242', 'BHM'),
(25, '巴基斯坦', 'PAK', '+92', 'BJST'),
(26, '巴拉圭', 'PRY', '+595', 'BLG'),
(27, '巴勒斯坦', 'PSE', '+970', 'BLST'),
(28, '巴林', 'BHR', '+973', 'BL'),
(29, '巴拿马', 'PAN', '+507', 'BNM'),
(30, '巴西', 'BRA', '+55', 'BX'),
(31, '白俄罗斯', 'BLR', '+375', 'BELS'),
(32, '百慕大', 'BMU', '+1441', 'BMD'),
(33, '保加利亚', 'BGR', '+359', 'BJLY'),
(34, '北马里亚纳群岛', 'MNP', '+1670', 'BMLYNQD'),
(35, '贝宁', 'BEN', '+229', 'BN'),
(36, '比利时', 'BEL', '+32', 'BLS'),
(37, '冰岛', 'ISL', '+354', 'BD'),
(38, '波多黎各', 'PRI', '+1809', 'BDLG'),
(39, '波兰', 'POL', '+48', 'BL'),
(40, '玻利维亚', 'BOL', '+591', 'BLWY'),
(41, '波斯尼亚和黑塞哥维那', 'BIH', '+387', 'BSNYHHSGWN'),
(42, '博茨瓦纳', 'BWA', '+267', 'BCWN'),
(43, '伯利兹', 'BLZ', '+501', 'BLZ'),
(44, '不丹', 'BTN', '+975', 'BD'),
(45, '布基纳法索', 'BFA', '+226', 'BJNFS'),
(46, '布隆迪', 'BDI', '+257', 'BLD'),
(47, '布韦岛', 'BVT', '+00', 'BWD'),
(48, '朝鲜', 'PRK', '+850', 'CX'),
(49, '丹麦', 'DNK', '+45', 'DM'),
(50, '德国', 'DEU', '+49', 'DG'),
(51, '东帝汶', 'TLS', '+670', 'DDZ'),
(52, '多哥', 'TGO', '+228', 'DG'),
(53, '多米尼加', 'DMA', '+', 'DMNJ'),
(54, '多米尼加共和国', 'DOM', '+1809', 'DMNJGHG'),
(55, '俄罗斯', 'RUS', '+7', 'ELS'),
(56, '厄瓜多尔', 'ECU', '593', 'EGDE'),
(57, '厄立特里亚', 'ERI', '+291', 'ELTLY'),
(58, '法国', 'FRA', '+33', 'FG'),
(59, '法罗群岛', 'FRO', '+298', 'FLQD'),
(60, '法属波利尼西亚', 'PYF', '+689', 'FSBLNXY'),
(61, '法属圭亚那', 'GUF', '+594', 'FSGYN'),
(62, '法属南部领地', 'ATF', '+00', 'FSNBLD'),
(63, '梵蒂冈', 'VAT', '+3906698', 'ZDG'),
(64, '菲律宾', 'PHL', '+63', 'FLB'),
(65, '斐济', 'FJI', '+679', 'ZJ'),
(66, '芬兰', 'FIN', '+358', 'FL'),
(67, '佛得角', 'CPV', '+238', 'FDJ'),
(68, '弗兰克群岛', 'FLK', '+', 'FLKQD'),
(69, '冈比亚', 'GMB', '+220', 'GBY'),
(70, '刚果', 'COG', '+242', 'GG'),
(71, '刚果民主共和国', 'COD', '+243', 'GGMZGHG'),
(72, '哥伦比亚', 'COL', '+57', 'GLBY'),
(73, '哥斯达黎加', 'CRI', '+506', 'GSDLJ'),
(74, '格恩西岛', 'GGY', '+', 'GEXD'),
(75, '格林纳达', 'GRD', '+1473', 'GLND'),
(76, '格陵兰', 'GRL', '+299', 'GLL'),
(77, '古巴', 'CUB', '+53', 'GB'),
(78, '瓜德罗普', 'GLP', '+590', 'GDLP'),
(79, '关岛', 'GUM', '+1671', 'GD'),
(80, '圭亚那', 'GUY', '+592', 'GYN'),
(81, '哈萨克斯坦', 'KAZ', '+7', 'HSKST'),
(82, '海地', 'HTI', '+509', 'HD'),
(83, '韩国', 'KOR', '+82', 'HG'),
(84, '荷兰', 'NLD', '+31', 'HL'),
(85, '荷属安地列斯', 'ANT', '+', 'HSADLS'),
(86, '赫德和麦克唐纳群岛', 'HMD', '+', 'HDHMKTNQD'),
(87, '洪都拉斯', 'HND', '+504', 'HDLS'),
(88, '基里巴斯', 'KIR', '+686', 'JLBS'),
(89, '吉布提', 'DJI', '+253', 'JBT'),
(90, '吉尔吉斯斯坦', 'KGZ', '+996', 'JEJSST'),
(91, '几内亚', 'GIN', '+224', 'JNY'),
(92, '几内亚比绍', 'GNB', '+245', 'JNYBS'),
(93, '加拿大', 'CAN', '+1', 'JND'),
(94, '加纳', 'GHA', '+233', 'JN'),
(95, '加蓬', 'GAB', '+241', 'JP'),
(96, '柬埔寨', 'KHM', '+855', 'JPZ'),
(97, '捷克共和国', 'CZE', '+420', 'JKGHG'),
(98, '津巴布韦', 'ZWE', '+263', 'JBBW'),
(99, '喀麦隆', 'CMR', '+237', 'KML'),
(100, '卡塔尔', 'QAT', '+974', 'KTE'),
(101, '开曼群岛', 'CYM', '+1345', 'KMQD'),
(102, '科科斯群岛', 'CCK', '+61-891', 'KKSQD'),
(103, '科摩罗', 'COM', '+269', 'KML'),
(104, '科特迪瓦', 'CIV', '+225', 'KTDW'),
(105, '科威特', 'KWT', '+965', 'KWT'),
(106, '克罗地亚', 'HRV', '+385', 'KLDY'),
(107, '肯尼亚', 'KEN', '+254', 'KNY'),
(108, '库克群岛', 'COK', '+682', 'KKQD'),
(109, '拉脱维亚', 'LVA', '+371', 'LTWY'),
(110, '莱索托', 'LSO', '+266', 'LST'),
(111, '老挝', 'LAO', '+856', 'LW'),
(112, '黎巴嫩', 'LBN', '+961', 'LBN'),
(113, '利比里亚', 'LBR', '+231', 'LBLY'),
(114, '利比亚', 'LBY', '+218', 'LBY'),
(115, '立陶宛', 'LTU', '+370', 'LTW'),
(116, '列支敦士登', 'LIE', '+423', 'LZDSD'),
(117, '留尼旺岛', 'REU', '+262', 'LNWD'),
(118, '卢森堡', 'LUX', '+352', 'LSB'),
(119, '卢旺达', 'RWA', '+250', 'LWD'),
(120, '罗马尼亚', 'ROU', '+40', 'LMNY'),
(121, '马达加斯加', 'MDG', '+261', 'MDJSJ'),
(122, '马尔代夫', 'MDV', '+960', 'MEDF'),
(123, '马耳他', 'MLT', '+356', 'MET'),
(124, '马拉维', 'MWI', '+265', 'MLW'),
(125, '马来西亚', 'MYS', '+60', 'MLXY'),
(126, '马里', 'MLI', '+223', 'ML'),
(127, '马其顿', 'MKD', '+389', 'MQD'),
(128, '马绍尔群岛', 'MHL', '+692', 'MSEQD'),
(129, '马提尼克', 'MTQ', '+596', 'MTNK'),
(130, '马约特岛', 'MYT', '+269', 'MYTD'),
(131, '曼岛', 'IMN', '+44-1624', 'MD'),
(132, '毛里求斯', 'MUS', '+230', 'MLQS'),
(133, '毛里塔尼亚', 'MRT', '+222', 'MLTNY'),
(134, '美国', 'USA', '+1', 'MG'),
(135, '美属萨摩亚', 'ASM', '+1684', 'MSSMY'),
(136, '美属外岛', 'UMI', '+', 'MSWD'),
(137, '蒙古', 'MNG', '+976', 'MG'),
(138, '蒙特塞拉特', 'MSR', '+1664', 'MTSLT'),
(139, '孟加拉', 'BGD', '+880', 'MJL'),
(140, '密克罗尼西亚', 'FSM', '+00691', 'MKLNXY'),
(141, '秘鲁', 'PER', '+51', 'ML'),
(142, '缅甸', 'MMR', '+95', 'MD'),
(143, '摩尔多瓦', 'MDA', '+373', 'MEDW'),
(144, '摩洛哥', 'MAR', '+212', 'MLG'),
(145, '摩纳哥', 'MCO', '+377', 'MNG'),
(146, '莫桑比克', 'MOZ', '+258', 'MSBK'),
(147, '墨西哥', 'MEX', '+52', 'MXG'),
(148, '纳米比亚', 'NAM', '+264', 'NMBY'),
(149, '南非', 'ZAF', '+27', 'NF'),
(150, '南极洲', 'ATA', '+672', 'NJZ'),
(151, '南乔治亚和南桑德威奇群岛', 'SGS', '+', 'NQZYHNSDWQQD'),
(152, '瑙鲁', 'NRU', '+674', 'ZL'),
(153, '尼泊尔', 'NPL', '+977', 'NBE'),
(154, '尼加拉瓜', 'NIC', '+505', 'NJLG'),
(155, '尼日尔', 'NER', '+227', 'NRE'),
(156, '尼日利亚', 'NGA', '+234', 'NRLY'),
(157, '纽埃', 'NIU', '+683', 'NA'),
(158, '挪威', 'NOR', '+47', 'NW'),
(159, '诺福克', 'NFK', '+672', 'NFK'),
(160, '帕劳群岛', 'PLW', '+', 'PLQD'),
(161, '皮特凯恩', 'PCN', '+', 'PTKE'),
(162, '葡萄牙', 'PRT', '+351', 'PTY'),
(163, '乔治亚', 'GEO', '+', 'QZY'),
(164, '日本', 'JPN', '+81', 'RB'),
(165, '瑞典', 'SWE', '+46', 'RD'),
(166, '瑞士', 'CHE', '+41', 'RS'),
(167, '萨尔瓦多', 'SLV', '+503', 'SEWD'),
(168, '萨摩亚', 'WSM', '+684', 'SMY'),
(169, '塞尔维亚,黑山', 'SCG', '+381', 'SEWY,HS'),
(170, '塞拉利昂', 'SLE', '+232', 'SLLA'),
(171, '塞内加尔', 'SEN', '+221', 'SNJE'),
(172, '塞浦路斯', 'CYP', '+357', 'SPLS'),
(173, '塞舌尔', 'SYC', '+248', 'SSE'),
(174, '沙特阿拉伯', 'SAU', '+966', 'STALB'),
(175, '圣诞岛', 'CXR', '+619164', 'SDD'),
(176, '圣多美和普林西比', 'STP', '+239', 'SDMHPLXB'),
(177, '圣赫勒拿', 'SHN', '+290', 'SHLN'),
(178, '圣基茨和尼维斯', 'KNA', '+1869', 'SJCHNWS'),
(179, '圣卢西亚', 'LCA', '+1758', 'SLXY'),
(180, '圣马力诺', 'SMR', '+378', 'SMLN'),
(181, '圣皮埃尔和米克隆群岛', 'SPM', '+', 'SPAEHMKLQD'),
(182, '圣文森特和格林纳丁斯', 'VCT', '+1784', 'SWSTHGLNDS'),
(183, '斯里兰卡', 'LKA', '+94', 'SLLK'),
(184, '斯洛伐克', 'SVK', '+421', 'SLFK'),
(185, '斯洛文尼亚', 'SVN', '+386', 'SLWNY'),
(186, '斯瓦尔巴和扬马廷', 'SJM', '+', 'SWEBHYMT'),
(187, '斯威士兰', 'SWZ', '+268', 'SWSL'),
(188, '苏丹', 'SDN', '+249', 'SD'),
(189, '苏里南', 'SUR', '+597', 'SLN'),
(190, '所罗门群岛', 'SLB', '+677', 'SLMQD'),
(191, '索马里', 'SOM', '+252', 'SML'),
(192, '塔吉克斯坦', 'TJK', '+992', 'TJKST'),
(193, '泰国', 'THA', '+66', 'TG'),
(194, '坦桑尼亚', 'TZA', '+255', 'TSNY'),
(195, '汤加', 'TON', '+676', 'TJ'),
(196, '特克斯和凯克特斯群岛', 'TCA', '+', 'TKSHKKTSQD'),
(197, '特里斯坦达昆哈', 'TAA', '+', 'TLSTDKH'),
(198, '特立尼达和多巴哥', 'TTO', '+1868', 'TLNDHDBG'),
(199, '突尼斯', 'TUN', '+216', 'TNS'),
(200, '图瓦卢', 'TUV', '+688', 'TWL'),
(201, '土耳其', 'TUR', '+90', 'TEQ'),
(202, '土库曼斯坦', 'TKM', '+993', 'TKMST'),
(203, '托克劳', 'TKL', '+690', 'TKL'),
(204, '瓦利斯和福图纳', 'WLF', '+690', 'WLSHFTN'),
(205, '瓦努阿图', 'VUT', '+678', 'WNAT'),
(206, '危地马拉', 'GTM', '+502', 'WDML'),
(207, '维尔京群岛美属', 'VIR', '+1-340', 'W'),
(208, '维尔京群岛英属', 'VGB', '+1-284', 'W'),
(209, '委内瑞拉', 'VEN', '+58', 'WNRL'),
(210, '文莱', 'BRN', '+673', 'WL'),
(211, '乌干达', 'UGA', '+256', 'WGD'),
(212, '乌克兰', 'UKR', '+380', 'WKL'),
(213, '乌拉圭', 'URY', '+598', 'WLG'),
(214, '乌兹别克斯坦', 'UZB', '+998', 'WZBKST'),
(215, '西班牙', 'ESP', '+34', 'XBY'),
(216, '希腊', 'GRC', '+30', 'XL'),
(217, '新加坡', 'SGP', '+65', 'XJP'),
(218, '新喀里多尼亚', 'NCL', '+687', 'XKLDNY'),
(219, '新西兰', 'NZL', '+64', 'XXL'),
(220, '匈牙利', 'HUN', '+36', 'XYL'),
(221, '叙利亚', 'SYR', '+963', 'XLY'),
(222, '牙买加', 'JAM', '+1876', 'YMJ'),
(223, '亚美尼亚', 'ARM', '+374', 'YMNY'),
(224, '也门', 'YEM', '+967', 'YM'),
(225, '伊拉克', 'IRQ', '+964', 'YLK'),
(226, '伊朗', 'IRN', '+98', 'YL'),
(227, '以色列', 'ISR', '+972', 'YSL'),
(228, '意大利', 'ITA', '+39', 'YDL'),
(229, '印度', 'IND', '+91', 'YD'),
(230, '印度尼西亚', 'IDN', '+62', 'YDNXY'),
(231, '英国', 'GBR', '+44', 'YG'),
(232, '英属印度洋领地', 'IOT', '+246', 'YSYDYLD'),
(233, '约旦', 'JOR', '+962', 'YD'),
(234, '越南', 'VNM', '+84', 'YN'),
(235, '赞比亚', 'ZMB', '+260', 'ZBY'),
(236, '泽西岛', 'JEY', '+44', 'ZXD'),
(237, '乍得', 'TCD', '+235', 'ZD'),
(238, '直布罗陀', 'GIB', '+350', 'ZBLT'),
(239, '智利', 'CHL', '+56', 'ZL'),
(240, '中非共和国', 'CAF', '+236', 'ZFGHG');
--
-- Dumping data for table `common_datatree`
--
INSERT INTO `common_datatree` (`id`, `code`, `name`, `alias`, `sort`, `create_time`, `update_time`, `parents`, `parent_id`, `notes`, `level`, `icon`, `data_level`) VALUES
(27, '001', '用户日志类型', '用户日志类型', 0, 1545622408, 1545622408, '0', 0, '', 1, '0', 1),
(28, '001001', '登录', '登录', 1, 1545622408, 1547020714, '0,27,', 27, 'test', 2, '0', 1),
(29, '001002', '更新密码', '更新密码', 0, 1545622421, 1545622421, '0,27,', 27, '', 2, '0', 1),
(31, '001003', '测试', 'test', 2, 1547020702, 1547020702, '0,27,', 27, 'test', 2, '', 1),
(32, '001003001', '123', '456', 3, 1547020808, 1547020808, '0,27,31,', 31, '1323', 3, '', 0),
(33, '002', 'SystemBase', 'system_base', 1, 1548473676, 1548473676, ',0,', 0, '', 1, '', 1),
(34, '002001', 'BannersPosition', 'BannersPosition', 1, 1548473698, 1548473698, ',0,33,', 33, '', 2, '', 1),
(41, '002002', 'ArticlePosition', '文章别名', 1, 1551514037, 1551514037, ',0,33,', 33, 'ArticlePosition', 2, '', 1),
(42, '002002001', 'Other', '杂谈', 1, 1551514084, 1551514084, ',0,33,41,', 41, '没分类的文章', 3, '', 1),
(43, '003', 'ProjectCategory', '项目类别', 1, 1553569646, 1553569646, ',0,', 0, '', 1, '', 1),
(44, '003001', '科技', '', 1, 1553569733, 1553569733, ',0,43,', 43, '', 2, '', 1),
(45, '002001002', 'app中间轮播图片', 'app中间轮播图片', 1, 1548473890, 1548473890, ',0,33,34,', 34, 'app中间轮播图片', 3, '', 1),
--
-- Dumping data for table `common_menu`
--
INSERT INTO `common_menu` (`id`, `icon`, `title`, `pid`, `level`, `sort`, `url`, `url_type`, `hide`, `tip`, `status`, `create_time`, `update_time`, `scene`) VALUES
(2, '', 'System', 0, 0, 0, '#', 0, 0, '', 1, 1546408709, 1546408709, 'backend'),
(3, 'by-shujuzidian', 'DataDictionary', 2, 1, 0, '/admin/datatree/index', 1, 0, '', 1, 1546408724, 1546408724, 'backend'),
(4, 'by-log', 'ApiLog', 2, 1, 0, '/admin/api/log', 1, 0, '', 1, 1546408736, 1546408736, 'backend'),
(5, 'by-yingyongguanli', 'Clients', 2, 1, 0, '/admin/clients/index', 1, 0, '', 1, 1546408744, 1546408744, 'backend'),
(6, 'by-xitongpeizhi', 'SystemSettings', 2, 1, 0, '/admin/config/index', 1, 0, '', 1, 1546408751, 1546408751, 'backend'),
(8, 'by-navicon-jsgl', 'Roles', 2, 1, 0, '/admin/roles/index', 1, 0, '', 1, 1546408751, 1546408751, 'backend'),
(14, 'by-celve', 'Policy', 2, 1, 0, '/admin/policy/index', 1, 0, '', 1, 1546408751, 1546408751, 'backend'),
(15, 'by-caidan', 'Menu', 2, 1, 0, '/admin/menu/index', 1, 0, '', 1, 1546408751, 1546408751, 'backend'),
(20, '#', 'Album', 0, 0, 0, '#', 1, 0, '', -1, 1548060457, 1554360728, 'backend'),
(21, 'by-leimupinleifenleileibie', 'Category', 20, 1, 0, '/admin/album/category', 1, 0, '', -1, 1548060788, 1554360722, 'backend'),
(22, 'by-xiangce', 'Album', 20, 1, 0, '/admin/album/index', 1, 0, '', -1, 1548060812, 1554360725, 'backend'),
(23, 'by-guanggaowei', 'Banner', 2, 1, 0, '/admin/banners/index', 1, 0, '', 1, 1548472904, 1548472904, 'backend'),
(24, '#', 'Cms', 0, 0, 0, '#', 1, 0, '', -1, 1551512930, 1554360771, 'backend'),
(25, 'by-wenzhang', 'Article', 24, 1, 0, '/admin/cms_article/index', 1, 0, '', -1, 1551513015, 1554360769, 'backend'),
(32, '#', 'CrowdFunding', 0, 0, 0, '#', 1, 0, '', -1, 1553247426, 1563881332, 'backend'),
(33, 'by-xiangmu', 'Project', 32, 1, 10, '/admin/cfproject/index', 1, 0, '', -1, 1553247509, 1563881331, 'backend'),
(34, 'by-pay-order', 'PayOrder', 32, 1, 6, '/admin/payorder/index', 1, 0, '', -1, 1553247609, 1563881329, 'backend'),
(35, 'by-yonghuguanli', 'User', 32, 1, 1, '/admin/cfuser/index', 1, 0, '', -1, 1553247651, 1563881328, 'backend'),
(36, 'by-dingdan', 'Order', 32, 1, 8, '/admin/cforder/index', 1, 0, '', -1, 1553247677, 1563881326, 'backend'),
(38, '#', 'Cms', 0, 0, 0, '#', 1, 0, '', 1, 1563882371, 1563882371, 'backend'),
(39, 'by-wodewenzhang', 'Article', 38, 1, 0, '/admin/cms_article/index', 1, 0, '', 1, 1563882398, 1563882398, 'backend'),
(40, 'by-dianpu', 'Shop', 2, 1, 0, '#', 1, 0, '', -1, 1563947028, 1563947039, 'backend'),
(41, 'by-dianpu', 'Shop', 0, 0, 0, '#', 1, 0, '', 1, 1563947057, 1563947057, 'backend'),
(42, 'by-leimupinleifenleileibie', 'Category', 41, 1, 0, '/admin/spcate/index', 1, 0, '', 1, 1563947076, 1563947076, 'backend'),
(43, 'by-property', 'Attribute', 41, 1, 0, '/admin/sp_prop/index', 1, 0, '', 1, 1563947097, 1563947097, 'backend'),
(44, 'by-pinpai', 'Brand', 41, 1, 0, '/admin/sp_brand/index', 1, 0, '', 1, 1563947122, 1563947122, 'backend'),
(45, '#', 'Album', 0, 0, 0, '#', 1, 0, '', 1, 1563956466, 1563956466, 'backend'),
(46, 'by-xiangce', 'Album', 45, 1, 0, '/admin/album/index', 1, 0, '', 1, 1563956487, 1563956487, 'backend'),
(47, 'by-leimupinleifenleileibie', 'Category', 45, 1, 0, '/admin/album/category', 1, 0, '', 1, 1563956506, 1563956506, 'backend'),
(48, '#', 'AlbumFrontIndex', 0, 0, 0, '#', 1, 0, '', 1, 1564110282, 1564110282, 'front'),
(49, '#', 'sexy', 48, 1, 0, '/t/xinggan', 1, 0, '', 1, 1564110316, 1564110316, 'front'),
(50, '#', 'uniform', 48, 1, 0, '/t/zhifu', 1, 0, '', 1, 1564110332, 1564110332, 'front'),
(51, '#', 'shaofu', 48, 1, 0, '/t/shaofu', 1, 0, '', 1, 1564110351, 1564110351, 'front'),
(52, '#', 'luoli', 48, 1, 0, '/t/luoli', 1, 0, '', 1, 1564110364, 1564110364, 'front'),
(53, 'by-video', 'Video', 38, 1, 0, '/admin/video/index', 1, 0, '', 1, 1564136197, 1564136197, 'backend'),
(54, 'by-fenlei', 'VideoCate', 38, 1, 0, '/admin/video/cate', 1, 0, '', 1, 1564136228, 1564136228, 'backend');
--
-- Dumping data for table `platform_wallet`
--
INSERT INTO `platform_wallet` (`id`, `type_no`, `balance`, `profit_ratio`, `remark`) VALUES
(1, 'balance', '0.0000', 0, '平台总余留钱包'),
(2, 'fund_creator', '0.0000', 10, '平台创始人'),
(3, 'pay1_fee', '0.0000', 0, '支付通道手续费');
--
-- Dumping data for table `profit_graph`
--
INSERT INTO `profit_graph` (`id`, `uid`, `vip_level`, `active`, `create_time`, `update_time`, `invite_count`, `parent_uid`, `total_income`, `mobile`, `family`) VALUES
(4, 4, '0', 0, 1569487735, 1569491749, 0, 0, '0.0000', '12345675453', '');
--
-- Dumping data for table `user_account`
--
INSERT INTO `user_account` (`id`, `project_id`, `username`, `password`, `pay_secret`, `salt`, `mobile`, `country_no`, `email`, `wxapp_openid`, `wx_openid`, `wx_unionid`, `qq_openid`, `weibo_openid`, `create_time`, `reg_ip`, `last_login_time`, `last_login_ip`, `update_time`, `status`, `login_device_cnt`, `mobile_auth`, `email_auth`, `password_set`, `google_secret`) VALUES
(2, 'a', 'asasi', <PASSWORD>', '', 'HRrQNJGN', '12345678900', '86', '', '', '', '', '', '', 1545191751, 1880120700, 1545191751, 0, 1553246773, 1, 3, 0, 0, 0, ''),
(3, 'P2', 'm8611483379111', '$2y$15$EXbnMv8jIgehSu3AgT6KeuxnbfjBr6VhicmipXZKgdjJ6BbAEUKTC', '', 'kYJaHfWA', '11483379111', '86', '', '', '', '', '', '', 1545294352, 1880120700, 1569663319, 1880120700, 1569663319, 1, 3, 1, 0, 1, ''),
(4, 'P2', 'm8612345675453', '$2y$13$qxspcWDv4SplcqIgjGgnNu/HnLE0uk7.WJ4AWI43Cz747O9jDHbc6', '', 'KKEFPfXD', '12345675453', '86', '', '', '', '', '', '', 1569466945, 1880120700, 1569491749, 2130706433, 1569491749, 1, 3, 1, 0, 0, '');
--
-- Dumping data for table `user_grade`
--
INSERT INTO `user_grade` (`id`, `uid`, `grade_id`, `status`, `create_time`, `update_time`) VALUES
(4, 4, 1, 1, 1569467196, 1569467196);
--
-- Dumping data for table `user_profile`
--
INSERT INTO `user_profile` (`uid`, `geohash`, `nickname`, `sex`, `birthday`, `head`, `score`, `login`, `status`, `sign`, `bg_img`, `email_validate`, `identity_validate`, `idcode`, `default_address`, `invite_uid`, `exp`, `nation`, `online_status`, `realname`) VALUES
(2, '', '系统管理员', 0, 0, '', 0, 0, 1, '', 0, 0, 0, '', 0, 0, 0, '', 1, ''),
(3, '', '网站管理员', 0, 0, '', 0, 0, 1, '', 0, 0, 0, '', 0, 0, 0, '', 1, ''),
(4, '', '王大锤', 0, 0, '', 0, 0, 1, '', 0, 0, 0, '5kZYH', 0, 0, 0, '', 1, '');
--
-- Dumping data for table `user_wallet`
--
INSERT INTO `user_wallet` (`id`, `uid`, `balance`, `frozen`, `withdraw_total`) VALUES
(1, 4, 0, 0, 0);
COMMIT;
SET FOREIGN_KEY_CHECKS=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 */;
|
<reponame>pedroroque/DigitalBroadcaster<filename>src/Broadcaster.DB/Broadcaster.OnAir.DB/dbo/Views/ViewScheduledVoiceInserts.sql<gh_stars>0
CREATE VIEW [dbo].[ViewScheduledVoiceInserts]
AS
SELECT dbo.Scheduling.[Date], dbo.Scheduling.ItemOrder, dbo.Scheduling.ItemType, dbo.Scheduling.ItemID, dbo.Scheduling.ScheduleID,
dbo.VoiceInserts.Name, 'Take' AS Type, dbo.Scheduling.TemplateID, dbo.SchedulingTemplate.Name AS TemplateName, dbo.VoiceInserts.Start,
0 AS Intro, dbo.VoiceInserts.Finish AS Mix, dbo.VoiceInserts.TalentID AS TypeID, dbo.Scheduling.Priority, 0 AS Rythm
FROM dbo.Scheduling INNER JOIN
dbo.VoiceInserts ON dbo.Scheduling.ItemID = dbo.VoiceInserts.ID LEFT OUTER JOIN
dbo.SchedulingTemplate ON dbo.Scheduling.TemplateID = dbo.SchedulingTemplate.ID
WHERE (dbo.Scheduling.ItemType = 54)
|
<reponame>nnduyquang/hoaphuquy<filename>hoaphuquy.sql
-- phpMyAdmin SQL Dump
-- version 4.5.1
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Generation Time: Apr 11, 2017 at 05:52 PM
-- Server version: 10.1.16-MariaDB
-- PHP Version: 5.6.24
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: `hoaphuquy`
--
-- --------------------------------------------------------
--
-- Table structure for table `cauhinhs`
--
CREATE TABLE `cauhinhs` (
`id` int(10) UNSIGNED NOT NULL,
`hinh` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`noidung` longtext COLLATE utf8mb4_unicode_ci,
`order` longtext COLLATE utf8mb4_unicode_ci,
`user_id` int(10) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `cauhinhs`
--
INSERT INTO `cauhinhs` (`id`, `hinh`, `noidung`, `order`, `user_id`, `created_at`, `updated_at`, `name`) VALUES
(1, 'IMG109514919194_1491920743121.png', NULL, '1', 3, '2017-04-10 08:53:49', '2017-04-11 07:25:43', 'Logo'),
(2, 'left_1491884877978.jpg', NULL, '2', 3, '2017-04-10 08:53:49', '2017-04-10 21:27:57', 'Hình Trang Chủ Trái'),
(3, NULL, '<div class="col-md-6">\r\n <div id="thong-tin-lien-he">\r\n <h3>Thông Tin Liên Hệ</h3><h3><b><NAME></b></h3><ul><li class="dia-chi">Địa Chỉ: 135 <NAME>, P.10, Q.5 - TPHCM<br></li><li class="so-dien-thoai">Số Điện Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315<br></li><li class="email">Email: <EMAIL></li></ul>\r\n </div>\r\n </div><p><br></p>', '3', 3, '2017-04-10 08:53:49', '2017-04-10 09:39:26', 'Liên Hệ');
-- --------------------------------------------------------
--
-- Table structure for table `danhmucs`
--
CREATE TABLE `danhmucs` (
`id` int(10) UNSIGNED NOT NULL,
`display_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` int(10) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`path` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `danhmucs`
--
INSERT INTO `danhmucs` (`id`, `display_name`, `user_id`, `created_at`, `updated_at`, `path`) VALUES
(6, '<NAME>', 3, '2017-04-08 06:22:44', '2017-04-08 20:25:18', 'Day-Curoa-Tron'),
(7, '<NAME>', 3, '2017-04-08 20:54:22', '2017-04-08 20:54:22', 'Day-Curoa-Rang'),
(8, '<NAME>', 3, '2017-04-08 21:16:39', '2017-04-08 21:16:39', 'Day-Curoa-GATES'),
(9, '<NAME>', 3, '2017-04-08 21:29:21', '2017-04-08 21:29:21', 'Day-Curoa-Rang-PU'),
(10, '<NAME>', 3, '2017-04-11 06:27:22', '2017-04-11 06:35:14', 'Day-Curoa-Gai-Goc'),
(11, '<NAME> 2 Mặt Răng', 3, '2017-04-11 06:53:37', '2017-04-11 06:53:37', 'Day-Curoa-2-Mat-Rang'),
(12, 'Buly', 3, '2017-04-11 06:57:18', '2017-04-11 06:57:18', 'Buly'),
(13, '<NAME>', 3, '2017-04-11 07:05:05', '2017-04-11 07:05:05', 'Bu-Lon'),
(14, '<NAME>', 3, '2017-04-11 07:08:19', '2017-04-11 07:08:19', 'Cay-Rang'),
(15, '<NAME>', 3, '2017-04-11 07:10:31', '2017-04-11 07:10:31', 'Luc-Giac'),
(16, '<NAME>', 3, '2017-04-11 07:17:07', '2017-04-11 07:17:07', 'Cu-Dong'),
(17, '<NAME>', 3, '2017-04-11 07:18:10', '2017-04-11 07:18:10', 'Bu-Lon-Mong-Neo'),
(18, '<NAME>', 3, '2017-04-11 07:20:30', '2017-04-11 07:20:30', 'Tac-Ke');
-- --------------------------------------------------------
--
-- Table structure for table `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2014_10_12_000000_create_users_table', 1),
(2, '2014_10_12_100000_create_password_resets_table', 1),
(3, '2017_04_02_101606_entrust_setup_tables', 2),
(4, '2017_04_02_140132_danhmucs_tables', 3),
(5, '2017_04_02_141854_add_column_path_danhmucs_table', 4),
(6, '2017_04_02_144654_drop_column_name_danhmucs_table', 5),
(7, '2017_04_03_081514_create_sanphams_table', 6),
(8, '2017_04_03_092516_add_path_anhsanpham_to_sanphams_table', 7),
(9, '2017_04_08_091752_create_sliders_table', 8),
(10, '2017_04_08_143301_create_trangs_table', 9),
(11, '2017_04_10_153903_create_cauhinhs_table', 10),
(12, '2017_04_10_155255_add_name_to_cauhinhs_table', 11);
-- --------------------------------------------------------
--
-- Table structure for table `password_resets`
--
CREATE TABLE `password_resets` (
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `permissions`
--
CREATE TABLE `permissions` (
`id` int(10) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`display_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `permissions`
--
INSERT INTO `permissions` (`id`, `name`, `display_name`, `description`, `created_at`, `updated_at`) VALUES
(1, 'role-list', 'Display Role Listing', 'See only Listing Of Role', '2017-04-02 03:30:54', '2017-04-02 03:30:54'),
(2, 'role-create', 'Create Role', 'Create New Role', '2017-04-02 03:30:55', '2017-04-02 03:30:55'),
(3, 'role-edit', 'Edit Role', 'Edit Role', '2017-04-02 03:30:55', '2017-04-02 03:30:55'),
(4, 'role-delete', 'Delete Role', 'Delete Role', '2017-04-02 03:30:55', '2017-04-02 03:30:55'),
(5, 'user-list', 'Display User Listing', 'See only Listing Of User', '2017-04-02 03:30:55', '2017-04-02 03:30:55'),
(6, 'user-create', 'Create User', 'Create New User', '2017-04-02 03:30:55', '2017-04-02 03:30:55'),
(7, 'user-edit', 'Edit User', 'Edit User', '2017-04-02 03:30:55', '2017-04-02 03:30:55'),
(8, 'user-delete', 'Delete User', 'Delete User', '2017-04-02 03:30:55', '2017-04-02 03:30:55'),
(9, 'danhmuc-list', 'Display Danh Muc Listing', 'See only Danh Muc Of Role', '2017-04-02 09:06:32', '2017-04-02 09:06:32'),
(10, 'danhmuc-create', 'Create Danh Muc', 'Create New Danh Muc', '2017-04-02 09:06:32', '2017-04-02 09:06:32'),
(11, 'danhmuc-edit', 'Edit Danh Muc', 'Edit Danh Muc', '2017-04-02 09:06:32', '2017-04-02 09:06:32'),
(12, 'danhmuc-delete', 'Delete Danh Muc', 'Delete Danh Muc', '2017-04-02 09:06:32', '2017-04-02 09:06:32'),
(13, 'sanpham-list', 'Display Sản Phẩm Listing', 'See only Sản Phẩm Of Role', '2017-04-03 02:41:38', '2017-04-03 02:41:38'),
(14, 'sanpham-create', 'Create Sản Phẩm', 'Create New Sản Phẩm', '2017-04-03 02:41:38', '2017-04-03 02:41:38'),
(15, 'sanpham-edit', 'Edit Sản Phẩm', 'Edit Sản Phẩm', '2017-04-03 02:41:38', '2017-04-03 02:41:38'),
(16, 'sanpham-delete', 'Delete Sản Phẩm', 'Delete Sản Phẩm', '2017-04-03 02:41:38', '2017-04-03 02:41:38'),
(17, 'slider-list', 'Display Slider Listing', 'See only Slider Of Role', '2017-04-08 03:23:58', '2017-04-08 03:23:58'),
(18, 'slider-create', 'Create Slider', 'Create New Slider', '2017-04-08 03:23:58', '2017-04-08 03:23:58'),
(19, 'slider-edit', 'Edit Slider', 'Edit Slider', '2017-04-08 03:23:58', '2017-04-08 03:23:58'),
(20, 'slider-delete', 'Delete Slider', 'Delete SSlider', '2017-04-08 03:23:58', '2017-04-08 03:23:58'),
(21, 'trang-list', 'Display Trang Listing', 'See only Trang Of Role', '2017-04-08 08:03:49', '2017-04-08 08:03:49'),
(22, 'trang-create', 'Create Trang', 'Create New Trang', '2017-04-08 08:03:49', '2017-04-08 08:03:49'),
(23, 'trang-edit', 'Edit Trang', 'Edit Trang', '2017-04-08 08:03:49', '2017-04-08 08:03:49'),
(24, 'trang-delete', 'Delete Trang', 'Delete Trang', '2017-04-08 08:03:49', '2017-04-08 08:03:49');
-- --------------------------------------------------------
--
-- Table structure for table `permission_role`
--
CREATE TABLE `permission_role` (
`permission_id` int(10) UNSIGNED NOT NULL,
`role_id` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `permission_role`
--
INSERT INTO `permission_role` (`permission_id`, `role_id`) VALUES
(1, 1),
(1, 2),
(2, 1),
(2, 2),
(3, 1),
(3, 2),
(4, 1),
(4, 2),
(5, 1),
(5, 2),
(6, 1),
(6, 2),
(7, 1),
(7, 2),
(8, 1),
(8, 2),
(9, 1),
(9, 2),
(10, 1),
(10, 2),
(11, 1),
(11, 2),
(12, 1),
(12, 2),
(13, 1),
(13, 2),
(14, 1),
(14, 2),
(15, 1),
(15, 2),
(16, 1),
(16, 2),
(17, 1),
(17, 2),
(18, 1),
(18, 2),
(19, 1),
(19, 2),
(20, 1),
(20, 2),
(21, 2),
(22, 2),
(23, 2);
-- --------------------------------------------------------
--
-- Table structure for table `roles`
--
CREATE TABLE `roles` (
`id` int(10) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`display_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `roles`
--
INSERT INTO `roles` (`id`, `name`, `display_name`, `description`, `created_at`, `updated_at`) VALUES
(1, 'admin', 'admin', 'Quản Trị Website', '2017-04-02 03:31:24', '2017-04-02 04:01:59'),
(2, 'Quản Trị', 'Quản Trị', '<NAME>', '2017-04-08 03:47:47', '2017-04-08 03:47:47');
-- --------------------------------------------------------
--
-- Table structure for table `role_user`
--
CREATE TABLE `role_user` (
`user_id` int(10) UNSIGNED NOT NULL,
`role_id` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `role_user`
--
INSERT INTO `role_user` (`user_id`, `role_id`) VALUES
(1, 1),
(3, 2);
-- --------------------------------------------------------
--
-- Table structure for table `sanphams`
--
CREATE TABLE `sanphams` (
`id` int(10) UNSIGNED NOT NULL,
`display_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`price` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`noidung` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`lienhegia` tinyint(1) NOT NULL,
`danhmuc_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,
`path` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`anhsanpham` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `sanphams`
--
INSERT INTO `sanphams` (`id`, `display_name`, `price`, `noidung`, `lienhegia`, `danhmuc_id`, `user_id`, `created_at`, `updated_at`, `path`, `anhsanpham`) VALUES
(1, '<NAME>', '', '<p><br></p><p style="margin: 0px; padding: 0px; outline: none; color: rgb(0, 0, 0); font-family: Helvetica, Arial, sans-serif; font-size: 12px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;"><strong style="margin: 0px; padding: 0px; outline: none;">I.</strong><strong style="margin: 0px; padding: 0px; outline: none;"><span class="Apple-converted-space"> </span></strong><strong style="margin: 0px; padding: 0px; outline: none;">ỨNG DỤNG</strong></p><p><br></p><p style="margin: 0px; padding: 0px; outline: none; color: rgb(0, 0, 0); font-family: Helvetica, Arial, sans-serif; font-size: 12px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;">Dây Courroie hình thang được sử dụng rộng rãi trong các ngành công nghiệp cơ khí, máy móc ngành dệt may, ngành ô tô.</p><p><br></p><p style="margin: 0px; padding: 0px; outline: none; color: rgb(0, 0, 0); font-family: Helvetica, Arial, sans-serif; font-size: 12px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;"> </p><p><br></p><p style="margin: 0px; padding: 0px; outline: none; color: rgb(0, 0, 0); font-family: Helvetica, Arial, sans-serif; font-size: 12px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;"><strong style="margin: 0px; padding: 0px; outline: none;">II. CẤU TẠO</strong></p><p><br></p><p style="margin: 0px; padding: 0px; outline: none; color: rgb(0, 0, 0); font-family: Helvetica, Arial, sans-serif; font-size: 12px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;"><img src="http://www.berubco.com.vn/data/upload/cau%20tao%20v-belt_1.jpg" alt="" style="margin: 0px; padding: 0px; outline: none; border: 0px;" height="84" width="78"></p><p><br></p><p style="margin: 0px; padding: 0px; outline: none; color: rgb(0, 0, 0); font-family: Helvetica, Arial, sans-serif; font-size: 12px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;"> </p><p><br></p><ol style="margin: 0px; padding: 0px; outline: none; color: rgb(0, 0, 0); font-family: Helvetica, Arial, sans-serif; font-size: 12px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;"><li style="margin: 0px; padding: 0px; outline: none;">Lớp vải bao</li><li style="margin: 0px; padding: 0px; outline: none;">Cao su hoãn xung</li><li style="margin: 0px; padding: 0px; outline: none;">Sợi chịu lực</li><li style="margin: 0px; padding: 0px; outline: none;">Cao su ép nén</li></ol><p><br></p><p style="margin: 0px; padding: 0px; outline: none; color: rgb(0, 0, 0); font-family: Helvetica, Arial, sans-serif; font-size: 12px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;"> </p><p><br></p><p style="margin: 0px; padding: 0px; outline: none; color: rgb(0, 0, 0); font-family: Helvetica, Arial, sans-serif; font-size: 12px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;"> </p><p><br></p><p style="margin: 0px; padding: 0px; outline: none; color: rgb(0, 0, 0); font-family: Helvetica, Arial, sans-serif; font-size: 12px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;"> </p><p><br></p><p style="margin: 0px; padding: 0px; outline: none; color: rgb(0, 0, 0); font-family: Helvetica, Arial, sans-serif; font-size: 12px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;"><img src="http://www.berubco.com.vn/data/upload/ggeh5hy.jpg" alt="" style="margin: 0px; padding: 0px; outline: none; border: 0px;" height="197" width="197"></p><p><br></p><p style="margin: 0px; padding: 0px; outline: none; color: rgb(0, 0, 0); font-family: Helvetica, Arial, sans-serif; font-size: 12px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;"> </p><p><br></p><p style="margin: 0px; padding: 0px; outline: none; color: rgb(0, 0, 0); font-family: Helvetica, Arial, sans-serif; font-size: 12px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;"><strong style="margin: 0px; padding: 0px; outline: none;">III.<span class="Apple-converted-space"> </span></strong><strong style="margin: 0px; padding: 0px; outline: none;">ĐẶC ĐIỂM</strong></p><p><br></p><ol style="margin: 0px; padding: 0px; outline: none; color: rgb(0, 0, 0); font-family: Helvetica, Arial, sans-serif; font-size: 12px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;"><li style="margin: 0px; padding: 0px; outline: none;">Lực kéo đứt cao, độ dãn thấp.</li><li style="margin: 0px; padding: 0px; outline: none;">Chịu uốn và kháng mài mòn tốt.</li><li style="margin: 0px; padding: 0px; outline: none;">Đồng nhất về chiều dài và tiết diện theo cỡ số.</li></ol><p><br></p><p style="margin: 0px; padding: 0px; outline: none; color: rgb(0, 0, 0); font-family: Helvetica, Arial, sans-serif; font-size: 12px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;"> </p><p><br></p><h4 style="margin: 0px; padding: 0px; outline: none; color: rgb(0, 0, 0); font-family: Helvetica, Arial, sans-serif; font-size: 12px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;"><strong style="margin: 0px; padding: 0px; outline: none;"><span style="margin: 0px; padding: 0px; outline: none; font-size: small;">IV. PHẠM VI SẢN XUẤT</span></strong></h4><p><br></p><table style="margin: 0px; padding: 0px; outline: none; color: rgb(0, 0, 0); font-family: Helvetica, Arial, sans-serif; font-size: 12px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;" border="1" cellspacing="0" cellpadding="0"><tbody style="margin: 0px; padding: 0px; outline: none;"><tr style="margin: 0px; padding: 0px; outline: none; text-align: center;"><td style="margin: 0px; padding: 0px; outline: none;" width="79"><p style="margin: 0px; padding: 0px; outline: none;">BẢN</p></td><td style="margin: 0px; padding: 0px; outline: none;" width="135"><p style="margin: 0px; padding: 0px; outline: none;">CHIỀU RỘNG</p><p style="margin: 0px; padding: 0px; outline: none;">(a)</p></td><td style="margin: 0px; padding: 0px; outline: none;" width="118"><p style="margin: 0px; padding: 0px; outline: none;">BỀ DÀY</p><p style="margin: 0px; padding: 0px; outline: none;">(b)</p></td><td style="margin: 0px; padding: 0px; outline: none;" width="106"><p style="margin: 0px; padding: 0px; outline: none;">GÓC</p><p style="margin: 0px; padding: 0px; outline: none;">(f)</p></td><td style="margin: 0px; padding: 0px; outline: none;" width="116"><p style="margin: 0px; padding: 0px; outline: none;">CHIỀU DÀI</p><p style="margin: 0px; padding: 0px; outline: none;">(mm)</p></td></tr><tr style="margin: 0px; padding: 0px; outline: none; text-align: center;"><td style="margin: 0px; padding: 0px; outline: none;" width="79"><p style="margin: 0px; padding: 0px; outline: none;">M</p></td><td style="margin: 0px; padding: 0px; outline: none;" width="135"><p style="margin: 0px; padding: 0px; outline: none;">10.0±0.4</p></td><td style="margin: 0px; padding: 0px; outline: none;" width="118"><p style="margin: 0px; padding: 0px; outline: none;">5.5±0.4</p></td><td rowspan="6" style="margin: 0px; padding: 0px; outline: none;" width="106"><p style="margin: 0px; padding: 0px; outline: none;">40±1<sup style="margin: 0px; padding: 0px; outline: none;">0</sup></p></td><td rowspan="6" style="margin: 0px; padding: 0px; outline: none;" width="116"><p style="margin: 0px; padding: 0px; outline: none;">500~1200</p></td></tr><tr style="margin: 0px; padding: 0px; outline: none; text-align: center;"><td style="margin: 0px; padding: 0px; outline: none;" width="79"><p style="margin: 0px; padding: 0px; outline: none;">A</p></td><td style="margin: 0px; padding: 0px; outline: none;" width="135"><p style="margin: 0px; padding: 0px; outline: none;">12.5±0.5</p></td><td style="margin: 0px; padding: 0px; outline: none;" width="118"><p style="margin: 0px; padding: 0px; outline: none;">9.0±0.5</p></td></tr><tr style="margin: 0px; padding: 0px; outline: none;"><td style="margin: 0px; padding: 0px; outline: none;" width="79"><p style="margin: 0px; padding: 0px; outline: none; text-align: center;">B</p></td><td style="margin: 0px; padding: 0px; outline: none;" width="135"><p style="margin: 0px; padding: 0px; outline: none; text-align: center;">16.5±0.5</p></td><td style="margin: 0px; padding: 0px; outline: none;" width="118"><p style="margin: 0px; padding: 0px; outline: none; text-align: center;">11.0±0.6</p></td></tr><tr style="margin: 0px; padding: 0px; outline: none;"><td style="margin: 0px; padding: 0px; outline: none;" width="79"><p style="margin: 0px; padding: 0px; outline: none; text-align: center;">C</p></td><td style="margin: 0px; padding: 0px; outline: none;" width="135"><p style="margin: 0px; padding: 0px; outline: none; text-align: center;">22.0±0.6</p></td><td style="margin: 0px; padding: 0px; outline: none;" width="118"><p style="margin: 0px; padding: 0px; outline: none; text-align: center;">14.0±0.6</p></td></tr><tr style="margin: 0px; padding: 0px; outline: none;"><td style="margin: 0px; padding: 0px; outline: none;" width="79"><p style="margin: 0px; padding: 0px; outline: none; text-align: center;">D</p></td><td style="margin: 0px; padding: 0px; outline: none;" width="135"><p style="margin: 0px; padding: 0px; outline: none; text-align: center;">31.5±0.7</p></td><td style="margin: 0px; padding: 0px; outline: none;" width="118"><p style="margin: 0px; padding: 0px; outline: none; text-align: center;">19.0±0.7</p></td></tr><tr style="margin: 0px; padding: 0px; outline: none;"><td style="margin: 0px; padding: 0px; outline: none;" width="79"><p style="margin: 0px; padding: 0px; outline: none; text-align: center;">E</p></td><td style="margin: 0px; padding: 0px; outline: none;" width="135"><p style="margin: 0px; padding: 0px; outline: none; text-align: center;">38.0±0.7</p></td><td style="margin: 0px; padding: 0px; outline: none;" width="118"><p style="margin: 0px; padding: 0px; outline: none; text-align: center;">24.0±0.7</p></td></tr></tbody></table><p><br></p><p><br></p><div class="col-md-6">\r\n <div id="thong-tin-lien-he">\r\n <h3>Thông Tin Liên Hệ</h3><h3><b><NAME></b></h3><ul><li class="dia-chi">Địa Chỉ: 13<NAME>, P.10, Q.5 - TPHCM<br></li><li class="so-dien-thoai">Số Điện Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315<br></li><li class="email">Email: <EMAIL></li></ul>\r\n </div>\r\n </div><p><br></p>', 1, 6, 3, '2017-04-08 20:37:42', '2017-04-08 20:37:42', 'Day-Curoa-Nhat-BERUBCO', 'IMG0589_1491709062191.JPG'),
(2, '<NAME> MITSUBOSHI', '', '<p>Qui Cách : A, B, C, D, FM</p><p>Dâ<NAME>uroa Mitsuboshi có tiêu chuẩn kỹ thuật cao, chịu được các điều kiện khắt khe của môi trường công nghiệp</p><p><br></p><div class="col-md-6">\r\n <div id="thong-tin-lien-he">\r\n <h3>Thông Tin Liên Hệ</h3><h3><b><NAME></b></h3><ul><li class="dia-chi">Địa Chỉ: 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM<br></li><li class="so-dien-thoai">Số Điện Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315<br></li><li class="email">Email: <EMAIL></li></ul>\r\n </div>\r\n </div><p><br></p>', 1, 6, 3, '2017-04-08 20:43:04', '2017-04-08 20:49:36', 'Day-Curoa-Nhat-MITSUBOSHI', 'IMG1073_1491709384481.JPG'),
(3, '<NAME>', '', '<p>Qui Cách : A, B, C, D, FM</p><p><span style="color: rgb(51, 51, 51); font-family: "Open Sans", Arial, Helvetica, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;">Dây curoa loại a,b,c,d và e do hãng Bando – Nhật Bản sản xuất theo tiêu chuẩn RMA. Loại dây curoa này được sử dụng rộng dãi trong hầu hết các máy móc công nghiệp. Dựa vào kích thước tiết diện (chiều dầy-chiều rộng) chia loại dây này thành các loại: dây curoa bản A, dây curoa bản B, dây curoa bản C, dây curoa bản D và dây curoa bản E.<br></span></p><p><span style="color: rgb(51, 51, 51); font-family: "Open Sans", Arial, Helvetica, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"><br></span></p><div class="col-md-6">\r\n <div id="thong-tin-lien-he">\r\n <h3>Thông Tin Liên Hệ</h3><h3><b>Cửa Hàng Phú Quý</b></h3><ul><li class="dia-chi">Địa Chỉ: 135 <NAME>, P.10, Q.5 - TPHCM<br></li><li class="so-dien-thoai">Số Điện Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315<br></li><li class="email">Email: <EMAIL></li></ul>\r\n </div>\r\n </div><p><span style="color: rgb(51, 51, 51); font-family: "Open Sans", Arial, Helvetica, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"><br></span><br></p>', 1, 6, 3, '2017-04-08 20:45:58', '2017-04-08 20:50:33', 'Day-Curoa-Nhat-BANDO', 'IMG1053_1491709558457.JPG'),
(4, '<NAME>', '', '<p>Qui Cách : A, B, C, D, FM</p><p><br></p><div class="col-md-6">\r\n <div id="thong-tin-lien-he">\r\n <h3>Thông Tin Liên Hệ</h3><h3><b><NAME></b></h3><ul><li class="dia-chi">Địa Chỉ: 13<NAME>, P.10, Q.5 - TPHCM<br></li><li class="so-dien-thoai">Số Điện Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315<br></li><li class="email">Email: <EMAIL></li></ul>\r\n </div>\r\n </div><p><br></p>', 1, 6, 3, '2017-04-08 20:48:31', '2017-04-08 20:49:26', 'Day-Curoa-Thai-GEMINIROPE', 'IMG0571_1491709711121.JPG'),
(5, 'Dây Curoa Thái MITSUSUMI', '', '<p>Qui Cách : A, B, C, D, FM</p><p><!--[if gte mso 9]><xml>\r\n <o:OfficeDocumentSettings>\r\n <o:AllowPNG></o:AllowPNG>\r\n </o:OfficeDocumentSettings>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n <w:View>Normal</w:View>\r\n <w:Zoom>0</w:Zoom>\r\n <w:TrackMoves></w:TrackMoves>\r\n <w:TrackFormatting></w:TrackFormatting>\r\n <w:PunctuationKerning></w:PunctuationKerning>\r\n <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas>\r\n <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n <w:DoNotPromoteQF></w:DoNotPromoteQF>\r\n <w:LidThemeOther>EN-GB</w:LidThemeOther>\r\n <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n <w:Compatibility>\r\n <w:BreakWrappedTables></w:BreakWrappedTables>\r\n <w:SnapToGridInCell></w:SnapToGridInCell>\r\n <w:WrapTextWithPunct></w:WrapTextWithPunct>\r\n <w:UseAsianBreakRules></w:UseAsianBreakRules>\r\n <w:DontGrowAutofit></w:DontGrowAutofit>\r\n <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark>\r\n <w:EnableOpenTypeKerning></w:EnableOpenTypeKerning>\r\n <w:DontFlipMirrorIndents></w:DontFlipMirrorIndents>\r\n <w:OverrideTableStyleHps></w:OverrideTableStyleHps>\r\n </w:Compatibility>\r\n <m:mathPr>\r\n <m:mathFont m:val="Cambria Math"></m:mathFont>\r\n <m:brkBin m:val="before"></m:brkBin>\r\n <m:brkBinSub m:val="--"></m:brkBinSub>\r\n <m:smallFrac m:val="off"></m:smallFrac>\r\n <m:dispDef></m:dispDef>\r\n <m:lMargin m:val="0"></m:lMargin>\r\n <m:rMargin m:val="0"></m:rMargin>\r\n <m:defJc m:val="centerGroup"></m:defJc>\r\n <m:wrapIndent m:val="1440"></m:wrapIndent>\r\n <m:intLim m:val="subSup"></m:intLim>\r\n <m:naryLim m:val="undOvr"></m:naryLim>\r\n </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"\r\n DefSemiHidden="true" DefQFormat="false" DefPriority="99"\r\n LatentStyleCount="267">\r\n <w:LsdException Locked="false" Priority="0" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Normal"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="heading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="10" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="11" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtitle"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="22" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Strong"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="20" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="59" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Table Grid"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="No Spacing"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="34" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="29" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="30" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="19" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="21" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="31" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="32" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="33" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Book Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="37" Name="Bibliography"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"></w:LsdException>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n {mso-style-name:"Table Normal";\r\n mso-tstyle-rowband-size:0;\r\n mso-tstyle-colband-size:0;\r\n mso-style-noshow:yes;\r\n mso-style-priority:99;\r\n mso-style-parent:"";\r\n mso-padding-alt:0cm 5.4pt 0cm 5.4pt;\r\n mso-para-margin-top:0cm;\r\n mso-para-margin-right:0cm;\r\n mso-para-margin-bottom:10.0pt;\r\n mso-para-margin-left:0cm;\r\n line-height:115%;\r\n mso-pagination:widow-orphan;\r\n font-size:11.0pt;\r\n font-family:"Calibri","sans-serif";\r\n mso-ascii-font-family:Calibri;\r\n mso-ascii-theme-font:minor-latin;\r\n mso-hansi-font-family:Calibri;\r\n mso-hansi-theme-font:minor-latin;\r\n mso-bidi-font-family:"Times New Roman";\r\n mso-bidi-theme-font:minor-bidi;\r\n mso-fareast-language:EN-US;}\r\n</style>\r\n<![endif]-->\r\n\r\n<br></p><h3>Thông Tin Liên Hệ</h3><h3>Cửa H<NAME></h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li></ul><p>\r\n\r\n<span style="font-size:11.0pt;line-height:115%;font-family:"Calibri","sans-serif";\r\nmso-ascii-theme-font:minor-latin;mso-fareast-font-family:Calibri;mso-fareast-theme-font:\r\nminor-latin;mso-hansi-theme-font:minor-latin;mso-bidi-font-family:"Times New Roman";\r\nmso-bidi-theme-font:minor-bidi;mso-ansi-language:EN-GB;mso-fareast-language:\r\nEN-US;mso-bidi-language:AR-SA">Email: <EMAIL>.</span><br></p>', 1, 6, 3, '2017-04-08 20:52:14', '2017-04-08 20:52:14', 'Day-Curoa-Thai-MITSUSUMI', 'IMG0573_1491709934618.JPG');
INSERT INTO `sanphams` (`id`, `display_name`, `price`, `noidung`, `lienhegia`, `danhmuc_id`, `user_id`, `created_at`, `updated_at`, `path`, `anhsanpham`) VALUES
(6, '<NAME> Trung Quốc TRIANGLE', '', '<p>Qui Cách : A, B, C, D, FM</p><p><!--[if gte mso 9]><xml>\r\n <o:OfficeDocumentSettings>\r\n <o:AllowPNG></o:AllowPNG>\r\n </o:OfficeDocumentSettings>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n <w:View>Normal</w:View>\r\n <w:Zoom>0</w:Zoom>\r\n <w:TrackMoves></w:TrackMoves>\r\n <w:TrackFormatting></w:TrackFormatting>\r\n <w:PunctuationKerning></w:PunctuationKerning>\r\n <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas>\r\n <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n <w:DoNotPromoteQF></w:DoNotPromoteQF>\r\n <w:LidThemeOther>EN-GB</w:LidThemeOther>\r\n <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n <w:Compatibility>\r\n <w:BreakWrappedTables></w:BreakWrappedTables>\r\n <w:SnapToGridInCell></w:SnapToGridInCell>\r\n <w:WrapTextWithPunct></w:WrapTextWithPunct>\r\n <w:UseAsianBreakRules></w:UseAsianBreakRules>\r\n <w:DontGrowAutofit></w:DontGrowAutofit>\r\n <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark>\r\n <w:EnableOpenTypeKerning></w:EnableOpenTypeKerning>\r\n <w:DontFlipMirrorIndents></w:DontFlipMirrorIndents>\r\n <w:OverrideTableStyleHps></w:OverrideTableStyleHps>\r\n </w:Compatibility>\r\n <m:mathPr>\r\n <m:mathFont m:val="Cambria Math"></m:mathFont>\r\n <m:brkBin m:val="before"></m:brkBin>\r\n <m:brkBinSub m:val="--"></m:brkBinSub>\r\n <m:smallFrac m:val="off"></m:smallFrac>\r\n <m:dispDef></m:dispDef>\r\n <m:lMargin m:val="0"></m:lMargin>\r\n <m:rMargin m:val="0"></m:rMargin>\r\n <m:defJc m:val="centerGroup"></m:defJc>\r\n <m:wrapIndent m:val="1440"></m:wrapIndent>\r\n <m:intLim m:val="subSup"></m:intLim>\r\n <m:naryLim m:val="undOvr"></m:naryLim>\r\n </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"\r\n DefSemiHidden="true" DefQFormat="false" DefPriority="99"\r\n LatentStyleCount="267">\r\n <w:LsdException Locked="false" Priority="0" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Normal"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="heading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="10" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="11" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtitle"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="22" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Strong"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="20" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="59" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Table Grid"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="No Spacing"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="34" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="29" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="30" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="19" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="21" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="31" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="32" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="33" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Book Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="37" Name="Bibliography"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"></w:LsdException>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n {mso-style-name:"Table Normal";\r\n mso-tstyle-rowband-size:0;\r\n mso-tstyle-colband-size:0;\r\n mso-style-noshow:yes;\r\n mso-style-priority:99;\r\n mso-style-parent:"";\r\n mso-padding-alt:0cm 5.4pt 0cm 5.4pt;\r\n mso-para-margin-top:0cm;\r\n mso-para-margin-right:0cm;\r\n mso-para-margin-bottom:10.0pt;\r\n mso-para-margin-left:0cm;\r\n line-height:115%;\r\n mso-pagination:widow-orphan;\r\n font-size:11.0pt;\r\n font-family:"Calibri","sans-serif";\r\n mso-ascii-font-family:Calibri;\r\n mso-ascii-theme-font:minor-latin;\r\n mso-hansi-font-family:Calibri;\r\n mso-hansi-theme-font:minor-latin;\r\n mso-bidi-font-family:"Times New Roman";\r\n mso-bidi-theme-font:minor-bidi;\r\n mso-fareast-language:EN-US;}\r\n</style>\r\n<![endif]-->\r\n\r\n<br></p><h3>Thông Tin Liên Hệ</h3><h3>Cửa Hàng Phú Quý</h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li></ul><p>\r\n\r\n<span style="font-size:11.0pt;line-height:115%;font-family:"Calibri","sans-serif";\r\nmso-ascii-theme-font:minor-latin;mso-fareast-font-family:Calibri;mso-fareast-theme-font:\r\nminor-latin;mso-hansi-theme-font:minor-latin;mso-bidi-font-family:"Times New Roman";\r\nmso-bidi-theme-font:minor-bidi;mso-ansi-language:EN-GB;mso-fareast-language:\r\nEN-US;mso-bidi-language:AR-SA">Email: <EMAIL>.</span><br></p>', 1, 6, 3, '2017-04-08 20:53:49', '2017-04-08 21:18:15', 'Day-Curoa-Trung-Quoc-TRIANGLE', 'IMG0567_1491710029220.JPG'),
(7, 'Dây Cuaroa Răng Trung Quốc MITSUBA', '', '<p>Qui Cách : A, B, C, D, FM</p><p><!--[if gte mso 9]><xml>\r\n <o:OfficeDocumentSettings>\r\n <o:AllowPNG></o:AllowPNG>\r\n </o:OfficeDocumentSettings>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n <w:View>Normal</w:View>\r\n <w:Zoom>0</w:Zoom>\r\n <w:TrackMoves></w:TrackMoves>\r\n <w:TrackFormatting></w:TrackFormatting>\r\n <w:PunctuationKerning></w:PunctuationKerning>\r\n <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas>\r\n <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n <w:DoNotPromoteQF></w:DoNotPromoteQF>\r\n <w:LidThemeOther>EN-GB</w:LidThemeOther>\r\n <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n <w:Compatibility>\r\n <w:BreakWrappedTables></w:BreakWrappedTables>\r\n <w:SnapToGridInCell></w:SnapToGridInCell>\r\n <w:WrapTextWithPunct></w:WrapTextWithPunct>\r\n <w:UseAsianBreakRules></w:UseAsianBreakRules>\r\n <w:DontGrowAutofit></w:DontGrowAutofit>\r\n <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark>\r\n <w:EnableOpenTypeKerning></w:EnableOpenTypeKerning>\r\n <w:DontFlipMirrorIndents></w:DontFlipMirrorIndents>\r\n <w:OverrideTableStyleHps></w:OverrideTableStyleHps>\r\n </w:Compatibility>\r\n <m:mathPr>\r\n <m:mathFont m:val="Cambria Math"></m:mathFont>\r\n <m:brkBin m:val="before"></m:brkBin>\r\n <m:brkBinSub m:val="--"></m:brkBinSub>\r\n <m:smallFrac m:val="off"></m:smallFrac>\r\n <m:dispDef></m:dispDef>\r\n <m:lMargin m:val="0"></m:lMargin>\r\n <m:rMargin m:val="0"></m:rMargin>\r\n <m:defJc m:val="centerGroup"></m:defJc>\r\n <m:wrapIndent m:val="1440"></m:wrapIndent>\r\n <m:intLim m:val="subSup"></m:intLim>\r\n <m:naryLim m:val="undOvr"></m:naryLim>\r\n </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"\r\n DefSemiHidden="true" DefQFormat="false" DefPriority="99"\r\n LatentStyleCount="267">\r\n <w:LsdException Locked="false" Priority="0" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Normal"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="heading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="10" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="11" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtitle"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="22" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Strong"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="20" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="59" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Table Grid"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="No Spacing"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="34" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="29" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="30" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="19" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="21" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="31" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="32" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="33" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Book Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="37" Name="Bibliography"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"></w:LsdException>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n {mso-style-name:"Table Normal";\r\n mso-tstyle-rowband-size:0;\r\n mso-tstyle-colband-size:0;\r\n mso-style-noshow:yes;\r\n mso-style-priority:99;\r\n mso-style-parent:"";\r\n mso-padding-alt:0cm 5.4pt 0cm 5.4pt;\r\n mso-para-margin-top:0cm;\r\n mso-para-margin-right:0cm;\r\n mso-para-margin-bottom:10.0pt;\r\n mso-para-margin-left:0cm;\r\n line-height:115%;\r\n mso-pagination:widow-orphan;\r\n font-size:11.0pt;\r\n font-family:"Calibri","sans-serif";\r\n mso-ascii-font-family:Calibri;\r\n mso-ascii-theme-font:minor-latin;\r\n mso-hansi-font-family:Calibri;\r\n mso-hansi-theme-font:minor-latin;\r\n mso-bidi-font-family:"Times New Roman";\r\n mso-bidi-theme-font:minor-bidi;\r\n mso-fareast-language:EN-US;}\r\n</style>\r\n<![endif]-->\r\n\r\n<br></p><h3>Thông Tin Liên Hệ</h3><h3><NAME></h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li></ul><p>\r\n\r\n<span style="font-size:11.0pt;line-height:115%;font-family:"Calibri","sans-serif";\r\nmso-ascii-theme-font:minor-latin;mso-fareast-font-family:Calibri;mso-fareast-theme-font:\r\nminor-latin;mso-hansi-theme-font:minor-latin;mso-bidi-font-family:"Times New Roman";\r\nmso-bidi-theme-font:minor-bidi;mso-ansi-language:EN-GB;mso-fareast-language:\r\nEN-US;mso-bidi-language:AR-SA">Email: <EMAIL>.</span><br></p>', 1, 7, 3, '2017-04-08 20:55:29', '2017-04-08 20:55:44', 'Day-Cuaroa-Rang-Trung-Quoc-MITSUBA', 'IMG0572_1491710129500.JPG');
INSERT INTO `sanphams` (`id`, `display_name`, `price`, `noidung`, `lienhegia`, `danhmuc_id`, `user_id`, `created_at`, `updated_at`, `path`, `anhsanpham`) VALUES
(8, '<NAME> MITSUBOSHI', '', '<p>Qui Cách : A, B, C, D, FM</p><p><!--[if gte mso 9]><xml>\r\n <o:OfficeDocumentSettings>\r\n <o:AllowPNG></o:AllowPNG>\r\n </o:OfficeDocumentSettings>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n <w:View>Normal</w:View>\r\n <w:Zoom>0</w:Zoom>\r\n <w:TrackMoves></w:TrackMoves>\r\n <w:TrackFormatting></w:TrackFormatting>\r\n <w:PunctuationKerning></w:PunctuationKerning>\r\n <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas>\r\n <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n <w:DoNotPromoteQF></w:DoNotPromoteQF>\r\n <w:LidThemeOther>EN-GB</w:LidThemeOther>\r\n <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n <w:Compatibility>\r\n <w:BreakWrappedTables></w:BreakWrappedTables>\r\n <w:SnapToGridInCell></w:SnapToGridInCell>\r\n <w:WrapTextWithPunct></w:WrapTextWithPunct>\r\n <w:UseAsianBreakRules></w:UseAsianBreakRules>\r\n <w:DontGrowAutofit></w:DontGrowAutofit>\r\n <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark>\r\n <w:EnableOpenTypeKerning></w:EnableOpenTypeKerning>\r\n <w:DontFlipMirrorIndents></w:DontFlipMirrorIndents>\r\n <w:OverrideTableStyleHps></w:OverrideTableStyleHps>\r\n </w:Compatibility>\r\n <m:mathPr>\r\n <m:mathFont m:val="Cambria Math"></m:mathFont>\r\n <m:brkBin m:val="before"></m:brkBin>\r\n <m:brkBinSub m:val="--"></m:brkBinSub>\r\n <m:smallFrac m:val="off"></m:smallFrac>\r\n <m:dispDef></m:dispDef>\r\n <m:lMargin m:val="0"></m:lMargin>\r\n <m:rMargin m:val="0"></m:rMargin>\r\n <m:defJc m:val="centerGroup"></m:defJc>\r\n <m:wrapIndent m:val="1440"></m:wrapIndent>\r\n <m:intLim m:val="subSup"></m:intLim>\r\n <m:naryLim m:val="undOvr"></m:naryLim>\r\n </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"\r\n DefSemiHidden="true" DefQFormat="false" DefPriority="99"\r\n LatentStyleCount="267">\r\n <w:LsdException Locked="false" Priority="0" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Normal"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="heading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="10" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="11" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtitle"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="22" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Strong"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="20" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="59" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Table Grid"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="No Spacing"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="34" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="29" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="30" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="19" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="21" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="31" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="32" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="33" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Book Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="37" Name="Bibliography"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"></w:LsdException>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n {mso-style-name:"Table Normal";\r\n mso-tstyle-rowband-size:0;\r\n mso-tstyle-colband-size:0;\r\n mso-style-noshow:yes;\r\n mso-style-priority:99;\r\n mso-style-parent:"";\r\n mso-padding-alt:0cm 5.4pt 0cm 5.4pt;\r\n mso-para-margin-top:0cm;\r\n mso-para-margin-right:0cm;\r\n mso-para-margin-bottom:10.0pt;\r\n mso-para-margin-left:0cm;\r\n line-height:115%;\r\n mso-pagination:widow-orphan;\r\n font-size:11.0pt;\r\n font-family:"Calibri","sans-serif";\r\n mso-ascii-font-family:Calibri;\r\n mso-ascii-theme-font:minor-latin;\r\n mso-hansi-font-family:Calibri;\r\n mso-hansi-theme-font:minor-latin;\r\n mso-bidi-font-family:"Times New Roman";\r\n mso-bidi-theme-font:minor-bidi;\r\n mso-fareast-language:EN-US;}\r\n</style>\r\n<![endif]--><br></p><h3>Thông Tin Liên Hệ</h3><h3>Cửa Hàng Phú Quý</h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li>\r\n\r\n<span style="font-size:11.0pt;line-height:115%;font-family:"Calibri","sans-serif";\r\nmso-ascii-theme-font:minor-latin;mso-fareast-font-family:Calibri;mso-fareast-theme-font:\r\nminor-latin;mso-hansi-theme-font:minor-latin;mso-bidi-font-family:"Times New Roman";\r\nmso-bidi-theme-font:minor-bidi;mso-ansi-language:EN-GB;mso-fareast-language:\r\nEN-US;mso-bidi-language:AR-SA">Email: <EMAIL>.</span><br></li></ul><p><br></p>', 1, 7, 3, '2017-04-08 20:57:15', '2017-04-08 20:57:15', 'Day-Cuaroa-Rang-Nhat-MITSUBOSHI', 'IMG0579_1491710235925.JPG'),
(9, '<NAME>', '', '<p>Qui Cách : A, B, C, D, FM</p><p><!--[if gte mso 9]><xml>\r\n <o:OfficeDocumentSettings>\r\n <o:AllowPNG></o:AllowPNG>\r\n </o:OfficeDocumentSettings>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n <w:View>Normal</w:View>\r\n <w:Zoom>0</w:Zoom>\r\n <w:TrackMoves></w:TrackMoves>\r\n <w:TrackFormatting></w:TrackFormatting>\r\n <w:PunctuationKerning></w:PunctuationKerning>\r\n <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas>\r\n <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n <w:DoNotPromoteQF></w:DoNotPromoteQF>\r\n <w:LidThemeOther>EN-GB</w:LidThemeOther>\r\n <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n <w:Compatibility>\r\n <w:BreakWrappedTables></w:BreakWrappedTables>\r\n <w:SnapToGridInCell></w:SnapToGridInCell>\r\n <w:WrapTextWithPunct></w:WrapTextWithPunct>\r\n <w:UseAsianBreakRules></w:UseAsianBreakRules>\r\n <w:DontGrowAutofit></w:DontGrowAutofit>\r\n <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark>\r\n <w:EnableOpenTypeKerning></w:EnableOpenTypeKerning>\r\n <w:DontFlipMirrorIndents></w:DontFlipMirrorIndents>\r\n <w:OverrideTableStyleHps></w:OverrideTableStyleHps>\r\n </w:Compatibility>\r\n <m:mathPr>\r\n <m:mathFont m:val="Cambria Math"></m:mathFont>\r\n <m:brkBin m:val="before"></m:brkBin>\r\n <m:brkBinSub m:val="--"></m:brkBinSub>\r\n <m:smallFrac m:val="off"></m:smallFrac>\r\n <m:dispDef></m:dispDef>\r\n <m:lMargin m:val="0"></m:lMargin>\r\n <m:rMargin m:val="0"></m:rMargin>\r\n <m:defJc m:val="centerGroup"></m:defJc>\r\n <m:wrapIndent m:val="1440"></m:wrapIndent>\r\n <m:intLim m:val="subSup"></m:intLim>\r\n <m:naryLim m:val="undOvr"></m:naryLim>\r\n </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"\r\n DefSemiHidden="true" DefQFormat="false" DefPriority="99"\r\n LatentStyleCount="267">\r\n <w:LsdException Locked="false" Priority="0" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Normal"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="heading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="10" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="11" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtitle"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="22" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Strong"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="20" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="59" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Table Grid"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="No Spacing"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="34" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="29" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="30" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="19" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="21" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="31" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="32" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="33" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Book Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="37" Name="Bibliography"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"></w:LsdException>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n {mso-style-name:"Table Normal";\r\n mso-tstyle-rowband-size:0;\r\n mso-tstyle-colband-size:0;\r\n mso-style-noshow:yes;\r\n mso-style-priority:99;\r\n mso-style-parent:"";\r\n mso-padding-alt:0cm 5.4pt 0cm 5.4pt;\r\n mso-para-margin-top:0cm;\r\n mso-para-margin-right:0cm;\r\n mso-para-margin-bottom:10.0pt;\r\n mso-para-margin-left:0cm;\r\n line-height:115%;\r\n mso-pagination:widow-orphan;\r\n font-size:11.0pt;\r\n font-family:"Calibri","sans-serif";\r\n mso-ascii-font-family:Calibri;\r\n mso-ascii-theme-font:minor-latin;\r\n mso-hansi-font-family:Calibri;\r\n mso-hansi-theme-font:minor-latin;\r\n mso-bidi-font-family:"Times New Roman";\r\n mso-bidi-theme-font:minor-bidi;\r\n mso-fareast-language:EN-US;}\r\n</style>\r\n<![endif]-->\r\n\r\n<br></p><h3>Thông Tin Liên Hệ</h3><h3>Cửa <NAME></h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p>\r\n\r\n<br></p>', 1, 7, 3, '2017-04-08 21:14:33', '2017-04-08 21:17:07', 'Day-Cuaroa-Rang-Nhat-BANDO', 'IMG0581_1491711273545.JPG');
INSERT INTO `sanphams` (`id`, `display_name`, `price`, `noidung`, `lienhegia`, `danhmuc_id`, `user_id`, `created_at`, `updated_at`, `path`, `anhsanpham`) VALUES
(10, '<NAME> ( 3M, 5M, 7M, 11M)', '', '<p><!--[if gte mso 9]><xml>\r\n <o:OfficeDocumentSettings>\r\n <o:AllowPNG></o:AllowPNG>\r\n </o:OfficeDocumentSettings>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n <w:View>Normal</w:View>\r\n <w:Zoom>0</w:Zoom>\r\n <w:TrackMoves></w:TrackMoves>\r\n <w:TrackFormatting></w:TrackFormatting>\r\n <w:PunctuationKerning></w:PunctuationKerning>\r\n <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas>\r\n <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n <w:DoNotPromoteQF></w:DoNotPromoteQF>\r\n <w:LidThemeOther>EN-GB</w:LidThemeOther>\r\n <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n <w:Compatibility>\r\n <w:BreakWrappedTables></w:BreakWrappedTables>\r\n <w:SnapToGridInCell></w:SnapToGridInCell>\r\n <w:WrapTextWithPunct></w:WrapTextWithPunct>\r\n <w:UseAsianBreakRules></w:UseAsianBreakRules>\r\n <w:DontGrowAutofit></w:DontGrowAutofit>\r\n <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark>\r\n <w:EnableOpenTypeKerning></w:EnableOpenTypeKerning>\r\n <w:DontFlipMirrorIndents></w:DontFlipMirrorIndents>\r\n <w:OverrideTableStyleHps></w:OverrideTableStyleHps>\r\n </w:Compatibility>\r\n <m:mathPr>\r\n <m:mathFont m:val="Cambria Math"></m:mathFont>\r\n <m:brkBin m:val="before"></m:brkBin>\r\n <m:brkBinSub m:val="--"></m:brkBinSub>\r\n <m:smallFrac m:val="off"></m:smallFrac>\r\n <m:dispDef></m:dispDef>\r\n <m:lMargin m:val="0"></m:lMargin>\r\n <m:rMargin m:val="0"></m:rMargin>\r\n <m:defJc m:val="centerGroup"></m:defJc>\r\n <m:wrapIndent m:val="1440"></m:wrapIndent>\r\n <m:intLim m:val="subSup"></m:intLim>\r\n <m:naryLim m:val="undOvr"></m:naryLim>\r\n </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"\r\n DefSemiHidden="true" DefQFormat="false" DefPriority="99"\r\n LatentStyleCount="267">\r\n <w:LsdException Locked="false" Priority="0" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Normal"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="heading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="10" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="11" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtitle"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="22" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Strong"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="20" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="59" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Table Grid"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="No Spacing"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="34" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="29" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="30" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="19" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="21" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="31" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="32" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="33" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Book Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="37" Name="Bibliography"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"></w:LsdException>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n {mso-style-name:"Table Normal";\r\n mso-tstyle-rowband-size:0;\r\n mso-tstyle-colband-size:0;\r\n mso-style-noshow:yes;\r\n mso-style-priority:99;\r\n mso-style-parent:"";\r\n mso-padding-alt:0cm 5.4pt 0cm 5.4pt;\r\n mso-para-margin-top:0cm;\r\n mso-para-margin-right:0cm;\r\n mso-para-margin-bottom:10.0pt;\r\n mso-para-margin-left:0cm;\r\n line-height:115%;\r\n mso-pagination:widow-orphan;\r\n font-size:11.0pt;\r\n font-family:"Calibri","sans-serif";\r\n mso-ascii-font-family:Calibri;\r\n mso-ascii-theme-font:minor-latin;\r\n mso-hansi-font-family:Calibri;\r\n mso-hansi-theme-font:minor-latin;\r\n mso-bidi-font-family:"Times New Roman";\r\n mso-bidi-theme-font:minor-bidi;\r\n mso-fareast-language:EN-US;}\r\n</style>\r\n<![endif]--><br></p><h3>Thông Tin Liên Hệ</h3><h3>Cửa Hàng Phú Quý</h3><p>\r\n\r\n<br></p><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p>\r\n\r\n<br></p>', 1, 8, 3, '2017-04-08 21:19:29', '2017-04-08 21:27:17', 'Day-Soi-Gates-3M-5M-7M-11M', 'IMG0580_1491711569303.JPG'),
(11, '<NAME> PU 8M-2680-20', '', '<p><!--[if gte mso 9]><xml>\r\n <o:OfficeDocumentSettings>\r\n <o:AllowPNG></o:AllowPNG>\r\n </o:OfficeDocumentSettings>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n <w:View>Normal</w:View>\r\n <w:Zoom>0</w:Zoom>\r\n <w:TrackMoves></w:TrackMoves>\r\n <w:TrackFormatting></w:TrackFormatting>\r\n <w:PunctuationKerning></w:PunctuationKerning>\r\n <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas>\r\n <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n <w:DoNotPromoteQF></w:DoNotPromoteQF>\r\n <w:LidThemeOther>EN-GB</w:LidThemeOther>\r\n <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n <w:Compatibility>\r\n <w:BreakWrappedTables></w:BreakWrappedTables>\r\n <w:SnapToGridInCell></w:SnapToGridInCell>\r\n <w:WrapTextWithPunct></w:WrapTextWithPunct>\r\n <w:UseAsianBreakRules></w:UseAsianBreakRules>\r\n <w:DontGrowAutofit></w:DontGrowAutofit>\r\n <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark>\r\n <w:EnableOpenTypeKerning></w:EnableOpenTypeKerning>\r\n <w:DontFlipMirrorIndents></w:DontFlipMirrorIndents>\r\n <w:OverrideTableStyleHps></w:OverrideTableStyleHps>\r\n </w:Compatibility>\r\n <m:mathPr>\r\n <m:mathFont m:val="Cambria Math"></m:mathFont>\r\n <m:brkBin m:val="before"></m:brkBin>\r\n <m:brkBinSub m:val="--"></m:brkBinSub>\r\n <m:smallFrac m:val="off"></m:smallFrac>\r\n <m:dispDef></m:dispDef>\r\n <m:lMargin m:val="0"></m:lMargin>\r\n <m:rMargin m:val="0"></m:rMargin>\r\n <m:defJc m:val="centerGroup"></m:defJc>\r\n <m:wrapIndent m:val="1440"></m:wrapIndent>\r\n <m:intLim m:val="subSup"></m:intLim>\r\n <m:naryLim m:val="undOvr"></m:naryLim>\r\n </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"\r\n DefSemiHidden="true" DefQFormat="false" DefPriority="99"\r\n LatentStyleCount="267">\r\n <w:LsdException Locked="false" Priority="0" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Normal"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="heading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="10" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="11" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtitle"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="22" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Strong"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="20" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="59" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Table Grid"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="No Spacing"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="34" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="29" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="30" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="19" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="21" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="31" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="32" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="33" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Book Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="37" Name="Bibliography"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"></w:LsdException>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n {mso-style-name:"Table Normal";\r\n mso-tstyle-rowband-size:0;\r\n mso-tstyle-colband-size:0;\r\n mso-style-noshow:yes;\r\n mso-style-priority:99;\r\n mso-style-parent:"";\r\n mso-padding-alt:0cm 5.4pt 0cm 5.4pt;\r\n mso-para-margin-top:0cm;\r\n mso-para-margin-right:0cm;\r\n mso-para-margin-bottom:10.0pt;\r\n mso-para-margin-left:0cm;\r\n line-height:115%;\r\n mso-pagination:widow-orphan;\r\n font-size:11.0pt;\r\n font-family:"Calibri","sans-serif";\r\n mso-ascii-font-family:Calibri;\r\n mso-ascii-theme-font:minor-latin;\r\n mso-hansi-font-family:Calibri;\r\n mso-hansi-theme-font:minor-latin;\r\n mso-bidi-font-family:"Times New Roman";\r\n mso-bidi-theme-font:minor-bidi;\r\n mso-fareast-language:EN-US;}\r\n</style>\r\n<![endif]-->\r\n\r\n<br></p><h3>Thông Tin Liên Hệ</h3><h3><NAME></h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 H<NAME> Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p>\r\n\r\n<br></p>', 1, 9, 3, '2017-04-08 21:31:37', '2017-04-08 21:31:37', 'Day-Cuaroa-Rang-PU-8M-2680-20', 'items111260_1491712297970.jpg');
INSERT INTO `sanphams` (`id`, `display_name`, `price`, `noidung`, `lienhegia`, `danhmuc_id`, `user_id`, `created_at`, `updated_at`, `path`, `anhsanpham`) VALUES
(12, '<NAME> PU DT10-4160', '', '<p><!--[if gte mso 9]><xml>\r\n <o:OfficeDocumentSettings>\r\n <o:AllowPNG></o:AllowPNG>\r\n </o:OfficeDocumentSettings>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n <w:View>Normal</w:View>\r\n <w:Zoom>0</w:Zoom>\r\n <w:TrackMoves></w:TrackMoves>\r\n <w:TrackFormatting></w:TrackFormatting>\r\n <w:PunctuationKerning></w:PunctuationKerning>\r\n <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas>\r\n <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n <w:DoNotPromoteQF></w:DoNotPromoteQF>\r\n <w:LidThemeOther>EN-GB</w:LidThemeOther>\r\n <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n <w:Compatibility>\r\n <w:BreakWrappedTables></w:BreakWrappedTables>\r\n <w:SnapToGridInCell></w:SnapToGridInCell>\r\n <w:WrapTextWithPunct></w:WrapTextWithPunct>\r\n <w:UseAsianBreakRules></w:UseAsianBreakRules>\r\n <w:DontGrowAutofit></w:DontGrowAutofit>\r\n <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark>\r\n <w:EnableOpenTypeKerning></w:EnableOpenTypeKerning>\r\n <w:DontFlipMirrorIndents></w:DontFlipMirrorIndents>\r\n <w:OverrideTableStyleHps></w:OverrideTableStyleHps>\r\n </w:Compatibility>\r\n <m:mathPr>\r\n <m:mathFont m:val="Cambria Math"></m:mathFont>\r\n <m:brkBin m:val="before"></m:brkBin>\r\n <m:brkBinSub m:val="--"></m:brkBinSub>\r\n <m:smallFrac m:val="off"></m:smallFrac>\r\n <m:dispDef></m:dispDef>\r\n <m:lMargin m:val="0"></m:lMargin>\r\n <m:rMargin m:val="0"></m:rMargin>\r\n <m:defJc m:val="centerGroup"></m:defJc>\r\n <m:wrapIndent m:val="1440"></m:wrapIndent>\r\n <m:intLim m:val="subSup"></m:intLim>\r\n <m:naryLim m:val="undOvr"></m:naryLim>\r\n </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"\r\n DefSemiHidden="true" DefQFormat="false" DefPriority="99"\r\n LatentStyleCount="267">\r\n <w:LsdException Locked="false" Priority="0" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Normal"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="heading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="10" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="11" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtitle"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="22" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Strong"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="20" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="59" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Table Grid"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="No Spacing"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="34" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="29" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="30" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="19" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="21" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="31" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="32" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="33" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Book Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="37" Name="Bibliography"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"></w:LsdException>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n {mso-style-name:"Table Normal";\r\n mso-tstyle-rowband-size:0;\r\n mso-tstyle-colband-size:0;\r\n mso-style-noshow:yes;\r\n mso-style-priority:99;\r\n mso-style-parent:"";\r\n mso-padding-alt:0cm 5.4pt 0cm 5.4pt;\r\n mso-para-margin-top:0cm;\r\n mso-para-margin-right:0cm;\r\n mso-para-margin-bottom:10.0pt;\r\n mso-para-margin-left:0cm;\r\n line-height:115%;\r\n mso-pagination:widow-orphan;\r\n font-size:11.0pt;\r\n font-family:"Calibri","sans-serif";\r\n mso-ascii-font-family:Calibri;\r\n mso-ascii-theme-font:minor-latin;\r\n mso-hansi-font-family:Calibri;\r\n mso-hansi-theme-font:minor-latin;\r\n mso-bidi-font-family:"Times New Roman";\r\n mso-bidi-theme-font:minor-bidi;\r\n mso-fareast-language:EN-US;}\r\n</style>\r\n<![endif]-->\r\n\r\n<br></p><h3>Thông Tin Liên Hệ</h3><h3>Cửa Hàng Phú Quý</h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p>\r\n\r\n<br></p>', 1, 9, 3, '2017-04-08 21:34:15', '2017-04-08 21:34:15', 'Day-Cuaroa-Rang-PU-DT10-4160', 'items111255_1491712455468.jpg'),
(13, 'Dây Cuaroa Răng PU S5M OPEN', '', '<p><!--[if gte mso 9]><xml>\r\n <o:OfficeDocumentSettings>\r\n <o:AllowPNG></o:AllowPNG>\r\n </o:OfficeDocumentSettings>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n <w:View>Normal</w:View>\r\n <w:Zoom>0</w:Zoom>\r\n <w:TrackMoves></w:TrackMoves>\r\n <w:TrackFormatting></w:TrackFormatting>\r\n <w:PunctuationKerning></w:PunctuationKerning>\r\n <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas>\r\n <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n <w:DoNotPromoteQF></w:DoNotPromoteQF>\r\n <w:LidThemeOther>EN-GB</w:LidThemeOther>\r\n <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n <w:Compatibility>\r\n <w:BreakWrappedTables></w:BreakWrappedTables>\r\n <w:SnapToGridInCell></w:SnapToGridInCell>\r\n <w:WrapTextWithPunct></w:WrapTextWithPunct>\r\n <w:UseAsianBreakRules></w:UseAsianBreakRules>\r\n <w:DontGrowAutofit></w:DontGrowAutofit>\r\n <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark>\r\n <w:EnableOpenTypeKerning></w:EnableOpenTypeKerning>\r\n <w:DontFlipMirrorIndents></w:DontFlipMirrorIndents>\r\n <w:OverrideTableStyleHps></w:OverrideTableStyleHps>\r\n </w:Compatibility>\r\n <m:mathPr>\r\n <m:mathFont m:val="Cambria Math"></m:mathFont>\r\n <m:brkBin m:val="before"></m:brkBin>\r\n <m:brkBinSub m:val="--"></m:brkBinSub>\r\n <m:smallFrac m:val="off"></m:smallFrac>\r\n <m:dispDef></m:dispDef>\r\n <m:lMargin m:val="0"></m:lMargin>\r\n <m:rMargin m:val="0"></m:rMargin>\r\n <m:defJc m:val="centerGroup"></m:defJc>\r\n <m:wrapIndent m:val="1440"></m:wrapIndent>\r\n <m:intLim m:val="subSup"></m:intLim>\r\n <m:naryLim m:val="undOvr"></m:naryLim>\r\n </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"\r\n DefSemiHidden="true" DefQFormat="false" DefPriority="99"\r\n LatentStyleCount="267">\r\n <w:LsdException Locked="false" Priority="0" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Normal"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="heading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="10" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="11" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtitle"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="22" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Strong"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="20" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="59" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Table Grid"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="No Spacing"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="34" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="29" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="30" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="19" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="21" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="31" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="32" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="33" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Book Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="37" Name="Bibliography"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"></w:LsdException>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n {mso-style-name:"Table Normal";\r\n mso-tstyle-rowband-size:0;\r\n mso-tstyle-colband-size:0;\r\n mso-style-noshow:yes;\r\n mso-style-priority:99;\r\n mso-style-parent:"";\r\n mso-padding-alt:0cm 5.4pt 0cm 5.4pt;\r\n mso-para-margin-top:0cm;\r\n mso-para-margin-right:0cm;\r\n mso-para-margin-bottom:10.0pt;\r\n mso-para-margin-left:0cm;\r\n line-height:115%;\r\n mso-pagination:widow-orphan;\r\n font-size:11.0pt;\r\n font-family:"Calibri","sans-serif";\r\n mso-ascii-font-family:Calibri;\r\n mso-ascii-theme-font:minor-latin;\r\n mso-hansi-font-family:Calibri;\r\n mso-hansi-theme-font:minor-latin;\r\n mso-bidi-font-family:"Times New Roman";\r\n mso-bidi-theme-font:minor-bidi;\r\n mso-fareast-language:EN-US;}\r\n</style>\r\n<![endif]-->\r\n\r\n<br></p><h3>Thông Tin Liên Hệ</h3><h3>Cửa Hàng Phú Quý</h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p>\r\n\r\n<br></p>', 1, 9, 3, '2017-04-08 21:35:10', '2017-04-08 21:35:10', 'Day-Cuaroa-Rang-PU-S5M-OPEN', 'items111253_1491712510645.jpg');
INSERT INTO `sanphams` (`id`, `display_name`, `price`, `noidung`, `lienhegia`, `danhmuc_id`, `user_id`, `created_at`, `updated_at`, `path`, `anhsanpham`) VALUES
(14, '<NAME> PU P1', '', '<p><!--[if gte mso 9]><xml>\r\n <o:OfficeDocumentSettings>\r\n <o:AllowPNG></o:AllowPNG>\r\n </o:OfficeDocumentSettings>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n <w:View>Normal</w:View>\r\n <w:Zoom>0</w:Zoom>\r\n <w:TrackMoves></w:TrackMoves>\r\n <w:TrackFormatting></w:TrackFormatting>\r\n <w:PunctuationKerning></w:PunctuationKerning>\r\n <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas>\r\n <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n <w:DoNotPromoteQF></w:DoNotPromoteQF>\r\n <w:LidThemeOther>EN-GB</w:LidThemeOther>\r\n <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n <w:Compatibility>\r\n <w:BreakWrappedTables></w:BreakWrappedTables>\r\n <w:SnapToGridInCell></w:SnapToGridInCell>\r\n <w:WrapTextWithPunct></w:WrapTextWithPunct>\r\n <w:UseAsianBreakRules></w:UseAsianBreakRules>\r\n <w:DontGrowAutofit></w:DontGrowAutofit>\r\n <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark>\r\n <w:EnableOpenTypeKerning></w:EnableOpenTypeKerning>\r\n <w:DontFlipMirrorIndents></w:DontFlipMirrorIndents>\r\n <w:OverrideTableStyleHps></w:OverrideTableStyleHps>\r\n </w:Compatibility>\r\n <m:mathPr>\r\n <m:mathFont m:val="Cambria Math"></m:mathFont>\r\n <m:brkBin m:val="before"></m:brkBin>\r\n <m:brkBinSub m:val="--"></m:brkBinSub>\r\n <m:smallFrac m:val="off"></m:smallFrac>\r\n <m:dispDef></m:dispDef>\r\n <m:lMargin m:val="0"></m:lMargin>\r\n <m:rMargin m:val="0"></m:rMargin>\r\n <m:defJc m:val="centerGroup"></m:defJc>\r\n <m:wrapIndent m:val="1440"></m:wrapIndent>\r\n <m:intLim m:val="subSup"></m:intLim>\r\n <m:naryLim m:val="undOvr"></m:naryLim>\r\n </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"\r\n DefSemiHidden="true" DefQFormat="false" DefPriority="99"\r\n LatentStyleCount="267">\r\n <w:LsdException Locked="false" Priority="0" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Normal"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="heading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="10" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="11" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtitle"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="22" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Strong"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="20" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="59" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Table Grid"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="No Spacing"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="34" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="29" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="30" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="19" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="21" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="31" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="32" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="33" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Book Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="37" Name="Bibliography"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"></w:LsdException>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n {mso-style-name:"Table Normal";\r\n mso-tstyle-rowband-size:0;\r\n mso-tstyle-colband-size:0;\r\n mso-style-noshow:yes;\r\n mso-style-priority:99;\r\n mso-style-parent:"";\r\n mso-padding-alt:0cm 5.4pt 0cm 5.4pt;\r\n mso-para-margin-top:0cm;\r\n mso-para-margin-right:0cm;\r\n mso-para-margin-bottom:10.0pt;\r\n mso-para-margin-left:0cm;\r\n line-height:115%;\r\n mso-pagination:widow-orphan;\r\n font-size:11.0pt;\r\n font-family:"Calibri","sans-serif";\r\n mso-ascii-font-family:Calibri;\r\n mso-ascii-theme-font:minor-latin;\r\n mso-hansi-font-family:Calibri;\r\n mso-hansi-theme-font:minor-latin;\r\n mso-bidi-font-family:"Times New Roman";\r\n mso-bidi-theme-font:minor-bidi;\r\n mso-fareast-language:EN-US;}\r\n</style>\r\n<![endif]-->\r\n\r\n<br></p><h3>Thông Tin Liên Hệ</h3><h3><NAME></h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p>\r\n\r\n<br></p>', 1, 9, 3, '2017-04-08 21:36:24', '2017-04-08 21:36:24', 'Day-Cuaroa-Rang-PU-P1', 'items111252_1491712584076.jpg'),
(15, 'Dây Cuaroa Răng PU S8M', '', '<p><!--[if gte mso 9]><xml>\r\n <o:OfficeDocumentSettings>\r\n <o:AllowPNG></o:AllowPNG>\r\n </o:OfficeDocumentSettings>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n <w:View>Normal</w:View>\r\n <w:Zoom>0</w:Zoom>\r\n <w:TrackMoves></w:TrackMoves>\r\n <w:TrackFormatting></w:TrackFormatting>\r\n <w:PunctuationKerning></w:PunctuationKerning>\r\n <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas>\r\n <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n <w:DoNotPromoteQF></w:DoNotPromoteQF>\r\n <w:LidThemeOther>EN-GB</w:LidThemeOther>\r\n <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n <w:Compatibility>\r\n <w:BreakWrappedTables></w:BreakWrappedTables>\r\n <w:SnapToGridInCell></w:SnapToGridInCell>\r\n <w:WrapTextWithPunct></w:WrapTextWithPunct>\r\n <w:UseAsianBreakRules></w:UseAsianBreakRules>\r\n <w:DontGrowAutofit></w:DontGrowAutofit>\r\n <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark>\r\n <w:EnableOpenTypeKerning></w:EnableOpenTypeKerning>\r\n <w:DontFlipMirrorIndents></w:DontFlipMirrorIndents>\r\n <w:OverrideTableStyleHps></w:OverrideTableStyleHps>\r\n </w:Compatibility>\r\n <m:mathPr>\r\n <m:mathFont m:val="Cambria Math"></m:mathFont>\r\n <m:brkBin m:val="before"></m:brkBin>\r\n <m:brkBinSub m:val="--"></m:brkBinSub>\r\n <m:smallFrac m:val="off"></m:smallFrac>\r\n <m:dispDef></m:dispDef>\r\n <m:lMargin m:val="0"></m:lMargin>\r\n <m:rMargin m:val="0"></m:rMargin>\r\n <m:defJc m:val="centerGroup"></m:defJc>\r\n <m:wrapIndent m:val="1440"></m:wrapIndent>\r\n <m:intLim m:val="subSup"></m:intLim>\r\n <m:naryLim m:val="undOvr"></m:naryLim>\r\n </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"\r\n DefSemiHidden="true" DefQFormat="false" DefPriority="99"\r\n LatentStyleCount="267">\r\n <w:LsdException Locked="false" Priority="0" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Normal"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="heading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="10" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="11" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtitle"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="22" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Strong"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="20" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="59" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Table Grid"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="No Spacing"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="34" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="29" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="30" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="19" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="21" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="31" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="32" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="33" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Book Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="37" Name="Bibliography"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"></w:LsdException>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n {mso-style-name:"Table Normal";\r\n mso-tstyle-rowband-size:0;\r\n mso-tstyle-colband-size:0;\r\n mso-style-noshow:yes;\r\n mso-style-priority:99;\r\n mso-style-parent:"";\r\n mso-padding-alt:0cm 5.4pt 0cm 5.4pt;\r\n mso-para-margin-top:0cm;\r\n mso-para-margin-right:0cm;\r\n mso-para-margin-bottom:10.0pt;\r\n mso-para-margin-left:0cm;\r\n line-height:115%;\r\n mso-pagination:widow-orphan;\r\n font-size:11.0pt;\r\n font-family:"Calibri","sans-serif";\r\n mso-ascii-font-family:Calibri;\r\n mso-ascii-theme-font:minor-latin;\r\n mso-hansi-font-family:Calibri;\r\n mso-hansi-theme-font:minor-latin;\r\n mso-bidi-font-family:"Times New Roman";\r\n mso-bidi-theme-font:minor-bidi;\r\n mso-fareast-language:EN-US;}\r\n</style>\r\n<![endif]-->\r\n\r\n<br></p><h3>Thông Tin Liên Hệ</h3><h3>Cửa <NAME></h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 H<NAME> Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p>\r\n\r\n<br></p>', 1, 9, 3, '2017-04-08 21:37:08', '2017-04-08 21:37:25', 'Day-Cuaroa-Rang-PU-S8M', 'items111251_1491712628027.jpg');
INSERT INTO `sanphams` (`id`, `display_name`, `price`, `noidung`, `lienhegia`, `danhmuc_id`, `user_id`, `created_at`, `updated_at`, `path`, `anhsanpham`) VALUES
(16, 'Dây Cuaroa Răng PU T10-800 Đắp Cao Su', '', '<p><!--[if gte mso 9]><xml>\r\n <o:OfficeDocumentSettings>\r\n <o:AllowPNG></o:AllowPNG>\r\n </o:OfficeDocumentSettings>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n <w:View>Normal</w:View>\r\n <w:Zoom>0</w:Zoom>\r\n <w:TrackMoves></w:TrackMoves>\r\n <w:TrackFormatting></w:TrackFormatting>\r\n <w:PunctuationKerning></w:PunctuationKerning>\r\n <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas>\r\n <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n <w:DoNotPromoteQF></w:DoNotPromoteQF>\r\n <w:LidThemeOther>EN-GB</w:LidThemeOther>\r\n <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n <w:Compatibility>\r\n <w:BreakWrappedTables></w:BreakWrappedTables>\r\n <w:SnapToGridInCell></w:SnapToGridInCell>\r\n <w:WrapTextWithPunct></w:WrapTextWithPunct>\r\n <w:UseAsianBreakRules></w:UseAsianBreakRules>\r\n <w:DontGrowAutofit></w:DontGrowAutofit>\r\n <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark>\r\n <w:EnableOpenTypeKerning></w:EnableOpenTypeKerning>\r\n <w:DontFlipMirrorIndents></w:DontFlipMirrorIndents>\r\n <w:OverrideTableStyleHps></w:OverrideTableStyleHps>\r\n </w:Compatibility>\r\n <m:mathPr>\r\n <m:mathFont m:val="Cambria Math"></m:mathFont>\r\n <m:brkBin m:val="before"></m:brkBin>\r\n <m:brkBinSub m:val="--"></m:brkBinSub>\r\n <m:smallFrac m:val="off"></m:smallFrac>\r\n <m:dispDef></m:dispDef>\r\n <m:lMargin m:val="0"></m:lMargin>\r\n <m:rMargin m:val="0"></m:rMargin>\r\n <m:defJc m:val="centerGroup"></m:defJc>\r\n <m:wrapIndent m:val="1440"></m:wrapIndent>\r\n <m:intLim m:val="subSup"></m:intLim>\r\n <m:naryLim m:val="undOvr"></m:naryLim>\r\n </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"\r\n DefSemiHidden="true" DefQFormat="false" DefPriority="99"\r\n LatentStyleCount="267">\r\n <w:LsdException Locked="false" Priority="0" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Normal"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="heading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="10" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="11" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtitle"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="22" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Strong"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="20" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="59" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Table Grid"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="No Spacing"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="34" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="29" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="30" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="19" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="21" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="31" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="32" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="33" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Book Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="37" Name="Bibliography"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"></w:LsdException>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n {mso-style-name:"Table Normal";\r\n mso-tstyle-rowband-size:0;\r\n mso-tstyle-colband-size:0;\r\n mso-style-noshow:yes;\r\n mso-style-priority:99;\r\n mso-style-parent:"";\r\n mso-padding-alt:0cm 5.4pt 0cm 5.4pt;\r\n mso-para-margin-top:0cm;\r\n mso-para-margin-right:0cm;\r\n mso-para-margin-bottom:10.0pt;\r\n mso-para-margin-left:0cm;\r\n line-height:115%;\r\n mso-pagination:widow-orphan;\r\n font-size:11.0pt;\r\n font-family:"Calibri","sans-serif";\r\n mso-ascii-font-family:Calibri;\r\n mso-ascii-theme-font:minor-latin;\r\n mso-hansi-font-family:Calibri;\r\n mso-hansi-theme-font:minor-latin;\r\n mso-bidi-font-family:"Times New Roman";\r\n mso-bidi-theme-font:minor-bidi;\r\n mso-fareast-language:EN-US;}\r\n</style>\r\n<![endif]-->\r\n\r\n<br></p><h3>Thông Tin Liên Hệ</h3><h3>Cửa Hàng Phú Quý</h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p>\r\n\r\n<br></p>', 1, 9, 3, '2017-04-08 21:38:38', '2017-04-08 21:38:38', 'Day-Cuaroa-Rang-PU-T10-800-Dap-Cao-Su', 'items111250_1491712718240.jpg'),
(17, 'D<NAME> PU T10-3040 Nút', '', '<p><!--[if gte mso 9]><xml>\r\n <o:OfficeDocumentSettings>\r\n <o:AllowPNG></o:AllowPNG>\r\n </o:OfficeDocumentSettings>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n <w:View>Normal</w:View>\r\n <w:Zoom>0</w:Zoom>\r\n <w:TrackMoves></w:TrackMoves>\r\n <w:TrackFormatting></w:TrackFormatting>\r\n <w:PunctuationKerning></w:PunctuationKerning>\r\n <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas>\r\n <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n <w:DoNotPromoteQF></w:DoNotPromoteQF>\r\n <w:LidThemeOther>EN-GB</w:LidThemeOther>\r\n <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n <w:Compatibility>\r\n <w:BreakWrappedTables></w:BreakWrappedTables>\r\n <w:SnapToGridInCell></w:SnapToGridInCell>\r\n <w:WrapTextWithPunct></w:WrapTextWithPunct>\r\n <w:UseAsianBreakRules></w:UseAsianBreakRules>\r\n <w:DontGrowAutofit></w:DontGrowAutofit>\r\n <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark>\r\n <w:EnableOpenTypeKerning></w:EnableOpenTypeKerning>\r\n <w:DontFlipMirrorIndents></w:DontFlipMirrorIndents>\r\n <w:OverrideTableStyleHps></w:OverrideTableStyleHps>\r\n </w:Compatibility>\r\n <m:mathPr>\r\n <m:mathFont m:val="Cambria Math"></m:mathFont>\r\n <m:brkBin m:val="before"></m:brkBin>\r\n <m:brkBinSub m:val="--"></m:brkBinSub>\r\n <m:smallFrac m:val="off"></m:smallFrac>\r\n <m:dispDef></m:dispDef>\r\n <m:lMargin m:val="0"></m:lMargin>\r\n <m:rMargin m:val="0"></m:rMargin>\r\n <m:defJc m:val="centerGroup"></m:defJc>\r\n <m:wrapIndent m:val="1440"></m:wrapIndent>\r\n <m:intLim m:val="subSup"></m:intLim>\r\n <m:naryLim m:val="undOvr"></m:naryLim>\r\n </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"\r\n DefSemiHidden="true" DefQFormat="false" DefPriority="99"\r\n LatentStyleCount="267">\r\n <w:LsdException Locked="false" Priority="0" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Normal"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="heading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="10" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="11" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtitle"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="22" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Strong"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="20" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="59" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Table Grid"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="No Spacing"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="34" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="29" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="30" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="19" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="21" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="31" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="32" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="33" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Book Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="37" Name="Bibliography"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"></w:LsdException>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n {mso-style-name:"Table Normal";\r\n mso-tstyle-rowband-size:0;\r\n mso-tstyle-colband-size:0;\r\n mso-style-noshow:yes;\r\n mso-style-priority:99;\r\n mso-style-parent:"";\r\n mso-padding-alt:0cm 5.4pt 0cm 5.4pt;\r\n mso-para-margin-top:0cm;\r\n mso-para-margin-right:0cm;\r\n mso-para-margin-bottom:10.0pt;\r\n mso-para-margin-left:0cm;\r\n line-height:115%;\r\n mso-pagination:widow-orphan;\r\n font-size:11.0pt;\r\n font-family:"Calibri","sans-serif";\r\n mso-ascii-font-family:Calibri;\r\n mso-ascii-theme-font:minor-latin;\r\n mso-hansi-font-family:Calibri;\r\n mso-hansi-theme-font:minor-latin;\r\n mso-bidi-font-family:"Times New Roman";\r\n mso-bidi-theme-font:minor-bidi;\r\n mso-fareast-language:EN-US;}\r\n</style>\r\n<![endif]-->\r\n\r\n<br></p><h3>Thông Tin Liên Hệ</h3><h3><NAME></h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p>\r\n\r\n<br></p>', 1, 9, 3, '2017-04-08 21:39:27', '2017-04-08 21:39:27', 'Day-Cuaroa-Rang-PU-T10-3040-Nut', 'items111249_1491712767053.jpg');
INSERT INTO `sanphams` (`id`, `display_name`, `price`, `noidung`, `lienhegia`, `danhmuc_id`, `user_id`, `created_at`, `updated_at`, `path`, `anhsanpham`) VALUES
(18, '<NAME> PU Open T10 , AT10 , T20 , AT20', '', '<p><!--[if gte mso 9]><xml>\r\n <o:OfficeDocumentSettings>\r\n <o:AllowPNG></o:AllowPNG>\r\n </o:OfficeDocumentSettings>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n <w:View>Normal</w:View>\r\n <w:Zoom>0</w:Zoom>\r\n <w:TrackMoves></w:TrackMoves>\r\n <w:TrackFormatting></w:TrackFormatting>\r\n <w:PunctuationKerning></w:PunctuationKerning>\r\n <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas>\r\n <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n <w:DoNotPromoteQF></w:DoNotPromoteQF>\r\n <w:LidThemeOther>EN-GB</w:LidThemeOther>\r\n <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n <w:Compatibility>\r\n <w:BreakWrappedTables></w:BreakWrappedTables>\r\n <w:SnapToGridInCell></w:SnapToGridInCell>\r\n <w:WrapTextWithPunct></w:WrapTextWithPunct>\r\n <w:UseAsianBreakRules></w:UseAsianBreakRules>\r\n <w:DontGrowAutofit></w:DontGrowAutofit>\r\n <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark>\r\n <w:EnableOpenTypeKerning></w:EnableOpenTypeKerning>\r\n <w:DontFlipMirrorIndents></w:DontFlipMirrorIndents>\r\n <w:OverrideTableStyleHps></w:OverrideTableStyleHps>\r\n </w:Compatibility>\r\n <m:mathPr>\r\n <m:mathFont m:val="Cambria Math"></m:mathFont>\r\n <m:brkBin m:val="before"></m:brkBin>\r\n <m:brkBinSub m:val="--"></m:brkBinSub>\r\n <m:smallFrac m:val="off"></m:smallFrac>\r\n <m:dispDef></m:dispDef>\r\n <m:lMargin m:val="0"></m:lMargin>\r\n <m:rMargin m:val="0"></m:rMargin>\r\n <m:defJc m:val="centerGroup"></m:defJc>\r\n <m:wrapIndent m:val="1440"></m:wrapIndent>\r\n <m:intLim m:val="subSup"></m:intLim>\r\n <m:naryLim m:val="undOvr"></m:naryLim>\r\n </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"\r\n DefSemiHidden="true" DefQFormat="false" DefPriority="99"\r\n LatentStyleCount="267">\r\n <w:LsdException Locked="false" Priority="0" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Normal"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="heading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="10" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="11" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtitle"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="22" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Strong"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="20" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="59" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Table Grid"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="No Spacing"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="34" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="29" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="30" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="19" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="21" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="31" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="32" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="33" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Book Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="37" Name="Bibliography"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"></w:LsdException>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n {mso-style-name:"Table Normal";\r\n mso-tstyle-rowband-size:0;\r\n mso-tstyle-colband-size:0;\r\n mso-style-noshow:yes;\r\n mso-style-priority:99;\r\n mso-style-parent:"";\r\n mso-padding-alt:0cm 5.4pt 0cm 5.4pt;\r\n mso-para-margin-top:0cm;\r\n mso-para-margin-right:0cm;\r\n mso-para-margin-bottom:10.0pt;\r\n mso-para-margin-left:0cm;\r\n line-height:115%;\r\n mso-pagination:widow-orphan;\r\n font-size:11.0pt;\r\n font-family:"Calibri","sans-serif";\r\n mso-ascii-font-family:Calibri;\r\n mso-ascii-theme-font:minor-latin;\r\n mso-hansi-font-family:Calibri;\r\n mso-hansi-theme-font:minor-latin;\r\n mso-bidi-font-family:"Times New Roman";\r\n mso-bidi-theme-font:minor-bidi;\r\n mso-fareast-language:EN-US;}\r\n</style>\r\n<![endif]-->\r\n\r\n<br></p><h3>Thông Tin Liên Hệ</h3><h3>Cửa Hàng Phú Quý</h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p>\r\n\r\n<br></p>', 1, 9, 3, '2017-04-08 21:41:58', '2017-04-08 21:41:58', 'Day-Cuaroa-Rang-PU-Open-T10-AT10-T20-AT20', 'items111248_1491712918200.JPG'),
(19, '<NAME> OPEN PU 8M, S8M', '', '<p><!--[if gte mso 9]><xml>\r\n <o:OfficeDocumentSettings>\r\n <o:AllowPNG></o:AllowPNG>\r\n </o:OfficeDocumentSettings>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n <w:View>Normal</w:View>\r\n <w:Zoom>0</w:Zoom>\r\n <w:TrackMoves></w:TrackMoves>\r\n <w:TrackFormatting></w:TrackFormatting>\r\n <w:PunctuationKerning></w:PunctuationKerning>\r\n <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas>\r\n <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n <w:DoNotPromoteQF></w:DoNotPromoteQF>\r\n <w:LidThemeOther>EN-GB</w:LidThemeOther>\r\n <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n <w:Compatibility>\r\n <w:BreakWrappedTables></w:BreakWrappedTables>\r\n <w:SnapToGridInCell></w:SnapToGridInCell>\r\n <w:WrapTextWithPunct></w:WrapTextWithPunct>\r\n <w:UseAsianBreakRules></w:UseAsianBreakRules>\r\n <w:DontGrowAutofit></w:DontGrowAutofit>\r\n <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark>\r\n <w:EnableOpenTypeKerning></w:EnableOpenTypeKerning>\r\n <w:DontFlipMirrorIndents></w:DontFlipMirrorIndents>\r\n <w:OverrideTableStyleHps></w:OverrideTableStyleHps>\r\n </w:Compatibility>\r\n <m:mathPr>\r\n <m:mathFont m:val="Cambria Math"></m:mathFont>\r\n <m:brkBin m:val="before"></m:brkBin>\r\n <m:brkBinSub m:val="--"></m:brkBinSub>\r\n <m:smallFrac m:val="off"></m:smallFrac>\r\n <m:dispDef></m:dispDef>\r\n <m:lMargin m:val="0"></m:lMargin>\r\n <m:rMargin m:val="0"></m:rMargin>\r\n <m:defJc m:val="centerGroup"></m:defJc>\r\n <m:wrapIndent m:val="1440"></m:wrapIndent>\r\n <m:intLim m:val="subSup"></m:intLim>\r\n <m:naryLim m:val="undOvr"></m:naryLim>\r\n </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"\r\n DefSemiHidden="true" DefQFormat="false" DefPriority="99"\r\n LatentStyleCount="267">\r\n <w:LsdException Locked="false" Priority="0" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Normal"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="heading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="10" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="11" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtitle"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="22" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Strong"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="20" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="59" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Table Grid"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="No Spacing"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="34" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="29" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="30" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="19" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="21" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="31" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="32" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="33" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Book Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="37" Name="Bibliography"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"></w:LsdException>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n {mso-style-name:"Table Normal";\r\n mso-tstyle-rowband-size:0;\r\n mso-tstyle-colband-size:0;\r\n mso-style-noshow:yes;\r\n mso-style-priority:99;\r\n mso-style-parent:"";\r\n mso-padding-alt:0cm 5.4pt 0cm 5.4pt;\r\n mso-para-margin-top:0cm;\r\n mso-para-margin-right:0cm;\r\n mso-para-margin-bottom:10.0pt;\r\n mso-para-margin-left:0cm;\r\n line-height:115%;\r\n mso-pagination:widow-orphan;\r\n font-size:11.0pt;\r\n font-family:"Calibri","sans-serif";\r\n mso-ascii-font-family:Calibri;\r\n mso-ascii-theme-font:minor-latin;\r\n mso-hansi-font-family:Calibri;\r\n mso-hansi-theme-font:minor-latin;\r\n mso-bidi-font-family:"Times New Roman";\r\n mso-bidi-theme-font:minor-bidi;\r\n mso-fareast-language:EN-US;}\r\n</style>\r\n<![endif]-->\r\n\r\n<br></p><h3>Thông Tin Liên Hệ</h3><h3>Cửa Hàng Phú Quý</h3><p>\r\n\r\n<br></p><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 <NAME>, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p>\r\n\r\n<br></p>', 1, 9, 3, '2017-04-08 21:43:37', '2017-04-08 21:43:37', 'Day-Cuaroa-Rang-OPEN-PU-8M-S8M', 'items111247_1491713017745.jpg');
INSERT INTO `sanphams` (`id`, `display_name`, `price`, `noidung`, `lienhegia`, `danhmuc_id`, `user_id`, `created_at`, `updated_at`, `path`, `anhsanpham`) VALUES
(20, '<NAME> PU 30-AT10-5570', '', '<p><!--[if gte mso 9]><xml>\r\n <o:OfficeDocumentSettings>\r\n <o:AllowPNG></o:AllowPNG>\r\n </o:OfficeDocumentSettings>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n <w:View>Normal</w:View>\r\n <w:Zoom>0</w:Zoom>\r\n <w:TrackMoves></w:TrackMoves>\r\n <w:TrackFormatting></w:TrackFormatting>\r\n <w:PunctuationKerning></w:PunctuationKerning>\r\n <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas>\r\n <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n <w:DoNotPromoteQF></w:DoNotPromoteQF>\r\n <w:LidThemeOther>EN-GB</w:LidThemeOther>\r\n <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n <w:Compatibility>\r\n <w:BreakWrappedTables></w:BreakWrappedTables>\r\n <w:SnapToGridInCell></w:SnapToGridInCell>\r\n <w:WrapTextWithPunct></w:WrapTextWithPunct>\r\n <w:UseAsianBreakRules></w:UseAsianBreakRules>\r\n <w:DontGrowAutofit></w:DontGrowAutofit>\r\n <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark>\r\n <w:EnableOpenTypeKerning></w:EnableOpenTypeKerning>\r\n <w:DontFlipMirrorIndents></w:DontFlipMirrorIndents>\r\n <w:OverrideTableStyleHps></w:OverrideTableStyleHps>\r\n </w:Compatibility>\r\n <m:mathPr>\r\n <m:mathFont m:val="Cambria Math"></m:mathFont>\r\n <m:brkBin m:val="before"></m:brkBin>\r\n <m:brkBinSub m:val="--"></m:brkBinSub>\r\n <m:smallFrac m:val="off"></m:smallFrac>\r\n <m:dispDef></m:dispDef>\r\n <m:lMargin m:val="0"></m:lMargin>\r\n <m:rMargin m:val="0"></m:rMargin>\r\n <m:defJc m:val="centerGroup"></m:defJc>\r\n <m:wrapIndent m:val="1440"></m:wrapIndent>\r\n <m:intLim m:val="subSup"></m:intLim>\r\n <m:naryLim m:val="undOvr"></m:naryLim>\r\n </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"\r\n DefSemiHidden="true" DefQFormat="false" DefPriority="99"\r\n LatentStyleCount="267">\r\n <w:LsdException Locked="false" Priority="0" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Normal"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="heading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="10" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="11" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtitle"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="22" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Strong"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="20" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="59" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Table Grid"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="No Spacing"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="34" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="29" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="30" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="19" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="21" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="31" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="32" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="33" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Book Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="37" Name="Bibliography"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"></w:LsdException>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n {mso-style-name:"Table Normal";\r\n mso-tstyle-rowband-size:0;\r\n mso-tstyle-colband-size:0;\r\n mso-style-noshow:yes;\r\n mso-style-priority:99;\r\n mso-style-parent:"";\r\n mso-padding-alt:0cm 5.4pt 0cm 5.4pt;\r\n mso-para-margin-top:0cm;\r\n mso-para-margin-right:0cm;\r\n mso-para-margin-bottom:10.0pt;\r\n mso-para-margin-left:0cm;\r\n line-height:115%;\r\n mso-pagination:widow-orphan;\r\n font-size:11.0pt;\r\n font-family:"Calibri","sans-serif";\r\n mso-ascii-font-family:Calibri;\r\n mso-ascii-theme-font:minor-latin;\r\n mso-hansi-font-family:Calibri;\r\n mso-hansi-theme-font:minor-latin;\r\n mso-bidi-font-family:"Times New Roman";\r\n mso-bidi-theme-font:minor-bidi;\r\n mso-fareast-language:EN-US;}\r\n</style>\r\n<![endif]-->\r\n\r\n<span style="color: rgb(0, 0, 128); font-family: Tahoma, Verdana, Arial; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;">Dây đai răng OPEN PU T5, AT5, T10, AT10, T20, AT20, 5M, S5M, 8M, S8M, 14M, 14RPP, H, L, XL, MXL… Chất liệu làm từ nhựa tổng hợp bên trong có lõi thép. Dây nhập về nguyên cuộn dài 100 mét bản rộng 100mm, 60mm, 50mm, 32mm, 25mm, 16mm. Dây có 2 loại là đã nối thành vòng kín và chưa nối thành vòng kín theo yêu cầu của Quý khách hàng. Có hàng sẵn mới 100%.</span><br></p><h3>Thông Tin Liên Hệ</h3><h3><NAME></h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p>\r\n\r\n<br></p>', 1, 9, 3, '2017-04-08 21:44:40', '2017-04-08 21:44:58', 'Day-Cuaroa-Rang-PU-30-AT10-5570', 'items111246_1491713080505.jpg'),
(21, '<NAME>', '', '<p><!--[if gte mso 9]><xml>\r\n <o:OfficeDocumentSettings>\r\n <o:AllowPNG></o:AllowPNG>\r\n </o:OfficeDocumentSettings>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n <w:View>Normal</w:View>\r\n <w:Zoom>0</w:Zoom>\r\n <w:TrackMoves></w:TrackMoves>\r\n <w:TrackFormatting></w:TrackFormatting>\r\n <w:PunctuationKerning></w:PunctuationKerning>\r\n <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas>\r\n <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n <w:DoNotPromoteQF></w:DoNotPromoteQF>\r\n <w:LidThemeOther>EN-GB</w:LidThemeOther>\r\n <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n <w:Compatibility>\r\n <w:BreakWrappedTables></w:BreakWrappedTables>\r\n <w:SnapToGridInCell></w:SnapToGridInCell>\r\n <w:WrapTextWithPunct></w:WrapTextWithPunct>\r\n <w:UseAsianBreakRules></w:UseAsianBreakRules>\r\n <w:DontGrowAutofit></w:DontGrowAutofit>\r\n <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark>\r\n <w:EnableOpenTypeKerning></w:EnableOpenTypeKerning>\r\n <w:DontFlipMirrorIndents></w:DontFlipMirrorIndents>\r\n <w:OverrideTableStyleHps></w:OverrideTableStyleHps>\r\n </w:Compatibility>\r\n <m:mathPr>\r\n <m:mathFont m:val="Cambria Math"></m:mathFont>\r\n <m:brkBin m:val="before"></m:brkBin>\r\n <m:brkBinSub m:val="--"></m:brkBinSub>\r\n <m:smallFrac m:val="off"></m:smallFrac>\r\n <m:dispDef></m:dispDef>\r\n <m:lMargin m:val="0"></m:lMargin>\r\n <m:rMargin m:val="0"></m:rMargin>\r\n <m:defJc m:val="centerGroup"></m:defJc>\r\n <m:wrapIndent m:val="1440"></m:wrapIndent>\r\n <m:intLim m:val="subSup"></m:intLim>\r\n <m:naryLim m:val="undOvr"></m:naryLim>\r\n </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"\r\n DefSemiHidden="true" DefQFormat="false" DefPriority="99"\r\n LatentStyleCount="267">\r\n <w:LsdException Locked="false" Priority="0" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Normal"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="heading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="10" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="11" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtitle"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="22" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Strong"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="20" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="59" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Table Grid"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="No Spacing"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="34" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="29" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="30" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="19" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="21" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="31" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="32" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="33" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Book Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="37" Name="Bibliography"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"></w:LsdException>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n {mso-style-name:"Table Normal";\r\n mso-tstyle-rowband-size:0;\r\n mso-tstyle-colband-size:0;\r\n mso-style-noshow:yes;\r\n mso-style-priority:99;\r\n mso-style-parent:"";\r\n mso-padding-alt:0cm 5.4pt 0cm 5.4pt;\r\n mso-para-margin-top:0cm;\r\n mso-para-margin-right:0cm;\r\n mso-para-margin-bottom:10.0pt;\r\n mso-para-margin-left:0cm;\r\n line-height:115%;\r\n mso-pagination:widow-orphan;\r\n font-size:11.0pt;\r\n font-family:"Calibri","sans-serif";\r\n mso-ascii-font-family:Calibri;\r\n mso-ascii-theme-font:minor-latin;\r\n mso-hansi-font-family:Calibri;\r\n mso-hansi-theme-font:minor-latin;\r\n mso-bidi-font-family:"Times New Roman";\r\n mso-bidi-theme-font:minor-bidi;\r\n mso-fareast-language:EN-US;}\r\n</style>\r\n<![endif]-->\r\n\r\n<br></p><h3>Thông Tin Liên Hệ</h3><h3>Cửa Hàng Phú Quý</h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p>\r\n\r\n<br></p>', 1, 9, 3, '2017-04-08 21:46:01', '2017-04-08 21:46:01', 'Day-Cuaroa-Rang-PU-H', 'items111245_1491713161444.jpg');
INSERT INTO `sanphams` (`id`, `display_name`, `price`, `noidung`, `lienhegia`, `danhmuc_id`, `user_id`, `created_at`, `updated_at`, `path`, `anhsanpham`) VALUES
(22, 'Dây Cuaroa Răng PU 785-H-25 + 10T', '', '<p><!--[if gte mso 9]><xml>\r\n <o:OfficeDocumentSettings>\r\n <o:AllowPNG></o:AllowPNG>\r\n </o:OfficeDocumentSettings>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n <w:View>Normal</w:View>\r\n <w:Zoom>0</w:Zoom>\r\n <w:TrackMoves></w:TrackMoves>\r\n <w:TrackFormatting></w:TrackFormatting>\r\n <w:PunctuationKerning></w:PunctuationKerning>\r\n <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas>\r\n <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n <w:DoNotPromoteQF></w:DoNotPromoteQF>\r\n <w:LidThemeOther>EN-GB</w:LidThemeOther>\r\n <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n <w:Compatibility>\r\n <w:BreakWrappedTables></w:BreakWrappedTables>\r\n <w:SnapToGridInCell></w:SnapToGridInCell>\r\n <w:WrapTextWithPunct></w:WrapTextWithPunct>\r\n <w:UseAsianBreakRules></w:UseAsianBreakRules>\r\n <w:DontGrowAutofit></w:DontGrowAutofit>\r\n <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark>\r\n <w:EnableOpenTypeKerning></w:EnableOpenTypeKerning>\r\n <w:DontFlipMirrorIndents></w:DontFlipMirrorIndents>\r\n <w:OverrideTableStyleHps></w:OverrideTableStyleHps>\r\n </w:Compatibility>\r\n <m:mathPr>\r\n <m:mathFont m:val="Cambria Math"></m:mathFont>\r\n <m:brkBin m:val="before"></m:brkBin>\r\n <m:brkBinSub m:val="--"></m:brkBinSub>\r\n <m:smallFrac m:val="off"></m:smallFrac>\r\n <m:dispDef></m:dispDef>\r\n <m:lMargin m:val="0"></m:lMargin>\r\n <m:rMargin m:val="0"></m:rMargin>\r\n <m:defJc m:val="centerGroup"></m:defJc>\r\n <m:wrapIndent m:val="1440"></m:wrapIndent>\r\n <m:intLim m:val="subSup"></m:intLim>\r\n <m:naryLim m:val="undOvr"></m:naryLim>\r\n </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"\r\n DefSemiHidden="true" DefQFormat="false" DefPriority="99"\r\n LatentStyleCount="267">\r\n <w:LsdException Locked="false" Priority="0" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Normal"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="heading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="10" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="11" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtitle"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="22" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Strong"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="20" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="59" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Table Grid"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="No Spacing"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="34" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="29" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="30" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="19" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="21" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="31" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="32" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="33" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Book Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="37" Name="Bibliography"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"></w:LsdException>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n {mso-style-name:"Table Normal";\r\n mso-tstyle-rowband-size:0;\r\n mso-tstyle-colband-size:0;\r\n mso-style-noshow:yes;\r\n mso-style-priority:99;\r\n mso-style-parent:"";\r\n mso-padding-alt:0cm 5.4pt 0cm 5.4pt;\r\n mso-para-margin-top:0cm;\r\n mso-para-margin-right:0cm;\r\n mso-para-margin-bottom:10.0pt;\r\n mso-para-margin-left:0cm;\r\n line-height:115%;\r\n mso-pagination:widow-orphan;\r\n font-size:11.0pt;\r\n font-family:"Calibri","sans-serif";\r\n mso-ascii-font-family:Calibri;\r\n mso-ascii-theme-font:minor-latin;\r\n mso-hansi-font-family:Calibri;\r\n mso-hansi-theme-font:minor-latin;\r\n mso-bidi-font-family:"Times New Roman";\r\n mso-bidi-theme-font:minor-bidi;\r\n mso-fareast-language:EN-US;}\r\n</style>\r\n<![endif]-->\r\n\r\n<br></p><h3>Thông Tin Liên Hệ</h3><h3>Cửa Hàng Phú Quý</h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p>\r\n\r\n<br></p>', 1, 9, 3, '2017-04-08 21:47:00', '2017-04-08 21:47:00', 'Day-Cuaroa-Rang-PU-785-H-25-10T', 'items111244_1491713220222.JPG'),
(23, '<NAME> PU T5-3350', '', '<p><!--[if gte mso 9]><xml>\r\n <o:OfficeDocumentSettings>\r\n <o:AllowPNG></o:AllowPNG>\r\n </o:OfficeDocumentSettings>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n <w:View>Normal</w:View>\r\n <w:Zoom>0</w:Zoom>\r\n <w:TrackMoves></w:TrackMoves>\r\n <w:TrackFormatting></w:TrackFormatting>\r\n <w:PunctuationKerning></w:PunctuationKerning>\r\n <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas>\r\n <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n <w:DoNotPromoteQF></w:DoNotPromoteQF>\r\n <w:LidThemeOther>EN-GB</w:LidThemeOther>\r\n <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n <w:Compatibility>\r\n <w:BreakWrappedTables></w:BreakWrappedTables>\r\n <w:SnapToGridInCell></w:SnapToGridInCell>\r\n <w:WrapTextWithPunct></w:WrapTextWithPunct>\r\n <w:UseAsianBreakRules></w:UseAsianBreakRules>\r\n <w:DontGrowAutofit></w:DontGrowAutofit>\r\n <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark>\r\n <w:EnableOpenTypeKerning></w:EnableOpenTypeKerning>\r\n <w:DontFlipMirrorIndents></w:DontFlipMirrorIndents>\r\n <w:OverrideTableStyleHps></w:OverrideTableStyleHps>\r\n </w:Compatibility>\r\n <m:mathPr>\r\n <m:mathFont m:val="Cambria Math"></m:mathFont>\r\n <m:brkBin m:val="before"></m:brkBin>\r\n <m:brkBinSub m:val="--"></m:brkBinSub>\r\n <m:smallFrac m:val="off"></m:smallFrac>\r\n <m:dispDef></m:dispDef>\r\n <m:lMargin m:val="0"></m:lMargin>\r\n <m:rMargin m:val="0"></m:rMargin>\r\n <m:defJc m:val="centerGroup"></m:defJc>\r\n <m:wrapIndent m:val="1440"></m:wrapIndent>\r\n <m:intLim m:val="subSup"></m:intLim>\r\n <m:naryLim m:val="undOvr"></m:naryLim>\r\n </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"\r\n DefSemiHidden="true" DefQFormat="false" DefPriority="99"\r\n LatentStyleCount="267">\r\n <w:LsdException Locked="false" Priority="0" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Normal"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="heading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="10" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="11" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtitle"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="22" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Strong"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="20" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="59" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Table Grid"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="No Spacing"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="34" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="29" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="30" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="19" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="21" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="31" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="32" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="33" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Book Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="37" Name="Bibliography"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"></w:LsdException>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n {mso-style-name:"Table Normal";\r\n mso-tstyle-rowband-size:0;\r\n mso-tstyle-colband-size:0;\r\n mso-style-noshow:yes;\r\n mso-style-priority:99;\r\n mso-style-parent:"";\r\n mso-padding-alt:0cm 5.4pt 0cm 5.4pt;\r\n mso-para-margin-top:0cm;\r\n mso-para-margin-right:0cm;\r\n mso-para-margin-bottom:10.0pt;\r\n mso-para-margin-left:0cm;\r\n line-height:115%;\r\n mso-pagination:widow-orphan;\r\n font-size:11.0pt;\r\n font-family:"Calibri","sans-serif";\r\n mso-ascii-font-family:Calibri;\r\n mso-ascii-theme-font:minor-latin;\r\n mso-hansi-font-family:Calibri;\r\n mso-hansi-theme-font:minor-latin;\r\n mso-bidi-font-family:"Times New Roman";\r\n mso-bidi-theme-font:minor-bidi;\r\n mso-fareast-language:EN-US;}\r\n</style>\r\n<![endif]-->\r\n\r\n<br></p><h3>Thông Tin Liên Hệ</h3><h3><NAME></h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p>\r\n\r\n<br></p>', 1, 9, 3, '2017-04-08 21:48:06', '2017-04-08 21:48:06', 'Day-Cuaroa-Rang-PU-T5-3350', 'items111240_1491713286297.JPG');
INSERT INTO `sanphams` (`id`, `display_name`, `price`, `noidung`, `lienhegia`, `danhmuc_id`, `user_id`, `created_at`, `updated_at`, `path`, `anhsanpham`) VALUES
(24, '<NAME> PU DT10-3100', '', '<p><!--[if gte mso 9]><xml>\r\n <o:OfficeDocumentSettings>\r\n <o:AllowPNG></o:AllowPNG>\r\n </o:OfficeDocumentSettings>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n <w:View>Normal</w:View>\r\n <w:Zoom>0</w:Zoom>\r\n <w:TrackMoves></w:TrackMoves>\r\n <w:TrackFormatting></w:TrackFormatting>\r\n <w:PunctuationKerning></w:PunctuationKerning>\r\n <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas>\r\n <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n <w:DoNotPromoteQF></w:DoNotPromoteQF>\r\n <w:LidThemeOther>EN-GB</w:LidThemeOther>\r\n <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n <w:Compatibility>\r\n <w:BreakWrappedTables></w:BreakWrappedTables>\r\n <w:SnapToGridInCell></w:SnapToGridInCell>\r\n <w:WrapTextWithPunct></w:WrapTextWithPunct>\r\n <w:UseAsianBreakRules></w:UseAsianBreakRules>\r\n <w:DontGrowAutofit></w:DontGrowAutofit>\r\n <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark>\r\n <w:EnableOpenTypeKerning></w:EnableOpenTypeKerning>\r\n <w:DontFlipMirrorIndents></w:DontFlipMirrorIndents>\r\n <w:OverrideTableStyleHps></w:OverrideTableStyleHps>\r\n </w:Compatibility>\r\n <m:mathPr>\r\n <m:mathFont m:val="Cambria Math"></m:mathFont>\r\n <m:brkBin m:val="before"></m:brkBin>\r\n <m:brkBinSub m:val="--"></m:brkBinSub>\r\n <m:smallFrac m:val="off"></m:smallFrac>\r\n <m:dispDef></m:dispDef>\r\n <m:lMargin m:val="0"></m:lMargin>\r\n <m:rMargin m:val="0"></m:rMargin>\r\n <m:defJc m:val="centerGroup"></m:defJc>\r\n <m:wrapIndent m:val="1440"></m:wrapIndent>\r\n <m:intLim m:val="subSup"></m:intLim>\r\n <m:naryLim m:val="undOvr"></m:naryLim>\r\n </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"\r\n DefSemiHidden="true" DefQFormat="false" DefPriority="99"\r\n LatentStyleCount="267">\r\n <w:LsdException Locked="false" Priority="0" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Normal"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="heading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="10" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="11" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtitle"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="22" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Strong"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="20" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="59" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Table Grid"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="No Spacing"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="34" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="29" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="30" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="19" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="21" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="31" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="32" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="33" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Book Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="37" Name="Bibliography"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"></w:LsdException>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n {mso-style-name:"Table Normal";\r\n mso-tstyle-rowband-size:0;\r\n mso-tstyle-colband-size:0;\r\n mso-style-noshow:yes;\r\n mso-style-priority:99;\r\n mso-style-parent:"";\r\n mso-padding-alt:0cm 5.4pt 0cm 5.4pt;\r\n mso-para-margin-top:0cm;\r\n mso-para-margin-right:0cm;\r\n mso-para-margin-bottom:10.0pt;\r\n mso-para-margin-left:0cm;\r\n line-height:115%;\r\n mso-pagination:widow-orphan;\r\n font-size:11.0pt;\r\n font-family:"Calibri","sans-serif";\r\n mso-ascii-font-family:Calibri;\r\n mso-ascii-theme-font:minor-latin;\r\n mso-hansi-font-family:Calibri;\r\n mso-hansi-theme-font:minor-latin;\r\n mso-bidi-font-family:"Times New Roman";\r\n mso-bidi-theme-font:minor-bidi;\r\n mso-fareast-language:EN-US;}\r\n</style>\r\n<![endif]-->\r\n\r\n<br></p><h3>Thông Tin Liên Hệ</h3><h3>Cửa Hàng Phú Quý</h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p>\r\n\r\n<br></p>', 1, 9, 3, '2017-04-08 21:50:22', '2017-04-08 21:50:22', 'Day-Cuaroa-Rang-PU-DT10-3100', 'items111239_1491713422927.jpg'),
(25, 'Dây Cuaroa BANDO PU T10', '', '<p><!--[if gte mso 9]><xml>\r\n <o:OfficeDocumentSettings>\r\n <o:AllowPNG></o:AllowPNG>\r\n </o:OfficeDocumentSettings>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n <w:View>Normal</w:View>\r\n <w:Zoom>0</w:Zoom>\r\n <w:TrackMoves></w:TrackMoves>\r\n <w:TrackFormatting></w:TrackFormatting>\r\n <w:PunctuationKerning></w:PunctuationKerning>\r\n <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas>\r\n <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n <w:DoNotPromoteQF></w:DoNotPromoteQF>\r\n <w:LidThemeOther>EN-GB</w:LidThemeOther>\r\n <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n <w:Compatibility>\r\n <w:BreakWrappedTables></w:BreakWrappedTables>\r\n <w:SnapToGridInCell></w:SnapToGridInCell>\r\n <w:WrapTextWithPunct></w:WrapTextWithPunct>\r\n <w:UseAsianBreakRules></w:UseAsianBreakRules>\r\n <w:DontGrowAutofit></w:DontGrowAutofit>\r\n <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark>\r\n <w:EnableOpenTypeKerning></w:EnableOpenTypeKerning>\r\n <w:DontFlipMirrorIndents></w:DontFlipMirrorIndents>\r\n <w:OverrideTableStyleHps></w:OverrideTableStyleHps>\r\n </w:Compatibility>\r\n <m:mathPr>\r\n <m:mathFont m:val="Cambria Math"></m:mathFont>\r\n <m:brkBin m:val="before"></m:brkBin>\r\n <m:brkBinSub m:val="--"></m:brkBinSub>\r\n <m:smallFrac m:val="off"></m:smallFrac>\r\n <m:dispDef></m:dispDef>\r\n <m:lMargin m:val="0"></m:lMargin>\r\n <m:rMargin m:val="0"></m:rMargin>\r\n <m:defJc m:val="centerGroup"></m:defJc>\r\n <m:wrapIndent m:val="1440"></m:wrapIndent>\r\n <m:intLim m:val="subSup"></m:intLim>\r\n <m:naryLim m:val="undOvr"></m:naryLim>\r\n </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"\r\n DefSemiHidden="true" DefQFormat="false" DefPriority="99"\r\n LatentStyleCount="267">\r\n <w:LsdException Locked="false" Priority="0" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Normal"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="heading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="10" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="11" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtitle"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="22" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Strong"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="20" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="59" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Table Grid"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="No Spacing"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="34" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="29" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="30" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="19" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="21" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="31" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="32" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="33" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Book Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="37" Name="Bibliography"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"></w:LsdException>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n {mso-style-name:"Table Normal";\r\n mso-tstyle-rowband-size:0;\r\n mso-tstyle-colband-size:0;\r\n mso-style-noshow:yes;\r\n mso-style-priority:99;\r\n mso-style-parent:"";\r\n mso-padding-alt:0cm 5.4pt 0cm 5.4pt;\r\n mso-para-margin-top:0cm;\r\n mso-para-margin-right:0cm;\r\n mso-para-margin-bottom:10.0pt;\r\n mso-para-margin-left:0cm;\r\n line-height:115%;\r\n mso-pagination:widow-orphan;\r\n font-size:11.0pt;\r\n font-family:"Calibri","sans-serif";\r\n mso-ascii-font-family:Calibri;\r\n mso-ascii-theme-font:minor-latin;\r\n mso-hansi-font-family:Calibri;\r\n mso-hansi-theme-font:minor-latin;\r\n mso-bidi-font-family:"Times New Roman";\r\n mso-bidi-theme-font:minor-bidi;\r\n mso-fareast-language:EN-US;}\r\n</style>\r\n<![endif]-->\r\n\r\n<br></p><h3>Thông Tin Liên Hệ</h3><h3>Cửa Hàng Phú Quý</h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p>\r\n\r\n<br></p>', 1, 9, 3, '2017-04-08 21:54:40', '2017-04-08 21:54:40', 'Day-Cuaroa-BANDO-PU-T10', 'items111232_1491713680515.JPG');
INSERT INTO `sanphams` (`id`, `display_name`, `price`, `noidung`, `lienhegia`, `danhmuc_id`, `user_id`, `created_at`, `updated_at`, `path`, `anhsanpham`) VALUES
(26, '<NAME> VC16', '', '<p><!--[if gte mso 9]><xml>\r\n <o:OfficeDocumentSettings>\r\n <o:AllowPNG></o:AllowPNG>\r\n </o:OfficeDocumentSettings>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n <w:View>Normal</w:View>\r\n <w:Zoom>0</w:Zoom>\r\n <w:TrackMoves></w:TrackMoves>\r\n <w:TrackFormatting></w:TrackFormatting>\r\n <w:PunctuationKerning></w:PunctuationKerning>\r\n <w:ValidateAgainstSchemas></w:ValidateAgainstSchemas>\r\n <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n <w:DoNotPromoteQF></w:DoNotPromoteQF>\r\n <w:LidThemeOther>EN-GB</w:LidThemeOther>\r\n <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n <w:Compatibility>\r\n <w:BreakWrappedTables></w:BreakWrappedTables>\r\n <w:SnapToGridInCell></w:SnapToGridInCell>\r\n <w:WrapTextWithPunct></w:WrapTextWithPunct>\r\n <w:UseAsianBreakRules></w:UseAsianBreakRules>\r\n <w:DontGrowAutofit></w:DontGrowAutofit>\r\n <w:SplitPgBreakAndParaMark></w:SplitPgBreakAndParaMark>\r\n <w:EnableOpenTypeKerning></w:EnableOpenTypeKerning>\r\n <w:DontFlipMirrorIndents></w:DontFlipMirrorIndents>\r\n <w:OverrideTableStyleHps></w:OverrideTableStyleHps>\r\n </w:Compatibility>\r\n <m:mathPr>\r\n <m:mathFont m:val="Cambria Math"></m:mathFont>\r\n <m:brkBin m:val="before"></m:brkBin>\r\n <m:brkBinSub m:val="--"></m:brkBinSub>\r\n <m:smallFrac m:val="off"></m:smallFrac>\r\n <m:dispDef></m:dispDef>\r\n <m:lMargin m:val="0"></m:lMargin>\r\n <m:rMargin m:val="0"></m:rMargin>\r\n <m:defJc m:val="centerGroup"></m:defJc>\r\n <m:wrapIndent m:val="1440"></m:wrapIndent>\r\n <m:intLim m:val="subSup"></m:intLim>\r\n <m:naryLim m:val="undOvr"></m:naryLim>\r\n </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"\r\n DefSemiHidden="true" DefQFormat="false" DefPriority="99"\r\n LatentStyleCount="267">\r\n <w:LsdException Locked="false" Priority="0" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Normal"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="heading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 7"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 8"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" Name="toc 9"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="10" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="11" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtitle"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="22" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Strong"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="20" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="59" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Table Grid"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="1" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="No Spacing"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="34" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="29" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="30" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 1"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 2"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 3"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 4"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 5"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="60" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="61" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="62" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Light Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="63" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="64" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="65" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="66" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium List 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="67" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="68" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="69" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="70" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Dark List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="71" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Shading Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="72" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful List Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="73" SemiHidden="false"\r\n UnhideWhenUsed="false" Name="Colorful Grid Accent 6"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="19" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="21" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="31" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="32" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="33" SemiHidden="false"\r\n UnhideWhenUsed="false" QFormat="true" Name="Book Title"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="37" Name="Bibliography"></w:LsdException>\r\n <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"></w:LsdException>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n {mso-style-name:"Table Normal";\r\n mso-tstyle-rowband-size:0;\r\n mso-tstyle-colband-size:0;\r\n mso-style-noshow:yes;\r\n mso-style-priority:99;\r\n mso-style-parent:"";\r\n mso-padding-alt:0cm 5.4pt 0cm 5.4pt;\r\n mso-para-margin-top:0cm;\r\n mso-para-margin-right:0cm;\r\n mso-para-margin-bottom:10.0pt;\r\n mso-para-margin-left:0cm;\r\n line-height:115%;\r\n mso-pagination:widow-orphan;\r\n font-size:11.0pt;\r\n font-family:"Calibri","sans-serif";\r\n mso-ascii-font-family:Calibri;\r\n mso-ascii-theme-font:minor-latin;\r\n mso-hansi-font-family:Calibri;\r\n mso-hansi-theme-font:minor-latin;\r\n mso-bidi-font-family:"Times New Roman";\r\n mso-bidi-theme-font:minor-bidi;\r\n mso-fareast-language:EN-US;}\r\n</style>\r\n<![endif]-->\r\n\r\n<br></p><h3>Thông Tin Liên Hệ</h3><h3><NAME></h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p>\r\n\r\n<br></p>', 1, 9, 3, '2017-04-08 22:19:18', '2017-04-08 22:19:18', 'Day-Cuaroa-BANDO-VC16', 'items111227_1491715158431.JPG'),
(27, '<NAME>', '', '<p><br></p><h3>Thông Tin Liên Hệ</h3><h3>Cửa H<NAME></h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 1, 10, 3, '2017-04-11 06:38:18', '2017-04-11 06:38:35', 'Day-PU-Goc-Gai', 'items111220_1491917898540.JPG'),
(28, '<NAME>', '', '<h3>Thông Tin Liên Hệ</h3><h3>Cửa <NAME></h3><p><br></p><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 1, 10, 3, '2017-04-11 06:51:33', '2017-04-11 06:51:33', 'Day-PU-Phi-Tron', 'items111219_1491918693936.JPG'),
(29, 'PU 4 Gôc , 5 Gốc', '', '<h3>Thông Tin Liên Hệ</h3><h3>Cửa Hàng Phú Quý</h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 1, 10, 3, '2017-04-11 06:52:49', '2017-04-11 06:52:49', 'PU-4-Goc-5-Goc', 'items111206_1491918769590.jpg'),
(30, 'Dây Curoa 1285-DH , 1400-DH', '', '<h3>Thông Tin Liên Hệ</h3><h3>Cửa H<NAME></h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 1, 11, 3, '2017-04-11 06:55:03', '2017-04-11 06:55:03', 'Day-Curoa-1285-DH-1400-DH', 'items111264_1491918903001.jpg'),
(31, 'Dây Curoa 510-DL', '', '<h3>Thông Tin Liên Hệ</h3><h3>Cửa H<NAME></h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 1, 11, 3, '2017-04-11 06:55:59', '2017-04-11 06:55:59', 'Day-Curoa-510-DL', 'items111202_1491918959612.JPG'),
(32, 'Bu Ly Gan 1 Rãnh', '', '<p>thường , dầy , đặt biệt</p><p>6 Phân -> 6 tất<br></p><h3>Thông Tin Liên Hệ</h3><h3>Cửa Hàng Phú Quý</h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 1, 12, 3, '2017-04-11 06:58:30', '2017-04-11 06:58:46', 'Bu-Ly-Gan-1-Ranh', 'IMG0987_1491919110560.JPG'),
(33, 'Bu Ly Gan 2 Rãnh', '', '<h3>6 Phân -> 6 tất<br></h3><h3>Thông Tin Liên Hệ</h3><h3>Cửa <NAME></h3><p><br></p><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 1, 12, 3, '2017-04-11 07:01:35', '2017-04-11 07:01:35', 'Bu-Ly-Gan-2-Ranh', 'IMG0982_1491919295469.JPG'),
(34, 'Bu Ly 3 Rãnh', '', '<h3>60 phân -> 6 tất <br>Thông Tin Liên Hệ</h3><h3>Cửa <NAME></h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 1, 12, 3, '2017-04-11 07:02:12', '2017-04-11 07:02:27', 'Bu-Ly-3-Ranh', 'IMG0988_1491919332567.JPG'),
(35, 'Bu Ly Bảng 100, 120', '', '<p>60 Phân -> 300<br></p><h3>Thông Tin Liên Hệ</h3><h3>Cửa Hàng Ph<NAME></h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 1, 12, 3, '2017-04-11 07:03:10', '2017-04-11 07:03:10', 'Bu-Ly-Bang-100-120', 'IMG1003_1491919390933.JPG'),
(36, 'Bù Lon Xi Trắng Và Mạ Kẽm', '', '<h3>Thông Tin Liên Hệ</h3><h3>Cửa Hàng Ph<NAME>ý</h3><p><br></p><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 1, 13, 3, '2017-04-11 07:06:05', '2017-04-11 07:06:05', 'Bu-Lon-Xi-Trang-Va-Ma-Kem', 'IMG0590_1491919565444.JPG'),
(37, 'Bù Lon Inox 201, 304, 316', '', '<h3>Thông Tin Liên Hệ</h3><h3>Cửa Hàng Phú Quý</h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 1, 13, 3, '2017-04-11 07:06:46', '2017-04-11 07:06:46', 'Bu-Lon-Inox-201-304-316', 'IMG0591_1491919606733.JPG'),
(38, 'Bù lon thép 8.8 , 10.9', '', '<h3>Thông Tin Liên Hệ</h3><h3>Cử<NAME></h3><p><br></p><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 1, 13, 3, '2017-04-11 07:07:17', '2017-04-11 07:07:17', 'Bu-lon-thep-8-8-10-9', 'IMG0592_1491919637915.JPG'),
(39, '<NAME>', '', '<h3>Thông Tin Liên Hệ</h3><h3><NAME></h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 1, 13, 3, '2017-04-11 07:08:06', '2017-04-11 07:08:06', 'Bu-Lon-Thep-Rang-Nhuyen', 'IMG0596_1491919686449.JPG'),
(40, '<NAME> 7T5 , 1m', '', '<h3>Thông Tin Liên Hệ</h3><h3>Cửa Hàng <NAME></h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 1, 14, 3, '2017-04-11 07:08:55', '2017-04-11 07:08:55', 'Cay-Rang-Xi-7T5-1m', 'IMG0618_1491919735565.JPG'),
(41, '<NAME>', '', '<h3>Thông Tin Liên Hệ</h3><h3>Cửa H<NAME></h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 1, 14, 3, '2017-04-11 07:09:32', '2017-04-11 07:09:32', 'Cay-Rang-Thep', 'IMG0617_1491919772364.JPG'),
(42, 'Cây Răng Inox 201, 304', '', '<h3>Thông Tin Liên Hệ</h3><h3>Cửa Hàng Phú Quý</h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 1, 14, 3, '2017-04-11 07:10:18', '2017-04-11 07:10:18', 'Cay-Rang-Inox-201-304', 'IMG0618_1491919818509.JPG'),
(43, '<NAME> ( Có Đầu )', '', '<h3>Thông Tin Liên Hệ</h3><h3>Cửa Hàng Phú Quý</h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 1, 15, 3, '2017-04-11 07:11:16', '2017-04-11 07:11:16', 'Luc-Giac-Chim-Co-Dau', 'IMG0598_1491919876315.JPG'),
(44, '<NAME>', '', '<h3>Thông Tin Liên Hệ</h3><h3>Cửa Hàng <NAME></h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 1, 15, 3, '2017-04-11 07:11:44', '2017-04-11 07:11:44', 'Luc-Giac-Am', 'IMG0594_1491919904511.JPG'),
(45, '<NAME>', '', '<h3>Thông Tin Liên Hệ</h3><h3>Cửa <NAME></h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 1, 15, 3, '2017-04-11 07:12:35', '2017-04-11 07:12:35', 'Luc-Giac-Col', 'IMG0606_1491919955587.PNG'),
(46, 'Lục Giác Mo', '', '<h3>Thông Tin Liên Hệ</h3><h3>Cửa Hàng Phú Quý</h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 1, 15, 3, '2017-04-11 07:13:08', '2017-04-11 07:13:08', 'Luc-Giac-Mo', 'IMG0622_1491919988762.JPG'),
(47, 'Lục Giác Chìm Inox ( Có Đầu ) 201, 304', '', '<h3>Thông Tin Liên Hệ</h3><h3>Cửa Hàng Phú Quý</h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 1, 15, 3, '2017-04-11 07:13:53', '2017-04-11 07:13:53', 'Luc-Giac-Chim-Inox-Co-Dau-201-304', 'IMG0614_1491920033456.JPG'),
(48, 'Lục Giác Âm Inox 201, 304', '', '<h3>Thông Tin Liên Hệ</h3><h3><NAME></h3><p><br></p><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 1, 15, 3, '2017-04-11 07:14:29', '2017-04-11 07:14:29', 'Luc-Giac-Am-Inox-201-304', 'IMG0621_1491920069643.JPG'),
(49, 'Lục Giác Mo Inox 201, 304', '', '<h3>Thông Tin Liên Hệ</h3><h3><NAME></h3><p><br></p><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 <NAME>ng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 1, 15, 3, '2017-04-11 07:15:12', '2017-04-11 07:15:12', 'Luc-Giac-Mo-Inox-201-304', 'IMG0624_1491920112407.JPG'),
(50, '<NAME> <NAME>', '', '<h3>Thông Tin Liên Hệ</h3><h3>C<NAME></h3><p><br></p><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 1, 16, 3, '2017-04-11 07:17:44', '2017-04-11 07:17:44', 'Cu-Dong-2-Dau-Rang', 'IMG0616_1491920264077.JPG'),
(51, 'Bù Lon Neo L', '', '<h3>Thông Tin Liên Hệ</h3><h3>C<NAME></h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 <NAME>ng, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 1, 17, 3, '2017-04-11 07:18:49', '2017-04-11 07:18:49', 'Bu-Lon-Neo-L', 'IMG0608_1491920329580.JPG'),
(52, '<NAME>', '', '<h3>Thông Tin Liên Hệ</h3><h3>Cửa Hàng Ph<NAME></h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 <NAME>, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 1, 17, 3, '2017-04-11 07:19:20', '2017-04-11 07:19:20', 'Bu-Lon-Neo-J', 'IMG0609_1491920360765.JPG'),
(53, 'Bù Lon Neo V , U', '', '<h3>Thông Tin Liên Hệ</h3><h3>Cửa Hàng Phú Quý</h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 1, 17, 3, '2017-04-11 07:20:13', '2017-04-11 07:20:13', 'Bu-Lon-Neo-V-U', 'IMG0625_1491920413469.PNG'),
(54, 'Tắc Kê Sắt Or Bu Lông Nở', '', '<h3>Thông Tin Liên Hệ</h3><h3>Cửa Hàng Phú Quý</h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 1, 18, 3, '2017-04-11 07:21:22', '2017-04-11 07:21:22', 'Tac-Ke-Sat-Or-Bu-Long-No', 'IMG0604_1491920482466.PNG'),
(55, 'Tắc Kê Móc', '', '<h3>Thông Tin Liên Hệ</h3><h3>Cửa H<NAME></h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 1, 18, 3, '2017-04-11 07:21:59', '2017-04-11 07:21:59', 'Tac-Ke-Moc', 'IMG0628_1491920519840.JPG'),
(56, '<NAME>', '', '<h3>Thông Tin Liên Hệ</h3><h3>Cửa H<NAME></h3><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 1, 18, 3, '2017-04-11 07:22:32', '2017-04-11 07:22:32', 'Tac-Ke-Dan', 'IMG0603_1491920552684.JPG');
-- --------------------------------------------------------
--
-- Table structure for table `sliders`
--
CREATE TABLE `sliders` (
`id` int(10) UNSIGNED NOT NULL,
`display_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`anhslider` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`chuthich` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`order` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT '1',
`user_id` int(10) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `sliders`
--
INSERT INTO `sliders` (`id`, `display_name`, `anhslider`, `chuthich`, `order`, `user_id`, `created_at`, `updated_at`) VALUES
(6, 'slide5_1491894292510.jpg', 'slide5_1491894292510.jpg', NULL, '1', 3, '2017-04-08 04:01:37', '2017-04-11 00:04:52'),
(7, 'slide4_1491894283384.jpg', 'slide4_1491894283384.jpg', NULL, '3', 3, '2017-04-08 04:02:49', '2017-04-11 00:04:43'),
(8, 'slide3_1491894273886.jpg', 'slide3_1491894273886.jpg', NULL, '1', 3, '2017-04-08 04:11:19', '2017-04-11 00:04:33'),
(9, 'slide2_1491894249697.jpg', 'slide2_1491894249697.jpg', NULL, '1', 3, '2017-04-08 04:11:34', '2017-04-11 00:04:09'),
(10, 'slide1_1491894239806.jpg', 'slide1_1491894239806.jpg', NULL, '1', 3, '2017-04-08 04:13:31', '2017-04-11 00:03:59');
-- --------------------------------------------------------
--
-- Table structure for table `trangs`
--
CREATE TABLE `trangs` (
`id` int(10) UNSIGNED NOT NULL,
`display_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`path` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`noidung` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` int(10) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `trangs`
--
INSERT INTO `trangs` (`id`, `display_name`, `path`, `noidung`, `user_id`, `created_at`, `updated_at`) VALUES
(1, '<NAME>', 'gioi-thieu', '<h4 style="margin: 0px 0px 7px; padding: 0px; border: 0px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-variant-numeric: inherit; font-weight: 700; font-stretch: inherit; font-size: 24px; line-height: 28px; font-family: Arial, Arial, Tahoma, sans-serif; vertical-align: baseline; color: rgb(68, 68, 68); letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(251, 251, 251); text-decoration-style: initial; text-decoration-color: initial;">Giới Thiệu Về Chúng Tôi</h4>\r\n<h3>Dây curoa tại cửa hàng Phú Quý là đơn vị cung cấp mặt hàng dây curoa công nghiệp chính hãng của Tri-Angle, Sanwu, Mitsuboshi, Mitsusumi, Mitsuba, Robota, Bando các loại dây A, B, C, D, E và các loại dây răng chuyên dụng như 3M, S3M, 5M, S5M, 8M, S8M, H, XH, XXH, L, XL, 14M và S14M. Bên cạnh đó là các loại dây đặc chủng công nghiệp như SPA, SPB, SPC, 3V, 3VX, 5V, 5VX, 8V, 8VX. Với gần 30 năm trong ngành, chúng tôi am hiểu sâu sắc từng loại sản phẩm, chất lượng, và giá cả hợp lý. UY TÍN là điều quan trọng nhất chúng tôi vẫn làm trong suốt 30 năm qua.</h3>\r\n<p><br></p>\r\n<h4 style="margin: 0px 0px 7px; padding: 0px; border: 0px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-variant-numeric: inherit; font-weight: 700; font-stretch: inherit; font-size: 24px; line-height: 28px; font-family: Arial, Arial, Tahoma, sans-serif; vertical-align: baseline; color: rgb(68, 68, 68); letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(251, 251, 251); text-decoration-style: initial; text-decoration-color: initial;">GIÁ CẢ HỢP LÝ THEO NHU CẦU</h4><h3>\r\n\r\n Chúng tôi không bán hàng rẻ nhất, mà chúng tôi bán hàng với giá cả hợp lý nhất với nhu cầu của bạn. Tùy theo đời máy móc, tùy theo năng lực sản xuất sản phẩm, tùy theo yêu cầu của khách hàng, Phú Quý chúng tôi sẽ tư vấn với giá cả tốt nhất theo nhu cầu\r\n Rất nhiều sản phẩm dây curoa, dây băng tải, dây dẹp được sản xuất tại Việt Nam và đóng mác tem của các thương hiệu nổi tiếng trên thế giới. Chúng tôi, cam kết với bạn về chất lượng và giá cả phù hợp. Không hàng nhái, không thách giá và loại hàng phải đáp ứng nhu cầu khách hàng.\r\n</h3><p><br></p><h3>Thông Tin Liên Hệ</h3><h3>Cửa Hàng Phú Quý</h3><p><br></p><ul type="disc"><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Địa Chỉ:\r\n 135 Hải Thượng Lãng Ông, P.10, Q.5 - TPHCM</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Số Điện\r\n Thoại: 08.38578 486 - 0937.539.663 - 0908.871.315</li><li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;\r\n line-height:normal;mso-list:l0 level1 lfo1;tab-stops:list 36.0pt">Email:\r\n <EMAIL></li></ul><p><br></p>', 3, '2017-04-08 08:10:49', '2017-04-11 08:19:51');
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`id` int(10) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `name`, `email`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, 'nnduyquang', '<EMAIL>', <PASSWORD>', '<PASSWORD>', '2017-04-02 02:27:09', NULL),
(3, '<NAME>', '<EMAIL>', <PASSWORD>$J<PASSWORD>/k6lkXzi<PASSWORD>CCsmbcUUJoIP3SAm8dZk1IgCkfTi', NULL, '2017-04-08 03:48:16', '2017-04-08 03:48:16');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `cauhinhs`
--
ALTER TABLE `cauhinhs`
ADD PRIMARY KEY (`id`),
ADD KEY `cauhinhs_user_id_foreign` (`user_id`);
--
-- Indexes for table `danhmucs`
--
ALTER TABLE `danhmucs`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `danhmucs_path_unique` (`path`),
ADD UNIQUE KEY `danhmucs_display_name_unique` (`display_name`),
ADD KEY `danhmucs_user_id_foreign` (`user_id`);
--
-- Indexes for table `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `password_resets`
--
ALTER TABLE `password_resets`
ADD KEY `password_resets_email_index` (`email`),
ADD KEY `password_resets_token_index` (`token`);
--
-- Indexes for table `permissions`
--
ALTER TABLE `permissions`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `permissions_name_unique` (`name`);
--
-- Indexes for table `permission_role`
--
ALTER TABLE `permission_role`
ADD PRIMARY KEY (`permission_id`,`role_id`),
ADD KEY `permission_role_role_id_foreign` (`role_id`);
--
-- Indexes for table `roles`
--
ALTER TABLE `roles`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `roles_name_unique` (`name`);
--
-- Indexes for table `role_user`
--
ALTER TABLE `role_user`
ADD PRIMARY KEY (`user_id`,`role_id`),
ADD KEY `role_user_role_id_foreign` (`role_id`);
--
-- Indexes for table `sanphams`
--
ALTER TABLE `sanphams`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `sanphams_path_unique` (`path`),
ADD KEY `sanphams_user_id_foreign` (`user_id`),
ADD KEY `sanphams_danhmuc_id_foreign` (`danhmuc_id`);
--
-- Indexes for table `sliders`
--
ALTER TABLE `sliders`
ADD PRIMARY KEY (`id`),
ADD KEY `sliders_user_id_foreign` (`user_id`);
--
-- Indexes for table `trangs`
--
ALTER TABLE `trangs`
ADD PRIMARY KEY (`id`),
ADD KEY `trangs_user_id_foreign` (`user_id`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `cauhinhs`
--
ALTER TABLE `cauhinhs`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `danhmucs`
--
ALTER TABLE `danhmucs`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;
--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;
--
-- AUTO_INCREMENT for table `permissions`
--
ALTER TABLE `permissions`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25;
--
-- AUTO_INCREMENT for table `roles`
--
ALTER TABLE `roles`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `sanphams`
--
ALTER TABLE `sanphams`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=57;
--
-- AUTO_INCREMENT for table `sliders`
--
ALTER TABLE `sliders`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;
--
-- AUTO_INCREMENT for table `trangs`
--
ALTER TABLE `trangs`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `cauhinhs`
--
ALTER TABLE `cauhinhs`
ADD CONSTRAINT `cauhinhs_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `danhmucs`
--
ALTER TABLE `danhmucs`
ADD CONSTRAINT `danhmucs_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `permission_role`
--
ALTER TABLE `permission_role`
ADD CONSTRAINT `permission_role_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `permission_role_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `role_user`
--
ALTER TABLE `role_user`
ADD CONSTRAINT `role_user_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `role_user_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `sanphams`
--
ALTER TABLE `sanphams`
ADD CONSTRAINT `sanphams_danhmuc_id_foreign` FOREIGN KEY (`danhmuc_id`) REFERENCES `danhmucs` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `sanphams_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `sliders`
--
ALTER TABLE `sliders`
ADD CONSTRAINT `sliders_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `trangs`
--
ALTER TABLE `trangs`
ADD CONSTRAINT `trangs_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
/*!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 */;
|
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
DROP TABLE IF EXISTS `sc_api`;
CREATE TABLE `sc_api` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`key` varchar(255) NOT NULL,
`secret` varchar(255) NOT NULL,
`created` bigint(20) NOT NULL,
`expired` bigint(20) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `key` (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `sc_api` WRITE;
/*!40000 ALTER TABLE `sc_api` DISABLE KEYS */;
INSERT INTO `sc_api` (`id`, `name`, `key`, `secret`, `created`, `expired`)
VALUES
(1,'admin','<PASSWORD>','/RDJHBCHREofNrofj-Xwymcr~DDkgv56',1503334835,0);
/*!40000 ALTER TABLE `sc_api` ENABLE KEYS */;
UNLOCK TABLES;
DROP TABLE IF EXISTS `sc_block_user`;
CREATE TABLE `sc_block_user` (
`user_id` varchar(255) NOT NULL,
`block_user_id` varchar(255) NOT NULL,
`created` bigint(20) NOT NULL,
UNIQUE KEY `user_id` (`user_id`,`block_user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
DROP TABLE IF EXISTS `sc_device`;
CREATE TABLE `sc_device` (
`user_id` varchar(255) NOT NULL,
`platform` int(11) NOT NULL,
`token` varchar(255) NOT NULL,
`notification_device_id` varchar(255) DEFAULT NULL,
UNIQUE KEY `token` (`token`),
UNIQUE KEY `user_id` (`user_id`,`platform`),
UNIQUE KEY `notification_device_id` (`notification_device_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
DROP TABLE IF EXISTS `sc_message`;
CREATE TABLE `sc_message` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`message_id` varchar(255) NOT NULL,
`room_id` varchar(255) NOT NULL,
`user_id` varchar(255) NOT NULL,
`type` varchar(255) DEFAULT NULL,
`payload` mediumblob,
`created` bigint(20) NOT NULL,
`modified` bigint(20) NOT NULL,
`deleted` bigint(20) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `message_id` (`message_id`),
KEY `room_id_deleted_created` (`room_id`,`deleted`,`created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `sc_message` WRITE;
/*!40000 ALTER TABLE `sc_message` DISABLE KEYS */;
INSERT INTO `sc_message` (`id`, `message_id`, `room_id`, `user_id`, `type`, `payload`, `created`, `modified`, `deleted`)
VALUES
(1,'300b4a42-abc5-4cc5-bd41-3ef2c491dcbc','9d60544c-4409-4269-83c7-28144cac30c6','00581ea9-3547-4c81-930c-a3ed042e4b21','text',X'7B2274657874223A224869227D',1498755974,1498755974,0),
(2,'bd3c0ebf-070a-45f5-b884-b22124669803','9d60544c-4409-4269-83c7-28144cac30c6','d18b8a24-7bd5-4580-b54c-26a60d0e097e','text',X'7B2274657874223A22486F77277320697420676F696E67227D',1498755994,1498755994,0),
(3,'2b0b5240-cde0-4729-ab17-c671d48cc85e','8cac03d1-f10f-43b0-bf99-b3d221783161','00581ea9-3547-4c81-930c-a3ed042e4b21','text',X'7B2274657874223A225768656E20646F2077652073746172742064657369676E20616E642077686F2077696C6C20646F2069743F227D',1498756985,1498756985,0),
(4,'0ec72b7f-4d89-4957-b14b-a31cf60385e2','947d12f8-21fe-4108-8b73-a1153a781549','00581ea9-3547-4c81-930c-a3ed042e4b21','text',X'7B2274657874223A2249276D2068656164696E6720686F6D65206E6F772E227D',1498822191,1498822191,0),
(5,'41816a35-10d5-4d13-a3c4-72791b551780','82d9c13c-4b4b-478b-b7f8-7473709f4a81','00581ea9-3547-4c81-930c-a3ed042e4b21','text',X'7B2274657874223A224865792C20492068617665206120646179206F666620746F6D6F72726F772E227D',1498822237,1498822237,0),
(6,'0bb8aac2-ef0b-4c8a-b423-d30a3fde3ffe','b14a1276-46c5-4fc5-8b18-fce1d4b6733a','00581ea9-3547-4c81-930c-a3ed042e4b21','text',X'7B2274657874223A22476F20666F7220697421227D',1498822274,1498822274,0),
(7,'60aba03b-3437-476e-b6ff-61755919b224','09172b11-44e1-455c-81fb-4b2cffa28492','00581ea9-3547-4c81-930c-a3ed042e4b21','text',X'7B2274657874223A224920676F74206120626F6E757320617420776F726B20746F64617921227D',1498822401,1498822401,0),
(8,'c10ac057-3d73-4c19-856c-e0649e4ffd11','a5fc268d-01e4-4c63-9b88-7db2c40cf6ad','00581ea9-3547-4c81-930c-a3ed042e4b21','text',X'7B2274657874223A22436F6D65206F6E2C206974277320616C6C20696E20796F757220686561642E204974277320706572666563746C792066696E652E227D',1498822573,1498822573,0),
(9,'61952241-48c8-4cdd-9fe2-ab61b8bf9c55','821d92d7-4a68-452a-b660-51379544cec4','00581ea9-3547-4c81-930c-a3ed042e4b21','text',X'7B2274657874223A22486F7727766520796F75206265656E20726563656E746C793F227D',1498822771,1498822771,0),
(10,'9d79f275-a80c-41ae-aa26-0631d94486b4','821d92d7-4a68-452a-b660-51379544cec4','7da9e9c6-d174-4ab5-86f8-99e727c710ff','text',X'7B2274657874223A2249277665206265656E20676F6F642E20416E6420796F753F227D',1498822929,1498822929,0),
(11,'d26c3d0e-7568-49be-ada7-e9e2ef023cda','821d92d7-4a68-452a-b660-51379544cec4','00581ea9-3547-4c81-930c-a3ed042e4b21','text',X'7B2274657874223A2249277665206265656E20776F726B696E6720616C6C206461792E227D',1498823175,1498823175,0),
(12,'7ecc5c82-8861-4161-9d18-98dc4f160976','821d92d7-4a68-452a-b660-51379544cec4','7da9e9c6-d174-4ab5-86f8-99e727c710ff','text',X'7B2274657874223A22446F6E2774207075736820796F757273656C6620746F6F20686172642E20596F752073686F756C642067657420736F6D6520726573742E227D',1498823204,1498823204,0),
(13,'2b7e6d4a-2256-42f9-9fe3-aaab68a33854','821d92d7-4a68-452a-b660-51379544cec4','7da9e9c6-d174-4ab5-86f8-99e727c710ff','image',X'7B226D696D65223A22696D6167652F6A706567222C22736F7572636555726C223A22687474703A2F2F6C6F63616C686F73743A393030302F76302F6173736574732F30353836383539612D373031302D343333642D626339382D3863353634333566333430332E6A7067227D',1498823236,1498823236,1),
(14,'00dfce2d-2635-4adf-b999-3e0f0bddabb6','821d92d7-4a68-452a-b660-51379544cec4','7da9e9c6-d174-4ab5-86f8-99e727c710ff','text',X'7B2274657874223A22427920746865207761792C20726563656E746C7920492073746172746564206B656570696E6720646F67732E227D',1498824356,1498824356,0),
(15,'21af4ffd-71c7-4c3d-bf06-511f6da00100','821d92d7-4a68-452a-b660-51379544cec4','7da9e9c6-d174-4ab5-86f8-99e727c710ff','image',X'7B226D696D65223A22696D6167652F706E67222C22736F7572636555726C223A22687474703A2F2F6C6F63616C686F73743A393030302F76302F6173736574732F31616435356265372D623136622D343766312D613530662D3961633439306632393964332E706E67227D',1498824363,1498824363,0),
(16,'fd10d8f2-1924-4398-bac0-d941b4c6f512','821d92d7-4a68-452a-b660-51379544cec4','00581ea9-3547-4c81-930c-a3ed042e4b21','text',X'7B2274657874223A22546861742773206E6963652E227D',1502785166,1502785166,0);
/*!40000 ALTER TABLE `sc_message` ENABLE KEYS */;
UNLOCK TABLES;
DROP TABLE IF EXISTS `sc_room`;
CREATE TABLE `sc_room` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`room_id` varchar(255) NOT NULL,
`user_id` varchar(255) NOT NULL,
`name` varchar(255) NOT NULL,
`picture_url` varchar(255) DEFAULT NULL,
`information_url` varchar(255) DEFAULT NULL,
`meta_data` mediumblob,
`available_message_types` varchar(255) DEFAULT NULL,
`type` int(11) NOT NULL,
`last_message` varchar(255) DEFAULT NULL,
`last_message_updated` bigint(20) NOT NULL,
`notification_topic_id` varchar(255) DEFAULT NULL,
`is_can_left` tinyint(1) NOT NULL,
`is_show_users` tinyint(1) NOT NULL,
`created` bigint(20) NOT NULL,
`modified` bigint(20) NOT NULL,
`deleted` bigint(20) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `room_id` (`room_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `sc_room` WRITE;
/*!40000 ALTER TABLE `sc_room` DISABLE KEYS */;
INSERT INTO `sc_room` (`id`, `room_id`, `user_id`, `name`, `picture_url`, `information_url`, `meta_data`, `available_message_types`, `type`, `last_message`, `last_message_updated`, `notification_topic_id`, `is_can_left`, `is_show_users`, `created`, `modified`, `deleted`)
VALUES
(1,'9d60544c-4409-4269-83c7-28144cac30c6','00581ea9-3547-4c81-930c-a3ed042e4b21','','','',X'7B7D','',1,'How\'s it going',1498755994,'',1,1,1498751040,1498751040,0),
(2,'8cac03d1-f10f-43b0-bf99-b3d221783161','00581ea9-3547-4c81-930c-a3ed042e4b21','','','',X'7B7D','',1,'When do we start design and who will do it?',1498756985,'',1,1,1498752806,1498752806,0),
(3,'947d12f8-21fe-4108-8b73-a1153a781549','00581ea9-3547-4c81-930c-a3ed042e4b21','','','',X'7B7D','',1,'I\'m heading home now.',1498822191,'',1,1,1498756093,1498756093,0),
(4,'82d9c13c-4b4b-478b-b7f8-7473709f4a81','00581ea9-3547-4c81-930c-a3ed042e4b21','','','',X'7B7D','',1,'Hey, I have a day off tomorrow.',1498822237,'',1,1,1498756184,1498756184,0),
(5,'b14a1276-46c5-4fc5-8b18-fce1d4b6733a','00581ea9-3547-4c81-930c-a3ed042e4b21','','','',X'7B7D','',1,'Go for it!',1498822274,'',1,1,1498756259,1498756259,0),
(6,'09172b11-44e1-455c-81fb-4b2cffa28492','00581ea9-3547-4c81-930c-a3ed042e4b21','','','',X'7B7D','',1,'I got a bonus at work today!',1498822401,'',1,1,1498756318,1498756318,0),
(7,'a5fc268d-01e4-4c63-9b88-7db2c40cf6ad','00581ea9-3547-4c81-930c-a3ed042e4b21','','','',X'7B7D','',1,'Come on, it\'s all in your head. It\'s perfectly fine.',1498822573,'',1,1,1498756390,1498756390,0),
(8,'821d92d7-4a68-452a-b660-51379544cec4','00581ea9-3547-4c81-930c-a3ed042e4b21','','','',X'7B7D','',1,'That\'s nice.',1502785166,'',1,1,1498756496,1498756496,0),
(9,'9272f25b-cfa0-455f-8846-2fd70df7f127','00581ea9-3547-4c81-930c-a3ed042e4b21','','','',X'7B7D','',1,'',0,'',1,1,1498756556,1498756556,0),
(10,'c7b8bd3e-8915-494e-88f5-2106b03ef672','00581ea9-3547-4c81-930c-a3ed042e4b21','','','',X'7B7D','',1,'',0,'',1,1,1498756624,1498756624,0),
(11,'ef878f79-bab6-4d1b-8ee0-1b6ff69d68ee','00581ea9-3547-4c81-930c-a3ed042e4b21','','','',X'7B7D','',1,'',0,'',1,1,1498756736,1498756736,0);
/*!40000 ALTER TABLE `sc_room` ENABLE KEYS */;
UNLOCK TABLES;
DROP TABLE IF EXISTS `sc_room_user`;
CREATE TABLE `sc_room_user` (
`room_id` varchar(255) NOT NULL,
`user_id` varchar(255) NOT NULL,
`unread_count` bigint(20) DEFAULT NULL,
`meta_data` mediumblob,
`created` bigint(20) NOT NULL,
`modified` bigint(20) NOT NULL,
UNIQUE KEY `room_id` (`room_id`,`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `sc_room_user` WRITE;
/*!40000 ALTER TABLE `sc_room_user` DISABLE KEYS */;
INSERT INTO `sc_room_user` (`room_id`, `user_id`, `unread_count`, `meta_data`, `created`, `modified`)
VALUES
('09172b11-44e1-455c-81fb-4b2cffa28492','00581ea9-3547-4c81-930c-a3ed042e4b21',0,X'7B7D',1498756318,1498756318),
('09172b11-44e1-455c-81fb-4b2cffa28492','be23e324-153b-4f10-a048-89c45b248d0a',1,X'7B7D',1498756339,1498756339),
('821d92d7-4a68-452a-b660-51379544cec4','00581ea9-3547-4c81-930c-a3ed042e4b21',0,X'7B7D',1498756496,1498756496),
('821d92d7-4a68-452a-b660-51379544cec4','7da9e9c6-d174-4ab5-86f8-99e727c710ff',1,X'7B7D',1498756509,1498756509),
('82d9c13c-4b4b-478b-b7f8-7473709f4a81','00581ea9-3547-4c81-930c-a3ed042e4b21',0,X'7B7D',1498756184,1498756184),
('82d9c13c-4b4b-478b-b7f8-7473709f4a81','500efdd3-2898-493e-bc14-d34750cc19d5',1,X'7B7D',1498756204,1498756204),
('8cac03d1-f10f-43b0-bf99-b3d221783161','00581ea9-3547-4c81-930c-a3ed042e4b21',0,X'7B7D',1498752806,1498752806),
('8cac03d1-f10f-43b0-bf99-b3d221783161','158347bb-e8cf-43d6-999a-c8d98e93adca',0,X'7B7D',1498752858,1498752858),
('9272f25b-cfa0-455f-8846-2fd70df7f127','00581ea9-3547-4c81-930c-a3ed042e4b21',0,X'7B7D',1498756556,1498756556),
('9272f25b-cfa0-455f-8846-2fd70df7f127','3f339c23-faf0-4ebb-b08f-7ef1ecf529be',0,X'7B7D',1498756564,1498756564),
('947d12f8-21fe-4108-8b73-a1153a781549','00581ea9-3547-4c81-930c-a3ed042e4b21',0,X'7B7D',1498756093,1498756093),
('947d12f8-21fe-4108-8b73-a1153a781549','ea7c2e24-4f5c-4ffb-97dd-ef648b6d46d3',1,X'7B7D',1498756109,1498756109),
('9d60544c-4409-4269-83c7-28144cac30c6','00581ea9-3547-4c81-930c-a3ed042e4b21',0,X'7B7D',1498751040,1498751040),
('9d60544c-4409-4269-83c7-28144cac30c6','d18b8a24-7bd5-4580-b54c-26a60d0e097e',0,X'7B7D',1498751087,1498751087),
('a5fc268d-01e4-4c63-9b88-7db2c40cf6ad','00581ea9-3547-4c81-930c-a3ed042e4b21',4,X'7B7D',1498756390,1498756390),
('a5fc268d-01e4-4c63-9b88-7db2c40cf6ad','a4bbfd16-aed6-485c-8497-6203bac70d99',1,X'7B7D',1498756443,1498756443),
('b14a1276-46c5-4fc5-8b18-fce1d4b6733a','00581ea9-3547-4c81-930c-a3ed042e4b21',0,X'7B7D',1498756259,1498756259),
('b14a1276-46c5-4fc5-8b18-fce1d4b6733a','2cccca24-9ac0-4302-99e4-b2ab0e123d04',1,X'7B7D',1498756279,1498756279),
('c7b8bd3e-8915-494e-88f5-2106b03ef672','00581ea9-3547-4c81-930c-a3ed042e4b21',0,X'7B7D',1498756624,1498756624),
('c7b8bd3e-8915-494e-88f5-2106b03ef672','1e53e44f-4dd3-4da6-a236-aac43dbafb83',0,X'7B7D',1498756640,1498756640),
('ef878f79-bab6-4d1b-8ee0-1b6ff69d68ee','00581ea9-3547-4c81-930c-a3ed042e4b21',0,X'7B7D',1498756736,1498756736),
('ef878f79-bab6-4d1b-8ee0-1b6ff69d68ee','f7463789-a127-430b-9cbb-4f1f45c073cc',0,X'7B7D',1498756748,1498756748);
/*!40000 ALTER TABLE `sc_room_user` ENABLE KEYS */;
UNLOCK TABLES;
DROP TABLE IF EXISTS `sc_subscription`;
CREATE TABLE `sc_subscription` (
`room_id` varchar(255) NOT NULL,
`user_id` varchar(255) NOT NULL,
`platform` int(11) NOT NULL,
`notification_subscription_id` varchar(255) DEFAULT NULL,
`deleted` bigint(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
DROP TABLE IF EXISTS `sc_user`;
CREATE TABLE `sc_user` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` varchar(255) NOT NULL,
`name` varchar(255) NOT NULL,
`picture_url` varchar(255) DEFAULT NULL,
`information_url` varchar(255) DEFAULT NULL,
`unread_count` bigint(20) unsigned NOT NULL,
`meta_data` mediumblob,
`is_public` tinyint(1) NOT NULL,
`is_can_block` tinyint(1) NOT NULL,
`is_show_users` tinyint(1) NOT NULL,
`access_token` varchar(255) DEFAULT NULL,
`created` bigint(20) NOT NULL,
`modified` bigint(20) NOT NULL,
`deleted` bigint(20) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `sc_user` WRITE;
/*!40000 ALTER TABLE `sc_user` DISABLE KEYS */;
INSERT INTO `sc_user` (`id`, `user_id`, `name`, `picture_url`, `information_url`, `unread_count`, `meta_data`, `is_public`, `is_can_block`, `is_show_users`, `access_token`, `created`, `modified`, `deleted`)
VALUES
(1,'00581ea9-3547-4c81-930c-a3ed042e4b21','Williams','http://www.material-ui.com/images/ok-128.jpg','',4,X'7B7D',0,1,1,'rHoUY.7iRU~-yUJtrbaRkRQom0hq1Nse',1498749777,1498749777,0),
(2,'d18b8a24-7bd5-4580-b54c-26a60d0e097e','Jones','http://www.material-ui.com/images/raquelromanp-128.jpg','',0,X'7B7D',0,1,1,'hL~LZ0Zd+UpYLe-D5S7u_A3Egk1xQFMx',1498750938,1498750938,0),
(3,'158347bb-e8cf-43d6-999a-c8d98e93adca','Taylor','http://www.material-ui.com/images/uxceo-128.jpg','',0,X'7B7D',0,1,1,'Ed~z-N_NFjYU/Otfx0iMdHzwL94xumOP',1498752754,1498752754,0),
(4,'ea7c2e24-4f5c-4ffb-97dd-ef648b6d46d3','Thomas','http://www.material-ui.com/images/kolage-128.jpg','',1,X'7B7D',0,1,1,'wGBgO9TL9.s1VC_n3-45OEk7WPmvj_wW',1498756043,1498756043,0),
(5,'500efdd3-2898-493e-bc14-d34750cc19d5','Martin','http://www.material-ui.com/images/kerem-128.jpg','',1,X'7B7D',0,1,1,'O4stuoYYrOFzPx4NAO7F0Fj0emd-XWqM',1498756171,1498756171,0),
(6,'2cccca24-9ac0-4302-99e4-b2ab0e123d04','Jackson','http://www.material-ui.com/images/jsa-128.jpg','',1,X'7B7D',0,1,1,'vt~9g5tSgEqNwM/keFeg8d73lTw0m.o_',1498756251,1498756251,0),
(7,'be23e324-153b-4f10-a048-89c45b248d0a','Lopez','http://www.material-ui.com/images/chexee-128.jpg','',1,X'7B7D',0,1,1,'144BojZe6HBWqHS7i0ij-IFJG/8w/asr',1498756312,1498756312,0),
(8,'a4bbfd16-aed6-485c-8497-6203bac70d99','Gonzalez','http://www.material-ui.com/images/angelceballos-128.jpg','',1,X'7B7D',0,1,1,'k-YS28bj4hKpzzF4F0mVS5DhT5~31hK5',1498756382,1498756382,0),
(9,'7da9e9c6-d174-4ab5-86f8-99e727c710ff','Lee','http://www.material-ui.com/images/ok-128.jpg','',1,X'7B7D',0,1,1,'FhFwc7JVYcHTPkgAHdVdKIulA~0ngt-X',1498756483,1498756483,0),
(10,'3f339c23-faf0-4ebb-b08f-7ef1ecf529be','Harris','http://www.material-ui.com/images/allisongrayce-128.jpg','',0,X'7B7D',0,1,1,'XeQcnP+B7ZGn-73SNuIX~V_JXguKOdTC',1498756542,1498756542,0),
(11,'1e53e44f-4dd3-4da6-a236-aac43dbafb83','Lewis','http://www.material-ui.com/images/adhamdannaway-128.jpg','',0,X'7B7D',0,1,1,'YORL8YF20Y4tzMh2WM/sItx_XJ1Up~lR',1498756604,1498756604,0),
(12,'f7463789-a127-430b-9cbb-4f1f45c073cc','Perez','http://www.material-ui.com/images/adellecharles-128.jpg','',0,X'7B7D',0,1,1,'7b7~LSH/hP5U5Ln5/uOZN~hipm7//yol',1498756715,1498756715,0);
/*!40000 ALTER TABLE `sc_user` ENABLE KEYS */;
UNLOCK TABLES;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
/******************************
** File: ~\GroundFrame\GroundFrame.SQL\Stored Procedures\simsig\simsig.Usp_UPSERT_TSIM.sql
** Name: simsig.Usp_UPSERT_TSIM
** Desc: Stored procedure create or update a SimSig simulation
** Unit Test:
** Auth: <NAME>
** Date: 2019-12-12
**************************
** Change History
**************************
** Ver Date Author Description
** --- -------- ------- ------------------------------------
** 1 2019-12-12 TC Initial Script creation
**
*******************************/
CREATE PROCEDURE [simsig].[Usp_UPSERT_TSIM]
@id SMALLINT = 0 OUTPUT,
@name NVARCHAR(128),
@description NVARCHAR(2048),
@simsig_wiki_link NVARCHAR(512),
@simsig_code NVARCHAR(32),
@datetime DATETIMEOFFSET,
@debug BIT = 0,
@debug_session_id UNIQUEIDENTIFIER = NULL OUTPUT
AS
BEGIN
SET NOCOUNT ON;
--Variables
DECLARE @debug_message NVARCHAR(2048);
DECLARE @error_message NVARCHAR(2048);
--Set the @debug_session_id if in debug mode and @debug_session_id <NULL>
IF @debug = 1 AND @debug_session_id IS NULL
BEGIN
SET @debug_session_id = NEWID();
END
IF @debug = 1
BEGIN
SET @debug_message = 'Executing [simsig].[Usp_UPSERT_TSIM] started.';
EXEC [audit].[Usp_INSERT_TEVENT] @debug_session_id, @@PROCID, @debug_message;
SET @debug_message = 'Parameters passed: @id = ' + CONVERT(NVARCHAR(16),@id) + ' | @name = ' + ISNULL(@name,'<NULL>') + ' | @description = ' + ISNULL(@description,'<NULL>') + ' | @simsig_wiki_link = ' + ISNULL(@simsig_wiki_link,'<NULL>') + ' | @simsig_code = ' + ISNULL(@simsig_code,'<NULL>') + ' | @datetime = ' + CASE WHEN @datetime IS NULL THEN '<NULL>' ELSE CONVERT(NVARCHAR(40), @datetime, 127) END + '.';
EXEC [audit].[Usp_INSERT_TEVENT] @debug_session_id, @@PROCID, @debug_message;
END
--Variables--
DECLARE @logged_in BIT = ISNULL(CONVERT(BIT,SESSION_CONTEXT(N'logged_in')),0);
DECLARE @app_user_id INT = ISNULL(CONVERT(INT,SESSION_CONTEXT(N'app_user')),0);
DECLARE @testdata_id UNIQUEIDENTIFIER = CONVERT(UNIQUEIDENTIFIER,SESSION_CONTEXT(N'testdata_id'))
--Set Default DateTime
IF @datetime IS NULL SET @datetime = SYSDATETIMEOFFSET();
--Check user is logged in
IF @logged_in = 0
BEGIN;
IF @debug = 1
BEGIN
SET @debug_message = 'The user isn''t logged in. Check that [common].[Usp_SET_SESSIONCONTEXT] has fired when the connection to the database was made';
EXEC [audit].[Usp_INSERT_TEVENT] @debug_session_id, @@PROCID, @debug_message;
END;
THROW 50000, 'The user is not logged in.', 1;
END;
--Check user has editor or admin role
IF ISNULL((SELECT [role_bitmap] FROM [app].[TUSER] WHERE [id] = @app_user_id),0) & 6 = 0
BEGIN;
IF @debug = 1
BEGIN
SET @debug_message = 'The user isn''t in the editor or admin role. Check their permissions';
EXEC [audit].[Usp_INSERT_TEVENT] @debug_session_id, @@PROCID, @debug_message;
END;
THROW 50000, 'The user does not have permission to perform this action.', 1;
END;
--Paramter checks
IF @debug = 1
BEGIN
SET @debug_message = 'Running paramter checks';
EXEC [audit].[Usp_INSERT_TEVENT] @debug_session_id, @@PROCID, @debug_message;
END;
IF NULLIF(@name,'') IS NULL
BEGIN;
IF @debug = 1
BEGIN
SET @debug_message = 'No valid @name parameter was supplied';
EXEC [audit].[Usp_INSERT_TEVENT] @debug_session_id, @@PROCID, @debug_message;
END;
THROW 50000, 'No valid name was supplied for the simulation.', 1;
END
IF NULLIF(@simsig_code,'') IS NULL
BEGIN;
IF @debug = 1
BEGIN
SET @debug_message = 'No valid @simsig_code parameter was supplied';
EXEC [audit].[Usp_INSERT_TEVENT] @debug_session_id, @@PROCID, @debug_message;
END;
THROW 50000, 'No valid simsig_code was supplied for the simulation.', 1;
END
IF @id = 0
BEGIN
IF @debug = 1
BEGIN
SET @debug_message = 'Checking to ensure the simulation doesn''t already exist and the record active';
EXEC [audit].[Usp_INSERT_TEVENT] @debug_session_id, @@PROCID, @debug_message;
END;
SET @id = ISNULL((SELECT [id] FROM [simsig].[TSIM] WHERE [name] = @name),0)
IF @debug = 1 AND @id = 0
BEGIN
SET @debug_message = 'Simulation doesn''t exists - a new record will be created';
EXEC [audit].[Usp_INSERT_TEVENT] @debug_session_id, @@PROCID, @debug_message;
END
ELSE IF @debug = 1 AND @id != 0
BEGIN
SET @debug_message = 'Simulation already exists ([id] = ' + CONVERT(NVARCHAR(16),@id) + ') - the existing record will be updated';
EXEC [audit].[Usp_INSERT_TEVENT] @debug_session_id, @@PROCID, @debug_message;
END;
END
IF @id = 0
BEGIN
--Insert new record
BEGIN TRAN TRAN_UPSERTSIM
BEGIN TRY
INSERT INTO [simsig].[TSIM]
(
[name],
[description],
[simsig_wiki_link],
[simsig_code],
[createdon],
[createdby_id],
[modifiedon],
[modifiedby_id],
[testdata_id]
)
VALUES
(
@name,
@description,
@simsig_wiki_link,
LOWER(@simsig_code),
@datetime,
@app_user_id,
@datetime,
@app_user_id,
@testdata_id
);
COMMIT TRAN TRAN_UPSERTSIM
SET @id = CAST(SCOPE_IDENTITY() AS SMALLINT);
END TRY
BEGIN CATCH
ROLLBACK TRAN TRAN_UPSERTSIM
IF @debug = 1
BEGIN
SET @debug_message = 'An error has occurred trying to insert a record into [simsig].[TSIM] for ' + @name + ':- ' + ERROR_MESSAGE();
EXEC [audit].[Usp_INSERT_TEVENT] @debug_session_id, @@PROCID, @debug_message;
END;
SET @error_message = 'An error has occurred creating a simulation record for ' + @name + ':- ' + ERROR_MESSAGE();
THROW 50000, @error_message, 1;
END CATCH
IF @debug = 1
BEGIN
SET @debug_message = 'New record created successfully ([id] = ' + CAST(@id AS NVARCHAR(16)) + ')';
EXEC [audit].[Usp_INSERT_TEVENT] @debug_session_id, @@PROCID, @debug_message;
SET @debug_message = 'Creating sim era template for simulation [id] = ' + CAST(@id AS NVARCHAR(16)) + ')';
EXEC [audit].[Usp_INSERT_TEVENT] @debug_session_id, @@PROCID, @debug_message;
END;
BEGIN TRAN TRAN_UPSERTSIM_SIMERA
BEGIN TRY
INSERT INTO [simsig].[TSIMERA]
(
[sim_id],
[name],
[description],
[era_type_id],
[testdata_id]
)
VALUES
(
@id,
@name + ' Template',
N'Default era template.',
2,
@testdata_id
);
COMMIT TRAN TRAN_UPSERTSIM_SIMERA
IF @debug = 1
BEGIN
SET @debug_message = 'Default era template for simulation [id] = ' + CAST(@id AS NVARCHAR(16)) + ') create ([id] = ' + CAST(CAST(SCOPE_IDENTITY() AS INT) AS NVARCHAR(16)) + ')';
EXEC [audit].[Usp_INSERT_TEVENT] @debug_session_id, @@PROCID, @debug_message;
END
END TRY
BEGIN CATCH
ROLLBACK TRAN TRAN_UPSERTSIM_SIMERA
IF @debug = 1
BEGIN
SET @debug_message = 'An error has occured trying to create default era tempate for simulation [id] = ' + CAST(@id AS NVARCHAR(16)) + ': - ' + ERROR_MESSAGE();
EXEC [audit].[Usp_INSERT_TEVENT] @debug_session_id, @@PROCID, @debug_message;
END;
SET @error_message = 'An error has occurred creating default era for simulation ' + @name + ':- ' + ERROR_MESSAGE();
THROW 50000, @error_message, 1;
END CATCH
END
ELSE
BEGIN
--Update the existing record
BEGIN TRAN TRAN_UPSERTSIM
SET @datetime = SYSDATETIMEOFFSET();
BEGIN TRY
UPDATE [simsig].[TSIM]
SET
[description] = NULLIF(@description,''),
[simsig_wiki_link] = NULLIF(@simsig_wiki_link,''),
[modifiedon] = @datetime,
[modifiedby_id] = @app_user_id
WHERE
[id] = @id;
COMMIT TRAN TRAN_UPSERTSIM
IF @debug = 1
BEGIN
SET @debug_message = 'Record [id] = ' + CAST(@id AS NVARCHAR(16)) + ' updated successfully';
EXEC [audit].[Usp_INSERT_TEVENT] @debug_session_id, @@PROCID, @debug_message;
END;
END TRY
BEGIN CATCH
ROLLBACK TRAN TRAN_UPSERTSIM
IF @debug = 1
BEGIN
SET @debug_message = 'An error has occured trying to update [app].[TSIM] record [id] = ' + CAST(@id AS NVARCHAR(16)) + ': - ' + ERROR_MESSAGE();
EXEC [audit].[Usp_INSERT_TEVENT] @debug_session_id, @@PROCID, @debug_message;
END;
SET @error_message = 'An error has occurred updating simulation [id] = ' + CAST(@id AS NVARCHAR(16)) + ':- ' + ERROR_MESSAGE();
THROW 50000, @error_message, 1;
END CATCH
END
IF @debug = 1
BEGIN
SET @debug_message = 'Executing [simsig].[Usp_UPSERT_TSIM] completed.';
EXEC [audit].[Usp_INSERT_TEVENT] @debug_session_id, @@PROCID, @debug_message;
END
SET NOCOUNT OFF;
END |
-- phpMyAdmin SQL Dump
-- version 5.0.2
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Dec 27, 2021 at 04:42 PM
-- Server version: 10.4.13-MariaDB
-- PHP Version: 7.4.7
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: `manalok9_db`
--
-- --------------------------------------------------------
--
-- Table structure for table `accounts`
--
CREATE TABLE `accounts` (
`ID` int(11) NOT NULL,
`Name` varchar(255) DEFAULT NULL,
`Type` varchar(255) DEFAULT NULL COMMENT '0=revenues;1=assets;2=liabilities;3=expenses;',
`Description` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `accounts`
--
INSERT INTO `accounts` (`ID`, `Name`, `Type`, `Description`) VALUES
(0, 'Accounts Receivable', '1', 'accounts receivable'),
(1, 'test', '2', 'try'),
(2, 'Cash', '1', 'cash'),
(3, 'Fuel and oil', '1', 'fuel + oil\r\n'),
(4, 'Rental Expense', '3', 'expense'),
(5, 'Utilities Expense', '3', 'utilities'),
(6, 'Sales', '0', 'sales'),
(7, 'Purchases', '3', 'purchases'),
(8, 'Office Supplies', '1', 'office supplies'),
(9, 'Accounts Payable', '2', 'accounts payable');
-- --------------------------------------------------------
--
-- Table structure for table `bills`
--
CREATE TABLE `bills` (
`ID` int(11) NOT NULL,
`BillNo` varchar(255) DEFAULT NULL,
`OrderNo` varchar(255) DEFAULT NULL,
`Amount` varchar(255) DEFAULT NULL,
`ModeOfPayment` varchar(255) DEFAULT NULL,
`Date` varchar(50) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `brand_category`
--
CREATE TABLE `brand_category` (
`ID` int(11) NOT NULL,
`Brand_Name` varchar(255) DEFAULT NULL,
`Brand_Char` varchar(255) DEFAULT NULL,
`Brand_Type` varchar(255) DEFAULT NULL,
`UniqueID` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `brand_properties`
--
CREATE TABLE `brand_properties` (
`id` int(11) NOT NULL,
`UniqueID` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
`Brand_Abbr` varchar(255) DEFAULT NULL,
`Brand_Type_Abbr` varchar(255) NOT NULL,
`Product_Line` varchar(255) DEFAULT NULL,
`Product_line_Abbr` varchar(255) DEFAULT NULL,
`Product_Type` varchar(255) DEFAULT NULL,
`Product_Type_Abbr` varchar(255) DEFAULT NULL,
`Product_Size` varchar(255) DEFAULT NULL,
`Product_Size_Abbr` varchar(255) DEFAULT NULL,
`Vcpd` varchar(255) DEFAULT NULL,
`Vcpd_Abbr` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `brand_size`
--
CREATE TABLE `brand_size` (
`id` int(11) NOT NULL,
`UniqueID` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
`Product_Size` varchar(255) DEFAULT NULL,
`Product_Size_Abbr` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `brand_vcpd`
--
CREATE TABLE `brand_vcpd` (
`id` int(11) NOT NULL,
`UniqueID` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
`Vcpd` varchar(255) DEFAULT NULL,
`Vcpd_Abbr` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `brand_vcpd`
--
INSERT INTO `brand_vcpd` (`id`, `UniqueID`, `Vcpd`, `Vcpd_Abbr`) VALUES
(6, 'JwwWrJLbURsr0Yv91v3535', 'ORIGINAL', 'ORIG'),
(7, 'JwwWrJLbURsr0Yv91v3535', 'CLONE', 'CL'),
(8, 'JwwWrJLbURsr0Yv91v3535', 'HALF', 'HF'),
(9, '8X8Tmm3yMrc26heuilTJVt', '5 IN 1 ORIGINAL', '51O'),
(10, '8X8Tmm3yMrc26heuilTJVt', '3 IN 1', '31O');
-- --------------------------------------------------------
--
-- Table structure for table `cart_release`
--
CREATE TABLE `cart_release` (
`cart_id` int(11) NOT NULL,
`user_id` varchar(255) DEFAULT NULL,
`item_code` varchar(255) DEFAULT NULL,
`quantity` varchar(255) DEFAULT NULL,
`total_price` varchar(255) DEFAULT NULL,
`time_stamp` varchar(255) DEFAULT NULL,
`status` int(11) DEFAULT NULL COMMENT '0 = pending\r\n1 = approved\r\n2 = cancelled'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `cart_release`
--
INSERT INTO `cart_release` (`cart_id`, `user_id`, `item_code`, `quantity`, `total_price`, `time_stamp`, `status`) VALUES
(33, '60bf510d64ba8', 'SDN001ORIG10KG', '10', '100', '2021-11-03 01:13:01', 1),
(34, '60bf510d64ba8', 'SDN001ORIG10KG', '10', '100', '2021-11-03 01:20:59', 1),
(35, '60bf510d64ba8', 'SDN001ORIG10KG', '10', '100', '2021-11-03 01:22:16', 1),
(36, '60bf510d64ba8', 'SDN001ORIG500G', '50', '5000', '2021-11-03 01:24:11', 1),
(37, '60bf510d64ba8', 'SDN001ORIG500G', '10', '1000', '2021-11-03 01:45:38', 1),
(38, '60bf510d64ba8', 'SDN001DGFDPREMORIG10KG', '100', '200', '2021-12-10 18:50:13', 1),
(39, '60bf510d64ba8', 'SDS002DSPRM51O300G', '100', '15000', '2021-12-16 16:34:22', 1),
(40, '60bf510d64ba8', 'SDS002DSPRM51O300G', '10', '1500', '2021-12-16 16:34:52', 1),
(41, '60bf510d64ba8', 'SDN001DGFDPREMORIG10KG', '50', '6000', '2021-12-23 11:02:21', 0);
-- --------------------------------------------------------
--
-- Table structure for table `clients`
--
CREATE TABLE `clients` (
`ID` int(11) NOT NULL,
`ClientNo` varchar(255) DEFAULT NULL,
`Name` varchar(255) DEFAULT NULL,
`TIN` varchar(255) DEFAULT NULL,
`Address` varchar(255) DEFAULT NULL,
`CityStateProvinceZip` varchar(255) DEFAULT NULL,
`Country` varchar(255) DEFAULT NULL,
`ContactNum` varchar(255) DEFAULT NULL,
`Category` int(11) DEFAULT NULL COMMENT '0=confirmedDistributor;\r\n1=distributorOnProbation;\r\n2=directDealer;\r\n3=directEndUser;',
`TerritoryManager` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `clients`
--
INSERT INTO `clients` (`ID`, `ClientNo`, `Name`, `TIN`, `Address`, `CityStateProvinceZip`, `Country`, `ContactNum`, `Category`, `TerritoryManager`) VALUES
(1, 'C-000001', 'Client Name', 'TIN #', 'Test Address', 'City', 'Count', '09123456789', 0, 'Mngr Test'),
(2, 'C-000002', 'Client Name 1', 'TIN # 1', 'Test Address 1', 'City', 'Count', '09123456789 1', 0, 'Mngr Test 1'),
(3, 'C-000003', 'Client Name 2', 'TIN # 2', 'Test Address 2', 'City', 'Count', '09123456789 2', 1, 'Mngr Test 2'),
(4, 'C-000004', 'Name', 'TIN', 'Address', 'City', 'Count', 'Contact', 2, 'Territory'),
(5, 'C-000005', 'NameTest', 'TINTest', 'AddressTest', 'CityTest', 'CountryTest', 'ContactTest', 0, 'TerritoryTest'),
(6, 'C-000006', 'Tester', 'Tester', 'Tester', NULL, NULL, 'Tester', 3, 'Tester'),
(7, 'C-000007', 'NameTest', 'TINTest', 'AddressTest', 'CityTest', 'CountryTest', 'ContactTest', 3, 'TerritoryTest'),
(8, 'C-000008', 'Test', 'Test', 'Test', 'Test', 'Test', 'Test', 0, 'Test'),
(9, 'C-000009', 'test11', '58872', 'antipoyo', 'tsda', 'test', '02825', 2, 'Tester');
-- --------------------------------------------------------
--
-- Table structure for table `invoices`
--
CREATE TABLE `invoices` (
`ID` int(11) NOT NULL,
`InvoiceNo` varchar(255) DEFAULT NULL,
`OrderNo` varchar(255) DEFAULT NULL,
`Amount` varchar(255) DEFAULT NULL,
`ModeOfPayment` varchar(255) DEFAULT NULL,
`Date` varchar(50) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `invoices`
--
INSERT INTO `invoices` (`ID`, `InvoiceNo`, `OrderNo`, `Amount`, `ModeOfPayment`, `Date`) VALUES
(2, 'I-000001', 'SO-000001', '4500', 'Cash', '2021-12-16');
-- --------------------------------------------------------
--
-- Table structure for table `journals`
--
CREATE TABLE `journals` (
`ID` int(11) NOT NULL,
`Date` varchar(255) DEFAULT NULL,
`Description` varchar(255) DEFAULT NULL,
`Total` varchar(255) DEFAULT NULL,
`Type` varchar(127) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `journals`
--
INSERT INTO `journals` (`ID`, `Date`, `Description`, `Total`, `Type`) VALUES
(1, '2021-12-20', 'payment', NULL, NULL),
(2, '2021-12-20', 'Rent payment', NULL, NULL),
(3, '2021-12-20', 'Cash sales', NULL, 'RELEASE'),
(4, '2021-12-20', 'Purchase on account', NULL, 'RESTOCK'),
(5, '2021-12-20', 'Purchase of office supplies', NULL, NULL),
(6, '2021-12-20', 'Payment of utilities', NULL, NULL),
(7, '2021-12-20', 'Sales on credit', NULL, 'RELEASE'),
(8, '2021-12-01', 'Restocking - December', NULL, NULL),
(9, '2021-12-20', 'Cash payment for AR', NULL, NULL),
(10, '2021-12-20', 'Sales cash', NULL, 'RELEASE'),
(11, '2021-12-21', 'Purchase Cash', NULL, 'RESTOCK'),
(12, '2021-12-21', 'Sales Cash', NULL, 'RELEASE');
-- --------------------------------------------------------
--
-- Table structure for table `journal_transactions`
--
CREATE TABLE `journal_transactions` (
`ID` int(11) NOT NULL,
`JournalID` int(11) DEFAULT NULL,
`AccountID` int(11) DEFAULT NULL,
`Debit` varchar(31) DEFAULT NULL,
`Credit` varchar(31) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `journal_transactions`
--
INSERT INTO `journal_transactions` (`ID`, `JournalID`, `AccountID`, `Debit`, `Credit`) VALUES
(1, 1, 2, '100', '0'),
(2, 1, 9, '0', '100'),
(3, 2, 4, '1000', '0'),
(4, 2, 2, '0', '01000'),
(5, 3, 2, '2000', '0'),
(6, 3, 6, '0', '2000'),
(7, 4, 7, '3000', '0'),
(8, 4, 9, '0', '3000'),
(9, 5, 8, '1500', '0'),
(10, 5, 2, '0', '1500'),
(11, 6, 5, '1000', '0'),
(12, 6, 2, '0', '1000'),
(13, 7, 0, '02000', '0'),
(14, 7, 6, '0', '02000'),
(15, 8, 7, '50000', '0'),
(16, 8, 2, '0', '50000'),
(17, 9, 2, '2000', '0'),
(18, 9, 0, '0', '2000'),
(19, 10, 2, '10000', '0'),
(20, 10, 6, '0', '10000'),
(21, 11, 7, '500', '0'),
(22, 11, 2, '0', '500'),
(23, 12, 6, '200', '0'),
(24, 12, 2, '0', '200');
-- --------------------------------------------------------
--
-- Table structure for table `logbook`
--
CREATE TABLE `logbook` (
`ID` int(11) NOT NULL,
`Event` text DEFAULT NULL,
`Description` text DEFAULT NULL,
`UserID` varchar(255) DEFAULT NULL,
`PageURL` varchar(255) DEFAULT NULL,
`DateAdded` varchar(50) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `logbook`
--
INSERT INTO `logbook` (`ID`, `Event`, `Description`, `UserID`, `PageURL`, `DateAdded`) VALUES
(1, 'approved purchase order.', 'approved purchase order PO-000004 [PurchaseOrderID: 4].', '60bf510d64ba8', 'https://localhost/manalok9/admin/view_purchase_order?orderNo=PO-000004', '2021-12-23 10:56:48 AM'),
(2, 'added new transaction.', 'released 10 for SDS002DSPRM51O300G [TransactionID: SDS002DSPRM51O300G-61C3E6C22D0F9].', '60bf510d64ba8', 'https://localhost/manalok9/admin/viewproduct?code=SDS002DSPRM51O300G', '2021-12-23 11:02:26 AM'),
(3, 'created a new sales order.', 'added sales order SO-000003 [SalesOrderID: 3].', '60bf510d64ba8', 'https://localhost/manalok9/admin/sales_orders', '2021-12-23 11:20:40 AM'),
(4, 'approved sales order.', 'approved sales order SO-000003 [SalesOrderID: 3].', '60bf510d64ba8', 'https://localhost/manalok9/admin/view_sales_order?orderNo=SO-000003', '2021-12-23 11:21:35 AM'),
(5, 'scheduled delivery.', 'scheduled delivery for sales order [No: SO-000003].', '60bf510d64ba8', 'https://localhost/manalok9/admin/view_sales_order?orderNo=SO-000003', '2021-12-23 11:22:33 AM'),
(6, 'marked SO as delivered.', 'sales order marked as delivered [No: SO-000003].', '60bf510d64ba8', 'https://localhost/manalok9/admin/view_sales_order?orderNo=SO-000003', '2021-12-23 11:24:35 AM'),
(7, 'created a new user.', 'added a new user Test Test Test [UserID: 61c3f4a7912c4].', '60bf510d64ba8', 'https://localhost/manalok9/admin/users', '2021-12-23 12:01:45 PM'),
(8, 'updated user details.', 'updated details of user Test Test Test [UserID: 61c3f4a7912c4].', '60bf510d64ba8', 'https://localhost/manalok9/admin/users', '2021-12-23 03:24:05 PM'),
(9, 'updated user details.', 'updated details of user Test Test Test [UserID: 61c3f4a7912c4].', '60bf510d64ba8', 'https://localhost/manalok9/admin/users', '2021-12-23 03:25:28 PM'),
(10, 'updated user details.', 'updated details of user Test Test Test [UserID: 61c3f4a7912c4].', '60bf510d64ba8', 'https://localhost/manalok9/admin/users', '2021-12-23 03:27:57 PM'),
(11, 'updated user details.', 'updated details of user Test Test Test [UserID: 61c3f4a7912c4].', '60bf510d64ba8', 'https://localhost/manalok9/admin/users', '2021-12-23 03:29:11 PM'),
(12, 'updated user details.', 'updated details of user Test Test Test [UserID: 61c3f4a7912c4].', '60bf510d64ba8', 'https://localhost/manalok9/admin/users', '2021-12-23 03:31:00 PM'),
(13, 'updated user details.', 'updated details of user Test Test Test [UserID: 61c3f4a7912c4].', '60bf510d64ba8', 'https://localhost/manalok9/admin/users', '2021-12-23 03:34:26 PM'),
(14, 'updated user details.', 'updated details of user Test Test Test [UserID: 61c3f4a7912c4].', '60bf510d64ba8', 'https://localhost/manalok9/admin/users', '2021-12-23 03:49:02 PM'),
(15, 'updated user details.', 'updated details of user Test Test Test [UserID: 61c3f4a7912c4].', '60bf510d64ba8', 'https://localhost/manalok9/admin/users', '2021-12-23 03:49:46 PM'),
(16, 'updated user details.', 'updated details of user first middle last [UserID: 60bf510d64ba8].', '60bf510d64ba8', 'https://localhost/manalok9/admin/users', '2021-12-23 03:54:50 PM'),
(17, 'created a new user.', 'added a new user Tester Tester Tester [UserID: 61c42b794f0b1].', '60bf510d64ba8', 'https://localhost/manalok9/admin/users', '2021-12-23 03:55:39 PM'),
(18, 'created a new user.', 'added a new user Joker Joker Joker [UserID: 61c42c3d66939].', '60bf510d64ba8', 'https://localhost/manalok9/admin/users', '2021-12-23 03:58:54 PM'),
(19, 'updated user details.', 'updated details of user Joker Joker Joker [UserID: 61c42c3d66939].', '60bf510d64ba8', 'https://localhost/manalok9/admin/users', '2021-12-23 04:04:54 PM'),
(20, 'logged out.', '', '60bf510d64ba8', '', '2021-12-23 04:23:20 PM'),
(21, 'logged in.', '', '60bf510d64ba8', '', '2021-12-23 04:28:03 PM'),
(22, 'logged out.', '', '60bf510d64ba8', '', '2021-12-23 04:28:54 PM'),
(23, 'logged in.', '', '60bf510d64ba8', '', '2021-12-23 04:31:13 PM'),
(24, 'updated user details.', 'updated details of user first middle last [UserID: 60bf510d64ba8].', '60bf510d64ba8', 'https://localhost/manalok9/admin/users', '2021-12-23 04:33:30 PM'),
(25, 'updated user details.', 'updated details of user Testing Testing Testing [UserID: 6117f910ce15a].', '60bf510d64ba8', 'https://localhost/manalok9/admin/users', '2021-12-23 04:40:37 PM'),
(26, 'logged out.', '', '60bf510d64ba8', '', '2021-12-23 04:41:55 PM'),
(27, 'logged in.', '', '60bf510d64ba8', '', '2021-12-23 04:41:58 PM'),
(28, 'logged out.', '', '60bf510d64ba8', '', '2021-12-23 04:43:27 PM'),
(29, 'logged in.', '', '60bf510d64ba8', '', '2021-12-23 04:43:32 PM'),
(30, 'logged out.', '', '60bf510d64ba8', '', '2021-12-23 04:46:58 PM'),
(31, 'logged in.', '', '60bf510d64ba8', '', '2021-12-23 04:47:02 PM'),
(32, 'logged out.', '', '60bf510d64ba8', '', '2021-12-23 04:55:25 PM'),
(33, 'logged in.', '', '60bf510d64ba8', '', '2021-12-23 04:55:30 PM'),
(34, 'logged out.', '', '60bf510d64ba8', '', '2021-12-23 05:01:49 PM'),
(35, 'logged in.', '', '60bf510d64ba8', '', '2021-12-23 05:01:58 PM'),
(36, 'updated user details.', 'updated details of user first middle last [UserID: 60bf510d64ba8].', '60bf510d64ba8', 'https://localhost/manalok9/admin/users', '2021-12-23 05:02:16 PM'),
(37, 'updated user details.', 'updated details of user first middle last [UserID: 60bf510d64ba8].', '60bf510d64ba8', 'https://localhost/manalok9/admin/users', '2021-12-23 05:03:45 PM'),
(38, 'logged out.', '', '60bf510d64ba8', '', '2021-12-23 05:03:54 PM'),
(39, 'logged in.', '', '60bf510d64ba8', '', '2021-12-23 05:03:59 PM'),
(40, 'updated user details.', 'updated details of user first middle last [UserID: 60bf510d64ba8].', '60bf510d64ba8', 'https://localhost/manalok9/admin/users', '2021-12-23 05:04:55 PM'),
(41, 'logged out.', '', '60bf510d64ba8', '', '2021-12-23 05:06:06 PM'),
(42, 'logged in.', '', '60bf510d64ba8', '', '2021-12-23 05:06:10 PM'),
(43, 'updated user details.', 'updated details of user first middle last [UserID: 60bf510d64ba8].', '60bf510d64ba8', 'https://localhost/manalok9/admin/users', '2021-12-23 05:06:36 PM'),
(44, 'updated user details.', 'updated details of user first middle last [UserID: 60bf510d64ba8].', '60bf510d64ba8', 'https://localhost/manalok9/admin/users', '2021-12-23 05:09:46 PM'),
(45, 'logged out.', '', '60bf510d64ba8', '', '2021-12-23 05:09:49 PM'),
(46, 'logged in.', '', '60bf510d64ba8', '', '2021-12-23 05:09:53 PM'),
(47, 'logged out.', '', '60bf510d64ba8', '', '2021-12-23 05:11:19 PM'),
(48, 'logged in.', '', '60bf510d64ba8', '', '2021-12-23 05:11:24 PM'),
(49, 'logged out.', '', '60bf510d64ba8', '', '2021-12-23 05:11:51 PM'),
(50, 'logged in.', '', '60bf510d64ba8', '', '2021-12-23 05:11:54 PM'),
(51, 'updated user details.', 'updated details of user first middle last [UserID: 60bf510d64ba8].', '60bf510d64ba8', 'https://localhost/manalok9/admin/users', '2021-12-23 05:12:09 PM'),
(52, 'logged out.', '', '60bf510d64ba8', '', '2021-12-23 05:12:16 PM'),
(53, 'logged in.', '', '60bf510d64ba8', '', '2021-12-23 05:12:18 PM'),
(54, 'logged out.', '', '60bf510d64ba8', '', '2021-12-23 05:15:52 PM'),
(55, 'logged in.', '', '60bf510d64ba8', '', '2021-12-23 05:15:54 PM'),
(56, 'logged out.', '', '60bf510d64ba8', '', '2021-12-23 05:16:18 PM'),
(57, 'logged in.', '', '60bf510d64ba8', '', '2021-12-23 05:16:20 PM'),
(58, 'logged out.', '', '60bf510d64ba8', '', '2021-12-23 05:16:49 PM'),
(59, 'logged in.', '', '60bf510d64ba8', '', '2021-12-23 05:16:51 PM'),
(60, 'created a new purchase order.', 'added purchase order PO-000005 [PurchaseOrderID: 5].', '60bf510d64ba8', 'https://localhost/manalok9/admin/purchase_orders', '2021-12-23 05:35:01 PM'),
(61, 'created a new sales order.', 'added sales order SO-000004 [SalesOrderID: 4].', '60bf510d64ba8', 'https://localhost/manalok9/admin/sales_orders', '2021-12-23 05:44:15 PM'),
(62, 'logged out.', '', '60bf510d64ba8', '', '2021-12-23 05:56:39 PM'),
(63, 'logged in.', '', '60bf510d64ba8', '', '2021-12-23 05:56:41 PM'),
(64, 'updated user details.', 'updated details of user first middle last [UserID: 60bf510d64ba8].', '60bf510d64ba8', 'https://localhost/manalok9/admin/users', '2021-12-23 05:57:29 PM'),
(65, 'logged out.', '', '60bf510d64ba8', '', '2021-12-23 05:57:50 PM'),
(66, 'logged in.', '', '60bf510d64ba8', '', '2021-12-23 05:57:52 PM'),
(67, 'approved sales order.', 'approved sales order SO-000004 [SalesOrderID: 4].', '60bf510d64ba8', 'https://localhost/manalok9/admin/view_sales_order?orderNo=SO-000004', '2021-12-23 05:58:03 PM'),
(68, 'logged out.', '', '60bf510d64ba8', '', '2021-12-23 05:58:41 PM'),
(69, 'logged in.', '', '60bf510d64ba8', '', '2021-12-23 05:58:43 PM'),
(70, 'logged out.', '', '60bf510d64ba8', '', '2021-12-23 05:59:36 PM'),
(71, 'logged in.', '', '60bf510d64ba8', '', '2021-12-23 05:59:37 PM'),
(72, 'logged out.', '', '60bf510d64ba8', '', '2021-12-23 05:59:55 PM'),
(73, 'logged in.', '', '60bf510d64ba8', '', '2021-12-23 05:59:58 PM'),
(74, 'scheduled delivery.', 'scheduled delivery for sales order [No: SO-000004].', '60bf510d64ba8', 'https://localhost/manalok9/admin/view_sales_order?orderNo=SO-000004', '2021-12-23 06:00:11 PM'),
(75, 'marked SO as delivered.', 'sales order marked as delivered [No: SO-000004].', '60bf510d64ba8', 'https://localhost/manalok9/admin/view_sales_order?orderNo=SO-000004', '2021-12-23 06:00:14 PM'),
(76, 'marked SO as received.', 'sales order marked as received [No: SO-000004].', '60bf510d64ba8', 'https://localhost/manalok9/admin/view_sales_order?orderNo=SO-000004', '2021-12-23 06:00:17 PM'),
(77, 'updated user details.', 'updated details of user first middle last [UserID: 60bf510d64ba8].', '60bf510d64ba8', 'https://localhost/manalok9/admin/users', '2021-12-23 06:11:22 PM'),
(78, 'logged in.', '', '60bf510d64ba8', '', '2021-12-27 06:31:04 PM'),
(79, 'logged in.', '', '60bf510d64ba8', '', '2021-12-27 06:42:22 PM'),
(80, 'logged out.', '', '60bf510d64ba8', '', '2021-12-27 09:48:50 PM'),
(81, 'logged in.', '', '60bf510d64ba8', '', '2021-12-27 09:48:52 PM'),
(82, 'logged in.', '', '60bf510d64ba8', '', '2021-12-27 09:50:05 PM'),
(83, 'created a new registration token.', 'created a new registration token.', '<PASSWORD>', 'https://localhost/manalok9/register?token=<PASSWORD>0aa11a2957596abd767c23e\">', '2021-12-27 10:13:16 PM'),
(84, 'created a new registration token.', 'created a new registration token.', '<PASSWORD>', 'https://localhost/manalok9/register?token=88f6d9b962108bcd24a58916cf40a2ec2570642bf5d9957d\">', '2021-12-27 10:15:48 PM'),
(85, 'created a new registration token.', 'created a new registration token.', '<PASSWORD>', 'https://localhost/manalok9/register?token=<PASSWORD>\">', '2021-12-27 10:15:55 PM'),
(86, 'created a new registration token.', 'created a new registration token.', '<PASSWORD>', 'https://localhost/manalok9/register?token=<PASSWORD>\">', '2021-12-27 10:17:04 PM');
-- --------------------------------------------------------
--
-- Table structure for table `products`
--
CREATE TABLE `products` (
`ID` int(11) NOT NULL,
`U_ID` int(11) DEFAULT NULL,
`Code` varchar(255) DEFAULT NULL,
`Product_Name` varchar(255) DEFAULT NULL,
`Description` text DEFAULT NULL,
`InStock` int(255) DEFAULT 0,
`Released` int(255) DEFAULT 0,
`Product_Category` varchar(255) DEFAULT NULL,
`Product_Weight` varchar(255) DEFAULT NULL,
`Price_PerItem` varchar(255) DEFAULT NULL,
`Cost_PerItem` varchar(255) DEFAULT NULL,
`DateAdded` varchar(255) DEFAULT NULL,
`PriceSelling` varchar(255) DEFAULT '0',
`Barcode_Images` varchar(255) DEFAULT NULL,
`Status` int(11) DEFAULT NULL COMMENT '1 = added\r\n2 = archive\r\n3 = removed'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `products_transactions`
--
CREATE TABLE `products_transactions` (
`ID` int(11) NOT NULL,
`Code` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
`TransactionID` varchar(255) DEFAULT NULL,
`OrderNo` varchar(255) DEFAULT NULL,
`Type` tinyint(1) DEFAULT NULL COMMENT '0 = Restocked; 1 = Released;',
`Amount` int(255) DEFAULT 0,
`PriceUnit` varchar(255) DEFAULT '0',
`InStock` int(255) DEFAULT 0,
`Date` varchar(255) DEFAULT NULL,
`DateAdded` varchar(255) DEFAULT NULL,
`Status` int(11) NOT NULL COMMENT '0 = for approval\r\n1 = approved',
`Date_Approval` varchar(255) DEFAULT NULL,
`UserID` varchar(255) DEFAULT NULL,
`PriceTotal` varchar(255) DEFAULT NULL,
`JournalID` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `product_details`
--
CREATE TABLE `product_details` (
`id` int(11) NOT NULL,
`item_code` varchar(255) DEFAULT NULL,
`first_brand` varchar(255) DEFAULT NULL,
`Second_brand` varchar(255) DEFAULT NULL,
`prd_char` varchar(255) DEFAULT NULL,
`char_type` varchar(255) DEFAULT NULL,
`prd_line` varchar(255) DEFAULT NULL,
`prd_type` varchar(255) DEFAULT NULL,
`prd_variant` varchar(255) DEFAULT NULL,
`prd_size` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `purchase_orders`
--
CREATE TABLE `purchase_orders` (
`ID` int(11) NOT NULL,
`OrderNo` varchar(255) DEFAULT NULL,
`Date` varchar(255) DEFAULT NULL,
`DateCreation` varchar(255) DEFAULT NULL,
`VendorNo` varchar(255) DEFAULT NULL,
`ShipVia` varchar(255) DEFAULT NULL,
`DateDelivery` varchar(255) DEFAULT NULL,
`Status` int(11) DEFAULT NULL COMMENT '0 = rejected; 1 = for approval; 2 = approved'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `purchase_orders`
--
INSERT INTO `purchase_orders` (`ID`, `OrderNo`, `Date`, `DateCreation`, `VendorNo`, `ShipVia`, `DateDelivery`, `Status`) VALUES
(1, 'PO-000001', '2021-12-16', '2021-12-16 03:54:59 PM', 'V-000003', 'test', NULL, 1),
(2, 'PO-000002', '2021-12-16', '2021-12-16 04:53:50 PM', 'V-000001', 'test', NULL, 2),
(3, 'PO-000003', '2021-12-16', '2021-12-16 04:54:06 PM', 'V-000003', 'test', NULL, 2),
(4, 'PO-000004', '2021-12-21', '2021-12-21 10:01:15 AM', 'V-000004', 'test', NULL, 2),
(5, 'PO-000005', '2021-12-23', '2021-12-23 05:35:01 PM', 'V-000002', 'test', NULL, 1);
-- --------------------------------------------------------
--
-- Table structure for table `sales_orders`
--
CREATE TABLE `sales_orders` (
`ID` int(11) NOT NULL,
`OrderNo` varchar(255) DEFAULT NULL,
`Date` varchar(255) DEFAULT NULL,
`DateCreation` varchar(255) DEFAULT NULL,
`BillToClientNo` varchar(255) DEFAULT NULL,
`ShipToClientNo` varchar(255) DEFAULT NULL,
`DateDelivery` varchar(255) DEFAULT NULL,
`Discount` varchar(255) DEFAULT NULL COMMENT '%',
`Status` int(11) DEFAULT NULL COMMENT '0 = rejected; 1 = for approval; 2 = approved'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `sales_orders`
--
INSERT INTO `sales_orders` (`ID`, `OrderNo`, `Date`, `DateCreation`, `BillToClientNo`, `ShipToClientNo`, `DateDelivery`, `Discount`, `Status`) VALUES
(1, 'SO-000001', '2021-12-16', '2021-12-16 04:40:41 PM', 'C-000009', 'C-000009', '2021-12-25', '25', 5),
(2, 'SO-000002', '2021-12-21', '2021-12-21 12:26:58 PM', 'C-000006', 'C-000006', NULL, '0', 2),
(3, 'SO-000003', '2021-12-23', '2021-12-23 11:20:40 AM', 'C-000008', 'C-000008', '2021-12-23', '35', 4),
(4, 'SO-000004', '2021-12-23', '2021-12-23 05:44:15 PM', 'C-000009', 'C-000009', '2021-12-23', '0', 5);
-- --------------------------------------------------------
--
-- Table structure for table `security_log`
--
CREATE TABLE `security_log` (
`ID` int(11) NOT NULL,
`UserID` varchar(255) DEFAULT NULL,
`Agent` varchar(255) DEFAULT NULL,
`Platform` varchar(255) DEFAULT NULL,
`IPAddress` varchar(50) DEFAULT NULL,
`Country` varchar(255) DEFAULT NULL,
`PageURL` varchar(255) DEFAULT NULL,
`DateAdded` varchar(50) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `security_log`
--
INSERT INTO `security_log` (`ID`, `UserID`, `Agent`, `Platform`, `IPAddress`, `Country`, `PageURL`, `DateAdded`) VALUES
(0, NULL, 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-27 06:41:33 PM'),
(1, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 10:10:10 AM'),
(2, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 10:10:28 AM'),
(3, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:12:02 AM'),
(4, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:16:26 AM'),
(5, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:16:40 AM'),
(6, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:17:16 AM'),
(7, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:19:12 AM'),
(8, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:22:51 AM'),
(9, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:23:22 AM'),
(10, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:23:50 AM'),
(11, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:24:12 AM'),
(12, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:25:38 AM'),
(13, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:25:50 AM'),
(14, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:26:16 AM'),
(15, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:26:44 AM'),
(16, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:27:14 AM'),
(17, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:27:54 AM'),
(18, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:32:01 AM'),
(19, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:34:16 AM'),
(20, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:34:45 AM'),
(21, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:35:08 AM'),
(22, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:35:20 AM'),
(23, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:36:00 AM'),
(24, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-23 10:36:15 AM'),
(25, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/viewproduct', '2021-12-23 10:36:19 AM'),
(26, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-23 10:36:22 AM'),
(27, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/viewproduct', '2021-12-23 10:36:32 AM'),
(28, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-23 10:36:33 AM'),
(29, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:36:35 AM'),
(30, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:37:12 AM'),
(31, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:37:23 AM'),
(32, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:37:48 AM'),
(33, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:39:18 AM'),
(34, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:46:05 AM'),
(35, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:46:30 AM'),
(36, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:46:52 AM'),
(37, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:47:01 AM'),
(38, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:47:13 AM'),
(39, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:47:24 AM'),
(40, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:47:47 AM'),
(41, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:47:55 AM'),
(42, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:48:12 AM'),
(43, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:49:11 AM'),
(44, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:50:38 AM'),
(45, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:50:58 AM'),
(46, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:51:35 AM'),
(47, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:51:57 AM'),
(48, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:52:09 AM'),
(49, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:52:33 AM'),
(50, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/purchase_orders', '2021-12-23 10:55:06 AM'),
(51, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/view_purchase_order', '2021-12-23 10:55:16 AM'),
(52, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/purchase_orders', '2021-12-23 10:55:29 AM'),
(53, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/view_purchase_order', '2021-12-23 10:55:33 AM'),
(54, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_approvePurchaseOrder', '2021-12-23 10:56:48 AM'),
(55, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/view_purchase_order', '2021-12-23 10:56:48 AM'),
(56, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/vendors', '2021-12-23 10:57:12 AM'),
(57, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/getVendorDetails', '2021-12-23 10:57:13 AM'),
(58, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/view_purchase_order', '2021-12-23 10:57:14 AM'),
(59, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:57:26 AM'),
(60, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:57:48 AM'),
(61, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:57:52 AM'),
(62, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:58:16 AM'),
(63, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:58:23 AM'),
(64, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:58:56 AM'),
(65, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 10:59:46 AM'),
(66, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 11:00:30 AM'),
(67, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 11:01:05 AM'),
(68, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/product_releasing', '2021-12-23 11:01:51 AM'),
(69, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-23 11:02:04 AM'),
(70, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/product_releasing', '2021-12-23 11:02:08 AM'),
(71, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-23 11:02:11 AM'),
(72, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/product_releasing', '2021-12-23 11:02:15 AM'),
(73, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/product_releasing', '2021-12-23 11:02:23 AM'),
(74, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/release_fromcart', '2021-12-23 11:02:26 AM'),
(75, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/product_releasing', '2021-12-23 11:02:26 AM'),
(76, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/remove_thisicode', '2021-12-23 11:02:42 AM'),
(77, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/settings_itemcodepage', '2021-12-23 11:02:42 AM'),
(78, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/product_releasing', '2021-12-23 11:02:48 AM'),
(79, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/purchase_orders', '2021-12-23 11:03:42 AM'),
(80, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/view_purchase_order', '2021-12-23 11:03:44 AM'),
(81, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/view_purchase_order', '2021-12-23 11:04:36 AM'),
(82, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/purchase_orders', '2021-12-23 11:04:50 AM'),
(83, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/view_purchase_order', '2021-12-23 11:04:53 AM'),
(84, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/purchase_orders', '2021-12-23 11:04:55 AM'),
(85, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 11:05:30 AM'),
(86, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 11:06:04 AM'),
(87, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 11:06:21 AM'),
(88, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 11:07:16 AM'),
(89, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/view_settings_bcat', '2021-12-23 11:08:42 AM'),
(90, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/accounts', '2021-12-23 11:11:07 AM'),
(91, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/accounts', '2021-12-23 11:12:02 AM'),
(92, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/journals', '2021-12-23 11:12:28 AM'),
(93, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/journals', '2021-12-23 11:13:58 AM'),
(94, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/accounts', '2021-12-23 11:15:01 AM'),
(95, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/accounts', '2021-12-23 11:15:49 AM'),
(96, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 11:15:50 AM'),
(97, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/journals', '2021-12-23 11:17:52 AM'),
(98, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/getJournalDetails', '2021-12-23 11:17:56 AM'),
(99, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/getJournalTransactions', '2021-12-23 11:17:57 AM'),
(100, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/sales_orders', '2021-12-23 11:20:10 AM'),
(101, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_addSalesOrder', '2021-12-23 11:20:40 AM'),
(102, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/sales_orders', '2021-12-23 11:20:40 AM'),
(103, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/view_sales_order', '2021-12-23 11:20:44 AM'),
(104, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_approveSalesOrder', '2021-12-23 11:21:35 AM'),
(105, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/view_sales_order', '2021-12-23 11:21:35 AM'),
(106, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_scheduleDelivery', '2021-12-23 11:22:33 AM'),
(107, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/view_sales_order', '2021-12-23 11:22:33 AM'),
(108, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_markDelivered', '2021-12-23 11:24:35 AM'),
(109, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/view_sales_order', '2021-12-23 11:24:35 AM'),
(110, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 11:25:06 AM'),
(111, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 11:34:38 AM'),
(112, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 11:35:20 AM'),
(113, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 11:37:29 AM'),
(114, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 11:38:45 AM'),
(115, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 11:38:57 AM'),
(116, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 11:39:53 AM'),
(117, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 11:41:20 AM'),
(118, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 11:43:11 AM'),
(119, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 11:43:57 AM'),
(120, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 12:00:28 PM'),
(121, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_addNewUser', '2021-12-23 12:01:43 PM'),
(122, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 12:01:46 PM'),
(123, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 12:04:25 PM'),
(124, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 12:06:53 PM'),
(125, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 12:07:06 PM'),
(126, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 12:10:38 PM'),
(127, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 01:50:58 PM'),
(128, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 01:52:41 PM'),
(129, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 01:54:00 PM'),
(130, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 01:55:06 PM'),
(131, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:01:23 PM'),
(132, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:03:56 PM'),
(133, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:06:49 PM'),
(134, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:07:37 PM'),
(135, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:08:36 PM'),
(136, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:09:16 PM'),
(137, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:15:04 PM'),
(138, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:18:19 PM'),
(139, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:18:48 PM'),
(140, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:19:11 PM'),
(141, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:21:11 PM'),
(142, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:21:58 PM'),
(143, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:23:11 PM'),
(144, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:23:22 PM'),
(145, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:23:54 PM'),
(146, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:25:47 PM'),
(147, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:26:11 PM'),
(148, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:26:41 PM'),
(149, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:29:22 PM'),
(150, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:38:22 PM'),
(151, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:39:00 PM'),
(152, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:39:38 PM'),
(153, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:40:43 PM'),
(154, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:41:26 PM'),
(155, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:41:35 PM'),
(156, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:41:57 PM'),
(157, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:42:26 PM'),
(158, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:44:49 PM'),
(159, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:45:28 PM'),
(160, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:49:16 PM'),
(161, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:50:00 PM'),
(162, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:50:28 PM'),
(163, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:50:42 PM'),
(164, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:52:55 PM'),
(165, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:57:15 PM'),
(166, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 02:58:55 PM'),
(167, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:00:21 PM'),
(168, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:00:58 PM'),
(169, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:02:24 PM'),
(170, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:03:28 PM'),
(171, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:04:10 PM'),
(172, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:04:39 PM'),
(173, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:05:29 PM'),
(174, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:06:26 PM'),
(175, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:06:50 PM'),
(176, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:07:23 PM'),
(177, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:08:15 PM'),
(178, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:09:22 PM'),
(179, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:09:32 PM'),
(180, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:09:47 PM'),
(181, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:09:54 PM'),
(182, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:19:41 PM'),
(183, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:20:00 PM'),
(184, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:23:44 PM'),
(185, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_updateUser', '2021-12-23 03:24:04 PM'),
(186, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:24:05 PM'),
(187, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:25:16 PM'),
(188, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_updateUser', '2021-12-23 03:25:27 PM'),
(189, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:25:28 PM'),
(190, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:26:10 PM'),
(191, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:27:48 PM'),
(192, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_updateUser', '2021-12-23 03:27:57 PM'),
(193, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:27:57 PM'),
(194, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:29:05 PM'),
(195, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_updateUser', '2021-12-23 03:29:11 PM'),
(196, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:29:11 PM'),
(197, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_updateUser', '2021-12-23 03:30:59 PM'),
(198, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:31:00 PM'),
(199, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:34:06 PM'),
(200, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_updateUser', '2021-12-23 03:34:25 PM'),
(201, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:34:26 PM'),
(202, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:36:30 PM'),
(203, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:37:00 PM'),
(204, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:41:15 PM'),
(205, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/vendors', '2021-12-23 03:44:07 PM'),
(206, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:44:16 PM'),
(207, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:48:49 PM'),
(208, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_updateUser', '2021-12-23 03:49:01 PM'),
(209, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:49:02 PM'),
(210, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:49:28 PM'),
(211, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_updateUser', '2021-12-23 03:49:44 PM'),
(212, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:49:47 PM'),
(213, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:54:09 PM'),
(214, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_updateUser', '2021-12-23 03:54:48 PM'),
(215, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:54:50 PM'),
(216, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_addNewUser', '2021-12-23 03:55:37 PM'),
(217, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:55:39 PM'),
(218, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:58:14 PM'),
(219, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_addNewUser', '2021-12-23 03:58:53 PM'),
(220, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 03:58:55 PM'),
(221, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 04:01:28 PM'),
(222, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 04:01:31 PM'),
(223, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 04:04:42 PM'),
(224, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_updateUser', '2021-12-23 04:04:52 PM'),
(225, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 04:04:54 PM'),
(226, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 04:16:22 PM'),
(227, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-23 04:21:17 PM'),
(228, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 04:22:20 PM'),
(229, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 04:22:33 PM'),
(230, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/vendors', '2021-12-23 04:23:11 PM'),
(231, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/getVendorDetails', '2021-12-23 04:23:13 PM'),
(232, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/logout', '2021-12-23 04:23:20 PM'),
(233, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/login', '2021-12-23 04:23:21 PM'),
(234, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 04:23:21 PM'),
(235, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-23 04:23:24 PM'),
(236, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 04:23:25 PM'),
(237, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-23 04:23:30 PM'),
(238, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 04:23:30 PM'),
(239, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/accounting_test', '2021-12-23 04:23:59 PM'),
(240, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 04:23:59 PM'),
(241, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 04:24:02 PM'),
(242, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 04:24:03 PM'),
(243, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-23 04:24:08 PM'),
(244, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 04:24:08 PM'),
(245, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-23 04:24:20 PM'),
(246, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 04:24:20 PM'),
(247, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-23 04:25:03 PM'),
(248, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 04:25:03 PM'),
(249, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-23 04:25:27 PM'),
(250, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 04:25:27 PM'),
(251, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 04:26:47 PM'),
(252, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-23 04:26:52 PM'),
(253, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 04:26:52 PM'),
(254, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 04:27:19 PM'),
(255, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-23 04:28:03 PM'),
(256, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 04:28:04 PM'),
(257, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 04:28:46 PM'),
(258, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 04:28:51 PM'),
(259, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 04:28:51 PM'),
(260, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/logout', '2021-12-23 04:28:54 PM'),
(261, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/login', '2021-12-23 04:28:54 PM'),
(262, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 04:28:54 PM'),
(263, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-23 04:28:58 PM'),
(264, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 04:28:58 PM'),
(265, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-23 04:29:03 PM'),
(266, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 04:29:03 PM'),
(267, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 04:31:10 PM'),
(268, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-23 04:31:13 PM'),
(269, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 04:31:14 PM'),
(270, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 04:31:38 PM'),
(271, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 04:31:50 PM'),
(272, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 04:33:09 PM'),
(273, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 04:33:17 PM'),
(274, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_updateUser', '2021-12-23 04:33:28 PM'),
(275, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 04:33:30 PM'),
(276, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 04:39:48 PM'),
(277, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_updateUser', '2021-12-23 04:40:35 PM'),
(278, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 04:40:37 PM'),
(279, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 04:41:34 PM'),
(280, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/logout', '2021-12-23 04:41:55 PM'),
(281, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/login', '2021-12-23 04:41:55 PM'),
(282, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 04:41:55 PM'),
(283, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-23 04:41:58 PM'),
(284, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 04:41:58 PM'),
(285, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 04:42:46 PM'),
(286, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 04:43:08 PM'),
(287, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/logout', '2021-12-23 04:43:27 PM'),
(288, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/login', '2021-12-23 04:43:27 PM'),
(289, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 04:43:28 PM'),
(290, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-23 04:43:31 PM'),
(291, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 04:43:32 PM'),
(292, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 04:43:41 PM'),
(293, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 04:44:42 PM'),
(294, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/logout', '2021-12-23 04:46:58 PM'),
(295, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/login', '2021-12-23 04:46:58 PM'),
(296, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 04:46:58 PM'),
(297, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-23 04:47:01 PM'),
(298, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 04:47:02 PM'),
(299, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 04:55:20 PM'),
(300, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/logout', '2021-12-23 04:55:25 PM'),
(301, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/login', '2021-12-23 04:55:25 PM'),
(302, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 04:55:25 PM'),
(303, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-23 04:55:30 PM'),
(304, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 04:55:30 PM'),
(305, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 04:55:47 PM'),
(306, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 04:58:43 PM'),
(307, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 04:58:54 PM'),
(308, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 04:59:49 PM'),
(309, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/profile', '2021-12-23 05:01:44 PM'),
(310, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/logout', '2021-12-23 05:01:49 PM'),
(311, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/login', '2021-12-23 05:01:49 PM'),
(312, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 05:01:49 PM'),
(313, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-23 05:01:58 PM'),
(314, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 05:01:58 PM'),
(315, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 05:02:04 PM'),
(316, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_updateUser', '2021-12-23 05:02:15 PM'),
(317, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 05:02:16 PM'),
(318, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 05:03:38 PM'),
(319, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_updateUser', '2021-12-23 05:03:43 PM'),
(320, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 05:03:46 PM'),
(321, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/profile', '2021-12-23 05:03:49 PM'),
(322, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/logout', '2021-12-23 05:03:54 PM'),
(323, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/login', '2021-12-23 05:03:54 PM'),
(324, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 05:03:54 PM'),
(325, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-23 05:03:59 PM'),
(326, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 05:03:59 PM'),
(327, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 05:04:32 PM'),
(328, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_updateUser', '2021-12-23 05:04:54 PM'),
(329, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 05:04:56 PM'),
(330, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/logout', '2021-12-23 05:06:06 PM'),
(331, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/login', '2021-12-23 05:06:06 PM'),
(332, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 05:06:06 PM'),
(333, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-23 05:06:10 PM'),
(334, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 05:06:10 PM'),
(335, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 05:06:18 PM'),
(336, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_updateUser', '2021-12-23 05:06:35 PM'),
(337, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 05:06:37 PM'),
(338, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-23 05:06:44 PM'),
(339, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 05:08:09 PM'),
(340, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 05:08:20 PM'),
(341, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 05:09:05 PM'),
(342, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 05:09:33 PM'),
(343, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_updateUser', '2021-12-23 05:09:46 PM'),
(344, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 05:09:46 PM');
INSERT INTO `security_log` (`ID`, `UserID`, `Agent`, `Platform`, `IPAddress`, `Country`, `PageURL`, `DateAdded`) VALUES
(345, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/logout', '2021-12-23 05:09:49 PM'),
(346, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/login', '2021-12-23 05:09:49 PM'),
(347, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 05:09:49 PM'),
(348, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-23 05:09:52 PM'),
(349, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 05:09:53 PM'),
(350, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 05:09:55 PM'),
(351, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 05:11:13 PM'),
(352, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/logout', '2021-12-23 05:11:19 PM'),
(353, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/login', '2021-12-23 05:11:19 PM'),
(354, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 05:11:19 PM'),
(355, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-23 05:11:24 PM'),
(356, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 05:11:24 PM'),
(357, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/logout', '2021-12-23 05:11:51 PM'),
(358, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/login', '2021-12-23 05:11:52 PM'),
(359, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 05:11:52 PM'),
(360, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-23 05:11:53 PM'),
(361, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 05:11:54 PM'),
(362, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 05:11:56 PM'),
(363, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_updateUser', '2021-12-23 05:12:08 PM'),
(364, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 05:12:09 PM'),
(365, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/logout', '2021-12-23 05:12:16 PM'),
(366, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/login', '2021-12-23 05:12:16 PM'),
(367, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 05:12:16 PM'),
(368, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-23 05:12:17 PM'),
(369, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 05:12:18 PM'),
(370, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 05:12:21 PM'),
(371, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/vendors', '2021-12-23 05:12:44 PM'),
(372, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/vendors', '2021-12-23 05:13:13 PM'),
(373, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/getVendorDetails', '2021-12-23 05:13:22 PM'),
(374, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/vendors', '2021-12-23 05:14:38 PM'),
(375, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/getVendorDetails', '2021-12-23 05:14:42 PM'),
(376, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/vendors', '2021-12-23 05:15:31 PM'),
(377, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 05:15:34 PM'),
(378, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/logout', '2021-12-23 05:15:52 PM'),
(379, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/login', '2021-12-23 05:15:52 PM'),
(380, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 05:15:52 PM'),
(381, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-23 05:15:53 PM'),
(382, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 05:15:54 PM'),
(383, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 05:15:58 PM'),
(384, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/logout', '2021-12-23 05:16:18 PM'),
(385, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/login', '2021-12-23 05:16:18 PM'),
(386, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 05:16:18 PM'),
(387, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-23 05:16:20 PM'),
(388, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 05:16:20 PM'),
(389, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 05:16:23 PM'),
(390, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/vendors', '2021-12-23 05:16:30 PM'),
(391, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/vendors', '2021-12-23 05:16:46 PM'),
(392, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/logout', '2021-12-23 05:16:49 PM'),
(393, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/login', '2021-12-23 05:16:49 PM'),
(394, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 05:16:49 PM'),
(395, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-23 05:16:51 PM'),
(396, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 05:16:51 PM'),
(397, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/vendors', '2021-12-23 05:16:55 PM'),
(398, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/getVendorDetails', '2021-12-23 05:16:57 PM'),
(399, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/purchase_orders', '2021-12-23 05:17:15 PM'),
(400, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 05:17:50 PM'),
(401, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/vendors', '2021-12-23 05:20:54 PM'),
(402, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 05:26:16 PM'),
(403, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/clients', '2021-12-23 05:26:24 PM'),
(404, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/invoices', '2021-12-23 05:28:17 PM'),
(405, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/purchase_orders', '2021-12-23 05:29:58 PM'),
(406, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/view_purchase_order', '2021-12-23 05:32:38 PM'),
(407, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/purchase_orders', '2021-12-23 05:33:13 PM'),
(408, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/view_purchase_order', '2021-12-23 05:33:15 PM'),
(409, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/purchase_orders', '2021-12-23 05:34:42 PM'),
(410, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/view_purchase_order', '2021-12-23 05:34:44 PM'),
(411, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/purchase_orders', '2021-12-23 05:34:47 PM'),
(412, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_addPurchaseOrder', '2021-12-23 05:35:01 PM'),
(413, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/purchase_orders', '2021-12-23 05:35:01 PM'),
(414, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/view_purchase_order', '2021-12-23 05:35:06 PM'),
(415, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/sales_orders', '2021-12-23 05:41:59 PM'),
(416, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/view_sales_order', '2021-12-23 05:42:29 PM'),
(417, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/sales_orders', '2021-12-23 05:43:50 PM'),
(418, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_addSalesOrder', '2021-12-23 05:44:14 PM'),
(419, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/sales_orders', '2021-12-23 05:44:15 PM'),
(420, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/view_sales_order', '2021-12-23 05:44:17 PM'),
(421, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 05:55:36 PM'),
(422, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 05:56:31 PM'),
(423, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/logout', '2021-12-23 05:56:38 PM'),
(424, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/login', '2021-12-23 05:56:39 PM'),
(425, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 05:56:39 PM'),
(426, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-23 05:56:40 PM'),
(427, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 05:56:41 PM'),
(428, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 05:56:43 PM'),
(429, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 05:57:08 PM'),
(430, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_updateUser', '2021-12-23 05:57:26 PM'),
(431, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 05:57:29 PM'),
(432, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/logout', '2021-12-23 05:57:50 PM'),
(433, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/login', '2021-12-23 05:57:50 PM'),
(434, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 05:57:50 PM'),
(435, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-23 05:57:51 PM'),
(436, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 05:57:52 PM'),
(437, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/sales_orders', '2021-12-23 05:57:55 PM'),
(438, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/view_sales_order', '2021-12-23 05:57:57 PM'),
(439, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_approveSalesOrder', '2021-12-23 05:58:03 PM'),
(440, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/view_sales_order', '2021-12-23 05:58:04 PM'),
(441, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/view_sales_order', '2021-12-23 05:58:37 PM'),
(442, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/logout', '2021-12-23 05:58:41 PM'),
(443, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/login', '2021-12-23 05:58:41 PM'),
(444, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 05:58:42 PM'),
(445, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-23 05:58:43 PM'),
(446, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 05:58:43 PM'),
(447, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/sales_orders', '2021-12-23 05:58:46 PM'),
(448, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/view_sales_order', '2021-12-23 05:58:48 PM'),
(449, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/logout', '2021-12-23 05:59:36 PM'),
(450, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/login', '2021-12-23 05:59:36 PM'),
(451, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 05:59:36 PM'),
(452, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-23 05:59:37 PM'),
(453, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 05:59:37 PM'),
(454, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/sales_orders', '2021-12-23 05:59:40 PM'),
(455, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/view_sales_order', '2021-12-23 05:59:42 PM'),
(456, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/logout', '2021-12-23 05:59:55 PM'),
(457, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/login', '2021-12-23 05:59:56 PM'),
(458, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-23 05:59:56 PM'),
(459, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-23 05:59:57 PM'),
(460, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-23 05:59:58 PM'),
(461, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/sales_orders', '2021-12-23 06:00:00 PM'),
(462, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/view_sales_order', '2021-12-23 06:00:08 PM'),
(463, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_scheduleDelivery', '2021-12-23 06:00:11 PM'),
(464, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/view_sales_order', '2021-12-23 06:00:11 PM'),
(465, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_markDelivered', '2021-12-23 06:00:14 PM'),
(466, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/view_sales_order', '2021-12-23 06:00:14 PM'),
(467, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_markReceived', '2021-12-23 06:00:17 PM'),
(468, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/view_sales_order', '2021-12-23 06:00:17 PM'),
(469, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/sales_orders', '2021-12-23 06:00:20 PM'),
(470, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/sales_orders', '2021-12-23 06:00:40 PM'),
(471, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/purchase_orders', '2021-12-23 06:00:47 PM'),
(472, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/invoices', '2021-12-23 06:00:56 PM'),
(473, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/view_sales_order', '2021-12-23 06:01:03 PM'),
(474, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/invoices', '2021-12-23 06:01:05 PM'),
(475, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/accounts', '2021-12-23 06:01:12 PM'),
(476, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/journals', '2021-12-23 06:02:57 PM'),
(477, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/getJournalTransactions', '2021-12-23 06:08:04 PM'),
(478, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/getJournalDetails', '2021-12-23 06:08:04 PM'),
(479, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/trash_bin', '2021-12-23 06:09:11 PM'),
(480, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/user', '2021-12-23 06:09:16 PM'),
(481, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/view_settings_bcat', '2021-12-23 06:09:27 PM'),
(482, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/journals', '2021-12-23 06:09:29 PM'),
(483, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/accounts', '2021-12-23 06:09:50 PM'),
(484, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/invoices', '2021-12-23 06:09:54 PM'),
(485, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/view_sales_order', '2021-12-23 06:09:58 PM'),
(486, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/sales_orders', '2021-12-23 06:10:00 PM'),
(487, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/clients', '2021-12-23 06:10:02 PM'),
(488, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/bills', '2021-12-23 06:10:03 PM'),
(489, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/clients', '2021-12-23 06:10:05 PM'),
(490, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/getClientDetails', '2021-12-23 06:10:06 PM'),
(491, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/getClientDetails', '2021-12-23 06:10:08 PM'),
(492, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/bills', '2021-12-23 06:10:11 PM'),
(493, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/purchase_orders', '2021-12-23 06:10:13 PM'),
(494, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/vendors', '2021-12-23 06:10:16 PM'),
(495, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 06:10:40 PM'),
(496, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_updateUser', '2021-12-23 06:11:20 PM'),
(497, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-23 06:11:23 PM'),
(498, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-27 06:30:59 PM'),
(499, NULL, 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-27 06:31:02 PM'),
(500, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-27 06:31:04 PM'),
(501, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-27 06:33:14 PM'),
(502, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-27 06:36:01 PM'),
(503, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-27 06:36:03 PM'),
(504, NULL, 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-27 06:42:20 PM'),
(505, NULL, 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-27 06:42:20 PM'),
(506, NULL, 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-27 06:42:22 PM'),
(507, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-27 06:42:22 PM'),
(508, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/view_settings_bcat', '2021-12-27 06:42:25 PM'),
(509, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/Add_BrandCategory', '2021-12-27 06:42:33 PM'),
(510, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/view_settings_bcat', '2021-12-27 06:42:33 PM'),
(511, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-27 06:42:36 PM'),
(512, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-27 06:42:38 PM'),
(513, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-27 06:42:42 PM'),
(514, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/profile', '2021-12-27 06:42:48 PM'),
(515, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/user', '2021-12-27 06:42:52 PM'),
(516, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-27 06:42:59 PM'),
(517, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/view_settings_bcat', '2021-12-27 06:43:16 PM'),
(518, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-27 06:43:25 PM'),
(519, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/product_releasing', '2021-12-27 06:43:26 PM'),
(520, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/product_restocking', '2021-12-27 06:43:27 PM'),
(521, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-27 06:43:28 PM'),
(522, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/inventory', '2021-12-27 06:43:30 PM'),
(523, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-27 06:43:31 PM'),
(524, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/Add_newProductV2', '2021-12-27 06:43:38 PM'),
(525, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-27 06:43:38 PM'),
(526, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/product_releasing', '2021-12-27 06:43:41 PM'),
(527, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-27 06:43:42 PM'),
(528, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/move_to_archive', '2021-12-27 06:43:47 PM'),
(529, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-27 06:43:47 PM'),
(530, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/move_to_archive', '2021-12-27 06:43:49 PM'),
(531, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-27 06:43:49 PM'),
(532, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/trash_bin', '2021-12-27 06:43:51 PM'),
(533, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/delete_prd', '2021-12-27 06:43:54 PM'),
(534, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/trash_bin', '2021-12-27 06:43:54 PM'),
(535, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/delete_prd', '2021-12-27 06:43:56 PM'),
(536, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/trash_bin', '2021-12-27 06:43:57 PM'),
(537, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/product_releasing', '2021-12-27 06:43:58 PM'),
(538, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-27 06:44:00 PM'),
(539, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/product_releasing', '2021-12-27 06:44:01 PM'),
(540, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/product_restocking', '2021-12-27 06:44:01 PM'),
(541, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/inventory', '2021-12-27 06:44:02 PM'),
(542, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 06:44:03 PM'),
(543, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/journals', '2021-12-27 06:44:35 PM'),
(544, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/getJournalDetails', '2021-12-27 06:44:37 PM'),
(545, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/getJournalTransactions', '2021-12-27 06:44:37 PM'),
(546, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/getJournalTransactions', '2021-12-27 06:44:40 PM'),
(547, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/getJournalDetails', '2021-12-27 06:44:40 PM'),
(548, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/getJournalDetails', '2021-12-27 06:44:41 PM'),
(549, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/getJournalTransactions', '2021-12-27 06:44:41 PM'),
(550, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/getJournalDetails', '2021-12-27 06:44:42 PM'),
(551, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/getJournalTransactions', '2021-12-27 06:44:43 PM'),
(552, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/view_settings_bcat', '2021-12-27 06:44:45 PM'),
(553, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/view_settings_bcat', '2021-12-27 07:01:13 PM'),
(554, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-27 07:01:14 PM'),
(555, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 07:03:59 PM'),
(556, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 07:06:49 PM'),
(557, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 07:06:51 PM'),
(558, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 07:08:37 PM'),
(559, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 07:21:54 PM'),
(560, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 07:35:06 PM'),
(561, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 07:36:40 PM'),
(562, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 07:37:14 PM'),
(563, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 07:37:15 PM'),
(564, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 07:47:09 PM'),
(565, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 07:49:32 PM'),
(566, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 07:51:56 PM'),
(567, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 07:52:33 PM'),
(568, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 07:52:48 PM'),
(569, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 07:54:50 PM'),
(570, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 07:55:05 PM'),
(571, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 07:59:22 PM'),
(572, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 08:00:28 PM'),
(573, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 08:02:44 PM'),
(574, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 08:02:52 PM'),
(575, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 08:07:18 PM'),
(576, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 08:08:11 PM'),
(577, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 08:10:35 PM'),
(578, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 08:15:46 PM'),
(579, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 08:22:53 PM'),
(580, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 08:25:32 PM'),
(581, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 08:29:18 PM'),
(582, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 08:30:44 PM'),
(583, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 08:31:27 PM'),
(584, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 08:34:10 PM'),
(585, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 08:34:40 PM'),
(586, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 08:35:26 PM'),
(587, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 08:41:56 PM'),
(588, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 08:41:57 PM'),
(589, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 08:43:09 PM'),
(590, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 08:47:15 PM'),
(591, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 08:49:30 PM'),
(592, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 08:50:44 PM'),
(593, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 08:51:02 PM'),
(594, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 08:53:16 PM'),
(595, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 08:58:36 PM'),
(596, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 08:58:56 PM'),
(597, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:06:18 PM'),
(598, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:09:38 PM'),
(599, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:09:56 PM'),
(600, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:10:41 PM'),
(601, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:11:07 PM'),
(602, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:11:35 PM'),
(603, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:14:19 PM'),
(604, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:14:57 PM'),
(605, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:17:17 PM'),
(606, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:17:52 PM'),
(607, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:18:27 PM'),
(608, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:19:46 PM'),
(609, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:20:33 PM'),
(610, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:21:56 PM'),
(611, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:23:17 PM'),
(612, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:23:44 PM'),
(613, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:25:31 PM'),
(614, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:33:03 PM'),
(615, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:34:36 PM'),
(616, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:35:29 PM'),
(617, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:38:27 PM'),
(618, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:40:14 PM'),
(619, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:40:31 PM'),
(620, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:42:17 PM'),
(621, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:42:47 PM'),
(622, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:43:12 PM'),
(623, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:44:15 PM'),
(624, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:44:15 PM'),
(625, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:44:15 PM'),
(626, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:44:15 PM'),
(627, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:44:15 PM'),
(628, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:44:15 PM'),
(629, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:44:16 PM'),
(630, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:44:16 PM'),
(631, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:44:16 PM'),
(632, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:44:16 PM'),
(633, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:44:16 PM'),
(634, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:44:16 PM'),
(635, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:44:17 PM'),
(636, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:44:17 PM'),
(637, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:44:17 PM'),
(638, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:44:17 PM'),
(639, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:44:17 PM'),
(640, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:44:17 PM'),
(641, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:44:43 PM'),
(642, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:45:01 PM'),
(643, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:45:57 PM'),
(644, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:46:18 PM'),
(645, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:47:08 PM'),
(646, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:47:38 PM'),
(647, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:48:30 PM'),
(648, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:48:38 PM'),
(649, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:48:39 PM'),
(650, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:48:39 PM'),
(651, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:48:39 PM'),
(652, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:48:39 PM'),
(653, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:48:39 PM'),
(654, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:48:39 PM'),
(655, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-27 09:48:44 PM'),
(656, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/profile', '2021-12-27 09:48:47 PM'),
(657, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/logout', '2021-12-27 09:48:50 PM'),
(658, NULL, 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/login', '2021-12-27 09:48:50 PM'),
(659, NULL, 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-27 09:48:50 PM'),
(660, NULL, 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-27 09:48:52 PM'),
(661, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-27 09:48:52 PM'),
(662, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:48:57 PM'),
(663, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:49:56 PM'),
(664, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:49:57 PM'),
(665, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:49:57 PM'),
(666, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:49:58 PM'),
(667, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:49:58 PM'),
(668, NULL, 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-27 09:50:03 PM'),
(669, NULL, 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/', '2021-12-27 09:50:03 PM'),
(670, NULL, 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/FORM_loginValidation', '2021-12-27 09:50:05 PM'),
(671, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-27 09:50:05 PM'),
(672, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:50:07 PM'),
(673, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:50:31 PM'),
(674, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:53:56 PM'),
(675, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 09:58:29 PM'),
(676, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-27 10:04:21 PM'),
(677, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-27 10:04:32 PM'),
(678, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/trash_bin', '2021-12-27 10:04:44 PM'),
(679, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/view_settings_bcat', '2021-12-27 10:04:47 PM'),
(680, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/view_settings_bcat', '2021-12-27 10:04:56 PM');
INSERT INTO `security_log` (`ID`, `UserID`, `Agent`, `Platform`, `IPAddress`, `Country`, `PageURL`, `DateAdded`) VALUES
(681, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/view_settings_bcat', '2021-12-27 10:05:53 PM'),
(682, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/view_settings_bcat', '2021-12-27 10:06:55 PM'),
(683, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin', '2021-12-27 10:06:57 PM'),
(684, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/product_releasing', '2021-12-27 10:06:59 PM'),
(685, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/product_releasing', '2021-12-27 10:07:45 PM'),
(686, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-27 10:07:51 PM'),
(687, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-27 10:08:02 PM'),
(688, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/trash_bin', '2021-12-27 10:09:22 PM'),
(689, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/view_settings_bcat', '2021-12-27 10:09:25 PM'),
(690, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/view_settings_bcat', '2021-12-27 10:09:51 PM'),
(691, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/view_settings_bcat', '2021-12-27 10:09:52 PM'),
(692, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/view_settings_bcat', '2021-12-27 10:09:52 PM'),
(693, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/view_settings_bcat', '2021-12-27 10:10:41 PM'),
(694, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-27 10:10:42 PM'),
(695, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/Add_newProductV2', '2021-12-27 10:10:46 PM'),
(696, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-27 10:10:46 PM'),
(697, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/view_settings_bcat', '2021-12-27 10:10:50 PM'),
(698, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 10:11:03 PM'),
(699, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Android', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 10:15:48 PM'),
(700, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/register', '2021-12-27 10:17:37 PM'),
(701, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/register', '2021-12-27 10:18:14 PM'),
(702, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/users', '2021-12-27 10:18:24 PM'),
(703, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-27 10:32:48 PM'),
(704, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/inventory', '2021-12-27 10:32:49 PM'),
(705, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-27 10:32:50 PM'),
(706, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/Add_newProductV2', '2021-12-27 10:32:55 PM'),
(707, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-27 10:32:55 PM'),
(708, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/product_releasing', '2021-12-27 10:33:00 PM'),
(709, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/product_restocking', '2021-12-27 10:33:10 PM'),
(710, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/inventory', '2021-12-27 10:33:15 PM'),
(711, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/product_restocking', '2021-12-27 10:33:17 PM'),
(712, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/inventory', '2021-12-27 10:33:17 PM'),
(713, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/product_restocking', '2021-12-27 10:33:18 PM'),
(714, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-27 10:33:19 PM'),
(715, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/trash_bin', '2021-12-27 10:33:22 PM'),
(716, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/view_settings_bcat', '2021-12-27 10:33:25 PM'),
(717, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/Del_brand', '2021-12-27 10:33:27 PM'),
(718, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/view_settings_bcat', '2021-12-27 10:33:28 PM'),
(719, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/Del_brand', '2021-12-27 10:33:29 PM'),
(720, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/view_settings_bcat', '2021-12-27 10:33:29 PM'),
(721, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-27 10:33:38 PM'),
(722, '60bf510d64ba8', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 'TBD', 'https://localhost/manalok9/admin/products', '2021-12-27 11:29:20 PM');
-- --------------------------------------------------------
--
-- Table structure for table `tb_itemcode`
--
CREATE TABLE `tb_itemcode` (
`uniqueID` varchar(255) DEFAULT NULL,
`Brand_Top` varchar(255) DEFAULT NULL,
`Cat_Char` varchar(255) DEFAULT NULL,
`Prod_Type` varchar(255) DEFAULT NULL,
`Brand_Bot` varchar(255) DEFAULT NULL,
`Prod_Line` varchar(255) DEFAULT NULL,
`New_Type` varchar(255) DEFAULT NULL,
`Prod_Variant` varchar(255) DEFAULT NULL,
`Prod_Size` varchar(255) DEFAULT NULL,
`ItemCode` varchar(255) DEFAULT NULL,
`TimeStamp` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`ID` int(11) NOT NULL,
`UserID` varchar(255) DEFAULT NULL,
`Image` varchar(255) DEFAULT NULL,
`FirstName` varchar(255) DEFAULT NULL,
`MiddleName` varchar(255) DEFAULT NULL,
`LastName` varchar(255) DEFAULT NULL,
`NameExtension` varchar(255) DEFAULT NULL,
`DateOfBirth` varchar(255) DEFAULT NULL,
`ContactNumber` varchar(255) DEFAULT NULL,
`Address` varchar(255) DEFAULT NULL,
`Comment` varchar(255) DEFAULT NULL,
`Privilege` varchar(2) DEFAULT NULL COMMENT '0 = None; 1 = Normal; 2 = Admin; 3 = Developer',
`DateAdded` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`ID`, `UserID`, `Image`, `FirstName`, `MiddleName`, `LastName`, `NameExtension`, `DateOfBirth`, `ContactNumber`, `Address`, `Comment`, `Privilege`, `DateAdded`) VALUES
(1, '60bc6643380bb', 'uploads/60bc6643380bb/119885521_653071058972274_4010704502296133963_n.jpg', 'chiruno', '', 'borger', '', '', '', '', '', '1', '2021-09-08 09:36:06 PM'),
(3, '60bf510d64ba8', 'uploads/60bf510d64ba8/image5.jpg', 'first', 'middle', 'last', 'name ext', '2021-06-02', '1231233a2', '', '', '2', '2021-12-23 06:11:20 PM'),
(6, '6117f910ce15a', 'assets/images/faces/1.jpg', 'Testing', 'Testing', 'Testing', 'Testing', '2003-06-06', 'Testing', 'Testing', 'Testing', '1', '2021-12-23 04:40:36 PM'),
(7, '61c3f4a7912c4', 'assets/images/faces/1.jpg', 'Test', 'Test', 'Test', 'Test', '2000-06-06', '09123456789', 'Test', '', '3', '2021-12-23 03:49:45 PM'),
(8, '61c42b794f0b1', 'assets/images/faces/1.jpg', 'Tester', 'Tester', 'Tester', 'Tester', '2006-06-06', 'Tester', 'Tester', '', '2', '2021-12-23 03:55:37 PM'),
(9, '61c42c3d66939', 'assets/images/faces/1.jpg', 'Joker', 'Joker', 'Joker', 'Joker', '2000-06-06', 'Joker', 'Joker', '', '1', '2021-12-23 04:04:52 PM');
-- --------------------------------------------------------
--
-- Table structure for table `users_login`
--
CREATE TABLE `users_login` (
`ID` int(11) NOT NULL,
`UserID` varchar(255) DEFAULT NULL,
`LoginEmail` varchar(255) DEFAULT NULL,
`LoginPassword` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `users_login`
--
INSERT INTO `users_login` (`ID`, `UserID`, `LoginEmail`, `LoginPassword`) VALUES
(1, '<PASSWORD>', 'admin', <PASSWORD>'),
(2, '60bc6643380bb', 'b<PASSWORD>', <PASSWORD>');
-- --------------------------------------------------------
--
-- Table structure for table `users_login_history`
--
CREATE TABLE `users_login_history` (
`ID` int(11) NOT NULL,
`UserID` varchar(255) DEFAULT NULL,
`LoginEmail` varchar(255) DEFAULT NULL,
`LoginPassword` varchar(255) DEFAULT NULL,
`Agent` varchar(255) DEFAULT NULL,
`Platform` varchar(255) DEFAULT NULL,
`IPAddress` varchar(255) DEFAULT NULL,
`Success` tinyint(1) DEFAULT NULL COMMENT '0 = failed; 1 = success',
`DateAdded` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `users_login_history`
--
INSERT INTO `users_login_history` (`ID`, `UserID`, `LoginEmail`, `LoginPassword`, `Agent`, `Platform`, `IPAddress`, `Success`, `DateAdded`) VALUES
(1, '60bf510d64ba8', 'admin', '$2y$10$BUBbDSD4n2OSQToK6UVoCuc5miuuQseMcaLelV2Xb4qQ1Qhxkslqu', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 1, '2021-12-23 04:28:03 PM'),
(2, '60bf510d64ba8', 'admin', '$2y$10$jrrJ/ZiDPPtKjCsyFZCcIO9fLlAjuC8AjP1ezDKUhc5D6riIlvqxS', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 1, '2021-12-23 04:31:13 PM'),
(3, '60bf510d64ba8', 'admin', '$2y$10$LBgH9DT/ltisxzYk1kHuEe7hdiLc4YUbOTYzdQj7UG08ZL8xPi3SG', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 1, '2021-12-23 04:41:58 PM'),
(4, '60bf510d64ba8', 'admin', '$2y$10$O9k3ESjdM/62MwLlbplKoOtLVTTV0khaVhTKUhNSP5cazjnuDhHkS', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 1, '2021-12-23 04:43:32 PM'),
(5, '60bf510d64ba8', 'admin', '$2y$10$0ecYOgG8yKMbNH2F0VIHVOQf9.hKyZwTvpVR8.RVLMsSW6/AtKGha', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 1, '2021-12-23 04:47:02 PM'),
(6, '60bf510d64ba8', 'admin', '$2y$10$IkzdHBL0US1NCggm5G1iGeTuJGW5/zmg/9zpK7Kcnow89hG0DLNWu', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 1, '2021-12-23 04:55:30 PM'),
(7, '60bf510d64ba8', 'admin', '$2y$10$OdFg9sbbLvRXCeJ4ZiHAmuUQqhNxAQRzoQDDxAjZIqJb6MGAm8ZLG', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 1, '2021-12-23 05:01:58 PM'),
(8, '60bf510d64ba8', 'admin', '$2y$10$zBUzekrkJ6qICfAMk5ohguMvHniJPH7Thy51V1L4NVt3G9gVFhTV2', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 1, '2021-12-23 05:03:59 PM'),
(9, '60bf510d64ba8', 'admin', '$2y$10$46Yq54jZz0OVYPNa0Sgna.TyA4nBC6KiVFdE6Iv9FFP66aXt7jQXO', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 1, '2021-12-23 05:06:10 PM'),
(10, '60bf510d64ba8', 'admin', '$2y$10$GB.mY.1WZjajIE9xOSnjr.qfhzk2/I2I8yPvBTO70X7eQGjaKfYgC', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 1, '2021-12-23 05:09:52 PM'),
(11, '60bf510d64ba8', 'admin', '$2y$10$Q6Zq1DpwyASjRCYDhtmUy.Lv65Kvf5zf2TtfM5xn7CldWBAY6/pc.', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 1, '2021-12-23 05:11:24 PM'),
(12, '60bf510d64ba8', 'admin', '$2y$10$Q4ZlRfazZ/PRjJME6BcaruPicfLnSm6fE2ScUeJUDIaq4sbrsUk0i', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 1, '2021-12-23 05:11:54 PM'),
(13, '60bf510d64ba8', 'admin', '$2y$10$OlVO2f8hzy4eoCuFwS16a.wFAuUYSGT76iDqN0xhSJhpS19WScJY.', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 1, '2021-12-23 05:12:17 PM'),
(14, '60bf510d64ba8', 'admin', '$2y$10$irgCUaOVl./I9HbI2N702OyBrN9yFLR/JUGWjnxofkN0kSUZrkbXO', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 1, '2021-12-23 05:15:54 PM'),
(15, '60bf510d64ba8', 'admin', '$2y$10$w1l1hg7br8tgfUqgy0oTbeEXYCSAka92M8gBNkDZXuOOmMNlkMc/y', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 1, '2021-12-23 05:16:20 PM'),
(16, '60bf510d64ba8', 'admin', '$2y$10$RLtM4dgxcu0tZyB5pEPKyuAk0DjIaTLb5ej01oinlzWkTq45HUiVm', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 1, '2021-12-23 05:16:51 PM'),
(17, '60bf510d64ba8', 'admin', '$2y$10$HVB77I1bRRBiXc2XuSzXveoHATywDl9Pe11IB.BWWdC1WGdt7RwSu', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 1, '2021-12-23 05:56:40 PM'),
(18, '60bf510d64ba8', 'admin', '$2y$10$IWhKKGUlS.cnjvdX.ScjLOrsXIDUUUn8E2Dhpj0DxeoQuEefemoYC', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 1, '2021-12-23 05:57:52 PM'),
(19, '60bf510d64ba8', 'admin', '$2y$10$hUjfdPugfcaGjB0zgcTMFu7BKWhbloz2HUdlMGUTbircqd8PwNm2y', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 1, '2021-12-23 05:58:43 PM'),
(20, '60bf510d64ba8', 'admin', '$2y$10$wwEqr37eQ0StqTSwlS0Dc.8zz7D49wI.pLzvfbMXXguSVZdMfryVG', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 1, '2021-12-23 05:59:37 PM'),
(21, '60bf510d64ba8', 'admin', '$2y$10$mFKlSMs6/.D9w4zt11XJKe.mbblkeV82pcJZZV2SPE/dGowjpFGi.', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 1, '2021-12-23 05:59:58 PM'),
(22, '60bf510d64ba8', 'admin', '$2y$10$G2u.cyoExqKi/yxDwFR6W.LJqv7eV1DXTx9AHEdIXVuQiP8H2hGsq', 'Desktop: Chrome 96.0.4664.110', 'Linux', '::1', 1, '2021-12-27 06:31:03 PM'),
(23, '60bf510d64ba8', 'admin', '$2y$10$NCu4bKmYN4NTFnGp7aMM1uPy5TSTgUY8eL2sOWxouP.GPqRkmj0qO', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 1, '2021-12-27 06:42:22 PM'),
(24, '60bf510d64ba8', 'admin', '$2y$10$4pI0egQuFtz0K/A9PNIFwuqCY9v2APtN1/rnx2JLSzOE4kQzyHtDy', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 1, '2021-12-27 09:48:52 PM'),
(25, '60bf510d64ba8', 'admin', '$2y$10$KY2FeQNPXtnweDLJOjOuCeUR/iGvzpD3XrcxE18AXlCIySW9Kg87O', 'Desktop: Chrome 96.0.4664.110', 'Windows 10', '::1', 1, '2021-12-27 09:50:05 PM');
-- --------------------------------------------------------
--
-- Table structure for table `users_registrations`
--
CREATE TABLE `users_registrations` (
`id` int(11) NOT NULL,
`email` varchar(255) NOT NULL,
`token` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`DateAdded` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `users_registrations`
--
INSERT INTO `users_registrations` (`id`, `email`, `token`, `DateAdded`) VALUES
(1, '<EMAIL>', '<PASSWORD>', '2021-12-27 10:13:06 PM'),
(2, '<EMAIL>', '<PASSWORD>', '2021-12-27 10:15:44 PM'),
(3, '<EMAIL>', '<PASSWORD>', '2021-12-27 10:15:52 PM'),
(4, '<EMAIL>', '<PASSWORD>', '2021-12-27 10:17:01 PM');
-- --------------------------------------------------------
--
-- Table structure for table `user_restrictions`
--
CREATE TABLE `user_restrictions` (
`ID` int(11) NOT NULL,
`UserID` varchar(255) DEFAULT NULL,
`Action` varchar(127) DEFAULT NULL,
`Allowed` bit(1) DEFAULT b'0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `user_restrictions`
--
INSERT INTO `user_restrictions` (`ID`, `UserID`, `Action`, `Allowed`) VALUES
(1, '60bf510d64ba8', 'products_view', b'1'),
(2, '60bf510d64ba8', 'products_add', b'1'),
(3, '60bf510d64ba8', 'products_edit', b'1'),
(4, '60bf510d64ba8', 'products_delete', b'1'),
(5, '60bf510d64ba8', 'releasing_view', b'1'),
(6, '60bf510d64ba8', 'restocking_view', b'1'),
(7, '60bf510d64ba8', 'inventory_view', b'1'),
(8, '60bf510d64ba8', 'users_view', b'1'),
(9, '60bf510d64ba8', 'users_add', b'1'),
(10, '60bf510d64ba8', 'users_edit', b'1'),
(11, '60bf510d64ba8', 'vendors_view', b'1'),
(12, '60bf510d64ba8', 'vendors_add', b'1'),
(13, '60bf510d64ba8', 'vendors_edit', b'1'),
(14, '60bf510d64ba8', 'vendors_delete', b'1'),
(15, '60bf510d64ba8', 'purchase_orders_view', b'1'),
(16, '60bf510d64ba8', 'purchase_orders_add', b'1'),
(17, '60bf510d64ba8', 'purchase_orders_approve', b'1'),
(18, '60bf510d64ba8', 'purchase_orders_bill_creation', b'1'),
(19, '60bf510d64ba8', 'bills_view', b'1'),
(20, '60bf510d64ba8', 'clients_view', b'1'),
(21, '60bf510d64ba8', 'clients_add', b'1'),
(22, '60bf510d64ba8', 'clients_edit', b'1'),
(23, '60bf510d64ba8', 'clients_delete', b'1'),
(24, '60bf510d64ba8', 'sales_orders_view', b'1'),
(25, '60bf510d64ba8', 'sales_orders_add', b'1'),
(26, '60bf510d64ba8', 'sales_orders_mark_for_invoicing', b'1'),
(27, '60bf510d64ba8', 'sales_orders_schedule_delivery', b'1'),
(28, '60bf510d64ba8', 'sales_orders_mark_as_delivered', b'1'),
(29, '60bf510d64ba8', 'sales_orders_mark_as_received', b'1'),
(30, '60bf510d64ba8', 'sales_orders_fulfill', b'1'),
(31, '60bf510d64ba8', 'sales_orders_invoice_creation', b'1'),
(32, '60bf510d64ba8', 'invoice_view', b'1'),
(33, '60bf510d64ba8', 'accounts_view', b'1'),
(34, '60bf510d64ba8', 'accounts_add', b'1'),
(35, '60bf510d64ba8', 'accounts_edit', b'1'),
(36, '60bf510d64ba8', 'journal_transactions_view', b'1'),
(37, '60bf510d64ba8', 'journal_transactions_add', b'1'),
(38, '60bf510d64ba8', 'journal_transactions_delete', b'1'),
(39, '60bf510d64ba8', 'brand_category_view', b'1'),
(40, '60bf510d64ba8', 'trash_bin_view', b'1');
-- --------------------------------------------------------
--
-- Table structure for table `vendors`
--
CREATE TABLE `vendors` (
`ID` int(11) NOT NULL,
`VendorNo` varchar(255) DEFAULT NULL,
`Name` varchar(255) DEFAULT NULL,
`TIN` varchar(255) DEFAULT NULL,
`Address` varchar(255) DEFAULT NULL,
`ContactNum` varchar(255) DEFAULT NULL,
`ProductServiceKind` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `vendors`
--
INSERT INTO `vendors` (`ID`, `VendorNo`, `Name`, `TIN`, `Address`, `ContactNum`, `ProductServiceKind`) VALUES
(1, 'V-000001', 'Test Vendor', 'TIN #', 'Test Address', '09123456789', 'Merch'),
(2, 'V-000002', 'Test Vendor 1', 'TIN # 1', 'Test Address 1', '09123456789 1', 'Merch 1'),
(3, 'V-000003', 'Test Vendor 2', 'TIN # 2', 'Test Address 2', '09123456789 2', 'Merch 2'),
(4, 'V-000004', 'Test', 'Test', 'Test', 'Test', 'Test'),
(5, 'V-000005', 'Name', 'TIN', 'Address', 'Contact', 'Kind'),
(6, 'V-000006', 'test', 'test', 'test', 'test', 'test'),
(7, 'V-000007', 'NameTest', 'TINTest', 'AddressTest', 'ContactTest', 'KindTest');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `accounts`
--
ALTER TABLE `accounts`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `bills`
--
ALTER TABLE `bills`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `brand_category`
--
ALTER TABLE `brand_category`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `brand_properties`
--
ALTER TABLE `brand_properties`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `brand_size`
--
ALTER TABLE `brand_size`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `brand_vcpd`
--
ALTER TABLE `brand_vcpd`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `cart_release`
--
ALTER TABLE `cart_release`
ADD PRIMARY KEY (`cart_id`);
--
-- Indexes for table `clients`
--
ALTER TABLE `clients`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `invoices`
--
ALTER TABLE `invoices`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `journals`
--
ALTER TABLE `journals`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `journal_transactions`
--
ALTER TABLE `journal_transactions`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `logbook`
--
ALTER TABLE `logbook`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `products`
--
ALTER TABLE `products`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `products_transactions`
--
ALTER TABLE `products_transactions`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `product_details`
--
ALTER TABLE `product_details`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `purchase_orders`
--
ALTER TABLE `purchase_orders`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `sales_orders`
--
ALTER TABLE `sales_orders`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `security_log`
--
ALTER TABLE `security_log`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `users_login`
--
ALTER TABLE `users_login`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `users_login_history`
--
ALTER TABLE `users_login_history`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `users_registrations`
--
ALTER TABLE `users_registrations`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `user_restrictions`
--
ALTER TABLE `user_restrictions`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `vendors`
--
ALTER TABLE `vendors`
ADD PRIMARY KEY (`ID`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `bills`
--
ALTER TABLE `bills`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `brand_category`
--
ALTER TABLE `brand_category`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `brand_properties`
--
ALTER TABLE `brand_properties`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `brand_size`
--
ALTER TABLE `brand_size`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT for table `brand_vcpd`
--
ALTER TABLE `brand_vcpd`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;
--
-- AUTO_INCREMENT for table `cart_release`
--
ALTER TABLE `cart_release`
MODIFY `cart_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=42;
--
-- AUTO_INCREMENT for table `clients`
--
ALTER TABLE `clients`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `invoices`
--
ALTER TABLE `invoices`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `journals`
--
ALTER TABLE `journals`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;
--
-- AUTO_INCREMENT for table `journal_transactions`
--
ALTER TABLE `journal_transactions`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25;
--
-- AUTO_INCREMENT for table `logbook`
--
ALTER TABLE `logbook`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=87;
--
-- AUTO_INCREMENT for table `products`
--
ALTER TABLE `products`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=23;
--
-- AUTO_INCREMENT for table `products_transactions`
--
ALTER TABLE `products_transactions`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=54;
--
-- AUTO_INCREMENT for table `product_details`
--
ALTER TABLE `product_details`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16;
--
-- AUTO_INCREMENT for table `purchase_orders`
--
ALTER TABLE `purchase_orders`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `sales_orders`
--
ALTER TABLE `sales_orders`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `security_log`
--
ALTER TABLE `security_log`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=723;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `users_login`
--
ALTER TABLE `users_login`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `users_login_history`
--
ALTER TABLE `users_login_history`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=26;
--
-- AUTO_INCREMENT for table `users_registrations`
--
ALTER TABLE `users_registrations`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `user_restrictions`
--
ALTER TABLE `user_restrictions`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=41;
--
-- AUTO_INCREMENT for table `vendors`
--
ALTER TABLE `vendors`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
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 */;
|
<gh_stars>1-10
SELECT PeakName, RiverName, LOWER(SUBSTRING (PeakName, 1, LEN(PeakName) - 1)+ RiverName) AS MIX
FROM Peaks, Rivers
WHERE RIGHT(PeakName, 1) = LEFT(Rivername, 1)
ORDER BY MIX ASC |
<reponame>cblatti3/KN_Builder
CREATE DATABASE IF NOT EXISTS KnowNet;
USE KnowNet;
CREATE TABLE IF NOT EXISTS `all_mappings` (
`dbprimary_acc` varchar(512) DEFAULT NULL,
`display_label` varchar(512) DEFAULT NULL,
`db_name` varchar(100) NOT NULL,
`priority` int(11) NOT NULL,
`db_display_name` varchar(255) DEFAULT NULL,
`stable_id` varchar(128) DEFAULT NULL,
`species` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `edge` (
`n1_id` varchar(64) NOT NULL,
`n2_id` varchar(64) NOT NULL,
`et_name` varchar(80) NOT NULL,
`weight` float NOT NULL,
`edge_hash` varchar(40) NOT NULL,
PRIMARY KEY (`n1_id`, `n2_id`, `et_name`),
KEY `n2_id` (`n2_id`),
KEY `et_name` (`et_name`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `edge2line`(
`edge_hash` varchar(40) NOT NULL,
`line_hash` varchar(40) NOT NULL,
PRIMARY KEY (`edge_hash`, `line_hash`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `edge_meta` (
`line_hash` varchar(40) NOT NULL,
`info_type` varchar(80) NOT NULL,
`info_desc` varchar(255) NOT NULL,
PRIMARY KEY (`line_hash`,`info_type`,`info_desc`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `edge_type` (
`et_name` varchar(80) NOT NULL,
`n1_type` varchar(12) NOT NULL,
`n2_type` varchar(12) NOT NULL,
`bidir` tinyint(1) NOT NULL,
`et_desc` text,
`sc_desc` text,
`sc_best` float DEFAULT NULL,
`sc_worst` float DEFAULT NULL,
PRIMARY KEY (`et_name`),
KEY (`n1_type`),
KEY (`n2_type`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `node` (
`node_id` varchar(64) NOT NULL,
`n_alias` varchar(512) DEFAULT NULL,
`n_type` varchar(12) DEFAULT NULL,
PRIMARY KEY (`node_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `node_meta` (
`node_id` varchar(64) NOT NULL,
`info_type` varchar(80) NOT NULL,
`info_desc` varchar(255) NOT NULL,
PRIMARY KEY (`node_id`,`info_type`,`info_desc`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `node_species` (
`node_id` varchar(64) NOT NULL,
`taxon` int(11) NOT NULL,
PRIMARY KEY (`node_id`,`taxon`),
KEY `taxon` (`taxon`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `node_type` (
`n_type` varchar(12) NOT NULL,
`n_type_desc` text,
PRIMARY KEY (`n_type`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `raw_file` (
`file_id` varchar(80) NOT NULL,
`remote_url` varchar(255) NOT NULL,
`remote_date` varchar(40) DEFAULT NULL,
`remote_version` varchar(40) DEFAULT NULL,
`remote_size` bigint(11) DEFAULT NULL,
`source_url` varchar(255) DEFAULT NULL,
`image` varchar(255) DEFAULT NULL,
`reference` varchar(512) DEFAULT NULL,
`pmid` int(11) DEFAULT NULL,
`license` varchar(512) DEFAULT NULL,
`date_downloaded` varchar(40) DEFAULT NULL,
`local_filename` varchar(255) NOT NULL,
`checksum` varchar(80) DEFAULT NULL,
PRIMARY KEY (`file_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `log` (
`filename` varchar(255) NOT NULL,
`info_type` varchar(255) NOT NULL,
`info_value` varchar(255) DEFAULT NULL,
PRIMARY KEY (`filename`, `info_type`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `raw_line` (
`line_hash` varchar(40) NOT NULL,
`line_num` int(11) NOT NULL,
`file_id` varchar(80) NOT NULL,
`line_str` text NOT NULL,
PRIMARY KEY (`line_hash`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `species` (
`taxon` int(11) NOT NULL,
`sp_abbrev` varchar(8) DEFAULT NULL,
`sp_sciname` varchar(255) NOT NULL,
`representative` varchar(255) DEFAULT NULL,
PRIMARY KEY (`taxon`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `status` (
`table_hash` varchar(40) NOT NULL,
`n1_id` varchar(64) NOT NULL,
`n2_id` varchar(64) NOT NULL,
`et_name` varchar(80) NOT NULL,
`weight` float NOT NULL,
`edge_hash` varchar(40) NOT NULL,
`line_hash` varchar(40) NOT NULL,
`status` varchar(80) NOT NULL,
`status_desc` varchar(255) NOT NULL,
PRIMARY KEY (`table_hash`),
KEY (`status_desc`),
KEY (`et_name`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
<filename>db/src/main/resources/db/migration/V20180302140615__add_auditing_to_bounty.sql<gh_stars>100-1000
ALTER TABLE bounty
ADD creation_date TIMESTAMP;
ALTER TABLE bounty
ADD last_modified_date TIMESTAMP;
ALTER TABLE bounty
ADD created_by VARCHAR(100);
ALTER TABLE bounty
ADD last_modified_by VARCHAR(100); |
<reponame>DanielHeath/activefacts-compositions<filename>spec/sql/expected/FKProb.sql
CREATE TABLE OT (
-- OT is called Name
Name VARCHAR NOT NULL,
-- Primary index to OT(Name in "OT is called Name")
PRIMARY KEY(Name)
);
CREATE TABLE VTP (
-- VTP involves VT that is a kind of DOT that is a kind of OT that is called Name
VTName VARCHAR NOT NULL,
-- VTP involves Name
Name VARCHAR NOT NULL,
-- Primary index to VTP(VT, Name in "VT has facet called Name")
PRIMARY KEY(VTName, Name),
FOREIGN KEY (VTName) REFERENCES OT (Name)
);
CREATE TABLE VTPRestriction (
-- VTPRestriction involves VT that is a kind of DOT that is a kind of OT that is called Name
VTName VARCHAR NOT NULL,
-- VTPRestriction involves VTP that involves VT that is a kind of DOT that is a kind of OT that is called Name
VTPVTName VARCHAR NOT NULL,
-- VTPRestriction involves VTP that involves Name
VTPName VARCHAR NOT NULL,
-- Primary index to VTPRestriction(VT, VTP in "VT receives VTP")
PRIMARY KEY(VTName, VTPVTName, VTPName),
FOREIGN KEY (VTName) REFERENCES OT (Name),
FOREIGN KEY (VTPVTName, VTPName) REFERENCES VTP (VTName, Name)
);
|
-- file:plpgsql.sql ln:972 expect:false
if mytype = ''IF'' then
select into rec * from IFace where slotname = myname
|
<reponame>Shuttl-Tech/antlr_psql
-- file:foreign_key.sql ln:936 expect:true
UPDATE users SET id = 4 WHERE id = 3
|
-- DROP TABLE IF EXISTS employees
-- DROP TABLE IF EXISTS dept_manager
--Data Enginnering
CREATE TABLE employees (
emp_no int PRIMARY KEY
, birth_date date NOT NULL
, first_name VARCHAR NOT NULL
, last_name VARCHAR NOT NULL
, gender VARCHAR(1) NOT NULL
, hire_date date NOT NULL
);
SELECT *
FROM employees
CREATE TABLE department (
dept_no VARCHAR PRIMARY KEY
, dept_name VARCHAR NOT NULL
);
SELECT *
FROM department
CREATE TABLE dept_manager (
dept_no VARCHAR NOT NULL
, emp_no int NOT NULL
, from_date date NOT NULL
, to_date date NOT NULL,
FOREIGN KEY (emp_no) REFERENCES employees(emp_no),
FOREIGN KEY (dept_no) REFERENCES department(dept_no)
);
SELECT *
FROM dept_manager
CREATE TABLE dept_employee (
emp_no int NOT NULL
, dept_no VARCHAR NOT NULL
, from_date date NOT NULL
, to_date date NOT NULL,
FOREIGN KEY (emp_no) REFERENCES employees(emp_no),
FOREIGN KEY (dept_no) REFERENCES departments(dept_no)
);
SELECT *
FROM dept_employee
CREATE TABLE salaries (
emp_no int NOT NULL
, salary int NOT NULL
, from_date date NOT NULL
, to_date date NOT NULL,
FOREIGN KEY (emp_no) REFERENCES employees(emp_no)
);
SELECT *
FROM salaries
CREATE TABLE titles (
emp_no int NOT NULL
, title VARCHAR NOT NULL
, from_date date NOT NULL
, to_date date NOT NULL,
FOREIGN KEY (emp_no) REFERENCES employees(emp_no)
);
SELECT *
FROM titles
--Data Analysis
-- --1. List the following details of each employee: employee number, last name, first name, gender, and salary.
SELECT
employees.emp_no
,last_name
,first_name
,gender
,salary
FROM employees
INNER JOIN
salaries
ON employees.emp_no = salaries.emp_no;
-- 2. List employees who were hired in 1986.
SELECT emp_no, first_name, last_name, hire_date
FROM Employees
WHERE hire_date >= '1985-12-31'
AND hire_date < '1987-01-01';
-- 3. List the manager of each department with the following information: department number, department name, the manager's employee number, last name, first name, and start and end employment dates.
SELECT dept_manager.dept_no
, department.dept_name
, dept_manager.emp_no
, employees.last_name
, employees.first_name
, dept_manager.from_date
, dept_manager.to_date
FROM dept_manager
INNER JOIN department
ON dept_manager.dept_no = department.dept_no
INNER JOIN employees
ON dept_manager.emp_no = employees.emp_no;
-- 4. List the department of each employee with the following information: employee number, last name, first name, and department name.
SELECT employees.emp_no
, employees.last_name
, employees.first_name
, department.dept_name
FROM employees
INNER JOIN dept_manager
ON employees.emp_no = dept_manager.emp_no
INNER JOIN department
ON dept_manager.dept_no = department.dept_no
-- 5. List all employees whose first name is "Hercules" and last names begin with "B."
SELECT *
FROM employees
WHERE first_name = 'Hercules'
AND last_name like 'B%';
-- 6. List all employees in the Sales department, including their employee number, last name, first name, and department name.
SELECT employees.emp_no
, employees.last_name
, employees.first_name
, department.dept_name
FROM employees
INNER JOIN dept_manager
ON employees.emp_no = dept_manager.emp_no
INNER JOIN department
ON dept_manager.dept_no = department.dept_no
WHERE dept_name = 'Sales';
-- 7. List all employees in the Sales and Development departments, including their employee number, last name, first name, and department name.
SELECT employees.emp_no
, employees.last_name
, employees.first_name
, department.dept_name
FROM employees
INNER JOIN dept_manager
ON employees.emp_no = dept_manager.emp_no
INNER JOIN department
ON dept_manager.dept_no = department.dept_no
WHERE dept_name = 'Sales'
OR dept_name = 'Development';
-- 8. In descending order, list the frequency count of employee last names, i.e., how many employees share each last name.
SELECT last_name
, COUNT(last_name)
FROM employees
GROUP BY last_name
ORDER BY count(last_name) desc;
|
/*
Navicat MySQL Data Transfer
Source Server : 本地数据库连接
Source Server Version : 50621
Source Host : localhost:3306
Source Database : test
Target Server Type : MYSQL
Target Server Version : 50621
File Encoding : 65001
Date: 2015-05-06 20:30:17
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for user
-- ----------------------------
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(255) DEFAULT NULL,
`name` varchar(255) DEFAULT NULL,
`phone` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of user
-- ----------------------------
INSERT INTO `user` VALUES ('1', 'demo', '姓名2', '13882500000');
INSERT INTO `user` VALUES ('2', 'user', '名字3', '0731-88888888');
|
<reponame>danadel/sakai<gh_stars>10-100
-- This is the MySQL Sakai 2.4.0 (or later) -> 2.5.0 conversion script
-- --------------------------------------------------------------------------------------------------------------------------------------
--
-- use this to convert a Sakai database from 2.4.0 to 2.5.0. Run this before you run your first app server.
-- auto.ddl does not need to be enabled in your app server - this script takes care of all new TABLEs, changed TABLEs, and changed data.
--
-- --------------------------------------------------------------------------------------------------------------------------------------
-- metaobj conversion
alter TABLE metaobj_form_def add column alternateCreateXslt varchar(36) NULL;
alter TABLE metaobj_form_def add column alternateViewXslt varchar(36) NULL;
-- Post'em SAK-8232
ALTER TABLE SAKAI_POSTEM_HEADINGS MODIFY heading VARCHAR(500);
-- Add colums to search to improve performance SAK-9865
alter table searchbuilderitem add itemscope integer;
create index isearchbuilderitem_sco on searchbuilderitem (itemscope);
-- SAK-9808: Implement ability to delete threaded messages within Forums
-- also released in sakai_2-4-0_2-4-x_mysql_conversion_001.sql
alter table MFR_MESSAGE_T add DELETED bit not null default false;
create index MFR_MESSAGE_DELETED_I on MFR_MESSAGE_T (DELETED);
-- Chat SAK-10682
alter table CHAT2_CHANNEL modify CONTEXT VARCHAR(99) NOT NULL;
-- Chat SAK-10163
-- also released in sakai_2_4_0-2_4_x_mysql_conversion_003.sql
ALTER TABLE CHAT2_CHANNEL ADD COLUMN PLACEMENT_ID varchar(99) NULL;
ALTER TABLE CHAT2_CHANNEL CHANGE contextDefaultChannel placementDefaultChannel tinyint(1) NULL;
update CHAT2_CHANNEL cc, SAKAI_SITE_TOOL st
set cc.PLACEMENT_ID = st.TOOL_ID
where st.REGISTRATION = 'sakai.chat'
and cc.placementDefaultChannel = true
and cc.CONTEXT = st.SITE_ID;
update CHAT2_CHANNEL set placementDefaultChannel=false where placementDefaultChannel is null;
-- OSP SAK-10396: Add a default layout to be specified for a portfolio
alter table osp_presentation add column layout_id varchar(36) NULL;
-- Profile add dateOfBirth property SAK-8423
alter table SAKAI_PERSON_T add column dateOfBirth date;
-- SAK-8780, SAK-7452 - Add SESSION_ACTIVE flag to explicitly indicate when
-- a session is active rather than relying on SESSION_START and SESSION_END
-- having the same value.
alter table SAKAI_SESSION add column SESSION_ACTIVE tinyint(1);
create index SESSION_ACTIVE_IE on SAKAI_SESSION (SESSION_ACTIVE);
-- Add categories to the gradebook
create table GB_CATEGORY_T (ID bigint not null auto_increment, VERSION integer not null, GRADEBOOK_ID bigint not null, NAME varchar(255) not null, WEIGHT double precision, DROP_LOWEST integer, REMOVED bit, primary key (ID));
alter table GB_GRADABLE_OBJECT_T add CATEGORY_ID bigint;
alter table GB_GRADEBOOK_T add GRADE_TYPE integer not null;
alter table GB_GRADEBOOK_T add CATEGORY_TYPE integer not null;
alter table GB_CATEGORY_T add index FKCD333737325D7986 (GRADEBOOK_ID), add constraint FKCD333737325D7986 foreign key (GRADEBOOK_ID) references GB_GRADEBOOK_T (ID);
alter table GB_GRADABLE_OBJECT_T add index FK759996A7F09DEFAE (CATEGORY_ID), add constraint FK759996A7F09DEFAE foreign key (CATEGORY_ID) references GB_CATEGORY_T (ID);
create index GB_CATEGORY_GB_IDX on GB_CATEGORY_T (GRADEBOOK_ID);
create index GB_GRADABLE_OBJ_CT_IDX on GB_GRADABLE_OBJECT_T (CATEGORY_ID);
update GB_GRADEBOOK_T set GRADE_TYPE = 1, CATEGORY_TYPE = 1;
-- Gradebook SAK-10427
alter table GB_GRADABLE_OBJECT_T add column UNGRADED bit;
update GB_GRADABLE_OBJECT_T set UNGRADED = false;
-- Gradebook SAK-10571
drop table if exists GB_LETTERGRADE_PERCENT_MAPPING;
drop table if exists GB_LETTERGRADE_MAPPING;
create table GB_LETTERGRADE_MAPPING (LG_MAPPING_ID bigint not null, value double precision, GRADE varchar(255) not null, primary key (LG_MAPPING_ID, GRADE));
create table GB_LETTERGRADE_PERCENT_MAPPING (LGP_MAPPING_ID bigint not null auto_increment, VERSION integer not null, MAPPING_TYPE integer not null, GRADEBOOK_ID bigint, primary key (LGP_MAPPING_ID), unique (MAPPING_TYPE, GRADEBOOK_ID));
alter table GB_LETTERGRADE_MAPPING add index FKC8CDDC5CE7F3A761 (LG_MAPPING_ID), add constraint FKC8CDDC5CE7F3A761 foreign key (LG_MAPPING_ID) references GB_LETTERGRADE_PERCENT_MAPPING (LGP_MAPPING_ID);
insert into GB_LETTERGRADE_PERCENT_MAPPING values (null, 0, 1, null);
insert into GB_LETTERGRADE_MAPPING values (1, 100.0, 'A+');
insert into GB_LETTERGRADE_MAPPING values (1, 95.0, 'A');
insert into GB_LETTERGRADE_MAPPING values (1, 90.0, 'A-');
insert into GB_LETTERGRADE_MAPPING values (1, 87.0, 'B+');
insert into GB_LETTERGRADE_MAPPING values (1, 83.0, 'B');
insert into GB_LETTERGRADE_MAPPING values (1, 80.0, 'B-');
insert into GB_LETTERGRADE_MAPPING values (1, 77.0, 'C+');
insert into GB_LETTERGRADE_MAPPING values (1, 73.0, 'C');
insert into GB_LETTERGRADE_MAPPING values (1, 70.0, 'C-');
insert into GB_LETTERGRADE_MAPPING values (1, 67.0, 'D+');
insert into GB_LETTERGRADE_MAPPING values (1, 63.0, 'D');
insert into GB_LETTERGRADE_MAPPING values (1, 60.0, 'D-');
insert into GB_LETTERGRADE_MAPPING values (1, 0.0, 'F');
-- Gradebook SAK-10835
CREATE TABLE GB_PERMISSION_T (
GB_PERMISSION_ID bigint AUTO_INCREMENT NOT NULL,
VERSION integer NOT NULL,
GRADEBOOK_ID bigint NOT NULL,
USER_ID varchar(99) NOT NULL,
FUNCTION_NAME varchar(5) NOT NULL,
CATEGORY_ID bigint NULL,
GROUP_ID varchar(255) NULL,
PRIMARY KEY(GB_PERMISSION_ID)
);
-- Gradebook SAK-12429
-- also released in sakai_2_4_0-2_4_x_mysql_conversion_005.sql
CREATE INDEX GB_GRADING_EVENT_T_STU_OBJ_ID ON GB_GRADING_EVENT_T (STUDENT_ID, GRADABLE_OBJECT_ID);
-- OSP SAK-10553
ALTER TABLE osp_wizard_page_def ADD SUPPRESS_ITEMS bit(1) not null default false;
-- OSP SAK-10612
alter table osp_scaffolding add reviewerGroupAccess integer not null default '0';
-- OSP SAK-10832
CREATE TABLE osp_wiz_page_def_attachments (
wiz_page_def_id varchar(36) NOT NULL,
artifact_id varchar(255) NULL,
seq_num int(11) NOT NULL DEFAULT '0',
PRIMARY KEY(wiz_page_def_id,seq_num)
);
-- Dropbox updates SAK-11342
CREATE TABLE CONTENT_DROPBOX_CHANGES
(
DROPBOX_ID VARCHAR (255) NOT NULL,
IN_COLLECTION VARCHAR (255),
LAST_UPDATE VARCHAR (24)
);
CREATE UNIQUE INDEX CONTENT_DROPBOX_CHANGES_INDEX ON CONTENT_DROPBOX_CHANGES
(
DROPBOX_ID
);
CREATE INDEX CONTENT_DROPBOX_INCOLL_INDEX ON CONTENT_DROPBOX_CHANGES
(
IN_COLLECTION
);
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'reports.view');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'reports.run');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'reports.create');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'reports.edit');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'reports.delete');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'reports.share');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.style.globalPublish');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.style.publish');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.style.delete');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.style.create');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.style.edit');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.style.suggestGlobalPublish');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.help.glossary.delete');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.help.glossary.add');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.help.glossary.edit');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.help.glossary.export');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.matrix.review');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.matrix.scaffolding.create');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.matrix.scaffolding.edit');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.matrix.scaffolding.delete');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.matrix.scaffolding.publish');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.matrix.scaffolding.export');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.matrix.scaffolding.use');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.matrix.evaluate');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.matrix.viewOwner');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.presentation.create');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.presentation.edit');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.presentation.delete');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.presentation.copy');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.presentation.comment');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.presentation.template.copy');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.presentation.template.publish');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.presentation.template.delete');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.presentation.template.create');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.presentation.template.edit');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.presentation.template.export');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.presentation.layout.publish');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.presentation.layout.delete');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.presentation.layout.create');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.presentation.layout.edit');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.presentation.layout.suggestPublish');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.wizard.publish');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.wizard.delete');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.wizard.create');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.wizard.edit');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.wizard.review');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.wizard.export');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.wizard.view');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'osp.wizard.evaluate');
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.use'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.copy'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.comment'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.view'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.globalPublish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.suggestGlobalPublish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.add'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.review'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.evaluate'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.viewOwner'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.copy'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.comment'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.copy'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.suggestPublish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.review'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.globalPublish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.suggestGlobalPublish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.add'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.review'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.evaluate'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.viewOwner'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.copy'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.comment'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.copy'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.suggestPublish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.review'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.use'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.copy'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.comment'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.view'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.use'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.copy'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.comment'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.view'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.globalPublish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.suggestGlobalPublish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.add'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.review'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.evaluate'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.viewOwner'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.copy'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.comment'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.copy'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.suggestPublish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.review'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Reviewer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.review'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Reviewer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.copy'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Reviewer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.comment'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Reviewer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.review'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Evaluator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.run'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Evaluator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.view'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Evaluator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.evaluate'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Evaluator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.viewOwner'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Evaluator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.copy'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Evaluator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.comment'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Evaluator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.evaluate'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.globalPublish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.suggestGlobalPublish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.add'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.review'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.evaluate'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.viewOwner'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.copy'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.comment'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.copy'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.suggestPublish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.review'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.globalPublish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.suggestGlobalPublish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.add'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.review'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.evaluate'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.viewOwner'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.copy'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.comment'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.copy'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.suggestPublish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.review'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.use'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.copy'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.comment'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.view'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.globalPublish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.suggestGlobalPublish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.add'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.review'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.evaluate'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.viewOwner'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.copy'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.comment'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.copy'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.suggestPublish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.review'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.globalPublish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.suggestGlobalPublish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.add'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.review'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.evaluate'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.viewOwner'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.copy'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.comment'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.copy'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.suggestPublish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.review'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.use'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.copy'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.comment'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.view'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.use'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.copy'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.comment'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.view'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.globalPublish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.suggestGlobalPublish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.add'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.help.glossary.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.review'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.evaluate'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.viewOwner'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.copy'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.comment'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.copy'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.template.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.suggestPublish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.publish'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.review'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Reviewer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.run'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Reviewer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.view'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Reviewer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.review'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Reviewer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.copy'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Reviewer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.comment'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Reviewer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.review'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Evaluator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.run'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Evaluator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.view'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Evaluator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.evaluate'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Evaluator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.viewOwner'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Evaluator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.copy'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Evaluator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.comment'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Evaluator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.evaluate'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.use'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.view'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.view'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.view'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.run'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.share'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.run'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.share'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.run'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.share'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.run'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.view'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.share'));
DELETE From SAKAI_REALM_RL_FN WHERE REALM_KEY = (select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio') AND ROLE_KEY = (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Participant') and FUNCTION_KEY = (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.run');
DELETE From SAKAI_REALM_RL_FN WHERE REALM_KEY = (select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio') AND ROLE_KEY = (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Participant') and FUNCTION_KEY = (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.view');
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.view'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.run'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.share'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.run'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.view'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.share'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.view'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.run'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.share'));
DELETE From SAKAI_REALM_RL_FN WHERE REALM_KEY = (select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio') AND ROLE_KEY = (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Participant') and FUNCTION_KEY = (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.run');
DELETE From SAKAI_REALM_RL_FN WHERE REALM_KEY = (select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio') AND ROLE_KEY = (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Participant') and FUNCTION_KEY = (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'reports.view');
-- Reports conversion SAK-10545
RENAME TABLE osp_report_xsl TO report_xsl_file;
ALTER TABLE report_xsl_file
DROP PRIMARY KEY;
ALTER TABLE report_xsl_file
CHANGE reportXslFileId xslFileHash VARCHAR(255) NOT NULL;
ALTER TABLE report_xsl_file
ADD (PRIMARY KEY (reportDefId, xslFileHash));
RENAME TABLE osp_report_def_xml TO reports_def_xml;
RENAME TABLE osp_reports_params TO reports_param;
RENAME TABLE osp_reports TO reports_report;
RENAME TABLE osp_reports_results TO reports_result;
-- SAK-11245 -- new search indexer
create table search_transaction (
txname varchar(64) not null,
txid bigint,
primary key (txname));
create table search_journal (
txid bigint not null,
txts bigint not null,
indexwriter varchar(255) not null,
status varchar(32) not null,
primary key (txid) );
create table search_node_status (
jid bigint not null,
jidts bigint not null,
serverid varchar(255) not null,
primary key (serverid) );
insert into search_transaction ( txid, txname ) values (0,'optimizeSequence');
insert into search_transaction ( txid, txname ) values (0,'mergeSequence');
insert into search_transaction ( txid, txname ) values (0,'sharedOptimizeSequence');
insert into search_transaction ( txid, txname ) values (0,'indexerTransaction');
-- SAK-11204
ALTER TABLE CALENDAR_EVENT ADD COLUMN RANGE_START INTEGER;
ALTER TABLE CALENDAR_EVENT ADD COLUMN RANGE_END INTEGER ;
CREATE INDEX CALENDAR_EVENT_RSTART ON CALENDAR_EVENT(RANGE_START);
CREATE INDEX CALENDAR_EVENT_REND ON CALENDAR_EVENT(RANGE_END);
-- SAK-11908 moved content-hosting conversions to this conversion script
alter table CONTENT_COLLECTION add BINARY_ENTITY BLOB default null;
alter table CONTENT_RESOURCE add BINARY_ENTITY BLOB default null;
alter table CONTENT_RESOURCE add FILE_SIZE BIGINT default null;
alter table CONTENT_RESOURCE add CONTEXT VARCHAR(99) default null;
create index CONTENT_RESOURCE_CI on CONTENT_RESOURCE (CONTEXT);
alter table CONTENT_RESOURCE_DELETE add FILE_SIZE BIGINT default null;
alter table CONTENT_RESOURCE_DELETE add CONTEXT VARCHAR(99) default null;
create index CONTENT_RESOURCE_DELETE_CI on CONTENT_RESOURCE_DELETE (CONTEXT);
alter table CONTENT_RESOURCE add RESOURCE_TYPE_ID VARCHAR(255) default null;
create index CONTENT_RESOURCE_RTI on CONTENT_RESOURCE (RESOURCE_TYPE_ID);
alter table CONTENT_RESOURCE_DELETE add BINARY_ENTITY BLOB default null;
alter table CONTENT_RESOURCE_DELETE add RESOURCE_TYPE_ID VARCHAR(255) default null;
create index CONTENT_RESOURCE_DELETE_RTI on CONTENT_RESOURCE_DELETE (RESOURCE_TYPE_ID);
-- SAK-11256 - Added T1 code to book.title ris_identifier field
update CITATION_SCHEMA_FIELD set PROPERTY_VALUE = 'BT,T1' where SCHEMA_ID = 'book' and FIELD_ID = 'title' and PROPERTY_NAME = 'sakai:ris_identifier';
-- SAK-11918 - No longer replacing schema tables but adding indexes for performance.
create index CITATION_COLLECTION_INDEX on CITATION_COLLECTION (COLLECTION_ID);
create index CITATION_CITATION_INDEX on CITATION_CITATION (CITATION_ID);
create index CITATION_SCHEMA_INDEX on CITATION_SCHEMA (SCHEMA_ID);
create index CITATION_SCHEMA_FIELD_INDEX on CITATION_SCHEMA_FIELD (SCHEMA_ID, FIELD_ID);
create index CITATION_COLLECTION_INDEX2 on CITATION_COLLECTION (COLLECTION_ID, PROPERTY_NAME);
create index CITATION_CITATION_INDEX2 on CITATION_CITATION (CITATION_ID, PROPERTY_NAME);
create index CITATION_SCHEMA_INDEX2 on CITATION_SCHEMA (SCHEMA_ID, PROPERTY_NAME);
create index CITATION_SCHEMA_FIELD_INDEX2 on CITATION_SCHEMA_FIELD (SCHEMA_ID, FIELD_ID, PROPERTY_NAME);
-- SAK-11935 -- New Roster permissions (and new meanings for old permissions)
-- Remove all roster permissions from all sites and groups, since the meanings of these permissions have changed
delete from SAKAI_REALM_RL_FN where function_key in (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME like 'roster.%');
-- Remove the roster permissions themselves
delete from SAKAI_REALM_FUNCTION where function_name like 'roster.%';
-- Add the new roster permissions
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'roster.viewallmembers');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'roster.viewhidden');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'roster.viewgroup');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'roster.viewenrollmentstatus');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'roster.viewprofile');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'roster.viewofficialphoto');
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'roster.export');
-- --------------------------------------------------------------------------------------------------------------------------------------
-- backfill roster permissions into existing sites and groups
-- --------------------------------------------------------------------------------------------------------------------------------------
CREATE TABLE PERMISSIONS_SRC_TEMP (ROLE_NAME VARCHAR(99), FUNCTION_NAME VARCHAR(99));
CREATE TABLE PERMISSIONS_TEMP (ROLE_KEY INTEGER, FUNCTION_KEY INTEGER);
-- Backfill sites
INSERT INTO PERMISSIONS_SRC_TEMP values ('Instructor','roster.viewallmembers');
INSERT INTO PERMISSIONS_SRC_TEMP values ('Instructor','roster.viewhidden');
INSERT INTO PERMISSIONS_SRC_TEMP values ('Instructor','roster.viewgroup');
INSERT INTO PERMISSIONS_SRC_TEMP values ('Instructor','roster.viewenrollmentstatus');
INSERT INTO PERMISSIONS_SRC_TEMP values ('Instructor','roster.viewprofile');
INSERT INTO PERMISSIONS_SRC_TEMP values ('Instructor','roster.viewofficialphoto');
INSERT INTO PERMISSIONS_SRC_TEMP values ('Instructor','roster.export');
INSERT INTO PERMISSIONS_SRC_TEMP values ('Teaching Assistant','roster.viewprofile');
INSERT INTO PERMISSIONS_SRC_TEMP values ('Teaching Assistant','roster.viewofficialphoto');
INSERT INTO PERMISSIONS_SRC_TEMP values ('Teaching Assistant','roster.export');
INSERT INTO PERMISSIONS_SRC_TEMP values ('maintain','roster.viewallmembers');
INSERT INTO PERMISSIONS_SRC_TEMP values ('maintain','roster.viewgroup');
INSERT INTO PERMISSIONS_SRC_TEMP values ('maintain','roster.viewprofile');
INSERT INTO PERMISSIONS_SRC_TEMP values ('maintain','roster.export');
INSERT INTO PERMISSIONS_SRC_TEMP values ('access','roster.viewallmembers');
INSERT INTO PERMISSIONS_SRC_TEMP values ('access','roster.viewprofile');
INSERT INTO PERMISSIONS_SRC_TEMP values ('access','roster.export');
-- Lookup the role and function keys
insert into PERMISSIONS_TEMP (ROLE_KEY, FUNCTION_KEY)
select SRR.ROLE_KEY, SRF.FUNCTION_KEY
from PERMISSIONS_SRC_TEMP TMPSRC
join SAKAI_REALM_ROLE SRR on (TMPSRC.ROLE_NAME = SRR.ROLE_NAME)
join SAKAI_REALM_FUNCTION SRF on (TMPSRC.FUNCTION_NAME = SRF.FUNCTION_NAME);
-- Insert the new functions into the roles of any existing realm that has the role (don't convert the "!site.helper" or any group realms)
insert into SAKAI_REALM_RL_FN (REALM_KEY, ROLE_KEY, FUNCTION_KEY)
select
SRRFD.REALM_KEY, SRRFD.ROLE_KEY, TMP.FUNCTION_KEY
from
(select distinct SRRF.REALM_KEY, SRRF.ROLE_KEY from SAKAI_REALM_RL_FN SRRF) SRRFD
join PERMISSIONS_TEMP TMP on (SRRFD.ROLE_KEY = TMP.ROLE_KEY)
join SAKAI_REALM SR on (SRRFD.REALM_KEY = SR.REALM_KEY)
where SR.REALM_ID not like '!%'
and SR.REALM_ID like '/site/%'
and SR.REALM_ID not like '/site/~%'
and SR.REALM_ID not like '/site/!%'
and SR.REALM_ID not like '/site/%/group/%'
and not exists (
select 1
from SAKAI_REALM_RL_FN SRRFI
where SRRFI.REALM_KEY=SRRFD.REALM_KEY and SRRFI.ROLE_KEY=SRRFD.ROLE_KEY and SRRFI.FUNCTION_KEY=TMP.FUNCTION_KEY
);
-- clean up the temp tables to use again for group permissions
delete from PERMISSIONS_TEMP;
delete from PERMISSIONS_SRC_TEMP;
-- Backfill groups with roster permissions
INSERT INTO PERMISSIONS_SRC_TEMP values ('Teaching Assistant','roster.viewallmembers');
INSERT INTO PERMISSIONS_SRC_TEMP values ('Teaching Assistant','roster.viewhidden');
INSERT INTO PERMISSIONS_SRC_TEMP values ('Teaching Assistant','roster.viewgroup');
INSERT INTO PERMISSIONS_SRC_TEMP values ('Student','roster.viewallmembers');
INSERT INTO PERMISSIONS_SRC_TEMP values ('Student','roster.viewgroup');
INSERT INTO PERMISSIONS_SRC_TEMP values ('access','roster.viewgroup');
-- lookup the role and function numbers
insert into PERMISSIONS_TEMP (ROLE_KEY, FUNCTION_KEY)
select SRR.ROLE_KEY, SRF.FUNCTION_KEY
from PERMISSIONS_SRC_TEMP TMPSRC
join SAKAI_REALM_ROLE SRR on (TMPSRC.ROLE_NAME = SRR.ROLE_NAME)
join SAKAI_REALM_FUNCTION SRF on (TMPSRC.FUNCTION_NAME = SRF.FUNCTION_NAME);
-- insert the new functions into the roles of any existing realm that has the role (don't convert the "!site.helper")
insert into SAKAI_REALM_RL_FN (REALM_KEY, ROLE_KEY, FUNCTION_KEY)
select
SRRFD.REALM_KEY, SRRFD.ROLE_KEY, TMP.FUNCTION_KEY
from
(select distinct SRRF.REALM_KEY, SRRF.ROLE_KEY from SAKAI_REALM_RL_FN SRRF) SRRFD
join PERMISSIONS_TEMP TMP on (SRRFD.ROLE_KEY = TMP.ROLE_KEY)
join SAKAI_REALM SR on (SRRFD.REALM_KEY = SR.REALM_KEY)
where SR.REALM_ID not like '!%'
and SR.REALM_ID not like '/site/~%'
and SR.REALM_ID not like '/site/!%'
and SR.REALM_ID like '/site/%/group/%'
and not exists (
select 1
from SAKAI_REALM_RL_FN SRRFI
where SRRFI.REALM_KEY=SRRFD.REALM_KEY and SRRFI.ROLE_KEY=SRRFD.ROLE_KEY and SRRFI.FUNCTION_KEY=TMP.FUNCTION_KEY
);
-- remove the temp tables
drop table PERMISSIONS_TEMP;
drop table PERMISSIONS_SRC_TEMP;
-- Update !site.template
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewallmembers'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewprofile'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewgroup'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewallmembers'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewprofile'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.export'));
-- Update !site.template.course
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewallmembers'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewenrollmentstatus'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewhidden'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewgroup'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewofficialphoto'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewprofile'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewprofile'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewofficialphoto'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.export'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewprofile'));
-- Update !group.template
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewgroup'));
-- Update !group.template.course
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewallmembers'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewhidden'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewgroup'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewallmembers'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewgroup'));
-- SAK-11821 - eliminate duplicates in ASSIGNMENT_SUBMISSION
DELETE FROM ASSIGNMENT_SUBMISSION WHERE CONTEXT IS NULL;
ALTER TABLE ASSIGNMENT_SUBMISSION MODIFY CONTEXT VARCHAR(99) NOT NULL;
alter table ASSIGNMENT_SUBMISSION add SUBMITTER_ID VARCHAR(99) NOT NULL;
alter table ASSIGNMENT_SUBMISSION add SUBMIT_TIME VARCHAR(99) default null;
alter table ASSIGNMENT_SUBMISSION add SUBMITTED VARCHAR(6) default null;
alter table ASSIGNMENT_SUBMISSION add GRADED VARCHAR(6) default null;
CREATE UNIQUE INDEX ASSIGNMENT_SUBMISSION_SUBMITTER_INDEX ON ASSIGNMENT_SUBMISSION
(
CONTEXT,SUBMITTER_ID
);
-- SAK-11876, SAK-10490
alter table SAKAI_PERSON_T add locked bit(1);
-- Chat SAK-10215
-- This only has to be run if you've upgraded from 2.3 and had chat data
-- also released in sakai_2_4_0-2_4_x_mysql_conversion_004.sql
update SAKAI_SITE_TOOL set title = 'Chat Room' where REGISTRATION = 'sakai.chat' and TITLE like 'Chat Room: "%';
-- SAK-8957 new colums for polls
alter table POLL_POLL add column POLL_UUID varchar(255);
alter table POLL_OPTION add column OPTION_UUID varchar(255);
-- SAK-13137
create index MFR_MEMBERSHIP_ITEM_I01_I on MFR_MEMBERSHIP_ITEM_T (t_surrogateKey);
create index MFR_MEMBERSHIP_ITEM_I02_I on MFR_MEMBERSHIP_ITEM_T (a_surrogateKey);
-- SAK-13138
create index MFR_MESSAGE_T_IN_REPLY_TO_I on MFR_MESSAGE_T (IN_REPLY_TO);
create index MFR_TOPIC_T_UUID_I on MFR_TOPIC_T (UUID);
create index MFR_UNREAD_STATUS_I2 on MFR_UNREAD_STATUS_T (MESSAGE_C, USER_C, READ_C);
-- SAK-10990 Update the realm tables to add one new permissions, namely 'site.upd.site.mbrshp'
INSERT INTO SAKAI_REALM_FUNCTION VALUES (DEFAULT, 'site.upd.site.mbrshp');
-- for those exising roles with site.upd we need to add 'site.upd.site.mbrshp' and 'site.upd.grp.mbrshp' to them
-- what follows here is two approaches to do this
-- 1 if only the templates need to be updated, then run the following:
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd.site.mbrshp'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd.grp.mbrshp'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd.site.mbrshp'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd.grp.mbrshp'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd.site.mbrshp'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd.grp.mbrshp'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd.site.mbrshp'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd.grp.mbrshp'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd.site.mbrshp'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd.grp.mbrshp'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd.site.mbrshp'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolioAdmin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Program Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd.grp.mbrshp'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd.site.mbrshp'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Coordinator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd.grp.mbrshp'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd.site.mbrshp'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd.grp.mbrshp'));
-- 2 if need to update all existing realms
-- for each realm that has a role matching something in this table, we will add to that role the function from this table
CREATE TABLE PERMISSIONS_SRC_TEMP (ROLE_NAME VARCHAR(99), FUNCTION_NAME VARCHAR(99));
INSERT INTO PERMISSIONS_SRC_TEMP values ('maintain','site.upd.site.mbrshp');
INSERT INTO PERMISSIONS_SRC_TEMP values ('maintain','site.upd.grp.mbrshp');
INSERT INTO PERMISSIONS_SRC_TEMP values ('Instructor','site.upd.site.mbrshp');
INSERT INTO PERMISSIONS_SRC_TEMP values ('Instructor','site.upd.grp.mbrshp');
INSERT INTO PERMISSIONS_SRC_TEMP values ('CIG Coordinator','site.upd.site.mbrshp');
INSERT INTO PERMISSIONS_SRC_TEMP values ('CIG Coordinator','site.upd.grp.mbrshp');
INSERT INTO PERMISSIONS_SRC_TEMP values ('Program Admin','site.upd.site.mbrshp');
INSERT INTO PERMISSIONS_SRC_TEMP values ('Program Admin','site.upd.grp.mbrshp');
INSERT INTO PERMISSIONS_SRC_TEMP values ('Program Coordinator','site.upd.site.mbrshp');
INSERT INTO PERMISSIONS_SRC_TEMP values ('Program Coordinator','site.upd.grp.mbrshp');
-- lookup the role and function numbers
create table PERMISSIONS_TEMP (ROLE_KEY INTEGER, FUNCTION_KEY INTEGER);
insert into PERMISSIONS_TEMP (ROLE_KEY, FUNCTION_KEY)
select SRR.ROLE_KEY, SRF.FUNCTION_KEY
from PERMISSIONS_SRC_TEMP TMPSRC
join SAKAI_REALM_ROLE SRR on (TMPSRC.ROLE_NAME = SRR.ROLE_NAME)
join SAKAI_REALM_FUNCTION SRF on (TMPSRC.FUNCTION_NAME = SRF.FUNCTION_NAME);
-- insert the new functions into the roles of any existing realm that has the role (don't convert the "!site.helper")
insert into SAKAI_REALM_RL_FN (REALM_KEY, ROLE_KEY, FUNCTION_KEY)
select
SRRFD.REALM_KEY, SRRFD.ROLE_KEY, TMP.FUNCTION_KEY
from
(select distinct SRRF.REALM_KEY, SRRF.ROLE_KEY from SAKAI_REALM_RL_FN SRRF) SRRFD
join PERMISSIONS_TEMP TMP on (SRRFD.ROLE_KEY = TMP.ROLE_KEY)
join SAKAI_REALM SR on (SRRFD.REALM_KEY = SR.REALM_KEY)
where SR.REALM_ID != '!site.helper'
and not exists (
select 1
from SAKAI_REALM_RL_FN SRRFI
where SRRFI.REALM_KEY=SRRFD.REALM_KEY and SRRFI.ROLE_KEY=SRRFD.ROLE_KEY and SRRFI.FUNCTION_KEY=TMP.FUNCTION_KEY
);
-- clean up the temp tables
drop table PERMISSIONS_TEMP;
drop table PERMISSIONS_SRC_TEMP;
-- Samigo
-- SAK-10441: Added indexes to imporve Samigo performance
-- also released in sakai_2_4_0-2_4_x_mysql_conversion_002.sql (SAK-10454)
create index SAM_ASSGRAD_AID_PUBASSEID_T on SAM_ASSESSMENTGRADING_T (AGENTID,PUBLISHEDASSESSMENTID);
-- SAK-13205: missing default permissions for osp tools
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Participant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.use'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Participant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.comment'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Participant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.copy'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Participant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Participant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Participant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Participant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Participant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Participant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.view'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Participant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.matrix.scaffolding.use'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Participant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.comment'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Participant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.copy'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Participant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Participant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Participant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.delete'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Participant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.presentation.layout.edit'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Participant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.style.create'));
INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.portfolio'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'CIG Participant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'osp.wizard.view'));
INSERT INTO SAKAI_REALM_RL_FN
SELECT DISTINCT SR.REALM_KEY, SRR.ROLE_KEY, SRF.FUNCTION_KEY from SAKAI_REALM SR, SAKAI_REALM_ROLE SRR, SAKAI_REALM_FUNCTION SRF where SR.REALM_ID like '/site/~%' AND SRR.ROLE_NAME = 'maintain' AND SRF.FUNCTION_NAME = 'osp.matrix.scaffolding.use';
|
<reponame>kirikcoin/IPS
--
-- Initial data, required to be present for application to function properly.
-- Depends on database to be empty.
--
--
-- Creates system administrator, login: `admin', password: `<PASSWORD>'.
--
INSERT INTO users (`id`, `email`, `full_name`, `users_name`, `password`, `blocked`, `role`)
VALUES (1,
'<EMAIL>',
'Default Admin',
'<PASSWORD>',
'<PASSWORD>',
FALSE,
'admin');
|
<gh_stars>0
CREATE DATABASE IF NOT EXISTS `sharing_economy_platform` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `sharing_economy_platform`;
-- MySQL dump 10.13 Distrib 5.7.9, for Win64 (x86_64)
--
-- Host: localhost Database: sharing_economy_platform
-- ------------------------------------------------------
-- Server version 5.5.49
/*!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 `admin_credentials`
--
DROP TABLE IF EXISTS `admin_credentials`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin_credentials` (
`userCategory` varchar(45) NOT NULL,
`userid` varchar(50) NOT NULL,
`password` varchar(30) NOT NULL,
PRIMARY KEY (`userid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `admin_credentials`
--
LOCK TABLES `admin_credentials` WRITE;
/*!40000 ALTER TABLE `admin_credentials` DISABLE KEYS */;
INSERT INTO `admin_credentials` VALUES ('Admin','admin','admin');
/*!40000 ALTER TABLE `admin_credentials` 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 2021-02-24 16:32:23
|
DELETE FROM my_employee
|
<gh_stars>0
CREATE INDEX ON my_table USING GIST (my_inet_column inet_ops);
|
<reponame>lz1988/stourwebcms<gh_stars>1-10
insert into sline_photo_attr values('1','0','1','名山名景','1','1','6','0','','','');
insert into sline_photo_attr values('2','0','2','冰川','2','0','6','0','','','');
insert into sline_photo_attr values('3','0','3','海岛','3','1','6','0','','','');
insert into sline_photo_attr values('4','0','4','城市','4','1','6','0','','','');
insert into sline_photo_attr values('5','0','5','古城建筑','2','1','6','0','','','');
insert into sline_photo_attr values('6','0','6','默认','0','1','0','0','','','');
insert into sline_photo_attr values('7','0','7','公园','6','1','6','0','','','');
insert into sline_photo_attr values('8','0','8','教堂','7','1','6','0','','','');
insert into sline_photo_attr values('9','0','9','海湾','8','1','6','0','','','');
insert into sline_photo_attr values('10','0','10','文化馆','9','1','6','0','','','');
insert into sline_photo_attr values('11','0','11','寺庙','10','1','6','0','','','');
insert into sline_photo_attr values('12','0','12','广场','11','1','6','0','','','');
|
-- Update existing states.
UPDATE `States` SET `state_code` = 'AGU', `name` = 'Aguascalientes' WHERE `country_id` = 'MX' AND `state_code` = 'AG';
UPDATE `States` SET `state_code` = 'BCN', `name` = 'Baja California' WHERE `country_id` = 'MX' AND `state_code` = 'BN';
UPDATE `States` SET `state_code` = 'BCS', `name` = 'Baja California Sur' WHERE `country_id` = 'MX' AND `state_code` = 'BS';
UPDATE `States` SET `state_code` = 'CAM', `name` = 'Campeche' WHERE `country_id` = 'MX' AND `state_code` = 'CM';
UPDATE `States` SET `state_code` = 'CHH', `name` = 'Chihuahua' WHERE `country_id` = 'MX' AND `state_code` = 'CH';
UPDATE `States` SET `state_code` = 'CHP', `name` = 'Chiapas' WHERE `country_id` = 'MX' AND `state_code` = 'CP';
UPDATE `States` SET `state_code` = 'COA', `name` = 'Coahuila de Zaragoza' WHERE `country_id` = 'MX' AND `state_code` = 'CA';
UPDATE `States` SET `state_code` = 'COL', `name` = 'Colima' WHERE `country_id` = 'MX' AND `state_code` = 'CL';
UPDATE `States` SET `state_code` = 'CMX', `name` = 'Ciudad de México' WHERE `country_id` = 'MX' AND `state_code` = 'DF';
UPDATE `States` SET `state_code` = 'DUR', `name` = 'Durango' WHERE `country_id` = 'MX' AND `state_code` = 'DU';
UPDATE `States` SET `state_code` = 'GRO', `name` = 'Guerrero' WHERE `country_id` = 'MX' AND `state_code` = 'GR';
UPDATE `States` SET `state_code` = 'GUA', `name` = 'Guanajuato' WHERE `country_id` = 'MX' AND `state_code` = 'GJ';
UPDATE `States` SET `state_code` = 'HID', `name` = 'Hidalgo' WHERE `country_id` = 'MX' AND `state_code` = 'HI';
UPDATE `States` SET `state_code` = 'JAL', `name` = 'Jalisco' WHERE `country_id` = 'MX' AND `state_code` = 'JA';
UPDATE `States` SET `state_code` = 'MEX', `name` = 'México' WHERE `country_id` = 'MX' AND `state_code` = 'MX';
UPDATE `States` SET `state_code` = 'MIC', `name` = 'Michoacán de Ocampo' WHERE `country_id` = 'MX' AND `state_code` = 'MC';
UPDATE `States` SET `state_code` = 'MOR', `name` = 'Morelos' WHERE `country_id` = 'MX' AND `state_code` = 'MR';
UPDATE `States` SET `state_code` = 'NAY', `name` = 'Nayarit' WHERE `country_id` = 'MX' AND `state_code` = 'NA';
UPDATE `States` SET `state_code` = 'NLE', `name` = 'Nuevo León' WHERE `country_id` = 'MX' AND `state_code` = 'NL';
UPDATE `States` SET `state_code` = 'OAX', `name` = 'Oaxaca' WHERE `country_id` = 'MX' AND `state_code` = 'OA';
UPDATE `States` SET `state_code` = 'PUE', `name` = 'Puebla' WHERE `country_id` = 'MX' AND `state_code` = 'PU';
UPDATE `States` SET `state_code` = 'QUE', `name` = 'Querétaro' WHERE `country_id` = 'MX' AND `state_code` = 'QE';
UPDATE `States` SET `state_code` = 'ROO', `name` = '<NAME>' WHERE `country_id` = 'MX' AND `state_code` = 'QR';
UPDATE `States` SET `state_code` = 'SIN', `name` = 'Sinaloa' WHERE `country_id` = 'MX' AND `state_code` = 'SI';
UPDATE `States` SET `state_code` = 'SLP', `name` = '<NAME>' WHERE `country_id` = 'MX' AND `state_code` = 'SL';
UPDATE `States` SET `state_code` = 'SON', `name` = 'Sonora' WHERE `country_id` = 'MX' AND `state_code` = 'SO';
UPDATE `States` SET `state_code` = 'TAB', `name` = 'Tabasco' WHERE `country_id` = 'MX' AND `state_code` = 'TB';
UPDATE `States` SET `state_code` = 'TAM', `name` = 'Tamaulipas' WHERE `country_id` = 'MX' AND `state_code` = 'TM';
UPDATE `States` SET `state_code` = 'TLA', `name` = 'Tlaxcala' WHERE `country_id` = 'MX' AND `state_code` = 'TL';
UPDATE `States` SET `state_code` = 'VER', `name` = 'Veracruz de Ignacio de la Llave' WHERE `country_id` = 'MX' AND `state_code` = 'VE';
UPDATE `States` SET `state_code` = 'YUC', `name` = 'Yucatán' WHERE `country_id` = 'MX' AND `state_code` = 'YU';
UPDATE `States` SET `state_code` = 'ZAC', `name` = 'Zacatecas' WHERE `country_id` = 'MX' AND `state_code` = 'ZA';
UPDATE `States` SET `state_code` = 'AMA', `name` = 'Amarumayu' WHERE `country_id` = 'PE' AND `state_code` = 'AM';
UPDATE `States` SET `state_code` = 'ANC', `name` = 'Ancash' WHERE `country_id` = 'PE' AND `state_code` = 'AN';
UPDATE `States` SET `state_code` = 'APU', `name` = 'Apurímac' WHERE `country_id` = 'PE' AND `state_code` = 'AP';
UPDATE `States` SET `state_code` = 'ARE', `name` = 'Arequipa' WHERE `country_id` = 'PE' AND `state_code` = 'AR';
UPDATE `States` SET `state_code` = 'AYA', `name` = 'Ayacucho' WHERE `country_id` = 'PE' AND `state_code` = 'AY';
UPDATE `States` SET `state_code` = 'CAJ', `name` = 'Cajamarca' WHERE `country_id` = 'PE' AND `state_code` = 'CJ';
UPDATE `States` SET `state_code` = 'CAL', `name` = 'El Callao' WHERE `country_id` = 'PE' AND `state_code` = 'CL';
UPDATE `States` SET `state_code` = 'CUS', `name` = 'Cusco' WHERE `country_id` = 'PE' AND `state_code` = 'CS';
UPDATE `States` SET `state_code` = 'HUC', `name` = 'Huánuco' WHERE `country_id` = 'PE' AND `state_code` = 'HU';
UPDATE `States` SET `state_code` = 'HUV', `name` = 'Huancavelica' WHERE `country_id` = 'PE' AND `state_code` = 'HC';
UPDATE `States` SET `state_code` = 'ICA', `name` = 'Ica' WHERE `country_id` = 'PE' AND `state_code` = 'IC';
UPDATE `States` SET `state_code` = 'JUN', `name` = 'Hunin' WHERE `country_id` = 'PE' AND `state_code` = 'JU';
UPDATE `States` SET `state_code` = 'LAL', `name` = 'La Libertad' WHERE `country_id` = 'PE' AND `state_code` = 'LL';
UPDATE `States` SET `state_code` = 'LAM', `name` = 'Lambayeque' WHERE `country_id` = 'PE' AND `state_code` = 'LY';
UPDATE `States` SET `state_code` = 'LIM', `name` = 'Lima' WHERE `country_id` = 'PE' AND `state_code` = 'LD';
UPDATE `States` SET `state_code` = 'LMA', `name` = 'Lima hatun llaqta' WHERE `country_id` = 'PE' AND `state_code` = 'LM';
UPDATE `States` SET `state_code` = 'LOR', `name` = 'Loreto' WHERE `country_id` = 'PE' AND `state_code` = 'LO';
UPDATE `States` SET `state_code` = 'MDD', `name` = 'Madre de Dios' WHERE `country_id` = 'PE' AND `state_code` = 'MA';
UPDATE `States` SET `state_code` = 'MOQ', `name` = 'Moquegua' WHERE `country_id` = 'PE' AND `state_code` = 'MO';
UPDATE `States` SET `state_code` = 'PAS', `name` = 'Pasco' WHERE `country_id` = 'PE' AND `state_code` = 'PA';
UPDATE `States` SET `state_code` = 'PIU', `name` = 'Piura' WHERE `country_id` = 'PE' AND `state_code` = 'PI';
UPDATE `States` SET `state_code` = 'PUN', `name` = 'Puno' WHERE `country_id` = 'PE' AND `state_code` = 'PU';
UPDATE `States` SET `state_code` = 'SAM', `name` = 'San Martin' WHERE `country_id` = 'PE' AND `state_code` = 'SA';
UPDATE `States` SET `state_code` = 'TAC', `name` = 'Tacna' WHERE `country_id` = 'PE' AND `state_code` = 'TA';
UPDATE `States` SET `state_code` = 'TUM', `name` = 'Tumbes' WHERE `country_id` = 'PE' AND `state_code` = 'TU';
UPDATE `States` SET `state_code` = 'UCA', `name` = 'Ucayali' WHERE `country_id` = 'PE' AND `state_code` = 'UC';
-- Unbotch Peru states in users.
UPDATE `Users` SET `state_id` = 84 WHERE `state_id` = 1 AND `country_id` = 'PE';
UPDATE `Users` SET `state_id` = 85 WHERE `state_id` = 2 AND `country_id` = 'PE';
UPDATE `Users` SET `state_id` = 86 WHERE `state_id` = 3 AND `country_id` = 'PE';
UPDATE `Users` SET `state_id` = 87 WHERE `state_id` = 4 AND `country_id` = 'PE';
UPDATE `Users` SET `state_id` = 88 WHERE `state_id` = 5 AND `country_id` = 'PE';
UPDATE `Users` SET `state_id` = 89 WHERE `state_id` = 6 AND `country_id` = 'PE';
UPDATE `Users` SET `state_id` = 90 WHERE `state_id` = 7 AND `country_id` = 'PE';
UPDATE `Users` SET `state_id` = 91 WHERE `state_id` = 8 AND `country_id` = 'PE';
UPDATE `Users` SET `state_id` = 92 WHERE `state_id` = 9 AND `country_id` = 'PE';
UPDATE `Users` SET `state_id` = 93 WHERE `state_id` = 10 AND `country_id` = 'PE';
UPDATE `Users` SET `state_id` = 94 WHERE `state_id` = 11 AND `country_id` = 'PE';
UPDATE `Users` SET `state_id` = 95 WHERE `state_id` = 12 AND `country_id` = 'PE';
UPDATE `Users` SET `state_id` = 96 WHERE `state_id` = 13 AND `country_id` = 'PE';
UPDATE `Users` SET `state_id` = 97 WHERE `state_id` = 14 AND `country_id` = 'PE';
UPDATE `Users` SET `state_id` = 98 WHERE `state_id` = 15 AND `country_id` = 'PE';
UPDATE `Users` SET `state_id` = 99 WHERE `state_id` = 16 AND `country_id` = 'PE';
UPDATE `Users` SET `state_id` = 100 WHERE `state_id` = 17 AND `country_id` = 'PE';
UPDATE `Users` SET `state_id` = 101 WHERE `state_id` = 18 AND `country_id` = 'PE';
UPDATE `Users` SET `state_id` = 102 WHERE `state_id` = 19 AND `country_id` = 'PE';
UPDATE `Users` SET `state_id` = 103 WHERE `state_id` = 20 AND `country_id` = 'PE';
UPDATE `Users` SET `state_id` = 104 WHERE `state_id` = 21 AND `country_id` = 'PE';
UPDATE `Users` SET `state_id` = 105 WHERE `state_id` = 22 AND `country_id` = 'PE';
UPDATE `Users` SET `state_id` = 106 WHERE `state_id` = 23 AND `country_id` = 'PE';
UPDATE `Users` SET `state_id` = 107 WHERE `state_id` = 24 AND `country_id` = 'PE';
UPDATE `Users` SET `state_id` = 108 WHERE `state_id` = 25 AND `country_id` = 'PE';
UPDATE `Users` SET `state_id` = 109 WHERE `state_id` = 26 AND `country_id` = 'PE';
-- Add missing countries.
INSERT INTO
Countries (country_id, name)
VALUES
('BQ', 'Bonaire, Sint Eustatius and Saba'),
('CW', 'Curaçao'),
('SS', 'South Sudan'),
('SX', 'St. Maarten');
-- Add missing states.
INSERT INTO
States (country_id, name, state_code)
VALUES
('BD', 'Rajshahi', 'E'),
('BD', 'Netrakona', '41'),
('BD', 'Sylhet', 'G'),
('BD', 'Moulvibazar', '38'),
('BD', 'Barisal', 'A'),
('BD', 'Dhaka', 'C'),
('BD', 'Chittagong', 'B'),
('BD', 'Khulna', 'D'),
('BD', 'Nilphamari', '46'),
('BD', 'Sirajganj', '59'),
('BD', 'Rangpur', '55'),
('BD', 'Noakhali', '47'),
('BD', 'Sylhet', '60'),
('BD', 'Pabna', '49'),
('BD', 'Shariatpur', '62'),
('BD', 'Tangail', '63'),
('BD', 'Thakurgaon', '64'),
('BD', 'Jessore', '22'),
('BD', 'Madaripur', '36'),
('BD', 'Sunamganj', '61'),
('BD', 'Jhenaidah', '23'),
('BD', 'Barisal', '06'),
('BD', 'Bhola', '07'),
('BD', 'Brahmanbaria', '04'),
('BD', 'Bagerhat', '05'),
('BD', 'Barguna', '02'),
('BD', 'Bogra', '03'),
('BD', 'Bandarban', '01'),
('BD', 'Jaipurhat', '24'),
('BD', 'Jhalakati', '25'),
('BD', 'Kishoreganj', '26'),
('BD', 'Khulna', '27'),
('BD', 'Habiganj', '20'),
('BD', 'Jamalpur', '21'),
('BD', 'Comilla', '08'),
('BD', 'Chandpur', '09'),
('BD', 'Munshiganj', '35'),
('BD', 'Rajshahi', '54'),
('BD', 'Manikganj', '33'),
('BD', 'Satkhira', '58'),
('BD', 'Rangpur', 'F'),
('BD', 'Lalmonirhat', '32'),
('BD', 'Lakshmipur', '31'),
('BD', 'Rajbari', '53'),
('BD', 'Kushtia', '30'),
('BD', 'Kurigram', '28'),
('BD', 'Natore', '44'),
('BD', 'Naogaon', '48'),
('BD', 'Khagrachari', '29'),
('BD', 'Faridpur', '15'),
('BD', 'Dinajpur', '14'),
('BD', 'Gopalganj', '17'),
('BD', 'Feni', '16'),
('BD', 'Cox\'s Bazar', '11'),
('BD', 'Chittagong', '10'),
('BD', 'Dhaka', '13'),
('BD', 'Chuadanga', '12'),
('BD', 'Patuakhali', '51'),
('BD', 'Pirojpur', '50'),
('BD', 'Meherpur', '39'),
('BD', 'Mymensingh', '34'),
('BD', 'Gaibandha', '19'),
('BD', 'Gazipur', '18'),
('BD', 'Sherpur', '57'),
('BD', 'Panchagarh', '52'),
('BD', 'Narsingdi', '42'),
('BD', 'Nawabganj', '45'),
('BD', 'Narail', '43'),
('BD', 'Magura', '37'),
('BD', 'Narayanganj', '40'),
('BD', 'Rangamati', '56');
INSERT INTO
States (country_id, name, state_code)
VALUES
('BE', 'West-Vlaanderen', 'VWV'),
('BE', 'Antwerpen', 'VAN'),
('BE', '<NAME>', 'VLG'),
('BE', 'Limburg', 'VLI'),
('BE', 'Brabant wallon', 'WBR'),
('BE', 'Vlaams-Brabant', 'VBR'),
('BE', 'Oost-Vlaanderen', 'VOV'),
('BE', 'Liège', 'WLG'),
('BE', 'Luxembourg', 'WLX'),
('BE', 'Hainaut', 'WHT'),
('BE', 'wallonne, Région', 'WAL'),
('BE', 'Brussels Hoofdstedelijk Gewest', 'BRU'),
('BE', 'Namur', 'WNA');
INSERT INTO
States (country_id, name, state_code)
VALUES
('BF', 'Séno', 'SEN'),
('BF', 'Kénédougou', 'KEN'),
('BF', 'Boulkiemdé', 'BLK'),
('BF', 'Namentenga', 'NAM'),
('BF', 'Nahouri', 'NAO'),
('BF', 'Boulgou', 'BLG'),
('BF', 'Koulpélogo', 'KOP'),
('BF', 'Kadiogo', 'KAD'),
('BF', 'Boucle du Mouhoun', '01'),
('BF', 'Cascades', '02'),
('BF', 'Centre', '03'),
('BF', 'Centre-Est', '04'),
('BF', 'Centre-Nord', '05'),
('BF', 'Centre-Ouest', '06'),
('BF', 'Centre-Sud', '07'),
('BF', 'Est', '08'),
('BF', 'Hauts-Bassins', '09'),
('BF', 'Yatenga', 'YAT'),
('BF', 'Passoré', 'PAS'),
('BF', 'Yagha', 'YAG'),
('BF', 'Ioba', 'IOB'),
('BF', 'Gnagna', 'GNA'),
('BF', 'Poni', 'PON'),
('BF', 'Houet', 'HOU'),
('BF', 'Léraba', 'LER'),
('BF', 'Komondjari', 'KMD'),
('BF', 'Sanmatenga', 'SMT'),
('BF', 'Zondoma', 'ZON'),
('BF', 'Mouhoun', 'MOU'),
('BF', 'Comoé', 'COM'),
('BF', 'Tui', 'TUI'),
('BF', 'Sissili', 'SIS'),
('BF', 'Ganzourgou', 'GAN'),
('BF', 'Bougouriba', 'BGR'),
('BF', 'Sourou', 'SOR'),
('BF', 'Ziro', 'ZIR'),
('BF', 'Kourwéogo', 'KOW'),
('BF', 'Soum', 'SOM'),
('BF', 'Kouritenga', 'KOT'),
('BF', 'Sud-Ouest', '13'),
('BF', 'Sahel', '12'),
('BF', 'Plateau-Central', '11'),
('BF', 'Nord', '10'),
('BF', 'Zoundwéogo', 'ZOU'),
('BF', 'Loroum', 'LOR'),
('BF', 'Balé', 'BAL'),
('BF', 'Bam', 'BAM'),
('BF', 'Banwa', 'BAN'),
('BF', 'Oubritenga', 'OUB'),
('BF', 'Oudalan', 'OUD'),
('BF', 'Nayala', 'NAY'),
('BF', 'Noumbiel', 'NOU'),
('BF', 'Kossi', 'KOS'),
('BF', 'Tapoa', 'TAP'),
('BF', 'Bazèga', 'BAZ'),
('BF', 'Sanguié', 'SNG'),
('BF', 'Kompienga', 'KMP'),
('BF', 'Gourma', 'GOU');
INSERT INTO
States (country_id, name, state_code)
VALUES
('BG', 'Pernik', '14'),
('BG', 'Pleven', '15'),
('BG', 'Plovdiv', '16'),
('BG', 'Razgrad', '17'),
('BG', 'Kyustendil', '10'),
('BG', 'Lovech', '11'),
('BG', 'Montana', '12'),
('BG', 'Pazardzhik', '13'),
('BG', 'Ruse', '18'),
('BG', 'Silistra', '19'),
('BG', 'Targovishte', '25'),
('BG', '<NAME>', '24'),
('BG', 'Shumen', '27'),
('BG', 'Gabrovo', '07'),
('BG', 'Vratsa', '06'),
('BG', 'Sofia', '23'),
('BG', '<NAME>', '04'),
('BG', 'Kardzhali', '09'),
('BG', 'Dobrich', '08'),
('BG', 'Yambol', '28'),
('BG', 'Varna', '03'),
('BG', 'Burgas', '02'),
('BG', 'Blagoevgrad', '01'),
('BG', 'Haskovo', '26'),
('BG', 'Smolyan', '21'),
('BG', 'Sliven', '20'),
('BG', 'Vidin', '05'),
('BG', 'Sofia', '22');
INSERT INTO
States (country_id, name, state_code)
VALUES
('BA', 'Brčko distrikt', 'BRC'),
('BA', 'Kanton br. 10', '10'),
('BA', 'Federacija Bosne i Hercegovine', 'BIH'),
('BA', '<NAME>', '09'),
('BA', 'Zapadnohercegovačka županija', '08'),
('BA', 'Republika Srpska', 'SRP'),
('BA', 'Bosansko-podrinjska županija', '05'),
('BA', 'Zeničko-dobojska županija', '04'),
('BA', 'Hercegovačko-neretvanska županija', '07'),
('BA', 'Srednjobosanska županija', '06'),
('BA', 'Unsko-sanska županija', '01'),
('BA', 'Tuzlanska županija', '03'),
('BA', 'Posavska županija', '02');
INSERT INTO
States (country_id, name, state_code)
VALUES
('BB', 'Saint Thomas', '11'),
('BB', 'Saint Philip', '10'),
('BB', 'Saint Michael', '08'),
('BB', 'Saint Peter', '09'),
('BB', 'Saint James', '04'),
('BB', 'Saint John', '05'),
('BB', 'Saint Joseph', '06'),
('BB', 'Saint Lucy', '07'),
('BB', '<NAME>', '01'),
('BB', 'Saint Andrew', '02'),
('BB', 'Saint George', '03');
INSERT INTO
States (country_id, name, state_code)
VALUES
('WF', 'Wallis & Futuna Islands', 'WF');
INSERT INTO
States (country_id, name, state_code)
VALUES
('BL', 'St. Barthélemy', 'BL');
INSERT INTO
States (country_id, name, state_code)
VALUES
('BM', 'Bermuda', 'BM');
INSERT INTO
States (country_id, name, state_code)
VALUES
('BN', 'Temburong', 'TE'),
('BN', 'Brunei-Muara', 'BM'),
('BN', 'Tutong', 'TU'),
('BN', 'Belait', 'BE');
INSERT INTO
States (country_id, name, state_code)
VALUES
('BO', '<NAME>', 'B'),
('BO', 'Cochabamba', 'C'),
('BO', 'Pando', 'N'),
('BO', 'Oruro', 'O'),
('BO', 'La Paz', 'L'),
('BO', 'Chuquisaca', 'H'),
('BO', 'Tarija', 'T'),
('BO', 'Santa Cruz', 'S'),
('BO', 'Potosí', 'P');
INSERT INTO
States (country_id, name, state_code)
VALUES
('BH', 'Al Manāmah', '13'),
('BH', 'Al Muḩarraq', '15'),
('BH', 'Al Janūbīyah', '14'),
('BH', 'Ash Shamālīyah', '17'),
('BH', 'Al Wusţá', '16');
INSERT INTO
States (country_id, name, state_code)
VALUES
('BI', 'Bubanza', 'BB'),
('BI', 'Makamba', 'MA'),
('BI', 'Cibitoke', 'CI'),
('BI', 'Karuzi', 'KR'),
('BI', 'Ngozi', 'NG'),
('BI', 'Ruyigi', 'RY'),
('BI', 'Rutana', 'RT'),
('BI', 'Cankuzo', 'CA'),
('BI', 'Bujumbura Mairie', 'BM'),
('BI', 'Bujumbura Rural', 'BL'),
('BI', 'Bururi', 'BR'),
('BI', 'Mwaro', 'MW'),
('BI', 'Kirundo', 'KI'),
('BI', 'Muramvya', 'MU'),
('BI', 'Gitega', 'GI'),
('BI', 'Muyinga', 'MY'),
('BI', 'Kayanza', 'KY');
INSERT INTO
States (country_id, name, state_code)
VALUES
('BJ', 'Atakora', 'AK'),
('BJ', 'Borgou', 'BO'),
('BJ', 'Collines', 'CO'),
('BJ', 'Alibori', 'AL'),
('BJ', 'Mono', 'MO'),
('BJ', 'Littoral', 'LI'),
('BJ', 'Zou', 'ZO'),
('BJ', 'Ouémé', 'OU'),
('BJ', 'Plateau', 'PL'),
('BJ', 'Donga', 'DO'),
('BJ', 'Atlantique', 'AQ'),
('BJ', 'Kouffo', 'KO');
INSERT INTO
States (country_id, name, state_code)
VALUES
('BT', 'Bumthang', '33'),
('BT', 'Monggar', '42'),
('BT', 'Gasa', 'GA'),
('BT', 'Trongsa', '32'),
('BT', 'Zhemgang', '34'),
('BT', 'Sam<NAME>ongkha', '45'),
('BT', 'Thimphu', '15'),
('BT', 'Samtse', '14'),
('BT', 'Sarpang', '31'),
('BT', '<NAME>', 'TY'),
('BT', 'Paro', '11'),
('BT', 'Lhuentse', '44'),
('BT', 'Ha', '13'),
('BT', 'Chhukha', '12'),
('BT', '<NAME>', '24'),
('BT', 'Pemagatshel', '43'),
('BT', 'Trashigang', '41'),
('BT', 'Tsirang', '21'),
('BT', 'Dagana', '22'),
('BT', 'Punakha', '23');
INSERT INTO
States (country_id, name, state_code)
VALUES
('JM', 'Manchester', '12'),
('JM', '<NAME>', '14'),
('JM', '<NAME>', '11'),
('JM', 'Westmoreland', '10'),
('JM', 'Kingston', '01'),
('JM', 'Clarendon', '13'),
('JM', '<NAME>', '03'),
('JM', '<NAME>', '02'),
('JM', '<NAME>', '05'),
('JM', 'Portland', '04'),
('JM', 'Trelawny', '07'),
('JM', '<NAME>', '06'),
('JM', 'Hanover', '09'),
('JM', '<NAME>', '08');
INSERT INTO
States (country_id, name, state_code)
VALUES
('BV', 'Bouvet Island', 'BV');
INSERT INTO
States (country_id, name, state_code)
VALUES
('BW', 'Kweneng', 'KW'),
('BW', 'Jwaneng', 'JW'),
('BW', 'Francistown', 'FR'),
('BW', 'Chobe', 'CH'),
('BW', 'Southern', 'SO'),
('BW', 'Lobatse', 'LO'),
('BW', 'Sowa Town', 'ST'),
('BW', 'Central', 'CE'),
('BW', 'North West', 'NW'),
('BW', 'Kgalagadi', 'KG'),
('BW', 'Gaborone', 'GA'),
('BW', 'Selibe Phikwe', 'SP'),
('BW', 'Ghanzi', 'GH'),
('BW', 'South East', 'SE'),
('BW', 'North East', 'NE'),
('BW', 'Kgatleng', 'KL');
INSERT INTO
States (country_id, name, state_code)
VALUES
('WS', 'A\'ana', 'AA'),
('WS', 'Va\'a-o-Fonoti', 'VF'),
('WS', 'Satupa\'itea', 'SA'),
('WS', 'Fa\'asaleleaga', 'FA'),
('WS', 'Vaisigano', 'VS'),
('WS', 'Aiga-i-le-Tai', 'AL'),
('WS', 'Gagaifomauga', 'GI'),
('WS', 'Palauli', 'PA'),
('WS', 'Atua', 'AT'),
('WS', 'Tuamasaga', 'TU'),
('WS', 'Gaga\'emauga', 'GE');
INSERT INTO
States (country_id, name, state_code)
VALUES
('BQ', 'Sint Eustatius', 'SE'),
('BQ', 'Bonaire', 'BO'),
('BQ', 'Saba', 'SA');
INSERT INTO
States (country_id, name, state_code)
VALUES
('BR', 'Rio de Janeiro', 'RJ'),
('BR', 'Bahia', 'BA'),
('BR', 'Sergipe', 'SE'),
('BR', 'Distrito Federal', 'DF'),
('BR', 'São Paulo', 'SP'),
('BR', 'Santa Catarina', 'SC'),
('BR', 'Roraima', 'RR'),
('BR', 'Rio Grande do Sul', 'RS'),
('BR', 'Amapá', 'AP'),
('BR', 'Ceará', 'CE'),
('BR', 'Goiás', 'GO'),
('BR', 'Amazonas', 'AM'),
('BR', 'Alagoas', 'AL'),
('BR', 'Acre', 'AC'),
('BR', 'Piauí', 'PI'),
('BR', 'Rio Grande do Norte', 'RN'),
('BR', 'Rondônia', 'RO'),
('BR', 'Mato Grosso', 'MT'),
('BR', 'Mato Grosso do Sul', 'MS'),
('BR', 'Pará', 'PA'),
('BR', 'Paraíba', 'PB'),
('BR', 'Espírito Santo', 'ES'),
('BR', 'Paraná', 'PR'),
('BR', 'Pernambuco', 'PE'),
('BR', 'Minas Gerais', 'MG'),
('BR', 'Maranhão', 'MA'),
('BR', 'Tocantins', 'TO');
INSERT INTO
States (country_id, name, state_code)
VALUES
('BS', 'South Andros', 'SA'),
('BS', 'Exuma', 'EX'),
('BS', 'Central Andros', 'CS'),
('BS', 'Crooked Island and Long Cay', 'CK'),
('BS', 'Cat Island', 'CI'),
('BS', 'Grand Cay', 'GC'),
('BS', 'East Grand Bahama', 'EG'),
('BS', 'Central Eleuthera', 'CE'),
('BS', 'Ragged Island', 'RI'),
('BS', 'Rum Cay', 'RC'),
('BS', 'Acklins', 'AK'),
('BS', 'Mayaguana', 'MG'),
('BS', 'Inagua', 'IN'),
('BS', 'Mangrove Cay', 'MC'),
('BS', 'Moore\'s Island', 'MI'),
('BS', 'Berry Islands', 'BY'),
('BS', 'City of Freeport', 'FP'),
('BS', 'Black Point', 'BP'),
('BS', 'Long Island', 'LI'),
('BS', 'Bimini', 'BI'),
('BS', 'West Grand Bahama', 'WG'),
('BS', 'North Abaco', 'NO'),
('BS', 'South Abaco', 'SO'),
('BS', 'North Eleuthera', 'NE'),
('BS', 'Hope Town', 'HT'),
('BS', 'South Eleuthera', 'SE'),
('BS', 'Harbour Island', 'HI'),
('BS', 'San Salvador', 'SS'),
('BS', 'Spanish Wells', 'SW'),
('BS', 'North Andros', 'NS'),
('BS', 'Central Abaco', 'CO');
INSERT INTO
States (country_id, name, state_code)
VALUES
('JE', 'Jersey', 'JE');
INSERT INTO
States (country_id, name, state_code)
VALUES
('BY', '<NAME>', 'HM'),
('BY', 'Bresckaja voblasć', 'BR'),
('BY', 'Gomel\'skaja oblast\'', 'HO'),
('BY', 'Mahilioŭsk<NAME>oblasć', 'MA'),
('BY', 'Minskaja oblast\'', 'MI'),
('BY', 'Viciebskaja voblasć', 'VI'),
('BY', 'Grodnenskaja oblast\'', 'HR');
INSERT INTO
States (country_id, name, state_code)
VALUES
('BZ', 'Cayo', 'CY'),
('BZ', 'Corozal', 'CZL'),
('BZ', 'Stann Creek', 'SC'),
('BZ', 'Belize', 'BZ'),
('BZ', 'Toledo', 'TOL'),
('BZ', 'Orange Walk', 'OW');
INSERT INTO
States (country_id, name, state_code)
VALUES
('RU', 'Penzenskaja oblast\'', 'PNZ'),
('RU', 'Kurskaja oblast\'', 'KRS'),
('RU', 'Ul\'janovskaja oblast\'', 'ULY'),
('RU', 'Belgorodskaja oblast\'', 'BEL'),
('RU', 'Sahalinskaja oblast\'', 'SAK'),
('RU', 'Krasnojarskij kraj', 'KYA'),
('RU', 'Stavropol\'skij kraj', 'STA'),
('RU', 'Ivanovskaja oblast\'', 'IVA'),
('RU', 'Lipeckaja oblast\'', 'LIP'),
('RU', 'Astrahanskaja oblast\'', 'AST'),
('RU', 'Čečenskaja Respublika', 'CE'),
('RU', 'Habarovskij kraj', 'KHA'),
('RU', 'Orenburgskaja oblast\'', 'ORE'),
('RU', 'Vologodskaja oblast\'', 'VLG'),
('RU', 'Jaroslavskaja oblast\'', 'YAR'),
('RU', 'Novgorodskaja oblast\'', 'NGR'),
('RU', 'Kaluzhskaya oblast\'', 'KLU'),
('RU', 'Omskaja oblast\'', 'OMS'),
('RU', 'Irkutskaja oblast\'', 'IRK'),
('RU', 'Orlovskaja oblast\'', 'ORL'),
('RU', 'Dagestan, Respublika', 'DA'),
('RU', 'Primorskij kraj', 'PRI'),
('RU', 'Samarskaja oblast\'', 'SAM'),
('RU', 'Saratovskaja oblast\'', 'SAR'),
('RU', 'Kostromskaja oblast\'', 'KOS'),
('RU', 'Sankt-Peterburg', 'SPE'),
('RU', 'Nižegorodskaja oblast\'', 'NIZ'),
('RU', 'Saha, Respublika', 'SA'),
('RU', 'Hanty-Mansijskij avtonomnyj okrug', 'KHM'),
('RU', 'Leningradskaja oblast\'', 'LEN'),
('RU', 'Čeljabinskaja oblast\'', 'CHE'),
('RU', 'Bashkortostan, Respublika', 'BA'),
('RU', 'Severnaja Osetija, Respublika', 'SE'),
('RU', 'Moskovskaja oblast\'', 'MOS'),
('RU', 'Jamalo-Neneckij avtonomnyj okrug', 'YAN'),
('RU', 'Kaliningradskaja oblast\'', 'KGD'),
('RU', 'Moskva', 'MOW'),
('RU', 'Kamčatskij kraj', 'KAM'),
('RU', 'Arhangel\'skaja oblast\'', 'ARK'),
('RU', 'Burjatija, Respublika', 'BU'),
('RU', 'Kemerovskaja oblast\'', 'KEM'),
('RU', 'Chukotskiy avtonomnyy okrug', 'CHU'),
('RU', 'Udmurtskaja Respublika', 'UD'),
('RU', 'Kurganskaja oblast\'', 'KGN'),
('RU', 'Tul\'skaja oblast\'', 'TUL'),
('RU', 'Kirovskaja oblast\'', 'KIR'),
('RU', 'Karelija, Respublika', 'KR'),
('RU', 'Marij Èl, Respublika', 'ME'),
('RU', 'Ingušetija, Respublika', 'IN'),
('RU', 'Magadanskaja oblast\'', 'MAG'),
('RU', 'Mordovija, Respublika', 'MO'),
('RU', 'Tatarstan, Respublika', 'TA'),
('RU', 'Sverdlovskaja oblast\'', 'SVE'),
('RU', 'Rjazanskaja oblast\'', 'RYA'),
('RU', 'Zabajkal\'skij kraj', 'ZAB'),
('RU', 'Neneckij avtonomnyj okrug', 'NEN'),
('RU', 'Kabardino-Balkarskaja Respublika', 'KB'),
('RU', 'Altajskij kraj', 'ALT'),
('RU', 'Tyva, Respublika', 'TY'),
('RU', 'Murmanskaja oblast\'', 'MUR'),
('RU', 'Voronezhskaya oblast\'', 'VOR'),
('RU', 'Pskovskaja oblast\'', 'PSK'),
('RU', 'Tverskaja oblast\'', 'TVE'),
('RU', 'Volgogradskaja oblast\'', 'VGG'),
('RU', 'Hakasija, Respublika', 'KK'),
('RU', 'Kalmykija, Respublika', 'KL'),
('RU', 'Tomskaja oblast\'', 'TOM'),
('RU', 'Komi, Respublika', 'KO'),
('RU', 'Tjumenskaja oblast\'', 'TYU'),
('RU', 'Tambovskaja oblast\'', 'TAM'),
('RU', 'Novosibirskaja oblast\'', 'NVS'),
('RU', 'Adygeja, Respublika', 'AD'),
('RU', 'Permskij kraj', 'PER'),
('RU', 'Rostovskaja oblast\'', 'ROS'),
('RU', 'Amurskaja oblast\'', 'AMU'),
('RU', 'Altaj, Respublika', 'AL'),
('RU', 'Karačaevo-Čerkesskaja Respublika', 'KC'),
('RU', 'Krasnodarskij kraj', 'KDA'),
('RU', 'Evrejskaja avtonomnaja oblast\'', 'YEV'),
('RU', 'Vladimirskaja oblast\'', 'VLA'),
('RU', 'Brjanskaja oblast\'', 'BRY'),
('RU', 'Smolenskaja oblast\'', 'SMO'),
('RU', 'Chuvashskaya Respublika', 'CU');
INSERT INTO
States (country_id, name, state_code)
VALUES
('RW', 'Nord', '03'),
('RW', 'Est', '02'),
('RW', 'Ville de Kigal', '01'),
('RW', 'Sud', '05'),
('RW', 'Ouest', '04');
INSERT INTO
States (country_id, name, state_code)
VALUES
('RS', 'Sremski okrug', '07'),
('RS', 'Južnobački okrug', '06'),
('RS', 'Zapadnobački okrug', '05'),
('RS', 'Južnobanatski okrug', '04'),
('RS', 'Severnobanatski okrug', '03'),
('RS', 'Srednjebanatski okrug', '02'),
('RS', 'Severnobački okrug', '01'),
('RS', 'Beograd', '00'),
('RS', 'Kolubarski okrug', '09'),
('RS', 'Mačvanski okrug', '08'),
('RS', 'Kosovsko-Pomoravski okrug', '29'),
('RS', 'Kosovsko-Mitrovački okrug', '28'),
('RS', 'Toplički okrug', '21'),
('RS', 'Nišavski okrug', '20'),
('RS', 'Jablanički okrug', '23'),
('RS', 'Pirotski okrug', '22'),
('RS', 'Kosovski okrug', '25'),
('RS', 'Pčinjski okrug', '24'),
('RS', 'Prizrenski okrug', '27'),
('RS', 'Pećki okrug', '26'),
('RS', 'Vojvodina', 'VO'),
('RS', 'Podunavski okrug', '10'),
('RS', 'Braničevski okrug', '11'),
('RS', 'Šumadijski okrug', '12'),
('RS', 'Pomoravski okrug', '13'),
('RS', 'Borski okrug', '14'),
('RS', 'Zaječarski okrug', '15'),
('RS', 'Zlatiborski okrug', '16'),
('RS', 'Moravički okrug', '17'),
('RS', 'Raški okrug', '18'),
('RS', 'Rasinski okrug', '19'),
('RS', 'Kosovo-Metohija', 'KM');
INSERT INTO
States (country_id, name, state_code)
VALUES
('TL', 'Ermera', 'ER'),
('TL', 'Lautém', 'LA'),
('TL', 'Oecussi', 'OE'),
('TL', 'Ainaro', 'AN'),
('TL', 'Aileu', 'AL'),
('TL', 'Manufahi', 'MF'),
('TL', 'Manatuto', 'MT'),
('TL', 'Vikeke', 'VI'),
('TL', 'Bobonaro', 'BO'),
('TL', 'Cova Lima', 'CO'),
('TL', 'Baucau', 'BA'),
('TL', 'Likisá', 'LI'),
('TL', 'Díli', 'DI');
INSERT INTO
States (country_id, name, state_code)
VALUES
('RE', 'Reunion', 'RE');
INSERT INTO
States (country_id, name, state_code)
VALUES
('TM', 'Aşgabat', 'S'),
('TM', 'Lebap', 'L'),
('TM', 'Mary', 'M'),
('TM', 'Daşoguz', 'D'),
('TM', 'Balkan', 'B'),
('TM', 'Ahal', 'A');
INSERT INTO
States (country_id, name, state_code)
VALUES
('TJ', 'Kŭhistoni Badakhshon', 'GB'),
('TJ', 'Sughd', 'SU'),
('TJ', 'Dushanbe', 'DU'),
('TJ', 'Khatlon', 'KT');
INSERT INTO
States (country_id, name, state_code)
VALUES
('RO', 'Sibiu', 'SB'),
('RO', 'Dâmboviţa', 'DB'),
('RO', 'Satu Mare', 'SM'),
('RO', 'Sălaj', 'SJ'),
('RO', 'Dolj', 'DJ'),
('RO', 'Hunedoara', 'HD'),
('RO', 'Suceava', 'SV'),
('RO', 'Bucureşti', 'B'),
('RO', 'Harghita', 'HR'),
('RO', 'Vaslui', 'VS'),
('RO', 'Neamţ', 'NT'),
('RO', 'Covasna', 'CV'),
('RO', 'Constanţa', 'CT'),
('RO', 'Caraş-Severin', 'CS'),
('RO', 'Giurgiu', 'GR'),
('RO', 'Vrancea', 'VN'),
('RO', 'Arad', 'AR'),
('RO', 'Gorj', 'GJ'),
('RO', 'Galaţi', 'GL'),
('RO', 'Călăraşi', 'CL'),
('RO', 'Argeş', 'AG'),
('RO', 'Cluj', 'CJ'),
('RO', 'Alba', 'AB'),
('RO', 'Prahova', 'PH'),
('RO', 'Teleorman', 'TR'),
('RO', 'Olt', 'OT'),
('RO', 'Iaşi', 'IS'),
('RO', 'Vâlcea', 'VL'),
('RO', 'Mureş', 'MS'),
('RO', 'Mehedinţi', 'MH'),
('RO', 'Ilfov', 'IF'),
('RO', 'Maramureş', 'MM'),
('RO', 'Ialomiţa', 'IL'),
('RO', 'Timiş', 'TM'),
('RO', 'Tulcea', 'TL'),
('RO', 'Botoşani', 'BT'),
('RO', 'Braşov', 'BV'),
('RO', 'Brăila', 'BR'),
('RO', 'Buzău', 'BZ'),
('RO', 'Bacău', 'BC'),
('RO', 'Bistriţa-Năsăud', 'BN'),
('RO', 'Bihor', 'BH');
INSERT INTO
States (country_id, name, state_code)
VALUES
('TK', 'Tokelau', 'TK');
INSERT INTO
States (country_id, name, state_code)
VALUES
('GW', 'Bolama', 'BL'),
('GW', 'Biombo', 'BM'),
('GW', 'Cacheu', 'CA'),
('GW', 'Quinara', 'QU'),
('GW', 'Sul', 'S'),
('GW', 'Oio', 'OI'),
('GW', 'Leste', 'L'),
('GW', 'Norte', 'N'),
('GW', 'Bafatá', 'BA'),
('GW', 'Tombali', 'TO'),
('GW', 'Gabú', 'GA'),
('GW', 'Bissau', 'BS');
INSERT INTO
States (country_id, name, state_code)
VALUES
('GU', 'Guam', 'GU');
INSERT INTO
States (country_id, name, state_code)
VALUES
('GT', 'Sololá', 'SO'),
('GT', 'San Marcos', 'SM'),
('GT', 'Jalapa', 'JA'),
('GT', 'Baja Verapaz', 'BV'),
('GT', 'Quetzaltenango', 'QZ'),
('GT', 'Sacatepéquez', 'SA'),
('GT', 'Jutiapa', 'JU'),
('GT', 'Huehuetenango', 'HU'),
('GT', 'Quiché', 'QC'),
('GT', 'Suchitepéquez', 'SU'),
('GT', 'Santa Rosa', 'SR'),
('GT', 'Zacapa', 'ZA'),
('GT', 'Retalhuleu', 'RE'),
('GT', 'Petén', 'PE'),
('GT', 'Chiquimula', 'CQ'),
('GT', 'Totonicapán', 'TO'),
('GT', 'Chimaltenango', 'CM'),
('GT', 'Izabal', 'IZ'),
('GT', 'El Progreso', 'PR'),
('GT', 'Alta Verapaz', 'AV'),
('GT', 'Guatemala', 'GU'),
('GT', 'Escuintla', 'ES');
INSERT INTO
States (country_id, name, state_code)
VALUES
('GS', 'S.Georgia & S.Sandwich Islands', 'GS');
INSERT INTO
States (country_id, name, state_code)
VALUES
('GR', 'Chíos', '85'),
('GR', 'Sámos', '84'),
('GR', 'Chalkidikí', '64'),
('GR', 'Dodekánisa', '81'),
('GR', 'Lésvos', '83'),
('GR', 'Thessaloníki', '54'),
('GR', 'Anatolikí Makedonía kai Thráki', 'A'),
('GR', 'Dytikí Elláda', 'G'),
('GR', 'Kentrikí Makedonía', 'B'),
('GR', 'Rodópi', '73'),
('GR', 'Peloponnísos', 'J'),
('GR', 'Attikí', 'I'),
('GR', 'Préveza', '34'),
('GR', 'Imathía', '53'),
('GR', 'Grevená', '51'),
('GR', 'Kastoriá', '56'),
('GR', 'Árta', '31'),
('GR', 'Thesprotía', '32'),
('GR', 'Ioánnina', '33'),
('GR', 'Évros', '71'),
('GR', 'Kozáni', '58'),
('GR', 'Pélla', '59'),
('GR', 'Lakonía', '16'),
('GR', 'Messinía', '17'),
('GR', 'Ileía', '14'),
('GR', 'Korinthía', '15'),
('GR', 'Arkadía', '12'),
('GR', 'Achaḯa', '13'),
('GR', 'Argolída', '11'),
('GR', 'Dráma', '52'),
('GR', 'Chaniá', '94'),
('GR', 'Lasíthi', '92'),
('GR', 'Rethýmnis', '93'),
('GR', 'Irakleío', '91'),
('GR', 'Notío Aigaío', 'L'),
('GR', 'Attikí', 'A1'),
('GR', 'Evrytanía', '05'),
('GR', 'Évvoia', '04'),
('GR', 'Kykládes', '82'),
('GR', 'Fokída', '07'),
('GR', 'Kilkís', '57'),
('GR', 'Kardítsa', '41'),
('GR', 'Krítí', 'M'),
('GR', 'Magnisía', '43'),
('GR', 'Lárisa', '42'),
('GR', 'Stereá Elláda', 'H'),
('GR', 'Tríkala', '44'),
('GR', 'Ágion Óros', '69'),
('GR', 'Voreío Aigaío', 'K'),
('GR', 'Ípeiros', 'D'),
('GR', 'Thessalía', 'E'),
('GR', 'Ionía Nísia', 'F'),
('GR', 'Kavála', '55'),
('GR', 'Flórina', '63'),
('GR', 'Sérres', '62'),
('GR', 'Piería', '61'),
('GR', 'Dytikí Makedonía', 'C'),
('GR', 'Kefallinía', '23'),
('GR', 'Kérkyra', '22'),
('GR', 'Zákynthos', '21'),
('GR', 'Fthiótida', '06'),
('GR', 'Aitoloakarnanía', '01'),
('GR', 'Xánthi', '72'),
('GR', 'Voiotía', '03'),
('GR', 'Lefkáda', '24');
INSERT INTO
States (country_id, name, state_code)
VALUES
('GQ', 'Litoral', 'LI'),
('GQ', 'Região Continental', 'C'),
('GQ', 'Bioko Nord', 'BN'),
('GQ', 'Annobón', 'AN'),
('GQ', 'Região Insular', 'I'),
('GQ', 'Kié-Ntem', 'KN'),
('GQ', 'Bioko Sud', 'BS'),
('GQ', 'Centro Sud', 'CS'),
('GQ', 'Wele-Nzas', 'WN');
INSERT INTO
States (country_id, name, state_code)
VALUES
('GP', 'Guadeloupe', 'GP');
INSERT INTO
States (country_id, name, state_code)
VALUES
('JP', 'Kagawa', '37'),
('JP', 'Tokushima', '36'),
('JP', 'Yamaguchi', '35'),
('JP', 'Hiroshima', '34'),
('JP', 'Okayama', '33'),
('JP', 'Shimane', '32'),
('JP', 'Tottori', '31'),
('JP', 'Wakayama', '30'),
('JP', 'Kochi', '39'),
('JP', 'Ehime', '38'),
('JP', 'Yamanashi', '19'),
('JP', 'Fukui', '18'),
('JP', 'Saitama', '11'),
('JP', 'Gunma', '10'),
('JP', 'Tôkyô', '13'),
('JP', 'Chiba', '12'),
('JP', 'Niigata', '15'),
('JP', 'Kanagawa', '14'),
('JP', 'Ishikawa', '17'),
('JP', 'Toyama', '16'),
('JP', 'Nagano', '20'),
('JP', 'Gifu', '21'),
('JP', 'Shizuoka', '22'),
('JP', 'Aichi', '23'),
('JP', 'Mie', '24'),
('JP', 'Shiga', '25'),
('JP', 'Kyoto', '26'),
('JP', 'Osaka', '27'),
('JP', 'Hyogo', '28'),
('JP', 'Nara', '29'),
('JP', 'Kagoshima', '46'),
('JP', 'Okinawa', '47'),
('JP', 'Ibaraki', '08'),
('JP', 'Tochigi', '09'),
('JP', 'Nagasaki', '42'),
('JP', 'Kumamoto', '43'),
('JP', 'Fukuoka', '40'),
('JP', 'Saga', '41'),
('JP', 'Aomori', '02'),
('JP', 'Iwate', '03'),
('JP', 'Hokkaido', '01'),
('JP', 'Yamagata', '06'),
('JP', 'Fukushima', '07'),
('JP', 'Miyagi', '04'),
('JP', 'Akita', '05'),
('JP', 'Oita', '44'),
('JP', 'Miyazaki', '45');
INSERT INTO
States (country_id, name, state_code)
VALUES
('GY', 'Upper Takutu-Upper Essequibo', 'UT'),
('GY', 'Mahaica-Berbice', 'MA'),
('GY', 'Pomeroon-Supenaam', 'PM'),
('GY', 'Upper Demerara-Berbice', 'UD'),
('GY', 'Essequibo Islands-West Demerara', 'ES'),
('GY', 'East Berbice-Corentyne', 'EB'),
('GY', 'Potaro-Siparuni', 'PT'),
('GY', 'Cuyuni-Mazaruni', 'CU'),
('GY', 'Barima-Waini', 'BA'),
('GY', 'Demerara-Mahaica', 'DE');
INSERT INTO
States (country_id, name, state_code)
VALUES
('GG', 'Guernsey', 'GG');
INSERT INTO
States (country_id, name, state_code)
VALUES
('GF', 'French Guiana', 'GF');
INSERT INTO
States (country_id, name, state_code)
VALUES
('GE', 'Guria', 'GU'),
('GE', '<NAME>', 'SK'),
('GE', 'Samtskhe-Javakheti', 'SJ'),
('GE', 'Abkhazia', 'AB'),
('GE', 'Mtskheta-Mtianeti', 'MM'),
('GE', 'Ajaria', 'AJ'),
('GE', 'Tbilisi', 'TB'),
('GE', 'K\'akheti', 'KA'),
('GE', 'Imereti', 'IM'),
('GE', 'Samegrelo-<NAME>', 'SZ'),
('GE', '<NAME>', 'KK'),
('GE', 'Rach\'a-Lechkhumi-Kv<NAME>', 'RL');
INSERT INTO
States (country_id, name, state_code)
VALUES
('GD', 'Saint George', '03'),
('GD', 'Saint David', '02'),
('GD', 'Saint Andrew', '01'),
('GD', 'Saint Patrick', '06'),
('GD', 'Saint Mark', '05'),
('GD', 'Saint John', '04'),
('GD', 'Southern Grenadine Islands', '10');
INSERT INTO
States (country_id, name, state_code)
VALUES
('GB', 'Trafford', 'TRF'),
('GB', 'Wrexham', 'WRX'),
('GB', 'Brent', 'BEN'),
('GB', 'Harrow', 'HRW'),
('GB', 'Warrington', 'WRT'),
('GB', 'Lambeth', 'LBH'),
('GB', 'Darlington', 'DAL'),
('GB', 'Wirral', 'WRL'),
('GB', 'Moyle', 'MYL'),
('GB', 'United Kingdom', 'UKM'),
('GB', 'Bexley', 'BEX'),
('GB', 'Bury', 'BUR'),
('GB', 'Kirklees', 'KIR'),
('GB', 'Fermanagh', 'FER'),
('GB', 'Northumberland', 'NBL'),
('GB', 'Derry', 'DRY'),
('GB', 'Carrickfergus', 'CKF'),
('GB', 'East Riding of Yorkshire', 'ERY'),
('GB', 'Cumbria', 'CMA'),
('GB', 'Hackney', 'HCK'),
('GB', 'Croydon', 'CRY'),
('GB', 'Aberdeen City', 'ABE'),
('GB', 'Aberdeenshire', 'ABD'),
('GB', 'Cookstown', 'CKT'),
('GB', 'East Renfrewshire', 'ERW'),
('GB', 'Hillingdon', 'HIL'),
('GB', 'North Lincolnshire', 'NLN'),
('GB', 'West Sussex', 'WSX'),
('GB', 'Birmingham', 'BIR'),
('GB', 'West Berkshire', 'WBK'),
('GB', 'East Dunbartonshire', 'EDU'),
('GB', 'Westminster', 'WSM'),
('GB', 'Staffordshire', 'STS'),
('GB', 'Hertfordshire', 'HRT'),
('GB', 'Lisburn', 'LSB'),
('GB', 'Edinburgh, City of', 'EDH'),
('GB', 'Haringey', 'HRY'),
('GB', 'Lancashire', 'LAN'),
('GB', 'Richmond upon Thames', 'RIC'),
('GB', 'Larne', 'LRN'),
('GB', 'Shetland Islands', 'ZET'),
('GB', 'Eilean Siar', 'ELS'),
('GB', 'Newtownabbey', 'NTA'),
('GB', 'Surrey', 'SRY'),
('GB', 'Bournemouth', 'BMH'),
('GB', 'Cheshire East', 'CHE'),
('GB', 'Flintshire', 'FLN'),
('GB', 'Newcastle upon Tyne', 'NET'),
('GB', 'Northamptonshire', 'NTH'),
('GB', 'Nottinghamshire', 'NTT'),
('GB', 'Neath Port Talbot', 'NTL'),
('GB', 'East Sussex', 'ESX'),
('GB', 'Kingston upon Thames', 'KTT'),
('GB', 'Merton', 'MRT'),
('GB', 'Oxfordshire', 'OXF'),
('GB', 'Moray', 'MRY'),
('GB', 'Essex', 'ESS'),
('GB', 'Cheshire West and Chester', 'CHW'),
('GB', 'Southend-on-Sea', 'SOS'),
('GB', 'Pembrokeshire', 'PEM'),
('GB', 'North Tyneside', 'NTY'),
('GB', 'North East Lincolnshire', 'NEL'),
('GB', 'Halton', 'HAL'),
('GB', 'Renfrewshire', 'RFW'),
('GB', 'Luton', 'LUT'),
('GB', 'Wokingham', 'WOK'),
('GB', 'Worcestershire', 'WOR'),
('GB', 'Highland', 'HLD'),
('GB', 'Magherafelt', 'MFT'),
('GB', 'North Somerset', 'NSM'),
('GB', 'Leeds', 'LDS'),
('GB', 'Knowsley', 'KWL'),
('GB', 'Somerset', 'SOM'),
('GB', 'Denbighshire', 'DEN'),
('GB', 'Bristol, City of', 'BST'),
('GB', 'Ealing', 'EAL'),
('GB', 'Redbridge', 'RDB'),
('GB', 'Castlereagh', 'CSR'),
('GB', 'Reading', 'RDG'),
('GB', 'England and Wales', 'EAW'),
('GB', 'Camden', 'CMD'),
('GB', 'Monmouthshire', 'MON'),
('GB', 'Oldham', 'OLD'),
('GB', 'Cornwall', 'CON'),
('GB', 'Carmarthenshire', 'CMN'),
('GB', 'East Ayrshire', 'EAY'),
('GB', 'Herefordshire', 'HEF'),
('GB', 'Rotherham', 'ROT'),
('GB', 'North Ayrshire', 'NAY'),
('GB', 'Blackburn with Darwen', 'BBD'),
('GB', 'Torfaen', 'TOF'),
('GB', 'West Dunbartonshire', 'WDU'),
('GB', 'Walsall', 'WLL'),
('GB', 'West Lothian', 'WLN'),
('GB', 'Greenwich', 'GRE'),
('GB', 'Milton Keynes', 'MIK'),
('GB', 'Kensington and Chelsea', 'KEC'),
('GB', 'Manchester', 'MAN'),
('GB', 'Wolverhampton', 'WLV'),
('GB', 'Wales', 'WLS'),
('GB', 'East Lothian', 'ELN'),
('GB', 'Central Bedfordshire', 'CBF'),
('GB', 'Southampton', 'STH'),
('GB', 'Kent', 'KEN'),
('GB', 'South Tyneside', 'STY'),
('GB', 'Leicester', 'LCE'),
('GB', 'Armagh', 'ARM'),
('GB', 'Buckinghamshire', 'BKM'),
('GB', 'Slough', 'SLG'),
('GB', 'Salford', 'SLF'),
('GB', 'Orkney Islands', 'ORK'),
('GB', 'Ards', 'ARD'),
('GB', 'South Lanarkshire', 'SLK'),
('GB', 'Bromley', 'BRY'),
('GB', 'Stockton-on-Tees', 'STT'),
('GB', 'Poole', 'POL'),
('GB', 'Bracknell Forest', 'BRC'),
('GB', 'St. Helens', 'SHN'),
('GB', 'Powys', 'POW'),
('GB', 'Great Britain', 'GBN'),
('GB', 'Bradford', 'BRD'),
('GB', 'Cardiff', 'CRF'),
('GB', 'Strabane', 'STB'),
('GB', 'Stoke-on-Trent', 'STE'),
('GB', 'Derbyshire', 'DBY'),
('GB', 'Stirling', 'STG'),
('GB', 'Argyll and Bute', 'AGB'),
('GB', 'Devon', 'DEV'),
('GB', 'Wiltshire', 'WIL'),
('GB', 'Derby', 'DER'),
('GB', 'Hounslow', 'HNS'),
('GB', 'Sandwell', 'SAW'),
('GB', 'Plymouth', 'PLY'),
('GB', 'Northern Ireland', 'NIR'),
('GB', 'Thurrock', 'THR'),
('GB', 'Bath and North East Somerset', 'BAS'),
('GB', 'Fife', 'FIF'),
('GB', 'Isle of Anglesey', 'AGY'),
('GB', 'South Ayrshire', 'SAY'),
('GB', 'Norfolk', 'NFK'),
('GB', 'Telford and Wrekin', 'TFW'),
('GB', 'Barnet', 'BNE'),
('GB', 'Banbridge', 'BNB'),
('GB', 'Torbay', 'TOB'),
('GB', 'Ceredigion', 'CGN'),
('GB', 'Belfast', 'BFS'),
('GB', 'Brighton and Hove', 'BNH'),
('GB', 'Warwickshire', 'WAR'),
('GB', 'Craigavon', 'CGV'),
('GB', 'Barnsley', 'BNS'),
('GB', 'Tower Hamlets', 'TWH'),
('GB', 'Angus', 'ANS'),
('GB', 'Falkirk', 'FAL'),
('GB', 'North Yorkshire', 'NYK'),
('GB', 'Antrim', 'ANT'),
('GB', 'Swindon', 'SWD'),
('GB', 'Isles of Scilly', 'IOS'),
('GB', 'Windsor and Maidenhead', 'WNM'),
('GB', 'Isle of Wight', 'IOW'),
('GB', 'Gloucestershire', 'GLS'),
('GB', 'Sefton', 'SFT'),
('GB', 'Inverclyde', 'IVC'),
('GB', 'Wandsworth', 'WND'),
('GB', 'Leicestershire', 'LEC'),
('GB', 'Southwark', 'SWK'),
('GB', 'York', 'YOR'),
('GB', 'Glasgow City', 'GLG'),
('GB', 'Rutland', 'RUT'),
('GB', 'Hammersmith and Fulham', 'HMF'),
('GB', 'Suffolk', 'SFK'),
('GB', 'Lewisham', 'LEW'),
('GB', 'Newry and Mourne', 'NYM'),
('GB', 'Dudley', 'DUD'),
('GB', 'Coleraine', 'CLR'),
('GB', 'Conwy', 'CWY'),
('GB', 'Sunderland', 'SND'),
('GB', 'Blackpool', 'BPL'),
('GB', 'Vale of Glamorgan, The', 'VGL'),
('GB', 'Waltham Forest', 'WFT'),
('GB', 'London, City of', 'LND'),
('GB', 'Calderdale', 'CLD'),
('GB', 'Gwynedd', 'GWN'),
('GB', 'Durham County', 'DUR'),
('GB', 'Scotland', 'SCT'),
('GB', 'Clackmannanshire', 'CLK'),
('GB', 'England', 'ENG'),
('GB', 'Medway', 'MDW'),
('GB', 'Scottish Borders, The', 'SCB'),
('GB', 'Doncaster', 'DNC'),
('GB', 'Tameside', 'TAM'),
('GB', 'Wigan', 'WGN'),
('GB', 'Dumfries and Galloway', 'DGY'),
('GB', 'Peterborough', 'PTE'),
('GB', 'Stockport', 'SKP'),
('GB', 'Newport', 'NWP'),
('GB', 'Islington', 'ISL'),
('GB', 'South Gloucestershire', 'SGC'),
('GB', 'Caerphilly', 'CAY'),
('GB', 'Dungannon and South Tyrone', 'DGN'),
('GB', 'Wakefield', 'WKF'),
('GB', 'Newham', 'NWM'),
('GB', 'Middlesbrough', 'MDB'),
('GB', 'Cambridgeshire', 'CAM'),
('GB', 'Swansea', 'SWA'),
('GB', 'Down', 'DOW'),
('GB', 'Ballymena', 'BLA'),
('GB', 'Havering', 'HAV'),
('GB', 'Dorset', 'DOR'),
('GB', 'Gateshead', 'GAT'),
('GB', 'Portsmouth', 'POR'),
('GB', 'North Lanarkshire', 'NLK'),
('GB', 'Liverpool', 'LIV'),
('GB', 'Lincolnshire', 'LIN'),
('GB', 'Hampshire', 'HAM'),
('GB', 'Ballymoney', 'BLY'),
('GB', 'North Down', 'NDN'),
('GB', 'Bedford', 'BDF'),
('GB', 'Barking and Dagenham', 'BDG'),
('GB', 'Solihull', 'SOL'),
('GB', 'Omagh', 'OMH'),
('GB', 'Hartlepool', 'HPL'),
('GB', 'Coventry', 'COV'),
('GB', 'Shropshire', 'SHR'),
('GB', 'Perth and Kinross', 'PKN'),
('GB', 'Limavady', 'LMV'),
('GB', 'Rochdale', 'RCH'),
('GB', 'Sheffield', 'SHF'),
('GB', 'Nottingham', 'NGM'),
('GB', 'Rhondda, <NAME>', 'RCT'),
('GB', 'Bolton', 'BOL'),
('GB', 'Blaenau Gwent', 'BGW'),
('GB', 'Enfield', 'ENF'),
('GB', 'Dundee City', 'DND'),
('GB', 'Sutton', 'STN'),
('GB', 'Midlothian', 'MLN'),
('GB', 'Redcar and Cleveland', 'RCC'),
('GB', 'Bridgend', 'BGE'),
('GB', 'Kingston upon Hull', 'KHL'),
('GB', '<NAME>', 'MTY');
INSERT INTO
States (country_id, name, state_code)
VALUES
('GA', 'Ogooué-Lolo', '7'),
('GA', 'Ogooué-Ivindo', '6'),
('GA', 'Nyanga', '5'),
('GA', 'Ngounié', '4'),
('GA', 'Moyen-Ogooué', '3'),
('GA', 'Haut-Ogooué', '2'),
('GA', 'Estuaire', '1'),
('GA', 'Woleu-Ntem', '9'),
('GA', 'Ogooué-Maritime', '8');
INSERT INTO
States (country_id, name, state_code)
VALUES
('GN', 'Guékédou', 'GU'),
('GN', 'Yomou', 'YO'),
('GN', 'Télimélé', 'TE'),
('GN', 'Gaoual', 'GA'),
('GN', 'Pita', 'PI'),
('GN', 'Mali', 'ML'),
('GN', 'Mamou', 'MM'),
('GN', 'Dinguiraye', 'DI'),
('GN', 'Mandiana', 'MD'),
('GN', 'Kissidougou', 'KS'),
('GN', 'Macenta', 'MC'),
('GN', 'Coyah', 'CO'),
('GN', 'Labé', 'LA'),
('GN', 'Boké', 'B'),
('GN', 'Conakry', 'C'),
('GN', 'Kindia', 'D'),
('GN', 'Faranah', 'F'),
('GN', 'Kouroussa', 'KO'),
('GN', 'Kankan', 'KA'),
('GN', 'Koubia', 'KB'),
('GN', 'Kankan', 'K'),
('GN', 'Kindia', 'KD'),
('GN', 'Kérouané', 'KE'),
('GN', 'Nzérékoré', 'N'),
('GN', 'Dubréka', 'DU'),
('GN', 'Fria', 'FR'),
('GN', 'Koundara', 'KN'),
('GN', 'Lola', 'LO'),
('GN', 'Faranah', 'FA'),
('GN', 'Dabola', 'DB'),
('GN', 'Dalaba', 'DL'),
('GN', 'Forécariah', 'FO'),
('GN', 'Boffa', 'BF'),
('GN', 'Beyla', 'BE'),
('GN', 'Lélouma', 'LE'),
('GN', 'Labé', 'L'),
('GN', 'Boké', 'BK'),
('GN', 'Mamou', 'M'),
('GN', 'Nzérékoré', 'NZ'),
('GN', 'Siguiri', 'SI'),
('GN', 'Tougué', 'TO');
INSERT INTO
States (country_id, name, state_code)
VALUES
('GM', 'North Bank', 'N'),
('GM', 'Central River', 'M'),
('GM', 'Lower River', 'L'),
('GM', 'Banjul', 'B'),
('GM', 'Western', 'W'),
('GM', 'Upper River', 'U');
INSERT INTO
States (country_id, name, state_code)
VALUES
('GL', 'Qeqqata Kommunia', 'QE'),
('GL', 'Kommune Kujalleq', 'KU'),
('GL', 'Qaasuitsup Kommunia', 'QA'),
('GL', 'Kommuneqarfik Sermersooq', 'SM');
INSERT INTO
States (country_id, name, state_code)
VALUES
('GI', 'Gibraltar', 'GI');
INSERT INTO
States (country_id, name, state_code)
VALUES
('GH', 'Ashanti', 'AH'),
('GH', 'Brong-Ahafo', 'BA'),
('GH', 'Upper West', 'UW'),
('GH', 'Greater Accra', 'AA'),
('GH', 'Upper East', 'UE'),
('GH', 'Central', 'CP'),
('GH', 'Eastern', 'EP'),
('GH', 'Northern', 'NP'),
('GH', 'Volta', 'TV'),
('GH', 'Western', 'WP');
INSERT INTO
States (country_id, name, state_code)
VALUES
('OM', 'Al Wusţá', 'WU'),
('OM', 'Z̧ufār', 'ZU'),
('OM', 'Al Bāţinah', 'BA'),
('OM', 'Ad Dākhilīyah', 'DA'),
('OM', 'Musandam', 'MU'),
('OM', 'Ash Sharqīyah', 'SH'),
('OM', 'Az̧ Z̧āhirah', 'ZA'),
('OM', 'Masqaţ', 'MA'),
('OM', 'Al Buraymī', 'BU');
INSERT INTO
States (country_id, name, state_code)
VALUES
('TN', 'Sfax', '61'),
('TN', 'La Manouba', '14'),
('TN', 'Medenine', '82'),
('TN', 'Tataouine', '83'),
('TN', 'Gabès', '81'),
('TN', 'Kasserine', '42'),
('TN', 'Sidi Bouzid', '43'),
('TN', 'Kairouan', '41'),
('TN', 'Nabeul', '21'),
('TN', 'Zaghouan', '22'),
('TN', 'Bizerte', '23'),
('TN', 'Ariana', '12'),
('TN', 'Kebili', '73'),
('TN', 'Tozeur', '72'),
('TN', 'Gafsa', '71'),
('TN', 'Le Kef', '33'),
('TN', 'Jendouba', '32'),
('TN', 'Béja', '31'),
('TN', 'Tunis', '11'),
('TN', '<NAME>', '13'),
('TN', 'Siliana', '34'),
('TN', 'Sousse', '51'),
('TN', 'Mahdia', '53'),
('TN', 'Monastir', '52');
INSERT INTO
States (country_id, name, state_code)
VALUES
('JO', 'Aţ Ţafīlah', 'AT'),
('JO', 'Al Mafraq', 'MA'),
('JO', 'Mādabā', 'MD'),
('JO', 'Al ʽAqabah', 'AQ'),
('JO', 'Ma\'ān', 'MN'),
('JO', 'Al Balqā\'', 'BA'),
('JO', 'Az Zarqā\'', 'AZ'),
('JO', 'Jarash', 'JA'),
('JO', 'Irbid', 'IR'),
('JO', 'Al Karak', 'KA'),
('JO', '‘Ammān', 'AM'),
('JO', 'ʽAjlūn', 'AJ');
INSERT INTO
States (country_id, name, state_code)
VALUES
('HR', 'Vukovarsko-srijemska županija', '16'),
('HR', 'Dubrovačko-neretvanska županija', '19'),
('HR', 'Istarska županija', '18'),
('HR', 'Primorsko-goranska županija', '08'),
('HR', 'Ličko-senjska županija', '09'),
('HR', 'Koprivničko-križevačka županija', '06'),
('HR', 'Bjelovarsko-bilogorska županija', '07'),
('HR', 'Karlovačka županija', '04'),
('HR', 'Varaždinska županija', '05'),
('HR', 'Krapinsko-zagorska županija', '02'),
('HR', 'Sisačko-moslavačka županija', '03'),
('HR', 'Zadarska županija', '13'),
('HR', 'Zagrebačka županija', '01'),
('HR', 'Šibensko-kninska županija', '15'),
('HR', 'Međimurska županija', '20'),
('HR', 'Grad Zagreb', '21'),
('HR', 'Osječko-baranjska županija', '14'),
('HR', 'Brodsko-posavska županija', '12'),
('HR', 'Virovitičko-podravska županija', '10'),
('HR', 'Splitsko-dalmatinska županija', '17'),
('HR', 'Požeško-slavonska županija', '11');
INSERT INTO
States (country_id, name, state_code)
VALUES
('HT', 'Centre', 'CE'),
('HT', 'Lwès', 'OU'),
('HT', 'Grandans', 'GA'),
('HT', 'Nip', 'NI'),
('HT', 'Nòdwès', 'NO'),
('HT', 'Sid', 'SD'),
('HT', 'Sidès', 'SE'),
('HT', 'Artibonite', 'AR'),
('HT', 'Nò', 'ND'),
('HT', 'Nòdès', 'NE');
INSERT INTO
States (country_id, name, state_code)
VALUES
('HU', 'Heves', 'HE'),
('HU', 'Budapest', 'BU'),
('HU', 'Hajdú-Bihar', 'HB'),
('HU', 'Fejér', 'FE'),
('HU', 'Sopron', 'SN'),
('HU', 'Borsod-Abaúj-Zemplén', 'BZ'),
('HU', 'Debrecen', 'DE'),
('HU', 'Baranya', 'BA'),
('HU', 'Hódmezővásárhely', 'HV'),
('HU', 'Békéscsaba', 'BC'),
('HU', 'Békés', 'BE'),
('HU', 'Bács-Kiskun', 'BK'),
('HU', 'Dunaújváros', 'DU'),
('HU', 'Székesfehérvár', 'SF'),
('HU', 'Szeged', 'SD'),
('HU', 'Szolnok', 'SK'),
('HU', 'Szombathely', 'SH'),
('HU', 'Kaposvár', 'KV'),
('HU', 'Somogy', 'SO'),
('HU', 'Szekszárd', 'SS'),
('HU', 'Miskolc', 'MI'),
('HU', 'Salgótarján', 'ST'),
('HU', 'Kecskemét', 'KM'),
('HU', 'Szabolcs-Szatmár-Bereg', 'SZ'),
('HU', 'Komárom-Esztergom', 'KE'),
('HU', 'Csongrád', 'CS'),
('HU', 'Érd', 'ER'),
('HU', 'Zala', 'ZA'),
('HU', 'Zalaegerszeg', 'ZE'),
('HU', 'Veszprém', 'VM'),
('HU', 'Eger', 'EG'),
('HU', 'Tolna', 'TO'),
('HU', 'Győr', 'GY'),
('HU', 'Veszprém', 'VE'),
('HU', 'Tatabánya', 'TB'),
('HU', 'Vas', 'VA'),
('HU', 'Győr-Moson-Sopron', 'GS'),
('HU', 'Pest', 'PE'),
('HU', 'Nyíregyháza', 'NY'),
('HU', 'Jász-Nagykun-Szolnok', 'JN'),
('HU', 'Nógrád', 'NO'),
('HU', 'Pécs', 'PS'),
('HU', 'Nagykanizsa', 'NK');
INSERT INTO
States (country_id, name, state_code)
VALUES
('HK', 'Hong Kong', 'HK');
INSERT INTO
States (country_id, name, state_code)
VALUES
('HN', 'Ocotepeque', 'OC'),
('HN', 'Comayagua', 'CM'),
('HN', 'Colón', 'CL'),
('HN', 'Yoro', 'YO'),
('HN', 'Choluteca', 'CH'),
('HN', '<NAME>', 'FM'),
('HN', 'Islas de la Bahía', 'IB'),
('HN', 'El Paraíso', 'EP'),
('HN', 'Olancho', 'OL'),
('HN', 'Lempira', 'LE'),
('HN', 'Intibucá', 'IN'),
('HN', 'Atlántida', 'AT'),
('HN', 'La Paz', 'LP'),
('HN', 'Valle', 'VA'),
('HN', 'Santa Bárbara', 'SB'),
('HN', '<NAME>', 'GD'),
('HN', 'Cortés', 'CR'),
('HN', 'Copán', 'CP');
INSERT INTO
States (country_id, name, state_code)
VALUES
('HM', 'Heard & McDonald Islands', 'HM');
INSERT INTO
States (country_id, name, state_code)
VALUES
('VE', 'Mérida', 'L'),
('VE', 'Miranda', 'M'),
('VE', 'Monagas', 'N'),
('VE', 'Nueva Esparta', 'O'),
('VE', 'Cojedes', 'H'),
('VE', 'Falcón', 'I'),
('VE', 'Guárico', 'J'),
('VE', 'Lara', 'K'),
('VE', 'Aragua', 'D'),
('VE', 'Barinas', 'E'),
('VE', 'Bolívar', 'F'),
('VE', 'Carabobo', 'G'),
('VE', 'Distrito Capital', 'A'),
('VE', 'Anzoátegui', 'B'),
('VE', 'Apure', 'C'),
('VE', 'Vargas', 'X'),
('VE', 'Delta Amacuro', 'Y'),
('VE', 'Amazonas', 'Z'),
('VE', 'Trujillo', 'T'),
('VE', 'Yaracuy', 'U'),
('VE', 'Zulia', 'V'),
('VE', 'Dependencias Federales', 'W'),
('VE', 'Portuguesa', 'P'),
('VE', 'Sucre', 'R'),
('VE', 'Táchira', 'S');
INSERT INTO
States (country_id, name, state_code)
VALUES
('PR', 'Puerto Rico', 'PR');
INSERT INTO
States (country_id, name, state_code)
VALUES
('PS', 'Salfit', 'SLT'),
('PS', 'Al Khalīl', 'HBN'),
('PS', 'Ramallah', 'RBH'),
('PS', 'Qalqilya', 'QQA'),
('PS', 'Tubas', 'TBS'),
('PS', 'Janīn', 'JEN'),
('PS', 'Al Quds', 'JEM'),
('PS', 'Khan Yunis', 'KYS'),
('PS', 'Dayr al Balaḩ', 'DEB'),
('PS', 'Bayt Laḩm', 'BTH'),
('PS', 'Arīḩā wa al Aghwār', 'JRH'),
('PS', 'Gaza', 'GZA'),
('PS', 'Nablus', 'NBS'),
('PS', 'Rafah', 'RFH'),
('PS', 'Tulkarm', 'TKM'),
('PS', 'North Gaza', 'NGZ');
INSERT INTO
States (country_id, name, state_code)
VALUES
('PW', 'Ngardmau', '222'),
('PW', 'Hatobohei', '050'),
('PW', 'Ngarchelong', '218'),
('PW', 'Ngchesar', '226'),
('PW', 'Ngeremlengui', '227'),
('PW', 'Ngatpang', '224'),
('PW', 'Kayangel', '100'),
('PW', 'Melekeok', '212'),
('PW', 'Ngiwal', '228'),
('PW', 'Koror', '150'),
('PW', 'Ngaraard', '214'),
('PW', 'Sonsorol', '370'),
('PW', 'Airai', '004'),
('PW', 'Aimeliik', '002'),
('PW', 'Angaur', '010'),
('PW', 'Peleliu', '350');
INSERT INTO
States (country_id, name, state_code)
VALUES
('PT', 'Porto', '13'),
('PT', 'Portalegre', '12'),
('PT', 'Lisboa', '11'),
('PT', 'Leiria', '10'),
('PT', 'Faro', '08'),
('PT', 'Guarda', '09'),
('PT', 'Setúbal', '15'),
('PT', 'Santarém', '14'),
('PT', 'Bragança', '04'),
('PT', 'Castelo Branco', '05'),
('PT', 'Coimbra', '06'),
('PT', 'Évora', '07'),
('PT', 'Aveiro', '01'),
('PT', 'Beja', '02'),
('PT', 'Braga', '03'),
('PT', 'Região Autónoma dos Açores', '20'),
('PT', 'Viseu', '18'),
('PT', 'Vila Real', '17'),
('PT', 'Região Autónoma da Madeira', '30'),
('PT', 'Viana do Castelo', '16');
INSERT INTO
States (country_id, name, state_code)
VALUES
('KN', 'Saint <NAME>', '05'),
('KN', 'S<NAME>', '04'),
('KN', 'Saint <NAME>', '07'),
('KN', 'Saint <NAME>', '06'),
('KN', 'Christ Church Nichola Town', '01'),
('KN', 'Saint <NAME>', '10'),
('KN', 'Saint George Basseterre', '03'),
('KN', 'Saint <NAME> Point', '02'),
('KN', 'Nevis', 'N'),
('KN', 'Saint <NAME>', '11'),
('KN', 'Saint <NAME>', '09'),
('KN', 'Saint <NAME>', '08'),
('KN', 'Saint Kitts', 'K'),
('KN', 'Trinity Palmetto Point', '15'),
('KN', 'Saint <NAME>', '12'),
('KN', 'Saint Thomas Middle Island', '13');
INSERT INTO
States (country_id, name, state_code)
VALUES
('PY', 'Boquerón', '19'),
('PY', 'Canindeyú', '14'),
('PY', '<NAME>', '15'),
('PY', 'Alto Paraguay', '16'),
('PY', 'Alto Paraná', '10'),
('PY', 'Central', '11'),
('PY', 'Ñeembucú', '12'),
('PY', 'Amambay', '13'),
('PY', 'Caazapá', '6'),
('PY', 'Itapúa', '7'),
('PY', 'Guairá', '4'),
('PY', 'Caaguazú', '5'),
('PY', 'San Pedro', '2'),
('PY', 'Cordillera', '3'),
('PY', 'Concepción', '1'),
('PY', 'Asunción', 'ASU'),
('PY', 'Misiones', '8'),
('PY', 'Paraguarí', '9');
INSERT INTO
States (country_id, name, state_code)
VALUES
('IQ', 'An Najaf', 'NA'),
('IQ', 'Al Anbār', 'AN'),
('IQ', 'Wāsiţ', 'WA'),
('IQ', 'Şalāḩ ad Dīn', 'SD'),
('IQ', 'Al Muthanná', 'MU'),
('IQ', 'Dahūk', 'DA'),
('IQ', 'As Sulaymānīyah', 'SU'),
('IQ', 'Karbalā\'', 'KA'),
('IQ', 'Baghdād', 'BG'),
('IQ', 'Nīnawá', 'NI'),
('IQ', 'Al Başrah', 'BA'),
('IQ', 'Bābil', 'BB'),
('IQ', 'Dhī Qār', 'DQ'),
('IQ', 'Maysān', 'MA'),
('IQ', 'Kirkūk', 'KI'),
('IQ', 'Diyālá', 'DI'),
('IQ', 'Al Qādisīyah', 'QA'),
('IQ', 'Arbīl', 'AR');
INSERT INTO
States (country_id, name, state_code)
VALUES
('PA', 'Ngöbe-Buglé', 'NB'),
('PA', 'Panamá', '8'),
('PA', 'Veraguas', '9'),
('PA', 'Herrera', '6'),
('PA', 'Los Santos', '7'),
('PA', 'Chiriquí', '4'),
('PA', 'Darién', '5'),
('PA', 'Coclé', '2'),
('PA', 'Colón', '3'),
('PA', 'Bocas del Toro', '1'),
('PA', 'Panamá Oeste', '10'),
('PA', 'Emberá', 'EM'),
('PA', 'Kuna Yala', 'KY');
INSERT INTO
States (country_id, name, state_code)
VALUES
('PF', 'French Polynesia', 'PF');
INSERT INTO
States (country_id, name, state_code)
VALUES
('PG', 'West New Britain', 'WBK'),
('PG', 'National Capital District', 'NCD'),
('PG', 'Madang', 'MPM'),
('PG', 'Morobe', 'MPL'),
('PG', 'Manus', 'MRL'),
('PG', 'Eastern Highlands', 'EHG'),
('PG', 'East Sepik', 'ESW'),
('PG', 'West Sepik', 'SAN'),
('PG', 'New Ireland', 'NIK'),
('PG', 'Jiwaka', 'JWK'),
('PG', 'Milne Bay', 'MBA'),
('PG', 'Hela', 'HLA'),
('PG', 'Western', 'WPD'),
('PG', 'Bougainville', 'NSB'),
('PG', 'Enga', 'EPW'),
('PG', 'Central', 'CPM'),
('PG', 'Chimbu', 'CPK'),
('PG', 'Northern', 'NPP'),
('PG', 'Western Highlands', 'WHM'),
('PG', 'Gulf', 'GPK'),
('PG', 'East New Britain', 'EBR'),
('PG', 'Southern Highlands', 'SHM');
INSERT INTO
States (country_id, name, state_code)
VALUES
('PK', 'Islāmābād', 'IS'),
('PK', 'Federally Administered Tribal Areas', 'TA'),
('PK', 'Balochistan', 'BA'),
('PK', 'Khaībar Pakhtūnkhwā', 'KP'),
('PK', 'Panjāb', 'PB'),
('PK', 'Azad Kashmir', 'JK'),
('PK', 'Sindh', 'SD'),
('PK', 'Gilgit-Baltistān', 'GB');
INSERT INTO
States (country_id, name, state_code)
VALUES
('PH', 'Eastern Visayas', '08'),
('PH', 'Rehiyon ng Tangway ng Sambuwangga', '09'),
('PH', 'National Capital Region', '00'),
('PH', 'Ilocos', '01'),
('PH', 'Cagayan Valley', '02'),
('PH', 'Central Luzon', '03'),
('PH', 'Bicol', '05'),
('PH', 'Rehiyon ng Kanlurang Bisaya', '06'),
('PH', 'Central Visayas', '07'),
('PH', 'Surigao del Sur', 'SUR'),
('PH', 'Sulu', 'SLU'),
('PH', 'Davao del Norte', 'DAV'),
('PH', 'Camiguin', 'CAM'),
('PH', 'Camarines Norte', 'CAN'),
('PH', 'Bulacan', 'BUL'),
('PH', 'Cagayan', 'CAG'),
('PH', 'Bohol', 'BOH'),
('PH', 'Capiz', 'CAP'),
('PH', 'Camarines Sur', 'CAS'),
('PH', 'Catanduanes', 'CAT'),
('PH', 'Cavite', 'CAV'),
('PH', 'Biliran', 'BIL'),
('PH', 'Katimogang Leyte', 'SLE'),
('PH', 'Risal', 'RIZ'),
('PH', 'Compostela Valley', 'COM'),
('PH', 'South Cotabato', 'SCO'),
('PH', 'Sambuwangga Sibugay', 'ZSI'),
('PH', 'Ilocos Sur', 'ILS'),
('PH', 'Agusan del Sur', 'AGS'),
('PH', 'Iloilo', 'ILI'),
('PH', 'Samar', 'WSA'),
('PH', 'Palawan', 'PLW'),
('PH', 'Kalinga', 'KAL'),
('PH', 'Tim<NAME>', 'ZAS'),
('PH', 'Hilagang Sambuwangga', 'ZAN'),
('PH', 'Albay', 'ALB'),
('PH', 'Nueva Ecija', 'NUE'),
('PH', 'Nueva Vizcaya', 'NUV'),
('PH', 'Sultan Kudarat', 'SUK'),
('PH', 'Tawi-Tawi', 'TAW'),
('PH', 'Tarlac', 'TAR'),
('PH', 'Aklan', 'AKL'),
('PH', 'Benget', 'BEN'),
('PH', 'Dinagat Islands', 'DIN'),
('PH', 'Davao del Sur', 'DAS'),
('PH', 'Romblon', 'ROM'),
('PH', 'Isabela', 'ISA'),
('PH', 'Negros Oriental', 'NER'),
('PH', 'Lanao del Sur', 'LAS'),
('PH', 'Hilagang Lanaw', 'LAN'),
('PH', 'Kanlurang Negros', 'NEC'),
('PH', 'Laguna', 'LAG'),
('PH', 'Hilagang Surigaw', 'SUN'),
('PH', 'Aurora', 'AUR'),
('PH', 'Misamis Oriental', 'MSR'),
('PH', 'Abra', 'ABR'),
('PH', 'Kanlurang Misamis', 'MSC'),
('PH', 'Calabarzon', '40'),
('PH', 'Mimaropa', '41'),
('PH', 'Eastern Samar', 'EAS'),
('PH', 'Batanes', 'BTN'),
('PH', 'Batangas', 'BTG'),
('PH', 'Kirino', 'QUI'),
('PH', 'Cebu', 'CEB'),
('PH', 'Apayao', 'APA'),
('PH', 'Sarangani', 'SAR'),
('PH', 'Keson', 'QUE'),
('PH', 'Ifugao', 'IFU'),
('PH', 'Masbate', 'MAS'),
('PH', 'Sorsogon', 'SOR'),
('PH', 'Cotabato', 'NCO'),
('PH', 'Sambales', 'ZMB'),
('PH', 'Magindanaw', 'MAG'),
('PH', 'Marinduke', 'MAD'),
('PH', 'Bukidnon', 'BUK'),
('PH', 'Pangasinan', 'PAN'),
('PH', 'Pampanga', 'PAM'),
('PH', 'Gimaras', 'GUI'),
('PH', 'Hilagang Samar', 'NSA'),
('PH', 'Kanlurang Mindoro', 'MDC'),
('PH', 'Mindoro Oriental', 'MDR'),
('PH', 'La Union', 'LUN'),
('PH', 'Basilan', 'BAS'),
('PH', 'Bataan', 'BAN'),
('PH', 'Lalawigang Bulubundukin', 'MOU'),
('PH', 'Cordillera Administrative Region', '15'),
('PH', 'Autonomous Region in Muslim Mindanao', '14'),
('PH', 'Caraga', '13'),
('PH', 'Rehiyon ng Soccsksargen', '12'),
('PH', 'Davao', '11'),
('PH', 'Northern Mindanao', '10'),
('PH', 'Sikihor', 'SIG'),
('PH', 'Agusan del Norte', 'AGN'),
('PH', 'Hilagang Iloko', 'ILN'),
('PH', 'Davao Oriental', 'DAO'),
('PH', 'Leyte', 'LEY'),
('PH', 'Antike', 'ANT');
INSERT INTO
States (country_id, name, state_code)
VALUES
('PN', 'Pitcairn', 'PN');
INSERT INTO
States (country_id, name, state_code)
VALUES
('PL', 'Śląskie', 'SL'),
('PL', 'Lubelskie', 'LU'),
('PL', 'Świętokrzyskie', 'SK'),
('PL', 'Wielkopolskie', 'WP'),
('PL', 'Zachodniopomorskie', 'ZP'),
('PL', 'Mazowieckie', 'MZ'),
('PL', 'Podlaskie', 'PD'),
('PL', 'Lubuskie', 'LB'),
('PL', 'Łódzkie', 'LD'),
('PL', 'Kujawsko-pomorskie', 'KP'),
('PL', 'Małopolskie', 'MA'),
('PL', 'Pomorskie', 'PM'),
('PL', 'Opolskie', 'OP'),
('PL', 'Dolnośląskie', 'DS'),
('PL', 'Warmińsko-mazurskie', 'WN'),
('PL', 'Podkarpackie', 'PK');
INSERT INTO
States (country_id, name, state_code)
VALUES
('PM', 'St. Pierre & Miquelon', 'PM');
INSERT INTO
States (country_id, name, state_code)
VALUES
('ZM', 'Western', '01'),
('ZM', 'Eastern', '03'),
('ZM', 'Central', '02'),
('ZM', 'Northern', '05'),
('ZM', 'Luapula', '04'),
('ZM', 'Southern', '07'),
('ZM', 'North-Western', '06'),
('ZM', 'Lusaka', '09'),
('ZM', 'Copperbelt', '08'),
('ZM', 'Muchinga', '10');
INSERT INTO
States (country_id, name, state_code)
VALUES
('EH', 'Western Sahara', 'EH');
INSERT INTO
States (country_id, name, state_code)
VALUES
('EE', 'Võrumaa', '86'),
('EE', 'Hiiumaa', '39'),
('EE', 'Saaremaa', '74'),
('EE', 'Ida-Virumaa', '44'),
('EE', 'Raplamaa', '70'),
('EE', 'Harjumaa', '37'),
('EE', 'Järvamaa', '51'),
('EE', 'Viljandimaa', '84'),
('EE', 'Valgamaa', '82'),
('EE', 'Läänemaa', '57'),
('EE', 'Tartumaa', '78'),
('EE', 'Lääne-Virumaa', '59'),
('EE', 'Jõgevamaa', '49'),
('EE', 'Põlvamaa', '65'),
('EE', 'Pärnumaa', '67');
INSERT INTO
States (country_id, name, state_code)
VALUES
('EG', 'Dumyāţ', 'DT'),
('EG', 'Shamāl Sīnā\'', 'SIN'),
('EG', 'Al Baḩr al Aḩmar', 'BA'),
('EG', 'Al Buḩayrah', 'BH'),
('EG', 'Ad Daqahlīyah', 'DK'),
('EG', 'Sūhāj', 'SHG'),
('EG', 'Maţrūḩ', 'MT'),
('EG', 'Qinā', 'KN'),
('EG', 'Al Qalyūbīyah', 'KB'),
('EG', 'Al Minyā', 'MN'),
('EG', 'Al Gharbīyah', 'GH'),
('EG', 'Asyūţ', 'AST'),
('EG', 'Ash Sharqīyah', 'SHR'),
('EG', 'Aswān', 'ASN'),
('EG', 'Al Ismā\'īlīyah', 'IS'),
('EG', 'Al Jīzah', 'GZ'),
('EG', 'Al Qāhirah', 'C'),
('EG', 'As Suways', 'SUZ'),
('EG', 'Al Iskandarīyah', 'ALX'),
('EG', 'Banī Suwayf', 'BNS'),
('EG', 'Al Uqşur', 'LX'),
('EG', 'Al Minūfīyah', 'MNF'),
('EG', 'Janūb Sīnā\'', 'JS'),
('EG', 'Al Wādī al Jadīd', 'WAD'),
('EG', 'Kafr ash Shaykh', 'KFS'),
('EG', 'Al Fayyūm', 'FYM'),
('EG', 'Būr Sa‘īd', 'PTS');
INSERT INTO
States (country_id, name, state_code)
VALUES
('ZA', 'GaZulu-Natala', 'NL'),
('ZA', 'Gauteng', 'GT'),
('ZA', 'Eastern Cape', 'EC'),
('ZA', 'iTlhagwini-Kapa', 'NC'),
('ZA', 'Limpopo', 'LP'),
('ZA', 'iMpumalanga', 'MP'),
('ZA', 'iTjhingalanga-Kapa', 'WC'),
('ZA', 'Bokone Bophirima', 'NW'),
('ZA', 'Foreisetata', 'FS');
INSERT INTO
States (country_id, name, state_code)
VALUES
('EC', 'Santa Elena', 'SE'),
('EC', 'Santo Domingo de los Tsáchilas', 'SD'),
('EC', 'Zamora-Chinchipe', 'Z'),
('EC', 'Pastaza', 'Y'),
('EC', 'Cotopaxi', 'X'),
('EC', 'Galápagos', 'W'),
('EC', 'Sucumbíos', 'U'),
('EC', 'Tungurahua', 'T'),
('EC', 'Morona-Santiago', 'S'),
('EC', 'Los Ríos', 'R'),
('EC', 'Pichincha', 'P'),
('EC', 'El Oro', 'O'),
('EC', 'Napo', 'N'),
('EC', 'Manabí', 'M'),
('EC', 'Loja', 'L'),
('EC', 'Imbabura', 'I'),
('EC', 'Chimborazo', 'H'),
('EC', 'Guayas', 'G'),
('EC', 'Cañar', 'F'),
('EC', 'Esmeraldas', 'E'),
('EC', 'Orellana', 'D'),
('EC', 'Carchi', 'C'),
('EC', 'Bolívar', 'B'),
('EC', 'Azuay', 'A');
INSERT INTO
States (country_id, name, state_code)
VALUES
('IT', 'Bari', 'BA'),
('IT', 'Terni', 'TR'),
('IT', 'Bergamo', 'BG'),
('IT', 'Biella', 'BI'),
('IT', 'Bologna', 'BO'),
('IT', 'Benevento', 'BN'),
('IT', 'Belluno', 'BL'),
('IT', 'Brescia', 'BS'),
('IT', 'Brindisi', 'BR'),
('IT', 'Barletta-Andria-Trani', 'BT'),
('IT', 'Bolzano', 'BZ'),
('IT', 'Val d\'Aoste', '23'),
('IT', 'Piemonte', '21'),
('IT', 'Lombardia', '25'),
('IT', '<NAME>', 'RC'),
('IT', 'Ravenna', 'RA'),
('IT', 'Ragusa', 'RG'),
('IT', '<NAME>', 'RE'),
('IT', 'Rieti', 'RI'),
('IT', 'Rovigo', 'RO'),
('IT', 'Rimini', 'RN'),
('IT', 'Roma', 'RM'),
('IT', 'Agrigento', 'AG'),
('IT', 'Ancona', 'AN'),
('IT', 'Aosta', 'AO'),
('IT', 'Alessandria', 'AL'),
('IT', 'Isernia', 'IS'),
('IT', 'Avellino', 'AV'),
('IT', 'Asti', 'AT'),
('IT', 'Imperia', 'IM'),
('IT', 'Arezzo', 'AR'),
('IT', '<NAME>', 'AP'),
('IT', 'L\'Aquila', 'AQ'),
('IT', 'Foggia', 'FG'),
('IT', 'Veneto', '34'),
('IT', '<NAME>', '36'),
('IT', 'Ferrara', 'FE'),
('IT', 'Trentino-Al<NAME>', '32'),
('IT', 'Venezia', 'VE'),
('IT', 'Lecco', 'LC'),
('IT', 'Lecce', 'LE'),
('IT', 'Livorno', 'LI'),
('IT', 'Trapani', 'TP'),
('IT', 'Trieste', 'TS'),
('IT', 'Liguria', '42'),
('IT', 'Emilia-Romagna', '45'),
('IT', 'Lodi', 'LO'),
('IT', 'Treviso', 'TV'),
('IT', 'Lucca', 'LU'),
('IT', 'Latina', 'LT'),
('IT', 'Torino', 'TO'),
('IT', 'Trento', 'TN'),
('IT', 'Taranto', 'TA'),
('IT', 'Teramo', 'TE'),
('IT', 'Caltanissetta', 'CL'),
('IT', 'Cuneo', 'CN'),
('IT', 'Como', 'CO'),
('IT', 'Chieti', 'CH'),
('IT', 'Carbonia-Iglesias', 'CI'),
('IT', 'Caserta', 'CE'),
('IT', 'Cagliari', 'CA'),
('IT', 'Campobasso', 'CB'),
('IT', 'Catanzaro', 'CZ'),
('IT', 'Catania', 'CT'),
('IT', 'Cremona', 'CR'),
('IT', 'Cosenza', 'CS'),
('IT', 'Toscana', '52'),
('IT', 'Savona', 'SV'),
('IT', 'La Spezia', 'SP'),
('IT', 'Marche', '57'),
('IT', 'Siracusa', 'SR'),
('IT', 'Umbria', '55'),
('IT', 'Sondrio', 'SO'),
('IT', 'Siena', 'SI'),
('IT', 'Crotone', 'KR'),
('IT', 'Salerno', 'SA'),
('IT', 'Verona', 'VR'),
('IT', 'Frosinone', 'FR'),
('IT', 'Molise', '67'),
('IT', 'Abruzzo', '65'),
('IT', 'Forlì-Cesena', 'FC'),
('IT', 'Lazio', '62'),
('IT', 'Fermo', 'FM'),
('IT', 'Firenze', 'FI'),
('IT', 'Novara', 'NO'),
('IT', 'Napoli', 'NA'),
('IT', 'Nuoro', 'NU'),
('IT', 'Enna', 'EN'),
('IT', 'Campania', '72'),
('IT', 'Puglia', '75'),
('IT', 'Basilicata', '77'),
('IT', 'Calabria', '78'),
('IT', 'Monza e Brianza', 'MB'),
('IT', 'Macerata', 'MC'),
('IT', 'Messina', 'ME'),
('IT', 'Milano', 'MI'),
('IT', 'Mantova', 'MN'),
('IT', 'Modena', 'MO'),
('IT', 'Massa-Carrara', 'MS'),
('IT', 'Matera', 'MT'),
('IT', 'Udine', 'UD'),
('IT', 'Sardegna', '88'),
('IT', 'Sassari', 'SS'),
('IT', 'Sicilia', '82'),
('IT', '<NAME>', 'PU'),
('IT', 'Pistoia', 'PT'),
('IT', 'Pavia', 'PV'),
('IT', 'Parma', 'PR'),
('IT', 'Potenza', 'PZ'),
('IT', 'Pescara', 'PE'),
('IT', 'Padova', 'PD'),
('IT', 'Perugia', 'PG'),
('IT', 'Palermo', 'PA'),
('IT', 'Piacenza', 'PC'),
('IT', 'Prato', 'PO'),
('IT', 'Pordenone', 'PN'),
('IT', 'Pisa', 'PI'),
('IT', 'Grosseto', 'GR'),
('IT', 'Vercelli', 'VC'),
('IT', 'Verbano-Cusio-Ossola', 'VB'),
('IT', 'Varese', 'VA'),
('IT', 'Vicenza', 'VI'),
('IT', 'Vibo Valentia', 'VV'),
('IT', 'Viterbo', 'VT'),
('IT', '<NAME>', 'VS'),
('IT', 'Genova', 'GE'),
('IT', 'Gorizia', 'GO'),
('IT', 'Ogliastra', 'OG'),
('IT', 'Oristano', 'OR'),
('IT', 'Olbia-Tempio', 'OT');
INSERT INTO
States (country_id, name, state_code)
VALUES
('VN', '<NAME>', '28'),
('VN', 'Quảng Ngãi', '29'),
('VN', 'Thừa Thiên-Huế', '26'),
('VN', 'Quảng Nam', '27'),
('VN', 'Quảng Bình', '24'),
('VN', 'Quảng Trị', '25'),
('VN', 'Nghệ An', '22'),
('VN', 'Hà Tĩnh', '23'),
('VN', 'Thái Bình', '20'),
('VN', 'Thanh Hóa', '21'),
('VN', 'Đắk Nông', '72'),
('VN', 'Da Nang', 'DN'),
('VN', 'Ho Chi Minh', 'SG'),
('VN', 'Vĩnh Phúc', '70'),
('VN', 'Nam Ðịnh', '67'),
('VN', 'Vĩnh Long', '49'),
('VN', 'Hà Nam', '63'),
('VN', 'Ha Noi', 'HN'),
('VN', 'Điện Biên', '71'),
('VN', 'Lâm Ðồng', '35'),
('VN', 'Hậu Giang', '73'),
('VN', 'Hải Dương', '61'),
('VN', 'Cà Mau', '59'),
('VN', 'Bình Phước', '58'),
('VN', 'Bình Dương', '57'),
('VN', 'Bắc Ninh', '56'),
('VN', 'Bạc Liêu', '55'),
('VN', 'Bắc Giang', '54'),
('VN', 'Bắc Kạn', '53'),
('VN', 'Sóc Trăng', '52'),
('VN', 'Trà Vinh', '51'),
('VN', 'Bến Tre', '50'),
('VN', 'Ninh Bình', '18'),
('VN', 'Ðồng Nai', '39'),
('VN', 'Quảng Ninh', '13'),
('VN', 'Khánh Hòa', '34'),
('VN', 'Tây Ninh', '37'),
('VN', 'Ninh Thuận', '36'),
('VN', 'Bình Định', '31'),
('VN', 'Gia Lai', '30'),
('VN', 'Đắk Lắk', '33'),
('VN', 'Hòa Bình', '14'),
('VN', 'Can Tho', 'CT'),
('VN', 'Phú Yên', '32'),
('VN', 'Thái Nguyên', '69'),
('VN', 'Hai Phong', 'HP'),
('VN', 'Ðồng Tháp', '45'),
('VN', 'Cao Bằng', '04'),
('VN', 'Sơn La', '05'),
('VN', 'Yên Bái', '06'),
('VN', 'Tuyên Quang', '07'),
('VN', 'Hưng Yên', '66'),
('VN', 'Lai Châu', '01'),
('VN', 'Lào Cai', '02'),
('VN', 'Hà Giang', '03'),
('VN', 'Bình Thuận', '40'),
('VN', 'Long An', '41'),
('VN', 'Phú Thọ', '68'),
('VN', 'Bà Rịa - Vũng Tàu', '43'),
('VN', 'An Giang', '44'),
('VN', 'Lạng Sơn', '09'),
('VN', 'Tiền Giang', '46'),
('VN', 'Kiến Giang', '47');
INSERT INTO
States (country_id, name, state_code)
VALUES
('SB', 'Temotu', 'TE'),
('SB', 'Isabel', 'IS'),
('SB', 'Malaita', 'ML'),
('SB', 'Makira-Ulawa', 'MK'),
('SB', 'Choiseul', 'CH'),
('SB', 'Guadalcanal', 'GU'),
('SB', 'Capital Territory', 'CT'),
('SB', 'Rennell and Bellona', 'RB'),
('SB', 'Western', 'WE'),
('SB', 'Central', 'CE');
INSERT INTO
States (country_id, name, state_code)
VALUES
('ET', 'Benshangul-Gumaz', 'BE'),
('ET', 'Oromia', 'OR'),
('ET', 'Tigrai', 'TI'),
('ET', 'Harari People', 'HA'),
('ET', 'Dire Dawa', 'DD'),
('ET', 'Amara', 'AM'),
('ET', '<NAME>', 'AA'),
('ET', 'Afar', 'AF'),
('ET', 'Gambē<NAME>', 'GA'),
('ET', 'Southern Nations, Nationalities and Peoples', 'SN'),
('ET', 'Somali', 'SO');
INSERT INTO
States (country_id, name, state_code)
VALUES
('SO', 'Sool', 'SO'),
('SO', 'Bakool', 'BK'),
('SO', 'Woqooyi Galbeed', 'WO'),
('SO', 'Banaadir', 'BN'),
('SO', 'Togdheer', 'TO'),
('SO', 'Mudug', 'MU'),
('SO', 'Bay', 'BY'),
('SO', 'Hiiraan', 'HI'),
('SO', 'Jubbada Dhexe', 'JD'),
('SO', 'Sanaag', 'SA'),
('SO', 'Awdal', 'AW'),
('SO', 'Shabeellaha Hoose', 'SH'),
('SO', 'Jubbada Hoose', 'JH'),
('SO', 'Nugaal', 'NU'),
('SO', 'Galguduud', 'GA'),
('SO', 'Shabeellaha Dhexe', 'SD'),
('SO', 'Bari', 'BR'),
('SO', 'Gedo', 'GE');
INSERT INTO
States (country_id, name, state_code)
VALUES
('ZW', 'Bulawayo', 'BU'),
('ZW', 'Harare', 'HA'),
('ZW', 'Matabeleland South', 'MS'),
('ZW', 'Masvingo', 'MV'),
('ZW', 'Mashonaland West', 'MW'),
('ZW', 'Midlands', 'MI'),
('ZW', 'Matabeleland North', 'MN'),
('ZW', 'Manicaland', 'MA'),
('ZW', 'Mashonaland Central', 'MC'),
('ZW', 'Mashonaland East', 'ME');
INSERT INTO
States (country_id, name, state_code)
VALUES
('SA', 'Al Ḩudūd ash Shamālīyah', '08'),
('SA', 'Jāzān', '09'),
('SA', '\'Asīr', '14'),
('SA', 'Ar Riyāḑ', '01'),
('SA', 'Makkah al Mukarramah', '02'),
('SA', 'Al Madīnah al Munawwarah', '03'),
('SA', 'Ash Sharqīyah', '04'),
('SA', 'Al Qaşīm', '05'),
('SA', 'Ḩā\'il', '06'),
('SA', 'Tabūk', '07'),
('SA', 'Al Bāḩah', '11'),
('SA', 'Najrān', '10'),
('SA', 'Al Jawf', '12');
INSERT INTO
States (country_id, name, state_code)
VALUES
('ES', 'Nafarroa*', 'NA'),
('ES', 'Balears', 'PM'),
('ES', 'Santa Cruz de Tenerife', 'TF'),
('ES', 'Barcelona', 'B'),
('ES', 'Alacant*', 'A'),
('ES', 'Zamora', 'ZA'),
('ES', 'Murcia', 'MU'),
('ES', 'Álava', 'VI'),
('ES', 'Zaragoza', 'Z'),
('ES', 'Asturias', 'O'),
('ES', 'Illes Balears', 'IB'),
('ES', 'Madrid', 'M'),
('ES', 'Lleida', 'L'),
('ES', 'Jaén', 'J'),
('ES', 'Huelva', 'H'),
('ES', 'Asturias, Principado de', 'AS'),
('ES', 'Aragón', 'AR'),
('ES', 'A Coruña', 'C'),
('ES', 'Ávila', 'AV'),
('ES', 'Castelló*', 'CS'),
('ES', 'Ciudad Real', 'CR'),
('ES', 'Castilla-La Mancha', 'CM'),
('ES', 'Castilla y León', 'CL'),
('ES', 'Córdoba', 'CO'),
('ES', 'Canarias', 'CN'),
('ES', 'Murcia, Región de', 'MC'),
('ES', 'Andalucía', 'AN'),
('ES', 'Málaga', 'MA'),
('ES', 'Almería', 'AL'),
('ES', 'Ceuta', 'CE'),
('ES', 'Albacete', 'AB'),
('ES', 'Tarragona', 'T'),
('ES', 'Melilla', 'ML'),
('ES', 'Cádiz', 'CA'),
('ES', 'Teruel', 'TE'),
('ES', 'Cáceres', 'CC'),
('ES', 'Cantabria', 'CB'),
('ES', 'Galicia', 'GA'),
('ES', 'Pontevedra', 'PO'),
('ES', 'Las Palmas', 'GC'),
('ES', 'La Rioja', 'RI'),
('ES', 'Cantabria', 'S'),
('ES', 'Girona', 'GI'),
('ES', 'Toledo', 'TO'),
('ES', 'Catalunya', 'CT'),
('ES', 'Granada', 'GR'),
('ES', 'Guadalajara', 'GU'),
('ES', 'Madrid, Comunidad de', 'MD'),
('ES', 'Extremadura', 'EX'),
('ES', 'Euskal Herria', 'PV'),
('ES', 'Valencia', 'V'),
('ES', 'Valenciana, Comunidad', 'VC'),
('ES', 'Soria', 'SO'),
('ES', 'Ourense', 'OR'),
('ES', 'Lugo', 'LU'),
('ES', 'Sevilla', 'SE'),
('ES', 'Nafarroako Foru Komunitatea*', 'NC'),
('ES', 'Segovia', 'SG'),
('ES', 'Burgos', 'BU'),
('ES', 'Salamanca', 'SA'),
('ES', 'Valladolid', 'VA'),
('ES', 'Cuenca', 'CU'),
('ES', 'Palencia', 'P'),
('ES', 'León', 'LE'),
('ES', 'Bizkaia*', 'BI'),
('ES', 'Huesca', 'HU'),
('ES', 'La Rioja', 'LO'),
('ES', 'Gipuzkoa*', 'SS'),
('ES', 'Badajoz', 'BA');
INSERT INTO
States (country_id, name, state_code)
VALUES
('ER', 'Ansabā', 'AN'),
('ER', 'Al Awsaţ', 'MA'),
('ER', 'Al Janūbī', 'DU'),
('ER', 'Debubawi K’eyyĭḥ Baḥri', 'DK'),
('ER', 'Semienawi K’eyyĭḥ Baḥri', 'SK'),
('ER', 'Gash-Barka', 'GB');
INSERT INTO
States (country_id, name, state_code)
VALUES
('ME', 'Cetinje', '06'),
('ME', 'Danilovgrad', '07'),
('ME', 'Bijelo Polje', '04'),
('ME', 'Budva', '05'),
('ME', 'Bar', '02'),
('ME', 'Berane', '03'),
('ME', 'Andrijevica', '01'),
('ME', 'Ulcinj', '20'),
('ME', 'Žabljak', '21'),
('ME', 'Herceg-Novi', '08'),
('ME', 'Kolašin', '09'),
('ME', 'Plužine', '15'),
('ME', 'Pljevlja', '14'),
('ME', 'Rožaje', '17'),
('ME', 'Podgorica', '16'),
('ME', 'Mojkovac', '11'),
('ME', 'Kotor', '10'),
('ME', 'Plav', '13'),
('ME', 'Nikšić', '12'),
('ME', 'Tivat', '19'),
('ME', 'Šavnik', '18'),
('ME', 'Gusinje', '22'),
('ME', 'Petnjica', '23');
INSERT INTO
States (country_id, name, state_code)
VALUES
('MD', 'Leova', 'LE'),
('MD', 'Soroca', 'SO'),
('MD', 'Teleneşti', 'TE'),
('MD', 'Ialoveni', 'IA'),
('MD', 'Taraclia', 'TA'),
('MD', 'Ocniţa', 'OC'),
('MD', 'Rîşcani', 'RI'),
('MD', 'Edineţ', 'ED'),
('MD', 'Rezina', 'RE'),
('MD', 'Orhei', 'OR'),
('MD', 'Călăraşi', 'CL'),
('MD', 'Cimişlia', 'CM'),
('MD', 'Glodeni', 'GL'),
('MD', 'Cahul', 'CA'),
('MD', 'Anenii Noi', 'AN'),
('MD', 'Ungheni', 'UN'),
('MD', 'Criuleni', 'CR'),
('MD', 'Căuşeni', 'CS'),
('MD', 'Cantemir', 'CT'),
('MD', 'Chişinău', 'CU'),
('MD', 'Hînceşti', 'HI'),
('MD', 'Dubăsari', 'DU'),
('MD', 'Nisporeni', 'NI'),
('MD', 'Străşeni', 'ST'),
('MD', 'Ştefan Vodă', 'SV'),
('MD', 'Drochia', 'DR'),
('MD', 'Sîngerei', 'SI'),
('MD', 'Donduşeni', 'DO'),
('MD', 'Stînga Nistrului, unitatea teritorială din', 'SN'),
('MD', 'Floreşti', 'FL'),
('MD', 'Făleşti', 'FA'),
('MD', 'Şoldăneşti', 'SD'),
('MD', 'Găgăuzia, Unitatea teritorială autonomă', 'GA'),
('MD', 'Bender', 'BD'),
('MD', 'Bălţi', 'BA'),
('MD', 'Basarabeasca', 'BS'),
('MD', 'Briceni', 'BR');
INSERT INTO
States (country_id, name, state_code)
VALUES
('MG', 'Toamasina', 'A'),
('MG', 'Fianarantsoa', 'F'),
('MG', 'Antsiranana', 'D'),
('MG', 'Mahajanga', 'M'),
('MG', 'Toliara', 'U'),
('MG', 'Antananarivo', 'T');
INSERT INTO
States (country_id, name, state_code)
VALUES
('MF', 'St. Martin', 'MF');
INSERT INTO
States (country_id, name, state_code)
VALUES
('MA', 'Rabat', 'RAB'),
('MA', 'Marrakech-Medina', 'MMD'),
('MA', 'Aousserd', 'AOU'),
('MA', 'Beni Mellal', 'BEM'),
('MA', 'Casablanca', 'CAS'),
('MA', 'Tiznit', 'TIZ'),
('MA', 'Safi', 'SAF'),
('MA', 'Figuig', 'FIG'),
('MA', 'Salé', 'SAL'),
('MA', 'El Jadida', 'JDI'),
('MA', 'Larache', 'LAR'),
('MA', 'Skhirate-Témara', 'SKH'),
('MA', 'Khemisset', 'KHE'),
('MA', 'Laâyoune', 'LAA'),
('MA', 'Guelmim', 'GUE'),
('MA', 'Al Haouz', 'HAO'),
('MA', 'Khenifra', 'KHN'),
('MA', 'Khouribga', 'KHO'),
('MA', 'Taroudant', 'TAR'),
('MA', 'Es Smara', 'ESM'),
('MA', 'Berkane', 'BER'),
('MA', '<NAME>', 'BES'),
('MA', 'Essaouira', 'ESI'),
('MA', 'Settat', 'SET'),
('MA', '<NAME>', 'CHT'),
('MA', 'Azilal', 'AZI'),
('MA', 'Nouaceur', 'NOU'),
('MA', 'Mohammadia', 'MOH'),
('MA', '<NAME>', 'MOU'),
('MA', 'Kénitra', 'KEN'),
('MA', '<NAME>', '11'),
('MA', 'Doukkala-Abda', '10'),
('MA', 'Sous-Massa-Draa', '13'),
('MA', 'Tadla-Azilal', '12'),
('MA', '<NAME>', '15'),
('MA', 'Guelmim-<NAME>', '14'),
('MA', 'El Hajeb', 'HAJ'),
('MA', '<NAME>', '16'),
('MA', 'Boujdour', 'BOD'),
('MA', '<NAME>', 'SYB'),
('MA', 'Zagora', 'ZAG'),
('MA', 'Chefchaouen', 'CHE'),
('MA', '<NAME>', 'KES'),
('MA', 'Taourirt', 'TAI'),
('MA', 'Jrada', 'JRA'),
('MA', 'Médiouna', 'MED'),
('MA', 'Taounate', 'TAO'),
('MA', 'Tétouan', 'TET'),
('MA', 'Assa-Zag', 'ASZ'),
('MA', 'Tanger-Assilah', 'TNG'),
('MA', 'Sefrou', 'SEF'),
('MA', 'Marrakech-Menara', 'MMN'),
('MA', 'Taza', 'TAZ'),
('MA', 'Inezgane-<NAME>', 'INE'),
('MA', 'Nador', 'NAD'),
('MA', 'Chichaoua', 'CHI'),
('MA', 'Errachidia', 'ERR'),
('MA', 'Tan-Tan', 'TNT'),
('MA', 'Tata', 'TAT'),
('MA', 'Ifrane', 'IFR'),
('MA', 'Chaouia-Ouardigha', '09'),
('MA', '<NAME>', 'SIK'),
('MA', 'Oujda-Angad', 'OUJ'),
('MA', 'Fès-Dar-Dbibegh', 'FES'),
('MA', '<NAME>', 'OUD'),
('MA', 'Meknès', 'MEK'),
('MA', 'Ouarzazate', 'OUA'),
('MA', 'Gharb-Chrarda-<NAME>', '02'),
('MA', 'Taza-Al Hoceima-Taounate', '03'),
('MA', 'Tanger-Tétouan', '01'),
('MA', 'Meknès-Tafilalet', '06'),
('MA', 'Rabat-Salé-Zemmour-Zaer', '07'),
('MA', 'L\'Oriental', '04'),
('MA', 'Fès-Boulemane', '05'),
('MA', 'Grand Casablanca', '08'),
('MA', 'Agadir-Ida-Outanane', 'AGD'),
('MA', 'Boulemane', 'BOM'),
('MA', '<NAME>', 'FAH'),
('MA', 'Al Hoceïma', 'HOC');
INSERT INTO
States (country_id, name, state_code)
VALUES
('MC', 'Monaco-Ville', 'MO'),
('MC', 'Vallon de la Rousse', 'VR'),
('MC', 'Fontvieille', 'FO'),
('MC', 'Sainte-Dévote', 'SD'),
('MC', 'La Gare', 'GA'),
('MC', 'La Colle', 'CL'),
('MC', 'La Condamine', 'CO'),
('MC', 'Saint-Roman', 'SR'),
('MC', 'Monte-Carlo', 'MC'),
('MC', 'Malbousquet', 'MA'),
('MC', 'Moneghetti', 'MG'),
('MC', 'Port-Hercule', 'PH'),
('MC', 'Larvotto', 'LA'),
('MC', 'Moulins', 'MU'),
('MC', 'Jardin Exotique', 'JE'),
('MC', 'La Source', 'SO'),
('MC', 'Spélugues', 'SP');
INSERT INTO
States (country_id, name, state_code)
VALUES
('UZ', 'Qashqadaryo', 'QA'),
('UZ', 'Farg‘ona', 'FA'),
('UZ', 'Jizzax', 'JI'),
('UZ', 'Toshkent', 'TO'),
('UZ', 'Navoiy', 'NW'),
('UZ', 'Surxondaryo', 'SU'),
('UZ', 'Xorazm', 'XO'),
('UZ', 'Qoraqalpog‘iston Respublikasi', 'QR'),
('UZ', 'Sirdaryo', 'SI'),
('UZ', 'Toshkent', 'TK'),
('UZ', 'Namangan', 'NG'),
('UZ', 'Samarqand', 'SA'),
('UZ', 'Buxoro', 'BU'),
('UZ', 'Andijon', 'AN');
INSERT INTO
States (country_id, name, state_code)
VALUES
('MM', 'Rakhine', '16'),
('MM', '<NAME>', '18'),
('MM', 'Yangon', '06'),
('MM', 'Ayeyawady', '07'),
('MM', 'Mandalay', '04'),
('MM', 'Taninthayi', '05'),
('MM', 'Bago', '02'),
('MM', 'Magway', '03'),
('MM', 'Kayin', '13'),
('MM', 'Sagaing', '01'),
('MM', 'Mon', '15'),
('MM', 'Chin', '14'),
('MM', 'Kachin', '11'),
('MM', 'Kayah', '12'),
('MM', 'Shan', '17');
INSERT INTO
States (country_id, name, state_code)
VALUES
('ML', 'Bamako', 'BKO'),
('ML', 'Kayes', '1'),
('ML', 'Koulikoro', '2'),
('ML', 'Sikasso', '3'),
('ML', 'Ségou', '4'),
('ML', 'Mopti', '5'),
('ML', 'Tombouctou', '6'),
('ML', 'Gao', '7'),
('ML', 'Kidal', '8');
INSERT INTO
States (country_id, name, state_code)
VALUES
('MO', 'Macau', 'MO');
INSERT INTO
States (country_id, name, state_code)
VALUES
('MN', 'Arhangay', '073'),
('MN', 'Töv', '047'),
('MN', 'Hentiy', '039'),
('MN', 'Bayan-Ölgiy', '071'),
('MN', 'Dundgovĭ', '059'),
('MN', 'Dzavhan', '057'),
('MN', 'Övörhangay', '055'),
('MN', 'Ömnögovĭ', '053'),
('MN', 'Sühbaatar', '051'),
('MN', 'Orhon', '035'),
('MN', 'Darhan uul', '037'),
('MN', 'Ulaanbaatar', '1'),
('MN', 'Bulgan', '067'),
('MN', 'Govĭ-Sümber', '064'),
('MN', 'Govĭ-Altay', '065'),
('MN', 'Dornogovĭ', '063'),
('MN', 'Uvs', '046'),
('MN', 'Dornod', '061'),
('MN', 'Selenge', '049'),
('MN', 'Bayanhongor', '069'),
('MN', 'Hövsgöl', '041'),
('MN', 'Hovd', '043');
INSERT INTO
States (country_id, name, state_code)
VALUES
('MH', 'Rongelap', 'RON'),
('MH', 'Kwajalein', 'KWA'),
('MH', 'Maloelap', 'MAL'),
('MH', 'Wotho', 'WTH'),
('MH', 'Wotje', 'WTJ'),
('MH', 'Ralik chain', 'L'),
('MH', 'Enewetak and Ujelang', 'ENI'),
('MH', 'Utrik', 'UTI'),
('MH', 'Ratak chain', 'T'),
('MH', 'Aur', 'AUR'),
('MH', 'Jaluit', 'JAL'),
('MH', 'Ujae', 'UJA'),
('MH', 'Jabat', 'JAB'),
('MH', 'Ailuk', 'ALK'),
('MH', 'Namu', 'NMU'),
('MH', 'Ailinglaplap', 'ALL'),
('MH', 'Mejit', 'MEJ'),
('MH', 'Lae', 'LAE'),
('MH', 'Ebon', 'EBO'),
('MH', 'Bikini and Kili', 'KIL'),
('MH', 'Namdrik', 'NMK'),
('MH', 'Arno', 'ARN'),
('MH', 'Majuro', 'MAJ'),
('MH', 'Mili', 'MIL'),
('MH', 'Lib', 'LIB'),
('MH', 'Likiep', 'LIK');
INSERT INTO
States (country_id, name, state_code)
VALUES
('MK', 'Kavadarci', '36'),
('MK', 'Krivogaštani', '45'),
('MK', 'Zrnovci', '33'),
('MK', 'Saraj †', '68'),
('MK', 'Zajas', '31'),
('MK', 'Rankovce', '65'),
('MK', 'Radoviš', '64'),
('MK', 'Želino', '30'),
('MK', 'Bitola', '04'),
('MK', 'Bogdanci', '05'),
('MK', 'Bogovinje', '06'),
('MK', 'Bosilovo', '07'),
('MK', 'Resen', '66'),
('MK', 'Aerodrom †', '01'),
('MK', 'Aračinovo', '02'),
('MK', 'Berovo', '03'),
('MK', 'Kičevo', '40'),
('MK', 'Konče', '41'),
('MK', 'Kočani', '42'),
('MK', 'Zelenikovo', '32'),
('MK', 'Brvenica', '08'),
('MK', 'Butel †', '09'),
('MK', 'Kruševo', '46'),
('MK', 'Kumanovo', '47'),
('MK', 'Kratovo', '43'),
('MK', 'Sveti Nikole', '69'),
('MK', 'Drugovo', '28'),
('MK', 'Gjorče Petrov †', '29'),
('MK', 'Dojran', '26'),
('MK', 'Dolneni', '27'),
('MK', '<NAME>', '24'),
('MK', '<NAME>', '25'),
('MK', 'Debarca', '22'),
('MK', 'Delčevo', '23'),
('MK', 'Gradsko', '20'),
('MK', 'Debar', '21'),
('MK', 'Prilep', '62'),
('MK', 'Studeničani', '74'),
('MK', 'Čaška', '80'),
('MK', 'Češinovo-Obleševo', '81'),
('MK', 'Čuč<NAME>', '82'),
('MK', 'Štip', '83'),
('MK', 'Centar Župa', '78'),
('MK', 'Staro Nagoričane', '71'),
('MK', 'Sopište', '70'),
('MK', 'Pehčevo', '60'),
('MK', 'Struga', '72'),
('MK', 'Tearce', '75'),
('MK', 'Strumica', '73'),
('MK', 'Petrovec', '59'),
('MK', 'Ohrid', '58'),
('MK', 'Oslomej', '57'),
('MK', 'Novo Selo', '56'),
('MK', 'Novaci', '55'),
('MK', 'Negotino', '54'),
('MK', 'Mogila', '53'),
('MK', 'Makedonski Brod', '52'),
('MK', 'Makedonska Kamenica', '51'),
('MK', 'Mavrovo i Rostuša', '50'),
('MK', 'Lipkovo', '48'),
('MK', 'Gostivar', '19'),
('MK', 'Gevgelija', '18'),
('MK', 'Kisela Voda †', '39'),
('MK', 'Karpoš †', '38'),
('MK', 'Kriva Palanka', '44'),
('MK', 'Lozovo', '49'),
('MK', 'Veles', '13'),
('MK', 'Vevčani', '12'),
('MK', 'Vasilevo', '11'),
('MK', 'Valandovo', '10'),
('MK', 'Gazi Baba †', '17'),
('MK', 'Vrapčište', '16'),
('MK', 'Vraneštica', '15'),
('MK', 'Vinica', '14'),
('MK', 'Jegunovce', '35'),
('MK', 'Šuto Orizari †', '84'),
('MK', 'Plasnica', '61'),
('MK', 'Čair †', '79'),
('MK', 'Ilinden', '34'),
('MK', 'Probištip', '63'),
('MK', 'Tetovo', '76'),
('MK', 'Centar †', '77'),
('MK', 'Karbinci', '37'),
('MK', 'Rosoman', '67');
INSERT INTO
States (country_id, name, state_code)
VALUES
('MU', 'Vacoas-Phoenix', 'VP'),
('MU', 'Cargados Carajos Shoals', 'CC'),
('MU', 'Savanne', 'SA'),
('MU', 'Rodrigues Island', 'RO'),
('MU', 'Curepipe', 'CU'),
('MU', 'Pamplemousses', 'PA'),
('MU', 'Port Louis', 'PL'),
('MU', 'Quatre Bornes', 'QB'),
('MU', 'Flacq', 'FL'),
('MU', 'Beau Bassin-Rose Hill', 'BR'),
('MU', 'Black River', 'BL'),
('MU', 'Plaines Wilhems', 'PW'),
('MU', 'Agalega Islands', 'AG'),
('MU', 'Port Louis', 'PU'),
('MU', 'Rivière du Rempart', 'RR'),
('MU', 'Grand Port', 'GP'),
('MU', 'Moka', 'MO');
INSERT INTO
States (country_id, name, state_code)
VALUES
('MT', 'Ta’ Xbiex', '58'),
('MT', 'Tarxien', '59'),
('MT', 'Sliema', '56'),
('MT', 'Swieqi', '57'),
('MT', 'Santa Venera', '54'),
('MT', 'Siġġiewi', '55'),
('MT', 'Sannat', '52'),
('MT', 'Saint Lucia’s', '53'),
('MT', 'Saint Lawrence', '50'),
('MT', 'Saint Paul’s Bay', '51'),
('MT', 'Żurrieq', '68'),
('MT', 'Valletta', '60'),
('MT', 'Saint Julian’s', '48'),
('MT', 'Naxxar', '38'),
('MT', 'Żejtun', '67'),
('MT', 'Paola', '39'),
('MT', 'Attard', '01'),
('MT', 'Xgħajra', '63'),
('MT', 'Birgu', '03'),
('MT', 'Balzan', '02'),
('MT', 'Birżebbuġa', '05'),
('MT', 'Birkirkara', '04'),
('MT', 'Dingli', '07'),
('MT', 'Bormla', '06'),
('MT', 'Floriana', '09'),
('MT', 'Fgura', '08'),
('MT', 'Luqa', '25'),
('MT', 'Lija', '24'),
('MT', 'Kirkop', '23'),
('MT', 'Kerċem', '22'),
('MT', 'Kalkara', '21'),
('MT', 'Isla', '20'),
('MT', '<NAME>', '46'),
('MT', 'Saint John', '49'),
('MT', 'Mdina', '29'),
('MT', 'Rabat Gozo', '45'),
('MT', 'Qrendi', '44'),
('MT', 'Safi', '47'),
('MT', 'Marsaxlokk', '28'),
('MT', 'Pietà', '41'),
('MT', 'Pembroke', '40'),
('MT', 'Qormi', '43'),
('MT', 'Qala', '42'),
('MT', 'Marsaskala', '27'),
('MT', 'Żebbuġ Malta', '66'),
('MT', 'Żebbuġ Gozo', '65'),
('MT', 'Marsa', '26'),
('MT', 'Xagħra', '61'),
('MT', 'Xewkija', '62'),
('MT', 'Żabbar', '64'),
('MT', 'Mosta', '32'),
('MT', 'Mqabba', '33'),
('MT', 'Gżira', '12'),
('MT', 'Għajnsielem', '13'),
('MT', 'Fontana', '10'),
('MT', 'Gudja', '11'),
('MT', 'Għasri', '16'),
('MT', 'Għaxaq', '17'),
('MT', 'Għarb', '14'),
('MT', 'Għargħur', '15'),
('MT', 'Mellieħa', '30'),
('MT', 'Mġarr', '31'),
('MT', 'Ħamrun', '18'),
('MT', 'Iklin', '19'),
('MT', 'Msida', '34'),
('MT', 'Mtarfa', '35'),
('MT', 'Munxar', '36'),
('MT', 'Nadur', '37');
INSERT INTO
States (country_id, name, state_code)
VALUES
('MW', 'Chiradzulu', 'CR'),
('MW', 'Chitipa', 'CT'),
('MW', 'Chikwawa', 'CK'),
('MW', 'Kasungu', 'KS'),
('MW', 'Karonga', 'KR'),
('MW', 'Thyolo', 'TH'),
('MW', 'Nsanje', 'NS'),
('MW', 'Mchinji', 'MC'),
('MW', 'Mangochi', 'MG'),
('MW', 'Mzimba', 'MZ'),
('MW', 'Phalombe', 'PH'),
('MW', 'Mwanza', 'MW'),
('MW', 'Mulanje', 'MU'),
('MW', 'Rumphi', 'RU'),
('MW', 'Zomba', 'ZO'),
('MW', 'Dowa', 'DO'),
('MW', 'Blantyre', 'BL'),
('MW', 'Dedza', 'DE'),
('MW', 'Balaka', 'BA'),
('MW', 'Chakumwera', 'S'),
('MW', 'Nkhotakota', 'NK'),
('MW', 'Ntchisi', 'NI'),
('MW', 'Salima', 'SA'),
('MW', 'Neno', 'NE'),
('MW', 'Nkhata Bay', 'NB'),
('MW', 'Lilongwe', 'LI'),
('MW', 'Central Region', 'C'),
('MW', 'Machinga', 'MH'),
('MW', 'Ntcheu', 'NU'),
('MW', 'Chakumpoto', 'N'),
('MW', 'Likoma', 'LK');
INSERT INTO
States (country_id, name, state_code)
VALUES
('MV', 'Alifu Dhaalu', '00'),
('MV', 'Haa Dhaalu', '23'),
('MV', 'North', 'NO'),
('MV', 'Medhu-Uthuru', 'NC'),
('MV', 'Dhekunu', 'SU'),
('MV', 'Kolhumadulu', '08'),
('MV', 'Fuvammulah', '29'),
('MV', 'Gaafu Dhaalu', '28'),
('MV', 'Faadhippolhu', '03'),
('MV', 'Alifu Alifu', '02'),
('MV', 'Addu Atholhu', '01'),
('MV', 'Kaafu', '26'),
('MV', 'Haa Alifu', '07'),
('MV', 'Baa', '20'),
('MV', 'Hadhdhunmathi', '05'),
('MV', 'Felidhu Atholhu', '04'),
('MV', 'Maale', 'MLE'),
('MV', 'Medhu-Dhekunu', 'SC'),
('MV', 'Mathi-Uthuru', 'UN'),
('MV', 'Faafu', '14'),
('MV', 'Dhaalu', '17'),
('MV', 'Meemu', '12'),
('MV', 'Maalhosmadulu Uthuruburi', '13'),
('MV', 'Mathi-Dhekunu', 'US'),
('MV', 'Central', 'CE'),
('MV', 'Miladhunmadulu Dhekunuburi', '25'),
('MV', 'Miladhunmadulu Uthuruburi', '24'),
('MV', 'Gaafu Alifu', '27');
INSERT INTO
States (country_id, name, state_code)
VALUES
('MQ', 'Martinique', 'MQ');
INSERT INTO
States (country_id, name, state_code)
VALUES
('MP', 'Northern Mariana Islands', 'MP');
INSERT INTO
States (country_id, name, state_code)
VALUES
('MS', 'Montserrat', 'MS');
INSERT INTO
States (country_id, name, state_code)
VALUES
('MR', 'Adrar', '07'),
('MR', 'Trarza', '06'),
('MR', 'Brakna', '05'),
('MR', 'Gorgol', '04'),
('MR', 'Assaba', '03'),
('MR', 'Hodh el Gharbi', '02'),
('MR', 'Hodh ech Chargui', '01'),
('MR', 'Tiris Zemmour', '11'),
('MR', 'Nouakchott', 'NKC'),
('MR', 'Inchiri', '12'),
('MR', 'Tagant', '09'),
('MR', 'Dakhlet Nouâdhibou', '08'),
('MR', 'Guidimaka', '10');
INSERT INTO
States (country_id, name, state_code)
VALUES
('IM', 'Isle of Main', 'IM');
INSERT INTO
States (country_id, name, state_code)
VALUES
('UG', 'Napak', '328'),
('UG', 'Nwoya', '329'),
('UG', 'Mukono', '108'),
('UG', 'Nakasongola', '109'),
('UG', 'Kalangala', '101'),
('UG', 'Kampala', '102'),
('UG', 'Kiboga', '103'),
('UG', 'Luwero', '104'),
('UG', 'Masaka', '105'),
('UG', 'Mpigi', '106'),
('UG', 'Mubende', '107'),
('UG', 'Luuka', '229'),
('UG', 'Kween', '228'),
('UG', 'Manafwa', '221'),
('UG', 'Kaliro', '220'),
('UG', 'Bududa', '223'),
('UG', 'Namutumba', '222'),
('UG', 'Bulambuli', '225'),
('UG', 'Bukedea', '224'),
('UG', 'Kibuku', '227'),
('UG', 'Buyende', '226'),
('UG', 'Buikwe', '117'),
('UG', 'Lyantonde', '116'),
('UG', 'Nakaseke', '115'),
('UG', 'Mityana', '114'),
('UG', 'Wakiso', '113'),
('UG', 'Kayunga', '112'),
('UG', 'Sembabule', '111'),
('UG', 'Rakai', '110'),
('UG', 'Butambala', '119'),
('UG', 'Bukomansibi', '118'),
('UG', 'Mayuge', '214'),
('UG', 'Sironko', '215'),
('UG', 'Amuria', '216'),
('UG', 'Budaka', '217'),
('UG', 'Pallisa', '210'),
('UG', 'Soroti', '211'),
('UG', 'Tororo', '212'),
('UG', 'Kaberamaido', '213'),
('UG', 'Bukwa', '218'),
('UG', 'Butaleja', '219'),
('UG', 'Kyegegwa', '421'),
('UG', 'Iganga', '203'),
('UG', 'Busia', '202'),
('UG', 'Bugiri', '201'),
('UG', 'Katakwi', '207'),
('UG', 'Kapchorwa', '206'),
('UG', 'Kamuli', '205'),
('UG', 'Jinja', '204'),
('UG', 'Mbale', '209'),
('UG', 'Kumi', '208'),
('UG', 'Ibanda', '416'),
('UG', 'Kiruhura', '418'),
('UG', 'Buliisa', '419'),
('UG', 'Isingiro', '417'),
('UG', 'Moroto', '308'),
('UG', 'Moyo', '309'),
('UG', 'Apac', '302'),
('UG', 'Arua', '303'),
('UG', 'Adjumani', '301'),
('UG', 'Kotido', '306'),
('UG', 'Lira', '307'),
('UG', 'Gulu', '304'),
('UG', 'Kitgum', '305'),
('UG', 'Kiryandongo', '420'),
('UG', 'Sheema', '425'),
('UG', 'Rubirizi', '424'),
('UG', 'Ntoroko', '423'),
('UG', 'Mitooma', '422'),
('UG', 'Amuru', '319'),
('UG', 'Dokolo', '318'),
('UG', 'Kanungu', '414'),
('UG', 'Kyenjojo', '415'),
('UG', 'Rukungiri', '412'),
('UG', 'Kamwenge', '413'),
('UG', 'Mbarara', '410'),
('UG', 'Ntungamo', '411'),
('UG', 'Nakapiripirit', '311'),
('UG', 'Nebbi', '310'),
('UG', 'Yumbe', '313'),
('UG', 'Pader', '312'),
('UG', 'Kaabong', '315'),
('UG', 'Amolatar', '314'),
('UG', 'Abim', '317'),
('UG', 'Koboko', '316'),
('UG', 'Amudat', '324'),
('UG', 'Buhweju', '325'),
('UG', 'Kole', '326'),
('UG', 'Lamwo', '327'),
('UG', 'Maracha', '320'),
('UG', 'Oyam', '321'),
('UG', 'Agago', '322'),
('UG', 'Alebtong', '323'),
('UG', 'Lwengo', '124'),
('UG', 'Kalungu', '122'),
('UG', 'Kyankwanzi', '123'),
('UG', 'Buvuma', '120'),
('UG', 'Gomba', '121'),
('UG', 'Kabarole', '405'),
('UG', 'Kabale', '404'),
('UG', 'Kibaale', '407'),
('UG', 'Kasese', '406'),
('UG', 'Bundibugyo', '401'),
('UG', 'Hoima', '403'),
('UG', 'Bushenyi', '402'),
('UG', 'Masindi', '409'),
('UG', 'Kisoro', '408'),
('UG', 'Northern', 'N'),
('UG', 'Central', 'C'),
('UG', 'Eastern', 'E'),
('UG', 'Western', 'W'),
('UG', 'Zombo', '331'),
('UG', 'Otuke', '330'),
('UG', 'Serere', '232'),
('UG', 'Namayingo', '230'),
('UG', 'Ngora', '231');
INSERT INTO
States (country_id, name, state_code)
VALUES
('TZ', 'Katavi', '28'),
('TZ', 'Njombe', '29'),
('TZ', 'Dar es Salaam', '02'),
('TZ', 'Dodoma', '03'),
('TZ', 'Arusha', '01'),
('TZ', 'Kaskazini Pemba', '06'),
('TZ', 'Kaskazini Unguja', '07'),
('TZ', 'Iringa', '04'),
('TZ', 'Kagera', '05'),
('TZ', 'Rukwa', '20'),
('TZ', 'Ruvuma', '21'),
('TZ', 'Kigoma', '08'),
('TZ', 'Kilimanjaro', '09'),
('TZ', 'Tabora', '24'),
('TZ', 'Tanga', '25'),
('TZ', 'Manyara', '26'),
('TZ', 'Geita', '27'),
('TZ', 'Shinyanga', '22'),
('TZ', 'Singida', '23'),
('TZ', 'Kusini Unguja', '11'),
('TZ', 'Kusini Pemba', '10'),
('TZ', 'Mara', '13'),
('TZ', 'Lindi', '12'),
('TZ', 'Mjini Magharibi', '15'),
('TZ', 'Mbeya', '14'),
('TZ', 'Mtwara', '17'),
('TZ', 'Morogoro', '16'),
('TZ', 'Coast', '19'),
('TZ', 'Mwanza', '18'),
('TZ', 'Simiyu', '30');
INSERT INTO
States (country_id, name, state_code)
VALUES
('MY', 'Perak', '08'),
('MY', 'Perlis', '09'),
('MY', 'Wilayah Persekutuan Putrajaya', '16'),
('MY', 'Kedah', '02'),
('MY', 'Kelantan', '03'),
('MY', 'Sarawak', '13'),
('MY', 'Johor', '01'),
('MY', 'Pahang', '06'),
('MY', 'Pul<NAME>', '07'),
('MY', 'Melaka', '04'),
('MY', 'Negeri Sembilan', '05'),
('MY', 'Terengganu', '11'),
('MY', 'Selangor', '10'),
('MY', 'Wilayah Persekutuan Kuala Lumpur', '14'),
('MY', 'Wilayah Persekutuan Labuan', '15'),
('MY', 'Sabah', '12');
INSERT INTO
States (country_id, name, state_code)
VALUES
('IL', 'Tel-Aviv', 'TA'),
('IL', '<NAME>', 'Z'),
('IL', 'El Awsaṭ', 'M'),
('IL', 'H̱efa', 'HA'),
('IL', 'El Janūbī', 'D'),
('IL', 'Al Quds', 'JM');
INSERT INTO
States (country_id, name, state_code)
VALUES
('FR', 'Eure-et-Loir', '28'),
('FR', 'Finistère', '29'),
('FR', 'Côtes-d\'Armor', '22'),
('FR', 'Creuse', '23'),
('FR', 'Côte-d\'Or', '21'),
('FR', 'Drôme', '26'),
('FR', 'Eure', '27'),
('FR', 'Dordogne', '24'),
('FR', 'Doubs', '25'),
('FR', 'Terres australes françaises', 'TF'),
('FR', 'Val-d\'Oise', '95'),
('FR', 'Val-de-Marne', '94'),
('FR', 'Seine-Saint-Denis', '93'),
('FR', 'Hauts-de-Seine', '92'),
('FR', 'Essonne', '91'),
('FR', 'Territoire de Belfort', '90'),
('FR', 'Charente-Maritime', '17'),
('FR', 'Charente', '16'),
('FR', 'Cantal', '15'),
('FR', 'Calvados', '14'),
('FR', 'Bouches-du-Rhône', '13'),
('FR', 'Aveyron', '12'),
('FR', 'Aude', '11'),
('FR', 'Aube', '10'),
('FR', 'Haute-Corse', '2B'),
('FR', 'Corse-du-Sud', '2A'),
('FR', 'Saint-Martin', 'MF'),
('FR', 'Corrèze', '19'),
('FR', 'Cher', '18'),
('FR', 'Vosges', '88'),
('FR', 'Yonne', '89'),
('FR', 'Alsace', 'A'),
('FR', 'Champagne-Ardenne', 'G'),
('FR', 'Centre', 'F'),
('FR', 'Saint-Barthélemy', 'BL'),
('FR', 'Bourgogne', 'D'),
('FR', 'Somme', '80'),
('FR', 'Tarn', '81'),
('FR', 'Tarn-et-Garonne', '82'),
('FR', 'Var', '83'),
('FR', 'Vaucluse', '84'),
('FR', 'Vendée', '85'),
('FR', 'Vienne', '86'),
('FR', 'Haute-Vienne', '87'),
('FR', 'Picardie', 'S'),
('FR', 'Ain', '01'),
('FR', 'Aisne', '02'),
('FR', 'Allier', '03'),
('FR', 'Alpes-de-Haute-Provence', '04'),
('FR', 'Hautes-Alpes', '05'),
('FR', 'Alpes-Maritimes', '06'),
('FR', 'Ardèche', '07'),
('FR', 'Ardennes', '08'),
('FR', 'Ariège', '09'),
('FR', 'La Réunion', 'RE'),
('FR', 'Bretagne', 'E'),
('FR', 'Clipperton', 'CP'),
('FR', 'Paris', '75'),
('FR', 'Haute-Savoie', '74'),
('FR', 'Seine-et-Marne', '77'),
('FR', 'Seine-Maritime', '76'),
('FR', 'Saône-et-Loire', '71'),
('FR', 'Haute-Saône', '70'),
('FR', 'Savoie', '73'),
('FR', 'Sarthe', '72'),
('FR', 'Deux-Sèvres', '79'),
('FR', 'Yvelines', '78'),
('FR', 'Auvergne', 'C'),
('FR', 'Aquitaine', 'B'),
('FR', 'Mayotte', 'YT'),
('FR', 'Pyrénées-Orientales', '66'),
('FR', 'Bas-Rhin', '67'),
('FR', 'Pyrénées-Atlantiques', '64'),
('FR', 'Hautes-Pyrénées', '65'),
('FR', 'Pas-de-Calais', '62'),
('FR', 'Puy-de-Dôme', '63'),
('FR', 'Oise', '60'),
('FR', 'Orne', '61'),
('FR', 'Haut-Rhin', '68'),
('FR', 'Rhône', '69'),
('FR', 'Languedoc-Roussillon', 'K'),
('FR', 'Île-de-France', 'J'),
('FR', 'Pays-de-la-Loire', 'R'),
('FR', 'Franche-Comté', 'I'),
('FR', 'Corse', 'H'),
('FR', 'Nord-Pas-de-Calais', 'O'),
('FR', 'Midi-Pyrénées', 'N'),
('FR', 'Lorraine', 'M'),
('FR', 'Limousin', 'L'),
('FR', 'Mayenne', '53'),
('FR', 'Haute-Marne', '52'),
('FR', 'Marne', '51'),
('FR', 'Manche', '50'),
('FR', 'Moselle', '57'),
('FR', 'Morbihan', '56'),
('FR', 'Meuse', '55'),
('FR', 'Meurthe-et-Moselle', '54'),
('FR', 'Nord', '59'),
('FR', 'Nièvre', '58'),
('FR', 'Haute-Normandie', 'Q'),
('FR', 'Basse-Normandie', 'P'),
('FR', 'Rhône-Alpes', 'V'),
('FR', 'Provence-Alpes-Côte-d\'Azur', 'U'),
('FR', 'Poitou-Charentes', 'T'),
('FR', 'Nouvelle-Calédonie', 'NC'),
('FR', 'Lozère', '48'),
('FR', 'Maine-et-Loire', '49'),
('FR', 'Loire-Atlantique', '44'),
('FR', 'Loiret', '45'),
('FR', 'Lot', '46'),
('FR', 'Lot-et-Garonne', '47'),
('FR', 'Landes', '40'),
('FR', 'Loir-et-Cher', '41'),
('FR', 'Loire', '42'),
('FR', 'Haute-Loire', '43'),
('FR', 'Martinique', 'MQ'),
('FR', 'Guyane', 'GF'),
('FR', 'Polynésie française', 'PF'),
('FR', 'Saint-Pierre-et-Miquelon', 'PM'),
('FR', 'Guadeloupe', 'GP'),
('FR', 'Jura', '39'),
('FR', 'Isère', '38'),
('FR', 'Haute-Garonne', '31'),
('FR', 'Gard', '30'),
('FR', 'Gironde', '33'),
('FR', 'Gers', '32'),
('FR', 'Ille-et-Vilaine', '35'),
('FR', 'Hérault', '34'),
('FR', 'Indre-et-Loire', '37'),
('FR', 'Indre', '36'),
('FR', 'Wallis-et-Futuna', 'WF');
INSERT INTO
States (country_id, name, state_code)
VALUES
('AW', 'Aruba', 'AW');
INSERT INTO
States (country_id, name, state_code)
VALUES
('SH', 'Saint Helena', 'HL'),
('SH', 'Tristan da Cunha', 'TA'),
('SH', 'Ascension', 'AC');
INSERT INTO
States (country_id, name, state_code)
VALUES
('SJ', 'Svalbard & Jan Mayen Islands', 'SJ');
INSERT INTO
States (country_id, name, state_code)
VALUES
('FI', 'Lappi', '10'),
('FI', 'Birkaland', '11'),
('FI', 'Österbotten', '12'),
('FI', 'Päijänne-Tavastland', '16'),
('FI', 'Satakunda', '17'),
('FI', 'Kymenlaakso', '09'),
('FI', 'Keski-Suomi', '08'),
('FI', 'Nyland', '18'),
('FI', 'Egentliga Finland', '19'),
('FI', 'Norra Österbotten', '14'),
('FI', 'Norra Savolax', '15'),
('FI', 'Ahvenanmaan maakunta', '01'),
('FI', 'Norra Karelen', '13'),
('FI', 'Etelä-Pohjanmaa', '03'),
('FI', 'Etelä-Karjala', '02'),
('FI', 'Kainuu', '05'),
('FI', 'Etelä-Savo', '04'),
('FI', 'Keski-Pohjanmaa', '07'),
('FI', 'Egentliga Tavastland', '06');
INSERT INTO
States (country_id, name, state_code)
VALUES
('FJ', 'Nadroga and Navosa', '08'),
('FJ', 'Naitasiri', '09'),
('FJ', 'Tailevu', '14'),
('FJ', 'Northern', 'N'),
('FJ', 'Central', 'C'),
('FJ', 'Ba', '01'),
('FJ', 'Bua', '02'),
('FJ', 'Cakaudrove', '03'),
('FJ', 'Kadavu', '04'),
('FJ', 'Lau', '05'),
('FJ', 'Lomaiviti', '06'),
('FJ', 'Macuata', '07'),
('FJ', 'Ra', '11'),
('FJ', 'Rotuma', 'R'),
('FJ', 'Rewa', '12'),
('FJ', 'Serua', '13'),
('FJ', 'Namosi', '10'),
('FJ', 'Western', 'W'),
('FJ', 'Eastern', 'E');
INSERT INTO
States (country_id, name, state_code)
VALUES
('FK', 'Falkland Islands', 'FK');
INSERT INTO
States (country_id, name, state_code)
VALUES
('FM', 'Yap', 'YAP'),
('FM', 'Kosrae', 'KSA'),
('FM', 'Pohnpei', 'PNI'),
('FM', 'Chuuk', 'TRK');
INSERT INTO
States (country_id, name, state_code)
VALUES
('FO', 'Faroe Islands', 'FO');
INSERT INTO
States (country_id, name, state_code)
VALUES
('NI', 'Boaco', 'BO'),
('NI', 'Chinandega', 'CI'),
('NI', 'León', 'LE'),
('NI', 'Rivas', 'RI'),
('NI', 'Chontales', 'CO'),
('NI', 'Managua', 'MN'),
('NI', 'Carazo', 'CA'),
('NI', 'Atlántico Norte', 'AN'),
('NI', 'Estelí', 'ES'),
('NI', 'Río San Juan', 'SJ'),
('NI', 'Nueva Segovia', 'NS'),
('NI', 'Atlántico Sur', 'AS'),
('NI', 'Matagalpa', 'MT'),
('NI', 'Madriz', 'MD'),
('NI', 'Masaya', 'MS'),
('NI', 'Granada', 'GR'),
('NI', 'Jinotega', 'JI');
INSERT INTO
States (country_id, name, state_code)
VALUES
('NL', 'Zuid-Holland', 'ZH'),
('NL', 'Fryslân', 'FR'),
('NL', 'Aruba', 'AW'),
('NL', 'Curaçao', 'CW'),
('NL', 'Utrecht', 'UT'),
('NL', 'Overijssel', 'OV'),
('NL', 'Gelderland', 'GE'),
('NL', 'Saba', 'BQ2'),
('NL', 'Sint Eustatius', 'BQ3'),
('NL', 'Bonaire', 'BQ1'),
('NL', 'Noord-Holland', 'NH'),
('NL', 'Zeeland', 'ZE'),
('NL', 'Sint Maarten', 'SX'),
('NL', 'Flevoland', 'FL'),
('NL', 'Groningen', 'GR'),
('NL', 'Drenthe', 'DR'),
('NL', 'Noord-Brabant', 'NB'),
('NL', 'Limburg', 'LI');
INSERT INTO
States (country_id, name, state_code)
VALUES
('NO', 'Vest-Agder', '10'),
('NO', 'Sør-Trøndelag', '16'),
('NO', 'Romsa', '19'),
('NO', 'Rogaland', '11'),
('NO', 'Svalbard', '21'),
('NO', 'Finnmark', '20'),
('NO', '<NAME>', '22'),
('NO', 'Hordaland', '12'),
('NO', 'Møre og Romsdal', '15'),
('NO', 'Vestfold', '07'),
('NO', 'Buskerud', '06'),
('NO', 'Oppland', '05'),
('NO', 'Hedmark', '04'),
('NO', 'Oslo', '03'),
('NO', 'Akershus', '02'),
('NO', 'Østfold', '01'),
('NO', 'Nord-Trøndelag', '17'),
('NO', 'Nordland', '18'),
('NO', 'Sogn og Fjordane', '14'),
('NO', 'Aust-Agder', '09'),
('NO', 'Telemark', '08');
INSERT INTO
States (country_id, name, state_code)
VALUES
('NA', 'Hardap', 'HA'),
('NA', 'Khomas', 'KH'),
('NA', 'Karas', 'KA'),
('NA', 'Oshana', 'ON'),
('NA', 'Omaheke', 'OH'),
('NA', 'Kavango East', 'KE'),
('NA', 'Oshikoto', 'OT'),
('NA', 'Zambezi', 'CA'),
('NA', 'Ohangwena', 'OW'),
('NA', 'Erongo', 'ER'),
('NA', 'Omusati', 'OS'),
('NA', 'Otjozondjupa', 'OD'),
('NA', 'Kunene', 'KU'),
('NA', 'Kavango West', 'KW');
INSERT INTO
States (country_id, name, state_code)
VALUES
('VU', 'Pénama', 'PAM'),
('VU', 'Torba', 'TOB'),
('VU', 'Malampa', 'MAP'),
('VU', 'Sanma', 'SAM'),
('VU', 'Taféa', 'TAE'),
('VU', 'Shéfa', 'SEE');
INSERT INTO
States (country_id, name, state_code)
VALUES
('NC', 'New Caledonia', 'NC');
INSERT INTO
States (country_id, name, state_code)
VALUES
('NE', 'Maradi', '4'),
('NE', 'Tahoua', '5'),
('NE', 'Tillabéri', '6'),
('NE', 'Zinder', '7'),
('NE', 'Agadez', '1'),
('NE', 'Diffa', '2'),
('NE', 'Dosso', '3'),
('NE', 'Niamey', '8');
INSERT INTO
States (country_id, name, state_code)
VALUES
('NF', 'Norfolk Island', 'NF');
INSERT INTO
States (country_id, name, state_code)
VALUES
('NG', 'Plateau', 'PL'),
('NG', 'Rivers', 'RI'),
('NG', 'Jigawa', 'JI'),
('NG', 'Lagos', 'LA'),
('NG', 'Nasarawa', 'NA'),
('NG', 'Abuja Federal Capital Territory', 'FC'),
('NG', 'Niger', 'NI'),
('NG', 'Osun', 'OS'),
('NG', 'Bayelsa', 'BY'),
('NG', 'Delta', 'DE'),
('NG', 'Bauchi', 'BA'),
('NG', 'Benue', 'BE'),
('NG', 'Borno', 'BO'),
('NG', 'Yobe', 'YO'),
('NG', 'Anambra', 'AN'),
('NG', 'Kwara', 'KW'),
('NG', 'Katsina', 'KT'),
('NG', 'Oyo', 'OY'),
('NG', 'Ogun', 'OG'),
('NG', 'Kano', 'KN'),
('NG', 'Kogi', 'KO'),
('NG', 'Ondo', 'ON'),
('NG', 'Enugu', 'EN'),
('NG', 'Kaduna', 'KD'),
('NG', 'Kebbi', 'KE'),
('NG', 'Cross River', 'CR'),
('NG', 'Gombe', 'GO'),
('NG', 'Zamfara', 'ZA'),
('NG', 'Sokoto', 'SO'),
('NG', 'Imo', 'IM'),
('NG', 'Edo', 'ED'),
('NG', 'Akwa Ibom', 'AK'),
('NG', 'Ebonyi', 'EB'),
('NG', 'Taraba', 'TA'),
('NG', 'Abia', 'AB'),
('NG', 'Adamawa', 'AD'),
('NG', 'Ekiti', 'EK');
INSERT INTO
States (country_id, name, state_code)
VALUES
('NZ', 'Nelson City', 'NSN'),
('NZ', 'South Island', 'S'),
('NZ', 'Southland', 'STL'),
('NZ', 'Bay of Plenty', 'BOP'),
('NZ', 'Hawke\'s Bay', 'HKB'),
('NZ', 'Auckland', 'AUK'),
('NZ', 'Taranaki', 'TKI'),
('NZ', 'Marlborough District', 'MBH'),
('NZ', 'Chatham Islands Territory', 'CIT'),
('NZ', 'Waikato', 'WKO'),
('NZ', 'Tasman District', 'TAS'),
('NZ', 'Wellington', 'WGN'),
('NZ', 'West Coast', 'WTC'),
('NZ', 'Otago', 'OTA'),
('NZ', 'Northland', 'NTL'),
('NZ', 'Manawatu-Wanganui', 'MWT'),
('NZ', 'North Island', 'N'),
('NZ', 'Gisborne District', 'GIS'),
('NZ', 'Canterbury', 'CAN');
INSERT INTO
States (country_id, name, state_code)
VALUES
('NP', 'Karnali', 'KA'),
('NP', 'Bagmati', 'BA'),
('NP', 'Mahakali', 'MA'),
('NP', 'Kosi', 'KO'),
('NP', 'Dhawalagiri', 'DH'),
('NP', 'Bheri', 'BH'),
('NP', 'Janakpur', 'JA'),
('NP', 'Gandaki', 'GA'),
('NP', 'Narayani', 'NA'),
('NP', 'Mechi', 'ME'),
('NP', 'Rapti', 'RA'),
('NP', 'Far Western', '5'),
('NP', 'Eastern', '4'),
('NP', 'Seti', 'SE'),
('NP', 'Lumbini', 'LU'),
('NP', 'Central', '1'),
('NP', 'Sagarmatha', 'SA'),
('NP', 'Pashchimanchal', '3'),
('NP', 'Madhya Pashchimanchal', '2');
INSERT INTO
States (country_id, name, state_code)
VALUES
('NR', 'Denigomodu', '08'),
('NR', 'Ewa', '09'),
('NR', 'Yaren', '14'),
('NR', 'Aiwo', '01'),
('NR', 'Anabar', '02'),
('NR', 'Anetan', '03'),
('NR', 'Anibare', '04'),
('NR', 'Baiti', '05'),
('NR', 'Boe', '06'),
('NR', 'Buada', '07'),
('NR', 'Meneng', '11'),
('NR', 'Nibok', '12'),
('NR', 'Uaboe', '13'),
('NR', 'Ijuw', '10');
INSERT INTO
States (country_id, name, state_code)
VALUES
('NU', 'Niue', 'NU');
INSERT INTO
States (country_id, name, state_code)
VALUES
('CK', 'Cook Islands', 'CK');
INSERT INTO
States (country_id, name, state_code)
VALUES
('CI', 'Nzi-Comoé', '11'),
('CI', 'Sud-Comoé', '13'),
('CI', 'Agnébi', '16'),
('CI', 'Worodougou', '14'),
('CI', 'Denguélé', '10'),
('CI', 'Sud-Bandama', '15'),
('CI', 'Bafing', '17'),
('CI', 'Lagunes', '01'),
('CI', 'Haut-Sassandra', '02'),
('CI', 'Savanes', '03'),
('CI', '<NAME>', '04'),
('CI', 'Moyen-Comoé', '05'),
('CI', '<NAME>', '06'),
('CI', 'Lacs', '07'),
('CI', 'Zanzan', '08'),
('CI', 'Bas-Sassandra', '09'),
('CI', 'Fromager', '18'),
('CI', 'Moyen-Cavally', '19'),
('CI', 'Marahoué', '12');
INSERT INTO
States (country_id, name, state_code)
VALUES
('CH', 'Solothurn', 'SO'),
('CH', 'Luzern', 'LU'),
('CH', 'Schaffhausen', 'SH'),
('CH', '<NAME>', 'SG'),
('CH', 'Uri', 'UR'),
('CH', 'Neuchâtel', 'NE'),
('CH', 'Basel-Stadt', 'BS'),
('CH', 'Jura', 'JU'),
('CH', 'Basel-Landschaft', 'BL'),
('CH', 'Schwyz', 'SZ'),
('CH', 'Bern', 'BE'),
('CH', 'Nidwalden', 'NW'),
('CH', 'Zug', 'ZG'),
('CH', 'Freiburg', 'FR'),
('CH', 'Zürich', 'ZH'),
('CH', 'Valais', 'VS'),
('CH', 'Vaud', 'VD'),
('CH', 'Ticino', 'TI'),
('CH', 'Thurgau', 'TG'),
('CH', 'Obwalden', 'OW'),
('CH', 'Aargau', 'AG'),
('CH', 'Genève', 'GE'),
('CH', 'Appenzell Innerrhoden', 'AI'),
('CH', 'Glarus', 'GL'),
('CH', 'Graubünden', 'GR'),
('CH', 'Appenzell Ausserrhoden', 'AR');
INSERT INTO
States (country_id, name, state_code)
VALUES
('CO', 'Cundinamarca', 'CUN'),
('CO', 'Boyacá', 'BOY'),
('CO', 'Córdoba', 'COR'),
('CO', 'Huila', 'HUI'),
('CO', 'Vaupés', 'VAU'),
('CO', 'Risaralda', 'RIS'),
('CO', 'Norte de Santander', 'NSA'),
('CO', 'Vichada', 'VID'),
('CO', 'Bolívar', 'BOL'),
('CO', 'Valle del Cauca', 'VAC'),
('CO', 'Guaviare', 'GUV'),
('CO', 'Cauca', 'CAU'),
('CO', 'Casanare', 'CAS'),
('CO', 'Caquetá', 'CAQ'),
('CO', 'Cesar', 'CES'),
('CO', 'Santander', 'SAN'),
('CO', 'Atlántico', 'ATL'),
('CO', 'Amazonas', 'AMA'),
('CO', 'Meta', 'MET'),
('CO', 'Magdalena', 'MAG'),
('CO', 'Arauca', 'ARA'),
('CO', 'Guainía', 'GUA'),
('CO', 'La Guajira', 'LAG'),
('CO', 'Caldas', 'CAL'),
('CO', 'Quindío', 'QUI'),
('CO', 'San Andrés, Providencia y Santa Catalina', 'SAP'),
('CO', 'Tolima', 'TOL'),
('CO', 'Sucre', 'SUC'),
('CO', 'Putumayo', 'PUT'),
('CO', 'Nariño', 'NAR'),
('CO', 'Chocó', 'CHO'),
('CO', 'Distrito Capital de Bogotá', 'DC'),
('CO', 'Antioquia', 'ANT');
INSERT INTO
States (country_id, name, state_code)
VALUES
('CN', 'Xizang', '54'),
('CN', 'Anhui', '34'),
('CN', 'Fujian', '35'),
('CN', 'Jiangxi', '36'),
('CN', 'Shandong', '37'),
('CN', 'Shanghai', '31'),
('CN', 'Jiangsu', '32'),
('CN', 'Zhejiang', '33'),
('CN', 'Taiwan', '71'),
('CN', 'Hong Kong', '91'),
('CN', 'Shanxi', '14'),
('CN', 'Nei Mongol', '15'),
('CN', 'Tianjin', '12'),
('CN', 'Hebei', '13'),
('CN', 'Beijing', '11'),
('CN', 'Guizhou', '52'),
('CN', 'Aomen', '92'),
('CN', 'Yunnan', '53'),
('CN', 'Chongqing', '50'),
('CN', 'Sichuan', '51'),
('CN', 'Henan', '41'),
('CN', 'Hunan', '43'),
('CN', 'Hubei', '42'),
('CN', 'Guangxi', '45'),
('CN', 'Guangdong', '44'),
('CN', 'Hainan', '46'),
('CN', 'Xinjiang', '65'),
('CN', 'Ningxia', '64'),
('CN', 'Qinghai', '63'),
('CN', 'Gansu', '62'),
('CN', 'Shaanxi', '61'),
('CN', 'Heilongjiang', '23'),
('CN', 'Jilin', '22'),
('CN', 'Liaoning', '21');
INSERT INTO
States (country_id, name, state_code)
VALUES
('CM', 'Centre', 'CE'),
('CM', 'South', 'SU'),
('CM', 'South-West', 'SW'),
('CM', 'East', 'ES'),
('CM', 'Adamaoua', 'AD'),
('CM', 'Nord', 'NO'),
('CM', 'Ouest', 'OU'),
('CM', 'Nord-Ouest', 'NW'),
('CM', 'Extrême-Nord', 'EN'),
('CM', 'Littoral', 'LT');
INSERT INTO
States (country_id, name, state_code)
VALUES
('CL', 'Arica y Parinacota', 'AP'),
('CL', 'Biobío', 'BI'),
('CL', 'Araucanía', 'AR'),
('CL', 'Atacama', 'AT'),
('CL', 'Coquimbo', 'CO'),
('CL', 'Valparaíso', 'VS'),
('CL', 'Maule', 'ML'),
('CL', 'Los Ríos', 'LR'),
('CL', 'Tarapacá', 'TA'),
('CL', 'Libertador General <NAME>', 'LI'),
('CL', 'Región Metropolitana de Santiago', 'RM'),
('CL', 'Los Lagos', 'LL'),
('CL', 'Aysén', 'AI'),
('CL', 'Antofagasta', 'AN'),
('CL', 'Magallanes', 'MA');
INSERT INTO
States (country_id, name, state_code)
VALUES
('CC', 'Cocos Islands', 'CC');
INSERT INTO
States (country_id, name, state_code)
VALUES
('CA', 'Northwest Territories', 'NT'),
('CA', 'Nunavut', 'NU'),
('CA', 'Nova Scotia', 'NS'),
('CA', 'Manitoba', 'MB'),
('CA', 'Saskatchewan', 'SK'),
('CA', 'Quebec', 'QC'),
('CA', 'Prince Edward Island', 'PE'),
('CA', 'British Columbia', 'BC'),
('CA', 'Yukon', 'YT'),
('CA', 'New Brunswick', 'NB'),
('CA', 'Newfoundland and Labrador', 'NL'),
('CA', 'Ontario', 'ON'),
('CA', 'Alberta', 'AB');
INSERT INTO
States (country_id, name, state_code)
VALUES
('CG', 'Lékoumou', '2'),
('CG', 'Kouilou', '5'),
('CG', 'Likouala', '7'),
('CG', 'Niari', '9'),
('CG', 'Cuvette', '8'),
('CG', 'Brazzaville', 'BZV'),
('CG', 'Bouenza', '11'),
('CG', 'Sangha', '13'),
('CG', 'Pool', '12'),
('CG', 'Cuvette-Ouest', '15'),
('CG', 'Plateaux', '14'),
('CG', 'Pointe-Noire', '16');
INSERT INTO
States (country_id, name, state_code)
VALUES
('CF', 'Mbomou', 'MB'),
('CF', 'Bamïngï-Bangoran', 'BB'),
('CF', 'Nana-Mambéré', 'NM'),
('CF', 'Bangî', 'BGF'),
('CF', 'Ouham', 'AC'),
('CF', 'Gïrïbïngï', 'KB'),
('CF', 'Basse-Kotto', 'BK'),
('CF', 'Lobaye', 'LB'),
('CF', 'Vakaga', 'VK'),
('CF', 'Haute-Sangha / Mambéré-Kadéï', 'HS'),
('CF', 'Haut-Mbomou', 'HM'),
('CF', 'Ouaka', 'UK'),
('CF', 'Ömbëlä-Pökö', 'MP'),
('CF', 'Kemö-Gïrïbïngï', 'KG'),
('CF', 'Haute-Kotto', 'HK'),
('CF', 'Ouham-Pendé', 'OP'),
('CF', 'Sangä', 'SE');
INSERT INTO
States (country_id, name, state_code)
VALUES
('CD', 'Orientale', 'OR'),
('CD', 'Équateur', 'EQ'),
('CD', 'Sud-Kivu', 'SK'),
('CD', 'Kasai-Occidental', 'KW'),
('CD', 'Bandundu', 'BN'),
('CD', 'Bas-Congo', 'BC'),
('CD', 'Kinshasa', 'KN'),
('CD', 'Katanga', 'KA'),
('CD', 'Maniema', 'MA'),
('CD', 'Nord-Kivu', 'NK'),
('CD', 'Kasai-Oriental', 'KE');
INSERT INTO
States (country_id, name, state_code)
VALUES
('CZ', 'Praha 12', '10C'),
('CZ', 'Praha 11', '10B'),
('CZ', 'Praha 10', '10A'),
('CZ', 'Praha 15', '10F'),
('CZ', 'Praha 14', '10E'),
('CZ', 'Praha 13', '10D'),
('CZ', 'Česká Lípa', '511'),
('CZ', 'Jablonec nad Nisou', '512'),
('CZ', 'Liberec', '513'),
('CZ', 'Semily', '514'),
('CZ', 'Jihočeský kraj', 'JC'),
('CZ', 'Jihomoravský kraj', 'JM'),
('CZ', 'Praha 3', '103'),
('CZ', 'Praha 2', '102'),
('CZ', 'Praha 1', '101'),
('CZ', 'Praha 7', '107'),
('CZ', 'Praha 6', '106'),
('CZ', 'Praha 5', '105'),
('CZ', 'Praha 4', '104'),
('CZ', 'Pelhřimov', '613'),
('CZ', 'Jihlava', '612'),
('CZ', '<NAME>', '611'),
('CZ', 'Praha 8', '108'),
('CZ', 'Žd\'ár nad Sázavou', '615'),
('CZ', 'Třebíč', '614'),
('CZ', 'Liberecký kraj', 'LI'),
('CZ', 'Ústecký kraj', 'US'),
('CZ', 'Přerov', '714'),
('CZ', 'Šumperk', '715'),
('CZ', 'Olomouc', '712'),
('CZ', 'Prostĕjov', '713'),
('CZ', 'Jeseník', '711'),
('CZ', 'Středočeský kraj', 'ST'),
('CZ', 'Praha 9', '109'),
('CZ', 'Karlovarský kraj', 'KA'),
('CZ', 'Zlínský kraj', 'ZL'),
('CZ', 'Královéhradecký kraj', 'KR'),
('CZ', '<NAME>', '802'),
('CZ', 'Karviná', '803'),
('CZ', 'Bruntál', '801'),
('CZ', '<NAME>', '806'),
('CZ', '<NAME>', '804'),
('CZ', 'Opava', '805'),
('CZ', 'Cheb', '411'),
('CZ', 'Sokolov', '413'),
('CZ', '<NAME>', '412'),
('CZ', 'Č<NAME>', '312'),
('CZ', '<NAME>', '313'),
('CZ', 'České Budějovice', '311'),
('CZ', 'Strakonice', '316'),
('CZ', 'Tábor', '317'),
('CZ', 'Písek', '314'),
('CZ', 'Prachatice', '315'),
('CZ', 'Ústí nad Orlicí', '534'),
('CZ', 'Zlín', '724'),
('CZ', 'Pardubice', '532'),
('CZ', 'Chomutov', '422'),
('CZ', 'Litoměřice', '423'),
('CZ', 'Louny', '424'),
('CZ', 'Most', '425'),
('CZ', 'Teplice', '426'),
('CZ', '<NAME>', '722'),
('CZ', 'Plzeňský kraj', 'PL'),
('CZ', 'Moravskoslezský kraj', 'MO'),
('CZ', 'Vysočina', 'VY'),
('CZ', 'Pardubický kraj', 'PA'),
('CZ', 'Praha-západ', '20A'),
('CZ', 'Příbram', '20B'),
('CZ', 'Rakovník', '20C'),
('CZ', 'Vsetín', '723'),
('CZ', 'Svitavy', '533'),
('CZ', 'Kromĕříž', '721'),
('CZ', 'Chrudim', '531'),
('CZ', 'Praha, hlavní mešto', 'PR'),
('CZ', 'Brno-město', '622'),
('CZ', 'Brno-venkov', '623'),
('CZ', 'Blansko', '621'),
('CZ', 'Vyškov', '626'),
('CZ', 'Znojmo', '627'),
('CZ', 'Břeclav', '624'),
('CZ', 'Hodonín', '625'),
('CZ', 'Děčín', '421'),
('CZ', 'Trutnov', '525'),
('CZ', 'Rychnov nad Kněžnou', '524'),
('CZ', '<NAME>', '521'),
('CZ', 'Náchod', '523'),
('CZ', 'Jičín', '522'),
('CZ', 'Olomoucký kraj', 'OL'),
('CZ', 'Ústí nad Labem', '427'),
('CZ', 'Plzeň-město', '323'),
('CZ', 'Klatovy', '322'),
('CZ', 'Domažlice', '321'),
('CZ', 'Tachov', '327'),
('CZ', 'Rokycany', '326'),
('CZ', 'Plzeň-sever', '325'),
('CZ', 'Plzeň-jih', '324'),
('CZ', 'Nymburk', '208'),
('CZ', 'Praha-východ', '209'),
('CZ', 'Benešov', '201'),
('CZ', 'Beroun', '202'),
('CZ', 'Kladno', '203'),
('CZ', 'Kolín', '204'),
('CZ', '<NAME>', '205'),
('CZ', 'Mělník', '206'),
('CZ', '<NAME>', '207');
INSERT INTO
States (country_id, name, state_code)
VALUES
('CY', 'Lefkoşa', '01'),
('CY', 'Lemesos', '02'),
('CY', 'Larnaka', '03'),
('CY', 'Ammochostos', '04'),
('CY', 'Baf', '05'),
('CY', 'Girne', '06');
INSERT INTO
States (country_id, name, state_code)
VALUES
('CX', 'Christmas Island', 'CX');
INSERT INTO
States (country_id, name, state_code)
VALUES
('CR', 'Puntarenas', 'P'),
('CR', 'Alajuela', 'A'),
('CR', 'Cartago', 'C'),
('CR', 'Guanacaste', 'G'),
('CR', 'Heredia', 'H'),
('CR', 'San José', 'SJ'),
('CR', 'Limón', 'L');
INSERT INTO
States (country_id, name, state_code)
VALUES
('CW', 'Curaçao', 'CW');
INSERT INTO
States (country_id, name, state_code)
VALUES
('CV', 'Sal', 'SL'),
('CV', 'São Miguel', 'SM'),
('CV', 'São Lourenço dos Órgãos', 'SO'),
('CV', 'Ilhas de Sotavento', 'S'),
('CV', 'São Domingos', 'SD'),
('CV', 'São Filipe', 'SF'),
('CV', 'Ilhas de Barlavento', 'B'),
('CV', 'Ribeira Grande', 'RG'),
('CV', 'São Vicente', 'SV'),
('CV', 'São Salvador do Mundo', 'SS'),
('CV', 'Santa Cruz', 'CR'),
('CV', 'Santa Catarina do Fogo', 'CF'),
('CV', 'Santa Catarina', 'CA'),
('CV', 'Ribeira Brava', 'RB'),
('CV', 'Paul', 'PA'),
('CV', 'Tarrafal', 'TA'),
('CV', 'Porto Novo', 'PN'),
('CV', 'Ribeira Grande de Santiago', 'RS'),
('CV', 'Maio', 'MA'),
('CV', 'Praia', 'PR'),
('CV', 'Tarrafal de São Nicolau', 'TS'),
('CV', 'Mosteiros', 'MO'),
('CV', 'Brava', 'BR'),
('CV', 'Boa Vista', 'BV');
INSERT INTO
States (country_id, name, state_code)
VALUES
('CU', 'Matanzas', '04'),
('CU', 'Villa Clara', '05'),
('CU', 'Cienfuegos', '06'),
('CU', 'Sancti Spíritus', '07'),
('CU', 'Pinar del Río', '01'),
('CU', 'La Habana', '03'),
('CU', 'Isla de la Juventud', '99'),
('CU', 'Ciego de Ávila', '08'),
('CU', 'Camagüey', '09'),
('CU', 'Santiago de Cuba', '13'),
('CU', 'Granma', '12'),
('CU', 'Holguín', '11'),
('CU', 'Las Tunas', '10'),
('CU', 'Mayabeque', '16'),
('CU', 'Artemisa', '15'),
('CU', 'Guantánamo', '14');
INSERT INTO
States (country_id, name, state_code)
VALUES
('SZ', 'Lubombo', 'LU'),
('SZ', 'Hhohho', 'HH'),
('SZ', 'Shiselweni', 'SH'),
('SZ', 'Manzini', 'MA');
INSERT INTO
States (country_id, name, state_code)
VALUES
('SY', 'Ḩimş', 'HI'),
('SY', 'Ḩalab', 'HL'),
('SY', 'Dimashq', 'DI'),
('SY', 'Al Ḩasakah', 'HA'),
('SY', 'Idlib', 'ID'),
('SY', 'As Suwaydā\'', 'SU'),
('SY', 'Ţarţūs', 'TA'),
('SY', 'Al Qunayţirah', 'QU'),
('SY', 'Dayr az Zawr', 'DY'),
('SY', 'Ar Raqqah', 'RA'),
('SY', 'Al Lādhiqīyah', 'LA'),
('SY', 'Rīf Dimashq', 'RD'),
('SY', 'Dar\'ā', 'DR'),
('SY', 'Ḩamāh', 'HM');
INSERT INTO
States (country_id, name, state_code)
VALUES
('SX', 'St. Maarten', 'SX');
INSERT INTO
States (country_id, name, state_code)
VALUES
('KG', 'Issyk-Kul\'skaja oblast\'', 'Y'),
('KG', 'Gorod Oš', 'GO'),
('KG', 'Bishkek', 'GB'),
('KG', 'Talas', 'T'),
('KG', 'Džalal-Abadskaja oblast\'', 'J'),
('KG', 'Osh', 'O'),
('KG', 'Naryn', 'N'),
('KG', 'Chü', 'C'),
('KG', 'Batken', 'B');
INSERT INTO
States (country_id, name, state_code)
VALUES
('KE', 'Nandi', '32'),
('KE', 'Siaya', '38'),
('KE', 'Tana River', '40'),
('KE', 'Tharaka-Nithi', '41'),
('KE', 'Trans Nzoia', '42'),
('KE', 'Turkana', '43'),
('KE', 'Uasin Gishu', '44'),
('KE', 'Mombasa', '28'),
('KE', 'Wajir', '46'),
('KE', 'West Pokot', '47'),
('KE', 'Murang\'a', '29'),
('KE', 'Meru', '26'),
('KE', 'Migori', '27'),
('KE', 'Mandera', '24'),
('KE', 'Marsabit', '25'),
('KE', 'Homa Bay', '08'),
('KE', 'Isiolo', '09'),
('KE', 'Laikipia', '20'),
('KE', 'Lamu', '21'),
('KE', 'Busia', '04'),
('KE', 'Elgeyo/Marakwet', '05'),
('KE', 'Embu', '06'),
('KE', 'Garissa', '07'),
('KE', 'Baringo', '01'),
('KE', 'Bomet', '02'),
('KE', 'Bungoma', '03'),
('KE', 'Nakuru', '31'),
('KE', 'Nyandarua', '35'),
('KE', 'Nyamira', '34'),
('KE', 'Samburu', '37'),
('KE', 'Nairobi City', '30'),
('KE', 'Nyeri', '36'),
('KE', 'Machakos', '22'),
('KE', 'Makueni', '23'),
('KE', 'Kiambu', '13'),
('KE', 'Kericho', '12'),
('KE', 'Kakamega', '11'),
('KE', 'Kajiado', '10'),
('KE', 'Kisumu', '17'),
('KE', 'Kisii', '16'),
('KE', 'Kirinyaga', '15'),
('KE', 'Kilifi', '14'),
('KE', 'Kwale', '19'),
('KE', 'Kitui', '18'),
('KE', 'Taita/Taveta', '39'),
('KE', 'Narok', '33'),
('KE', 'Vihiga', '45');
INSERT INTO
States (country_id, name, state_code)
VALUES
('SS', 'Western Bahr el Ghazal', 'BW'),
('SS', 'Western Equatoria', 'EW'),
('SS', 'Lakes', 'LK'),
('SS', 'Central Equatoria', 'EC'),
('SS', 'Eastern Equatoria', 'EE'),
('SS', 'Upper Nile', 'NU'),
('SS', 'Unity', 'UY'),
('SS', 'Northern Bahr el Ghazal', 'BN'),
('SS', 'Jonglei', 'JG'),
('SS', 'Warrap', 'WR');
INSERT INTO
States (country_id, name, state_code)
VALUES
('SR', 'Saramacca', 'SA'),
('SR', 'Coronie', 'CR'),
('SR', 'Brokopondo', 'BR'),
('SR', 'Sipaliwini', 'SI'),
('SR', 'Para', 'PR'),
('SR', 'Wanica', 'WA'),
('SR', 'Nickerie', 'NI'),
('SR', 'Paramaribo', 'PM'),
('SR', 'Commewijne', 'CM'),
('SR', 'Marowijne', 'MA');
INSERT INTO
States (country_id, name, state_code)
VALUES
('KI', 'Phoenix Islands', 'P'),
('KI', 'Gilbert Islands', 'G'),
('KI', 'Line Islands', 'L');
INSERT INTO
States (country_id, name, state_code)
VALUES
('KH', 'Krŏng Pailĭn', '24'),
('KH', 'Taakaev', '21'),
('KH', 'Svaay Rieng', '20'),
('KH', 'Krong Kaeb', '23'),
('KH', 'Ŏtdâr Méanchey', '22'),
('KH', 'Kâmpóng Thum', '6'),
('KH', 'Kampot', '7'),
('KH', 'Kampong Chhnang', '4'),
('KH', 'Kâmpóng Spœ', '5'),
('KH', 'Baat Dambang', '2'),
('KH', 'Kampong Chaam', '3'),
('KH', 'Bântéay Méanchey', '1'),
('KH', 'Kandaal', '8'),
('KH', 'Kaoh Kong', '9'),
('KH', 'Krŏng Preăh Sihanouk', '18'),
('KH', 'Stoĕng Trêng', '19'),
('KH', 'Prey Veaeng', '14'),
('KH', 'Pousaat', '15'),
('KH', 'Rotanak Kiri', '16'),
('KH', 'Siem Reab', '17'),
('KH', 'Krâchéh', '10'),
('KH', 'Môndól Kiri', '11'),
('KH', 'Phnom Penh', '12'),
('KH', 'Preăh Vihéar', '13');
INSERT INTO
States (country_id, name, state_code)
VALUES
('SV', 'Chalatenango', 'CH'),
('SV', 'La Libertad', 'LI'),
('SV', 'Usulután', 'US'),
('SV', 'San Vicente', 'SV'),
('SV', 'Cabañas', 'CA'),
('SV', 'Ahuachapán', 'AH'),
('SV', 'Morazán', 'MO'),
('SV', 'San Miguel', 'SM'),
('SV', 'Sonsonate', 'SO'),
('SV', 'La Paz', 'PA'),
('SV', 'La Unión', 'UN'),
('SV', 'Cuscatlán', 'CU'),
('SV', 'San Salvador', 'SS'),
('SV', 'Santa Ana', 'SA');
INSERT INTO
States (country_id, name, state_code)
VALUES
('KM', 'Andjazîdja', 'G'),
('KM', 'Mohéli', 'M'),
('KM', 'Andjouân', 'A');
INSERT INTO
States (country_id, name, state_code)
VALUES
('ST', 'São Tomé', 'S'),
('ST', 'Príncipe', 'P');
INSERT INTO
States (country_id, name, state_code)
VALUES
('SK', 'Prešovský kraj', 'PV'),
('SK', 'Košický kraj', 'KI'),
('SK', 'Trenčiansky kraj', 'TC'),
('SK', 'Trnavský kraj', 'TA'),
('SK', 'Žilinský kraj', 'ZI'),
('SK', 'Bratislavský kraj', 'BL'),
('SK', 'Nitriansky kraj', 'NI'),
('SK', 'Banskobystrický kraj', 'BC');
INSERT INTO
States (country_id, name, state_code)
VALUES
('KR', '<NAME>', '31'),
('KR', 'Cheju-do', '49'),
('KR', 'Gyeongsangnamdo', '48'),
('KR', 'Chǒllabuk-do', '45'),
('KR', 'Ch\'ungch\'ǒngnam-do', '44'),
('KR', 'Gyeongsangbugdo', '47'),
('KR', 'Chǒllanam-do', '46'),
('KR', 'Gyeonggido', '41'),
('KR', 'Ch\'ungch\'ǒngbuk-do', '43'),
('KR', 'Gang\'weondo', '42'),
('KR', 'Daejeon Gwang\'yeogsi', '30'),
('KR', 'Seoul-T\'ǔkpyǒlshi', '11'),
('KR', 'Sejong', '50'),
('KR', 'Gwangju Gwang\'yeogsi', '29'),
('KR', 'Inch\'ǒn-Kwangyǒkshi', '28'),
('KR', 'Daegu Gwang\'yeogsi', '27'),
('KR', 'Busan Gwang\'yeogsi', '26');
INSERT INTO
States (country_id, name, state_code)
VALUES
('SI', 'Kuzma', '056'),
('SI', 'Laško', '057'),
('SI', 'Krško', '054'),
('SI', 'Kungota', '055'),
('SI', 'Kranj', '052'),
('SI', 'Kranjska Gora', '053'),
('SI', 'Koper', '050'),
('SI', 'Kozje', '051'),
('SI', 'Šenčur', '117'),
('SI', '<NAME>', '116'),
('SI', 'Starše', '115'),
('SI', 'Slovenske Konjice', '114'),
('SI', 'Slovenska Bistrica', '113'),
('SI', '<NAME>', '112'),
('SI', 'Lenart', '058'),
('SI', 'Lendava', '059'),
('SI', 'Križevci', '166'),
('SI', 'Lovrenc na Pohorju', '167'),
('SI', 'Tolmin', '128'),
('SI', 'Trbovlje', '129'),
('SI', '<NAME> v Slovenskih Goricah', '210'),
('SI', 'Šentrupert', '211'),
('SI', 'Mirna', '212'),
('SI', 'Kidričevo', '045'),
('SI', 'Kanal', '044'),
('SI', 'Kobilje', '047'),
('SI', 'Kobarid', '046'),
('SI', 'Jesenice', '041'),
('SI', 'Izola', '040'),
('SI', 'Kamnik', '043'),
('SI', 'Juršinci', '042'),
('SI', 'Horjul', '162'),
('SI', 'Jezersko', '163'),
('SI', 'Hoče-Slivnica', '160'),
('SI', 'Hodoš', '161'),
('SI', 'Komen', '049'),
('SI', 'Kočevje', '048'),
('SI', 'Komenda', '164'),
('SI', 'Kostel', '165'),
('SI', 'Kosanjevica na Krki', '197'),
('SI', 'Cirkulane', '196'),
('SI', 'Apače', '195'),
('SI', 'Šmartno pri Litiji', '194'),
('SI', 'Žužemberk', '193'),
('SI', 'Žirovnica', '192'),
('SI', 'Žetale', '191'),
('SI', 'Žalec', '190'),
('SI', 'Mokronog-Trebelno', '199'),
('SI', 'Makole', '198'),
('SI', 'Veržej', '188'),
('SI', 'Rečica ob Savinji', '209'),
('SI', 'Log-Dragomer', '208'),
('SI', 'Šentjernej', '119'),
('SI', 'Vransko', '189'),
('SI', 'Straža', '203'),
('SI', 'Središče ob Dravi', '202'),
('SI', 'Renče-Vogrsko', '201'),
('SI', 'Šentilj', '118'),
('SI', 'Gorje', '207'),
('SI', 'Šmarješke Toplice', '206'),
('SI', 'Sveti Tomaž', '205'),
('SI', 'Sveta Trojica v Slovenskih Goricah', '204'),
('SI', 'Maribor', '070'),
('SI', 'Medvode', '071'),
('SI', 'Mengeš', '072'),
('SI', 'Metlika', '073'),
('SI', 'Mežica', '074'),
('SI', 'Miren-Kostanjevica', '075'),
('SI', 'Mislinja', '076'),
('SI', 'Moravče', '077'),
('SI', 'Moravske Toplice', '078'),
('SI', 'Mozirje', '079'),
('SI', 'Polzela', '173'),
('SI', 'Podlehnik', '172'),
('SI', 'Prevalje', '175'),
('SI', 'Prebold', '174'),
('SI', 'Ribnica na Pohorju', '177'),
('SI', 'Razkrižje', '176'),
('SI', 'Solčava', '180'),
('SI', 'Sežana', '111'),
('SI', 'Sevnica', '110'),
('SI', 'Sveti Andraž v Slovenskih Goricah', '182'),
('SI', 'Zreče', '144'),
('SI', 'Železniki', '146'),
('SI', 'Žiri', '147'),
('SI', 'Vrhnika', '140'),
('SI', 'Vuzenica', '141'),
('SI', 'Zagorje ob Savi', '142'),
('SI', 'Zavrč', '143'),
('SI', 'Benedikt', '148'),
('SI', 'Bistrica ob Sotli', '149'),
('SI', 'Majšperk', '069'),
('SI', 'Lukovica', '068'),
('SI', 'Luče', '067'),
('SI', 'Loški Potok', '066'),
('SI', 'Loška Dolina', '065'),
('SI', 'Logatec', '064'),
('SI', 'Ljutomer', '063'),
('SI', 'Ljubno', '062'),
('SI', 'Ljubljana', '061'),
('SI', 'Litija', '060'),
('SI', 'Cerkvenjak', '153'),
('SI', 'Cankova', '152'),
('SI', 'Braslovče', '151'),
('SI', 'Bloke', '150'),
('SI', 'Dolenjske Toplice', '157'),
('SI', 'Dobrovnik', '156'),
('SI', 'Dobrna', '155'),
('SI', 'Dobje', '154'),
('SI', 'Hajdina', '159'),
('SI', 'Grad', '158'),
('SI', 'Destrnik', '018'),
('SI', 'Divača', '019'),
('SI', 'Cerklje na Gorenjskem', '012'),
('SI', 'Cerknica', '013'),
('SI', 'Tišina', '010'),
('SI', 'Celje', '011'),
('SI', 'Črna na Koroškem', '016'),
('SI', 'Črnomelj', '017'),
('SI', 'Cerkno', '014'),
('SI', 'Črenšovci', '015'),
('SI', 'Poljčane', '200'),
('SI', 'Brežice', '009'),
('SI', 'Brezovica', '008'),
('SI', 'Šmarje pri Jelšah', '124'),
('SI', 'Šmartno ob Paki', '125'),
('SI', 'Škofja Loka', '122'),
('SI', 'Škofljica', '123'),
('SI', 'Šentjur', '120'),
('SI', 'Škocjan', '121'),
('SI', 'Ajdovščina', '001'),
('SI', 'Bled', '003'),
('SI', 'Beltinci', '002'),
('SI', 'Borovnica', '005'),
('SI', 'Bohinj', '004'),
('SI', 'Brda', '007'),
('SI', 'Bovec', '006'),
('SI', 'Sodražica', '179'),
('SI', 'Selnica ob Dravi', '178'),
('SI', 'Podčetrtek', '092'),
('SI', 'Podvelka', '093'),
('SI', 'Piran', '090'),
('SI', 'Pivka', '091'),
('SI', 'Ptuj', '096'),
('SI', 'Puconci', '097'),
('SI', 'Postojna', '094'),
('SI', 'Preddvor', '095'),
('SI', 'Rače-Fram', '098'),
('SI', 'Radeče', '099'),
('SI', 'Hrastnik', '034'),
('SI', 'Hrpelje-Kozina', '035'),
('SI', 'Idrija', '036'),
('SI', 'Ig', '037'),
('SI', 'Gornji Grad', '030'),
('SI', 'Gornji Petrovci', '031'),
('SI', 'Grosuplje', '032'),
('SI', 'Šalovci', '033'),
('SI', 'Ilirska Bistrica', '038'),
('SI', 'Ivanč<NAME>', '039'),
('SI', 'Videm', '135'),
('SI', 'Velike Lašče', '134'),
('SI', 'Vitanje', '137'),
('SI', 'Vipava', '136'),
('SI', 'Tržič', '131'),
('SI', 'Trebnje', '130'),
('SI', 'Velenje', '133'),
('SI', 'Turnišče', '132'),
('SI', 'Vojnik', '139'),
('SI', 'Vodice', '138'),
('SI', 'Oplotnica', '171'),
('SI', 'Muta', '081'),
('SI', 'Murska Sobota', '080'),
('SI', 'Nazarje', '083'),
('SI', 'Naklo', '082'),
('SI', 'Novo Mesto', '085'),
('SI', 'Nova Gorica', '084'),
('SI', 'Ormož', '087'),
('SI', 'Odranci', '086'),
('SI', 'Pesnica', '089'),
('SI', 'Osilnica', '088'),
('SI', 'Domžale', '023'),
('SI', 'Dol pri Ljubljani', '022'),
('SI', 'Dobrova-Polhov Gradec', '021'),
('SI', 'Dobrepolje', '020'),
('SI', 'Gorenja vas-Poljane', '027'),
('SI', 'Duplek', '026'),
('SI', 'Dravograd', '025'),
('SI', 'Dornava', '024'),
('SI', '<NAME>', '170'),
('SI', 'Sveta Ana', '181'),
('SI', '<NAME>', '029'),
('SI', 'Gorišnica', '028'),
('SI', 'Tabor', '184'),
('SI', 'Tr<NAME>', '185'),
('SI', 'Trzin', '186'),
('SI', 'Vel<NAME>', '187'),
('SI', 'Radenci', '100'),
('SI', 'Radlje ob Dravi', '101'),
('SI', 'Radovljica', '102'),
('SI', 'Ravne na Koroškem', '103'),
('SI', 'Ribnica', '104'),
('SI', 'Rogašovci', '105'),
('SI', 'Rogaška Slatina', '106'),
('SI', 'Rogatec', '107'),
('SI', 'Ruše', '108'),
('SI', 'Semič', '109'),
('SI', 'Šoštanj', '126'),
('SI', 'Štore', '127'),
('SI', 'Markovci', '168'),
('SI', 'Miklavž na Dravskem Polju', '169'),
('SI', 'Šempeter-Vrtojba', '183');
INSERT INTO
States (country_id, name, state_code)
VALUES
('KP', 'Hamgyǒng-bukto', '09'),
('KP', 'Hamgyǒng-namdo', '08'),
('KP', 'P\'yǒngan-bukto', '03'),
('KP', 'P\'yǒngan-namdo', '02'),
('KP', 'P\'yǒngyang', '01'),
('KP', 'Kangweonto', '07'),
('KP', 'Hwanghae-bukto', '06'),
('KP', 'Hwanghae-namdo', '05'),
('KP', 'Chagang-do', '04'),
('KP', 'Ryangkangto', '10'),
('KP', 'Nasǒn', '13');
INSERT INTO
States (country_id, name, state_code)
VALUES
('KW', 'Al Kuwayt', 'KU'),
('KW', 'Al Farwānīyah', 'FA'),
('KW', 'Al Aḩmadī', 'AH'),
('KW', 'Ḩawallī', 'HA'),
('KW', 'Mubārak al Kabīr', 'MU'),
('KW', 'Al Jahrā’', 'JA');
INSERT INTO
States (country_id, name, state_code)
VALUES
('SN', 'Sédhiou', 'SE'),
('SN', 'Tambacounda', 'TC'),
('SN', 'Ziguinchor', 'ZG'),
('SN', 'Saint-Louis', 'SL'),
('SN', 'Thiès', 'TH'),
('SN', 'Matam', 'MT'),
('SN', 'Kaolack', 'KL'),
('SN', 'Diourbel', 'DB'),
('SN', 'Fatick', 'FK'),
('SN', 'Kolda', 'KD'),
('SN', 'Kédougou', 'KE'),
('SN', 'Dakar', 'DK'),
('SN', 'Kaffrine', 'KA'),
('SN', 'Louga', 'LG');
INSERT INTO
States (country_id, name, state_code)
VALUES
('SM', 'Montegiardino', '08'),
('SM', 'Serravalle', '09'),
('SM', 'Faetano', '04'),
('SM', 'Fiorentino', '05'),
('SM', 'Borgo Maggiore', '06'),
('SM', 'San Marino', '07'),
('SM', 'Acquaviva', '01'),
('SM', 'Chiesanuova', '02'),
('SM', 'Domagnano', '03');
INSERT INTO
States (country_id, name, state_code)
VALUES
('SL', 'Southern', 'S'),
('SL', 'Northern', 'N'),
('SL', 'Western Area', 'W'),
('SL', 'Eastern', 'E');
INSERT INTO
States (country_id, name, state_code)
VALUES
('SC', 'Plaisance', '19'),
('SC', '<NAME>', '18'),
('SC', 'Ladig', '15'),
('SC', 'Grand\'Anse Praslin', '14'),
('SC', '<NAME>', '17'),
('SC', 'English River', '16'),
('SC', 'Cascade', '11'),
('SC', 'Bel Ombre', '10'),
('SC', 'Grand\'Anse Mahé', '13'),
('SC', 'Glacis', '12'),
('SC', 'Lemamel', '24'),
('SC', 'Roche Caïman', '25'),
('SC', 'Pointe La Rue', '20'),
('SC', 'Porglo', '21'),
('SC', 'Saint Louis', '22'),
('SC', 'Takamaka', '23'),
('SC', 'Beau Vallon', '08'),
('SC', 'Bel Air', '09'),
('SC', 'Baie Lazare', '06'),
('SC', 'Baie Sainte-Anne', '07'),
('SC', 'Au Cap', '04'),
('SC', 'Anse Royale', '05'),
('SC', 'Ans Bwalo', '02'),
('SC', 'Anse Etoile', '03'),
('SC', 'Anse aux Pins', '01');
INSERT INTO
States (country_id, name, state_code)
VALUES
('KZ', 'Karagandinskaja oblast\'', 'KAR'),
('KZ', 'Severo-Kazahstanskaja oblast\'', 'SEV'),
('KZ', 'Mangghystaū oblysy', 'MAN'),
('KZ', 'Shyghys Qazaqstan oblysy', 'VOS'),
('KZ', 'Kyzylordinskaja oblast\'', 'KZY'),
('KZ', 'Pavlodar oblysy', 'PAV'),
('KZ', 'Kostanajskaja oblast\'', 'KUS'),
('KZ', 'Aktjubinskaja oblast\'', 'AKT'),
('KZ', 'Almatinskaja oblast\'', 'ALM'),
('KZ', 'Almaty', 'ALA'),
('KZ', 'Astana', 'AST'),
('KZ', 'Akmolinskaja oblast\'', 'AKM'),
('KZ', 'Žambylskaja oblast\'', 'ZHA'),
('KZ', 'Batys Qazaqstan oblysy', 'ZAP'),
('KZ', 'Južno-Kazahstanskaja oblast\'', 'YUZ'),
('KZ', 'Atyraū oblysy', 'ATY');
INSERT INTO
States (country_id, name, state_code)
VALUES
('KY', 'Cayman Islands', 'KY');
INSERT INTO
States (country_id, name, state_code)
VALUES
('SG', 'North East', '02'),
('SG', 'North West', '03'),
('SG', 'Central Singapore', '01'),
('SG', 'South East', '04'),
('SG', 'South West', '05');
INSERT INTO
States (country_id, name, state_code)
VALUES
('SE', 'Västra Götalands län', 'O'),
('SE', 'Hallands län', 'N'),
('SE', 'Skåne län', 'M'),
('SE', 'Blekinge län', 'K'),
('SE', 'Gotlands län', 'I'),
('SE', 'Kalmar län', 'H'),
('SE', 'Kronobergs län', 'G'),
('SE', 'Jönköpings län', 'F'),
('SE', 'Östergötlands län', 'E'),
('SE', 'Södermanlands län', 'D'),
('SE', 'Uppsala län', 'C'),
('SE', 'Dalarnas län', 'W'),
('SE', 'Jämtlands län', 'Z'),
('SE', 'Västernorrlands län', 'Y'),
('SE', 'Gävleborgs län', 'X'),
('SE', 'Västerbottens län', 'AC'),
('SE', 'Stockholms län', 'AB'),
('SE', 'Norrbottens län', 'BD'),
('SE', 'Örebro län', 'T'),
('SE', 'Värmlands län', 'S'),
('SE', 'Västmanlands län', 'U');
INSERT INTO
States (country_id, name, state_code)
VALUES
('SD', 'Al Kharţūm', 'KH'),
('SD', 'Al Jazīrah', 'GZ'),
('SD', 'An Nīl al Azraq', 'NB'),
('SD', 'Janūb Dārfūr', 'DS'),
('SD', 'An Nīl', 'NR'),
('SD', 'Ash Shamālīyah', 'NO'),
('SD', 'Kassala', 'KA'),
('SD', 'Gharb Dārfūr', 'DW'),
('SD', 'Al Baḩr al Aḩmar', 'RS'),
('SD', 'An Nīl al Abyaḑ', 'NW'),
('SD', 'North Darfur', 'DN'),
('SD', 'Janūb Kurdufān', 'KS'),
('SD', 'Central Darfur', 'DC'),
('SD', 'North Kordofan', 'KN'),
('SD', 'Al Qaḑārif', 'GD'),
('SD', 'Sennar', 'SI'),
('SD', 'East Darfur', 'DE');
INSERT INTO
States (country_id, name, state_code)
VALUES
('DO', 'Cibao Nordeste', '33'),
('DO', 'Ozama', '40'),
('DO', 'La Romana', '12'),
('DO', 'La Vega', '13'),
('DO', 'Independencia', '10'),
('DO', 'La Altagracia', '11'),
('DO', 'Pedernales', '16'),
('DO', 'Peravia', '17'),
('DO', '<NAME>', '14'),
('DO', 'Monte Cristi', '15'),
('DO', 'Hato Mayor', '30'),
('DO', 'San José de Ocoa', '31'),
('DO', 'Puerto Plata', '18'),
('DO', '<NAME>', '19'),
('DO', 'Cibao Noroeste', '34'),
('DO', 'Cibao Norte', '35'),
('DO', 'Cibao Sur', '36'),
('DO', 'El Valle', '37'),
('DO', 'Enriquillo', '38'),
('DO', 'Higuamo', '39'),
('DO', 'Monte Plata', '29'),
('DO', 'M<NAME>', '28'),
('DO', 'Distrito Nacional', '01'),
('DO', 'Baoruco', '03'),
('DO', 'Azua', '02'),
('DO', 'Dajabón', '05'),
('DO', 'Barahona', '04'),
('DO', 'La Estrelleta', '07'),
('DO', 'Duarte', '06'),
('DO', 'Espaillat', '09'),
('DO', 'El Seibo', '08'),
('DO', 'Santiago', '25'),
('DO', '<NAME>', '24'),
('DO', 'San Pedro de Macorís', '23'),
('DO', 'San Juan', '22'),
('DO', 'San Cristóbal', '21'),
('DO', 'Samaná', '20'),
('DO', 'Valverde', '27'),
('DO', '<NAME>', '26'),
('DO', 'Valdesia', '41'),
('DO', '<NAME>', '32'),
('DO', 'Yuma', '42');
INSERT INTO
States (country_id, name, state_code)
VALUES
('DM', '<NAME>', '10'),
('DM', '<NAME>', '11'),
('DM', '<NAME>', '09'),
('DM', '<NAME>', '08'),
('DM', '<NAME>', '03'),
('DM', 'Saint Andrew', '02'),
('DM', '<NAME>', '07'),
('DM', '<NAME>', '06'),
('DM', '<NAME>', '05'),
('DM', 'Saint George', '04');
INSERT INTO
States (country_id, name, state_code)
VALUES
('DJ', '<NAME>', 'AS'),
('DJ', 'Arta', 'AR'),
('DJ', 'Djibouti', 'DJ'),
('DJ', 'Dikhīl', 'DI'),
('DJ', 'Obock', 'OB'),
('DJ', 'Tadjourah', 'TA');
INSERT INTO
States (country_id, name, state_code)
VALUES
('DK', 'Sjælland', '85'),
('DK', 'Hovedstaden', '84'),
('DK', 'Nordjylland', '81'),
('DK', 'Syddanmark', '83'),
('DK', 'Midtjylland', '82');
INSERT INTO
States (country_id, name, state_code)
VALUES
('VG', 'Virgin Islands', 'VG');
INSERT INTO
States (country_id, name, state_code)
VALUES
('DE', 'Berlin', 'BE'),
('DE', 'Sachsen-Anhalt', 'ST'),
('DE', 'Rheinland-Pfalz', 'RP'),
('DE', 'Brandenburg', 'BB'),
('DE', 'Niedersachsen', 'NI'),
('DE', 'Schleswig-Holstein', 'SH'),
('DE', 'Thüringen', 'TH'),
('DE', 'Baden-Württemberg', 'BW'),
('DE', 'Hamburg', 'HH'),
('DE', 'Mecklenburg-Vorpommern', 'MV'),
('DE', 'Nordrhein-Westfalen', 'NW'),
('DE', 'Sachsen', 'SN'),
('DE', 'Bremen', 'HB'),
('DE', 'Saarland', 'SL'),
('DE', 'Bayern', 'BY'),
('DE', 'Hessen', 'HE');
INSERT INTO
States (country_id, name, state_code)
VALUES
('YE', 'Al Bayḑā\'', 'BA'),
('YE', 'Şāʻdah', 'SD'),
('YE', 'Amānat al ‘Āşimah', 'SA'),
('YE', 'Al Ḩudaydah', 'HU'),
('YE', 'Şanʻā\'', 'SN'),
('YE', 'Shabwah', 'SH'),
('YE', 'Tāʻizz', 'TA'),
('YE', 'Ma\'rib', 'MA'),
('YE', 'Laḩij', 'LA'),
('YE', 'Raymah', 'RA'),
('YE', 'Ibb', 'IB'),
('YE', '\'Amrān', 'AM'),
('YE', 'Ḩaḑramawt', 'HD'),
('YE', 'Aḑ Ḑāli\'', 'DA'),
('YE', 'Ḩajjah', 'HJ'),
('YE', 'Al Jawf', 'JA'),
('YE', 'Al Maḩwīt', 'MW'),
('YE', 'Abyān', 'AB'),
('YE', '\'Adan', 'AD'),
('YE', 'Dhamār', 'DH'),
('YE', 'Al Mahrah', 'MR');
INSERT INTO
States (country_id, name, state_code)
VALUES
('DZ', 'Tamanrasset', '11'),
('DZ', 'Bouira', '10'),
('DZ', 'Tlemcen', '13'),
('DZ', 'Tébessa', '12'),
('DZ', 'Tizi Ouzou', '15'),
('DZ', 'Tiaret', '14'),
('DZ', 'Djelfa', '17'),
('DZ', 'Alger', '16'),
('DZ', 'Sétif', '19'),
('DZ', 'Jijel', '18'),
('DZ', 'Boumerdès', '35'),
('DZ', 'B<NAME>', '34'),
('DZ', 'Illizi', '33'),
('DZ', 'El Bayadh', '32'),
('DZ', 'Oran', '31'),
('DZ', 'Ouargla', '30'),
('DZ', 'Msila', '28'),
('DZ', 'El Oued', '39'),
('DZ', 'Tissemsilt', '38'),
('DZ', 'Tindouf', '37'),
('DZ', 'El Tarf', '36'),
('DZ', 'Sidi Bel Abbès', '22'),
('DZ', 'Mascara', '29'),
('DZ', 'Chlef', '02'),
('DZ', 'Laghouat', '03'),
('DZ', 'Adrar', '01'),
('DZ', 'Béjaïa', '06'),
('DZ', 'Biskra', '07'),
('DZ', 'Oum el Bouaghi', '04'),
('DZ', 'Batna', '05'),
('DZ', 'Saïda', '20'),
('DZ', 'Skikda', '21'),
('DZ', 'Béchar', '08'),
('DZ', 'Blida', '09'),
('DZ', 'Guelma', '24'),
('DZ', 'Constantine', '25'),
('DZ', 'Médéa', '26'),
('DZ', 'Mostaganem', '27'),
('DZ', 'Relizane', '48'),
('DZ', '<NAME>', '46'),
('DZ', 'Ghardaïa', '47'),
('DZ', 'Aïn Defla', '44'),
('DZ', 'Naama', '45'),
('DZ', 'Tipaza', '42'),
('DZ', 'Mila', '43'),
('DZ', 'Khenchela', '40'),
('DZ', 'Souk Ahras', '41'),
('DZ', 'Annaba', '23');
INSERT INTO
States (country_id, name, state_code)
VALUES
('UY', 'Soriano', 'SO'),
('UY', 'Florida', 'FD'),
('UY', 'Artigas', 'AR'),
('UY', 'San José', 'SJ'),
('UY', 'Río Negro', 'RN'),
('UY', 'Flores', 'FS'),
('UY', 'Paysandú', 'PA'),
('UY', 'Treinta y Tres', 'TT'),
('UY', 'Rocha', 'RO'),
('UY', 'Salto', 'SA'),
('UY', 'Colonia', 'CO'),
('UY', 'Cerro Largo', 'CL'),
('UY', 'Maldonado', 'MA'),
('UY', 'Rivera', 'RV'),
('UY', 'Lavalleja', 'LA'),
('UY', 'Montevideo', 'MO'),
('UY', 'Durazno', 'DU'),
('UY', 'Canelones', 'CA'),
('UY', 'Tacuarembó', 'TA');
INSERT INTO
States (country_id, name, state_code)
VALUES
('YT', 'Mayotte', 'YT');
INSERT INTO
States (country_id, name, state_code)
VALUES
('UM', 'Navassa Island', '76'),
('UM', 'Midway Islands', '71'),
('UM', '<NAME>', '67'),
('UM', 'Jarvis Island', '86'),
('UM', 'Howland Island', '84'),
('UM', 'Kingman Reef', '89'),
('UM', 'Wake Island', '79'),
('UM', 'Baker Island', '81'),
('UM', 'Palmyra Atoll', '95');
INSERT INTO
States (country_id, name, state_code)
VALUES
('LB', 'Al Janūb', 'JA'),
('LB', 'Ash Shimāl', 'AS'),
('LB', 'Jabal Lubnān', 'JL'),
('LB', 'Baalbek-Hermel', 'BH'),
('LB', 'Al Biqā‘', 'BI'),
('LB', 'Bayrūt', 'BA'),
('LB', 'Aakkâr', 'AK'),
('LB', 'An Nabaţīyah', 'NA');
INSERT INTO
States (country_id, name, state_code)
VALUES
('LC', 'Vieux Fort', '11'),
('LC', 'Canaries', '12'),
('LC', 'Soufrière', '10'),
('LC', 'Micoud', '08'),
('LC', 'Dennery', '05'),
('LC', 'Laborie', '07'),
('LC', 'Gros Islet', '06'),
('LC', '<NAME>', '01'),
('LC', 'Choiseul', '03'),
('LC', 'Castries', '02');
INSERT INTO
States (country_id, name, state_code)
VALUES
('LA', 'Houaphan', 'HO'),
('LA', 'Vientiane', 'VT'),
('LA', 'Champasak', 'CH'),
('LA', 'Oudomsai', 'OU'),
('LA', 'Attapu', 'AT'),
('LA', 'Bolikhamxai', 'BL'),
('LA', 'Salavan', 'SL'),
('LA', 'Khammouan', 'KH'),
('LA', 'Louangphabang', 'LP'),
('LA', 'Savannakhét', 'SV'),
('LA', 'Bokèo', 'BK'),
('LA', 'Phôngsali', 'PH'),
('LA', 'Xaisômboun', 'XN'),
('LA', 'Louang Namtha', 'LM'),
('LA', 'Xiangkhouang', 'XI'),
('LA', 'Sékong', 'XE'),
('LA', 'Vientiane', 'VI'),
('LA', 'Sayaboury', 'XA');
INSERT INTO
States (country_id, name, state_code)
VALUES
('TV', 'Nukulaelae', 'NKL'),
('TV', 'Nukufetau', 'NKF'),
('TV', 'Vaitupu', 'VAI'),
('TV', 'Funafuti', 'FUN'),
('TV', 'Niutao', 'NIT'),
('TV', 'Nanumanga', 'NMG'),
('TV', 'Nui', 'NUI'),
('TV', 'Nanumea', 'NMA');
INSERT INTO
States (country_id, name, state_code)
VALUES
('TW', 'Ilan', 'ILA'),
('TW', 'Yunlin', 'YUN'),
('TW', 'Nantou', 'NAN'),
('TW', 'Tainan', 'TNQ'),
('TW', 'Tainan', 'TNN'),
('TW', 'Keelung', 'KEE'),
('TW', 'Changhua', 'CHA'),
('TW', 'Taipei', 'TPE'),
('TW', 'Hualien', 'HUA'),
('TW', 'Taichung', 'TXG'),
('TW', 'Taoyuan', 'TAO'),
('TW', 'Pingtung', 'PIF'),
('TW', 'Kaohsiung', 'KHH'),
('TW', 'Penghu', 'PEN'),
('TW', 'Chiayi', 'CYI'),
('TW', 'Taichung', 'TXQ'),
('TW', 'Miaoli', 'MIA'),
('TW', 'Hsinchu', 'HSQ'),
('TW', 'Chiayi', 'CYQ'),
('TW', 'Taipei', 'TPQ'),
('TW', 'Kaohsiung', 'KHQ'),
('TW', 'Hsinchu', 'HSZ'),
('TW', 'Taitung', 'TTT');
INSERT INTO
States (country_id, name, state_code)
VALUES
('TT', 'San Juan-Laventille', 'SJL'),
('TT', 'Eastern Tobago', 'ETO'),
('TT', 'Sangre Grande', 'SGE'),
('TT', 'Point Fortin', 'PTF'),
('TT', 'R<NAME>-Mayaro', 'RCM'),
('TT', 'Western Tobago', 'WTO'),
('TT', 'Princes Town', 'PRT'),
('TT', 'Port of Spain', 'POS'),
('TT', 'Couva-Tabaquite-Talparo', 'CTT'),
('TT', 'Chaguanas', 'CHA'),
('TT', 'Arima', 'ARI'),
('TT', 'Siparia', 'SIP'),
('TT', 'Penal-Debe', 'PED'),
('TT', 'San Fernando', 'SFO'),
('TT', 'Die<NAME>', 'DMN'),
('TT', 'Tunapuna-Piarco', 'TUP');
INSERT INTO
States (country_id, name, state_code)
VALUES
('TR', 'Trabzon', '61'),
('TR', 'Şırnak', '73'),
('TR', 'Tunceli', '62'),
('TR', 'Yalova', '77'),
('TR', 'Sakarya', '54'),
('TR', 'Tokat', '60'),
('TR', 'Kastamonu', '37'),
('TR', 'Kars', '36'),
('TR', 'İzmir', '35'),
('TR', 'İstanbul', '34'),
('TR', 'Mersin', '33'),
('TR', 'Isparta', '32'),
('TR', 'Hatay', '31'),
('TR', 'Hakkâri', '30'),
('TR', 'Aksaray', '68'),
('TR', 'Samsun', '55'),
('TR', 'Şanlıurfa', '63'),
('TR', 'Malatya', '44'),
('TR', 'Kırklareli', '39'),
('TR', 'Kayseri', '38'),
('TR', 'Çorum', '19'),
('TR', 'Çankırı', '18'),
('TR', 'Sinop', '57'),
('TR', 'Manisa', '45'),
('TR', 'Niğde', '51'),
('TR', 'Nevşehir', '50'),
('TR', 'Rize', '53'),
('TR', 'Ordu', '52'),
('TR', 'Bilecik', '11'),
('TR', 'Balıkesir', '10'),
('TR', 'Bitlis', '13'),
('TR', 'Bingöl', '12'),
('TR', 'Burdur', '15'),
('TR', 'Bolu', '14'),
('TR', 'Çanakkale', '17'),
('TR', 'Bursa', '16'),
('TR', 'Muğla', '48'),
('TR', 'Ardahan', '75'),
('TR', 'Iğdır', '76'),
('TR', 'Bayburt', '69'),
('TR', 'Karabük', '78'),
('TR', 'Bartın', '74'),
('TR', 'Batman', '72'),
('TR', 'Muş', '49'),
('TR', 'Uşak', '64'),
('TR', 'Osmaniye', '80'),
('TR', 'Düzce', '81'),
('TR', 'Zonguldak', '67'),
('TR', 'Siirt', '56'),
('TR', 'Van', '65'),
('TR', 'Karaman', '70'),
('TR', 'Kırıkkale', '71'),
('TR', 'Kilis', '79'),
('TR', 'Denizli', '20'),
('TR', 'Diyarbakır', '21'),
('TR', 'Edirne', '22'),
('TR', 'Elazığ', '23'),
('TR', 'Erzincan', '24'),
('TR', 'Erzurum', '25'),
('TR', 'Eskişehir', '26'),
('TR', 'Gaziantep', '27'),
('TR', 'Giresun', '28'),
('TR', 'Gümüşhane', '29'),
('TR', 'Tekirdağ', '59'),
('TR', 'Sivas', '58'),
('TR', 'Kahramanmaraş', '46'),
('TR', 'Mardin', '47'),
('TR', 'Artvin', '08'),
('TR', 'Aydın', '09'),
('TR', 'Konya', '42'),
('TR', 'Kütahya', '43'),
('TR', 'Kırşehir', '40'),
('TR', 'Kocaeli', '41'),
('TR', 'Adıyaman', '02'),
('TR', 'Afyonkarahisar', '03'),
('TR', 'Yozgat', '66'),
('TR', 'Adana', '01'),
('TR', 'Ankara', '06'),
('TR', 'Antalya', '07'),
('TR', 'Ağrı', '04'),
('TR', 'Amasya', '05');
INSERT INTO
States (country_id, name, state_code)
VALUES
('LK', '<NAME>', '23'),
('LK', 'Matale', '22'),
('LK', 'Kandy', '21'),
('LK', 'Jaffna', '41'),
('LK', 'Mannar', '43'),
('LK', 'Kilinochchi', '42'),
('LK', 'Mulativ', '45'),
('LK', 'Vavuniya', '44'),
('LK', 'Northern Province', '4'),
('LK', 'Eastern Province', '5'),
('LK', 'North Western Province', '6'),
('LK', 'North Central Province', '7'),
('LK', 'Basnāhira paḷāta', '1'),
('LK', 'Central Province', '2'),
('LK', 'Dakuṇu paḷāta', '3'),
('LK', 'Ūvā mākāṇam', '8'),
('LK', 'Chappirakamuva mākāṇam', '9'),
('LK', 'Anuradhapura', '71'),
('LK', 'Pŏlaṉṉaṛuvai', '72'),
('LK', 'Kægalla', '92'),
('LK', 'Irattiṉapuri', '91'),
('LK', 'Gampaha', '12'),
('LK', 'Kalutara', '13'),
('LK', 'Colombo', '11'),
('LK', 'Ampara', '52'),
('LK', 'Tirukŏṇamalai', '53'),
('LK', 'Batticaloa', '51'),
('LK', 'Gālla', '31'),
('LK', 'Matara', '32'),
('LK', 'Ampāntōṭṭai', '33'),
('LK', 'Puttalam', '62'),
('LK', 'Kuruṇægala', '61'),
('LK', 'Badulla', '81'),
('LK', 'Monaragala', '82');
INSERT INTO
States (country_id, name, state_code)
VALUES
('LI', 'Vaduz', '11'),
('LI', 'Triesenberg', '10'),
('LI', 'Triesen', '09'),
('LI', 'Schellenberg', '08'),
('LI', 'Schaan', '07'),
('LI', 'Ruggell', '06'),
('LI', 'Planken', '05'),
('LI', 'Mauren', '04'),
('LI', 'Gamprin', '03'),
('LI', 'Eschen', '02'),
('LI', 'Balzers', '01');
INSERT INTO
States (country_id, name, state_code)
VALUES
('LV', 'Daugavpils', 'DGV'),
('LV', 'Riebiņu novads', '078'),
('LV', 'Rojas novads', '079'),
('LV', 'Pļaviņu novads', '072'),
('LV', 'Preiļu novads', '073'),
('LV', 'Pārgaujas novads', '070'),
('LV', 'Pāvilostas novads', '071'),
('LV', 'Raunas novads', '076'),
('LV', 'Rēzeknes novads', '077'),
('LV', 'Priekules novads', '074'),
('LV', 'Priekuļu novads', '075'),
('LV', 'Ventspils novads', '106'),
('LV', 'Viesītes novads', '107'),
('LV', 'Jelgava', 'JEL'),
('LV', 'Ozolnieku novads', '069'),
('LV', 'Olaines novads', '068'),
('LV', 'Vecpiebalgas novads', '104'),
('LV', 'Vecumnieku novads', '105'),
('LV', 'Varakļānu novads', '102'),
('LV', 'Vārkavas novads', '103'),
('LV', 'Vaiņodes novads', '100'),
('LV', 'Valkas novads', '101'),
('LV', 'Mālpils novads', '061'),
('LV', 'Mazsalacas novads', '060'),
('LV', 'Mērsraga novads', '063'),
('LV', 'Mārupes novads', '062'),
('LV', 'Neretas novads', '065'),
('LV', 'Naukšēnu novads', '064'),
('LV', 'Ogres novads', '067'),
('LV', 'Nīcas novads', '066'),
('LV', 'Liepāja', 'LPX'),
('LV', 'Ventspils', 'VEN'),
('LV', 'Limbažu novads', '054'),
('LV', 'Līgatnes novads', '055'),
('LV', 'Līvānu novads', '056'),
('LV', 'Lubānas novads', '057'),
('LV', 'Kuldīgas novads', '050'),
('LV', 'Ķeguma novads', '051'),
('LV', 'Ķekavas novads', '052'),
('LV', 'Lielvārdes novads', '053'),
('LV', 'Rēzekne', 'REZ'),
('LV', 'Viļānu novads', '109'),
('LV', 'Ludzas novads', '058'),
('LV', 'Madonas novads', '059'),
('LV', 'Zilupes novads', '110'),
('LV', 'Valmiera', 'VMR'),
('LV', 'Kandavas novads', '043'),
('LV', 'Jēkabpils novads', '042'),
('LV', 'Jelgavas novads', '041'),
('LV', 'Jaunpils novads', '040'),
('LV', 'Krāslavas novads', '047'),
('LV', 'Kokneses novads', '046'),
('LV', 'Kocēnu novads', '045'),
('LV', 'Kārsavas novads', '044'),
('LV', 'Krustpils novads', '049'),
('LV', 'Krimuldas novads', '048'),
('LV', 'Ilūkstes novads', '036'),
('LV', 'Inčukalna novads', '037'),
('LV', 'Iecavas novads', '034'),
('LV', 'Ikšķiles novads', '035'),
('LV', 'Grobiņas novads', '032'),
('LV', 'Gulbenes novads', '033'),
('LV', 'Ērgļu novads', '030'),
('LV', 'Garkalnes novads', '031'),
('LV', 'Jaunjelgavas novads', '038'),
('LV', 'Jaunpiebalgas novads', '039'),
('LV', 'Daugavpils novads', '025'),
('LV', 'Dagdas novads', '024'),
('LV', 'Dundagas novads', '027'),
('LV', 'Dobeles novads', '026'),
('LV', 'Cesvaines novads', '021'),
('LV', 'Carnikavas novads', '020'),
('LV', 'Ciblas novads', '023'),
('LV', 'Cēsu novads', '022'),
('LV', 'Engures novads', '029'),
('LV', 'Durbes novads', '028'),
('LV', 'Viļakas novads', '108'),
('LV', 'Jēkabpils', 'JKB'),
('LV', 'Tērvetes novads', '098'),
('LV', 'Tukuma novads', '099'),
('LV', 'Sējas novads', '090'),
('LV', 'Siguldas novads', '091'),
('LV', 'Skrīveru novads', '092'),
('LV', 'Skrundas novads', '093'),
('LV', 'Smiltenes novads', '094'),
('LV', 'Stopiņu novads', '095'),
('LV', 'Strenču novads', '096'),
('LV', 'Talsu novads', '097'),
('LV', 'Auces novads', '010'),
('LV', 'Ādažu novads', '011'),
('LV', 'Babītes novads', '012'),
('LV', 'Baldones novads', '013'),
('LV', 'Baltinavas novads', '014'),
('LV', 'Balvu novads', '015'),
('LV', 'Bauskas novads', '016'),
('LV', 'Beverīnas novads', '017'),
('LV', 'Brocēnu novads', '018'),
('LV', 'Burtnieku novads', '019'),
('LV', 'Jūrmala', 'JUR'),
('LV', 'Salaspils novads', '087'),
('LV', 'Salacgrīvas novads', '086'),
('LV', 'Salas novads', '085'),
('LV', 'Rūjienas novads', '084'),
('LV', 'Rundāles novads', '083'),
('LV', 'Rugāju novads', '082'),
('LV', 'Rucavas novads', '081'),
('LV', 'Ropažu novads', '080'),
('LV', 'Saulkrastu novads', '089'),
('LV', 'Saldus novads', '088'),
('LV', 'Apes novads', '009'),
('LV', 'Amatas novads', '008'),
('LV', 'Alūksnes novads', '007'),
('LV', 'Alsungas novads', '006'),
('LV', 'Alojas novads', '005'),
('LV', 'Aknīstes novads', '004'),
('LV', 'Aizputes novads', '003'),
('LV', 'Aizkraukles novads', '002'),
('LV', 'Aglonas novads', '001'),
('LV', 'Rīga', 'RIX');
INSERT INTO
States (country_id, name, state_code)
VALUES
('TO', '\'Eua', '01'),
('TO', 'Niuas', '03'),
('TO', 'Ha\'apai', '02'),
('TO', 'Vava\'u', '05'),
('TO', 'Tongatapu', '04');
INSERT INTO
States (country_id, name, state_code)
VALUES
('LT', 'Marijampolės apskritis', 'MR'),
('LT', 'Tauragės apskritis', 'TA'),
('LT', 'Vilkaviškis', '56'),
('LT', 'Šakiai', '41'),
('LT', 'Klaipėdos apskritis', 'KL'),
('LT', 'Trakai', '52'),
('LT', 'Ukmergė', '53'),
('LT', 'Akmenė', '01'),
('LT', 'Alytaus miestas', '02'),
('LT', 'Alytus', '03'),
('LT', 'Anykščiai', '04'),
('LT', 'Birštono', '05'),
('LT', 'Biržai', '06'),
('LT', 'Druskininkai', '07'),
('LT', 'Elektrénai', '08'),
('LT', 'Ignalina', '09'),
('LT', 'Kauno apskritis', 'KU'),
('LT', 'Neringa', '28'),
('LT', 'Pagégiai', '29'),
('LT', 'Skuodas', '48'),
('LT', 'Švenčionys', '49'),
('LT', 'Zarasai', '60'),
('LT', 'Utenos apskritis', 'UT'),
('LT', 'Kretinga', '22'),
('LT', 'Kupiškis', '23'),
('LT', 'Klaipėdos miestas', '20'),
('LT', 'Klaipėda', '21'),
('LT', 'Mažeikiai', '26'),
('LT', 'Molėtai', '27'),
('LT', 'Lazdijai', '24'),
('LT', 'Marijampolė', '25'),
('LT', 'Vilnius', '58'),
('LT', 'Panevėžio apskritis', 'PN'),
('LT', 'Utena', '54'),
('LT', 'Šiaulių miestas', '43'),
('LT', 'Visaginas', '59'),
('LT', 'Šilalė', '45'),
('LT', 'Širvintos', '47'),
('LT', 'Šilutė', '46'),
('LT', 'Kazlų Rūdos', '17'),
('LT', 'Kaunas', '16'),
('LT', 'Kauno miestas', '15'),
('LT', 'Kalvarijos', '14'),
('LT', 'Kaišiadorys', '13'),
('LT', 'Jurbarkas', '12'),
('LT', 'Joniškis', '11'),
('LT', 'Jonava', '10'),
('LT', 'Telšių apskritis', 'TE'),
('LT', 'Rokiškis', '40'),
('LT', 'Vilniaus apskritis', 'VL'),
('LT', 'Alytaus apskritis', 'AL'),
('LT', 'Šiaulių apskritis', 'SA'),
('LT', 'Kelmė', '19'),
('LT', 'Kėdainiai', '18'),
('LT', 'Rietavo', '39'),
('LT', 'Raseiniai', '38'),
('LT', 'Telšiai', '51'),
('LT', 'Tauragė', '50'),
('LT', 'Vilniaus miestas', '57'),
('LT', 'Šalčininkai', '42'),
('LT', 'Varėna', '55'),
('LT', 'Šiauliai', '44'),
('LT', 'Palangos miestas', '31'),
('LT', 'Pakruojis', '30'),
('LT', 'Panevėžys', '33'),
('LT', 'Panevėžio miestas', '32'),
('LT', 'Plungė', '35'),
('LT', 'Pasvalys', '34'),
('LT', 'Radviliškis', '37'),
('LT', 'Prienai', '36');
INSERT INTO
States (country_id, name, state_code)
VALUES
('LU', 'Grevenmacher', 'G'),
('LU', 'Diekirch', 'D'),
('LU', 'Lëtzebuerg', 'L');
INSERT INTO
States (country_id, name, state_code)
VALUES
('LR', 'Grand Cape Mount', 'CM'),
('LR', 'Bomi', 'BM'),
('LR', 'Maryland', 'MY'),
('LR', 'Lofa', 'LO'),
('LR', 'Montserrado', 'MO'),
('LR', 'Gbarpolu', 'GP'),
('LR', 'Margibi', 'MG'),
('LR', 'Bong', 'BG'),
('LR', 'Grand Kru', 'GK'),
('LR', 'Rivercess', 'RI'),
('LR', 'Sinoe', 'SI'),
('LR', 'Grand Bassa', 'GB'),
('LR', 'River Gee', 'RG'),
('LR', 'Grand Gedeh', 'GG'),
('LR', 'Nimba', 'NI');
INSERT INTO
States (country_id, name, state_code)
VALUES
('LS', 'Qacha\'s Nek', 'H'),
('LS', 'Mokhotlong', 'J'),
('LS', 'Thaba-Tseka', 'K'),
('LS', 'Berea', 'D'),
('LS', 'Mafeteng', 'E'),
('LS', 'Mohale\'s Hoek', 'F'),
('LS', 'Quthing', 'G'),
('LS', 'Maseru', 'A'),
('LS', 'Butha-Buthe', 'B'),
('LS', 'Leribe', 'C');
INSERT INTO
States (country_id, name, state_code)
VALUES
('TH', 'Chiang Rai', '57'),
('TH', 'Phayao', '56'),
('TH', 'Nan', '55'),
('TH', 'Phrae', '54'),
('TH', 'Uttaradit', '53'),
('TH', 'Si Sa Ket', '33'),
('TH', 'Lamphun', '51'),
('TH', 'Chiang Mai', '50'),
('TH', 'Songkhla', '90'),
('TH', 'Trang', '92'),
('TH', 'Satun', '91'),
('TH', 'Surin', '32'),
('TH', 'Narathiwat', '96'),
('TH', 'Yala', '95'),
('TH', 'Mae Hong Son', '58'),
('TH', 'Pathum Thani', '13'),
('TH', 'Nonthaburi', '12'),
('TH', 'Samut Prakan', '11'),
('TH', 'Krung Thep Maha Nakhon', '10'),
('TH', 'Buri Ram', '31'),
('TH', 'Nakhon Ratchasima', '30'),
('TH', 'Ang Thong', '15'),
('TH', 'Phra Nakhon Si Ayutthaya', '14'),
('TH', 'Kanchanaburi', '71'),
('TH', 'Ratchaburi', '70'),
('TH', 'Saraburi', '19'),
('TH', 'Chai Nat', '18'),
('TH', 'Nong Bua Lam Phu', '39'),
('TH', 'Bueng Kan', '38'),
('TH', 'Prachuap Khiri Khan', '77'),
('TH', 'Lampang', '52'),
('TH', 'Suphan Buri', '72'),
('TH', 'Samut Songkhram', '75'),
('TH', 'Phatthalung', '93'),
('TH', 'Samut Sakhon', '74'),
('TH', 'Sur<NAME>ani', '84'),
('TH', 'Ranong', '85'),
('TH', 'Chumphon', '86'),
('TH', 'Phatthaya', 'S'),
('TH', 'Nakhon Si Thammarat', '80'),
('TH', 'Krabi', '81'),
('TH', 'Phangnga', '82'),
('TH', 'Phuket', '83'),
('TH', 'Phetchaburi', '76'),
('TH', 'Khon Kaen', '40'),
('TH', '<NAME>', '41'),
('TH', 'Loei', '42'),
('TH', 'Nong Khai', '43'),
('TH', 'M<NAME>', '44'),
('TH', 'Roi Et', '45'),
('TH', 'Kalasin', '46'),
('TH', 'Sakon Nakhon', '47'),
('TH', 'Nakhon Phanom', '48'),
('TH', 'Mukdahan', '49'),
('TH', 'Nakhon Nayok', '26'),
('TH', 'Sa Kaeo', '27'),
('TH', 'Chachoengsao', '24'),
('TH', '<NAME>', '25'),
('TH', 'Chanthaburi', '22'),
('TH', 'Trat', '23'),
('TH', '<NAME>', '20'),
('TH', 'Rayong', '21'),
('TH', 'Kamphaeng Phet', '62'),
('TH', 'Tak', '63'),
('TH', 'Nakhon Sawan', '60'),
('TH', '<NAME>ani', '61'),
('TH', 'Phichit', '66'),
('TH', 'Phetchabun', '67'),
('TH', 'Sukhothai', '64'),
('TH', 'Phitsanulok', '65'),
('TH', 'Yasothon', '35'),
('TH', '<NAME>', '34'),
('TH', 'A<NAME>', '37'),
('TH', '<NAME>', '73'),
('TH', 'Chaiyaphum', '36'),
('TH', '<NAME>', '17'),
('TH', 'Pattani', '94'),
('TH', '<NAME>', '16');
INSERT INTO
States (country_id, name, state_code)
VALUES
('TF', 'French Southern Territories', 'TF');
INSERT INTO
States (country_id, name, state_code)
VALUES
('TG', 'Plateaux', 'P'),
('TG', 'Savannes', 'S'),
('TG', 'Centre', 'C'),
('TG', 'Maritime', 'M'),
('TG', 'Kara', 'K');
INSERT INTO
States (country_id, name, state_code)
VALUES
('TD', 'Madīnat Injamīnā', 'ND'),
('TD', 'Logone-Occidental', 'LO'),
('TD', 'W<NAME>', 'WF'),
('TD', 'Al Buḩayrah', 'LC'),
('TD', 'Salamat', 'SA'),
('TD', 'Sila', 'SI'),
('TD', 'H<NAME>', 'HL'),
('TD', 'Logone-Oriental', 'LR'),
('TD', 'Al Baţḩah', 'BA'),
('TD', 'Baḩr al Ghazāl', 'BG'),
('TD', 'Borkou', 'BO'),
('TD', 'Moyen-Chari', 'MC'),
('TD', 'Ouaddaï', 'OD'),
('TD', 'Mandoul', 'MA'),
('TD', 'Mayo-Kebbi-Est', 'ME'),
('TD', 'Kanem', 'KA'),
('TD', 'Mayo-Kebbi-Ouest', 'MO'),
('TD', 'Guéra', 'GR'),
('TD', 'Ennedi-Ouest', 'EO'),
('TD', 'Tandjilé', 'TA'),
('TD', 'Tibastī', 'TI'),
('TD', 'Ennedi-Est', 'EE'),
('TD', 'Chari-Baguirmi', 'CB');
INSERT INTO
States (country_id, name, state_code)
VALUES
('TC', 'Turks & Caicos Islands', 'TC');
INSERT INTO
States (country_id, name, state_code)
VALUES
('LY', 'Al Jifārah', 'JI'),
('LY', 'Surt', 'SR'),
('LY', 'Al Jabal al Akhḑar', 'JA'),
('LY', 'Darnah', 'DR'),
('LY', 'Wādī al Ḩayāt', 'WD'),
('LY', 'Al Jabal al Gharbī', 'JG'),
('LY', 'Al Wāḩāt', 'WA'),
('LY', 'Sabhā', 'SB'),
('LY', 'An Nuqāţ al Khams', 'NQ'),
('LY', 'Al Jufrah', 'JU'),
('LY', 'Wādī ash Shāţi’', 'WS'),
('LY', 'Banghāzī', 'BA'),
('LY', 'Al Buţnān', 'BU'),
('LY', 'Nālūt', 'NL'),
('LY', 'Az Zāwiyah', 'ZA'),
('LY', 'Mişrātah', 'MI'),
('LY', 'Al Marj', 'MJ'),
('LY', 'Ţarābulus', 'TB'),
('LY', 'Ghāt', 'GT'),
('LY', 'Al Kufrah', 'KF'),
('LY', 'Al Marqab', 'MB'),
('LY', 'Murzuq', 'MQ');
INSERT INTO
States (country_id, name, state_code)
VALUES
('VA', 'Vatican City', 'VA');
INSERT INTO
States (country_id, name, state_code)
VALUES
('VC', '<NAME>', '03'),
('VC', '<NAME>', '02'),
('VC', 'Charlotte', '01'),
('VC', 'Grenadines', '06'),
('VC', 'Saint Patrick', '05'),
('VC', 'Saint George', '04');
INSERT INTO
States (country_id, name, state_code)
VALUES
('AE', 'Al Fujayrah', 'FU'),
('AE', '\'Ajmān', 'AJ'),
('AE', '<NAME>', 'SH'),
('AE', 'Abū Z̧aby', 'AZ'),
('AE', 'Umm al Qaywayn', 'UQ'),
('AE', 'Ra\'s al Khaymah', 'RK'),
('AE', 'Dubayy', 'DU');
INSERT INTO
States (country_id, name, state_code)
VALUES
('AD', 'Escaldes-Engordany', '08'),
('AD', 'Ordino', '05'),
('AD', 'La Massana', '04'),
('AD', 'Andorra la Vella', '07'),
('AD', 'Sant Julià de Lòria', '06'),
('AD', 'Encamp', '03'),
('AD', 'Canillo', '02');
INSERT INTO
States (country_id, name, state_code)
VALUES
('AG', 'Redonda', '11'),
('AG', 'Barbuda', '10'),
('AG', 'S<NAME>', '08'),
('AG', 'Saint John', '04'),
('AG', 'Saint Mary', '05'),
('AG', '<NAME>', '06'),
('AG', 'Saint Peter', '07'),
('AG', 'Saint George', '03');
INSERT INTO
States (country_id, name, state_code)
VALUES
('AF', 'Takhār', 'TAK'),
('AF', 'Baghlān', 'BGL'),
('AF', 'Bāmyān', 'BAM'),
('AF', 'Balkh', 'BAL'),
('AF', 'Sar-e Pul', 'SAR'),
('AF', 'Kunar', 'KNR'),
('AF', 'Samangān', 'SAM'),
('AF', 'Lōgar', 'LOG'),
('AF', 'Nūristān', 'NUR'),
('AF', 'Kunduz', 'KDZ'),
('AF', 'Nīmrōz', 'NIM'),
('AF', 'Panjshayr', 'PAN'),
('AF', 'Nangarhār', 'NAN'),
('AF', 'Khōst', 'KHO'),
('AF', 'Paktiyā', 'PIA'),
('AF', 'Badakhshān', 'BDS'),
('AF', 'Fāryāb', 'FYB'),
('AF', 'Uruzgān', 'URU'),
('AF', 'Bādghīs', 'BDG'),
('AF', 'Laghmān', 'LAG'),
('AF', 'Parwān', 'PAR'),
('AF', 'Kāpīsā', 'KAP'),
('AF', 'Ghaznī', 'GHA'),
('AF', 'Ghōr', 'GHO'),
('AF', 'Farāh', 'FRA'),
('AF', 'Kābul', 'KAB'),
('AF', 'Kandahār', 'KAN'),
('AF', 'Zābul', 'ZAB'),
('AF', 'Wardak', 'WAR'),
('AF', 'Helmand', 'HEL'),
('AF', 'Paktīkā', 'PKA'),
('AF', 'Dāykundī', 'DAY'),
('AF', 'Jowzjān', 'JOW'),
('AF', 'Herāt', 'HER');
INSERT INTO
States (country_id, name, state_code)
VALUES
('AI', 'Anguilla', 'AI');
INSERT INTO
States (country_id, name, state_code)
VALUES
('VI', 'Virgin Islands', 'VI');
INSERT INTO
States (country_id, name, state_code)
VALUES
('IS', 'Suðurland', '8'),
('IS', 'Vesturland', '3'),
('IS', 'Suðurnes', '2'),
('IS', 'Höfuðborgarsvæði utan Reykjavíkur', '1'),
('IS', 'Reykjavík', '0'),
('IS', 'Austurland', '7'),
('IS', 'Norðurland eystra', '6'),
('IS', 'Norðurland vestra', '5'),
('IS', 'Vestfirðir', '4');
INSERT INTO
States (country_id, name, state_code)
VALUES
('IR', 'Ardabīl', '03'),
('IR', 'Āz̄arbāyjān-e Gharbī', '02'),
('IR', 'Āz̄arbāyjān-e Sharqī', '01'),
('IR', 'Qom', '26'),
('IR', 'Tehrān', '07'),
('IR', 'Būshehr', '06'),
('IR', 'Īlām', '05'),
('IR', 'Eşfahān', '04'),
('IR', 'Chahār Maḩāll va Bakhtīārī', '08'),
('IR', 'Khorāsān-e Janūbī', '29'),
('IR', 'Golestān', '27'),
('IR', 'Māzandarān', '21'),
('IR', 'Lorestān', '20'),
('IR', 'Hormozgān', '23'),
('IR', 'Markazī', '22'),
('IR', 'Kohgīlūyeh va Būyer Aḩmad', '18'),
('IR', 'Gīlān', '19'),
('IR', 'Khorāsān-e Razavī', '30'),
('IR', 'Khorāsān-e Shemālī', '31'),
('IR', 'Fārs', '14'),
('IR', 'Kermān', '15'),
('IR', 'Kordestān', '16'),
('IR', 'Kermānshāh', '17'),
('IR', 'Khūzestān', '10'),
('IR', 'Zanjān', '11'),
('IR', 'Semnān', '12'),
('IR', 'Sīstān va Balūchestān', '13'),
('IR', 'Hamadān', '24'),
('IR', 'Yazd', '25'),
('IR', 'Qazvīn', '28'),
('IR', 'Alborz', '32');
INSERT INTO
States (country_id, name, state_code)
VALUES
('AM', 'Geġark\'unik\'', 'GR'),
('AM', 'Syunik\'', 'SU'),
('AM', 'Ararat', 'AR'),
('AM', 'Erevan', 'ER'),
('AM', 'V<NAME>', 'VD'),
('AM', 'Kotayk\'', 'KT'),
('AM', 'Loṙi', 'LO'),
('AM', 'Armavir', 'AV'),
('AM', 'Tavuš', 'TV'),
('AM', 'Aragac̣otn', 'AG'),
('AM', 'Širak', 'SH');
INSERT INTO
States (country_id, name, state_code)
VALUES
('AL', 'Dibër', 'DI'),
('AL', 'Korçë', 'KO'),
('AL', 'Fier', 'FR'),
('AL', 'Berat', 'BR'),
('AL', 'Bulqizë', 'BU'),
('AL', 'Mirditë', 'MR'),
('AL', 'Durrës', 'DR'),
('AL', 'Has', 'HA'),
('AL', 'Devoll', 'DV'),
('AL', 'Gjirokastër', '05'),
('AL', 'Fier', '04'),
('AL', 'Kukës', '07'),
('AL', 'Korçë', '06'),
('AL', 'Berat', '01'),
('AL', 'Elbasan', '03'),
('AL', 'Durrës', '02'),
('AL', 'Tropojë', 'TP'),
('AL', 'Tiranë', 'TR'),
('AL', 'Dibër', '09'),
('AL', 'Lezhë', '08'),
('AL', 'Pogradec', 'PG'),
('AL', 'Lushnjë', 'LU'),
('AL', 'Përmet', 'PR'),
('AL', 'Tepelenë', 'TE'),
('AL', 'Pukë', 'PU'),
('AL', 'Gramsh', 'GR'),
('AL', 'Mat', 'MT'),
('AL', 'Elbasan', 'EL'),
('AL', 'Vlorë', 'VL'),
('AL', 'Kurbin', 'KB'),
('AL', 'Librazhd', 'LB'),
('AL', 'Kolonjë', 'ER'),
('AL', 'Lezhë', 'LE'),
('AL', 'Gjirokastër', 'GJ'),
('AL', 'Vlorë', '12'),
('AL', 'Kavajë', 'KA'),
('AL', 'Shkodër', '10'),
('AL', 'Tiranë', '11'),
('AL', 'Mallakastër', 'MK'),
('AL', 'Kuçovë', 'KC'),
('AL', 'Sarandë', 'SR'),
('AL', 'Malësi e Madhe', 'MM'),
('AL', 'Delvinë', 'DL'),
('AL', 'Kukës', 'KU'),
('AL', 'Shkodër', 'SH'),
('AL', 'Peqin', 'PQ'),
('AL', 'Krujë', 'KR'),
('AL', 'Skrapar', 'SK');
INSERT INTO
States (country_id, name, state_code)
VALUES
('AO', 'Kwanza Sul', 'CUS'),
('AO', 'Huambo', 'HUA'),
('AO', 'Bié', 'BIE'),
('AO', 'Namibe', 'NAM'),
('AO', 'Lunda Norte', 'LNO'),
('AO', 'Uíge', 'UIG'),
('AO', 'Huíla', 'HUI'),
('AO', 'Bengo', 'BGO'),
('AO', 'Luanda', 'LUA'),
('AO', 'Lunda Sul', 'LSU'),
('AO', 'Kuando Kubango', 'CCU'),
('AO', 'Malange', 'MAL'),
('AO', 'Benguela', 'BGU'),
('AO', 'Moxico', 'MOX'),
('AO', 'Cunene', 'CNN'),
('AO', 'Kwanza Norte', 'CNO'),
('AO', 'Zaire', 'ZAI'),
('AO', 'Cabinda', 'CAB');
INSERT INTO
States (country_id, name, state_code)
VALUES
('AQ', 'Antarctica', 'AQ');
INSERT INTO
States (country_id, name, state_code)
VALUES
('AS', 'American Samoa', 'AS');
INSERT INTO
States (country_id, name, state_code)
VALUES
('AR', 'Santa Cruz', 'Z'),
('AR', 'Córdoba', 'X'),
('AR', 'Jujuy', 'Y'),
('AR', 'Tierra del Fuego', 'V'),
('AR', 'Corrientes', 'W'),
('AR', 'Tucumán', 'T'),
('AR', 'Chubut', 'U'),
('AR', 'Río Negro', 'R'),
('AR', 'Santa Fe', 'S'),
('AR', 'Formosa', 'P'),
('AR', 'Neuquén', 'Q'),
('AR', 'Misiones', 'N'),
('AR', 'La Pampa', 'L'),
('AR', 'Mendoza', 'M'),
('AR', 'San Juan', 'J'),
('AR', 'Catamarca', 'K'),
('AR', 'Chaco', 'H'),
('AR', 'La Rioja', 'F'),
('AR', 'Santiago del Estero', 'G'),
('AR', 'San Luis', 'D'),
('AR', 'Entre Ríos', 'E'),
('AR', 'Buenos Aires', 'B'),
('AR', 'Ciudad Autónoma de Buenos Aires', 'C'),
('AR', 'Salta', 'A');
INSERT INTO
States (country_id, name, state_code)
VALUES
('AU', 'Australian Capital Territory', 'ACT'),
('AU', 'Queensland', 'QLD'),
('AU', 'Tasmania', 'TAS'),
('AU', 'Victoria', 'VIC'),
('AU', 'Northern Territory', 'NT'),
('AU', 'Western Australia', 'WA'),
('AU', 'South Australia', 'SA'),
('AU', 'New South Wales', 'NSW');
INSERT INTO
States (country_id, name, state_code)
VALUES
('AT', 'Vorarlberg', '8'),
('AT', 'Wien', '9'),
('AT', 'Oberösterreich', '4'),
('AT', 'Salzburg', '5'),
('AT', 'Steiermark', '6'),
('AT', 'Tirol', '7'),
('AT', 'Burgenland', '1'),
('AT', 'Kärnten', '2'),
('AT', 'Niederösterreich', '3');
INSERT INTO
States (country_id, name, state_code)
VALUES
('IO', 'British Indian Ocean Territory', 'IO');
INSERT INTO
States (country_id, name, state_code)
VALUES
('IN', 'Bihar', 'BR'),
('IN', 'Mizoram', 'MZ'),
('IN', 'Daman and Diu', 'DD'),
('IN', 'Lakshadweep', 'LD'),
('IN', 'Dadra and Nagar Haveli', 'DN'),
('IN', 'Delhi', 'DL'),
('IN', 'Nagaland', 'NL'),
('IN', 'West Bengal', 'WB'),
('IN', 'Haryana', 'HR'),
('IN', 'Himachal Pradesh', 'HP'),
('IN', 'Assam', 'AS'),
('IN', 'Uttarakhand', 'UT'),
('IN', 'Jharkhand', 'JH'),
('IN', 'Jammu and Kashmir', 'JK'),
('IN', 'Uttar Pradesh', 'UP'),
('IN', 'Sikkim', 'SK'),
('IN', 'Chhattisgarh', 'CT'),
('IN', 'Puducherry', 'PY'),
('IN', 'Chandigarh', 'CH'),
('IN', 'Goa', 'GA'),
('IN', 'Telangana', 'TG'),
('IN', 'Gujarat', 'GJ'),
('IN', 'Rajasthan', 'RJ'),
('IN', 'Madhya Pradesh', 'MP'),
('IN', 'Odisha', 'OR'),
('IN', 'Tamil Nadu', 'TN'),
('IN', 'Andaman and Nicobar Islands', 'AN'),
('IN', 'Andhra Pradesh', 'AP'),
('IN', 'Tripura', 'TR'),
('IN', 'Arunachal Pradesh', 'AR'),
('IN', 'Karnataka', 'KA'),
('IN', 'Punjab', 'PB'),
('IN', 'Meghalaya', 'ML'),
('IN', 'Manipur', 'MN'),
('IN', 'Maharashtra', 'MH'),
('IN', 'Kerala', 'KL');
INSERT INTO
States (country_id, name, state_code)
VALUES
('AX', 'Åland Islands', 'AX');
INSERT INTO
States (country_id, name, state_code)
VALUES
('AZ', 'Şabran', 'SBN'),
('AZ', 'Oğuz', 'OGU'),
('AZ', 'Abşeron', 'ABS'),
('AZ', 'Quba', 'QBA'),
('AZ', 'Füzuli', 'FUZ'),
('AZ', 'Hacıqabul', 'HAC'),
('AZ', 'Şәmkir', 'SKR'),
('AZ', 'Astara', 'AST'),
('AZ', 'Zaqatala', 'ZAQ'),
('AZ', 'Qubadlı', 'QBI'),
('AZ', 'Xocalı', 'XCI'),
('AZ', 'Göygöl', 'GYG'),
('AZ', 'Bakı', 'BA'),
('AZ', 'Culfa', 'CUL'),
('AZ', 'Yevlax', 'YEV'),
('AZ', 'Beyləqan', 'BEY'),
('AZ', 'Masallı', 'MAS'),
('AZ', 'Sabirabad', 'SAB'),
('AZ', 'Goranboy', 'GOR'),
('AZ', 'Qax', 'QAX'),
('AZ', 'Bərdə', 'BAR'),
('AZ', 'Şahbuz', 'SAH'),
('AZ', 'Lerik', 'LER'),
('AZ', 'Şәki', 'SAK'),
('AZ', 'Salyan', 'SAL'),
('AZ', 'Ordubad', 'ORD'),
('AZ', 'Kürdəmir', 'KUR'),
('AZ', 'Göyçay', 'GOY'),
('AZ', 'Naftalan', 'NA'),
('AZ', 'Cəbrayıl', 'CAB'),
('AZ', 'Xocavәnd', 'XVD'),
('AZ', 'Laçın', 'LAC'),
('AZ', 'Qobustan', 'QOB'),
('AZ', 'Babək', 'BAB'),
('AZ', 'Yevlax', 'YE'),
('AZ', 'Balakən', 'BAL'),
('AZ', 'İmişli', 'IMI'),
('AZ', 'Cəlilabad', 'CAL'),
('AZ', 'Lәnkәran', 'LA'),
('AZ', 'Biləsuvar', 'BIL'),
('AZ', 'Şamaxı', 'SMI'),
('AZ', 'Siyәzәn', 'SIY'),
('AZ', 'Ağsu', 'AGU'),
('AZ', 'Şuşa', 'SUS'),
('AZ', 'Tәrtәr', 'TAR'),
('AZ', 'Ağdaş', 'AGS'),
('AZ', 'Ağdam', 'AGM'),
('AZ', 'Yardımlı', 'YAR'),
('AZ', 'Sumqayıt', 'SM'),
('AZ', 'Şәki', 'SA'),
('AZ', 'Lənkəran', 'LAN'),
('AZ', 'Gədəbəy', 'GAD'),
('AZ', 'Qazax', 'QAZ'),
('AZ', 'Gәncә', 'GA'),
('AZ', 'Ağstafa', 'AGA'),
('AZ', 'Saatlı', 'SAT'),
('AZ', 'Ağcabәdi', 'AGC'),
('AZ', 'Qusar', 'QUS'),
('AZ', 'Zәngilan', 'ZAN'),
('AZ', 'Şәrur', 'SAR'),
('AZ', 'Ucar', 'UCA'),
('AZ', 'Tovuz', 'TOV'),
('AZ', 'Qәbәlә', 'QAB'),
('AZ', 'Naxçıvan', 'NV'),
('AZ', 'İsmayıllı', 'ISM'),
('AZ', 'Şirvan', 'SR'),
('AZ', 'Mingәçevir', 'MI'),
('AZ', 'Neftçala', 'NEF'),
('AZ', 'Kəlbəcər', 'KAL'),
('AZ', 'Kǝngǝrli', 'KAN'),
('AZ', 'Naxçıvan', 'NX'),
('AZ', 'Xaçmaz', 'XAC'),
('AZ', 'Samux', 'SMX'),
('AZ', 'Xankәndi', 'XA'),
('AZ', 'Xızı', 'XIZ'),
('AZ', 'Daşkəsən', 'DAS'),
('AZ', 'Sәdәrәk', 'SAD'),
('AZ', 'Zәrdab', 'ZAR');
INSERT INTO
States (country_id, name, state_code)
VALUES
('IE', 'Port Láirge', 'WD'),
('IE', 'Tiobraid Árann', 'TA'),
('IE', 'Cill Mhantáin', 'WW'),
('IE', 'Carlow', 'CW'),
('IE', 'Connacht', 'C'),
('IE', '<NAME>', 'D'),
('IE', 'Gaillimh', 'G'),
('IE', 'An Mhumhain', 'M'),
('IE', 'Laighin', 'L'),
('IE', 'Ros Comáin', 'RN'),
('IE', '<NAME>', 'MO'),
('IE', 'Monaghan', 'MN'),
('IE', 'Ulaidh', 'U'),
('IE', 'An Mhí', 'MH'),
('IE', 'Corcaigh', 'CO'),
('IE', 'An Cabhán', 'CN'),
('IE', 'Cill Chainnigh', 'KK'),
('IE', '<NAME>', 'KE'),
('IE', 'Lo<NAME>', 'WX'),
('IE', 'Offaly', 'OY'),
('IE', 'Ciarraí', 'KY'),
('IE', 'An Clár', 'CE'),
('IE', 'An Iarmhí', 'WH'),
('IE', 'Sligeach', 'SO'),
('IE', 'Donegal', 'DL'),
('IE', 'Laois', 'LS'),
('IE', 'Leitrim', 'LM'),
('IE', 'Limerick', 'LK'),
('IE', 'Louth', 'LH'),
('IE', 'An Longfort', 'LD');
INSERT INTO
States (country_id, name, state_code)
VALUES
('ID', 'Jakarta Raya', 'JK'),
('ID', 'Sulawesi', 'SL'),
('ID', 'Jawa Timur', 'JI'),
('ID', 'Sumatera', 'SM'),
('ID', 'Jawa Barat', 'JB'),
('ID', 'Jambi', 'JA'),
('ID', 'Nusa Tenggara Timur', 'NT'),
('ID', 'Sulawesi Utara', 'SA'),
('ID', 'Sumatera Barat', 'SB'),
('ID', 'Lampung', 'LA'),
('ID', 'Yogyakarta', 'YO'),
('ID', 'Sulawesi Tengah', 'ST'),
('ID', 'Sumatera Utara', 'SU'),
('ID', 'Jawa', 'JW'),
('ID', 'Nusa Tenggara Barat', 'NB'),
('ID', 'Sulawesi Barat', 'SR'),
('ID', 'Jawa Tengah', 'JT'),
('ID', 'Maluku Utara', 'MU'),
('ID', 'Aceh', 'AC'),
('ID', 'Sumatera Selatan', 'SS'),
('ID', 'Nusa Tenggara', 'NU'),
('ID', 'Kalimantan Tengah', 'KT'),
('ID', 'Kalimantan Utara', 'KU'),
('ID', 'Sulawesi Tenggara', 'SG'),
('ID', 'Papua', 'PA'),
('ID', 'Kepulauan Riau', 'KR'),
('ID', 'Kalimantan Selatan', 'KS'),
('ID', 'Riau', 'RI'),
('ID', 'Papua Barat', 'PB'),
('ID', 'Gorontalo', 'GO'),
('ID', 'Maluku', 'MA'),
('ID', 'Kalimantan', 'KA'),
('ID', 'Kalimantan Barat', 'KB'),
('ID', 'Kalimantan Timur', 'KI'),
('ID', 'Maluku', 'ML'),
('ID', 'Sulawesi Selatan', 'SN'),
('ID', 'Banten', 'BT'),
('ID', 'Bangka Belitung', 'BB'),
('ID', 'Bali', 'BA'),
('ID', 'Bengkulu', 'BE'),
('ID', 'Papua', 'PP');
INSERT INTO
States (country_id, name, state_code)
VALUES
('UA', 'Ternopilska oblast', '61'),
('UA', 'Zakarpatska oblast', '21'),
('UA', 'Zaporizka oblast', '23'),
('UA', 'Ivano-Frankivska oblast', '26'),
('UA', 'Vinnytska oblast', '05'),
('UA', 'Lvivska oblast', '46'),
('UA', 'Luhanska oblast', '09'),
('UA', 'Khmelnytska oblast', '68'),
('UA', 'Avtonomna Respublika Krym', '43'),
('UA', 'Sevastopol', '40'),
('UA', 'Khersonska oblast', '65'),
('UA', 'Volynska oblast', '07'),
('UA', 'Mykolaivska oblast', '48'),
('UA', 'Kharkivska oblast', '63'),
('UA', 'Kirovohradska oblast', '35'),
('UA', 'Kyivska oblast', '32'),
('UA', 'Kyiv', '30'),
('UA', 'Chernivetska oblast', '77'),
('UA', 'Zhytomyrska oblast', '18'),
('UA', 'Cherkaska oblast', '71'),
('UA', 'Rivnenska oblast', '56'),
('UA', 'Odeska oblast', '51'),
('UA', 'Poltavska oblast', '53'),
('UA', 'Chernihivska oblast', '74'),
('UA', 'Dnipropetrovska oblast', '12'),
('UA', 'Sumska oblast', '59'),
('UA', 'Donetska oblast', '14');
INSERT INTO
States (country_id, name, state_code)
VALUES
('QA', 'Ash Shamāl', 'MS'),
('QA', 'Al Khawr wa adh Dhakhīrah', 'KH'),
('QA', 'Az̧ Z̧a‘āyin', 'ZA'),
('QA', 'Ar Rayyān', 'RA'),
('QA', 'Al Wakrah', 'WA'),
('QA', 'Umm Şalāl', 'US'),
('QA', '<NAME>', 'DA');
INSERT INTO
States (country_id, name, state_code)
VALUES
('MZ', 'Maputo', 'MPM'),
('MZ', 'Inhambane', 'I'),
('MZ', 'Nampula', 'N'),
('MZ', 'Maputo', 'L'),
('MZ', 'Manica', 'B'),
('MZ', 'Niassa', 'A'),
('MZ', 'Gaza', 'G'),
('MZ', 'Sofala', 'S'),
('MZ', 'Cabo Delgado', 'P'),
('MZ', 'Zambézia', 'Q'),
('MZ', 'Tete', 'T');
-- Schools
ALTER TABLE `Schools`
DROP KEY `state_id`,
DROP FOREIGN KEY `state_id`;
ALTER TABLE `Schools`
ADD COLUMN `state_code` CHAR(3) NULL AFTER `country_id`;
UPDATE `Schools` sc
LEFT JOIN `States` st
ON st.`state_id` = sc.`state_id`
SET
sc.`country_id` = st.`country_id`, sc.`state_code` = st.`state_code`;
ALTER TABLE `Schools`
DROP COLUMN `state_id`;
ALTER TABLE `Schools`
CHANGE COLUMN `state_code` `state_id` char(3) DEFAULT NULL;
-- Users
ALTER TABLE `Users`
DROP KEY `state_id`,
DROP FOREIGN KEY `fk_state_id`;
ALTER TABLE `Users`
ADD COLUMN `state_code` CHAR(3) NULL AFTER `country_id`;
UPDATE `Users` u
LEFT JOIN `States` st
ON st.`state_id` = u.`state_id`
SET
u.`country_id` = st.`country_id`, u.`state_code` = st.`state_code`;
ALTER TABLE `Users`
DROP COLUMN `state_id`;
ALTER TABLE `Users`
CHANGE COLUMN `state_code` `state_id` char(3) DEFAULT NULL;
-- Primary keys
ALTER TABLE `States`
DROP PRIMARY KEY,
DROP COLUMN `state_id`;
ALTER TABLE `States`
CHANGE COLUMN `state_code` `state_id` char(3) NOT NULL;
ALTER TABLE `States`
ADD PRIMARY KEY(`country_id`, `state_id`);
ALTER TABLE `Schools`
ADD KEY `state_id` (`country_id`,`state_id`),
ADD CONSTRAINT `fk_ss_state_id` FOREIGN KEY (`country_id`,`state_id`) REFERENCES `States` (`country_id`,`state_id`) ON DELETE NO ACTION ON UPDATE NO ACTION;
ALTER TABLE `Users`
ADD KEY `state_id` (`country_id`,`state_id`),
ADD CONSTRAINT `fk_us_state_id` FOREIGN KEY (`country_id`,`state_id`) REFERENCES `States` (`country_id`,`state_id`) ON DELETE NO ACTION ON UPDATE NO ACTION;
|
<reponame>opengauss-mirror/Yat<filename>openGaussBase/testcase/KEYWORDS/nominvalue/Opengauss_Function_Keyword_Nominvalue_Case0021.sql<gh_stars>0
-- @testpoint: opengauss关键字nominvalue(非保留),作为函数名,部分测试点合理报错
--关键字不带引号-成功
drop function if exists nominvalue;
create function nominvalue(i integer)
returns integer
as $$
begin
return i+1;
end;
$$ language plpgsql;
/
--关键字带双引号-成功
drop function if exists "nominvalue";
create function "nominvalue"(i integer)
returns integer
as $$
begin
return i+1;
end;
$$ language plpgsql;
/
--关键字带单引号-合理报错
drop function if exists 'nominvalue';
create function 'nominvalue'(i integer)
returns integer
as $$
begin
return i+1;
end;
$$ language plpgsql;
/
--关键字带反引号-合理报错
drop function if exists `nominvalue`;
create function `nominvalue`(i integer)
returns integer
as $$
begin
return i+1;
end;
$$ language plpgsql;
/
--清理环境
drop function if exists nominvalue(integer);
drop function if exists "nominvalue"(integer); |
<reponame>htookhantlinn/crew-management-php
-- phpMyAdmin SQL Dump
-- version 5.1.1
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Generation Time: Dec 04, 2021 at 10:35 AM
-- Server version: 10.4.20-MariaDB
-- PHP Version: 8.0.9
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: `crew_db`
--
-- --------------------------------------------------------
--
-- Table structure for table `certificate`
--
CREATE TABLE `certificate` (
`id` int(11) NOT NULL,
`name` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `certificate`
--
INSERT INTO `certificate` (`id`, `name`) VALUES
(1, 'GMDSS ENDORSEMENT-GOC'),
(4, 'GMDSS GOC FLAG STATE'),
(5, 'BASE SAFETY TRAINING'),
(12, 'ARPA SIMULATOR'),
(13, 'RADAR OBSERVER, PLOTTING AND SIMULATOR'),
(18, 'TEST ABC');
-- --------------------------------------------------------
--
-- Table structure for table `city`
--
CREATE TABLE `city` (
`id` int(11) NOT NULL,
`name` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `city`
--
INSERT INTO `city` (`id`, `name`) VALUES
(27, 'Yangon'),
(28, 'Mandalay'),
(29, 'Bago');
-- --------------------------------------------------------
--
-- Table structure for table `crew`
--
CREATE TABLE `crew` (
`id` int(11) NOT NULL,
`firstname` varchar(255) NOT NULL,
`middlename` varchar(255) NOT NULL,
`lastname` varchar(255) NOT NULL,
`father_name` varchar(255) NOT NULL,
`mother_name` varchar(255) NOT NULL,
`nationality` varchar(255) NOT NULL,
`birthdate` varchar(255) NOT NULL,
`rank` varchar(255) NOT NULL,
`vessel_type` int(11) NOT NULL,
`final_school` varchar(255) NOT NULL,
`martial_status` varchar(255) NOT NULL,
`waistline` varchar(255) NOT NULL,
`uniform_size` varchar(255) NOT NULL,
`blood_type` varchar(255) NOT NULL,
`safeshoe` varchar(255) NOT NULL,
`health_status` varchar(255) NOT NULL,
`bank_info` varchar(255) NOT NULL,
`tel1` varchar(255) NOT NULL,
`tel2` varchar(255) NOT NULL,
`address` varchar(255) NOT NULL,
`city` varchar(255) NOT NULL,
`english_level` varchar(255) NOT NULL,
`application_date` varchar(255) NOT NULL,
`passportno` varchar(255) NOT NULL,
`passportdate` varchar(255) NOT NULL,
`passportexpiredate` varchar(255) NOT NULL,
`sbookno` varchar(255) NOT NULL,
`sbookdate` varchar(255) NOT NULL,
`sbookexpire` varchar(255) NOT NULL,
`lincece` varchar(255) NOT NULL,
`licencedate` varchar(255) NOT NULL,
`licen_expire` varchar(255) NOT NULL,
`image` longblob DEFAULT NULL,
`file_destination` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `crew`
--
INSERT INTO `crew` (`id`, `firstname`, `middlename`, `lastname`, `father_name`, `mother_name`, `nationality`, `birthdate`, `rank`, `vessel_type`, `final_school`, `martial_status`, `waistline`, `uniform_size`, `blood_type`, `safeshoe`, `health_status`, `bank_info`, `tel1`, `tel2`, `address`, `city`, `english_level`, `application_date`, `passportno`, `passportdate`, `passportexpiredate`, `sbookno`, `sbookdate`, `sbookexpire`, `lincece`, `licencedate`, `licen_expire`, `image`, `file_destination`) VALUES
(54, 'Htoo', 'Khant', 'Linn', '<NAME>', '<NAME>', 'Khant', '08/18/2001', 'Student', 6, 'UCSY', 'Single', '40', 'XS', 'A', '50', 'Good', 'This is bank info', '09260965397', '09260965397', '11th street, Lanmadaw, Yangon', 'Yangon', 'Intermediate', '11/06/2021', '456358', '08/26/2022', '03/28/2024', '22222', '11/27/2021', '05/22/2023', '969696', '11/18/2021', '06/11/2024', 0xffd8ffe000104a46494600010100000100010000ffdb004300090607080706090807080a0a090b0d160f0d0c0c0d1b14151016201d2222201d1f1f2428342c242631271f1f2d3d2d3135373a3a3a232b3f443f384334393a37ffdb0043010a0a0a0d0c0d1a0f0f1a37251f253737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737ffc200110801a501a503012200021101031101ffc4001b00010002030101000000000000000000000003040102050607ffc4001801010101010100000000000000000000000001020304ffda000c03010002100310000001f0c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000def4bcf9fa92675ccdba65e663aa8e345dbd6ce0bb35ece72cd7b9c0a0000000000000000000000000005974f3ac58ce71bc985df1aec6adf246df06bac82bc5735b3974fbb0dcf117e8eb1814000000000000000000000037d2ecb6a7877c749a48378951e564c632338c8db5c998e4c1a676c188f710d6bd159c3d3adccdf3d0580000000000000000000019e951bd9d6f9d34ceac6f5642c6d0ef2cbbc3b1bb42c99d326ec60df316c674df431ae7448eb598ece42cd6df30a00000000000000000002cdbad6b1bc55b77e5e2efefb9f9d797937a9acdbdabec4fb41b2cd9876897118df6884b88f06fa6bad674cea9a737a7cfd6741ac8000000000000000000176c41373e9bfb5e07a4c6e496293376e67564af09c9fa9d7d67e6bbfabe1d94b3062cb28724c88488c6faeb836c6b83352cd5b9886f20000000000000000002fc62583bd8e9dcb70d4e7d3abbf06f274a487659f687725c6b9b21e3f7b0be1f99f4a893e60fa2732cf1eef51b39c96ad92e63dab35a7ab7381ac800000000000000000763df799ed70efe3fd469cf4ef678d21d5a3bcebcbee53e59e9f7a3625b1b41925c47824c47a9269a68661da396a794f61e6759e76258b78d2b491ef0160000000000000000007d06496bf9fd11f0fad26f16658ec9c6abeb383ac54b9c6973bed5de6ddc6ec6d0227c5786aeb85ad9dec70b076e2e75d974f33e8bcb591c3b41d39e9837800000000000000000003e9f4b6d3cde8e776f8fdde988fa5acf679ca9e8389ac72fa125a5e2db8fb58df3ade7919bd2879fa9d19b8eaeee78f6a5db4b9066c1e57d179bde715f6d7af20b00000000000000000017697bdceacbb9c9e3da87475e46b1eb248655db4db256e7f57ca6b31f6f1d0e7d395cbeef9cb25ef5ddbaf1e173dad57bf0deceb9563a7e565b3cbeb5be7d3ca41dbe276e01a8000000000000000001d9fa578cf65c7b73f4d2ce35154b3aad3de6b5bc415eded672eee6d6756658f5960f3be8bcfeb3ea6ce926b3c4afe82338d726ac69e57b9c9967971173e9e66a1e8f30500000000000000000327baf51cbb7c3bd6df1bcb5f325396c43b8c58d2f5946d55e7cbe92ad1af65886dce72bd1f98d7a73f4b5ea6d9d6608b8f669634e86373786ee796e9cc3a7300000000000000000059ad6a3ea552dc5c3d114f8d88b99d5e54b666ad29cd935f3da9efab78beb166c59b79b3e62d6caf0dcac53ad7165049433aaf170f5edc738378000000000000000000013c08facc9cdec70f454c6706285ba91159e0f5d60db7a4b62fd0b565957d62ce2aea5ad2b464f5b4af0f2fbd5efc437800000000000000000000003ddfa7f11ecf8778f5b7cb974d67825f2bd5df8dd78fa1c736df2eb3ed0966d23d4934d23964d2bd6de25f3dd7d3b71e2bb5aeb3c75ca700a00000000000000000003a32facd662ee72aff001edd0825db9f4e647660960e0fa1a9acf9db10ebe9f374f34ae797d59c2bcaafa67d5e5c36e96f34bad6b3738ce76b34a7d0d4f21c7fa2f2f1bf1c9e0c6c00000000000000004d0ca7ba9eadbe9cf3be22e5d7b1353b3c3bc756ed72ac562397914fad8f579b8b63a64e7d1f451e75c3bbd2b1db8c126d1598425b1ac36b8758f699c7ac315bd7378be5fddf99efcb86350000000000000001dbe27b2c6ba2df7e5d10e77f579e7b9c7bfe4f55ed23daa0d25c4bce83a7ced61355dbd3e7edf26f4159671d39e2b58a51ae74b3e6f44b269bf0ebb670958ce0d38fd88753e7e9a1f4700a000000000000027f73e63d571e926faefcba6229f4e98adb6d5fb73bf2f26c79fd1d1daad93356f524a91cfac9adaa7b7a38da633e8e1ad2bb5160b556d783d72efa6f2ed9c6d2e35df5238e58acf2bc7f4be6bbf20de4000000000000487a9ec4167cddf6db19cdceb9d483198fdbe557b38e5d77bfc5bdc7b7539fbc28c6526ba49822b11c7d316e9cba7abcf56d52b9e2f54d24524bbedae65ce338348a58ace5f90f6fe23b730e9800000000000075397e9717bb369270ed9cb32e23de3b228648bd1c77de3cf4c41b432793d36f6af244b9d36320c63610eb36ba9ccbda662cc91492efb6bb4b9c646914b1555f13edfc675e75c75e6000000000000f71e22fe35eda4f0f9e7bf72f0c3dbc5e3307ad87cb63af3f5bb790cf6e7e921e143c7a7ab97c8edcf7ec24f1993d9ede2b27b4cf8a4bed31e307b187ca62cf5d63c46c7b8dbc3665f72f0c3dbc5e3753d578f929ef1a0e9900000000000000000000000000000000000000000000003fffc4002f100002020201020602020103050000000001020003041112101405132021314022323050232433341541424380ffda0008010100010502ff00e5600982a633c89e409e409e4434b435b0feb154b44a40812709c6719a9c6719c615dc34ac34b0846bfa7aebdc55817d5af471856158d48319197fa4a9371441fcc56111e9846bfa151c8a883a0fe7223a068ca54fdfa8680ebbfa044750c19789fba3dc8ebb9bfa061962f21f76bfdba6e6e6e6e6ff009cf4b97eed5d0c306e0680cdcdcdcdff00330d8fb95fc0866162f9ede426aff0f4796e25d4ce53737373737373737d373737ea7fdbeda7c0814bbd482b4104e20cbfc3eab65de1b7571b9240d373737fc967cfdb5f813c3abdb0ea3ad942592ef09ada5be1d7d7183a4e5373737fc367cfdb5f84059a9415a0fe17a51e5de194bcb7c2dd63e35e93644e537373737e87f9fb4d8790950f8f0faa096e50ad8674af2eb79bfe12a0c7c74696787d463f8688d82c23e3d8be93f3f67c36b06ca88b11f1cf78800027110a8966323457b718d762d8bb9bf5ee6e18c047ac4c9af8ddae8df1f6bc32bff498a783dc543ae5309df6a0cf1172eb681d5a3688fcb19ebb03aee6e6e6e6e6e6e6e6fa186667fbe7a3fdbf0f5d609f6b08045486c7aaa4ac31412c388668417ba10eb60a53cb80cdcdcdcdcdfa4c32ff007b8c3f73146b0dff006c86e3561d7c6b7e5baf0ab96bd58f5355919888f0af094d9cc0e9b9b8f684072d8ce592d38644ff005292bcadc26318c7de31fb98ff00f15ff7cb87f01533720373c401f32bc9baba824a84d9a2fee5e2e62181c302631103083add4ad82a0ca961d2c3f77c3ece7887f7caf6b1d76c8ba132683616a8a9159315257f9e67211d2bb25953504dcf64f2da6960533ccbab95e5234f98d320ff008a31fb9898cf95662f87f6ead5796731395386de657d5955e79333dc534e2d475e54642265bfe38f53195e0d625a7ccbf3b1571dab76486baef53e663b0b43ccc3fe14a1ec16d4d537dbf07a5aaa394bcfe5ff008d4c712d47571d352eb569401b32ea0726d4b2647be45358ad1c9e241db02c552227096d7c9205f310684f126dfdbf09a7cdca1ec2e6f7e3cef71a8a14cedeea48cf6acffd4a98fe27b9db5d7b7ef2b50a0c613206b36a0da8f8adbed6c8282238531fd85236622ee6559e65df6bc097f13f16fbba7b5f79fcdd3716c2b05c0c231ccf39567e56441ae84cdecf887b5b5306afa185a1332ece34d4348abb99f67918ff006fc15758dff661fe6ffdf7fec0c3a33cb1053b8b5012d6e32bd4f6969f6a4ece657cc78764f0e84c26130996bf9f681b28bc572ef39177da0367071fc9a1dbcb967cbfb5993f00f5adf704caa9b8d791a9e78965fb98d5f15b9392d948b82665b8ec326b785c4b2e458f6bdf15428a5278a650e3f6f186f22af8c88c374d839259f9d6a62f4cfb3c898d9eae12e5797e3ab46c7225347b81a12dae07d87c4a5a76804f2104332323ca3678892a4ecfdbc5ff009157c5e22fbd35fbd6b1bf1b161f871e60b686a9abb7529bacda3ee069ca729b8ea0cd958cd18cbed15a33166fbb41e37527dac1ed47eabf8da7daccb1a287a3fe0decc3c8ad8d495d53da6e729ca7285a1684cb1c22db61b5befe0bf3a7e40fc2cb8476e6b980db462de2c5063fb8e3ee9ed3737394e5394e50b42658e105f71b5bfa0f097de32cb97639f35238b1f6365468caaecd8df5dcdcdcdcdcdcdcbae158b6d6b0ff0043e0adf8a43f0471b1bdc4c9af9282444b6069b9b9b9b9b9b8d60119c9e8515a0c45687c3ec8f8d727dec5c56b8d15ad110c12c59f10c3326be2d11f5373737371ac8589eb5d65ca508b3535352dc6aec97e0b27dbc3c5f362ae837c5662c31c75b939291a311f5d6c6ea0132ac680051e93a99388974b6a7a5bebd214d8806a1f8a4fb2f47108e8d2ca8316a4cf2da26c09c4cf2ccab1898952a7a79cd319e5cf2d635425e9ed7566a7fad52799620e0074afd994c10c61d0c7104d415f36b31bcb0144500f533719c240acd0003d2e36335349f5bc32bdb09faf47f664680f430c32df69c8300656756667ebf3e8b0cdf15ad60f5199f5f2a7eb61d7c291d3f5846c56d15a0337d597716be1088a4ef21c59146bd167bb7cb883d6e362e4f2ecfa94af3b5475d6e7c17115e069ca6fa6a59f33516cf4b7ee907f019e24bab3ea786a6dc7a186c6e3240f0345317a5bfb74222b159f3d5e27c0f59867892eeafa9809c681e93ec632f29eea51a299b8c767d1eeb158374ba241fc06660dd1f4eb5e6e83407a5fab8dc07451e337b7a888af2efd2b820f59968dafd3f0f4e578f498dd7e444dcdff0001137a89ec560f598f2cf67fa5e189aac7a4c3e8e6090d01fe2648b07acc7991fef7d2c64e150f4987d1724530180ff11114facc7995feff00d11ec7bdc89df64ceff2677f953bfc99dfe4cefb22779913bbbe7797cef32277b913b8b677574eeef9de5f3bdc89dee44efb2277d933bec99df64cefb2677d913bdc89de5f3bec99dfe4ceff002677f953bfca9dfe4cefb26779798cc5dbfbefffc4002411000201020603010101000000000000000001021112031020213031404151225060ffda0008010301013f01ff003942d2d2d2d2df152e07129e0ae36bc05e5acade27e02ce8535be759574d0b4b5e6f9a2b636897236675ae5d64f9912dd8dd0ad44f454ae52f011ed8d54684451ba2ef85ccb96521f345558897dcd9d12e86f24cada52bb92547cd1eb3b7e16b12a652e8a169416f21ba73ae0eb2a915426fd732d3d1b68b51b21cdf953957c15d67758c4ebd687348788d95f01b309fe73946a84da646571274439b7957352e6945a305fad18aa9230e54918d2dcae71c2fa28451444a34eb923d928d50bf12d128dc38b8b311ef9e1c7de87bf24329c6e461e27a7a6787f335a65df1acf1152460bd32826528f7d53e28f7a31484a8cae9693d53e28ba17a2f45e89bb9169174ecbcbd17a2f45e8bd17a2f45e8bd1275fe0fffc400251100010303050101010003000000000000010002110310121320213031404151505260ffda0008010201013f01ff009c9592952a54fca4f44fc47ac1f80fd66d9750f81d7953bc779368db2b2590b8ee71e572e5895c85eef6fb61dc53780809510a276428b37e02bf1030814538ae0ac7fab10b1366a1dce30114dfe5c2f537d40588519298e134c8ee77b7cbfaa42266cdf54ac94a3c35013de7a3db427194c1fbdc76812a0ecc8ae4a0c1f2ced6b63e13edf1cc2223dd8184a14c0507e00d55443aed741440704e69694d191841805a2e5bdcd70705587eeca465aaa365aa8b785177568f11a8e2b2298fcbdec79e135c5a6518a8de3635c5be26bc382a6205eabff36031d950f36a6fc4aa94e791b5957fdae76b3ceb37a465aab8e76b2a16a90e1c6ea7d4ff0036503f8aa3721b9ae2df11db4fa9c095a656995a65531895904f6c9e16056995a656995a656995a656995a656994d6c7f81fffc4003a1000010301020d0205030207000000000001000211211031031220223032334041516171a1508113527291a204234262b160638092c1d1f0ffda0008010100063f02ff004ad45c96b2bcabcabd5e15de99455ae86a17254aaafa3c9bb4d554a2a8f449376e59aabe831ba5557d0277582a3fc573e8331ea98cfd40a0054a1e615d239ee677e0d17941ade16d54c415999c167b48f4e3843c2832ea16666acdce59ed23d2835b7941a3868aa14811d9663a7baab0fb2afa27c576088659f11ded662c495a9e5569df47500ad58eca84ad6f0ae9edbf9c2384865ddd7747022e9f0a05d65cae0a99a543aad52dd2d11dfa7e628b53f090aad0b53cace6795c5669054158cdab148d2fb6fd83ecbd919b962859a3dd6742fe3ecbf6b0b3d1ca1ebfe118d2bcefd82fa0587ad163455c83307ac54e1bf71dd54e28ec02f890d0de0141ce1c8ac7c1dd95257edb1725afe5735184a1b49e7bf60fe91631a8298b03782f86d223fb59dd380af45b13f65ff4a5a66caae191d543d13d37f674108ac1142dc66deaa15cbb273b9599cd0563608e6f10a1a155c3ecb6ab3308d3e1544855a2a58eedbf62b3dca8f8ae2af953f2a0ee2322a15f450284dc81e2eb639a0c68cebcafdccf3d6e43f4f8086378984dc538d3cd52a3929b8f457cb5755dca9b82876f92e6905c66c08aff002dca5a72319e51c36129836ffe8536b5aa9ee8a9e2a5c493d6c69f98222c18eaab07efbd82e121b5b077401508b30824158dfa738cdf978a8c3b20f5a2b8a8c0e0e4af89fab740f950660c4306433d956c3172bbca84d03f8a2a4d9289170a0dedeeeb1634755ec877521555549c0e0ffdab3001d956e54c86bd35c2e2328f5a2ef6628d67537c9e66c6f74d43be88a85f030b422eca81aa2c928bb870dee026b2662c69ea9a7ae5cb54157a817dbf2e105c57c3fd437dd51caf0af50ca3551495f0587eadf307f50b5bd94f35390d7b3dd54abd4e4cb562e104f752d96fd256d5eab2e3fd5601125460c41eaa4ef9828f985adeca392735116b83966dcaf21669c655d0e322e379df987faad737aa8e687d9036cf05cd55a166344e8719d7293f6f4063b98b3bd1485213b12fe0baf11a59715d380f416f4b7af15dd7428b9a601e1a4e654bbede84f6f236cdb4bc2a692a153195085567db7e9346f34030465c8b8d90726993cf2339aa7079c3971def1dfabfdd53410a0d906eb605b452e54cb9b9dcd62bc6f0d0fd554d2c1c8ceca80b92a936524762b170a319bcf9283ec79eeed6f35d2d23441aa6ce993d54bfeca995f49a6ee5fed674b01cb958c2c6f74deea326789526fd018ddda2de8a340e6f0bed01992068dcddd5adeb930b1868642cec9f6d18773dd4bf965cb7455bb20f6d1cf23ba8eb5d075507434b7db46fedba35bcceeb0e47467749e5bb41b9468dddf732ee67454de1fdf736b7a68f1c7beeefdca56d3c05b4f016d3f10b69f885b4fc42da7e216d3c05afe02d7f016bf80b5fc05b4f016b785afe16bf85afe02da780b69e02da780b69e02da780b69e02da780b69e02da780b5fc05b4f016d3f10b69f885b4fc42da7e216d3f10b69e02d7f01633aff5ff00ffc4002a1000020102040505010101010000000000000111213110415161204071d1f08191a1b1c150e1f180ffda0008010100013f21ff00cacc211be868dd42d7f0c511a64fec64985c9fd3f98fe8f53548a50942108e088d065b8bb27d472d22f0418d08d3dff8ff001d2d4a3094214ae4e849286c89c11840d306750928af3c8d04d7f893fd22d70208b90409703208c1a231143ad2f418d090ff00831a10942c138249c27810c622063582b23dc44bddfc0df4f0262621227c324924103c5ac600e91cf240b52844922082626264924f0493840c9c44eee43a387ceaccb410f0a28208264938c898d922648c63c0c81c73bf3ab46c42509a651a91ac632820b013249246c9249246c6c6c64dae76de0b454154b6ac548122a280386dedc2aa1dc4571809e00d923631891ce56f0dc4c845b39311a308535b844cbe83311f1d43016324924924924927067d7ce5be83196ef7181086114771142d930e6db134e09b0c63a8a1158c92492492491b2c73960a8c321160f4c0842626264e0d27742085bea89092dc7c1642465259d436615a7bf13249e7155708a41499a53d2e3503d4aaae93d35c2d88e81b9d21f4337091a94262626492492332615fba22cebd48156e38ce9ef08e608244f063cb735a81415044ae9051235f084a4c2592c33b9693d06eeef42b4bb8b0d9ac3a82082649249248c30c31743da089c44d451c1a1b9bf5d5fe7e1205ae880a9d731a5474168022e20f1b1942be93f47c3a315a4ca63cf00bcfa3105c4030c3630e54fd1858d973688b9cbdd8f596a14cb2caa2753cdbd110a4ce6d7620ad7a8f6b56b4fd12d885bf0791001fae7ea3baba77614a8ce1e0ae1f492318c38dd5207186e5cf3713f08c3dc8512d0acfa643ba89f844619f07d87a8ab28123bae9fd5f41894c2322c6fea2a75757582703c335bc31fc9e1c0dc13565a75912d16f6213ea12366573957854c09b7a84165d114749598c59918cb148c1a21c57a306ba4ec1287746e12efeebb172f76920c536c06327a96298691104c223599d05636d998dc8f0875e7135f595e941e7ae56169fd4471098909095034510f31c13116819f918e4927f8422fac6b98f8eb4ab1d7fd18516b02bca6b77c8ed3f70cdcb6ec15d7a972117af744a4964d6a86237f46123e728cd25566489d4957b243aad4cca2d55a7d3327a72886211224f98d1f054d0f84fd14dc9e9916dcb0912e709e49aa648513e432155848484532197991566d462195b9434455c67a8ab4d040cb4111934ccd913ef54f5e72c9c03d048e967b932b71fc42fb86c2b30b08106f8895b72a60a8b5f1725634c8705815c54cc7d88c914bab6ac91ad08856d4a64dcc93495df41ad95504bfcd134130f30e548b03b3244da2217e39b4420eed72200f516812d810d8b77ac429724c6cbab909eb98b0eed2aee28a7e91b5eddafc2120ea755f61ec4a9214d21535868de7e88d9caca48a4345194f25481dbec2c4eaccb2a0c9ad112a8981c46e436c2bf3b1cdf5dafb3fee0758294bbb1ec637c94f09a113436906f368408e882bcbc05a42893201111aabaa7ea33110318d855a4dc348ac750d7172396e99f3911ab7f9f83151131d57f42c3b029750d9666a0ab32042a0f044c04263d5c4e6ab3d19aee44f2d86f83e894b1c114042ad691945d176e6dca44b6e109afc9565c4cad07506d0626d216a7a6021ca14cd668591c8931a1a058a0106fb10337772c372372aeccf6649134a8b574798be55d18cf784adb9742615aac817a9ea29239cae7934d39c89f94e0b3864d36bf820b424a5ccd7ce214664d4df489940a5a59d0a0a246141f5b14843657ce17044d124a70d60ec7e01b53bd348e92854425748ab5b1313a99063192db96f9c46f39fb61ca991db43d8eb4f05bea217de06c24026a73e81976e10f2a85a221d02b030ced2c4dc3b122c1726abc96a391964f3d55e213ec994907a448791acb1ea57f563dad2513a0fb85c4f2c857069a81aed21b628c47c02da19087b77d1fc0630ba58c2156c4c5a8aa842aff00d3349b9ea42d3b27a04e84271a29d3096030c30f10b6c448ada8bfc120f9c90d28650b90da51372b790beea128b53b90b990a686214065861865968a3d0448ca65917f0ae8ccf7ff008350590e72d9dc813b415fd88f6585ba3a325e08c30ce612f62c94585a1623a65b58813d1327646b5ab9eaa8f9dd0861477dca4548916051651e1c3c2f0a6a262786444e2a2e6f1a7953512554b7122b2c0d58a6937ae62f6e6034d38747cd3d92232a0a5248484bf4a9490c2ca2a8d0d0b730c65c587904631fcd8bd8418e2c90848582160dac040d28aa214ca793c9f30c6219d451558212596c4e837003425098e6c4ec3d213420dc21bdcb426e45568458954636264c5cbaebd11b6f9155d0f49bead8de602474b2e350d9595f41cbb10e62022cf81a560dd73098ab01a168541a68ee34d05670c827d60d10d2d460c71c988356b2456485a0510892db818972648a6b51b3e5e47ca810be7fe44e4f8cb2961c8b2254412145883a5b9251dc99ed1a908943d449250b06408cb34910bbef9e05c0f039dbd57979b2f12f0417efb6c4d8828eeb804eac688106fc380d56184d26fa0b265336887be2cd8135339e58cb818c90468aa74e9caeff0055d08908434487614cdf4189fbb8fa0b1163d234383b0c81c53bf032e3d0555c285c0c78212c91caced6484288585a2eac2923ac68393877e0d22fed83448512bfa09a494e560ca4ad6042162f12039593d77c22c59ef49109a6ae0052a24907ae30342927d68b251e8c6515d590d45850858b1e08e757290a6811a9658162cb13249141d13c09604f040d198a8cd81ea2cb964353190b81e0886ab94ac6cb2288583c1521310ece6875a32a6d813e2689092dcfa153a1e221703c36890b46e4e45ff2c0b1781f043955bbecaa57a12602627c5034549571b021703c36091d6f27b0580b17c0a110cfa2e061313e281a33d5c9e8e8c42e0786c3e77e724cd097554245bc5d0f2f68f1f60f2f60f3f60f1f60f17686ef37d1e5ed1e3ed1e5ed1e0ed1e14123fc0f0af63c7da3c1da3cdda3c5da3c3da3c3da3c3da3c3da3c5da3cdda1b7cdf4787b478fb079fb0797b0797b079fb04de6fa1df79ba0f8c96bbfeff00ffda000c0301000200030000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022e7220ee3c000000000000000000000000000062f89ecb2a917470000000000000000000000000bcfee392986e9a22100000000000000000000003d189cebbaa586da35eb000000000000000000000649c79168aef9c733350000000000000000000000202b99535f5cfad2baf00000000000000000000b379efdf9d102685ee43400000000000000000008b35f52cd9ba969895689000000000000000000025c447ce56b3658496950000000000000000000005e9767d14fe73423d16000000000000000000004107f6086ca2fe8e44f8300000000000000000002eeda481146278629b648c000000000000000000466979a566471c4a1b0c000000000000000000004e9f6a29bf5e599e72e20000000000000000000003f919d22d19aef0b80000000000000000000000002e86e3ef76d5ac68e3c000000000000000000001aaa6782979c19e327c7580000000000000000000493fedf884f92d7b2e5a3a400000000000000005602bb57a8d86353de946ca828000000000000000dea29764ab8aaada7d1286162000000000000004e367b56bd1097520f1b4618d2000000000000001e1e99ea2c0e865a68ec58923200000000000000008822997014a1a6ef9594a0b68c000000000000000000000000000000000000000000000003ffc400221101000202020203010101000000000000010011213110302041405161715060ffda0008010301013f10ff009c1309a4a44c5444dfc4bf2c0f2a81147c116c3a52e51f00e38b97d097129efd205b51fa444dcb972fc2f83efbc8717ca58b26a5cbf0d7b817505b514251f14b1fa70226f8d7baa9bd93f7830cff001d23cf76840090712536229fa42ab1cd3d4fe208ea6b168befd25c8f28812e371130cbdd9267a5cfc21a9c402ee6e456f76120ac414f216d1b814a23a715c1a975a96619758d4f7a580771ae6d76a9fac1d39aab28cadc147e401716db7b8501e3b811a71338ba82311a32ca79dcbda776c4f7c1c2ab3a976c32de6cf5006e296bbc6997c6a089641c479a9a9a66be0bb30e154ba600b5e3fb9d4ac11efaf04b3962a5e8842c8373376c5a8db8b9f676d5e2234cdd0c38c87dca0fd96023c2a239c27a48fd52dde9d86e02a65f3f810cc10fa80dce08616f014a895d628be3fb928e7620e1986f890515e26bac28ae6c22d23c3ce77dc5d50788c9d42fc074cddea14f1369815e3a1d43b78101412d1c5453a8002a118ff07fffc40023110100020202030003000300000000000001001121311030204161405171506081ffda0008010201013f10ff005c4118bcbc1c0c11fc4a30740c823f82a8ea1a967e03cf15d2620d9dfb45a2e1fb10475d2fbd8adae4640cdf96ddca1b94101658f1193eb80475c6fdd64d689f3890c7f5d20c776cc4ab17265b4623e18dde79b7b9fd444dc39816f7ed2b18b8405957100724ad5898ed53e91dc662b553560aeeca4cb3159c9516ea2dad82cc132ee55ee5192546773d6940bdcef91faae7ca2f2864b4bc767d88aa0514772b57c74c5859998ccdca487b3825bc689596eed19eb878018dc48c900e40f7152a082fbd2c9f38dca4698352cf3737379dfe09a51e0169b222a1cdcfe7cd4ef89137df7659ff00639cd4ac32a0c5a135640b8538419fa625765d665e0988823c609f52f3e4a5b0e1750f0ce7b681b76ca15b1d9552561c0b5ca970a8f712978632d7c195906cbebb29c27c98ab9dd4146c97b5c18ed57c55f55c456df34bf20013dc18bce33642e61f1584ea54fc364614d92bc50b8579f1d9ea368f0f16e7882ee940a9fdf8dddbfe07ffc4002a1001000201030303040301010100000000010011213141511061718191a140b1c1d120e1f050f180ffda0008010100013f10ff00e56bd37b2e1d69e4fea37e23fbc29cbbdaa3b3f0fea6df79b41388ef63336a39cbed11144a4d47fe5d22e0d5602513e16c4400c340273ca21db39c8b3107682d21942f65c7eef766cf997891db0cec62057fc7721a2f27f4800106804c80883021ca10e08a81731a4225d48cda01a4060b6c971051c1a9338dd8c9ff001280446a6e838b8060bd0544815acb20ca32ae9302637976933849a4c68823b30f7c91c3fa8dda1b27fc1731a355e0800003408aa1688a88b8c0c60b9702e09a65efa30ccc896cdf254944d06a4725e3627fc0ce397d22afe1e3d20dcae9708250ca331984484074974501e1dc627f45e4fae707754200684c21d656f5121e88c184c2179863498b1a4570c64515ca8140a4693eb73ad9734c55103573bdfc68496060c230c0867d1655c51c5d35258c3cbeb7c89a8667448cccb0a728547ace5659bcef7503a12483a120965fe1d1405f731e62534fd61aef5bd38c29d22fb2f129828a0086bc7c297cf31b01e69fb92b4281a470909dfa041041d07aa61e85e81452b868b7eff582bc7354012c7ea42caaa6757a94c28f698e3b7865a7ab4e0fdfa45ac46b0c5f9d20bbc07784107f1fb2cb0c2c534dfac63e14aa29b737756afa15eef55f41ca1a0316dbb9226a56da7da2a01f83e2a5efc35982fcc27780ef0eefe0d965961e81df8beb3e041da9026db02f9777d5fe0aaeb840c0281f31a0276048b59f6dd56bc9175a818a0af9f68fee930276c5c29809594e63d23a4b1df895f5410055680de57c009b60eeda9ea4abc50964c30f57abf1de68896669d8846f59b7f48618f6d1ef09208ee4a7ae9d430875066693719055551b1f55396f8188907ec2887c471426dffa44082bb5dd7a6b072ee8a58bbfd5607029a868f903e463e40b88f884d5a442b76cf4c1de10d2d02808313237cdca03447710d78068fb4142ab86ecf4e25a956a6e3dff0089365965eb217581b4cb7724a3c0a1039d7e6e52b638968f6fab35a377782bf246698eb71bc7062d202c1a1714236c58f99681bdc06ff8842c6af19be8c518a5a14fbcbf1005a4d72241c9ae18c2aa691dbb3fb973c0d371e3ae92cb2cbfcadabf1c2502396a0f2fd5908d4f5a3f98a1c47da5ab829da2af64c3f3306f1817e465e80ae3140834c0af78bc5a8450b5c053bb4802bae8b5993a7a3039e597941d6a0f2468e7b0769dce81dd3ca31e73ce239888fad8de587c407e25eb0415d08c8b7fabc6c8da8f288ac788622b41ebafc5ca72c837ff00c36ef326914ec375e09629aeb817b1c579b83338a2acd028803aab431e366b8aca46086d42d0ed02309916df3e4fb4d3a62e0626a0a3494ef1eb346c16b1534e51fb239e287b91934df9fea3a4d6d821b3e852e97c6d012c6c77800db39f955f76e5d2ec7d7eb2944ad8f44d538255d74d6835540fcc674600034098c6864d526507a9194ae1f6561ec3bbf5d96de575194b612b0f1e4ef1d482805d1a4aaf329a89ca3152134b69078c83ec449ba8ad3cf12bde0f451c4130c1b09080888ee42461400660957e79977852b2bc4379a18f422c5b31295d5facae6c0b35bc9f69e0d486b1a8fb7ec81905fda1602f9e8acd6662a76748b44364a48a64ae526d4a633decfc5c5544725d9ffd30205dcc29c348a178c26484143410fb0ae73e614bea3269dd7688d59b2c3d50d683b210f488d90700b3e58cf937515aad6cc9e5942549bb27989ac05896328b967356bdd8fccb983343eb10d522f8bbe5ed0d4bcc559e4294f7668fef514dcc8e74df47ede904c01f305435344c212094d06a7acbe6bf1a7ba637e0072bcbc66210a101c7eed7d486fe51db57532ca2e7c1afe26b52a9d5dd7b14635a96add4740f1a3dee128eae8ba1baae034de1391ec17099c6cdfc328947a9d3c301b69a732e1e7d6012cba298ec78604a46d5bf6e60bcd2077cdfe21fd175b6f826dc8a7a1e4fac4a9fa1a70031e97eb0e73a74c2e29eeb342c04c298a94f43783b793bea78600326a6e7661328c30af030dd704c5c80a608dd393977f65c386056dd26d4c54514d55dde5f128f88dc724aa2e1a5789a600cb48de1be63768297af765c158d52bfa38f21fd542fca70ececfbcb1670ef72f94b92735617da17401a1bc33f00edff008fab0c36d294e8b1f3e9087069159d251ef01051fe1ef050a989da62fccfdc387b909a2376a3c142c50bd7d96086d62bd86b4e4d46402665e33fb47aeed327e9e847b46dec5c5183f3e20102000a021d44c065eb09f251fad883a823b811b30d25511449157413b46b1a7913f31b2d2dec845145d3d71141a22fb422ea4ab316eff1f3002aeac13843bc5887206e37f56dfab12be6e3c2e30f4c081765c792641d8fd9fc4568ff004ce0509e6a259d0d44b22ad572ebf12fdf2e4133e912e0df81aa1cf300470dc1621be099771fd9149b107c91472bde11bc368c300a38b52b5d7e256b295ecdbe3ef09517998dcb68726e7b63ca7d663d0d8f5a606fd328d91f832d43707dd2dbd0130c3b05f310d09a06c7995a36900701689a9a59824a118f5b21480ee137ed0ccc77ba96ebee3bdc1944efc761b2506ab2e256be752f2f9768c0583623e4016ae288e2519cec170d72ebf574de60e570418a61d1b555aed6c7d616adda19a2827b5936381b781c3f794d5e5ed2f8ec952c97b7908273193aeb4d52816061b80b57de35ce94ce92d89732e597d4c348409aac60f636efa9f1043215e28567407fe625549c5e14b8158c721804694577691fe4034f7dfc13d4726ab99512973988b23165a6af538f4f3f59a4da8df006243e233c7107294ddb08409408f52e241e4d15861f9b9705eb15c610d11154e96ed3204777fdfa8566db9d62c84908daf58107a76808d881552cd10ce2276d290076d18ab463340570361ed340a0d94dbed183bb5cd7a6080040c00504298ccaaafda5c7429a2bc01cc6f4b2355757eb03ac722b14bf8b9a2769a2b6868f343f387e266bca33e353e186d3b3adb3affbbce365a7acd1896c6a43c2c5acf820e49b6034fd9f694c39e43da1cdde656bc6d2b357848030044f33b93bb2dd3c935010360cb973385d2fab4b18027fdb7d739592af6a5cb40ed1d99ab6bed13fa65f04f194c9f98b8cb9eb83e6a50fcda183305ac4c35c143e66ec9b392190077aa8a90cc25b18b0067031ee8f74eeceecbc6e66c42921b5e7b47ef4684e0ffb7ff81ae7a8e1480a621b815bb3b7ebd62a607b3848c051a53836978134fd4cc1ee402a615dab9f0c10cc14196c853baa992d55e56d8e9ac59bcee4ee4ee4ee4eecbf782737cefd8ef2d567ea69ddefff0006e04b57d16be2ba43870191e207ad1e2108438923b86749c3ccc73024c26a7bdf88513c8ed0b5a11600d3a0b0eb1dd9de9de8fd8eb0daf5742274f01f60fcff00c245b8092f4a4614bb9a24742506f59266944a4bcddc6e4c4d3f7948bda5c3075303cc4f31ef83d3ef4b23c08b3178b5e886692ad33ef0478bfccc3aecb69f25cbc07ec9f433f111144a4d47eb4709f5a67fc6f0249aa9aae577d25a22c105311155b4dc3a259853df8dc74742ada70944444ed39862f87da29a0c57211ab78b98c7ae0c1d470c6f5093dd60ca00e0251826423716684a1e1d61e87b8c3c56bf1eb110a0d22523f54a685b5ff310220280349531aa22e961811a14c15324c2f5e8f0ecc3c29293a3b16d68f52e6e53236edd4021669e3843860e25f408d06509c98161495b341f68f24e6060c8723f514ff91dd63cc15001406d0ceef23a0b1906c974a9e95ea254516bcc577900ea8005bc05e232a168608910ab6b37a84a2cc6cc30ade491d4cf2c600da895827a8dd79e20fb524d5c8f4fee51284ec347c67e624a7cc5f98137e721f1a447603481f9fec8a98981a6c27d3806a98d3a1bbed710271057f9a4204c8c25b7b58f0e65e12d21a4d499a65464861bc79878b4308c46c86e291a7d17f1323e9c4ef87f537260b43e0d5e8a5645a4d6001bc6ca58c09da7af77784ceb4051065c6182158952f8941e0c09ef5f4fb263577697f1ef314a50ead4ff0034ff0078202372c1dd3fd1f9970ccb0d60520095225a47509d546f1a7963079e121ec06a4aadd85385a7ef37ae53ec7f7057e97a8d8868283a3c4b76e2c15bd0a5f3efd6dd8ea1d1e8170ebb3106e0dbf6fa7a988f2dbcb98310094929317265cb884c6e61e18cf4d29260332d3589a99af409d163306c93b378af89da46db9e215968164ce5acbdc295a00240a4cad5e6319a60bfd56f033fd7ac5bb31810750e8f5494d1233822f3df67c7d2bd088547865f819521b10c1188da292342deeb93f72b65bb4dfbc34332dde5bbc266b329b6ea7eecbe21a53a24c93d80c43263a334c0f0d0f74fd4d6e4c18eb12a241d3990cf395e3163fdfc7d2d347716ee5fb1ef2a087abd412ef2a1c9d9da6471ea76b33241a8cb6b32cacc575015159f00fcfe62740c524d56328433fb43024dc8cd1333df2f6b86bc11e23ea112083a2b4ab35f0e3f27d2d0c0cdadef4f8a871d07453238cebef1878e8181f997a35e4d1965660a10469c05b307d5aeba2462f8deb87534610e41aea7452e970c77abfc3d2947d43a8c30102e9fb33f8fa46bd6255b1bbed08b500083a08c71f80c20558d6185fa24ff000865c199405c39636ea91e872888644da6529d00187f51f560bc71b9ed72d31e22eb1d1eb93a6a1eff00483502b1e5c1f172a087a945334982282ef43db695bea13247035603434e80f5a89d0108905417c6758d5f6203c91608bac747adab297cd2f97e8eb21789e463ef70e2081d6fa0398a22d7269c388a268eeb14cd0183896754183d52317c269d09b4e13523eb1d1e9135a09c2b27be7e8f970871ab5982084638e38398a29701e0fbcd0cceecb3ae0c187448c5f32e80d1962ba76e7c758e8c30621ca002387d9f44a8d389c243ea8240f48c1f5aa9a53594aeb3350e9080120091869c190354a5f1fa6685fe7e207a420f4901e9103fe78e49249238a6b116173344080b48807f026aaa9594ea231557c1895fc017456de3feff00ffd9, NULL);
INSERT INTO `crew` (`id`, `firstname`, `middlename`, `lastname`, `father_name`, `mother_name`, `nationality`, `birthdate`, `rank`, `vessel_type`, `final_school`, `martial_status`, `waistline`, `uniform_size`, `blood_type`, `safeshoe`, `health_status`, `bank_info`, `tel1`, `tel2`, `address`, `city`, `english_level`, `application_date`, `passportno`, `passportdate`, `passportexpiredate`, `sbookno`, `sbookdate`, `sbookexpire`, `lincece`, `licencedate`, `licen_expire`, `image`, `file_destination`) VALUES
(55, 'Kyaw', 'Than', 'Hla', 'U Hla', '<NAME>', 'Myanmar', '02/07/1990', 'Leader', 7, 'UCSY', 'Single', '87', 'XS', 'A', '60', 'good', 'This is bank info', '09260965397', '09260965397', 'NO28,11th street, Lanmadaw, Yangon', 'Yangon', 'Intermediate', '06/20/2024', '1498556', '11/26/2021', '11/03/2021', '33333', '11/30/2021', '11/30/2021', '123212', '11/06/2021', '11/29/2021', 0xffd8ffe000104a46494600010100004800480000ffe1017c4578696600004d4d002a000000080006011200030000000100010000011a00050000000100000056011b0005000000010000005e01280003000000010002000001320002000000140000006687690004000000010000007a0000000000000048000000010000004800000001323032313a31313a30392032333a32363a333800000f90000007000000043032323190030002000000140000013490040002000000140000014890100002000000070000015c90110002000000070000016490120002000000070000016c910100070000000401020300929000020000000435323700929100020000000435323700929200020000000435323700a00000070000000430313030a00100030000000100010000a002000400000001000002d0a00300040000000100000223a4060003000000010000000000000000323032313a31313a30392032333a32363a333800323032313a31313a30392032333a32363a3338002b30363a333000002b30363a333000002b30363a33300000ffed007850686f746f73686f7020332e30003842494d040400000000003f1c015a00031b25471c0200000200021c023f00063233323633381c023e000832303231313130391c0237000832303231313130391c023c0006323332363338003842494d04250000000000100eb45945424db98771af0849dc4d52eaffc0001108022302d003012200021101031101ffc4001f0000010501010101010100000000000000000102030405060708090a0bffc400b5100002010303020403050504040000017d01020300041105122131410613516107227114328191a1082342b1c11552d1f02433627282090a161718191a25262728292a3435363738393a434445464748494a535455565758595a636465666768696a737475767778797a838485868788898a92939495969798999aa2a3a4a5a6a7a8a9aab2b3b4b5b6b7b8b9bac2c3c4c5c6c7c8c9cad2d3d4d5d6d7d8d9dae1e2e3e4e5e6e7e8e9eaf1f2f3f4f5f6f7f8f9faffc4001f0100030101010101010101010000000000000102030405060708090a0bffc400b51100020102040403040705040400010277000102031104052131061241510761711322328108144291a1b1c109233352f0156272d10a162434e125f11718191a262728292a35363738393a434445464748494a535455565758595a636465666768696a737475767778797a82838485868788898a92939495969798999aa2a3a4a5a6a7a8a9aab2b3b4b5b6b7b8b9bac2c3c4c5c6c7c8c9cad2d3d4d5d6d7d8d9dae2e3e4e5e6e7e8e9eaf2f3f4f5f6f7f8f9faffdb004300020202020202030202030503030305060505050506080606060606080a0808080808080a0a0a0a0a0a0a0a0c0c0c0c0c0c0e0e0e0e0e0f0f0f0f0f0f0f0f0f0fffdb00430102030304040407040407100b090b1010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010ffdd0004002dffda000c03010002110311003f00f5cdf46fa37d1beb8cf5037d1be8df46fa0093cea8f7d1be8df4005146fa37d001451be8a0037d1b28a2800a28a2800a28a2800a93cef26a3a2800a28a2802e54755eac500145145004945145001451450014514500145145004889562a9c2f5279d401628a8ea4a002a3a928a0021f33fe5bd1450ff00b9a002a4a8e8a0092a3a28a00921ab155d26f26a447a0092abd48e9e7547b3f7540051455844acc03651451401227a6e92a4aaf562800a92a3a2b9c0b94509457400510a515279d400ef263a3c98e9d450681f3f95562abc3562800ab1b3c9aaf5628024a28a2b400a28a2b300d946ca928a008f655ef263aab562800f268f268a280086ac6fa8e1ab14015eac547b28d940125151ecab15a1d047525144340022549e4d1e751400793254bff6d29f450033feda545e4d5844a9214a00ffd0f54a2ac3eca2b8cf50af451ff2da8a0028a28a0028a28acc028a2ac500089451456801451456601451450014514500145145001451450058f3a8f3aabd1401628aaf562800a28a2800a28a2800a28a2800a928a2802486ac557868f3a802c4d4557f3bceab140054752515a00514514005152514011c30f9d572abff00cb6a28024dff00720a1d2bcefe2d78aaebc19e0896ead5bc9b8ba6f2a0af8cec3e28f8f2c2e93528355926967ff96725007e887fcb6a3657ce7e06fda1340d7a5fec6f157fa35c57d21f2794b3ee8e68a7fdea491fdc96b300a2885de8a002ac547523fee6800a28a2b9c0b8945468f525740051451401628a2a4d941a11a7ee65ab1524db21acfbfbcb1d1ed7ed7ac4f1c315006879de4d58af9ff5bf8c7e74af67e1c83ce8bfe7a491d72761f13b5cb6ba49f596fdd50741f565155edafd2e624bb83fd54ebe6d4941ce49454752500494547525001451450058a28a2800f3aae565d6a6fa0028a37d140054951d095a01251479d479d4005488f55e8a0e83428aa68f526ff3a5a00b10d2bffada4a2839cfffd1f5074a3fe58d1e751e75719ea1728aa7f6af6a3cea00b94553f3a8f3a802e5159fbe8a00b15612b3d2b42800a28a2800a28a2b30077f268a1e8a0028a28a0028a28a0028a28a0028a28a0028a28a00b1e75155e8a00b14547e754940051451400514514004d451450049bea4f3bce96abd49be802e5579a8f3bcea26a008fce92a447fded4745006851bea349bf75450049bea3868a26a00f9eff6994f3be1e5a5dc0d27ee2eabe3ff00b4d8cd6a93cf3d7e807c5ad13fe127f86fad69d07f73cd8abf2ae6bfbbb6d3ad3cff00f5b0504c0ed2fecdedb64f67731cd141ff002ce4afa43e1d7c63bbd2becfa75a2c9e543feb74d92be3bb0bfbbb98bc8dd5a08977f25d6efdec1ff2d23a0a3f583c37e2df0ff89f4d4bbf0fcffbdff96b07f1c55d423f9d5f95fa0f8daebed9ff001f32e95ad7fcb2bb8fee5e57d41e09f8fd7736fb4f152f937105007d69beae6ffdc5799e89f11740d6277b48278e1960ff00967257796d72934af04ed5ce739a1479d59ff68fde51f69f2683a0d0a92b2fedc9563edc9fdfae803511ea4ac3fed2b5ff0051ba8fed2b186ddeea79ff007505006e5496d32795e7cfe5f9505789f887e31f8734aff8f5649abc6fc6df16bc41aaecd02d7cb87cff00dedd5007be78dbe2d681e1895e0b5ff49bdaf9cf52f186b9e27d4bed5e20b99268bfe79c75c7d8583dccbf6bff005d2d7a2586cb6b5fdfdb7932d07642049a6db49344ff00349597aaff00aa782bacdf2083c8dbe4d67dfcc9369a9040bfbdba6ff595ce7a5c87d41e03df3784b479e76aed2b1f44b0fb3691656b3ffcb082b6283cd24a28a2ba0e70a92a3a92800a28a2800f3aac557a3cea00b145145001572a9d490d0058a28a2800a28a2b400a92a3a93cea002a4a8d1e8a0093cea3cea8e8a0e83fffd2f4ca28a2bcf3d423a928a2800a2a3a28024a2a3a92800a93cea8e8a00d0a2b3e17a93cea00b94557ab1400514514005155ea39a802e5155e8a00b145544ff5b56e800a28a2800a28a2800a28a2800a93cea8e8d9401628a37f93479d400514435250047454951d00145152500490d135470bd4935004745145001bfc9a911fcea8ea486802c5151d494007faeb5f227ff96ffbaafc73f89d6775a0f8f35dd1f67fa896bf601fccf29e782bf31ff6a5b64ff858977e42f932f915a01e47a6e83a8dcc4977e159eda6f3ff00d6c11ffc7cd7589a56b9616e9ff09035cd9dc7fcfa491d781db6ab7da56a3f6a81a386e3fe7a475ea167f1a75f862f235958f5b8bfe5af9f5d063ce58d4adbecd17913af932cff00f2ce392ae59f886d7558a2f0e6b13f932c1ff1e3771fdfb7ae6ee6dbc2be2d97ed7e15b9fb05c4ff00eb6c2e64ff00d01eb8bbc49347bdfb25dc12437107fcb392824fa334df156b96d6b71693fee758d3bf7ab247ff002d52b73c2bf19bc5d7fada41f6e93ca9d6bc7fc257f75e278bec93f97fda7a5af9b6327fcf7ff9e892557b0b67d1fc516f3c1fb9b7bafdead68667d79a57c6fd72fed52d2ea7f26581aba8bff8b5e77fa2f9f5f15eb7732695ab5dc1bbf8bcd58eae5b5fc9e579f3ff00cb7a0d0fa821f8917d34bf7a4ad0ff00859d75e537cd27ee2be63b3bc7865ff9ed155c4bc49b7c1ba4a00f58d57e2beb96d749e434945cfc45d4b55b27827be9218a6af9ff00ed2fe6bffcb6ad4b077b9d905ab7ef676f296b3e503d534ab94877f88275fdd5affa88ff00e7bd58d35defee3cf9dbf7b5c7eabaac1e6a5ada7fc7bdaffe457aea2c3ec36f6a975acb793f6aff0055051ca07ae695a6ea373fbfd36b72e6e52c257827fdf5c5799d9f8ce39bfd127fdcc507faaf2eba4bcf184773fb89da39bc8fbbe5c75c3c87b1466496d797d7374fe7b57a07826cdf5ef14594107faab56f365af2386ffc989e7afa63e025b79d15eea33ffcb0fdd45589af39f463bfef5e886a3a28398b94553ab95d07385145140125151d4940051451401628aaf562800a28a2802c6fa11eabd490d0058a28a2800a28a2b43a028a28a0028a928a00ffd3f48a28a8eb8cf50928a8ea487f731500145145660152547450049454745004946fa8e8a00937d151d140163cea3cea8e8a00b145145001451450014514500470d5cacfd94500685154fcea92b402c51425140051451400514515981621a2a386a4ae700a28a2800a28a2800a92a3a92800a1e8a2839c28a128ae83a0911eac5534ab940057e79fed69e1592dbc6f69e20ff96575157e8657cf7fb457863fb7be1e3ea3b7fd234ead0e73f21e6b687cdfdff990c5ff003d2b62cf41d3ae65fdc6b51f9b3ffcb392a4bfbc8fcdff00aef59735cdaf95fbff002e6aec33352e7c13e2387f7f02c77317fcf4b692b42dbc4f770c09a3f8ee092e6dff00e7a491ff00a4c55c3db5fdddb5c7ee1a4865ff00a6726caec2dbc5ba8cdfb8d63cbd56dffd579724740125cd85d6837516bfe1fb9f3ade0fdec13d7a87893cbf1278713c47a337932eefb44f1ffcfbbd70fa57d86e77ff0060379315d7fadb0b9fb92d751a5797a0ea5f64f2a4fec4d517e6f33efd9cf4014fc5b72f732da5d7eee6b7ba83cdacfb3bf8e6fdc7ef2ac5fa7ef5346ff96b6bf76ac7802c1eff00fb4fc86fdec0af401a89b3fb21352dde4f912f95e5d534bff3a2f3e0aea341f0aea373e08bbba9edbfd1fe7962ae5f4ab6f3b49483fe7850057f9e697f71feb6ba0d351347b7bbf11c1e5f9bfeaa0ae1eda6fbb69bbf7b3feeabd52cee6c7cab7d46758e6b7d2ff756b049ff002d5e834234b6ff00846ed52eaebcc9b539ff007b04127fcb2aaf61737daadc3cf3fefa59e8b9fdf4b71a8f8aa792196ebfe59d49bf519a2f234eb1921b7fe1fddd006c4361690ffc7d347e6ffcf38eb72db587f35fc8823862ae1edacf52865f3fc896b62dadafa6ff005f049599d87a4786dd2e65ff004a5afb43e0858793e12b8d47fe595d4f5f11f826c2ea6bcb79fc893cd9ff007517eeebf483c19a52683e1eb4d3a7ff005bb7cd6ae73a0ec389a2a2a3a2838cb1e4d494514005145141a054945159805145140055886abd5886800a28a2800a921a8e8a00b9455747ab14005145140054951d14012514546f37eea803ffd4f44fb57b51beb2fed5ed4be6c35e79ea1a7be8acbdf526fae70342a4f3ab2f7d57fb57b57401b9479d587e751e75006e79d479d587f6af6a3ed5ed401b94565fdabda8fb57b5006a51597beb421b9a00928a8fed5ed47dabda802c51beb3fcea3cea00d0df46facff3aa3df401a9bea4f3ab2e1b9ab1f6af6a00d0a8fceacffb57b549f6af6a00b14a9feb6ab7dabdaa3fb57b5006a547e7553fb57b52fda23a00bf562b2fed5ed479d401a94563fda7c9ab09731d00686fa37d67efa37d006a23d4958f0bd1beb9c0d8aaf59f0bd58a00d0a2b2fceab1be802e51e7565f9d51c2f401b10d4959fbfc98a8fb57b57401a146facffb57b51e74935005cae0fe28dcc76de03d6e79ff00d57915d86faf9fff00684bfbb87c0de440bfebdaa60739f961ab7fad7ae6b7fef6bb8d6ec1fe7ae0ded9e1ff005f5dc666a6f8fcafbb1f9b5b16d6c9731791ba3ae4fed29fea2b52ceff00ecdfbf816803726d1352f2bcf822f3a283fe79d6a4dadea373a4bdadd41279b07faabbfe396b1ffe121d7efe5fdc2d73ef7f7d36ff003fcc86b403d334dd4935ef11c53cf5f447c1cf04bdb788f5b820df35bcede557c6fe1ed4a3b6ba4827fdccb5fad1fb2a5b69baace9e209d639bcfa0881d06b7f066fbc37f0daee083fd57cf2d7c96fe12fb0785ffd157c99675f2a5afdb4fb025fe92fa74fe5cdf2d7c8ff001cbe17476de0d7d47475f265b5ff009671d06e7e49d8683f66d3aefcff00f960dfeb2b62ce6b186d52eae9fc9b7b5ff551d6878b61f26cd2d3fd4cbfeb67ae3ecf5bd3a18920fb34934b07fad924a00e813557865ff45b68e1967ff553c9523ea57d37faf9e5aaf6daf69b0fee27d3ff0075ff003de3aed2cedac6e6d5e7b5f2e6f2280393b64ba9a2ff005f2558b6bcbeb6ff00513c95b9fd9be74be45c412567dce89750ff00a8593caa7ecc0fa53e00dfdf5feb96ff006ab98e6b786bef0dff00f2df77fafafcd7f838efa57881279dbc9afd0cb6bcf3a2b79eb86a1d07488f572b9f86e6ae43735006a7cf479d2553f3aa3a9981a90d495968f5737d51a1737d1bea9efa37d005cdf46faafb928fb57b5005885ea4aa6ef5279d40162ac79d59fe7549be802e5154fed5ed44cf401728acff00b57b51e7500685490dcd65f9d479d53ce06a7dabda8fb57b565f9d479d5406a7dabda8acb49bf7b563cead00ffd5ea36bd0883caaea3ec747d8ebcf3d4397785e84df0c55d8259c70c547d852b9c0e3ea44479abacfb079d4258500727f65f7a9112ba87b0a12c280397fb33d1f667aed21d368fb1d00717f65f7a8fecbef5dc7d8e84d35280387f268daf5de7d8d28fb1a50070f46d7aee3ec6951fd8e80387daf526d7aee3ec347d868038bf264a365771f634a5feca8fd680386d9563c9aec3ec3573fb3680383f268fb2fbd779fd9b443669401e7ff63a5fb03d77ff00d9a947f65d00707f667a3eccf5e89fd974bfd909401c17d8de8fb1bd7a07f635bd1f63a00f3ffb0d49f667aee26d363a3fb2e839ce1f6bd1f667aef3fb1ade8fec6b7ae8038786d9e8fb34f5e81f608e1a12c12b9c0f3f86d9ea4fb1bd7a07f66a51fd9a9401e7fb5e8fb1bd7a07f66a51fd9a9401e7ff00637a8d2daeabd13fb3528fecd4a00e1d2c2ea87b67aee1ec079b47d8d280387fb33d1b2bbc4b04a3ec69401c1e1fccfbb5f3dfed097ff66f0ba5a7fcf76afaf1ec12be27fda8a6fdd5a5a415d807e7ff00887fd6579fdf5761aaef9a57ae2e6fdccb5d06667fd83ce97cfa1edbf75e7eeff5143bd0e9e745401f462781becda4596a504fe77daa0f9648ebcbf4af0c6a3e55dff68c127def96492ba4f01fc5a7d074d7f0ff008820fb4dbd751adfc57f0acfa6a41a05b4935c500781dfd9a586a5fb8afd1cfd8c2f1e1d3ae20dde77913d7e75bf99379b753af932cf5faa1fb12780efa1f0bbea375079315d4f448da07e9869bfbe892b93f8a9fe8de08d4eeb6f9de440f2d7a469ba6f93fb882ae6b7a3daeaba45ee9d75feaa781eb424fe78e6b34f1b78a2ded7cf921fb5379ad5b9e36f8756be18f0bddff632c934b6b5cff8937e83e21bbd46d17c9974ebe7af74b3f1cf83bc67e1f4fb55f456d71b69d4038f9bc01a06b1e1cd3759d1d64b697ecbe6de4725785e99a93e9574f040de4fcd5ec1e3ff0089da1db690de1cf0ab79d2cebe53491d7cef616de74be7cfe656407d01a56ab25c41fbf6f3a5ae92c2e7ed32feff00ccaf23d11fecd2f9f07faaaf404bcf26e927ff005de7d7601eb9a0e9b69fdac93c1fb9afb734ab04fb1da4f5f09f87af12e6f52782bf413c1fe5cda25bcf3d79550e82e259d58fb1feeaba8f26ae6cae0038bd952fd9e3aebf651b2b4038ff00b0a5687d8eba4fb0a51f65f7ae8039ff00b1bd1f637ae93c9a3c9a0d0e6fec747d8eba4fb2fbd1e4d0741cdfd9a4f373527d97deba4fb2fbd490db50739cbfd868fb0d751f65f7a3ecbef401cbfd868fecdaeb21b6a3ecbef4199c9fd868fb0d759f65f7a3ecbef53c8072ff0065f7a3ec35d67d8528fb0a51c868727fd9be7558874dae93c9a97ca86a80e5bec7e4d47f65f7aea3ec2947d97deb4333ffd6f5cdf47dabdab3f7d47e7579e7a86c79d47dabdab2f7d1f697a00d8fb651f6cac7df46fa00d84bfa93edd587be8df5ce06e7f6951f6eac3ff5d45006e7dabdaa4f3ab0e1ab133bd7401a9f6af6a3ed5ed597be8df5ce06e79d479d597e751e75005cfb4f9347dbab3e8a0e7343ed8f563ed5ed58f4500741f6af6a5fb7bd6323d1f6af6a0e8367edef49f6af6acbdf46fa00d4fb651beb2f7d1be839cdcfb57b51f6cac3df46fa00dcfb651f6af6ac3ab88f41d06e43734bf688eb1b7d539a6ff9e141ce74bf688e93ed5ed587526fa00d8fb57b549f6af6ac3df46fa0e83737d1beb0fcef26ac7faeaae40353ed5ed527db2b1f65147201b1f6ca3ceac7e6196a4f3aa40d4fb57b51f6af6acbf3a8f3a8035bce8e9be7553df51cde679540161debf3eff6a2b6be87c51e7cf3feeabef8af97ff00690f097f6c787e2d6206f3a582b681ce7e65dfecae3efedbf7bfb89e3af40d4ac2487fd47efab8ff00ecdbeb995ffd64317fd71af48cce2dd2a4b64f2654af4087c1f637317913eab1f9b5da787be12c77f756ff00659e49a5a0e733fc25e098fc49124fbbceff00a67e5d7b6587ecbbe34b9df75a3e91243157d39f073e0e7f654b6fa8cf5fa19a6dcda58449040bfea1683a0fc37f0c7ecc1e3bf1278a3ecbac5b5cc36f0b7cd24b5fb39f0a3c37a7784b44b4f0e40de4dbdaad6a78cfcb86dee2ee0f2e19675af07f0df8feeadaebfd2a78a18ad6b3343ed8b0b94b6adc9a1b4b98bfe5a7955f1fff00c2e9f08fdb520fed08a6960af64f0c78f34df1244ffd9b7314dff3d7cb92b403c2ff00e18e7c1d71e37bdd7ee9bceb7baaf91fe367ec66fe18d726d47c2b3c7fd99ff2ca0afd94b04f262fdfff00aa9eabf8874af0ff00892cbfb3b58823b98a803f9abd6fc01ae683bee35fb1fb3455c7db59bdb5c7fcb49ad6bf593e3dfecd37d6dbf58f0e5cc935bd7c67ade8963e18b5f220beb6b3b8ff0096b05dc7401e0f6d379d17ee3f7d5d824dfba4aaf7f7f63732bf9f731cdff4ced3e4f2ab721874ef23fe3e52197fe79c95d00759e18779af2dfc86fdeeeafd30f093bc3a45a5a6df3be5afceff00875a57da75bb2f2278e68b757e9069b0c96d1241fea6282bcaa8741d4238f2aac23d65ee7f26a4b67ae00363ed5ed47dabdab3e1ab1401a08f5279d597479d5a01a9e751e7565f9d479d41a1a1e7549e7565f9d479d401a9e7549f6af6ac7fb57b5490dca50666a7dabda8df597be8df5d006a7dabda8fb57b565d489401a9f6af6a3ceacb77a37d6806a7dba8fb7563f9de751401b1f6af6a3ed5ed58f526fa00d4f3a8fb47fd35acb47a8e6fdf5007ffd7ee3edc947db92b9ff3ab3de693cdaf3cf50ec3ed9425fd73c9feaaa585de803a0fb651f6cae7e677a3ce92803a0fb57b51e7573fe7495225006e7dbfc9a93ed5ed58f55f7d00749f6cfded1f6af6ae6f7d5cdcf401b1f6ea93edd58755fcea00e93edd527dabdab97f3aac79d401b9f6af6a93ed5ed587562b9c0d4fb57b51f6eae7e8ae803a0fb57b547e7565eca365006c7dbaa4fb6573f46c79a803a08752a3ed95970d58f3a4a00d4fb57b557fb57b565d1401d2437fe4c547db2b9bab95ce06c7db928fb6561d1401d07db28fb57b561a3d490bd006c7dabda8fb6563bd1beba00d8fb6558fb7573f56280363ed8947db12b3e84a00d8fb4a4347db3ceacb9a88680353ed5ed4bf688ea96fa2802e7da7c9a3ed8f54e1d937faff0032a344f265fdc2d00587bf1e6d707e3fb9beb9f0bea705a3f9d2edfdd47e5d771e4ffcb7f223ac7bff0032e6d5ed7ed31f9bff004ce3ae703f30e64f89b73fb883cd87feba6c4acbbfb3f1fdb7ee27d7ada1ff00ae9223d7a878c3c18f0f886f60bbd42e61b781bfe5a4959fe1bd13e0b5cdd259cf05cdcdc575fb439ce1f4aff84aa197f7faf69bff006d6d77d7d99f072c2d755bdf2277b69be5ff00591c3527863c31e04b08927b5d2a2862fe1f32bde3c3c9a7584a93c1631ffdb38e8f685721e99a6d878734ab5482ee7f26ba88755b19bf71a3dcc534b0579fdcf8924ff5106949e55707a95fdacd2bddcf6d2c37147b4363d53c4973fdaba73c13f975f9eff16bc3de34f0de9177fd8ede75bcff00eabcbafa12e66d366b849e0b9968bfff0049b57b59d7ce8a75aca732e99f98761e12f88534569776ade74b74bf37ef2bf453f639f037882c25bb9b59b993cabaaf23ff00844afadb57b7d1e0f33caafb23e1edff00fc231649a6c1079de47fad92884c2703ed047b5b68920827fdd415a89791c35f3fa6a5a1dfc5fbf9e4865fe28ebbcd2aff004ef2920fde4d5e91c8761aae9bfdab13f90d5f9dff0019bc3de00b6d5fcfd66c629a5ff96b3f97bfcaafd0c86e6d6683f70f5f33fc57f097857c49f68fed1fb4c32ffcf48a803f37f52d57c016d7afe45cdb43ff004d23b5a12e7ceb5f3ed35ed36fedff00e79c96b5d87893e0549aadd3cfe0bd6ac6ff00fe99dcc75e57a9780fe21f84bfe460d165b68bfe7a475d007d71f067c1963aaf88ed351b4834d9a5ff0096b047257d71addb3db4be45d69127ee2be3bfd923414d57c6f5f6278c355d4747d49e081a49a2ff0096b1c95e554039ff003b4df2bfd44b0d10fd96e7fd44f55edb55b1b997f7fe6d9cbff4cfe74ad49aff00fe5879f14d17fcf4f2eb80e80777865fbd47db2a9ffaeff51e5d47356806a3dcd1f6af6ac7daf5a15d005cdf46faa755eebb56806a6fa37d53a2b3342e6fa37d53a28332e7dabda8df54ea4f268342e79d47dabdaaba2513568664935cd1bea9d1f3d006823d1e7557851e89ab334249ae68fb57b553a365005cfb57b51f6af6aae8947933d68667ffd0eb3ec751cd61279b5d05475e39ea18e961527d8eae6cfded584a00cffb1d4735b56a515d0063a5b5584b6ad0da94573819fb284b6ad0a928032dec284b6ad4a3c9ae802bfd97de8fb1d58a2802bfd97de8fb2fbd5d8bfd55250057d946cab1450057d947d97deac2514011a251e4d5844a928029fd8fcea93ec35a09450067c36d46cad0a28033fecbef46cad0a9112b9c0cff0026ac429e7455736a510d0065f9347d97deb426a921a00af0db79d52436d56128df4015fecbef525b5b54952435d001e4d57fb3fef2b428f268029eca214ab9427ee6802bf9342255ca93650057f26abba79d5a0f55e800f26ac7d97deac225589ae7ecdff3ce6a00cffecd4f292eaedbfd1ffe79f9954f52bc4b6fdc5ac11c3e7ffcb4ad4fb35ddcdd79fba2ff00a6b2510e9b636d2f9f07efbfbd77257381f31f8dbe12df78cef3ed53b494689f073c39a545e7cffeb6be9cd3766ab3dc416ab24d6fff003d2b9f7b0fb35d4bf2ff00a8ff0096f2500727a6d9dad841fe8b0450c507fd33def5a09a949612a4f3f99350d72f0ef9e0ff00bf925496d6d1ff00af9d7f7b3d61ce687509797d7f179f3cfe4c55977fb3caf23cf926acf7793cdfdc546ef753454738bd99c1ea5aae9da3fefe7ae4effc6cf344ff0065b6f3ae2bbc9bc37fdab2fefeaba786ff00d23c8816ace93e7bb3ff0084eee7c41fdb102c7fb8fdd797257be689e33beb6d905d58c90cbff2d648ebacb3f065a7db7f71e6435d659f86d3fe5bac73568049a26abf69bcf3e06fdd57bc69b79fbafdff00efa2af2bb0f0f7d9bfd45779670f93fb8ada133cb3a4bfb9fb35af9f0579fea50a6bd03c176d2432ff00cb29eba8b99bc98bc8acb74f3a2fb95dc07c87e3ff0084be3b9ae2e27825f3adff00e59491d70767ff0009df862ebc8fed0bd9adff00e78491efafd04b0ff46d9041feaa7ff9675a1ff084e81af5efdaa75f265ad00e93f660f0dd8cda77fc24775a7c70dc4fff002d238e8f8e5e0cbbff008483fb460f2fca9ebdd3c136c9a5691169d02f93156a7c51d07fb7bc2ef3c1feb6d6b303f3cf65d5b4be44ebe4d6a5af7a3ed9756d2bc13a79d15488e9e6f9f02f935e59d05ca93c9a8eac4341a07935242952515d004732553ad0a8e800d952225469572802bf9355dedab4289ab9c0cb44ab9e4d14566058aaf3558a1d2b4029eca9112886ac50665744a1d2ac50ef41a14f651b28a92ba0cc8de8a926a3fe58d4cc0fffd1f44a93fe58d7df1ff0a4fc0937effc8ad0b3f845e04b6ff516d5e6f21ddce7e7bcd4435fa1973f097c1773febec6b2e1f827e04f37fe3da8e40e73e07f3aa3afd049be0e780e1ff9764a8e6f827e0bf2bfe3daa839cfcffa92bee8bff803e11b98bfd11a486b8b4fd9a7cedffbf93caa039cf92ea4d95f585c7ecdff00f3c2e64ab96dfb34da795fbfd4280e73e43d951d7db10fecdfa1c3febe7a1ff66cd0e6952782e7c9a039cf89e8afd08d37e06f8561fdc4f079d5a8ff0008bc170cbff1e353c81ce7e73a515fa20ff04fc157317fc7b79358ff00f0a13c17e6d5189f03d15f7c3fc04f0279551ffc28af0079553c86dce7c17527fcb1afac35ef81be159bfe41cf24355ecfe0b7873cafdfb494720739f2c45feaa9f5f5a27c25f094347fc2a6f08d51cdce7c97562beadff8545e14fee4949ff0a8bc2b3501ce7ca7457d716df097c2d0ff000f9d5713e17784bfe7da80e73e3ba9363c32fddafb213c13e1fb6ff51631d49ff08af87ffe5bd8c541d3ce7c77e4c951ec93fbb5f6443e1bd0fcdff907c7523f84b409a2ff008f68e80e73e33f268b64fded7d78fe09f0af9bff001ed55ffe109f0e43fea2da824f93fc992ae2585d4dff002c2beb0ff846fc396dff002e31d58fb36876d17ee2c63a0ccf91fec57dff003c2a4fecdbef37fd4495f665b59e8773179ff614ad4b6b0d0fcaff008f68e8239cf8afec177ff2de09284b3bb9bfe58495f705b787ad2e764f05b473453d6e58783343865ff511d01ce7e7fdcd9dddb7faf824aa7343e4d7e8c5cf86fc3f345fbfb18e68bfe7a7975cbde7c3df05dfff00afb6a039cf86d28afb53fe152f82a1fdff00d9aa9ffc29cf05dcd4f21d3ce7c6e943d7d89ff0a67c2de6d683fc22f09795fea2a8e6e73e2f4fdf7fa8ab9b23b6ff005ebe757da16df0dfc2b6dff2e31d685b7833c236d17efec5280e73e23b9b9ff9efff007ee3ac7b985ee7f7fac379d141feaa0afbd3fe115f094d2feff4a8ea47f875e12b98bcf9f4f8a80e73e07d12e64b9d5edfc86787e6f9608ea3f16db3c3abbcfbebed0f127833c2ba0c5fda36b631c32d7c77e2448ee6f1fcfac6674c0e4fce4ff8fb9e8b9d934be47fcb5aaf343ff2de7ff96358772ef5c2751b136c86b42bcee6bf92197ef54773addf5cfee206f26b33a0f4c4f2ff00e5bd5cb6b0b5f37f70d5e177faddf43febe7acb4f156abe6fee277ad0d0fac12dad21ff5f527dbec6196be63b6d575fb9d9fbf92b72c2e7519ae3f7ed250667d009ada7fcb0ad4b6bf921fdfefaf17d375292da5fdfad7489797573fb8fde435d8719ec16ce937faff00f96f5621bffdef910579fa5cc9e5257616dfbe892bae981d02279d2d751a223f9b58fa6a279be44f5da68f6c9e6fee2ba4e73d8344b9f2624af44fdddce90f6b3ffcb75af2bd3668fcaaf44b0fb27954199f01f8db4a4d1fc41756bb6486b9bb5ef5fa21aae83e11b9df77acc11cde7d727f60f85f6d2bf91631d70f211ce7c47b2ae435f6e5b587802697f71a7c55d043e1ef05cd17fc82a2a39039cf81f6515f7c7fc225e129bfd46951565dcf827c23ff002df4a8a8e40e73e1bdf47c9e77fadafb71fe1d782fcaff008f18a1a2dbc07e04b697fe3da3a390e9e73e27ab15f722786fc090c5ff001e31d49fd89e0487fd45b454720739f0c796dfdd7aacf0bf9bf764afb73fb13c17e6ff00a88ea37d37c170cbfb8b68e6a39039cf8a3c97fee49573ecc3fe78bd7d8ee9e1c862f3e0d223aa7f6cb4b9fdc41a4470c54721cdce7c86960f37fa8824a93fb32fbfe7d9ebec0b6b3b5b6bafdfdb455d026a5a1e3ee474720739f0ff00f665f7fcfb3d4bf62befee495f75db3e8173fb8f223a2e51218bf71a4473455b0739f0bfd8e6a8fec777ff003c64afb92d6da3ff00a04450d682227fcf8db501ce7e7fbd85f7fcf0928fecdd466ff97696bf403ecd69ff002dedadaa399ec6da2ff8f6b6a0e8fac9f9f6f6d750cbfbf5786a3afaf352b0d3afeebf7f631d67ff00c237a1cdff002ed1d663e73fffd2fd94b9d6e3f2bf7eb1d5786f3ceff51e5d727bf4d9ad7f7eb2561bdfc90cbe45a7970d7181ec097f1fd9ff007f59e9a95a7f77c9af2bb94f104dff003178a1ae4efedb5c865f3e7d4126a00fa021b9b59bf7fb7cea8df5b487f71e45783a78dafb4a8bc8820926acf87c6de23bfbafdc7ee6803e88fedbb4feec90d16de214feef935e1efadea3345fbfd423ae6ee755baff005ff6ea00fa51fc4e93570ff10bc6de4e91f64b56f2659dabc8ff00e1247f37f71587adde5ddffee27a0e8087c49a979a9e7dcc937915d459f8b6fbfe7e64ae0e1852ae23f93401ea1ff09feb9e57fc7cc951c3e36d727ff979af3347f3aa4f3bc98a836e43d53fe130d566ff0096f573fe121be9bfd7cf5e3ff6cf3aa44b9f265a0c4f608752926ff96f5a097ffbaaf27875bf26ac43aac97317efda486839cf584bfb5a20fb2579da6aaf577fb567feed00771fbbff009eb559f6435cbdb5fbf9bfbf5ad4fed28e6ff5fe5d006a436c97317de928fb1a4359e9789e6fdfa2e66b1ff96ef401a1f664ff009f9aa7fe836dfebee6b1e6b3d3a6a3fe11bd37fd7ee92803713ecb37fa86ab10f970ff00cf4ab9a6f8274db9fdfc1735a93783ec7fd7fdbbcea00e7d364d2ffcb4a97365fdf92ba3b6f0969b0feffed3255c7f0f787ffbd2500739f63b5fef53d34d49aba0fec4b1ff00961e6558b6d123ff00960d250065a7863cead487c12937fafad886dbecdfea27ab09617de6fde8e8030d3c2563e5791bbc9a3fe109d37fe5bcf5d27fa9a3679dfc51d0067d9e89a75b45fb89ea4fb058cd75ff001f3250e9e4cbfb8a8fed2f0ffaf8280352db4df27fe5bf9d17fcf3a926d2ad66fdfd73ef67ae4dff001eb731c3459db78aadbfe3eefa29a2a00dc4b3b587f71baa47d2bfe7879759778f750daa4f041e74b45b6b7fbafdff00ee65a0093fb06ebcdfdc34744da55f43ff003ceae5b6a56bfde8eac3eab6b0ff0014740187fd89753567dff849e697cffde57689aadacdfea2acff006ac7e9401e3dade9bae4317916ab257073695e3c9a27f21a4afa83fb6ed3fe5bb51f6fb1ff00960d1d007c7faae9be2ab6d21e7d7dabe5fd566f3aeabef0f8d37f69fd90de457e7feb1dab199dd030ee6e7f7b58772f5a337fadacebaed5ca751cbdd76ae7ef124865fdc5771f664f37f7f51fd812696b0f66741e7ff66ff9eebe7558b6b3f3a5aef1ec2d7fd47eeeaba58476175ff3dab4e439bda1976d6df66aeb21b34b98bcf82a9a6cf36b62c37c3be0db1f95561ed0d0b6b0fdea4f0379d5d25b4375e6fefeb0ec12b72dbfd6ff00afad083a8b686bacb3fdcc55c7d86ff36bbcb3fdf455d74ce73a8d35fce8beefef6bbcd293c98ab8fd2a1f26bd02cee6ba40eb2cfee575161349e5570f6d735d4585cfeea8333a4f10db3dce91fb8af17fb37da6f7c8b5824af74b3bff003ad7c8a2d92c6197f716d25739ce795ffa5695fb8fb354972fe77f14b0d7b67eeffe7da49a89ad87958834fa00f0f85351ff00961732d63bdb788fcdfbd735f447d8ff0075ff001e31c3527d82ea68bf7eb1d007ce3b3c47ff004d69df63f11f95e7c0d5f487f63c737faf5a8ffb2ad61a00f9ed3c3de23b9ff96f5a16de00f11cd2ff00c7cd7bc7d83c9ff50b51cdbe1ff5141af39e369f0c7519bfd7df56e27c31fb93cfa8495e91b2ea1fee547736d77e57fcb3a0c8e5d3c3d63616be45d5f49e5561dcd9e87e7f9105ccb35761f60fb4fee27f2e84b0b1b697cf9da3868032ec34ad3bcafdfb49356e5b5b687fea3ecd5187d026ff00537d5a10cda743b3e7a00a77fa527faf83f7342587ee3f7f7d25683dfa7fcb08249aa44bcff9ef6d401cff00f63c7ff3f52d489a279d5d079de74bfb85ab0f401cbfd82d6da27f3da3ae3f55d4b4e87f71027ef6ba0d6f52b1b6df06dfded79bdfde58cd2fdd92802bff006979347f693ffcb068ea48764dfebdeabf93630f102f9d41ddc87fffd3fb326f126a3ff2c2792a3b9bcd726ff513c95c3fdb249a54ab897f7d3579e77721b09a95d43be7bb9e84f125d432d63bdb3dcc5fbf6a8dd2386b1e734e43a84f125f79551cdaadd4d5cbefa37d499f21d423d49f6cae6e1b9a37fef680e43a8fed27a91dfceac7b5ef5a1feba824b14251b28a00b08f562a9d15d005cf3bc9a3ceaa70d49356805c4a93ceacff003aac5005847ad04b9fdefdeac7a11ff7b4199b9f6c93fe5bb51f69fdefdeacba282390dc4b97ad0b6bff00f9ef5c9ee4f26b43ce9e80e43b04992697f7ff00b9ab96d79776d2ff0004d6f5e6fbff00e7bd5cf3bce97f71e6501c87b64d7f636d676f3cff00b9a93ed3a04d2f9f6af2578da5e5d7fcb7ff0055572db52f265fdc7ee68323d934fd6f43b98bf7ed279b5b1fda5ff2c205af03f39fcdf3fcdad0875293fe7bfef6803db3ed324d2fdeaaf7979f6689fcf9ebcbff00b7bc9d9e7cf24d5a90f8dac61ff516de74b401d259de7da7fd42cb35749617fae43fb8f22bceff00e13c7ffae32d469e36d4bcda00f54b6bfbe9a5fdff00970d685cdcc737fa868ebc5dfc557537fa86a21d7bc9fdfcff00eb6803da37f9dfb89e78ea47b9b5862fbde7578fdb789ec668bf7ffeb6b53ed91dcc5ff1f31c3401e99fda5690d0fada432fee16bc7ffb6d2c3f713dd79d51dceab6b35af9fba4865a00f5cb9d6fc9ae3ef35cfdd3cfb63ae1df5b7f2bf7092567a6aaf35d3f9eb401b9fda5f6997fd7c74bf69baf37ef7eeab9e7d90cbe7ec8e1a21fdf4bfe91e64d15007710ea4f6d17faff003aac5b6abf6fb5fdc3495cdd9a5aff00cb08249ab5269afa1d9e47970c5401d0430ddf95f6b81649bc8ff96751db6a4973b3c84921b8ff00ae758773e24b1b68bf7f7d24d2d63dcf8dbc98bf7092500707f18efeeedbfd1277af98efff007d157ae78db557d62e9e79fccaf2bb9b6ac667740e1ef2a9efae91ec3ceaaffd8efe6e6b13630e1d944dfb9ff515a8fa6bd53fb37fcf7a09e732df679be7d0ee9e6d6a7d8fcefdfd08941463c30f9d2d6c25cf932d47f65f7ab10db7935b7201b967729e556c5b4c95c9c3ac793fb8f224aeb2cf558e6b5fdfc1e4d501d4583f93b2bbcb0bf4af3fb0b9fb4d769a6e9bff003deb439cef2c2fd26af40b387f75fb86ae2ec2cff755b96d33db57401d24295a90d61a5e55886e6803d034db97862aee3c9ff47f3f75797d9dca435e99a53bf95e46eae738ce5ee6fdfcdf220d564865aa772f7dff002df5592bacb9b6bafb579f02db5537875cff009613db5007176d79750cbfbfbeb99ab43ed2937fcbcdccd5d279de209bfd7cf15579a6d7ff00e583474019f6d6de77fa8b9b9a3ce92197fe4217351fdbfc5d6d2fefe78ebb0b6bff00dd79f3db79d2d0067c36d7d736bfb8d565ad0b0b3d4618bf717de7557b6d6efa697c8fb0f9315584b9f27f7f3b470d006c429ae7fcb7f2eb43ecde77fafae6ff00b6f43ff96f3d46fe2ad02de803a07d3639a4a8ff00b36d26fdc4eb1cd5c9dcf8dad3fe5d60926acfff0084b7c4737fa8b17a00ee1344b187fd45b470d6a259a27fcb25af2bdfe3bb9a8ee6dbc77401eb1596f6de4ffaf67af1fb97f1ff009b51cd7fe31b097f7ed401e9173addadb5d791b659ab2f52d6ed26b5fdc4f2435c5ffc26dae5b7ee275f3a59eb3ee6fefae67f3e7fdcc54015e6d4bed375f7649aa49b64d2ff00cb48689af121ff005154e6bcba9a2fbb41d01fe836d2fdd926ab897e937fa85ac74fb579bfbfa26bcb5865a0d0ffd4fa43c94865a9267aa7526caf1cf50b1e74935468944352566010a51b2a6f3a3ab5beb4033f65490d5cdf450068435a895868f5a08f5981728df55e8d95a01628a2a4a0e329d15728a0d08eac4351d49bfc9aec009aa347fded49f6af6a5fb4474016ea3aa7f6af6a3cef3a802ea7fada7cd72f59f573ed5ed401636bd488f55d267ab10d005c9bf7d553ecf1d250f73e4d006824c943bffcf0acbfb4a4d523bf9340173ed2f0d4b0ff00adacff00b44749f698e6fe2f2682b90d4fb57b557fb47ef297ecd1f95e7eea4fb7f9341887dbfc9a912e53cdf3e76a8d2e63b9a921a00b3f688e911eabf9d479d41ce6a3dfbc3151f6979ab3f7d1bfcea00d0f39e68bef5137ee62acfa1ff73febda80343edf1ffcb75a91352fb37ee20acb77f26a3a00d87d4aeffe5834954defeea6ff005ed2553fb57b54734cf35005899e387f86abbdcf93beb3ee5de6aacffeaa835e4394d4ae7ce96b979a14ab97e8ff006aac3fb4bdb4b41b96bc98ea1fb35a7a547f6cf3a5fdfd58861b59a2acccc8fecd69e6fefea9cd676936ff0022b41ecd2a34853caf2205a0d0cfb9d29268aa9a59c70ff0d741323d67dca3d687418735b7935612daae792fe4fdcab16bde839c2cec2d7cdf3e75ad84b0fdefdcfdd50895d25b6cf2a80352cf4dfdd79f5d25820f36b0eda6786d6b62c1fcea00eb1267ff00961573ce79bfd7d61a799e6fdeadcde93455d005cadcd361fdd7efeb97b69bc9adcb6b9ad00e92d9ff007b5ea9a54dfbaaf13b69bce96bd63c2b73e76c82b3333512ff004eff005fb7ce9777fabad4fb7e9de53cf041e4d7cbfe3ff10ea3f0ebc4171a97da7fd1e7ad4f0f7c488f5e83cfb5f2e68a65ff009e95ce739ef973a9496df67bb83cb9ade7aaf79e27ba8624f220af3fb0d4ad26d9f379317fcf392ba0b6f15269574f040d1cd6f3d007410eabafdfc493c091c35b16d3788e6ff5fe5571efe36ef527fc26f401e889729e57fa579559ff0066d0e6af2bb9f16f9dfebd7ceacb9b5ebaff00960be4c5401ed8f61a77fcb0b68eac7d8343b6ff005d0475e1f6de2ad4a1dfe437eeaae5e78aaeefe2f227ff005b401ed0ff00d9d0ff00a858eb2ee59ffd7dacf1c32d789ff6dea5ff002c1aac26b77dff002dda803d72db55be862f22ee8fed8787f8bf755e46fe21ba9bf8aa9cd7f7735007b45ceb769345fbf692bc9f5bbf8ee657f21a4acf4d4afaabdcbfda683a0c3992ebcdf3e09eb62ce6bbb88bf7ed55dff735259fdca0d0926fdcd47f6af6a26b6ac774a002e6f3f7bff2d2a3fb57b54755dde803ffd5fa43c9a92a386a4af1cf602a3a3cea28024a28a2b300a39865aaff006af6a92803621a912e63acb8668fcaad08664868333521a92a3b67f3a2fdc5495a005584aaf5637d0738558aaf5256600ef4510d13576012547e751e751e75001e751b92887f7d479340124d443b2a3a92b40077ab09bfcaaaf450058f3a8dcf55e6a3cea00d0ff96351d47e751e750048943dfa7fcb05aa7e749479dfbda0e82e7ef268bcfa92174aae8f5242941ce58d890fefe886e7c9a8fce4ff0096f456606879de7549febab2e1a937d680687934557a2802c51b3fe7bd57a3fd77fafa00b155e8a2802beffded5cf3ab3e6a8e8009b7cd54e6df571e67a8e6a00f33d55ffd22b1eae6b773e4dd3d61fdb1eb30343c9ab889e4d63db3f9d155cb67f3a802e5496c9f7be6aa6efe4d16dfbe96b403526b6a1ec1e6ff005156128fb4f9341999f0a3c3fb89d6ae5b587ef7ee56c2224dfbfab16bde8032e1b0f3bf86ba0b3d363ad0b0d937faf4ad44b68fcaa0d0af6d61e75c5089f66b87ab89b2b41e149a2482ba008ed7bd5cfb945b5ca5b51737e9fea36d00496cff00baab1f6ffded63c3fbedf0549e4fd9bf713d680769677f5e89e1ebff0026ebf715e37613279bfb89ebb8d12fff007bfb86ff0051401e7ff1d66d0e6d452efed3e4dc4fff002ce4af03d13c437da0eae93da35b4d6f3d761fb5178ab4e9b48b7d4b6fda7c8fdd7991d7c8fe1ef12793a6a7d9678e6f3e803f472cf52fb4dac5775a9febabe63f0078912da258277926f3ebe8cb09926892783fd54f5981a9b2ae6e4aa7bea4ae7023f3bceab93797e5557a2800a37d145001be8df45140163cea92a9d140163c9fdd553dfe4c5573ceaa6ef41d01beb5749ff5558737fad4adff00392dad7c8a00af72e934b58f72f45fbd61bbd000ef54e67a1ea4a00fffd6fa3365488f525577af1cf6059bfd6d3e1aaf4500589a6921968f3aabd14012cdfeb6912a3ab14012568567a50f59999b9a6d68563e9af5b15a00514515d0058a2a3d9562b8ce70a28a2bb00289a8a2b400a2a3a28024a92a3a3cea0092961ff5b515140125151d140125151d140125151d490d0741621ab151d10bd0049573e4acb9aa4a0e72c6fa3ce49aabeca928024a37d474793401728aa7526fa00b155f7d47354740123bd57a91ea39a800a47ff554b55e803ccfc668f5e5eeef0cb5ec9e2a4fdd5795bc3e76ff003d2b19819e9735b96d79e77ee205acbfb324d572174b696b103a04ff00498bef55cfde435cddb5cfef7cfae913524f2aba0a99a96d732795f76ae42f5976d7fe75685b5ca56862490dfbc32d6a793e4feff7563dcdcfeebc8817f7b572c2d9e1b54f3e80352db52f2624adcdff006997f715ce436cfe6bfcb5a7617341a1d025cf936a9e7ffadab10dca4d2d73fbdffd7d179fbeff0051401b17973e4c4fe45476dbee7f7fbab9b87643fbf9dab712fed61b5f22ba00e837feebf7f54e1bf8ee6d5fcf6ff51596973563c98ee62ad0ccd8d366fdefee2bb0d35fecd2f9f0799e6d71f616df668aba4b6df41a1f37fc7eb64b9b57bbd1fcbf37f8a092bf3ee1d4ac6c357f23f7b6d2ff00cf092bec4fda42c2eae62fb5787dbf7b6bfeb6092be0fbfd564bf97f7f3f937b07de8e48eba00fb23c13adf9d6a93feefcaafa73c07e334f293479ebf3efc13aadf4d6a96bf698ace5afa1341f123f9b6f06df26583fe5a561500fbb126fded15c7f85755fed5d3527aec217ae2024a28a2802486ac553a911e802c5155f7d58a0028a2abefa00b155e6a8e8f3a80153fd6d69fdb2b3ec218fe79e7a2e66b5a0e829dfcde755344ad077f3bfe584958efbff00bb25063ce493797e5553a8edadafae65f220824ae82dbc19ae5fff000f9315049fffd7fa52abbd4955ebc73d80a28a1de800a2a4df51d001523d57f3a8a00b1fea6ac567d5cf3bc98a8034f4ff00f5b5bb5cdd838f36ba99bfd6d06656f3aae2557a93fe597eff00fd550058a8f7d79deabe24be9aebc9b5ff00550567ff00c26d7d6d2ffa5f97e55727b43b7ea733d52a4ae2f44f1b687af7fc7a5f4735c41ff2cebb09bfd6feff00f732d7a303839390928a8e8ad8c428a28a0028d9451401251451400514510d00494510d57bcbcb1b0b57d47519e3b3b2b55f3679e4a00b1f667b9ff51e5fee3fd6f995e4fe2afda13e15f832e1e0d675a8a6b883fe59c75f11fc63fda1fc47f153517f0e7c3cf32db42b5af9cd3c0cfe6f9f75bfcd9ffe5a4941d07eba7c3af8c7e04f89774f69e15b9926b8ff005be5c95eaa9feb6bf17bc1faddf7c2ef1be89e23b5fdcc504be54f5fb390dca5cdadbdd41fbeb7ba54b88a4a00b1454745073926fa92abd49401251ff2c6a34a92800a28a2800a8dea4a26a00af44d44d479d4015e8ab155ff00d744fe450072fe2d78edacbf71fbe96bc9e69bc98aba4f891adfd825b2d3b67ef67fded70f0f9935af9f58cc0b0efe7553799e1fdfed8ea4f9ff00e5bd67dcbf9dfea2b13a0b897f1cd572dafd21ae43ecf1d52b9f2eda2fdc37ef6839cf48b6d6eb51355af2bb0d4bc98aba0b6bf8fcaf3f6c9401ea89a95af95e7d5cb3d7ad2689279debc5ef352f3a2fb240b279b3d6e25ca43fb8ff009f5a00f70b6bfb4b9df3c0dfea2ae430f9dfea1abc6eceff00c997cf827ad0b6d4a4867fdc357401ea934cf0d1e73cdfebeb97b3bcbbff00513ffaaad8f39e6ff50d5a0123a79d2d47f3db4bfbfab90bc9345fbf5ad0b6b6f3a5fbb5d06667ff00a9fdfd6e68fde89adaa4b0b94b697c8ff9655a01d05b42f356c43fb9aa76173e77ee20adc47486ebf7e9fbaae8343e43f8cdfbeba7d3bcaf3bce5ff5f1d7c07e24f04f8aada59a7dd1cd6f07fcb3923ff555f7e7c7bfedcd06ea29ed608e6b79ebe7ff00ede4b9d37c89e0fdecebff002d2803e6bd1355786e93cfafa03c19e21fb4efb59ebcdfc5ba25f4374905ac11c3ff002d7f771efac3d35fc416dbe781a4f37fe9a47401f7a7c3ad6e4d2ae920dde7455f585b5ca4d124f03793e7d7e5df86fc613c33dbf9ed24d2d7df1e00f10a6bda445e7fee6582b8e407b05155ea4ae7024a28a2800a28a2800a2a387fd265f220aeb2c3448e1fdfceb401cfc3617d73fea16ae43e1b79bfd7b7935da223c3ff002ca3f2a8f9e697eed061ce63c3a25adb7faf6ab1f66b4862fdc5b5686cf26ae42e941914d12ac225af95f723a8e6b94ac7bfbc7f37f71401d45b7d96197eec759f73a97eebc881ab9b7bf7aa7f6af6a00fffd0fa228a961ff5b48f5e39ec06fa3f773508fe4d494014e8ab951bd0057f268a928a008e6a26fdf558d946c487fd7d0058b0fdcdd25759ff002dab8bfb62432a5761bfcea002ac3cdfe8571e7d57a91e1f3a278281533c1ed9dfca7f9ea9ea5731f95e44f59ff697b6b8bb83f77fb86aa77335dffcb7af1cfb7a27cefe334d4741bab8d4b46b99219a0fdec52475ef9f007f68db1f885127857c55e5db7896d6b9bd6fc376baf69af3dacffbd83fe59c95f17f8dbc31ae6957b16b1a3f990cb6ade6c53c7f7e27af6f0e7cae321ef9fb410fee65f236d58af8eff66ffda4d3c7907fc21de2af2e1f12dad7d71ff9065ae93cf2e51423d141ce14514500490d1feba8dc9450014515226c9bf713b507411ccf1db44f7576de4dbc1fbd69ebf2eff68df8fd75f15357ff008413c1cdf66f0d5ab7953c95de7ed69fb42793bfe19780e7ff005ffbabcaf8ff00c1fa0fef53cff32803d33c13a6da5b6f836f93fde923ff009655e88f611ffcb05ab9a5583c36e904107eeab62fecde1fe1921accec89e2faf58497f6b715fa89f096e5ee7e1df87e79ff00d6c16be557c07736763344f3ff00cb582bf403e177fc93ed1eb9c2703b89aae547525761e58514509401251451400547525474005145474008ff00eaaa0ab148ff00eaa8020a2a3a3f77e57eff00f7d401f0dfc5af1b5f4de32b883ecdfe8f6b5d6786f55bed7ac127db1c3e7d787fc5dfb25878caee0baf37f7edfeae3af44f04dfc76d6514107ee6803d41edaefcafdfb557b6b6fb356a7eeee62f3e7aa77296be57fafae33a0c3bfbff0026b9ff0092e65f3eba0bcb6f3a2fdc3a4d5c9ffa75b4bf763a00b89fb9adcfb4bf9495cfc2ef37faf54ae82c2e63862a00d0d36d92197cf9eae5b24735d3d577b9ff009e0b52585cf9d2f91b7c9a0026b6baf37c882b536496d71e7cff00eaaa47b9fb345e46da8dee6eada24836f9d401a96dadfd9bfd7bd6a5878aac66fdc6eae5decde68bcf9d6a4b6fb0f9be4791e4d7401ea16daadacd179f04f5d459dfbcd17ee1abc8eceff4e877f90f5dc695791cd17ee2b439cef3fd2e686b1fcef26e12d675ad0fddcd6be7ff00a9ae7ef1fed32a7fd30ae803d034ab98eda5ae91ee7ceb57f9ab87d36fe39a2482ebfd6d740eff00b87f22b403e63f8fdaad8cde1f7fdec90cb057c47a6de6a5f3c105cc77f6f3ff00cb393efc55ea9f1cbc496336a37b05d4fe4dbcff00ba97ccaf95e1f10dde8f2f91fba9adff0082492ba00fa02fedb5c9b48f234ef2fcd83fd5491cd5e1ff00f096f8834abcff004aff005bbbfd5c95b1a6ebda6eab6f2dafd863b6b8dbfeb2392b97b9d37ceb8fb54fe6cd401ec1e18f157dbff7f03430cbff003ce4afb33e12f893f7a96b3d7e79e95b3cd4f3eda3f2a0ff009e7257d51f0df554fb579f6be6561500fd144b98eae5717e1bbf92ff004dfdfafef6bb047ac80d04a37d53a2b9c0b9572daceeee65f2208aabe9b60f7375f77f755e916d6c96d17914019f6da6da5b7fa8adcacbb9bff265ac79ae64b9968333526bc8e197c883f7d2d1bdfcafdfd57f3ad6da2aa6fa979d41ce6879d51cd7f597f6af6a8fce7f2a80343edfe75325ff005559c97290d135cd06bc8326ff005b55a84b9f3a5a28373fffd1fa12a3ab8f54ebc73d80ab8951d4737ee6802c3a79d46cf2684a91de802379bf7555fceaaef51f9de4d00587b9aa7e754be6c34cf3a3accccae7fd6a57a1583f9d179f5c1bbf935d068973e74541a1d0435a30ff00adaad45007c97e2177b6bcd4ed676f265825ab9677ff0069b5b7f9bfd42d58f8c7a5258788535183fd55d5793d86ab25b5d7fd32ae33edb0d32e6b77fa8db5efee16b93d56dbfe127b2ff51e4dc6dfded7797e96b7317fad9268a7ae4ef2ceeac2249e77f26583fd5475ad33cdc640f8ff00c61e1bd7fc19adaf88347692196d7f7ab3c75fa21fb37fed1563f117494f0e78aa78e1d6ad6be47f891736b73a43cf69fbef23fd6c75f27d9dfdd786fc51f6a8279219777eea48ebd6a67caccfe8a13f7d12791ff2de8ff5d5f8df67fb5a7c5bb6b84d3bed31f956ab5c9bfed3ff001435897f7fabc94cc4fdb47b9487fe5bc555df58d0eda2ff004ad42da1967ffa6d5f89ff00f0b3bc47aafee20d42e66f3ffe7a495de7fc21fe3ff12f872e3c55f66b9f2a0ae8e503f5c13c49e1cf37fe42f6dfbfff00a695259eaba75ccad6b06a114d71ff004ce4afc0bbcf125f5b4bfb8f37cd83fe9a549a978e7c55a3cbf6af0fdf4b6df6a54ff5725007f419357c47fb4ffed33a6f8334ebbf879e0e9fced6e7fbd775f0fdcfed45f15347f0e269d06af24d2cf5f3da5cdd5fea4f3ddbc935c4ff00bd96492803d23c2ba0eabe27d59e09dbce9676f9a492beccf04f83ec74189209e78fcd9ebe7ff84b729345e45aff00adafaa2c352b59a2fece8163f360ff005b3d719d74ced2c2c343ff008f5f3e3a8f55d13edf6be4413f9d2edf96bcaf52d37c9df7703490cb54d2f1eda5f2209ff7b41dd4c92c2daea1ff00449ff7d77037955fa11e0fb3fecaf0be996b5f1bf83eda4f12788ecabef4fb37d9bf71ff003c2b180b1247572a3a92ba8f1c28a28a0028a28acc028a965ff55515680145473557a00b14557a28009a8a2886803e07fda12c1347f16dbeb107faa9ea3f875a97f6f6f9f6feea0af5cfda8b447b9f0d25dee8e1fb2d7ca7e09f1b681e18b7f3e79ee66f977799401f5c7fcb2fdc797597e73ffcb7f2ebcee1f89da1ebd124fa77ee7cfadcdff69b549e0ff5b4bd981b8e8f0ffa8acbbf7f3bf71b684d4aea1fdc4eb255886e526ff5eb5c8741cddb5ffeff00f7fe5d7516d37935c9eab671db7efe0ff5b5a9677924d401ef9e09f033f8b748fb5ced1c3140d51f8b7e1bf8abc3170facfd9bced33fe7a475e91a0c2f0f81aca781aba8f0978abceba7f0e5d379d6f75fbaf2eba00f91edae7ed35b10dfc70fee275a93c4fa57fc237e28d4f4ef2bf756b3f9ab59ff00698fe4bbdb5ce058fb4bdc7fa8acfb9df6d51ff697ef7f70b562dbccb997f7f5d0058d12cd3cd79e782bd034db94f2bfe5a435cfc3feabf70d5b1668f37eff00779d41ce7a05b43e75ad536b993cdf227acfb6b9f262a2e53ce97cfdd5a01d4695735d05e7990e9cfe435717a3f7a3c49aafd9b49bbf9bf75b6ba2207e7dfc7bb98e6d5ae2ebf75e6c1fba96093ee4a95f31db6b763732f913f970c55ec1e3fbf7d5752b8f3da386be7b7d3521ba7bab59eda68bfe79d7601d24ce90ea29041feabfe7a475b9a97dbada2f23f7b35bd797efbbb697cf817c9af48d2b5592fed7ecb74be750049a55cf932fee3f732cf5f467c3a7f3b64f04f1f9b5f39befb7956efc8f262af58f04dfc7fda56f3ffcb2a8981fa61f0df52f3a0f227f32bd912e526af99fe18ea525ccbe4413c7e6ff00cf0afa73c37a55d6bd75e440bfbdaf38cc93fd756e695a249732f9f3f990c55e809e03d0f47b7fb55d379d7155f52bff00262f2204a0093e4d2a2fdc2d67dcdfd53fb47eeeb3e6a003cef3a89a6fb3515977378ff2410506848efe751f27fcb7aaeffe932d58fb37fcb7a00b0ef55fce7b9a37d140051455777a00b1551ffd6d3e6a8e803fffd2fa22a3861f3a5ab0f55fcef26bc73d82e2251f72a9a5cbcd45005cfb57b565cdfbea92962ff554015a6aa7f7eae4d51cd599995fc9ad0d955f7f9d4435a01612ae59dcfd9a5ac3fb4bc351f9d250687a623f9d44d58fa6dcf9d6b5a8e9fbdacc0f33f8b5a6fdbfc336f5f29cda6a5b45e44ed1f9b5f6678f2dbcef0bdddd7fcb5b5af8cfc5bb21b3b7ba820f2659d6b8e47bd86c49cfcde24bab68bec904f14dff005d24ae4f5bf16df5bc5fda5756de77f77cb937d71fada25cc5e7eef26583fd6f975e377faddd69574fe44f2f950569081c55b126e7887e2424370ffd9bb3cdff0054de647feb6bcef55b0fb4e9a9756ab2436fa8ff00a892493fe3cdff00b8f45e6aba6ebd2f91ac5b7d9a59feedddb516167a8f83357b7d3ae97ced1f54afa0840f12653b6b9f3ae342d4b6ff00afff00429ffe993d72f61a6df4da8bda41e67ee37bd7d09ff0865dc3796f040b24d14f3f9ab3d7b87c3afd9e35cf126a293c0be4f9f418987fb37fc01d47c7914bafddc12436f04b5fac1e30f0c687e09f85577a3c0be4dbedaea3e15f802c7e1ef85ed3c37027eea0aee3c61a0da7893496d1e75fdd51cc687f36ff0016b4dfec7f105c5ac1fb98b73d70ef6cfaae91a241fbcff5ef157e9c7c5afd9bf55d7b5cd6e78207f2a0af8ffc43f0f752d065d334ef23c996d5bcdad0ccf9bfc6cfe4deda5a7fcb2b5fdd547e15b6d4755bc7837793141febe793ee455da6a5f0eb5fd57c4377e7fee6de0fdeb49257373799ac44fa3f8715e1d1ed5bf7b249ff002d6b303b94f1b25b44969a3fee6cb77fc7dff1cb5dbe9bf12eebcd7820d3e5ff006648ebc0eda6d034a95bcf69355b8aea2c35bbe9a258209e386b9cec3ec8d13c7f77aac496b7507932d7a2695616b7375f6aff00be63af8ffc1379f69b8ff4af32be9cf86faabdff0088d2d2083f756b5cb33d6c31f487c16b0fb36b715d4f5f5e5fb8f36be6ff008456c9378a2f7cff00f556b5f427fcb1a78739712490d58aaf0d58ae93cb24a28a2800a28a2800a28a2800a627fada7d313fd6d0035ffd55415628a00af4558aaf3500793fc5dd124d7bc1b7b69ff3c17cdafcb7b9fec3b68bc89de387c8ff009695fb21ac5b7da74e960ff9eeb5f8bff1174dbbff00848f50820fdcc5bfcaae8881cfdff8da3b68bc8b5d41ff00ed9c754f4df16f8aa6ff004a81a5ff00b6925769f097e085dfc42d45e09da486de0afd20f04fecd9f0f747b3f2359b68efeb403e43f01fc45f104db2d3c41a55ccd2ff00cf4f2ebde2d9ec6fed7ed502cb0cbff3ce4afab2dbe1d7872c2dd3c8d3e286282a3b9f87ba75cffc7adb7935c5500f9af679d17913ad73ff0060fb35d57ba7887e18eb96d6bf6a82dbcef22b83b3f0f6a57faba69d05b79d715c8741ed9e0f99ee7c0a906eff0050d5a1e15d12ea6f14595d415d65878564d2b48b7d02058fcdaf58f097826d6c25b7bb9e7ada007c8ff176c1ff00e12dbb9e7af239abf4b355f86fe0ed7afdeeb588249ab9bd4be0b7812fe2f22d57c9968e403f3ed13c9ab96d7e9e6fefebb8f1e7826fbc19abbdacede745ff002ca4af2bbc4f265f23cfff005f5881d67dbe386ba0b3bf7f2bf71079d5e6697f1cd2a7cdfbaaed34dbcfb34bfb86a00ed2dae7ce8bf7eb2432d6e43e5f95fbf6ac3b6bf49bfd7d49b2ee697ef473455d0739b96772f0cbf7aa9f8f3ec973a23c13cffbda13f73fc35cff008b61b4bff0fddc13d7644ccfcfbf89dbec3ed104e91cdff2d564af96f52852e62fed283f732ffcb58e3afab3c5572f737571a75d58d7cefa9585a5ccb713e9de5fee3fd6da49f7e2aec03ceedae7fd2abd534ab3fb4ecf3e7af234f2edae9ed27af50f0abda43febe597f715ce07a27f66f93fb89e7f3aba4d112486e9209d3fd47fcb4ae4fecda75fc5f6bfb7490ffd748eb734abc8eda548375741a1f6a7c2eb97f37f71e5ff00b327995fac1f0d2e63d1fc1b69773ac5e6cfff002d3ccafc6ff036a56b37d9ed60afd14f04f886eeff0044b48209fcef27fe59d7181ed1aaeb7757f75e7d73ff006af6aaf0bffcf77a126487f71b6b9c0928ff0096d51f9d5628023b9b9ff9610565cd6de4d687fcb6a928029d58f9218bef548f33d65f93e74b40162a3df527c8945001451450053a28a2803fffd3fa22a27ff554b52578e7b0470d10d154e8330b99aa3fb57b557b9fdf558b64a002a4f27f75fbfa8dd3c996877acc091364359f7373e74bfb8a1eb1fc97f36b403721a1dd288617f2aa3992b3343acd13679bfb8aea1d2b9bf0ddb7eebcfaea2a206653bcb3fb7d9dc69b3aff00af5af90fc79a23db59f917707932dafeebccafb23858abcdfe2d69b630f85d2ebfe5acff007a4adcb84cfcbbf16a5d5b7fc7acf5e1779a978821fb47cb1ffa2ffcb3923af5cf1e5cbc3a95c7d96e7c9af27b9b9bbd6254f3fccf360ff9691c75d708194e657d36ff0043d56e93ed5a547f77ca692dabedcf863f0bb4dd6348482083ed3a3ffd34fbf1578dfc2ef875ae6ababa4f75a479d6ff00f3dbcbafbd3c1fe0f4f0c4be7c16d2435d26249a3fc0db5b9b5fb25a7faa83eec95f50780f448fc25a42daed8fcdac3f0dde5adb449e4797e6d6e7f6f5ac32bcf3f97fb9ae72a07a67db3cef2a0ad4f3bfd2bf7f5f31e9bf1efc397fe237d1e0ff005b03795e6475ef09aadacd41b1b17e96b345e46d8ff7f5f1bfc63f814faf6ac9afe815f583ea4959773789e6bd741ce7e67ea5f042fbec771fda5e65b5bdd2f953ff001bdc57c4ff00123e1bf882dae134eb482386de0fdd7d92393e4812bf79355b0b1d56d5e09d6be33f8b5e06d0ee65782e9a387fbb1c71d68667e47dff00827fb2a2fdfdcdb79b3afeebccae7d344d46c3fd2b6c7345ff004ce4afa33c6df0c752d2b577d4bc556d24d6f3ff00aaf2e3af1bb99a39ae9fc85486803d03c1335d5fc5fbf5afba3e09f8552daf3cf82092696be0bf066b7f66b8fb2dd797e54fff002d2bf523e00dfd8dcec9e068e6f217caaf36703be133e90f07f825fc37a47dae783f7b753f9b5d46cf26bbcf10db7fc492d3e6ff00515c1d1081014434510d6c73962a44a28a001e8a926a8e800a28a12800a2a4a8de8023a28a2800a47ff554b450065dfc2935abf9f5f947e3cfb25ff8df53fec0fdcfef7ca8abf523c67f6aff008472ee0b5ff5bb6bf38fc0da258dcf8e62f97f7b6ade6b4f73401f667c13f005af833c3969773cf24d7174be6b57bc22573767fe8d6a9ff3caba4b69a3f2aba00d8b3ab96d7ff6697eed63db6cf2ab43cef27fd45007590ea5e4ff000c7fbfac79b679be7ed8a1ff00a6958f35e3d65cd732794fe456866749f694b697cfaea34ad553cdaf33b3ff0049893cf6aec2d9ed618bc881a8343d13fb6ff7559f73e24b4ff96ffeaab9fb6d364b9fe2ae82c344d3a1ff005fe5f9b5981f3ffc6399355d112ea08249abe57b9b38ee7fd7ff00adafd447b9d37fb37fb3a7b68e68abe17f8a9a569da0f8a3fe25dfeaaeab866741e2696d1db7ee2ba8d2bf732fee1aabef4f37f7f562dafd2197f7ebe4ff00cf292b103d02cd3ed317913d49f60f262fdc4f59fa6ef9a5f3e0ae826b6f3aba0e70b04ff9613cb587e2db6fb3593f913d74890bd727e36b6fb4787ee2081bc9b8aec881f09f8e6fdedb57f2279ff7bfc13f975f25f8cdde6d5e59e068a1b883fe5a47ff002d6bda3c6be21bab695f4dbaf3619606ff0059e5d783f8c2f3fb62e3f7f0470dec1ff2d2393e46ad00cfb6bcfed5b8482e97c9b8afa03c37e1bfb4e88f3cf731d9dc7f0c925785f8274a935ed6d2d208249a5af60d56d9eda24b581a486e20ff00967250667610d87936bf65d47ecd79ff004d239363d53b686386e9209dabcfd2f2ee697c8ba6f26bacb3479a54f3e292ba0d0fa33c13797da3dfaddc0f1cd1415fa19f0d35b92e7f7f6af143f2ff00ab8ebf35fc0daaa6957bfbfb99218bfe5ac7e5eff36beecf85d7f6935c79f6afe4c5585403eb0b6fdf4bfbff00df4b5a896d5876173e4daa4f0379d5b90dca7fcb76ac80b90a793154951ef8fcafdfd5799ed6b9cae4249aabf9dfbdaaef7290d67bdcf9d418923bbcd51a51c431509fbea0d02b42a9a255ca002abefab159f37ee65fdfb500494547ff002d7f714aff00eb6803ffd4fa12877f262a8eabcd33d78e7b00f73fbdfdc2d67bbc934b5279d525004689e4d686ff00262aafbd21ff005f54defe39a5f228332e5fdcfeebf715970bc9350efe751e4f935981628a8d3f7d524ce90ffafa0d0b155dea3fb4ff00cf0a8e17926a00f4cd293c9b24ad4acfb6fdcd9dbd5ca0e324d8f34a9e457c4ffb577c724d1e24f87be15b6f3ae20afb62da17f37ef57e59f8dbc19ae789fe2d6b175bbfd44f5d5003e63bc4bebf8bf7f3bcd7175ff2cfcbad4f0deaba9784aebcfdb1f9bff4d23afb12cfe055f6ab3a4fac4fe4f915d0789ff660f0feaba4fee2fa4f36bb80f9bffe1a86fbc376be440b1cd715cfff00c34e7c7ed7b7dd5a3db436f6b597e30f839a7780fc6fa269d76dfbabaff96925717e3cf0ddddb417ba6c1fb9b8ff009e71ff00cb5ae703e8cf875fb5a3dfcb6f69e2ab6fecab89ff007515dc75ec1f16be28ea3a57849e7d3ae64f36e96be17d37c317daf781acb4ed67fd6c1fbd8238ff00e59568787bc6cf73e007f0e6a5fbeb8d127fb3ac9401b1f0a3e2eff60f8dfcfd49bcef3ffd22bf533e087c69ff0085a9a25dea33af93710357e07de5cfd9bc40ff00656fdd40dfeb2bf433f636f1e5ad878a2dfc393ffadbaa00fd40d6f557b6b5af37f1278f2d7c37a44bafeb373f66b783fe5a57a46a5a3bdcc5ff005c2bf33fe3aeb7ff00099fc49ff8412e9a4fb3e9741d057f1e7edb7e31f37c8f01db470dbcff00ba8a4923aa767fb637c4db097fe2e1e916d7f6f3d7cffe3fd37c4161f649f4058fed16ade57971c7f26caf54f096891dcec9f52fdf5bdadb79b3c92563ce63c85cf16fc72d03e25dbbc1fbdd12e3fe597975f33fd9921bd7827bef3a2ff5bfeaebe8cf84bfb31df7c54b8baf11edfb368fe7d7d816dfb22a683a25df90b15ccb5e9d324fccb9ace3d634ef3e75ff0051f7638ea3f0078f3c5bf0ebc509ac68f7327defdec7257d7137c2bbbbfb8fece9f489344b8b5ffa67feb6bc8fc67e034b095209da2fbde54b1c7480fdbcf04f8dad3e22fc2ad3fc476ad14d2cff00eb7cbaa689e4cb5f1bfec4f7f258785f58d027b9afb21e1fdebd660144342251e4d738162a4a8d12a4a0028a28a00284a284a0092abd58aaf40051451400514514005cc3e744f057c0faddb268ff00125ed60ff96ede6d7deeff00eaabe34f8e5a6be8fe37d135fb45fdd4f401f4e6837e973656ff00356e3ba08bc89ebc8f44d4a3b9b58a7b59fcef96bb44bffb4c5fbfff005b401d45b6a55a9f6eae3e1bff00defd96b52da6f265ae80371dc79554f52bf7b6817c8ac7b9b9aa735dbcdfe8b3d686674935e496d6b6fe7d16daabf9be46dac79b524f35e0f37fd4558b0bf8ee62a00f40b0f1579317fcf196abde78924ff5fe7d61f9297317ee1ab3eff4d8ee62ff005f2435c6761d4586b76937ee27b9af9dfe34dfd8ff0068dbda40dfbd9ebda34df0658cdfebee64af0bf8dfa6d8d8788ed3ec8de7790b5cb303c9ddde6aea2c2e6d2e624827ae3fed5ed5d0582549a1e91a6cc9e5791056a7da7c997c8ae5f4d44b68abacff00965e7d066496d73e4cbfbf4ac3f15226ab6b7106ef27e5ad44b9ff009ef54f5bb64b9b5aeba6739f9cfe3cb6be87ed704f3c534507fcb3923ff5b5f25eb76d6b35e7910799e557da1f12ec351d1f577f22093ca9dbfd6f975f31fd8ffb57c4290416d1c314edfbd83f8e2aed02bf83ec2fb41ba4d7e0dfe6c1ff002cebb4f125fe9de2db58b5181becd71bbe68e4fb92d7a85fe896ba3d9a4f75079d696abfbd9238fe78abc2f5bb0bbb6fdff87e7b6d6eca7ff9671c9b2ea2a0cc8fec6f0fefe7f2ff00ed9c95da69b35d4d12790d279b5c5e9baad8dccbe45d58c90c55dc58268737ee2d2fa4ff00ae72475d0687a26837377f68482783f7bbbe7f2ebedcf86f7f7d6d15c7fcb68abf3fec26bbb6b8ff0044b9fded7d51f0bb5ed4ae7518ad76c70f9dff002d24ac2a01fa41e1bd56d755b5f2367932c15d47ef3fe5bffadaf9cec35ed4741d5d2d7519e3f367fbbe5d7a6695e36b1b99fc89dbf7b5901e99f6f9268bc89fcba8fceacff3bce8aa3868034267a8f7f932fddaafe7547e74f401a0ff00bea2a3a913f73401254744cf51f9d40125136c9aa377a21a00921d943d151cd379315007ffd5f7899ff7be7d1febab3e6b9ff961b68fb57b578e7a84934c90d47f694865a8ddfcea8e8342477f3aaa7d9bf7be7d4fe4d0ff00b98a83324485287852abcd33ff00cb0a214f3bfd7d719a124347d852887f7345cde7eea802c5b7ee6abdb3f9d7ab58ef72fe5547e1b77b9d5edffe796eae8333de121fdd25490d40ff00eb69f5a1ce5bd3ff00d6d7cd173e0c8fc37e26d57529dbce96ea7afa7137f9b5e4fe33b6f27527a0e830d2f2387fd7f990d1fdabe77ee205fdd553f93cafdfb7ef6a9dca5d43fbfdd55ce6879dfc4ef86fa57c45d0db40bafdcdc41fbdb39ffe793d7c8fe21d13c63e1bd9a778c74196fede0ff97bb4afd08d36e7fe7bc1fbaaee1134db9d904f04752667e4fde43e31d56d7c8f01f85ee619675fdecf257caf37f68e83abdedaff00a9b89ebf753e2d6a5e1cf067822ef589ff00732cf5f87fe27fb24d752fd97f7d2f9ef2d7a913199e77f667d56e9e7822f26be94f802fa97863c7fa25dedaf0ff000f583dcffa3ed93cd99abf4a3f639f86f63af788eef5fd47fe3ded6824fd58b3d935adbcf3afef76f9b5f9a7f1a7f67bf1df89fc7f7be31f0ac1e75c57e9625cc70ec82d56ba4b3b0b4ff8fbdbfbdae73a0fc5f4f0df8fedbfe25be2af075cfda20ff9e15eb9e0cf809e3bf88b2a69da8e912787b47ff5b3c5257ea879d6be579f3c155fed36bff2deb1e403cdfc37e12d37c19a25a68fa041e4dbdaaf955d043736b0c557352d95cdcd735b019fade9ba75cdd7daf6c75f9d7f1b2db4eb0f103c13e916de54ff003d7e8a5fdffeebfe59d7e79fed44f777375e7dad00751fb22c2f0f8e5e081628629ff7be5c75fa81adf849fcafb540b5f9affb065879de2d7d63c8afd80fddcdfebffd550739f31dcd9f9355ebd33c49e15fb05c3dd4ed27955e6f7f6dfbdf220f33f7f400515877373f66b5fdfb5539b55b5f352d7cff00decf401d67934565c28f37f1f9d47cf345fb86a00d444a26fdcffa8aaef349e524146fbaf37f7f401224cf51d1f699218aabef79a5fbb401628aa6eeff00f2c28499e6dfe7d005c4f33fe5bd4959eef527da7ce97eed00589ab8ff001b7832c7c5ba4dc5a4ff00eb76fcb25751bd2697eec947dbe386803f3eec3c49ae7c2ebdff0084575ff37f70de579fe5d7be587893edf179f6ad1cd5ea9e2df097873c676af6bac5b475e3773f09751f0c5d27fc23f73e75bc1401e910ea4935aa5d7fcb5ad89b52fdd24f5e6f676d75e57913ac90f9ff00f4ceba486dafbcaf22803a4b6d4ad6e65ac2d43fd6d41f609edbf7fb64ad844fdd7efeb1e702c5b5879d2fee27f2659e8ff4ab6ff4583f7d5cff00dbfecd2d68586abe4dd79ffbbfdfd7773014eff5bbbb0bafdc7990d167e2d79a5fdc4f251adeb16b34bff2ce8d13fb3ae6e93cf58eb8666d03d22c35bff45f3e7b9f262af95fc67aaff6aead773c0de745bbfd657b278e752b186dd34ed1e0ff00aeb257cf77966f0c5fbf5921ac4d8cf874df3a5fbd5d85869bf66ff5ed5cfd823f95fb86aea34d4f262fdfd00771a6fefb6415d6243e4dabd737a6a4736c9ebac4ff0055e7d06672f35e5a79bf659ff737147da7f7bf65f3e8d4becb73bfcfa34a87ed32d75d339ce5fc67f0de4f1259fdaad5bce96be2f87c2b77a57c434b49f4ff0026e206afd60d2ac2d7ecfe457ceff12fc136b378a2d35183fd56eaed03c2fc5ba6dacd6efa6dd5b4b6d713fddbb8fe74af86fc67e12beb6d45e79f4ffe2f2bcfb4afd6cbcf0958eb1a47913fefa5af8efe22f8253c192bfdaee6e66b7ffa671d7401f2de9b67f698ade09e0f3bc8ff0096ff0071e2aee3fb2b51b697cfdb14d6ff00f3d24a8d2c3409b7ddc17d73345ff3ce48ea3fb658f95e44ed2432ff00d3392803acb3ff00469629f6c55ed1e12f16fd9a5fdfc11f9507ef6be77d36e740f37c89e7b9af5086e6d2dad7f70d24d15007d5173e39d2ae62b49e7b98aa3d37c60ff6a49e06f3bc8af92ecee649aebfe7b455d069b73a95b4bfb86ff5f5ce07e9e7827c6cfaac5f659d6bd413f7d157c27e00f126a50c49e7ac935bff00aafddc95f5c784b55fb4dbff00cb486583fe59c95981de793526ca8e1a92b9c0214a3fe58d1bfc9a8f89a2a003cea28a21a00af5223f9dfebeac557dc940173c9aaee95224dff2c2ac4c9e77fa8a00ffd6f68d951f93fbdab1e75579a6f26bc73d4074a113cea219bcea92800a47ff0055503dcf931567c372f732d719a172ac79d51cd51f9de4d00159f7973523bd5786149a5a008f624d15749e1bd364fed1fdc7fcb1acf4fb2c315751e0c9bed32dc7915d0667a051bea3dfe4fefea4fb57b56873972da6fdea7cd1d70fe36b6f3aebcf825aee217926fdff00911d4779f65b9b57fdc47e6d741d87cf7736de4c5587fda56b6d2f913d7a25e797e6f91f668eb8fd4ada3ff96f6d1d79950e82bcd731cdfea3f7dff4ceb72daffc98920db24d2ffcf3ae2ec3fd1ae93c8b6f26bd32cee6c74189eeaee7f3a59ffe59d69039cfcfbfdaafc49e2e9bc47ff08e4fe643a640b5f25db7827c550c1f6a9ec6486deea7ff005f5fb31e2ab0f007893fd2eebcb9ae3fd537991d727a969be0ed57c38fe159eda3fb3ffcb2f2ebd2f68667e49e83a9687a3dd5de9d74bff5ca7afb33e1a7ed45e15f875e1fb4d3ad16be77f8dff036d3c13b3c55e1c6926b79ebc9fe18f84bfe136f11dbe8f6b049e54edfbd9299ce7f401e03f1fe87af7d92783fd55d2f9ab5ef967a97da7fd7ff00aaaf91fe06f84b4df87be1c48209fced4ffd5799257be5b7886c66ff005f7d41d07417ff00b9baf3e05926b79daa3bfb9787fd456859eab63736be45acf597a94d1c3150061dcdfc7345fbff00f5b58ef73fbaacff00f8f997f7eb5279d5c6685c7b0f3abc5fe22fc1cd37e214bfbf9e486bdd3ede973b3fe98508ff007fc8a0cca7f043e1a69df0bed7c8d3abea4b3bf8e6b7fdff00fcb7af1bd36fe4f2920af48b3b9aec31e43d01ec12fec9e0db5f3bf8ab44b5f37fe5a43e457ba585cf93b20ff532d1e21f0f25fdadc5d4107fa4574189f13dfef877f9ed27955c7dcba5cdd79f07fcb0ff00a695ef1e24d352e62fb2ff00a996bc0f55f0f6a36dbe0b45f3ab403cff005ef891e2dd1e56ff009636f5c9ff00c2dad7e1df07daa8f1226b935bbc17507935e2fa923d0687d3161f18efbcafdfbd7a4786fe2bd8dceffb5f99fbfaf81ecf527f2ae20aeb34af13fd9a2ffa6b3d67203f462c35bb1bfdff006768eb41dde1953e5af84f4af89777a57fa86af7cf097c514b98920bb6ff005f5ce07b87faedf55ffd4c4f55ecef12e6259e06fdd4f571364d13d0047feba24a921a28a0028ff96d451350010fee65f3e7f2ea3d9f7e7a9113f7b450061ea5669359ff00cb3f36bcbedb5bbbb095e082bd8264f3ad5fc8af07d56dbecd78f5981dc4de2d79a2ae6eff0055bb9bfd43d65a38f2a874f3ab8ce831ef2e6ee6ff005ed58f35cdd43fea1ab626b6acb74ae7340b6d62ea197ef57410eb77d73179103475c9fd97deb62dbf731250741243fb9baf3eb3f55df73156824de74b54f527f26d7c8aec030f4db67862fdc57516d66fe5547a25b2436be7cf5d0437e9fea36d0739a96d61e4ca9e457510bc70c5fbfae7ecee53cafbb5a0ef1cd41999f72f6334b5d06956d1cd2d73e9616b5d6689fb9aec39cf40d37f73597e2db04bfba4f3eae585cf932d1a93f9d401e5fa96cb0b5b8f3dbc9b782be4bf8afe304b6fe1926b79ff0075fbbafad3c497f696d6b7104ebe779f5f11f8db44d2ae7527b49ffd1bcfff00552492574440f23b6bfb59a2b89f405f3bfe5ab412475cdeb77fa1eb1179f6b63e4cbfc51c95b9aad9f87eda548276961d4e0ff9691c958779fb9ff9798ee659ebb00cbd112c66dffeb21aed3ed9f668bc8f3eb934d9f65fdc797e6d5cf3bc9ff5fe5f9b40173fd2fcdf3e0ff555d8689adbc32ffcb4ae1fed3243febda3ae834a9bf7be7d007d41e06d6fceba4f3fcc86282beb8d1352beb6b58a79ee639ade76ff009695f03f86ee7c9fdfc15f4e7833c7f697ff0067d3a7b68e1960ac2a1d07da1617ff0069b0f3e7ad4f3ab93f0f5ffda6cfcfae93ceac8e72c7dfa2abf9d46ff3a802c514514015ddea3748e697cf82a49a1f3aa344787fd450009be1ab88ef54fed2f34bfbf5a1de803fffd7f6086e68e5a5a2dadbf7bfbfab9e4f932d781ce7b0470a793179f3d0f523bc70c558ff006f4f37c8dd5605cbcb6a8d13c98bee55877ac7ae70342e66f3aa9a27fcb79ea4a8e69bc98ab300b9d9e5553fb4a432d57bcb9acf44f3a5a0cc92e5e49bfd457a478192486d6e279eb97b0b0fdd79fb7fd7d7ac68961e4d9d7601a890feeaa449ad21ff005f526cf27f8aabefb5ff00961fbe96839c93ed2f37fa8a913fd53c13ff00cb7a8fe7ff00978fdcd53fb7f932fee3f7d5a01c7ea5a6fef5fcfae6efec2d21ff00a6d5dc6b76df69fdfed92b8b744f37c8db2572543d48997f69b58764ff00668ea9ea5aac9febe0b6a92e6dbf7be7ced51fdbde18bc89d23fb3d203cff53b97b98bc89f4f93cdac3fb4ddc317fc7b470cbff3cebd1352792fff00d7b57077ff00e8dfbf817cead79c394a779a6a6bda44ba76b36d1f953ad61fc22f00787fc196aff65b68e1b8ddfeb23acfbcb9d7f588bc881becd155cd121f1068ff00bfb5693caa39c394fa32cf55ff009e105749a6ea5e4cbe7fd9abc9f4dd55ee76413c1e4cb5e99a6db7ef53e692ac394f58d375bf3a24ff0046ad8d575b4fb3f9102f932d79bdcde2584bf7aa9ff6dddcd2f913ff00cb7ff9695b739cdecceb3fb4a3fee79d5242ff00f3c20ae6e1b97865fdfc1ff6d23adcb67ac46687da7fe7bad5cb6d93565dcea5696d179f3d5386fdefff0071a77ee629eb403d3344b949a54af484b9af27d1e1fb3c495de5b5cd75d3333bcb6b9f265aed2cef2bcbedaf2ba4b6bcae939ccff1cf827edf6bfda3a6fee6be5fbf7baf37ecb77fb9ff00a695f6c5b5cf9d17913ffaa9ebe7bf89de097b095f51d1a0f3ade7a0ccf9ef5bf0958ebd13f90d5f33f8dbc1b2695752cf027936f5f445b7dbb41bafdfb7eeaeaac78aa1b5d62c3fe59cd2cf5a01f9e7add87d9ab934d49e1fdc57db1e15f8391fc42d5ee3ed4d24314159ff0016bf657ff846fc2fff00091f856e7ed315ad66687c976da979db279dabbcb0f152432a41037fa8af1b877db4afe7d684373ff3c2b9ce83ef8f0378dbf756fe7cff00baafa12c2f12e6d7ed507faa9ebf36fc3dadbdb5aa57d39e00f1ff00936e96b74d41ce7d3937efa24f228acf4bc49a2b79e0ab8efe750008f47faea8d28a00b10d47cb4b443450046f5e37f13a1fb34af7707faaaf64af97ff00684f1b268d15bdaeeac7900af61ac5adcfee2ba84b98fcaaf8df4df896ff0068b8f21bf75057ac695e3c49aca29e79ff00e3e9ab3e43a0f6cb99ab3f6563c3ac47e527cd5a16d79f69b5ae13423b9b6fdefee28b6fdf55874acfdafe750741713fd6bcf5cdeb773e4c55d226c86b9bd4adbed32a50739734ddff00674ad4b385fcda912dbc9b5482ac5b5b57601b16d0d6a437359f6ffeaeacc3feb683334ece1fb4d7496dfe8d5876d6cffebfcfadcb68639a2fbd5d8074166f597adeaa96d17efdab42c3f73179f5e07f12fc4ffd9578f050058f126b71dcdaf9f3fefa2af92fc6de36f0e5b4afa6ebebe75bcf55fc67e36beb097fb4a097febea096be7bf1ceaba778b6dffb47479fc9f3ff00d6c7257444e73535ed37c3f7365f6a8350fb4dbffcb29fccae1d2e7ecd17defb4c5ff3cebceedae6eada5ad0b3b98e697f71bebb0ccf58b6b98ee6d53c8f321960ff00967572177b9ff5f58f669a75cffaf6fb35c41f764ff9eb5b89617d6d2fdc8e6a0d02b52db7db7fa8aaff006092697eef935b967612432feff4f7b9a00f40f0c5cdd7f77ceaf54b09aea196deefecdfc5fbdf32bc8ecf52bbb0df05adb7d9a5af40d37c5b7573ff0012ed620f3bfe9a47401fa11f0c75bfb4e9090416de4fcb5ec0937eeabe3ff84baaa7db120b49ebeb886b8c0b15621aaf5621a00b8946ca12a4a00aef0f93fea2aba4cfe6fefeb428a00afe4a4d47d97deac430fef7cfa9365007ffd0f644b9a8ee6e64f36a44b04a2ff6435f367b047e4bf95fbfa12c12197cfa3ed5ed51bdcf932d0049733563a6ff0036b43e49a2aafbfc9a00d0f25045fbfacb9b64d44d73e74551db583cd2d66057fb07ef527ff5d5d05b7d961fe1a8ff00d4d49b3f75febfc9a00b10dcddcdb2083cbaf4849a4f2920dd5c7f84adbced4bcfdde757797f7290cffb8aec3307b68e1fe2a93e4f2bf70be4d47f6f79a2fbb43cdff3de839c3c9ff96f3b79d54f7a7cfe42d4889fbda3f7692d00477f73e4dbf9f3d79ddfbdaf9bfb8ff96f5d4789ef3ecd669e7d78bfdbeea195eebfe59544ceba674137efa27f3eb9ff0039e6ff005f571352fb4ffaf5a92e6dab98ed32fcefb4c5fbfacf7b08fcaad4747f2aa9a25d79b41d063a6956b356a5868fe4d49cc32d68437f1c3401712c12197cfaea12fe3b6d93d727f6cf3a5a911fed341ce6a5cdfc97f6bfb897f7b056a587fcf09e7ac7b378ec25fdfb7eeaa9ea5e36d374789e083f7d5a01e88932587ee276fdd553b9f13a432f91a3f9734b5e37ff00099c9ac4be47fcb29eac5869af0ff17eea81fb33d0126bbd7b64f74de4dc7fcf3aee34a47b6952b93d2ac23b9d9e4797357a459ba4d2f9102d741c476967735b1e75737f69486a4fb7576199dc59cd5d859dcd79bd85e79dfb882bb8b37f26b403b8b69aba4f26d6fecdb4e9d7ce8a7af3fb6b9ae92c2e7f7b5d0719f37fc42f86f2585d3f91079d5e0ff3e8f17913ff00adafd20bfb0b5d62cbecb3ad7c7fe39f04dde9575713f91fbaa00d8f0f3e9d61e124fb2ec865d45bf7b256a7856fed2fe5bbd1eea5f3adf515f2a5af37f0dcdf69d3bfb1f6f93716b469560f61a93f9ede4fcde6d739a1f9a7f1b3c12fe03f1feb1a3f91fea1bcd5af1bf3a49a5f22bf513f6b4f86375e2dd22cbe2168f07fa45aaf953d7e61dcd9dd5b4afe7ad0741b1657f750cbf7bf75057ac786f5b921bab7af0fb67f2654aeb34dbff265a00fd10f04f89fced904ed5eb90d7c2fe12d61feca9e7ffadafae3c13e244d62cd209d7f7b050739dc557b99aa47a8e69bf7b40173cea2b3e1b9f3a5ab08f598162bf34ff6b4d4afa1f1457e923d7e6dfed7bb21d6d209eb4333e1ff00edbbbb68bf7f3ffaf6f35abb4f0af8da49aebf7edfba83f751475e2fa95cc934be7c158e9a95d5bcbfbf6ae803efcb0f88be75d3791feaa0fdd57ba683e2af3a25b4f36bf32f4df16fd82dd3cf97ceb8dd5ee9a0fc457b6d9f37fa85f9ab86703ab9cfd0486e7ce8aabefaf17f0378f1355b5fdfb7fa85af40ff0084912e6249e06fdd571721b1d823a79554fc979a5ae6e1d623f36ba0d36ffceff515901b9b3c98a849bf7b43db54696dfbdaec33362c11eb612c23ff0096f59f670a4317efd6b52ba00d8b086386b62da64acfb6fdf455a1ff005c2b4023d56fed747d225d4676f26be13f1b7c45b1d7a2bdb5820ff51ff2d24af78fda1fc5563a0f873c8fde79b3d7e55dcf8e5ee752b8ff00590d7444e73b0f19f892fa1b74f3fcbb9b79d7caf32bc2ee6e7ecd74f5d25e6a49f637d3aeff00e3de7fded70735cffcb09ffe5850660f73279b5b961fb9ae4ddfce96ba0d36feea1953e5f3ab403bcb0b9f3bf713d761a6ea575612fefdbce967ae4d1126892ea05921f3ff00d7c75d669b6d63ff001e976924314ffea27feed7401da26ab7d345e46c8e197fe7a51617925cdd7913cfe4cb562cff00b47418bcf8123bfb7ad07b3d3ae6d7fb46d5a487cffbd07fcf2a0d0b9e75f5b7eff779d5d4586abf6897cf9d6b8fb3b979bfe25dfebbfe9a56c4373e4ffa2cff00b9960a00f78f85de24f2757f3e09ff007b5fa59a55e7da6d52eabf28fc1378973796f3eb36dfbaddf2c91d7ea6784b643a45bf90dfbaae3901d65490d53ff5d5a0895ce058ab159fe755ca0092ae567f9dfbda93fd75005c4a1ff7d17ee2aa27fadad387fe7857401fffd1f689ae7fe78553baed423d0f5f367b0534b98fcaaaeef24d2d6a22513797e5566053447f2aa37a93ed91f9359773be6a00d0f3921a93ed3e4ffa8aaf6d6cff00f2deac3ec86833077aa7737e9e53567de5fd47a2587f6f6b690568687ae78493c9d2527ff96b3d741733251e4a5b44b041feaa0a1d2ba0cc2a4d951d1733793150739637f93bea3b6479a5a8e1ff005af3d5cb5ef40163c49609730279ff00f2c12bc5ef2c23b996bda3c54efe52578bde3f935133ae9986da2793179f0355377787fd7d5c9af3f75e46dacbbfbc4f2beed731da49f6e4acf7bfac3b9bff003ab1f73d0741b973a95574d6d3cafdfd61dcbf9d597e4f9d401d63f8863aaf37892fbcafdc561a5b549f67fddd07391dcdfeb97f2a55cb987ceb8fdfad1602effe582d6c25b5d4d2f9f3d03f6857b6d96d2f91e45779617f1cd1572e89ff002c36d749a6a793419731dc69b72ffea205f26bb8b0d4becd6b5c5d85e470d584bcfdefdeaec39cef3ed9563ed9e7570ff6e4ad44bff3a2fdc568667a669b73e4d77961a9578fd9efaf40b04fdd57401ea16773fbaae813f735e7f6d7fe4c55d07f69793156807696d7fe4d58d6f4ab1f13e9af04eb1f9b5e5fff00096bc351ea5f10a0d060fed19e7a0e0e438fb6f86fa97f6ba5d6ef26de0af409ac3c25e6bf9f0495e4ff00f0b75f5597cf827f27cfaef344d4935589eba0dcf4487c3de1fb9d25f4ef23ceb79ebf3ffe3f7ecb56b6d2bf88f404fdd57df1a6bf935b9736097f6af693f9737dabfe7ad73999fcd9f886c2eb41d5de09e0f27c86f2bcb92a3b0bf4865f3f757d89fb4e7c1ad4741d5ee358b55f3a29ebe17b947b6baf227f321a0d0fa0344d55fcd483757d29e0cd6dedae927f3ffd1ebe27f0dde79d755f46784b5bfdd7d967ae803ee8b0bcb5b8b2f3e06a8ddff7b5e4fe03f127d9a2fb2cede4c55e89f69f3a5ae199d0686ff265ab0973fbaac777a37feeab103a447afce3fdb0edbced5e29ebf442dae7ee7cbe757c8ffb5d69bf69f0e79f0411d75d339cfc8fd56fd3caf220fdcd71f36ff37cfaeb352d96d755cbde3d749995ed9ff7b5b90eab25b44f0412c9fbfae7e8f93cda0e73e84f07f8f1f47952d206ff005f5ef9e15f88497f67773eef27c8fdd2d7c0e973e4fefebd03c31adbdb4ab6bff3de83a0fb434df123fdaa2f9a49abe90f04bf9d6fe7d7c47a578912dad65ba83cb9a5ff0055157dc9e03b67b6f0fda4f3ff00ad9d7cdae199d8770ef51db5cf9d43a55cb6b3f3bfd42d62058499e6adcd36abc36de4ff00afab9676d5d007496dbffbd1d58dff0066b5f3f75476d6758fe339921f0e5c413fee7cfad00fce7f8fde2dfed8bcb89e7bef3bc86f296be37d6fecb35d5bea3b3c98a75f2a5afa53e28f86eeae6f5fc8ff005503578fde7856fa6df06df3aba0e73c8e6bc7f29ed27ac7993cefdfc15dc4de12d4a6df06cf27c8a34df04eb9732fee164a0cce2ecd1ee6e3c8db5d65869af6db2ef6f9d141feb63af60b3f857e4cb16a3fbc86e275ff0096959f617f6b6d75fbff00fae4d5a01d659e95e4e909a8e9ade75a4ebe6d58d57c3c973a6c5e23d03fe587fc7e5a561e89797da55beb1a740be75bff00cf3a93c3d0c9359dd7f637fc7c5aafda3febaa5741a0437f7561fea2793caad8b3d4becdb2ea0693fe9ac758e9736b736be7c0be4ffcb5f2e8f9ff00d7c1b3ca9e803acf27c98bf70d5da793637f6b6f753fee7c8fdd7995cbe9ba6fdbff007107990cb5e81e12d06eae6e9f4edb401b9e0fb0bed2af127dbe75bd7ea87826e64b9f0bd94fb6be03f0df82751b0d5d3c881e6b79ff00d6c75f7e784ac3fb1f488ad76c9e57f0f995c607695279d54ea487f7d401713f7d562b2ffeb8355c866786b9c0b09b2a4853f7bfb8aa7febab5113c9ae80086a3f27c9fdfeeab9442e9401ffd2f6086dbc9aa6ef1db455a0ff00be8aabfd97debe5cf60a735cf9d55ff79735b1b121a3e4f368031d2c2386ac6cf268de90cb51dcdfc70d06649e75737aaeab45cdfd63ff00c7ccbe4506847f6979abbcf87b66ff006dfb5cf58767a57ef53cfaf7cb0b3b4b0b7f2204aec330b685fcaa928fb4f9d2d47e75687384d44d59eef5a10e3cafdfd00227faaad1b3fdf6cacf4fe3f22ba0d2ac1ee654820a00a7e2db6fdd25787eab37eeabe90f1b59f936abe7d7cefa95b56133ae99e7f72fe4cb5cfdcdfd741aaa570f73fb9ae63b4b1f69f3aa3f3ab9f9afdeda5a921bff003a5a0e8363fd7549f66486b3fed5ed573e79a2a0c3da1254b6ff00eb6912c1fcaad0fb349f2414191224cfe6fefeae4355de14ff005147da7c9ad0e7363ed29ff2c3fd6d58b6bcf26b1edadbce8bcfdd51a5cffa57efd6ba00f4085ea477ae7ec1fceab1f69f265f22a39c0d847ad8b6bc8e1952b8ff00b655cb6b9f3a8e703d734abff4aee2cefdebc5f4dd4aea1af44b3bcf26ba79c0f444d4aa4fedaaf33d57c4896d1565c3a979d6af3eda903a8f10eb76b6dfbfdde4f915e37adf8db43f13e91e468f3fda6581bfd5c7257caffb4cfc5abed2ad6e3c39a7578dfc0df8b563616afa04fe679b350667e90783344b5f93fd1a387fe9a49257b823bd845e7c13c95f0fe95f145ec2e93c882e6e659abe9cd075ebad574e8aeeea0961f3ff00e59c95d8687b059eb6f0ca95eb9a26a51dcecff9eb5f39db3ffa4257ac78626b5f37f71e64d4199b1f18fc25ff00093f84a59e0ff5b02d7e03fc48b0beb0f145de9d74b27950357f439e2abf4b6f0bddcf3f995f857f1f9dee7c5b713c1e67953d741ce78be8f37fcb083fd6d7a8787aff00c997fd7d78dd86fb6baaf40d36e6d2197fd549401f4a585fbf9514f6adfbd82bea4f0f6a5f6fd3629ebe27d1352b49a548206f26beb0f8757fe7689e47fcb582b8660779e73f9b525574a57ff5b58813ff00a9af2ff8c7a53ebde08bd82bd237d57bc4f3ad5ed67ff96eb55003f05fc49a6bdb5d5c79ebfea1ab8bbc4f262afb23e2d780de6f10ddff00ac86debe67d574a7877f91e67955e944ccf3774a8f99a5aed13c2b7d7317ee164ac37d2afa195fcf57fdc507399734de4fee20a92daffecd17ee3fd6d096124d563ec1750dad007a0783352fb4eaf6506eff0050dfbd8ebf5b3c18fe7787ad279ffd6edafcabf04f856fadaea2ba817fd7d7eac78334a7b0f0fda413b7ef76d73543ba0748efe756a59de563ecad848521ae436363679d2f9f5b08958f6c9fbaadcb64fdd57401b1668fff002deb9bf1cdcc7e525aeeaea126fb35af9f3ffaa82be77f16f89ed6e75e97e6ff005141a1c7eb7e1bb1b997eef9d5cfdb7802c7cdf3f6d7690de79d179f5d258279d6a95c60795ffc2b7d366ba7fdc7fafab961f0df4dd2abd912cff75522583f955a01f3ff0089344b59a27820feebd7c3faaf879e1b8b89ed37f9b037ef7ccafd28f12695e7455f29f887c3d25b7886f67817f75e479ab5d74ce33c9f4df32da54d47fd9f35a3ad0b374f0deb7637707faabaf9fcbad4b6b0bb9af1eea083fd42f9be5d4961e1b79b517f0fcebfe8f3fef60ffa655ea81cbf8874afecad5ffb46d5bceb7baae9341f0adf5ccb17cbfba9ebda3c3df0a24b989e09ff007d157d39e09f85d690d9f91ff2d60af2a733a0f1ff0004fc377b6bf4b5ba5afa72dbe12da4d716f7707ee65af50f0df84a386249e75f3a5af5cb3d3521a6070fa27862c6c2241e45750f7ffbaf2205ff00515b1790a573f729243fea1a839cb1f69f3bfd7d58f3bc982b3edbf7dfebff00d6d090bd00687da5269beed68567a20f2aa44a00d34ff55567ceacff003bf75425cffcf7fdcd0068435621f2fcdac77bfa21d492da803fffd3f5086a4ad4874f4f293cf6aaf73fb997f7ed5f367b067eff0026a3b97f262fdc54933a546f6d7d345fb8b19668a9fb3032ddeea6aa6f617735587df0ff00af82586a39b55f2691999f0e95750cb5b96d671db45586fa93dcff00a86a8ffb49ff00e5bb7eea8343b4d2ac1ee6f12081abd6111ebcff00c01612794f753ffaaaf449a6f26ba0cccff3bf7af46ffded145687387334b43bd57dfe4d1be803734dfdf4be457d01a2695696d6a93ffa996bc3fc309f69d452bdf2feff00ecd6bff5c2b6801e6fe30992e77d7cefaadb57b26b6fe76faf27d493c989eb8a675d33cbf55b6af2fd491ebda2f2dbceaf3fbcd35e6ae63b4f33bc7a13f73febeba49b44a2dac3ce8bc89e8032eda1fdef9f5b8937fcf0ab1fd9490c551a5b793401a897f562dae52197c8ac7fddcd12546ffbe9fcf816833371f64d2d090a79bf76b0d21786eaba0b0992696800b61f7fc85ab889f698aac59db490dd7ee3fd54f5b90ecb6b8f3eb43423b0b093ca4ff963525cdb25587fdf4bfb8aaef6d1ff00cb7f32b3032ee66487f71525af7ab93582795fb8a8edbf73401b96173e4c5e7d7409aac7e53cf5c5cd0bc3fbf81aa9dfbfd9ae93c8f2e81fb3372fefeeae654f212ba4b9bc7b0d26b1fc2b7e9e53f9eb527892f3ed364ff2d6823f2afe37ea4fac78b6e3cfacbf845aad8db78ff4cf3d63f2aebf755d07c7bd11ff00b6deee0af9ee147b6ba4f23cc865fe1923ff009655e940e33f5913c4efa0dd7f6740d143141ff4cebb0d07e2ee9b35c7f674f7324d713d7ca7f0badbc41e36f05c5fda3fbe96d5abdd3c13a558e83b3c8b18fcdddff2d23ac40faa2cfc55fbafdff995ea9e09d6bed3749040d27efebe7f7d56c6dad7f7fe5c35ea1e00df0daa6b307faa9ebb0ccfa43c6d72f6de08b8f21bfd7ad7e01fc57d575cb9f145de9d3cff00ba81abf663e2ef8f2d7c37e007827fdf4b3d7e23f8db52fb7eb971a8ed8fcd9eba0e739f87f732d7496d33db4a93eeae3d2e64f36ba4b6df73b3fe7957381ea1a26a56b35d27fabafb23e175cf9da6bd7c17a54290dd24f5ee16df13afbc19a27ee1bf7b3d007db90bd49ff2dabe03ff00868dd56196ae587ed397de6f913f975cbc807de1e4f9d4ef3a3af847c43fb486b9e579fa6d73f61fb516b973b20ba58e1960ad3900fa13e2d7827fb62e92ea05af039be12fda6e92ee74fdd57d19e00f891ff099d9f913ac75e9173a525b5501f1fdb7c2bb4b6b5fdfc11cd2d72779f0963f29fe58e1afb32f2c3ce96b97bcb6f2627f96b1e73a0f86effe15a4374fe42feea0a3fe15a7ee92beb0bcb0acf4b0a39c0f37f0df84a3b68aded675f3abea0b0fdcc5e47fcb2db5e4f616d1fdb2bd53ed3fba482a4d0b89fbe96b636561daf7aeb2dadbcea00d8b6b6fdd56e58224d58f0fee62adcb1a00e7fc7f78fa5785ee2782be13b9d4aea6d49fe6f3bcfaf78f8d9e2abeb9bcfec781bc9b782bc0f4db5ff484e6b09cce8e53d334499fca482bd22cfcc8624ae3f4bb37aee2dadab3a607516ffeaeae7fcb2f236d5386b73f770c495d6739cfde69bf6997fe99571f7fe098ee65f3e7af588614f36b43ecc937ee36d0667cc737c34f26dfcfdb5b9e1bf86ff68b34f97c9960afa2134a49aba4b0d363b68bf715d8071fe12f067d9a248274ff00535eb1a568ff006696ac585b7935d259c3401b1669e4d5c9a844a1d28031efe6acf85ea5bcff005b59d41ce5ca3ed3e4d476cffbda91e64a00921b9ad04ac7ab08ef401b9f66f3a2aaef60f34b59ff0069786a37bf7f2bc8fde5006c4d616b6d17efdaac5b5b58cd5cda6cff005f3f99e6d7516d379d6a9401ffd4fa32c3c197de6bcfac5cc70d6e43e15f07432a4f773cb732d7b459f893c1d356a3cde15b98bf70b1579bc877739e376d73e12b68bf71a75b574167e2db187f713c11d768fa6f84ae7fd7db450d65dcf83fc1773fea164f36a8933dee53558bf71e57fd73f2eb8fbfb0b1f3bc8d634549bfe9a471d74973e09d3a197c8b4d42486ae5b787bc410fee279e29a2a9e42b9cf27b9f85de0ed637fd96e65b0967ff0096725161f0593cdf3fed314d1415e9973e1eb1865ff4a68edae3fe99d1f63d734a8bcfb478ef2de8e40e739bff008426fada24820f2e68bfe79c75977361776d2f91750490d770fa958ffcb7f32196a3fb7dacd6be479fe7551279bffd70a8edadaeae65fdc2c95e89bfc9ff009611558b6d4bcefe18eb9c0e1ffe11ed57fd7ed96a9be95a9795ff001ed257a44d78f6d51a5fdf4d17de928039bd112eadaf13cfb69218abd32e6f3cedf5c7a6abfbdf227adcfb4fda6d7f71401c7ea55e67aade7932f915e89aafefa2af37bcd9584ceba671f79735cddcdca4dfc557358b6f3bfd43579bdffdaeda5ae63b4e8269921ff5f54d218ffe58579dde7892fada5fbbfbaa8edbc6c9ff002f5fb9a00f50acf9b7cd2fee2b9fd37c55a6dfcbfb8b98e1ad8b0bc49bf7f03f9d1506658b6b0fdefefeae43fb99fc8a2e7ed5345fb8a21b94b6ff005f4011c30c9e6d6859db25b7fafae7effc5bf66d906dac7d37c55757f13f9eb41a1ea9f6af6ab09731d79dd9dcbcd5b1b9e83a0ec37d0f73e7455cba4cf55df527a0e73a07d4921fdc547f69ff0096f0570ef73fbd49eb63ede90d9dc4f41d06c5e6b6f0c5e4572fe4bdcfeffcfae5dee649a5f3eba4b0b9f26d7f7f401e89a56ffb3d1797324d13c1bab2ecefd26b7ab1401f3bfc51f0ac77d6fe7edaf8ef55f0ddd4375e440bfba82bf4b355d2bedf6b5e2faafc2ebbbfdfe4415d3099c7381f27f81be27788fe1d6ae93c0de75bff00cb582bf403c3de3c4f19e889ac5a2c70dc4ffeb63f32be4bd4bf678f18dcdc7ee2dbf753d7ac7c3dfd9e3e2168d7093c13c90c55b9ce7b6787ac352d7b574827824afb52f2ff00fe112f0427cb1c32d63f803c1377a3e92975e206b687c85ff595e2ff001b3e275f5b44f040be74507eeab6818ccf99fe34fc4bbef1245f64f3ebe4f9a179bf715d86a4f7dac5e4ba8cfe5c3e7b7eeab1ee6d9ffe5bb56c51876d0f932fefeae5b5ff00ef7c8a8e1b6fdefddad8b3b049bfd42fef6803a4d2bed573716f6b55fe275fc70daa69dba386582bd73c01f0f7c5daf6dd46d6c7ce96a87883f660f8c5ac6a3e7cfa479315007c6cf793cd15476d73e4cbfbf4afad26fd97bc7fa341fbfd3e49abcdf55f857e23d1e5ff00898e9f2435d8719e2e97ff007e7dd5713fb36e6ebcf9eb7352d1e4b0ae3ee6dbfe785007d39f07fc67776dabf9107faaff00555fa4160ff69b34afcbbf833a2490f8853ecabe74bfc5249257e9a68933c3a4f913b47e6d79b33429dfdb572f7f0d7697932571ef5c533a0e3ef12b0eebb5751795c9de5731a1634a87ceba4aee3fe5b572fe1e4f3a579ebac852ba6005c44aeb2c3f735cdd9db7fcf7ae93ed5ed5b81b16cfe74b5635bd49347d125badbe7553d353ce96b87f8a9a95d43179105007cd7aac3fdaba8dddd4fe67efeba8d2b4a4b689279eb1ded9e8d1ecefae756fdfb7eea803d42dbcbb68ab42c2ff00ed32d63bef9a2f2377fa8a9347ef401dc59ecf36b72cff007d2d73f66fe4d7410bf93150666aa7fadae8ed7bd72760fe74b5d025cfefbc8a00e92d7bd6c5af7ae5ed7bd7416d729401d659c3fbaaea2ceb93b07f3abb4b647aec03453fd6d5f787f7559fe4c90d6879de4dafefe80383d4bccf378ac7ad0d4ae7fd22a9efa00aff003f9b5a15079b0d26fa0e70f3bc9a3ed943bd53ff005d75e441cd005cfb7f9344372f732f915a167676937faf5ad8b6b6fb345fb8823a008d344baf2bcf81ab62dacefbcaf3e7ac79b5b9eda578275a3fb6fecd127fcb6a0e83ffd5fd58bff00681345fb8b18eb0d3c01fbd7ff897d7a27fc25be1cf2bf70d51dfeabe1cb98bcf9efa5f2bfe99c95c6070773f0ead268bf7ff00b9ac39bc13a1db4bfebe586bb886ff00e1ecdfebefae61f22a47f09782fc492fdae0d6a4f360a00f3fb9f0925cdaf91f6efded71f73e15f13d844f3dab79d157b87fc2b48fcaff0045d5e4f37f863f32b9fbcf875e31b6fdfc13c7350741e3f0eb7a8db45e46b36d523fd96e7f7f6bfbe8abd43ec7e2a87f71756d1cd1567be95690dd79f3d8f932d06879ff00936973179175751cd58f7fa27eebcfb5b98e697fe79d7a05cf84b4eb9ff513c9e6d72f73e1bd474afdfc1e6795401c7db5cdd5b4be45dad6c5b7d96e6e3fe78d5cb9d29ee7fd7abc32d736fa6dddb4be44f5c607610d827fcb76f3aabdfbc7e57ee2b0fed2f0ff00a86fdd553b9df344fe4500579ae7ce96ba0b6b9f262fdffee6b8fb3b98edbf87ce96ba4b0b67d565f3e7ff0055050067ea533cd13ffcf2af33bfb9afa52f134db9b3f236ff00bbe5d7ccfaae9b7536acfe47faaaccda0727730f9d5877fa6bdcd7a6269543db7935ce6c781dff0083fceaf33d6fc13756d179f02d7d80f6c9357377fa6a5cc5e46dacce8e63e0fb9b0bad2a57ae934af16bcd125ac0dfea6bb4f1b786fc995e7816be6fb699f47d6de0ff0096541d87d517fe24be86d53c8a2c35bf3b7f9ebe7579be9ba979da6a4f3fefa5ad4d2b58fb4dd7ee12803d026ff4997cf9d7f75525b69be4ca9040bfba9eb3ff00b5526ba4b482bb0b0d4ad218bcf9fcbfdc50058b0b0f265fdfd5cfddc35e7f73e36b5b9baaa6fe2ab59a5fbd401e98f7ff00f2c37547fdff009abc8edbc6d6335d7efdaae3f89ed7e7a00ec12ffce8ab0eff0052f262783fe7bd71f67af5af95e440d54ef2fdfe4f23f7d401d07da7ce8bef56c5b6a5e4daf915e776dadf932ffaaab96da97da6803dc344bff3aba47bf487f7f05789e9be248eda5fdfd751ff00093c1e77de4a00f5cd2ae52697f7f5e81a6c36337f0fef6bc0ecfc4f1f9495e81a6ea57534bff3c62a08e43df34dfb2f9a9f2fef6bb4b344f37cf9ff00736f05795f86efed7cdfdfb57d01a2689e1cbfb379eeb50f2629eba607348f9dfe277c578eda57d1b4e5f3bc8af84fc6de30d735889ed752b1f262afd24f157ecbbe03f19dc3dde8de28bdb6b89ebcad3f603f105ceac9e7f8a3ceb7af4cf379cfce3fb1bcd124f0561dfdb3f9bfbfff005b5fb589fb16fc2bf0dc1e7cf05ceab5dc69bfb25fc0c9af53c4175a0d073739f81f67a6c9ac4be45ac124d2d7d51f08bf669f1578f2e229e75f262afd80b3f067c1af0c6a3f64d1fc216de6d7b458786f409ad7cfb5d3ff00b2a80e73e6bf057ecdf75a0e9096b04fe4cb5e816df04efbcaf227d5ebd63fe11830ca9773ea173356c59dfc6f3f913c527fd749280e73c2ee7e09ea30cbba0d57ceae4f55f80f25ff00fc7d5b5b5cd7d6973bfcafdc4f58e97efe6f91e6574191f15eb7fb1e783b588bfd2f488abc0fc49ff04f4f08dfcbe7daf996d5fab9febbf8ab3dedbcedf5ce07e4df87bf63c93c1975e4417d5e8979f0d24b08bf717324d5f6e6bda55df95e7c1079d5f35f8b7fb734a97cf820a0e83c0f52d36fadbf87ceaf3bbc7f3abde352f16a4d6aff006b8121b8af13b9f2ee6579ebcc99b40e1ee66ae4ef2fd3cdaec352ff005bfb8af33d4afdfcdf236d67eccea3d23c25379d179f5dc435c1f856dbc9d27cfaed2cf7f955b999b1e4f9dfea2a444ab96bdeae25b4734b5a01b1676dfbaaf13f8917924dabf915ef96dfb9b5af94f5bbf8f55f10defcdfbd81a834383bc779aebc881bc9aea34dff00408bf7ff00be96b9fb9d353ed5e7c13fef6b513fd6f9f07efa803b4fb67936afe4558b0b9f262ae7eda17ab16d7290fee27a00ee2dae7f755b90dcfeebf7f5e77f6f4877cf5621d63ce893e6a00f48b09bfe5befadc4bf1e6d79bd86a490c55a1fda9401e910ea5fbdaea34a99efee92d2bc7f447fb4cef3eefdd57ba5b5b79d616f3da7ee65b5ff009695d007b4695616b6d6e9e7ff00adaec2da649abc6ffb56ee6b54ad8b0f10fd9a279e7ff9615a199ec9f668ee62f22b87d7bfd1adfcfacfd13c5b69af5aa4f037ef606af40bcfb2dcdafefd7f75401f2dde6a524d71fb85926a12e7529b641058c934b5ef1ff08de950dd7daa0a8edb44f26779e06a5eccc79cf1bf3b529acae2efc8ff008f5a8ec3557b98bfd4495ec93786ff007be7c13c9e54ff00f2cea4b6d29edad7ec96b17934c93ccf65f4d17fa87ad4b0d35e6892eee97c9aef2f2dafbc8fdc2f9d715cdd83ddcd677169ac412432d0048973636d1547aacd750d9f9fbab2f55b6be9b49f22d60928ff004ab9f0f24175e6432c14019735ff00fcb09dbceaa7737f25b5979f3ffcb0acbd5744bad6224b482097f71ff2d23ae921f04df5ce90b6b3b566741fffd6fb32c2fd3ed117da9649bfe99c75ee161adf82ae6cded751d3fc9af03ff8492d2189ed60aa70bbcd2ffaff003ab8cec3e8cff8493c01ff001e9069fe7455d0695f61f125adc5ac1a57936ffc32475e3fe1bf12787341b27fb469f14d71587af7c5dd46e65f2347f2ec22a0c390fa734df0df87edaebf7ed24d2ffd349aba086f343b6fdc40b257c87e1bf1b5dcd79f6bba6f3a5aef352f16bdcfefe09e833f667d3961736b37fcf3f2aa3d6f44b1b9b57bafb37ef6be574f8a3776d75e440d5da43f1d7f75fbf5f3a97b40f667589e0cb5b9ff0090c4ff0066adc7f04e9d6f1791f6e9268abe53d6fe215f6bd75f6b9daac5ff00c48d5755b3b7b59e7921f228f686e7ba5ff802c6e65fdc5f47597ff0aa35cf2bfd7c53455e2761a93c37493f9f24d5f4a78275bf3a07f3d639bc85a60799dffc25d73fd4416d5c7cde03f15585d3ff00c4be5af54f1278daee6b848209fecde45717e24f885e20b6d904173279b599a1e5f73e15fb35d35d4eb243fdef32bb4d292d7fd44ebe75bc15d069be36d3b5e8934ef152f9d14fff002deb0f52d4ad6dad6eff00b1fcbf2ab9c0c7d6f5592e62fb2dac11c31415c5bd9f93179f3b79d2d135cbc33fefdaa3b9b94f37ef50072ee959ee9e756c5ccc95cfdcbf93599d057bf4ae3defebacfb679d2d63ea56cffebe0ae703cefc49669aadabc1fbcf36be1ff1fd85d695a8fee163afb03c49adbdb6a56f06eae4ef3e1bd8ebdabbeb174af379f599e8d33e53b0bcbbfecefb2ee92196bb0d12e6fa1ff44b5b69668bfe7a7975f62587c31b19b6c106951d7b069bf0d12dadd3c8b68e1ad03da1f13f87bc37e35d57f716b6d24314ff007a492bd634df84b750daf91ac6a327efebe98ff844aea1fdc6ea21f095d53f6665cc7cd1ff000a2bc39e6a7913dcf955bf61f097c1d61179104124d5ef9ff08ddd7fa881a8ff00844bceff005f3d1ecc398f17ff008575e1587fe5da3a1fc01a1cd179f0415f4a689e1ef0e7fa8d4bcc9ab52e7c25e1c87fd4351ecc3eb47c4779f0c53cd49e05af3bd4bc13a95b4afe47995fa19ff08969b3455613c13e1c9a2f227f2e6a3d98731f94f3689a8f9afe7db49e5553447b0afd44d4be1d78726fdc415cbc3fb3df856fff007f3b52faa9afb43f36d3fb7f58bafeced3ada59a59abd534df845e23b6b7f3fc46de4cbfc31d7e80683f097c25e1bfdfdaf97e6d7a0689e09f0adfdd3ff6c4fe751f550f687c0fe1bf875afdccbe7c16d24d1415ed16de18d46dadff00d449e6d7db9e15b6f05e8f6af06e8fcaaf48d36dbc01af7faf58ab4faa997d6cfce3d36c24865fdfb490cb5e81617375737b696bb649abe90d6fe14793a8bf916c935a5d7faa92bb4f09782bc3fe0c8bed7a97efa59ebab90e19cce3fc3da6f8821d3a2836fd9bcf6ff5925760fe09d72db7ea575aac935bdafef7cb8eb43c7f79a1db7d92d209ff0075feb7cbac3b0f1cbcda43c1a7411c3e47faaf33fe5ad751ca751a6fc47b19ac3c88209268a1fbd1dcd1ff000b5e39bfd7d8c5e55797bf8abed33a4175631432cff7a4ae82c34df05f95e7ddea1279b3ff00cb38e803a0bff1b6810dd5bdde8f6dfbdff96b256c26b7e2ab99de783cc86debc3ee755d37c377b71fd9de64df37fac92a4bcf1fdf5cdafd97ed3e4c54187b33ea8861be87f7f3df47e56da91355d3bfd44f73e74b5f15ff00c26d7d0c5f649ee5e6a92db55ba9bf7fe6c9407b33ee8fed5b1f2befc759779a968761179f3f97e557c870f88751862ff8f992a3fedbbeb98bc89ee64a03d99f584de24d026d9e45cc75b9617fa6dcc5e46e8ebe2f777865fbd5d8787bc4ff006697f7f408fa72fec3ecd6be7da2f9d2d781f8ab4ad5758df3cf6de4c55d83fc4ed2a1b5f227592abffc249e1cd7b641e7c90f9fff004d2803e23f19f87bc9bdb8b49d6bc8ee6d9ec25f22beb8f89de1b7b6ba967dde745fc3257cef796c9731791755c67740f17d4afd26ba78276af37d49126b9fdc5741f147c37a8d85d2eb3a3b79d6ff00ea9ab9bf095b5debda95bf91fbe8bfe5ac9599b1ef96761f66d392d60ab96c8f563e7f2aae5b27ef52b40352ceba0b386a9db585749676d5d0063ea573f60d22eeef6ff0d7c577fa6beab7ef7703793e7bff00acafb23c7933db691fb86af9bfc9fb7de2791feaa0ae73430ec3c24f0daf913cf5b967e1b8e1fdc79f257a259e99fe8ff76ba4d13c12faadd791b680387d37c3725fcbe441149357a4689f073ed3fbf9ebe84f067826c6c2d53e4fdf57a02225b56d08199f37c3f006d6e62f220692a387f66992197f70d5f505b5fd6a7da5e6ff0050d5afb3279cf99edbf678786dff007f7358faafc04d72dad7fd15bceafab1ee64f3684bf7865fdfb565c81ce7c4f61e09f11e8fff001f56d2d7a6787ac35cb989e0815ebe947bc4b98bc89fcbaa735b24317ee16386b5f661ce791e95e1ef15436ef05dc15a17961fd9565713cf079d16daf54b6b9f262fdfd47e75adcfee27ff005547b328f9afe177dbbed17b6b0412f95bbcdf32be9479921b5fdfcb51c36d05b7ee34ef2e1f3ea9fc90cbfbff00df5302c7db1e6a912e7fe9bd67cd7359734c9ff2c2839cea3e7ff9ef4793e4cbfbf9eb2e17f3a2fbd43c3fbaf3e76a00d8ff0046a3ed3e4d73e8fe7558ff005d401aff006fb5a67c9345e44fe5d63ec4865ab940173ecd1c3fea287a8edbf7d562e7650741ffd7fa12cef23f352ba8b9d4ac61b7610579dc3b2189e7aaf73735e39ea1b17f7ef35476d379d17efdab9b4fdf4b5ae9feaa803a9d36e7c996b62f35b921ae2e19bc9a26b9f3a80363ed924dfbff003287bf7f2ab1fcea87ce8e8034a199e6baadcb0b0f3ab1edb6435b10dff936b401b1e77d9ab62dbc6da8e956bfe8ad5e7ff69f3a57f3daa44b092e7fd4357401b0faf5ddfcbe7cedfbdaa7a95e3cd124fbaabc3a579d2ffadf26b3effccfb6a69dbbf7b58cc0d8b677b6b079e0692b3edb527f2bf7ed27efeb9bf1878863d0749f2206ae7ecefd2fef52ee09ff0075e45737381b1a96abe75d567a6aaf5cdbdcc70ffaf6a93fd4c5e7d1ce4f21b897924d45cdcd7276d35d5577bc7f35fcf6f26b236372d93ce96b62677f2ab93d07588ee6e1e081a39bc8ff005b5d44d401c9a7c378f55d47ed5a8cf24d5eb9a57856c7fe5bf9951e95be1ae812e7f7b5ac0091218ec2ebc8ad48752f265acb9aa3aef33362e6fd3caf3ea4fb679d58f37efad684fdf4b4004d73e4cb5b167729ff002deb2ee6d93fd7d093793401a97337fcf0fdcd10dff9317deacbb9749bfd7d5387ecb37ee3749401b8faaa5685b6a4936cae4eff00474f2bcf81a4a92ce17f36803ac77a6f9d1d66bbd08f401a1f6c4868fb67eebefd67dcfefa8b674ff515ce04973a97eebc8828d3755beb6ff50de4d5c7b34f2bcfaa7f66b59aba00f44b6f891ae5b5af91bbceab1a6f8dafafa7ff004bb993f7f5e5ee959f6c97d6d715a01ed9aade3dceff009fceb7acbb0d563b68ab93fb63f9355dde839cee2e7554b9fdfc16d1d63ff69490ff00a8fdcd65d9cd47faea00d09af3cea2187ed351fd9a39a2aafb3c9a0da058b9b3f265ab09b21a8ee51ee6dff70d59f6d6d754146a5cdffeebf71525b5cf9d5cdf93750cbe44f5a167fb9a00d0b9bc921a3ceaaf75da8474a0093ed3279b8acb7bfba865ff005f5b1f6649ab3eff004ab4b98bf70d413c847a96a4f35bfefe7f3abc9efdc79b5dc5e69bfbaf22b8bbfd35fcafdc5719472fa95b25cd9dc5a4fe5cd15d2d717e09f04c9e0cd21a081bceb8ba6f36bd212dbcefdc4f5b893793b3c8a00e0edac1edbfd7ac95d259db4773b2bb0b6b6b5b9ff5eb5b96de1eb1ff009615b7201cfd859bd7516d6dfbaad487c3d2435a09a53d6c0785fc4bdffd9df6583fd6cf5cff00827c12f6d17efd6bd83c4fa0fdbf51b79e7ff9615d05b69be744907fa9acc0e2edbc2be74a90415eb1a25858e8f125acebe74b525b27d9a2f220acbd4ae5e1fdfd007a07da53caf3e0acff00b64d5c9d86b69357496d78935687385cdfc9525b5e4943d61bdcfef6803b84bfbb862f227aaeeef735976da97ee92ae3dcc74016111eac79d58ff6ca911ff7b401a8f73425cd67ff00aea1ff0073150741a90d48ff00eb7cf9eb974bf7a3e79bfd7d00750f54fecde4cbe7d534fdcc544df6a9a2fdc35073973ed5ed51efff009613d57b0b09268bf7fe679b563fb36802bcd324375fb8ab8973e74b54de6b587fd42d46937fcf058e83a0b979ff001f1fb8ab9e4c9345597737e96d2d537d6ffe78347401b090bd58dffbaae3edb55fb4cb5b135cd007ffd0f44fb7f9d2d495a1f614aa7728fe6fee2bc73d4342cd3f7b562a3b6fdcc5fbfa93cea0092a349bf7b51f9d4227ef6802e429e74bfbfab0889e6fdcaaf6c95b10d001f3f9554ee6f3c9b5ab17f73e4d71f7973e76fae802386f3ceba7ad8fed5f26d5fe7ae5ecea9eb779f66d39e7db5ce016de24beb8d5bf70d27955d45b5cdd5ff8a1eef77fc7aad737e1274874efed2f2aba0f0df970e9b77a8cedfbd9da80352f11f58d5d2d36c735bc0bf3563dfd9d8db45f6481a38659e8b0bc9218ae3c8ff5b75ff2d2b9b7b6bab9ba79e7a00f3bbcd4becdaba5add7fadadc7d4a3fb2b4f3b7fa8ad8d4bc016baf7d9e7dde4dc415c5ff00c2aef1579af07f68470dbd66686c695a947732f9f04ffbaad8d492d668bcf9dbf753af94d25727a57c25f1068f2bcf06b51f953b79b5d843e09926ff0090ceabe745feb658e3a00f27f0df86fc5b61e28ff8a7e7f3adee9bca9fccafa934af0dfd9bfd2aea78e696b8bd36e6d6da77f217ceaea3fb4a803a89a14ac786ff00fd23c8ab96cff69b7acbbc44867f3e0ad0cceb21b9a8efab2d2e7f7545cdcfeeaba00d8b7ff5754f7fef6abd85cd46ef401b135cf9d1565efa8ea449bf7b4011bdfbf95f76a9d85cbc3755d443fbe8bc8ac3bcb392197cf81a803a486e5e6b5ac749a486ebc882b42cdd3caac3d49fecd3d005cd55efadbf86abd85cdd5cd6c25e25cdad4761f64865f3e0a009365d7fa8a8edac1e197f7f3d6e7936b345e7d61fda7c997c8a00dcfb4fd9ad7ef79d51d9dca567fc935bbd61db5fd007a04d6de745e7c0d54e6df5869732431553fb7c934b401d6434563db5cfdcf3eb52b4024fb7f93febe8fed2f3bfd4563ea49ff2deb3edae5e1a00ef12e7f75527da7ceae6ec2fff007bfbfad5b3ff005b4009f6cf277d1677ff00bdab090a4d51dca7932d0017973ff2de8fb6510d67ba279bfbfa00d09b52b59bf71bab3e1b6bef37fe9955c7b34ff5f02d49ff005c2803438862ab90ecae7ef37c3179f4585cbdcc5fbfa00d4bf4fdd572f0a79d2f91b6bab7ff00555ca23f937558cc0e6ef2cdeda2bbbadb24d58f6d73279b5ec89f64f2bcfddfebeb83d574192da7fb5daafeea76fdec7588125b7faaf3e0aea2dae5e1d9e7d61db585d795fb84ab96d0bc35d807696d7f2574967357076137ef7f7f5b09a9793fb8828034367da6e9fe5a92e53c98ab2e6d4bf7b5a96d73e745fbfa00cbb6b97865fbb5b0efe745f76b0fedff0066ba7b5a8ee6e6ea196802474f27f7147dbd2daa3fb4dacdfbf9da4ab096d6b732f9f05005c4b9ba9bfd451ac5b79d124f562da6786eaac5c7faba00cfb04486ba4f9e68ab8b7bcfb3455d05b5cf9d6e94011cd0fd9a886e6a49bf7d1557ff0053401b96d72951bbf9d55e1a280086da8df43b8f2ab3d28037126f3ab41113caac3b5ef5b090a7fcb06a00a6f7ef6d2fee1689af3ce8bcf9ea474a3ecbe75bd0053444b9ab9f607f2bc882a3df1db4b573fb4ff77401cfbe9bfbdf3e76f3aabdca58ff0077c9aafa96b725b5d7910567a5cbcd6be7cf401a161347e6d5cb69bce96abd85b3cdfbfab9b3ecd401ffd1f59b9ff54f5492aedcff00aa7aa495e39ea1b6ff00eaaaa55b7ff555528004ab8954d2ae25005cab32ff00aaaad5665ff55401c75f565d6a5f565d74014eebb567ebdff22fbd685d76acfd7bfe45f7ae703a8f0dff00c8ad443ff22bd1e1bff915a887fe457a00a9a27faa4ad4bdff0054f597a27faa4ad4bdff0054f401269ffeaa8bbff5ab469ffeaa8bbff5ab4014e6ff005b4d7ff554e9bfd6d35ffd5500665b7fac4ad4b8ff00575976dfeb12b52e3fd5d00741a27faaa2f28d13fd55179400435a16bdeb3e1ad0b5ef5d004a9feb6a4d43fd55469feb6a4d43fd550056868a21a280372d7bd417bfea9ea7b5ef505eff00aa7a00c9b2ff005a952eb7feaaa2b2ff005a952eb7feaa8023b0ff00906bd409feb6a7b0ff00906bd409feb68036ecfee573971feb6ba3b3fb95ce5c7fada00dbd36b665ff005558da6d6ccbfeaa8022ae42e3fd6d75f5c85c7fada00dbd37fd5257516bdeb97d37fd5257516bde8024bfff008f6ae22cff00d6d76f7fff001ed5c459ff00ada00e84ff00ad4adeb3fb95827fd6a56f59fdcad00d8aa5a87fadabb54b50ff005b40153fe58d73fac76ae83fe58d73fac76acc0ed2d7fe3d92aa69ff00eaaaddaffc7b2554d3ff00d550027fcb37a5d3ff00d5527fcb37a5d3ff00d5568069c35cfea55d0435cfea558cc0a75da59fdcae2ebb4b3fb9588125e7dcae5ffe5b575179f72b97ff0096d5d806ac5feaa9f4c8bfd553e802a3ff00adadc8bfd5561bff00adadc8bfd550073779feb6ba85ff008f24ae5ef3fd6d750bff001e494015a1fe3a974dff0052f5143fc752e9bfea5eb3027ff96d44d47fcb6a26ad00c3bcff008f6ad8d37fd52563de7fc7b56c69bfea92803a04aaf5612abd00584ab155d2ac500159ef5a159ef4005d76ad4b5ef59775dab52d7bd000f45af7a1e8b5ef4018fa97fc7c558ff96355f52ff8f8ab1ff2c68039bff96d5d31ff005a95ccff00cb6ae98ffad4a006ff00cb6a924ff8f77a8ffe5b54927fc7bbd007ffd9, NULL);
INSERT INTO `crew` (`id`, `firstname`, `middlename`, `lastname`, `father_name`, `mother_name`, `nationality`, `birthdate`, `rank`, `vessel_type`, `final_school`, `martial_status`, `waistline`, `uniform_size`, `blood_type`, `safeshoe`, `health_status`, `bank_info`, `tel1`, `tel2`, `address`, `city`, `english_level`, `application_date`, `passportno`, `passportdate`, `passportexpiredate`, `sbookno`, `sbookdate`, `sbookexpire`, `lincece`, `licencedate`, `licen_expire`, `image`, `file_destination`) VALUES
(56, 'Kyaw ', 'Thein', 'Than', 'U Thein', '<NAME>', 'Myanmar', '19/7/1990', 'Engineer', 3, 'YTU', 'None', '20', 'XS', 'A', '5', 'fine', '', '09-111111111', '09-22222222', 'Yangon', 'Yangon', 'Intermediate', '19/7/2001', '33333333', '19/7/2000', '19/7/2030', '44444', '19/7/2000', '19/7/2030', '4444444', '19/7/2000', '19/7/2030', 0x89504e470d0a1a0a0000000d49484452000001000000010008060000005c72a866000000097048597300000b1300000b1301009a9c180000200049444154789ced5d09585455ffa67dafaf7f9fa166f6b5977d6e99a92922686559995f5a5959b6ef8ba5b9022aa8806be592e6be8bbb0877863bc3b0efc82a20bbcc0cdc0144445440e0fccf191d651be6de997be737339cf779dec7ec71eedcf99ddffb9efd1c27270a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a5bc6a4494e378de8dbfbfe31837af41eddafe7536e7d7b0c1a35a0bbebe8010f8e19dddf7914f9bb5b7fe7e746f77df0b11103ba779bd4a7cfadd0ef4c41412100aeae4e37bbfff7c17e6efdba4f71efd7dd0bffb90533d4ad7ff742fcf706f7fedd115fe2cf3461432871efef1ceed6cf792b791efeff1f8d19d8fd59fc553740ff560a8a2e0fd781dd9ec0e2fcccbd9ff31a2cce38fce74521223797d818ce604338eedef7c139a415317468af3ba0634141e1f070edd3ed6e2cf237af0a3edf1a62e76508fd9c2f601ec6ad85a9aefd1ff917749c28281c066f0cea71a75bdf072763d107e19ab71e5aeca6e97c09771ff68cead7e3552f27a71ba1e34741617720c219d5f7c1d1fabe77ffee35f0a236db0c727017e1bb97fb39df051d530a0a9b07197977ebd7fd632cfc93f0e21591fd9c2bb019cc24ad19e8185350d81c463fd3f3012c7c0fdc74e6c0c52aa911742f25e3044e74168182c2c9898c9ee3da7e1616ff3970715a9771ee7d7b3c0f1d7f0a0a28dce03ea0fb24fdfc3cbc18a15a0397b1f1f9d20547145d0a6e7d7b3e8d05100b2e40db61066e05cdbeda22a05d030a87c50d6efd7b7c856bfd5a1b109d4d12c7a6800c16bed2a7d7ff4117160585681833f0819e38c115d002b31f3a57e156c18f64693374d951505804b701ddfae38456c38bcafee8d6dff90459ee0c5d8614146661547fe7713891cf430bc99ee9d6af7bf5e87ece6f4097250585208c1ed0fd139cbc8dd0027208921983feceef42972905052fe86b7e9cb4e0c27124eae3d9e36de8b2a5a0e814b8e61f4c47fa25e379d77eceff852e630a8a0ee1fedf079db1f875362014c765bfee79747311854d028b3f105c205d837f40973505452bb8f77df00b1b1046972039ae6c543fe721d0654e41a1073948d3ddaef7eddb239dc3a1cb9d82420fb77ece87e005d1f5e836a0fbebd0654fd1c5419aa238199ba1c5d015e9d6df3902bafc29ba38701246420ba12b934cbb42e700451785fe845e1b104117e726e83ca0e8a2204d501b10409726394d89de4b4061758ce9fb605fe8e4a7bccabedd2742e7034517c3c841bd3783273ea59e6efd9c7742e703455781bcecaedbf725cf741dfc281df9b711baf5ef7e865c7e0a9d1a148e8c24748b1353fe9313a3d3755fb2193ce9295bb3c7fcd54b9d54889e20442101186e0c167e86934c8708fb7ef41178c253b6e623b396e0b2e172b0498f834e170a474150f95358f88106e113de785c835c5f7c1c3ce1295bb3dfe4f7508b72629d824bfb40a70f85bd4255743bae4d16e39abfa1a5f8091f58b51f3cd929dbd365d8d3a84d59d563f35ee0149c7b1b743a51d813827523b0f0b3db0adfc0a7befb153cd9293be6adfb4fb62f3386cb739295b941a71585ad83adba0fd718eb71c2341b133fe1e0d7ddc0139db263debf36c848b9714d986b9c822bef854e330a5b04c30dc3e22fe84cf884371d2b466e037b81273a65c77c68fe9f9d961f2ee3d34ef2f291d0e946612b20d3468c6e3eae1d1a4d899ff0fed581e0494e699c4f7d3bcd6419eacb9ae17cf5d3ba145d1864845fa64be0237c031f99b9d8e224fdf0d5be68ece0dee062b1158e19d853b4670d7c673cefb2c48c7562b9c7a0d3900202f2b237712d502d44fc84cf7ef695c549bad9ef7b9478fc4f34fbcbd7d0e8013dc00508c57747f741473779a08dbedf89f6cc975cfb0b2a4fdc1aa8c12dc0ff41a72385b510806ebadae46f122a7ec2416fbe6a7192aa0296a0fce86d7a92ff5ef8e3db68dcd0ff800bd25afc76d208b47fdd4c549671189d39751ce5c7ed14ad15306ad0c382cb543fe84bba042437281c18ace6015cd07273846fa0cbb0a72c4a50d2f4cf8ddc7ccd000ccc526d44db97ff88a64d7147afbdf808b848c5e4cb031f42dfbd37026d58fc0d4a0ffd472ffab69c3ef565d1beefe623f9e6952fa30bc52dc307a1d394420a84943e8b0bb8d012f1df72e894c5c9f9cdc497da89bf2d4f856f46415b3c91ff8cf7d1d71387a1d787d89721bc31ec31f4f3476ee82fafcf906c973752a7047428fa960cdab640b4efbf736782d9658c5b86f94e4cc5d3d0e94a2126e4bae1b8702b2c113fe13d9bc22c4ece55733f3669006d9917b915451e5c8676ad9a86fca6bf87664c1d833e193710b4a5307a600ff48eeb33e8fbf75d90cfb44968f3d21f906ca70f3a19be0955e6049a147c5b729947d0f8e1e22cafbeef6fb945e58c4da0ca29b8dc153a6d29c40053fe2eaef92f592a7ec207fe38647172b2bb7c041b40673cc1ac468add8bd0a1f5b3f55d88bf3ca7a2c5d326a2b95f8d43333e7d05fdf0de48f4d5ff86a0a96f0ed20fbab5e67368f22b7df5fce48de7d1171386a06f260dc7b5b73b9af9c558e4fdcb3b68c5dc29faa6fbee3f7fd5d7d23181ab506ecc0e549e7d54b0c84d71e9ac0f4531806ecbf7585cd698754ec1dc47d0e94b6109186e9ea9557d42d87dd1468b12f3cd971e43b9515b4435004b782a7abbe822b68449b2b5a21840cf85eb4429efabb933133a8d298402a11b70e12d154bf806f69eed6f5162cec6b52ab4e86dd90008bf9c30d46203e8e5b94ad472d7cf1050d80988f865ba55628b9ff0f19f665b949887fe9e052e7a5b3780037f5b1663c287e72e17bdecb109ac75f2423742a7374567d0cff1739ba4103f2159666a7ef3ff51fde83eb4e86ddd00c8da80b72c1c0cbc7230882439b0839e3864ab20ee4c0a4822f1133ef3a5f92bd616fcf036b8e0db32277a07b8e03b221978b4c400fe33c35bb21c7092715bf4ad4c0a1bc29566ff3a29c54fd867eae7662765e89ec5e082b7170338895b4a649ad1dc583ff6aba7a479a0df564c61439071fe528b9ff0bf53ccab99c8341cb4d8edc90008a77dec6eb6013cfef31cc973c189d1ad844e7b0a0299cedb1ae227ecfbc164b31272df5fbf818bddde0c40becbc7fc16c0340fabe4837e9a9902100cf785b5c4af37800f852f54f9686c7ffd4a3e68b1db9b01546607ea1728993506f0bb8fd57202e7e037d032e89a9097bf86837fd99a06f0df299f08affd57cf0017ba3d1a00e1d6653f996500bde7f859d3001a7017f4656839742dc8cbfe6bce5e7e4bf9dc279f0a4ac429af0fb0d9dadf1e0ca0e4c47eb33642f5f25861d5bcc00670ce2998eb072d8bae81e0ca5e38e01a6b8b9fb0cfa75f084ac403eb7e0717b93d1b00a1eff4f7041bc0430bd6583d37f4670d1ed77587968763437f35171705217ec2a7bffa8177127e3e7e30ca8bb2dddadf5e0c204db941f0a9493d16fd03921f98314e0199b742cbc471c1e83640899ff0891f67f14e4266db7c70819b627694edad04ec886477a21003f8f78abd6039825ba77f40cbc431c1e8a6408a9f90ac30e39380bf7d321a5cdc8e640042a704fff5b70c344f70ae4e85968b63415e3148ac3dfd96f0e1792b4c26df98810fa1a8834bc1c5ed480640a6043f78b51f6f03b86b7b2cac01c87417e8a0a0589097dd859b55a7a0c54f48fa96a6926fe18f13c085ed680640b86df9cfbc0da0c3ebc1acdf0ac8723aa6bd135a3ef60f0977f709a5a91381c60e7e182507af0617b6231a009912e47b04da8d415af05cb942ba67c032047313e00bf13aefde12d969e291f3faa045eda80640488e283325fe912f3e019e27adc8706f41cbc83e1158f9106e46558217600bde7230c768e2bdfa422f94225b032e6a473680d8c03f4c1ac090978781e7491b963b31e53da0e5647f60b8601b28bcb66e8e5e1ef4508789e7f5dd5be0827674032024879776660003264d80cf93f63c022d27fb02398d15bed03ae48451cf769878e1fbfdc005dd150c60fbca5f3a3580673fff063c473aa45c37115a56f601fded3d3a1d7481f561f3d038451a1ac266a33b65a5d7feff47e387b64bba4fdf1c042ee6ae6200c549fbd02b465a61848ffee6a52fa7fb434a916b382ec3c81cf4b8f234bc01c8b832a7e3d5f743cbcbf6c1e8764216d4132185687fc4d156424989da8d66a822d11dd808befc786cbba45beff39564223db2611e9af3f5dbe887c9a3d1fc1f26a2905d8b6cd200c8652041db7d90d70f93d0af535f474b674f4529ec7a494c80dc7760cc009ef2598dfe4c8e47a53941ad3eb32b250a756335d046f00fb4bc6c1b645b256001f59217a398a8bd460513127900cdc409de36e99282fe12bf760edb84be7fdf1dbdf0d8bf5b71f0e3dd90e777ff43b922ec3214cb0034a907d0379346b57bd7214f38a3b50bbf11dd000e6d9863d4008e04ac30fab9f08c5074774829587ee9ef1990978f8496996d829cb6cae832200d607d386352347f7ab43e1360ca6b0324a9f97ff9e89576826ac925bf7e60f1776489b01988d4fcdfbf3fbad377ddb6e237510d80ac0930d60d3075d2f1dcf864d85600c3a5d25b883b0253fe1364c13ccde6f312cdae55ad07a116ff3a4974f1076d59d0a9a0f4b5eb93ce28f6e84af01640d0361f93efeadab7373a9d6cfa82504bbb01635fec6df25ec2921c06dd1152066b0232ee4b68b9d916c8e008f09cff0faa185ea261db6c4cd9bf46fc3dffb3bf78cba4a80897cd127ed1a8d82d80691f8fe5f5ae7bd7cc12d5000eae6f7f81c8a76fbdc0ebb363234e01b702743a27b6ea3e68d9d90e18ee2f5847d6a12de141bc449316f277aba48b0f5c25ba01bcfff2205ea2fafe3d37700378e3a56778bdabf72fef8b6a00f9713bdb19c0dcafdfe0f559cf04e06e80de04b8a5d0b2b30d3065ffc101a9872e1065e47edec27973d8a3fa8423977d8a2d7ec20923fbf212d5e76f0f073700f7feffe1f5aeb3bf7e5b5403202447aeb59a8d59f435afcf6d488e81370092f324f7bb3c186e9b0d14064a8ddac55b389fe1a62649b86f26be2489011061f311d5f4a9af811bc0bba307f07ad7e5733f15dd00fc677ed0ca00643b7d787dee706a0478be5de5dfd0f2834548f993d63ed9d7184f44efe62d9c595f5c590b30f7ab719218c0aa399ff212d5d6a53f831bc092e91ff27a57d58165a21b00b3a3f5012d39f837f1f9dcfed448f07cd3939c28cc728f41cb100e8c6e0f78215c655cd41edec25931fbcafd00e44f290c2035641d1ad5b777a7827a6dc89328277c13b8019c0cdf8a863dd3a3d377fd60ec6093a3f3e6904c078e19d8f36a77ec51dedfb133250a3cdf5a98c0666819c280297bce49c6358117c0551e8a38c25b383bae1e4eb1c5ff7b490c803060f5effaa9be8e0435fcd91efaa9424bbfe3a4488782eefe6ba67e815247ef4ac60852d80da28bdfc0a96f5ee98efdf4a11befcf2c4a4c04cfb71606405ac04f40cbd1fa60b8ade0c16fc1956121bc8523dfb1409f74521ffb7d74a3071aeff25c2b41bdeb3e40b4e5c0b951fc9acc7c18b875211a37b4f58cc067e347a034e53f92899f70fe8f13f465b176e117bc3ff3794c0678beb53181b5d072b42e422a7a3ad9c0c87f4b7e1e1acf5b3869f275faa43bbed94352033050b5cf171d5e3f17451e5c26ea73c9b1e5628ab1223b10c507af41ca7dfe282b42dc671ba3e1f6a0d0007fde9f19a42a04cfb736bce8145cda0d5a96d603c32db181a0b7e2333c57021a387ec41348b15bbc8d391014db0020187660a97e1c409dc26fa56161b60cdd24e7c0f3ad3d394f68595a07e4904f1b3be987f006cce8c87dbcc5f3f5c46128ea90b835323500e124db837f983c92f7bfdf7cc226d600b427591d18507207b43ca507a3fb1e3cd846385d15c55b3c0b7e785b925580d40084f3f0c679bcffedcbd0cb803b65f967d0f2941e0c97021fe88e49b603e7466de7259ef5de5fa2b863d4006c81e5d94779fdbb8c932136dafcbfc65868794a0b59d98b3610e44ef96738bfd98063b8d6893f66d96e3c683a8a01f0e5d731e9e0f9c583fda1652a1dc88928f001ee940fcb8bf4db644d8927f1f89f28f6c80a70115303e0c7545cfbdf66dbb5bf81aba0652a0d54babb9d645c8d0d04d824f98c0510f1d8d325205ddd005e8fc801cf2b5e64b8b38e3918480638a083cb9337c93874a0cdb9808ec8ae6200cb13e3c1734a18cbde8396abf86038397c60f9b387bc18854506808b941a80653c96168e6e073f014828b983d0721517c7b4ffb6955d7f42d83ba408a9a2f89f13606f74740308c4e2073d04d45c929bb0832bef8596ad7860b8afc1836a26ef916bf4fb04f23a10509a8033046c918e6000951dfc3fee5410f248484637cbec62d0cf08b90fa1652b1e189d123ea096911c1a3a531581368607a3bfc2e4fabd038fe0164247c6602fb47703d061a1f7531521dfc444742c35021dc424a7fef652a8c1f345041e8596ad382037fdc8b8461b08a82464220f820bb9ab1a00931e065efe12b24e3f7366f760b8c936104cc9385715062ee4ae6a0033e34f8097bfa49497bd092d5fcb21e3b6830752428e5264820bb9ab1ac08baa02f0f29796dc1a68f95a062f7423eeff73f081948ee4be4072b416b498bb9a01146733e816bb1ee4e3414657082d61cb1052f1027810ad40be770ad81af322edd70036d9eab65ed14da0e26968199b0f869b031e402bf03d6532b898cda21d1bc0f8c86cf072b7127f8496b1f96038c606022839ef976bf49752820bba8b1800b9fadb2e17f898456e1fb48ccd03e9ffcbb82af8005a873b2302e105dd450c60474a3478795b8d0ca78596b27908e2fa8207cf8a9c1c9a042fe82e620013a3ba4cf3ffaa09d8e3156276bcfcd71cde25d7a2f4e89df0a216c082d85de062164a72a827fcf5ded6a63d2e0bb6b173ffad41df3025b8a81ddd009624d8d0a51ed633003b5c0f20d3a5c107cebaec1b926b577b03eccd002a7282d033a1c5e0e56c75325c34b49c852109dde26463177f588bebc31970613baa016cec2a73ffedc8d538217403b4acf92398eb071f34183e1652083e16505d96832e5697f260196ab850c18b17ca4f828aff7436831e559680972f18ed6a20900c5a40070c90e39529a00650961d8a44457313aa2e52811ac084aeb3f0c78801706f41cb9a3f18ce173c60c09ca18a0435811a5dbe68fa87aefd673bfaae3f5ee4e642cb9a3f64ba43f0018325b96a6c85801b87a5e8df9326bea5a8ab3e0d2afeb5c971fa5842972738c9ac9addc0866fffb126c9e9c2cbc359301328c426507be6b4d9e2bf74261f54fce41e3ffb3ed64b44325c38b4acf9839c6d0e1d301ba1de04c2e04c80b03c3f163536d4f1167e637d2daad1c4838a7f13157f6b32bad3d0b2e607b6ea3ef060d9186dc1040ae3f6a08ac27874a9a602353737b7137d7373236aa82d47e74b4fa033b94154fc3647ae513fbd6ef390eb06c007cbf6484c60699802d4045a760dd4a981a8345d8e6ad4b1a8ba381c5cf406fe934cc56f942cf718b4bc4d834c574007ca46494c6041980adc000c2c88d8022ef8965c9a9460ebb7f702b3cc0d5adea6115cf6397ca06c9b534313785f432e296dc400c8d9fe0e7fc0a71864ca2741cbdb3464ba99e081b203beaa48479951b06709e645c21b0039dce39daeb6bdd75c32dc37d0f2360d19e70f1e283be100f6144a88dad3650d203f9b41c3c2f2c1cbc17e680f8b81186e137ca0ec87e4fec190c8035dce00923259f484f23478fced8a8c6e05b4bc4d43a63b021e283b23b97f701dc02e422803d8971a89eeef3267fa89496e3bb4bc4d43a663e103657f24cb5dbf0e8db5eae1a2d6360032d8e799908c6ea423fde691e10e40cbdb34c89245e840d93187b2d928de4ae302d63480bc6c191a1d9e0b1e5fbb26a33b062d6fd390e962c10365e7ec212f4607228e3a8c01a8d255e8114517decb2f16194e0e2d6fd3907127c003e500bc555686168685dabd01ac488a47b7d126bf585441cbdb3464ba4c1b0894c370a4221365444a332e20a50168b202d1b8c81cf0f8391863a0e56d1a0c976d038172282e3e7610a5316becc6000a6276a2e5f240f0b8392013a0e56d1a0c976a03817228ce3f7a0829b62c44310796a3dc88cd221a80b81783949f3c8a5283d7eadfd527981a80e8b48b3301e820a0e8341800a16ac722942e5f6773065014bf1b85eff6bdf69ed400a420278396b76930ba50f84039165b1a8081710797a353e196b506c4e802709947d089a035edde8f1a8004647487a1e56d1a322e083c500ec68e0c8030749b0f16df6a941fb5d5ea2d80ca9ce3f87bb7a1b09d8b3b7c376a001290d1ed8296b76930dc7ef04039188d19808111b8e99d11b2de6a2d80e2f83d28266059a7ef440d40126e8496b76990f5caf08172287a1d3ddca9d80c8cdaeb8f4e2aff91ac05a049d98f928efdc5eb5dbc838f83c7cde1c8707f41cbdb3418dd7af0403918272b93504af01aa4c44d7e7e46e087d2e57f8b6600a793f6ea85afdc6afabb95dbbc5156e82634353a133c6e8e47ce0f5adea6c1704be103e5587c1f1b00116cb66a93be96e7630284917b7c512ab31ae5e2a6be5003a8c83ea6efe3c71e58cefbfbe20eae40a56907f59fff841a80f864b879d0f2360d19f70b78a01c8c0b92735041ccf5d580a9cc5afd74205f612ab77aa3d883cb511afe5ccb9983b606a03b7954bf88878cea876ee7d7da200cdfb9049d8ad8aa1f18d43f2b370879a71782c7cde1c8e8a642cbdb34c8b965d0817230a6569e43d5a559ad6aef5c2cb884232b918247b3bc2dc9c87dd43e7f14bb7f997ee14ee2d13ff47fe7d3c46f350b818d253d643d2acf3adaca482e5515a2d88a6af0b8391eb997a1e56d1a0c370c3e508ec35b43cad1a5c626fdd9fdbabce876cdf89cf04d28fed00a6c04de828dc05c12a320630286e67e4b927b0508b84bf5e0b1733886943e0b2d6fd390691e060f940371647cd5f5cb3b9a1a913a2da8c3fe7cb6ea1f7d1f5c29a111846ef34629b8c5509a76a0c37183eae208fd3beadf15f37e653978fc1c8a472aee8196b76904a09bf4b7984007cb41b820bfb6d50d3e97eb6a5151c23ea323fb39119bf54dfab0edfcc7084cf6f1772d4199ec3f489771c4e8a06155be1c35355c68f5ae6312cf82c7cf71c89d8396367f309c163e608ec1a8b30ded2fedacd1a18298ce8f14cfc3248b83e20e2c472a01037ad7c609762c42c9c7d7e817fd5c1bdc33ca20fdb5626d313bf73c78fc1c8827a165cd1f8c2ede060266f7bc47518e1ada5fe3a747756936ff053f9827151b5072e09ffa1d8564d49eccd75f6bda638388dcebafefd7672937a292a47d3c44df62d0ef4c7e87ef7888ab038fa1c3d02e4e033280ac59860e9803f09d13676b3a96ff15e8f2a22cdb111845a6ee022dda0c745e9b64f4fdced635d6dd212bab818ea34390e1d642cb9a3f18ddefe001b363dec3e88aa7866899c3e9559d1a406783827c6989f8ab8bc2f03b5c36fa7e55172f235f5653fb1dab8d7696d16ea14594735f41cb9a3f64bab1e001b343f6909725fdc46a8ffbb2da8b7e0a2dda1cd7be5fdd168df5175171e27eab1b40559e0c7ff7f94edfade84c1d22bf83d057a1699cce6ae39f94979e828eb35d924cafdb0d98f21ee001b31b724dcfcacba2e7294aa3706dd96c100ce10a55a9490320b854536e7250505c0320837e3a93ef95aab9805afe1e0317b0da9c51f2d2b49b18ae193efef640aec949a5bb1b5ad6c220d395c307ce7679633077f1c99dd9213eace664472231f07c5d232f13a82ecbb19a015caccce5f54ee1f9e78cfe2ec2456ca97a025b9674bb4c570f5d1e364d86cb8396b370d01b823ae44d81a5d54fac4d664778294ae707168777261042f5d97a5e622328cf8f91dc006a3489e8ca321fd3389651d5e96fbbd63d603515c3037295371fd79e872e1f9ba45ddc08d41632dd72f0c0d9106f09d4543cbb2a3eccc553513dd25381a6fc9d14c2471c19a5174c2bed2a9a9b9b902643d81d83c206fd549d0efab5c5f6840a5e06a06f0d84a8f3467a29abfb2d8f0dbfed885a075d5e364586f38096b37030ba29e081b301de71f87471ff65b1ca919eec45227cc2d10b42b925ac46cb471811059d4e04b4436383b0414161837ec2dee5af8832de0640f8f596f4707d8c3c14f503fda21270ec4aa1cbcf26c8706f41cb5938586d6ff0c001f2ee03c5a79ef78d8c72f1602f1b846fe0dc23050abea220cd68a1d00f0ac6ee14d500ea6bf80d481ad0d0d8d42c44fc57ba02dab363bc43cf5c8b9587a2e9c5451129f70414154297271cb9262756f300b49ccd838ccb870fa075f97f7bf2d287f88427e01abfb9adf009dffd232ea6ed687f67dc9e607a2ab0239ce34e896600172b72047fffd98bf575420d8070d6a1bc888ee236c43b2cf55f7bf24f42972f80012443cbd87c30ba0df001b40e1fdc9e9df0d282d08c8e92d7c051b88feb1ba2291222883fc2cacc320082f2fc588b0da0461d87f80efab54451d5a56a730cc04fa1691abf2c26d3580c8779ab329db7e7a4e3dc022f73ab90d12d8396b1f960b8c9e0019498dd76e6c4bd343fd468c2b6e4ef07f2e4e688e2524313bfb9c036e03328d899f8cf162a517323ff59889648d55e2837cf00b4c89b5167b87a75dc823270f8fcd09c1edbb3121dde0882cb5f8796b1f95070ce4e0ebad8a3dbae53c97c854ff8f6f298243f5673d91c417035f5e6a910991e14343ae897cba0cb75d5e67e2d590370d65c0320fc74636a149fb80e9fafcc7b68cbc918a76007cc3386bbec145c792fb48c2d03d9c6081d48b185bf80bff0095dbd141797c8d59d2ef8e98c5965179acc5622ea7c50d0f8a09fd692af4487d3ce345a6200d82ccbdd17869ee31be36b46e0582d023bb80dd814c859e6f0810411be813fefcd36abe96f604ca1b0e9b78e50a3cbe76d0017cab32cfebeadf1e5e68bff2aa7079c0a131a6bdc35c8efb9353bc9218c80d1f940cbd77230ba57c10369011fdc792a514853bf2dc7f94764fab1da4b960821e8e4598b0549505ed07e50b0fda05f2c193cb0f8bb5685095b0360a41570f90dbfa83c73e24e8ca0c7d62cfb1e2cb4ab0d40c690846ec18550091e4c81bc2fa02063e802d5097385afa787e2f22259498aa542d895542182fcaf0c0a6a3364460de06c81f9837e2d71f1729359631d1d710173daa23218b6409579ff9e02fbeb8632bad34e08dd002d5f7140ee34830e284fde79f074e10b8b22628ccde30be1773b32792df735c535919c08f2bf82c6864bad0605af0ffa05a3cb97cc1ff46b096d6d438d58064038655d529ca56531646158f2bd0185b9d0f925c000ec78faaf2deca01b70db5175d980a5d1111daddc3387af2d8e28f46535a209a1be11993515d811ea6acf5c1b14341840ddb912b11e8f4e55d5ebc43400b26c3b9d6019000014de49444154da6d7ee8058bcbc543d144ccfdcec3256ae87c334979d91068d98a0715bad9c946b707df7cbcf4ec732be2c25aaed5b79c6cf342e67482982228af6db8289a42316aca0bae19c0055da6988f4689da5a5efb1c84f097bd592a11cba78198fdadc7b4b6d93565b812c769fe1b6063dd801b18aefec9d5c9612e9eec59f112eb0a3fdf941a2ab600f22beb2c9f0a68838a823874ae249a9c2d26ea739579e74ac5fefde49424dcaa528b5c56353807a26e0c2a6b80cec7d606e048cd7f036ca81bd06d674efc88f9ca5cb1854ff8b27718e7abd054882d8084925afefb8279a2fa62ddc5ccb26ae1bb8d4ce040ca1951c7000cf43c5e182b459991b3191eda98910e9d97d759f622b45cc507e90600df1770e7c1e2a221de61f1522491811ec78aa2a5487e797695e573732d50df70b961f89228f5e37354f515e72ed69afe047f6c8ad589fefb0d9cbc3a3151aab21bea1d9676f7fee22250f1335cb6e335ff0d90715e1041bde978694d9f95f1212e9e8a3a29c5ffd19ac408a9127fdf894ad1044ac4efea1753f8d00c05227cd623ece2d9da4b97c47afe4a55a96406b044ae2e18359f6d90aa0c718e34f65f1a13734ba016e6387386fb195aa6d221a4a227fe81d6eb6f0573cdbdffc98874f152944b297c42f785a1677c4334a2f77d0dfc3b5a9ca9402cfecb6ecbae8bdfc03e9e61353517ea2c5e04505ddfd820550c0cfc6e47a6e01582661841f5a37fa79dc0959615c5afab75529dfd17b44ca505c3edb74630ef3874ba6488b72a59ea443170cee1fc302993de5fa9450d4d4d167503b0f62fbb2f8fcb6f2b7e039ff78e388b3da0fd5d6402507cbec1cc6dc0fc898df6fc2bde619c35ca75d80255fadd070aad732009d93eeff09097b94b19c41b82cb1a9e5c9312821dbcd65ae29fb42aee8490433ecc6575dd65b3070289f8c72c8fcd31267e03872e8eaab854df60f69a83f4caba32a9e34038e74801afdd82e2906dc05dc8e81b8339694f2f66ca9f8796a77520d3654a11c07b030ab287cf57665b2f3114c86d41e88525724db13592beec5c9d599b022e5f6e6c1cf747c22953e237d06d59ac0e7715cc9a1b8c55d75a2516c47027ae8c4bb366598ff054a8efdf9d2bd5c5260eb0f38f2f64ba1f45adf5837475d8a159328063cd84209cb13f57698d8427cce62e083e1f0c6bbf71dc9ff1266bfeb6c49f29c5c621b8cb119677aed05af1f0919760b3575ab9ccd9e67ecb63926e3a5e2af658d6c7d0b2b41e8e54dc23d606a1bb0e16e70e5f60dd5adfc0f1cb6232cc3de4c31c46169c13b42b08b7fa9bde5c9d902d54fc06fe6f6d6209f60f41267028ed8ce8ab003be3975bd23b3c4350f2d6c07c65d1bdfb0b441a1be0d44ec1b9b741cbd2ba60b83916052d986b7e7c6d72988b077b0922015c3d95f58be5ea2c6b26fbc1d44adecb8171eddd347e4d6286b9e237f093cd29854d4dfc7b031ba27517ad19135f85b66ab4b7ea0c440e907d234ffd959c64f14c01a3fb1e5a8ed60739ea88d19d312760371f2fad7ad1273c06a2d00dfc797796e8cb7d4d7163ace9fbf8f4e2c7b5f684358999968adfc09f7667e637f33c236059a8746b008c71d6c17cc9a7053b2339b1f896639a6a5afb0b05c3cd131ab07b030ab347782a4a200b7c9c5f5481a5877c9843222e533224b57579b9aee98585e12ab10cc0cd3f32beaaea0c32753a30596064ed985c6905681adf5a1a750a3227704e9699797fc10fd0328483c056807e518fc4abf94cd1d543d9e4232f49854874c23a2cb2cec45f51518e4a4bb528a7b044d77ba6426da9f8f133cab20b4e5f24cfbc6202c65173b15ef23500c6e8cd9c4e377592b0d4c4b979a1fbb6ac1401b5bfc64955743bb40c6141ee3de3d1df27f7ea4116ae81df6ccf9474c18f299ebd5077ce94f80ddc1395138b45dc68b6014c573405446567b77ce6d9b3c667224bcf5e926c25241f7eb221251a3a3fc82c419f5509b13cc705ba70ed6f005b755fe7ad80b2a6e77da3acb8e8a3738e5d1251f2fb815c959f42730122c94f575e6cb726981cf5d556fc06bebb368e31d7003edb181fddd133cf9debf8e4a0acd2f3051031212b037fdf9f1bf5eaa2301d747e1838d03f3ad68929ebe4a8725afb5f07714223811ab034d666c4df9263bcc32aa6edc9569251686b267b4a494d497bf15774287ec2128da6eea9b9ca14a1e27f7a5e6876895ad364ecb93535ed8f2788ccaf3e6555e1b3ea8a9f776747ba7bf33f3edc9aecbb2c36aa9391ff29d0b2b31d04a09b705720b57d9f3f3301ba104d71d4fcd0da6fb76784fbb2d26d046ac9909ceae2ebe26fee54fc06266415e6625157f1157faf198ada98cc42ada9e79e3f7fbe95011c4c3d936f8d182c61d52524e66e0b94229ee2240d1fde9419d38101c438ee965f73115ceeda3248b71f3e5d36d243cc63ba2436024f65fd671b53c31687682415c18ec472ce20feca4ad3e237d02f305dced700161d498be7fbdcdadaeb26f077b4ceecebc0f87091ac2477ea86137123bdacbdfacf22d6dc7644dde2383caec9495e31085a6eb60946b7d710a8213ee149365078824966093e589d98e0235367482182956165f557c45fc95bfc068ef4353d35f8d2e28864a1cfbd70e182de90fc959a26297e3319e12731851ee537972f2c8e886dd1f45f0f2d33db4570652fb227fadfbb723bbd65d75ef8cecad8f4f9c78b13c4de29a8e6ca6b858a94f070eca9305306b0272227c79c6757d5d4568a2b7c4d138e5de284e5d127a1cb510c5eb9da9cab720a2eed062d33db06c3cd1bb65065d55d5e52932c52997ba4204aac7d0329f99a3c7344baf050da71530680ff4d8239cf8ecd51c78824fe7a12ab37fca20aa0cb4d4c0e5da04a7562ca7f829697cde3893f726fc37d7f8770fdb61cbb38bc78d6a13c2539e1d61291a8323549e688f4bd7571474d19c007ebe262cc7976508a5a61c96ff265d5b5330ee446beba28bc0cba9ca4a08b079bf788179df6e305172fc5f3e41006e842938a2f7b8791e9ab306c04665da17d385913658e48072f0c333910386c51a459e6b2275e63d62d48be0a752589c59885aa2ae872918c1e8a26172fe548685dd9155c3cd945e0052731dd172acf93e9ac25211a41a7e86c8b569b65008fce5224993280c76787e69bf3ec0d911a419ba3f06f56eba7f2c4b8f1c7e6c92e85d693dd61ec8fc1b7b978281c6230b033beee1b51e4cd9c163463b03642634e3fbd0e0b5c677a1a90bda4d16a041bc02a95264ec86f58105c9cf8cae2b052e8f84b4d9cc3d943a7c5dc01ad27bbc4088fd0418eda1570f554347db5259df555686a85369b5728d5d942059a5d50c2fb6090e49ce21aa1cff75768f284f7fbb5e7bed89416edea055f1e9288df53d18873d881eef80300ee3ffd0e5d9062f3b5c51125de4cb1d93b0ab1d8ca850a94cf14a081fba27272853c5babd534fab19af3e6fe9e85c145496317856ba1cb457403f060e741ebc701806ec0c13c025d9862902c642147589953ebb7ae3935cd251acd652122f53e9c16c8d700161c4c4d14f2ecc212adda92df63680d90d8d8eb629f76f46095932605dc04ad1e87c0885991f763372d022f540b78a5d62f49b1542806e614694a858894cf14a08193d7c5c70a79f6893cb568bf8b8c0dd87b6bc0c593e55cbd54dda175e35070f152bc88bb03f5d0852b9462d5fa6d99704a932944a47ca600af4f050a5b0eaccad4848bf9db0cad01e8b2334ffca4df1f321a5a2f0e09170fc52fd0052c84aff94616f9c84a4e88290e0343d235714244ca670af0fa54a0b250c8b38f249bb706c014e7079d4e7a75b1756e00129133a175e2d0c07dabbf6da0903ba554b57e4b1e48d444081029cf29c06bac133215b83556cb4af53bedaa35e0a1d84bc6aca035e2d018f455d22d648005bcb08d50ecbebe316e8ae6bf1a50c814a081495945bca702d7446824bb15d9409b5f37e0c14693b52bd0fae81218ea25fb3fdcd7ca052ff416bc56ebb36ac96afd96fc334cc3bb9f7e3836375ca801ec8de43f15b85ca995dcf06cb935e0e2c916bbcf563843eba24bc1d54bf68c8b077b16baf009c9261f6fe6b4247d7d635caad414f015a890294003bd0ea4f2de13e0afd05af536a0f94145b63336e0a13837721edb175a0f5d12233ce4c3710180ae25273512c801a1ace63c5f810a990234f0bdb571bc0619355a6d0d3997dfdabf9f6ca49ab2ee442c68cd4f6ea5f250b841eba04b0337bdc740de15f0cbde1c95d5c57f9545256a5e07830899023470e8a28813bcc6178ad4563d08b425bfdc920ad61d20d37dd800de81ce7f0a27fd72e109e49e368844705f185a8d6b23900b31320af875031e9da548146a004fcc5116f179766c8e3616e2b79343585de72b818c9f6dc6cdfecfa0f39ea205467ab05fe90b062021a6ed8369054465f31a08143a056860bd5a637a2a9049d35aed7af496fc665b7a3854ed8f73ed57e87ca7e8007a13f05034593b21c8edb4e4720a6b8b20f084e97301cc9902343031bbc8e438c35e330f02b1b0f6d7c11c09aeaf607e83ce738a4ee0e2c97e08d11df82d20c7ea5786ed4ed0849b12e8d1f83cdebb00db7277448ec9b307ff89b47e0be0bb1d9900d7c4e9c5ff33747e53f0003681f7ac7d8ec018efd033d65a0360e0fa48b5c9f3fbcc990234d0637f8ac9a9c055a1561e036035e5563f4588b42a699fdfbe404668adbd79e8f7fd79566d05ac0cd5a44b310568e0bb3ca602fd95d69d05f87ea7756b7fd29a24ad4ae87ca630032e5e4a776b2e161ae313566ecd3501feac46634aa0437c22044f011a386451784a67cf260781f82a34e7acf57b7d15da33e42a36ab89df53513bc28b7d033a8f292cc0082f451fb254d36aad8003d66b05f8b2da068d46d32cf614a0818fcf0e2deeecd9456a8d555700feb0334b65c5dabf941c49079dbf1422c0650ed363a4272be0aab110b3a7135ff15671969efb2f8479c5eace8e0733770a50cf9ed3d986cea602d30bacb307e06aed5f454e51365fd02cff9adf439131dc8bed0d9db71422c2d54b7537ee0e1ce59500b3022dba677ed6c13c510fc8e88cc979da93c6049a53703ac75cf11b189f5568742a30224bdc83403ae34fbb4e5a54fb8f981d58c1abec3dd9903133d9fba0f3954212e8cf179c4996717696042ffdb223dd926423475ae11aabce1ac25066183f18c49229c06b538191c6a702a53a08a45dedcf6acf9115979694c94bd376669a682134e3bcf80357143743672985c4201b38308dd6f243be59136549b2e95b0187f224df234f78e884d6e85a004ba6000d9cb73fc5e86ac31d71d631805f76e75854fb5f29d3d5d19d88bf6684976222745e5258112e73650fe3828feb2821067fbcc8e2841bbb288c0c90d54b2d8ead31c64f069a6cc114e0f5a9c0d87863cf5f1b217d176009aba911e3dab0173ef1e970e930b9b8830c1443e72305007073ef766c022b5bee21183137e8ece00f3d45996b9e75285ff256c09a08ad51810ef111be0bb02d5ff4094f33f6fc15a15ac9cf4098b6d7f2da5f6feab84c47cc096ad58dc0e2dff0f26ff2bba0f3900218e41457170f564d9262f86f7bb3c43200723c985857821be30aa5c6e82d41964c015e9f0a549e36ba084861f97d009d919ca938666158a5580630fcd73d3957ff5e8e6bfdb7a1f38ec28640467e714b60c7906fd7c688650084738e14464a29127fa5b6528a29c0965381251d4c056a349af3529b1bd95f21563990321dfaedfab8911eacfc25af909ed0f94661a378f143af8983a72c0c162bf1c8e59f520a85dc12a4d66a2fb515e8a9a2128ba7005b4c05b63b7824a7489b2ba5f8c98a4a728dba680680cb14f3037a6a2f85498c981ddc0db706b68875bec0bc238551528a25ab48db6ec59e18538006ee0ccf6a7765787c8e265ecadf342320572596f871adbfdf7d8ee221e8bca2b033b87a85bc809327def25640649194e7e6c5666bdb1ddfe57d38edb8580630777f6abba940799a2654320360b5975ef1b6fcd04ffdc9d11e8ad7a0f388c29ee1e575e3c879ecc738992c1a8cf23856182d956098b4f677044c5e176ff114a0811357c726b47d7e4082746b00661ec8b3acefefa1b8e0e2c1cea7e7f453880672ee3b4eaacda656111ae31b7e9179b85fdb248560f6c46bc2a498023470b07758bba9c04d315a8514bf85aca07c6571789979e2d7afe6dbe7eaa5ea059d2f140e8aabf7116c37c7083c038b63a410cd3f519a4829a6000d7c6cb652ddf6f97faab492fc965987f2cc3aebcfc543c1922e1b747e5074110c9fa77ccec5930d103250f8867f9424ad803fc34adb9edc53f7d0749613cb00f0b32e97a85b1bc032a5364bf4da9fd536bcba385c2db0d68f1ae111e20a9d0f145d14233dd8c1b8f661f8b7028ae2c416ceb2506dabe3c1c59c023430f6e4f5a940ad56d3ecc76aab24a8fd799ff38f5b6031f41a6e0a9bc14bf3944f93dd64a66e2a1abf343a87ccdd8b2b1ecd05a9a6000ddc11967d6d2ab058ad2d93a2f67f6d49648989c1bd26cc4072190c747953507408572fd5bf70b2fe8c693499171c2f167d0ebd50ad3d6310a88f08bb00db726e40cab5a9c68cc2d234b1df7ff6e182c84e6afb6a62aef4900e0abb01b9c6dcd5533999f451db8e138c5f167352ec56405afef53d01624e011af8bfd5b18986e74764958abac989ac9178cd37a2ddb16db86b95e2324ff1c5d06931774097270585d92035174ee899d80872aeb7028a12c514514496e6daae4031a7000d1cec1371ed04e26329e2ae019873a420eabae85935a9ede9797c140e09fdec8107eb3b7155aca87be9b128af1d0cf2f86ca568538006b69c0adc11239e0190daff0dbfa85432b57aa56f4fd7ea53740190a3a79628d5eebeac76999f4263f194da8ed86b8b81c49d0234904c055edd15b83642ab1241f8857eac76b50f53f26a1faf805ba1cb838202144b5465fff1634bbfc2861060ce59fbeb22b4d1524d011a189379652a70a5aa3449b0e0594d8d1fab09f6556aa6fb86943e0b1d6f0a0a9b85970addecab2c7b6e09abfe189bc17a2c1e9383862b42b5fae5ba47e3f2c2a53280ed57a702fd159a621ea22fc53ceeabd0febe34543d84fc26e8b85250d82d16b39a07fc94ead7710b61363683edb8db90d0b2a5e0afd46aa49a023470d6de13295aadfece83faeb35bbf622669abee5c26a67f9b3a56317293867e87851507409f8aad4bdfc4234a3fd959a6fb138592cd2153da72b6458b027304b1e9aaeb860aee07b4e672ff59cc16af09fa9f8398a9f7726ee2c56ab8f6103fa967c27167c6f84e8a01d05854d008bf1c6cccccc76036a3dbc8eddf9d0efaa5ebd67b18ff59aa57aa2c76fa183f49ca170e93523c4d5f0f79ebfb24f917fd36326dbbb9b97eaeeb6cf21cfa682a7a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a000c7ff03b3461e60c31dff580000000049454e44ae426082, NULL),
(57, 'Soe', 'Moe', 'Min', '<NAME>', '<NAME>', 'Myanmar', '5/12/2002', 'Senior Engineer', 5, 'UTYCC', 'None', '14', 'XS', 'A', '9', '', '', '09-66666666', '09-66666666', '', 'Yangon', 'PreIntermediate', '5/12/2007', '9999999', '5/12/2004', '5/12/2024', '55555', '5/12/2004', '5/12/2024', '4444444', '5/12/2004', '5/12/2024', 0xffd8ffe000104a46494600010100000100010000ffdb00840009060713121215121213151515171718171717181617171d15171515171718151515181d2820181a251b151622312125292b2e2e2e171f3338332d37282d2e2b010a0a0a0e0d0e1b10101a2d261f262d2f2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2dffc000110800a8012b03012200021101031101ffc4001c0000010501010100000000000000000000050001030406020708ffc4003810000103020502040405040202030000000100021103210405123141516106227181133291a114b1c1d1f0234252e133f16272071592ffc400190100020301000000000000000000000000020300010405ffc400251100020202020104030101000000000000000102110321123141042251611332714281ffda000c03010002110311003f00f714947f11387a84b3b4c536a4a5420e98949310a10695d05cc2e8056521d3a64ea8b124b92e0aae231ed6f2a9b4bb2d26fa2d12a9623316b76b9433179838f608555af2932cdf03a185bec2f573324dacabbb197dd5063fd61705f3e5024f205f6bc84a7918e58904b098e60779efd172336a6d2034124cb64880d1683bdf7281d4c60241749e4f1316b28f118861712d1038bf654b332de14c2b8ecd8b9da7cb0d3023b743d173f88709107d3dc20ceac23de15bc0e2453d464dc471d799e240fa22e77d95f8e9682edaee00826248f53cc4f448e366cd96c4cc77322dd50cab8e2e20b8cc09f792209f61f5566862c34b9cd1da7a18e0f59539fd91c3e8374f310dd20bb548bdb628861717ac4807ded3e8b3c74d3735ed21cddccc133c88298e6fa6a02d9f87fe245f7bfbdd3a393e4cf2c7f06aa9be548b2edce47c42e6ce93163e9c0477078b0fd8a62927d0b716bb2da49d32b284993a650872542e5315c16a240b230a56a60c5200a3224209d3a4842124924a10c39cf5ebaa7e2270dc2cf1a8b925216466bfc31f835f47c480eeafd1ce98795800f5db6aa3fc8c0785783d229e3da7956595415e6b471ae6ece453099eb9bba2591316f0c9746e815d21595e3fe2b646c3728836b028c5ff004954556a0099ef1c943f13542094a905156718ac5f4435ef9325738aae260282ad480b1ca6db364209238c4d4fa2a80cf365062ab91c127ea82e233174c3811fce0a5b639443f5b16d6837954bf1a753483a0f0e368047cd3d20ee87b5c0b6e77dbf9fcd90b7e3883a2496ee04d86a1784abd8d5054697c4f50cff0052b4d46b7496b5a60196c069dae0974a0753165ae21d2083041b1067907652636bbaa00e7dc90d83004868d236e81a84626c7d6e3b8023f394c6d4a40c5718d040e61627aedf41cfdd76ecceff00ceb6594af8b821baad3bf1bef1fcd97784afa9d1aad3127637b1ebd6cae89ab36ccc754ab2e6b0b8318274826009bbbbee7d94984ccc1d30cbf94cc9b9124cf633c7440f2eaee6389a6f73493c1239b7ac15a3663dbf083aa02fa83cadb06b5ad83176ddd7e2caad7c91aaf05ec1e2b511239e3d78ee88665842df30061d041744ed76c0b03bac6331e43bca4823620f3dbbad0e5d990249ad567fa6f201930e881f358ba2f6e839478a49e98acb8dada24a355cc7374bae45ed3126e2393cfd15ac2639cc76a1f4ff0049f158aa7529d37024bdad6b9ce6ded16048302e79e87d155a95c10d7403e505c5b6dcba3508b1b273d74c477da36180cd5af106c7a2221cb06e796004b6ced8a3395e696826536393c3132c7e51a44957a75c15335c9a28784a13a4a10684e924a10749249420932749421e43a92d4a02f5c97ac674a89cb9725ca1d49d5d954481ea5a32e200b9fdaea06a9b0d1a849b22883234f92d5a8d669675924edb45bba3d869112ed462565b0b5f59805c1add806c01ef2b4396900176a2ee135332ca25bad5ac8462b11dd4b8cc4f4083626b11726165c992fa3463c744b4eee92ba734bba40e49d9438536bf3fcf641fc5b9c0a348916eff00f5b252d8e2e63735a54ec371c9fd1097e6cca874540d83b1e9fe979c32b63717a9f47c94c1ff0091d69f44ecfc550bbf4d660dc367501c90395b17a49b56667eae09d1e86da70081b6e3b4c2a072c25c5c3d3eea8e5b8ff2b5ed3a9a46ff00708ee578e6bac7d7e91fb2c9931b83a35c322946caf530e58c837edd901ccb11a412666205e77e9d2071fbad266788104db9590c40f88eed7fca67ec821d8c7d012bbe4fa1ff0070ad60a627f9d7f757e9e55276b41fd55aa381d116e0fe9fb94e9690b8ed84b2f61719f43fcf7472b61896c0ec86e438b6b0b9ae635c5c03413fd9ff00af75a418a681dbf7ff006915631b713398ac13da6076fa903fd2edd82aae86b409e49d84feb10aee2f1a090ef4e9bef1f754331cec31be67060f5b9f4ea774ec785cba1393371ec39951c4d2a668b6a34b4cea96c91a80913c0fdfba98d07440d42627bf458ac1f8ca9830c79178932264cdff0065aecb738155bc9eff00aa64a2d762d34f68235f102a68049d4006b8da05cc9007685d51696d42c61d51c8d88ea87d410ef34f6e53d0c416ba41bc47b2ae57d938d2d1accbf12e46e83e566fc3ee69d45dc0ea8fe1b12d77cab4e3e8c9916cba174b805382982ce924c9d42093a649420e92492843c43e22eda544d0a56ac474c91a914c174d0a1066ab18668d6d9da47e7d785c31aa56366c11260334aea001f82c3a8588d3d4ef27e88c53c3863605956f0fe08d3a7adc2e623d15bc53cc77473eaccebba04e615834492b339862ddaa3937f41c22d9a556b4dfccee101c782d06a3b7303ebc0593b3625419c33f4b3da579b78ef16711569d169b6a837e39fbc2d8636bb9d4a1a6098db743f3ff000bb5cc606f95cdf3071e6410e0e23690ede2c404df4e972b62f3fe948cdd4f103b08efc3d5a41d4a94b035be5246a9d726ce310210ea1e290ea84960630df624b0c9104cf9a4419006f1dd13cdf0f59e66ae17e23bfce99690eee5a4f9498b8048eeb3f4bc3188a8e32c149b3fdc5b31c791a4aeaf371e99cb5052ed1a3c1e201d4e691a2a4440301ed6c189e080d3efeaad09a635379fbf7227f453659e1fa2d0c1503aa6910386b67788b927a93c05b1cbf27a4d682000d02c20447458b33e5fd37615c1184a343115dd0d6b8f32640fa946f07e18737e77341f5577c47e2ca186f298f643e9666daad0f6dc1570f469f6c1c9eb5ae90670f9070d20fbf6850e63923db7d26dd956ab993690998f756b2cf18ec09d4de4f45793d26b4cac7eb37b466dfe47799747339f2c9db88eb224fb2dc6619751c5b5b7d3020100737bf559cc5f85831dff002434798b8da7a031c4802dd5638e3a66d966525b0456c4fc367c4373b013f339d66b40f52154af91383455c569739c406b5ce1a5a49b340982efe0e49933fc9710ed2e10e689b34e934c824b5c19d41d371dd62f35cd2bd42e6d7aaf7d403490e248689074b41d8c89910ba789a8783999939f90be719752d400a6d6ea047c4690d0c7031e622c06dba9fc1b9a3e955149e4f1a49e86e23d7f42965d4ab54a629d57b4d390e3a5a353af2039f131d914f10e58c6be9d6d41840a4d16b13af6f5d24fd51e6829a6c5609b8348dcbea8a8c04033f5f6eea00fbe87020ee2de6dac2fc2ad97631a4713bfb8e0c2339754f8b880e71b9040bcfa0bf0b970572a3ab3751b3bcba9b9ce0d1326c7d3aa3d52b16550c06e00131f322d82c335a174dc2cb8975c4dbb7a15ad62a55661796ddd1361eac8beea70e5580ba9da1305124a5a97254654a25934a70544d5235465a6749d324a8b3c31ae53b140c0a66ac674c99a14a028d814a0a8531d10ca70faea35bc6e7d02a0d5a4f0b61c925e0730892d8b9ba468a91f2f61603d10dc5e209dbd913c61f2a124c073b73b7baacb7d0ac5f20afc2497176e1677c7d50b18c0398fb2b78dceff000f5093e606ce6f63fdc107f17d6fc4b29fc333063d8f5488d51a5dd9160ab134f5199b47aada5302bd007fb8083edd16672fcbf431a1dbad0612a6916136822c8a1a2f26ccee2f2c697ec4ceddd4f86cb874868e0003ebdd1b7d66da7e6e45845bf6fe70a17b75900086fe7dca2fc8c0e08e6960e2edff00b5c67b9a370f4e1ee025100e0086f284f8ae8517347c56cc6d28b035ced819d3e148f25f1863195a341d4e2440172568f0f48e1f0f469bace812a6a182c25177c56d36c8bcf4437158dfc4d49e0111ecba5d6ce63d837c6b8c7690d04c1dd77e0fa4e14cbcbac4d84ab38ba4caf2c3c72a1cbfc3ae6ba1958fa70a35fe8b4ffc9e8be1bccf4e96bb6369e851ec43da6ce3e8b279065154002a1691336de42d60687016885833b4a57137fa7b71a901b1583735c48b0df792eec49ba039a64f46b7fc8c13d4794f78202dae63403da08b11b1fd10c6e185513c9307d47eaa47238ed04e0a5a662a9e405847c3af51ad1b37ca63b6a3251acb320355f4dd52a1786196b6e46abf99c5c4926e7736e11fa396026e37e7f345dac65066ae7f547f9dc90bfc118b32588c368c4d40df9445bbc5d4d4339f81501110226d2606fa7ba82b924bdd3726639423080d4c4b591237fa2447f6b4699fe94cf6fcbf1ad7b1af6dc100fa4f6570d6407c34d21849b4d803c475465cff002cc49edd5740e59db2a071efcab4d082e0eabc3e6a5a4011d3d51b082c2a1885c96a9125094701aba013a4a16249249421e2002969b574c629c35633a4c4d09cb53c276a2481135bb2d9e434b4d16c737faacee5781355c06c26e4ad7508679445ac8abc8a9bf04b5fe541331c406b1df6f5e4a3555f0d3d62cb31993645f61252b2b2f12b661f1ed2eaa1c7e62607ba7cb5ad75720707e533123fc781e85498c7069355db0981d4f1084f87eaff005753ec4b8c4f74b8ad1a25d9b47b2f13f6d94b425b790a1762436d24f681faa9e8b9a4ce83f727d9b792a22322c553bcfd4749b800ff0091b5bdcd82bb82c3c5cfac5edda57586a6e7ba1d4c362e1b2d7691fe44810099da514a181738796e55b4fa40f25e41159a47f524000fd54199e1bf174dcf0d2001681b95633dc2b9ae653204b88d8f712b5b8996510da4c1b446c364ec38b7b119f25255e4f9e737c1438b58e2237437e13e9597ab56f0bc36b57aa59792046df558af801f1d5694dc7b33349f404a54aacd88128f653409373eea4a59354a93a1bb5e66143862e698983b25e5c8e86e2c69b36180a81ad8d4af60ab92edd677061c44ee8a61c41042e7f277b3a0a0a8366a09d279ea85e230fa1c62403b9e0c5efd1c383eaae50f3199d9738fd41e21c04dc4f51d3e9f64e4ed096b8b26cbf15a879bac93de375ce22b4bbcd703603f354b0545e66dbde447bcc7e7f9269e36f78fcd55e8269595f1548133ff00687f8632f9cc413b35b3f5465f4845d02a39f330f8bf31e2e7a23c5fb2b0337e8e8f58c518a4e8806205e04faace52f12be8b5f4ea3854a80c34b458881725673c45e2718ac331ac31a9c7501c86ba07eeab606f6fe593f2e6a7ed3361c16bdc6f70b993b1003800083103a2d4e0df2d58cf0c97090d036bad660ab4f10af1cad5b032c69d22f274c0a74d1624c9d2508324924a10f1fa4c5210baa7b2e1ee590e8b1a14b85a25ee0d0bacbb0a6b3f48b724ad0e0708da460a2a7d8b725d16b05405360015cf8607526c98e1c91ab8e8b8a75892749db70a35f22efe0eb19522020f9a32d1ea4fa0d82bf891aaab3b49fa2a598992f1cc2cf3776c7415523ce3c44f7127b9811d9655b5dd4de08ebbfbadce6f8405c07304ac7e3f08dda4cf61254831b336583c487b5aede42d065464f361c7e8b2391d114e90350960e03ec63b305d6b326cc181be404f73024f66feeacabbe83583a65a1c4889e373ee7aa3181ada402c6ccfcc7a2a586aa2a88822a4007a2238225ad20098b11dd3f12a919b2bb881b33a146b54f88e71696f20ec8378833ad0053a358926d7bc7aab79ae2053d6419bf9844c4ac1f88abb1aff00e8bb59227d251f3ab078dd0abe32a179f8cf2ea626c0c5e3900dd0238d0d71d02d36f452d2a351f6331b9447ff00ab2225b0ae1eeeca97b4830198d5b96b8806c512a54da6a343a0cc09f53f9281d80730481653e5ad06ad360104b87a20927741c5aec2b89cb4d33d040fe42b397d07541e56931b95771d47556d04f03d2e8ae17fa20d368075243c4b9fd0f599f0af209c1112405366d449a72185e46c01833ea6df556ead00d7481a7b27ad54861d2609e63544762a4124e8a9bb56800d10f683e52e0086bbca483d1c2d3d8c1562a39c0c6fd8fe8533f18f793a98dac36716fcc2f37a7f95bdeeb9acfd23534f94fac7a1079f5573493d171936b62c4e2869f30881c2ce50f0e0c58a951ae1aa6c623650f8973d6358585da5c6c08923dc6e3da7d15bf0956c457029d07358d83a9e6fae38611cfe499815bb62f3ba548a55f2f38770a6e2091bc77bade786bc3f4dcca6f748246a99dcf234f458acc70cf6bcfc4f9a6e7b846b0e6ad1753a97b096874c43ad6086328a93b414a327054f66eaa96d07434025c2f7d95bc1622210bc066ad34c6a00d583c775db9f0d263ba6b9aed333707d346ad86574a865b880e6833ba2013c4892492508249249421e4ac1651550a5a170b9acd5911d164b93e20b1e4847f0c4bdda9c81e5f84bc9dbf345fe3890d085cdad03c53d97b1b8f711a583b22383c27c3a52ef98dcfba6a429b74305dc4abb9a986d93d42939376ccee57514a80b4cf989e825500df3be7fb8c8f484430d48f989e7f4543143faa00e927d02cad6959a13dba00e614e9fc512493a4823bfaac8e6f8b2c1fd2029ee240977ff00a375abc6ff00cc0f5d5f92cce6185d6cab1bb5d23e92822c6b463b058c78a9e69793bc936ee4af42f0cd62e706b6f3cf03f7fc979c63a839e0169d201bf002d7f81b18d2e14e9993b171925c7b764d6bc809f83d8f0180f86011e62609ecace2f12da4d71277161dd55af5cd266936247b854855a6ea6f75577cb61d764e5249f18f666945bf7332f86cf2953c439b5c8d0f077e1ddd45e1cc8a8d7ab589ff008b51d276999fb0592cdea36a62069db54fb05a1c0639cd696b4c03ba05912a4d0d789bb68375f22a742a30b0cb66e4fd9758e60a9509b4016551b8e739ad0e331b05dbf13798ecad678de817825e4b74b04ca8d6b4da6c4a1d9f65ada26299922083c8f7570d7d4d20055f1344c48ba19e54d682c789a7b05e13337baa0d725c22f1ded2b758605ae151c01903d96070b8e2cc430323cce6b5d3c09fcd7a9b835edd0089025370c7946ef62b33e32aa07664ef88f3a5bc708755058db8e6eb5196d563da6c03b63ec85e3a907bb4b7bc926d2154e1feacbc73ff0034659f8405fad9a9ae989060ff00ea66ce69fa20f8bcc3cce02195012349d9e47f689b077fe277e0ec1683152c1d6d68e7ab63aef0bcd3c57632d20b1e241edc83dc6c90ede8d31a05674cfc4b9cf6487349d74cccdb72cebddbb85b5ffe24acc63de2a39ac9679751888378e1654606a55a74ea54f21247c2ae4c6b22c1b54fb407f1b1b5dba8a5857620329fc26b2a37ca5a04499bb8f79dd39370a10d73b3d173bcaa9380aad632ab88da6354f3abb2a185c4b5f84d3569ea752902381c19edfa259a652286099484cd8483373e670ec2cb8cb187e038dc4ee2db71328b24bddd78d8305edefce866533e5202d050a64db4cb6167eabe0b009f981b740b54dc435d4bcb30044c45d2f1456cbcade8ef075086b7cb0118a6e90b2984c5bf5fc3375a2c1559b2d3095a33ce34cb8926491023a64932843c7b2faf215f2d162b2993e2ef0b500c858e27458f5f1478b22594e17cbf109eb6e882966c8fe05861adea6eab453e83be1ea524bdc2fc1eca6ce68b9fb1b04469435b6e8ab329f98926411b2d7c3dbc4c4e7eee40dc430b5ad209eea8e2446a775b0f4ffb56f33af00703bf2a9629f207a0593352669c76d199c4826bf66b5c4fba0b813a99589d89846f18e01951fd4908351ff85807f73c9f607fd2ce99aa8cde3f299674126dfce51eff00e38c95d87736a92d1abcd4e5ed25c25c24304e900b5c25d7e246cace330c1c5cde907eb62853317f02a31ef7d81d2049b69262c2c07ea5688b13247a7e718b27cc6c562739cd9a016b4cb8f4f6fdd5efc78c550d4c7983defb9d8854ab6490c9e63737f740fbb7d8496a902b2ccbc39daad3ca2b42992f20881c26c8e1822220c47eff00ce514af47cda8729720d0df83f2c85252a6dd2e24df85d03207b2eaa61e0db8549511cbc339c3de40f456df45cc6123fe9576d32d3205d1ca47f11e52c0081d6deb09b8e09ff0045e49d7f0f3fc5604d4a81b1e671027d4f2b5f97f86aa60a1e6bc8716874f5240fa2d06172ba54db2f0dd56331d36951f8833ba748343d9f10116020dfd0ad30c4a0ae4ccf3cce6ea28ad896697bb4981d8fd5474dd62100c255ab726d727eb7b2bb86c6ea13311620da0a449db1ca1481de2fc53db4c380f97988f4f30e7d42f3dc557155da480454fea31bd2ab3e767a3a0fd42d8f8bf352da6621c2f3712cee5a6c45becbcc195cb9a5c2ce6540e11ff97fb6b5145792a4f547ab63aae1313856b69bdad706ea6b6db8176765ce424b0d3a91351bf28ff3601f2fa81b7d3a2cce5b498d7974795c03e05be7dfef2b5f4711a1c746916041224823a1e0ab9e4e4eca8438c68d5e639ab6ad068800bc4869371fb107842f2fac7e139aef368817e9dd26e23c8d7b8482402489d24ee4749535010fa8c170e0082a4e7cb60c62a2a886b5386ea113bfa2bf97547399a81f2cec87b0ee0ff217584acd6bf4b24026f297168368bf5a993524591ecaaa4a1b8a780c8368d8f54fe1d79982b54352a33cf71b35013a66a74d1232684e4ae5421f37612a6974ad8e5d8896858cc332569b28a442c299d161dc3b7cc3a23d95be5e40e928261c422f836e9f30dca24ea560c95a0b3f104bb4931014f42a02c243bb2cfe3aa99d444c6ea9e233c8680c1a65d065321995ec4cb0b6b45bcf71ed0e6d30679bec13e21fe49ec846634cbaab6d3d55e79d34cb489daff759f23e4c7c22925407cf59a68c7533fa2a4fc3961a2de81a3ddc64a2d98375b24f6fa28331aad7d7a645b4833ea1a928715f17460d4aa6dabcad1d6373e9b2c6788b0a4b5a0ee439c47a9fd97a0bf07f887369021a1ad2e93cc9d8768553c5f97b28d33f0c0a85c0871372d007046c169c7093f7781139a5edf262fc318b7364b8c35b00306cd03698b126e60742bd172dc50aecedd3d07fb5e3f531069b61bb6a9f536dfd001f44672af123a9d3116b6dd4cffb28a50b0633a46bf1986753a8481e53f993ba254ab8d37b2ad9563c56a7e78e01fb5e12c4531f28d922abb1d7670718d9b15668e31ce1f29ec82e230907b28a8662fa66389b7a235f40b351f15c20c7aa97038ba9a9a5a209703dfa69fbaa0ccc600363dbd44a1d98e6a58c96cebd4d7348886c5cf799f644982d7d1b8ad89266a3a035cdf282ee01e00e656631140d6acc8e1c093fa7e7f554f2ac63aa300739c64cba4ff7124931ee7ea8f600369931d27adefc1f6526f93a24170565ca9861a6f6599c7576f9dad371b8fe6eade698f7cf94c881bf16b8fac8592c7578223a9eb307fb7dbf55749b226d206e389a8e807d0cdc769f553617c2e5ac7b88de36b030676e0fd94187c238b83bbaf51c0d1a67085ce3b34cfb04dc714dd09c926959e734fc94e9da7769f50642dc787b08daac64912e307a88baca65c7416920105c4c1b8836d8af40c06159428d86a70321c7633c0ee9518db193952a23c7340a6ea0ddda77ef3637e76faaea87cd4489bb48281537eb6d4eb73c9bfa94670f525949e3a45bba072b65f1a1aa802adcc09bfa729b32c30a6f0f649a6ee7a153f8828345315758d60dc4f1d2152c4621c69b6f604185724a369922dba68235097b2276ba27e1f6dc141dae244f50b41e1fa764dc5b68564d4587c24904eb4998621284e92843e7ec9f09a885bac165903649259f1c5346acb2698f5a9e92afd133007aa749556e826f56759a1218eb7f2167f1f95d4185d445f71db949254e09b77e0a53714abcb2a60730786b75105c481ecb4789c192090e0e113ba4920494ad31927c69a03d3a92e83d3ee0aab84a3aabeaddad07548b6d09d2484b63a5d1a0ca32e1559adc06e741e608882a1f116098d639f50db4e989dedc774925d2c692c7ff000e6e46de4afb3c5b17860e2436624fd136170c3e233e203f0c1121bbc7649259ecd0906f078c2d7c0274836f49e7da16d70f57500220edf4ea9d2412ec647a25c7e0c80018b89f459cc6d1d0448b6c99254d54a9171771b65d6bc9322f61f905c63181c3f3052490845bcb683402584ec2018999f3031bfadac8bb1f20149245e407d15318d17256471ac2e71d212491a40592e5d5343b4bc72b7784c9c57635a67e1904b803127807b249266256e98bcce92680999649f0aa800ea023d013c4fa2d431c0e1f601a3624c19e91c9849242d71934824dca29b00e46fd2d7be0182e307bcab990542ea401fed331db570924908733acfea0738c36445872573419a98416c76e892489ef652d16e95a9fb2d2f862f4c14e926e1ec4e6e83892492d266124924a10ffd9, NULL);
INSERT INTO `crew` (`id`, `firstname`, `middlename`, `lastname`, `father_name`, `mother_name`, `nationality`, `birthdate`, `rank`, `vessel_type`, `final_school`, `martial_status`, `waistline`, `uniform_size`, `blood_type`, `safeshoe`, `health_status`, `bank_info`, `tel1`, `tel2`, `address`, `city`, `english_level`, `application_date`, `passportno`, `passportdate`, `passportexpiredate`, `sbookno`, `sbookdate`, `sbookexpire`, `lincece`, `licencedate`, `licen_expire`, `image`, `file_destination`) VALUES
(58, 'Thein', 'Thein ', 'Win', 'U Thein', 'Daw Win', 'Myanmar', '15/12/2002', 'Junior Engineer', 5, 'UIT', '', '27', 'XS', 'A', '8', '', '', '09-11111111', '09-22222222', '', 'Yangon', 'Pre-intermediate', '15/12/2012', '9999999', '15/12/2012', '15/12/2032', '66666', '15/12/2012', '15/12/2032', '333333', '15/12/2012', '15/12/2032', 0xffd8ffe000104a46494600010100000100010000ffdb00840006040506050406060506070706080a100a0a09090a140e0f0c1017141818171416161a1d251f1a1b231c1616202c20232627292a29191f2d302d283025282928010707070a080a130a0a13281a161a2828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828ffc200110804b0078003012200021101031101ffc40035000002030101010101000000000000000002030104050006070809010101010101010100000000000000000000010203040506ffda000c03010002100310000000f8ecdf8fb1f26915d929cdc228b2ec4521bfc528d0332cf404a456a4a636f8ac56404cb245994a222d4ad00d1594a6c19522cc557eb84549b5d0997ca2a1e2245a425844286dc0896f0a26c0a967002e254ba4e47d897e55d3ab12e75de766f685df41c37575f4b5fcfdbcfef58772e9a9a395b5c7a5b2939d01b2d20f88899ed5106f4535680c9975b7053cba7d5a9306cdd5952ae95317628959acdad633a698b2d8674c1141acf4ce8333d5105d51d3d030630a068662a1a22b9d14b5d9829a3440cc75a216e9924c260884892190a47ade9ee3ba209e1882e1e491e03a2068c9450d25b49289d5e9eea82eeae898210e4e0955804ac16c64a2ab69a4ccf05225444252b18a6438d674c62990d202d59eee3bbbaa7a3b49eeeaeeeeae89e88eeeca2bb938260b920878612ba1bcb90f86039570f9510c259da7d135dddd5dd3d513dd5ddddb74f759dddc7477131dd9b3d1c4f4754f776a77771dddc72d9d1f82ca19f63e4c433ac50bc6008e45b62422582be133125d3612ce050345550e8144662a5c688e78aab9a2900e8173d201110b86caac8e123b89461820ccc8be6f0b23e45c9caaf9ca27859232ed06cba3343432d7d5c9d7e1bdaf49e776bcddf6ece7d8e1d6d8e528ddd0f376e5f5d67cb68e3a6e3735ed5d2aec95b2b2a2e893bbbaba262060c6160e091356e8d98ebd9ae95ecadcae60b6582e938e26d99eeaeeeeaeeee3bbb88898ca20b80e670ae6c0b86c0917422f99c00b2203a62a64660c964172e0642974d14a64b7d47aae85308ba34d65c8a9c5c76730d276632b47a912dc9a7d173a90d5f1a451605454ce12222605aac01585e089e67105dc49aa56c124c69288795731fc8e574d791f2891fc88ab1d544b714c4b6aaab92d056e1b0a18b135a4b3d5c8b255e69c0b5a3a5332da3aad1e6931e482b5bcb2a3e12a9e8ea9eeed3a63abbba09eeecbbbba3bbb8eeeeaeeeeae98eb27a3aa7a38fc226c2fb1f2512ee2b7396409f5049b6038ca865ed8a7171654e7c2003216399c8b61385f72d67a0c153a44cd90444bf8ad3718b48eea21313152ab4d29f5c192acd88aae0c5a8f4851c840d1890cd528f241413ab0c6968603b37da7a2f98e8f1dfd4c7c1ec71e9ae354e5d07e2568f6ba7f3ab58dfd42e7ce7578efdb58f9edb9af7adf31a78e9badca36b52328a4d2eaae56f0cac717010c145ade0569771cc833bbb89919529180f95c339503b93c3043a0cd454c912aeeee23a78882e078b811640a170c238f9078ba16a754a14aea3365145766945124b835655c2be1935f92c9d492e9d035d1ecf296f75232e4d432d9d57b4e203869ae699c1c10c090b95a7704131114521caf241c8d3412d82ae43a3a4e829039b0205e10ae3020784902106086a3a25060a4198e2797c3395c3e532593acc5b2caac87caca8cd44389250fe49dac81ea3e1e0a43c9ef1ebfbe6b9fe9f37d67be514ee3ec7df2ba87d7e3e5d4a5faf47ccb34fb077cafe8fe5f6dd8a118ba3d438fc55267fa0f8eb8774aa9792259d304e4f4ad9038e0e2039c652ed01aa63778a5d6c4443c8ad2f32b4d898ae670003784159615cac115117eb9509e549e7245c2b86a583a261922e2c415c9c22e1b02c6c8a279bc0758e5413e614c37413ab96578a8b65d0d1c0766fa71c13c5ddd4f0c52fbfd2f9db79ebebfabf0e7f3ebf761f8a7a4c6be81de26ae5f49b9f27b0d7d69de036b9efd5179eb39d6dc671cb6e29c967904ae3ad23f9530c85487c224c07533b8a07a46a642461a99064b956cacb42eeed3ba060f9510ee548c81927a78113184d2be94c3adbb4d9c74e9d7b9a6364296600960572140c5d49a99330c19192a25692d90cb0ab7344f87cd41c950cb3848b151010a095116488c0ce08192b9184b21a406b26250e62ce8e4660cc08289ea05b4210ab21553ac0c221c02fa62c898251839130e844459e8413a694644b062619091c432148cc4c80d3b910582a9d167c77a6f2dd79f8995697d1f9bd9b433e6be87e535ab66b332cd9df30c5db4d9f5965367c9facee40cb6451167e402417e83e530953162512192254ceb725d6572cac32bc2d81a8bad08a07179b4585c8a8d87b2b1968ea845a4d76112e900fb838164a0c2905560e4a537c4a4371759c378eb34355759b16a4aacb52226c4c568bcc2875de291dc5085dce2b159e2bf589110f28a8579d2e732e1c52ebbc5365a3969868d633e2e0d9458dea5a6c44a56eb2d767d0786ee77ea777e46ce7d3eb8af9291f5ab7f2eb18bf61d6f81ece37f6c67ccaef2e9f42ef0f625f633e3147b8578bd68df2c0e9af4ecc4b72df8ac52b6172358a256f4744afa299302102d63816506d4b69ad5b14a3a2ba386044851556da22857bd5ee6a2ae252b83c752af5914af069a93518ee0382e92526adf2becd7b13565ab64a64b9a67074721822136d69502d2e9116204cb644cb6459912c1c11c60419a7a2c15731a689a74a261c2be0b862a78460964b00662a22442e181d2048ce0894c460288118c49962546170f517441c32b383a2246441ab622bcb4fa78b3c763fd220f06cf68b4f94fb6dd0d3ced8d9e91c75a32b715a0b9d58cfc7668efd0fcbb455262cf57e2cf2b86b2ac97611cae15c960eb9c3e162395c44132006f3600ba20e04698caed90a54b2d32835740a9f468b720e3485250c0e1539120cc412c02980c80a9cac87014493044285fc205fca1360e147626554b665228642a5a52a4ec0098b0b148b71547ae059542f714a6d9599f3a712e7bada114bb0e32bb5016abba21436d2a312c2b0580a125f496f5fce1cbebaff846637f4cd8f8e58e7afb53be196f3afb7bbe31771afb1d9f8c5c9afb147cb74b3af7b3e1225f7caf0e71eba7cbec4baafa2dceae1d670f90e5670f29444d8307d0b86c9995b6ea1929d2a933456eafa90be55c88c0d8722c5230641b0192b1e974d39d58d6d9d3396d4d42ab029986f260b3083a68c49107d01cc9131638af2c10666408210ba64e222039b22a4fa9705074c4101211230144102921c3072beb1c4beb5b010ace516471d15262419aa6184be1b0b0182b84215c5321428de5c4306028f82090281426360f4f030c8060e515cc85fc664a3fd0fcc975792c4ae50e02659244d58eab059650645f2a869666acc5be4b15eeab2968aa94b6baa98f95443238caebbd05165d32932d442899304c08871541abfd9c45f1a245e9a245a1a92582a64684d428bdd5a61fd5f8bb356234cf29f2e84d0996f429b28cf4046b08ba35d4b6812d18d5c86be8410eeb007974ee8590b3e41b4864d5a2aec828115612cce999022c4c9526d12225c134a938ae0e1b0c53d4c04d54b4bad14f50a2cd3b5e7066bd7ddf09d2fd4357e3478d7deeefc02e72dfe83b5f05f43cba7d7d9f38ad8d7d4a3e1787d33fa3c3f3be857dd2efe7503f4ab7e2dbbcf7f508f9eece37e92b545e2ae8da42551745ca176a4413a454b4e559994b0704a53c671c1af494a84cc1c3309c604a72321101c19c154f749d05c47148b1740b29223a7a088249191040c6840e2160d8122e14aebb2ad1427111c529d33cb132444f128cc4924071dddd531d072e46207859e19822262bbb8a2219149938020a0106081d334105c912531c506bf8b09c3fa2f94a160a8cf71c360457198036404c9b2061cc44cbb802632170f8956524083c6818b91d6691c978f3ba5d5ecf28be39fc69b72f8d956341a8ba4c2c1072484754447474955ab0ea8c8b62912d0a58a2d1386b8221ab5b85b6783624e19cae87c2c95afaefcd3925cac0184e592c529a3b9d0648b7442d9654e87b11d2da3a3c5a1ac70f6512abc545b1a0544b36f33354682f395669ab355b6952a69b9baaaf1a38ab8d5a5a251ab8e255c54b5d940a33e550bc4585d38ce75c2951d74ccf8bea441324533992ce8509cdf5be8fe5afe5d3ebda5f1dd7e3d3eb25e1f4b8f4f4eec5d9e7a73db773d28b742c4b923b7c6046eacc63d409684dc0112600848271712433996c491ca2c89a930e0fa38391e0a47898e127860642e4648705c1c1c0c9dddc0f140be674206c71522d09561c00c10d710cc1744d4777132271dd304414002534ae69088b13255eb325726f5239d25717c0917f25787c0987f4579b3d55e6c4893692fe260597e8be4c0ba044b381e9827b8c375638b8ece743a23839508e8133a60e53b15185de58e63942ca42eda405daeb6b13d70a16f5246c4082710a8788b860806de17c72091122a5c204b8617332730207369b61e49995c6821f0b10a144596d738b3d58a2cf5628b4c43e5364366955ed926705fad6240d5a8310477190b92384f39857e7850323a1bc8a957abd01ab894aaac2d51a93cb0a7c24c335f0de080e52794b04874410662d80873612fe2964d5d0e123850bb951d2562facd8973a743973ad4cc6ded791672dfd375be44ce5d3eaabf9a5bcdfa76bfc96f73dfd62dfcc7d6f2ebea8b36f67a36424ee110952a26b9a2400e0a395748e9495ae2544ae95c8ce5f0f2490d8081b2981dca90c60499890a408e8ee27a26ba62498ee0a0789e18864ae494be0ab1686ab4d888af2c10388a9647d03c5c0c38aab93e62b9b64599952b99c2b9b0043384aed0c560b40221f02a5b22e5d257eb022488cfc2303dfa4f925c3211ad92325644f730892e00d650704c15cc82188704d5c16995592bc8264b275551a0ba6c87b1705ce53651af6d28beb0cb73c74c4cd3d09330ee89522c815e1a3670b22122e1a08e0b678451b0134c65528b5c892cf5438b6553a2c9558348f38cd09a13178a849a079d12ea9e5446cb311b1b039c6ba4341d1cbb2d33a6d2ec414ae884175312b4315854ac0e970d58897068b133104c1221b0091323b88e025e70917cad7374a26c19ca07c5024e6e6ad8c74b58d8328aac2caa2f2b951d974b5eebeee3552c586e340de3cd5addc5753ab5358a92d6c64fb4e3d7476b15de7efe84fceba5d84e72cbb5eb09622b98d2519331214c4933d32ccc15b33dc4f2e21dcb20e060395758de0e86ca655fcb3a998e0a464ee8882e8e263a6ba0f85c98c7440052a11f0a91b03271c19d25343c7c0f1f44774d0f17444f754c4c83c7d0b92822262860a00e3e0219c4714810600482a3f0a74cfe93e4c181072a90c9441c440e35ca1904c3c944474741124cb3296c490b423594a63c688e630499f092391642611aba2c1d728b455ce5b4eaae868100de43485db38ce4ecaeb1d7ba079d57a34698857d7553ae42536bcca817a0cfed002acb669724074c493dc01c041702ac96ceab62ccd418b934d8b6a1311699438bfd4792dcd662b0479393215d052049c91dd20414d2e18c1636a212c732144c7cb562d4c573b0c15d6a7353cf64552b6c96938df2d79b4d973e350e31cf6992e3c6dcc65d9bec96bb5b39a960d8958d6b33aa317e4cbadad5accc0d156b35bddf8af6fcba6db247cfe8ab9167277865ec6b166c3a85fce9ac59e74d35365328388e3eb78ba422864a5c6653568d6aadcc081890a91884672791e55e4b255896c4a0e569aa46c8191c527144d14c491052296f88a8365624a60228324e0c92823a26098e83a63aa486626448e9ee0b8489e82a5c33a150e115c722a4e08e9e204c45a2d0d7e102b05fa1f914fae05206cc15a5a4568b236ab8d88992e8e82e1732601708c951960c461d2988b07540b674ccb02a91c55e4795432d75622e755e2fc5588bedcb99755d8e71b4dc228dd8c8b117c6b307b2b145d501c0c344ad5ee2b4af061532a90d7242f9908a1b11485db12b73cca13738a317f8cf0d08aa6769403a5f0aeb031589f02b9cc28becf2d7eb0b444c9287388ad2f91136384193a2a95922bcda98aee3288363f351d7599d51b0db11546fb25cf75de2a36c466a3adb8a4e73255d959e6d934b735b3d3352ce2cd1129a4b7a60ca97174eb14b653ce33c7654636bc9cbb7d8cfc6ecd781166c2b02eaeee74c289ce8d8b64ad601844b5962699971b51ab68d2c562c8050b0610161555c1eb450b2107a7899881a4b995e4962b0d523a5243b9643380a8e42438ee045bc2a59c2e4f80399819640226070cc54f4713d1217474147413311472110d95187dd36c4cc1027d01062009722e086bf148ea2fef7c9ce5e8aeb3c6df5949b620473c858d92150c92abac365ab161689eb3717303d0746258ba84a55ef85525684d63b3400a917c6a993547144132b8a3e028225c8fe514190492c4b069a0e2c311d0d94b61efacc96e95728b5c828388916bbe267cd9eaab36c4a72d81527d4116e62acd9e13d6e22acbd55c0509d2e996af599132f81525d05dcc112c913170e5a8cb7c226d365a657673699dc64670ea4ad16dce8a71a8d9719ba83145cf74522d239acb6dc092b131aa82b9665a6e7d9cdcd0d84ae5cdaeb2a75b64b5ac937345d0d97a2c366b3475a64c61dd931e7649720b61b151f60b3a4cd9396995be96aaaf918e3b03653734a53695d9aaacbad5a27a052e4e47a9459e41db756e2b3c396d36a1c5aead32d8eaf2afe13200e2d58342942433313d31cd02b4cc083e825921224c0a0a46032598723347d044cf4c44f11053351d3cab062e40898ae8e82662429193bba23a47aa7a389912869acd4ba26bbbb8e89e045808b8388fc884c2fb7f26baaf2eb2e746bd6646805558b3c88231ae26325531b1081b6256378069240a5355a08b0aaa1cf582a7895c2e30ad3640441f0b0705288880e33165dc1c81c04f3684a260882439898732b362cb68945eeabd2df6506c979945d2db088cd670b080bac9724765099c57a0a81726a815d029cda013d60c5758396b0d81110e0b16e1317163a13680a523874b11606596a4e2dc27a1921d052134e62225b455d92be6bf4b65b460d6ecc98be158e1b668c9a8ec674d6a332ec62e875539a3012a26a865b009e4b2749c5cb19d335aa79859ba139ce4b855ec4d4344a2644a597a4c6488cd34d250e24cabc94f0ed75a5861135133d410702d4f5c95ebdb5256178a2b991284326859cf14367a5a6abeaaa0378629f594d9106441f14b05c474cc913240f14907d274cf54989c4cf1113c76c4cc5744c0b06864a131b04ba48e2e227a0e82e038b88929812e808d7c3657cace5f0d84c0de575872be8fc7f17adfdbf939d1a6b8a8ab835951a8cac79d969873af265b6dc4a0b790be6be4ce3b95eabd2b68a4598b14855b495c64ac58b4aabf3562d5c8a7426748e110e57c19aa50a55c3b966a7cb9264782e098398208d643097316b90516092e836a262c1d328baca8f95cfa651a034625bc54992da3a665b05ccad0e2a09640bee81b2b6e415af05500babb94b572338214dd57a2e7546167ab4ada3ac793a10a2db28f55e3a511a33466343b3896fc5034bfd9e06bb719f2e99e614681e69cba0ecf39ad0b188c8d976094bbbd8a72ecf65be2e42a54a56c8e6c96752d518db151d357194073754b2d917fabd8941a4d941b67425a376f3a6e83eeca81ccdbddd3a474f11d3c02dd1156b6857c4a82c502a62ae49f56d0c7839ae2e381e64aac1f35493a5099a57c8a11a10508bd1153ac00a93ea0933164de145c5125d274c4db3304744c577749027c2c5b10986ae418e5d17048723d050234c95105d12474c126041474c0c1f0a92e204e2bf27f187d9f933ce296923500cf5e89d6676ba8cb1d39acd6b500011d2034224a0761942bb8c8cfb4e92b30a4ac8d1e33075d75931b1063277a2bccf6e55d4cc1bfd5466f419fda0b2875e2aa7d6f8a84f32bc378513f80eb11083670be67007d3066ae86c810c951c365643782429098618b251609843c5971ab95e5578b4236658643334660c4aecb2a845ce2a4dbb126696db66b057e9863cf33582ca077fa5cd1d6b31e783d345be70b79098d3aca4a3d746ab4d9192a8df35a8e7f2abad59cdcf8d85c66b1e42bacb26aad8b079529bd16e6b344e2876974b56d4ccaf25371a36436586f31601a59a9b032596e79cb7895a99b1a08bb36c34c67570e93aacca8c3919d59eeed3bbb8eeee204bb0557b612521b42566364e64341299b7ba78eeeeaee9ea8eee3ba788eee805b4724c1ca19f4da3c502c5a197474274c1045136cc4f577771dddd5c323900c8c802c1a5cb201e28216c185b60c92e2238f8099838ba4ee9e238a05c3167e4886a7ed7c9b0ca64d5fecf292e59c823d11e033376028c176aac2c09596a58eae52814058c1081f0992c422cc1c5839a0e63a5aaeb0ecab0e94cb8f57d2a2cf343ba8dcc44fa5ab6610edd95f37de9d55e62b7abcfb9c0ed40d33e3425291681ae646f323027694651699195d7c52915c8aac2d01327203192249a2401c83cc28e30629971e5d1d313232af6d66cd3091117a69945865594b0ea852dab34ace6d8b14599d5e5f325503c8af370e2adc06ca8872c15db0292af2f5292edc599a3a3d653b13d0b164573930ba2ecc3cdbea519048ae6cbb2ece6dd626d66c31fa18de5f6c4e6e31e9a6a83ac7125d39bc6b8b5d15c4b000d84f3f88d8cbb19bbb6735f8e9762a92da6546c5a75665b6894c52e89da7bbabbbba23ba2204a32589c48333c11895b33135dddd531dc77771d31d53ddc77471dd3d01c5c41775474c100c0c83a63338a254a626ba626bbba09e8e244b80e3e067b881218082e9038e00988a295cc1c8705c3c1caf8642f83e5f0c8183f3186b4fd5f9b86addada9909d4a765286ab79816c002e5d712e0612055b28965f00d5e0b471466e2e8249f9562b5d2aa639a26f4e4e657e8b96b29b1a8740b36f0a094d82e8137b65ceafaf35807e86c9e42b7ae559e6d9b84602bd420f373b8ab32acddb26227d3f4be52bfae1d4f21deaab59e693e9bb53cf2f6d1667cd91b170c917d327719ca0c29025e52a42c3a2916bbb37cfce9d5aad170aa9cde6c6633459152d58b58d56befbb8d29cf7f3e8077ace35907afd9b895bd1c59e707d32edf3fdb0ab9c78d78b3111bc9b329f74eaaaf56c66e057f54078cafeaf33a6315da0eb2876bb337003788cfbd6ece3686de66379d69e52f14766cacf85f388ae16956574d95d2659d4d6a8f2902125c0d96d58a2d96d9567e76cb48b70f6415d318b3864896af4c7693d1c744f643d3d03062044848668e2c7578b6cc57e1f0a986924c3909a3e1ea2e1927bbaa7a26bbba098ee384a325f1c444f713d1c7747123304c8c85c3c1f04063111dc3085c101880850034c94f43bab896a2a896faaf16a6b49626af16a6ac9f0746a8fd1f9f971a09b29c68b8c4a1eaccf0abf789d4f153eb975e54fd3959e53bd4d7af2d3e822cf3fdb75aca53a112d2b1cd4972426b46c675bcd743df9a8eb70670df6192ebc88116b4af619625aa4fecd5bcac4aa73ece74164bb1ae1e21656e56a868746576938c71dce329ba852e62f69b1e4d1ec86cf131ed13a9e403d726cf1195f42a9d31e14bdb2b53c68fb093c847b2eaf147ea2adce2374db1953b82d65dab4dcab56d96cbe73bd189e7a7d1b8f2b6bd10cb8c77ca5a8cb3300f02ceae5ccd8cdd96e1da9ad3750bf9a60c5cb5e1cba15b3a4ae1607511cfe164f64b5dae61472fd156af361e96759f3aedc39709baca2ada9766805c4ad783049e050e3aacab02b88350aa9ab065912d7429e76a5a657a65a6768a5acf7bd51618c586894a64b3561ac864870c254872136974713d124090c4018c89160833d351d260ccf441899d3d274f75b331c1744d774754f0f4144441444050301f0485313677744bc2b5258ea625dece093507286b563240d35e5426af65446a867497469cada1af23e15c8ce02688c2464832a04c488984f90ca97edf133927a8e6d05c6b763d85b4559d236572b321c39c830d0f12b0daeaa48d424f375bd8869e355ec29eb3e5a7d291e619bf54cc6db550dba466a5ac2665b6599633740ab3f3a34f00cb34f8d3b197633abdd9eb9752c61ba370331b2e8167f4b7e73a4d16673a344a9333ab8ca04ba6ccd7cb644190a4da0aa69d18b32a96fc59e723d085ce1c6c22b1ea6c2b58c82d08d292b55699b36d560391c5d9a6d96ebe95bc6ed3ebbf3ae2614575dd23395ae6642b601725ba26547ba735cc4da97a2c94d67868a12bf18d8333249958957cee96a22c54b97b2b9d770c9d13c449491052265dd09af766b2fb4f8ce3d01298ddeace75b6155f65b9b5dafe5491cca04d9048e01218574a0a2c1d72ab135e55e48319212365530d251da523344331030702c5c122b9820cf4d74c7411040c2448d94b28bbb97ba608ee189e1e4288e2786421e5d102d2588a294d1451517555149697542cb03552cdd1a3d5706a91666a9964946ae6a1d29909cb052c802635a4c58813cdea1611c07308473e0f982b52a7a7cb442f2eca636d7acd60bcf32437b97ceceea9319daed5c976a766e58eb94b8a3be1585dbc2621ea0a5165855289c7153adad115b44b4c3ade8cacf1957dda353c5daf4352e734ae895cd8d55aadce4a6992c301d281596cb59b71b9d55eb1d155b63848356a6e4362c12ce56141e6cb542b7a69588b24a6ca2447159771555c9a651ada6ab3317a236668ead7b282ee0ea67069c599ccbf252ebb3354dae98e78966b18b74bcc835ee3384f3e054b8a16e694d432257b88adacbb6b4a6bbc295ed4743254d5553d25d99856c112d372d78bc5144ed7520ac9ad4ebf1144adf153acc1597760a85678ab2e800a64913801a2c0a789460f8503c04c30538d2b2c75692e369582d4a2669dca82c1d31340b34cd1ea4da7f24078d588b2280ab3350a2cf2207f57e1f02546c4b21d2076cc74123c324c44123021c008499492824d7572aec92786ce5c2ec10984106c58b939166660134a513935e68b334ce26596031a698193246289d02c8a0e989ae9e93c3d3f4b577cbcd56f414b78c71b88de6b9415c9b5d6b3aaacb679d01b592d475864a1624f364a592ac6d72d44e99d6127d1ad3cdafd157b30e7542ccb1d694c29ddad59a5602c5737850d892b75a92bf5892a15c3284de2968b6e408239954bb109595706b357aaab33faff599b3a5c526db3ceab9b7a16452139052d9b342dcaf8929b0e60cc803a2aaaaff002500d14d508b2bb16ce70b968c4749a84b160c40584c514ad2570d623a2c32a7ccba4facf61e962e8c5229ab534db1679136bf945063120c1f0a6110530540363a2bd8961c532d00b7912e26cab0b3c56364d2e1c0245ab88129122f0b13d20192cc32020e27a5e8e0b2562a462780e54ad0f806ac5bcd6c69951e5b834c6acc5592e15528b715c0b63508b1c9e1d2860e2030b861488265612c8692e69b2908b315e2ac8a221fca8a6c2a20c004e5c800b6058aad612ca80d74b19eb98e2216724288e5408ba5e3832388c8709e6c9f3144c8d78b8c260309e8ea10208995c8c951029b9d66467fa1a373e691bf5b58c466a05948ac0aa4de715ec1186d51e75618874d3db5da3785912504d4718822d2b2a56d304cb2d2e3297b0b317b606ccb1d303367408ca1d993107786cc08dd031e75412875b98a7d779694dbeb2b1bce5a917fadcb5ec026506a4998cd124cc2d18969b2c316a95a24aa5622554b79564520f1952a1dd15c2c0d500d086738ae09522d7099b1c2a1e4535dfe2875b8126d955798defc85e9e7e93c652d1fa1c3d07ea1fc75e938eff598792f71f3fbd436c62aa2789812184072c949033324b79ca2672771ca8949812ce008a6078a01e9e004e00060d24591020c9aac36c92a1d9884cb640938558396257622e6a85a555555844281a37205c414c4ca13dd4446702c9251831038b8823316d9e27962af150a365305b2a725a9ac4ade594b3dd153d1c4f44c4f77022ce130e92b85a12a26f0a67069c59933a5099e77e0a717016a8da84ad3624493c9526e9849b65a83e6824460194924335d1d042cd7111d04cc4a5d838b515ae82662b5129968d6559943ac299a5a1cb9ebd3ac95ca0ab8c7a2cbaa366ae1d7643cd04ae1011f2b25388e0f87898e1b387970711d506241f4424f08c1440dbdc31612cb85f360092e238a08ee826448e3864471c83cc911cfe152de17264a88b5115bac7099b12b5e2d72520bc35482ec1442e2ecaa36462b45911047c8be2958458fceddf9e868fc76f7bb86c7cfef60f697c687a3d4341292e7d1be5a9e7afa47dabf29fe86f375fa9078cf77e1ed562d9e54dd609409d2a933924c4e52289a92e3813e924866b8a38e13803a62223a0813103a7aa3a64e2e2220a207bbaa2260113006279040c405bb92bf388a71780a6364040be41998a9e0e8390325ab60c989201910a1b1d54977e4a67708a05738413c96bcba2170ce54f1891dd2414b0064983c7d4a961891b5c56eb4315e2d41546dc5520bc31486f72503b26b54ad4957ae0d5537f457e7881c5207171dddd50121043dc0c14813106a098570970a1700a87489e6c8987c25555ee3347538c98d61326358533d96f96a13ba5571c21315cace0227a22a43b920085064442858d3e153051124f711105c0b38c886003121443d047474110912c51d14874389670440753dd2b13d2a531271419c5d20c33a122e1a589c0a07c4257662cadcf1122fe442ecfe6eed8a3f3501fa9e5b19e79bb422c69ad6d5ce94bc42cb998aed847d0fe7accebe9bfa2bf3a7d37c1e8fa31e6f93f3f4fa09a1fceb3bba6a3a78931208c5952513133135dd1274c713d1c7474474771d1300c145740f0c95c93c3c4f0f131d0409011130823c293d124cc70503c40910ae6c0a5d85d2b8e223bbaa4c2469a590c91259ee93a7a62660ade9e93ba60eee9238e6150d9124d2a513245f33a1727c094c83d3c0f4f1113c47170b16883c7c0f148333c409c03c5c2e190043380e670b8740817c557eb1d15e5f0571b5051d5fc07fb97d38d5eeef36fa0a019ee3a262a2244eee80a238ee8e3bba0e8e83a3b8581a248100b2c756e1e0a516fa8f597c6acc3a1303b93c3cab9aba130583ace1d2b2a612ca0d7c2701450c918986840944d49410250419894a531cb323d0c909a22088324f53c91c589ad23f91c344242889263b8e1231756efe52ed847cfcdbf4fc7394fcfe939f5ec134cd8a16044bef49b3c064a2715acb5955979d5ed9f33f40cdfa0fddbf2ca3c9d7f5e0e1eff87d112339ac203a23020a4383e0e0b87864ab86f2f8381e2607898e108638e8910a57c1c849311c4cc490b310064520678e99e4883150830b20a246c7764004aa9e0819c055241c30d443a5130fe498c90953349cac913aee9222678e28e899090e438640f07c124c8913c3c4f472f7742710c9dddc744c1d31c774713d1014440711c77449dddc774713c3c70cc113101704d4c871f80fef5f1df69f57c9faed78bbdf37d41051cec74c11d3c0c1703c500c1c50410903c11230a46cd6eb1e8159c050029a02c1c36571b0ab22544ad9023ba38325993d132c9448c654e92ff529ab73558b625521cc71d1d271c3083828083e512e9599893ba442918087a0eeee2647899094991e5990e83202a221cdd4d7f09f09f27ece1eafc1dda9ebe075a6bef335347adc61f43725f251ea321329c93bab7a999a9273746d49e4738af6ad755fa941f46f9dd8c6be9387f49f9372657eabfcdbeef1bfd3b133f33d32432a5c3214475148f44f0c052114ce5f0ce5743215c188c214870c11e278783e1e0b87839548630248c00702230952345724872ec6728a190b8257c048808ee4f23e52729c84d325463094434d26358864ad3415b609043255c379703797c192a4395107cb986f2f8672e4672a06cab86f264742f8672f8381e0b8203e09a290e83e11a325143443831810a57c1c2e0642e0672e064286bf1947d1aa7d6f1794fd39f98feb5c7afde7bc47cbfcdd7f438fc1bea91e938a38ee227a060b80e21a1138140f010ab4a2a8591b2a1588913cf813cd01496574395c510c1d2d8d3911164a5ace612af9bc2a4f8457bca4ce9bc365436ae88d312da65224bb35592d89472da3a9647da14dd5e1ab6808b131442f5517c101f070521c8531277771ddd2471c2c3211657fcaadc0fa1e68ed5c0f4f0a68746d65b132f0dc88112103a575416f82ee29d05680ba86c53616ec57b1664f6ad497eafe4b1f439577a2f3f929faff00d47e23d4f2f7fd9b1f97aef3d7e96c6fcdde7753ef1ea3f29dde99fd4bbff8edd8d7ec30fce5ee38efea627dc7a2e0863a3a13ba3967865264b8092915d3c0f13d6bf3968b86aa84497131104f07072ae1a202304790b8383e1e240a00831067b893123a7a4e99220a782e8e5325cd34d24ac253a23a1883d6a1502d6456eb3c55985d379730d94f53f95d070b81b0921849e2c4d791d2a81f0ae1b2b90a020672f8672f8325c87cbe0e02060c71dd1c40ca06887548f2acfccb7be79f52fa7e5f3d93ee3c1eb1e9fcdb6d6a302b147d03e93f9e03974fd55e8bf14fd33875fd131e03e85e7ea02c0e7622781138a01670a17715f9bc2a1dc95956d759e8d25c9988d31b331da1294ec31934b964a8f37857322820c40168c8b83116a7ad12b7a7504bad15ec5a74b9f3a20abb54b2cd2a79b15bb73cfd98f44ca3725708cad11b5253e6aece2c7f3db9eee7e79f488511d7cd7f9ef9efc67d3cbf55fa3f84fa0cebddfe74464fa78e9e593bbf15796f478fb949007aba16aa5fcc8121001ab51c0d7a155d6d4da2b7c8a7a2c897eadd8c3b3a55999ad62f2e0fd07c1ea635f4ff0019eb3e85e6e9f0fa7f4ff99f6e73a598adcf5f4696de186da87a59755d5931dfa919b3edfc2e6637f6bf7df982973e9faf57f916737f6147e766f3d7df13f9451bcfebe3fcbbfa1f974dc9aeae3bbc2930ab454ab8151f233816ac5045924c28485aa8b1081474d478e08ae582aee18727684cc44726ba5ce49870e8152c15ee64d2e59122f9b22db2237924ae89a26b4e5680619f40d967948b3d4d4c114f6038dad3450acc4d95676811231298ca8890ed4b3d5511a049c4b3d1f7ce3d159e979539d3655329ae446c4f1100c0b848eea8fa3899812158e1af8d5b88f3b4759f5e3e5093d53f2ef675f84fdd78df41f6fc5f50f29411cd75d41bacbd4f0454d885cccbf406799f7fe769675fa93dbfe1ff00bff8fd1f5e8af7bcbd809546b463e63f3eedcff4558fcf3453efba1f9f28d9fa497f0364bf795fe76f531f5c9c6b1cba69b7c1fa84d6591675539bc265bc8997645ba7d95692c0ba62b85ceb6a0dce8ce4e9a933cac9d9456da4971f986b7a9beaa67d6b15b505913632c55397d16b797f458dda2aea5b9e0ea7c2fd3cb47272adfb3cd7aa82b53bd0e172fd4fe7ebec54064dfeb8665e36f34ad2f337b59d34fc9ce6bea17fe5beb6cbe8b4cb0a67a485c48ba674eda5060a496758a2964b3bd56c2357a7bdcef901f4f5ab22c4b6ccda7b99a7da1ff3cf6be4efeb3e73ebeff3d7c35af4fbbcd52a5fa9a87ee7c07d0b96f0fb19fa9eaacf91d2c37f234425c365e6598d6eb58d4440588a96874d68deacccebed5eb3f377d83c7e8f661523cfd2cd8a96c83352c8ac0727abd1d748dcb6a34d2c472a538950ceaa365aea6696ece6b9a7acba50e29066661b62b9930deb42c88c8f1e25e8931559fc4dc1499b90ea573735bcbb6b5294285f22352e217c5ad3c7b317817ab9a8b1a7d2e7d0bb20d9c2a367b411c953f354cba73d8f2f6a2cc78d12e983f7df33b7cf7f4aef39e8397453ebf2de62865b308f3e96b0cedef39edb6e48dec4af9d3b2ecc6a218c917cce45f3384deabc7e4abf97b9f67c74df62b97b3d069ada1e6afcb6ace5dd92ea1aa8aca6e6dbaf6a8c656bedbf9d3479f5fab55bf7f85f16df435372b5e36e54b1fd451ac1b96d7acd5f4e8f53cba5cdbf303c3ae754f5593acdbf5df3a766fd47b3f479f5828f0f62fc25867a7cefb491cdd4f4ff003f197ea5a1f1caf35f6d8f8bf47d66e7c5758fa98e562e35ea1191b92a42be4d9e86c79eaa9e973f16fd583afb53542341515b2cfc26f3ea7c5facf4d67e7c9d9c0f6f9ad2901d336b30c2aa57f759cbe3f633b7f59c9c8f59e32be79b18c59ef3eb3c759b176dbd667758cd6fe9dabf2ede73f643d2e685d959985a03550743a5c3ada96ab2ade84450a5da0becf36cd4e3bd6d2a14a2ac69e674c2d16ddacf91dbb5a99d3fda7cdaff002dee795f73e66cc7e22ebcfad65eacb7b0ede6292ac3751fa741196fb3cf3a5d94d3bd956b66e33ac9ba5a76d447bec2bde87cddb5753e677b96fe8767c87aae7bbb15ece742966723521367414541841ddc64d73813c7d62ca481b0ab12afae0c2a5c996411d5a1d9909b5d96e5b6aa4b4d2665595b935ce57bd105acd667a2285cafbca459142270822d9406992834592e9eaf9f1cebd3e7e6946fce65b5c8ccf5581acd5c8b29df35771eca88748ae68d2a1922f8a201b0aaf5f47ccd8cdb6da229a5a3e72c2fab579d8cebd254ace8899587cb21922447742f48127e36b74ac7daf26c330eda7a4a23664ca3305bd28e4d9b19b733402cd08b0895d95ca6a5be8fdaf90c7e3bfb3a7c87b0e3b67476283ebb1386d82a1a610f8aa71bb4e95dcea991959dec7c9614d7b3f39e8330aec38b953394a69d2a28b4d8ed4a6bbb5ac4f3794c88a5ed6cef53cf5e6aafa3a094d36835173a15a59d3c8f3cbed3c4644f4ce97d2323d771e92241cb791e47e883d33e1e3575778f3bed6b7cf9af9ffc828bbe870a9eff00c20ef3f78f8bd1a328e922c68aa1f45f378b91c9b3a293aeab3cf984cebf577793db799b751710b82090e58d81bb2d2d0f657f8f4f29edfcdf96cdfa35cf8ddab3dff920a1a83afe63d26f2eaafa517f783479ed09ac6bea3cbe8372f06e09f47247d17e6b6b3aba7eafe75176b6e50d672ed56769bd9043943175eb6ed50d5c57aab966de2c96967e87f3a9c6fe8d669a7cfd2bfa3af887a9d320e5d1e347ce59eccbe4b7379fa6afe43e94f7254acf2db066028f1df21ed8fbab3f3c6cf5c7e863f92fd67cfd082caf9ed576a945a11a52d8aaa8d4288ea614dacab15b5955ab4569ce34c6cc62c9a35ea2b52c2d535d0324c8c21c88a3784477248708741702eaf0aebcbab529c875fa351f5846c89e1ae13e3a27843042ce820a9601c471101dc14c24f41b9311686a72dfaf292c5acd22f8e7c1a719927e5eb152d7d7f2873e2c6686561e6fa4a9e22a3a7bdbbf39397e99bff21fa14e7e81be2b6d2fd0e40d4decd2ce864ba2e6adef3dcf5f4dbff31f6bc77bf7b17d6f2d6356d6ce09b5ec10c1194ede6946c52bd82be47e0fa59dede7facb5be0bf78f1f5a03ee70f95f3d17e86b236ebbea948c6a2ab6855d4e6c0c58616a67599e8b174f16e23d254c74f2f9bbbf2fedcaf7bbfcddfa836f55a0d1f2f7cf8bd126054f4f4e31286fd2ac016d6de72ad12f79b1f967d87c6bd788b155be9c316cd1b29665fa52bad5541a7eefcf7d579df805c1dde994d0f438dac6336ce767a7aaf6bf21fac31c33b99cf9f9fa0e8f3dfccbd6fd52bf2e9e5363c1e05cece269fa6d4f9d57f5985d79e23dbdba108723898a369999a18b73d0f9fd4e7bb9e72c6a479fdcc0d8b3215e9b3359cdcdd3cddc66d79dd113b177cfe6d5765bfa66fbabc66d8a9a1c57d8cd08f4f352ef3d0ac9c2176a62a57d152dd8a8a8d58cee9736bec0ef3411a0bb15bde7fd0cd677d372773cfd7c5f88b87df9644ef0ef397a2c697975eef2decfbcf8b4637fa213f19d7e3bfa5a3e395acfb6963eaf2e97c29066da1a1c966b876a1484a33a38e88a85c512ea0d72d17474771915ca6ea53eb19e8e14cd4488d96c2b816617034d27433104772c64418131c409f00abc667732c150efd7850dcb8632f728140d85a821004f4c05121461d11243c108cd7e5a7a2dfd4f3ce69e3d55cef479f9eb8b36e1d11d7da99d78124ecf9d9347eb1f162ccfd25e6be79f5fc63ceedeafa6c4f906e7dab331af88687a6f29db987d13e77bb9bf4b8f33e8bcfbb1ad9bb5cb794ff004f533af3e8f4f81a81e59ff0eef8afe87ce677ab1a5fac7f0d7ed5f276fa0aeb178fab6ba6aa5cc4bf4ee6be26be5f4c04916a2ab5c71da59885ddc0aff3cde7ea1a5f0bcfe93e89f3bba5d79a7d17946e9f7bf59f9911c3b7ecd0fcd7f75f2f6de3ad3cb4d0a1e2ba4f6d4fc4f90d4fb0fe71cdf89fa79c68059f671752b346cd2a8baf141d0e9baa060b3768bf2d1d7f2fb771e872b529f5e79545fbbcfa799f6f9fe5717f41f55f67c9e7b07d4785b317eb1f29a9b9f44f9ad5ed4b9af88cd4f47969b1143daf87f42672f6d299ea675168e5da36d997a5cefa5cccfb58d7b2f22afaa637f2f5d6ccebced0946f1418b75ba5af8e3cf5803a55fae50d184da8ab6f350b734cfdba35a362ff0099b12faa2f395f37d5f79ed9c9dd9fac2b8656bb679206c665566aa6cd1f6de1839f4fa7fcafe9f1cf5f37af60fbf2ada79da72868a2b675ea3076fd2f2d7ca19f49f11d339d7f353aceb7d27e5ccc6fdf1799b1cf5ee6324b96ee65d02d6742b58cab1d0bed2522172fd6c3197d8bfc5ede37b4c8b9cf755c5328d25d1b972fa3592e8ea218e15cc4d96217d2be05910dd26e6d0a97a8d12ef3cc887d915e891979d7a1c7a0e1f28e468c29678e0baec6456f66651dc88585ea02db165617a6a62228b84899183f2c65a74be9717dc62f58a7a6502ce22c20152e6f9cf58bcf4f2a1b775bf321af92d0fb9f153cefeedabf24fd1ff3f5f32defa167e2f9cf8ffdbf3378f80eb7d3bcbf7e7a7e6f3e0f4fe93e0de8cfaf2fcbfcd79eff00497c6f47e938dfe67f6bf54c0e98dff9ddcab664ef27ccea56d6f0cddcfd4dc63e0efcc864b673acde4f1abfa179ede706cfc6bc47a31f79f9879fdbefc98b65fd668b495656e5dba261d38b0c4da40f63f38f2bcfafed6f867c73ccf3edb5e4b468fa30b7577ea6ba737d0eb38576810e55789580872afaea852daa5925f41bea59b3dd010eb8f9eead533d3eb3e7bc1fd7f9ebd2627cabd0a58b4fa3d790ad063bbd06ee6f9d09b299b66de4d877e9b25b1a1c395253f3342d5cfd11ba08a18bad3a7959a8d2a4aadff3ae746731e9dcab5ecaecb5a58830797aa9dcac400b3b98daf0cafb39d8acad6c696ba5a656ed6a452539d43af9efc35eef9a5e6fa2ec4dc8ad47d0669959fa83d236e94e2dcfb17c2fd470ebb5e1fec1f2f8c5d5ceeefcf7ae6663e345e8f129d9ed3e8bf9fbd973e9e9fcbfabf3f9b8b85f45cce98f39e8b3c934ed4bb9eaa1dfa32c36a1d18d72b269d90b2ac9868440ecc0bb5ebcbe92cf958cebd44f95b66e1f9dd28bddd12972fa244a2a4c4e53253a19286cae1b4c973d9a0f954ee8969e56852d66b5a496b37269f4b6079f34044466a7406ca5d7fac0b359d2d056dd64caebb4f595a6ca345cc0a34786dfc8e7ccfa5ca2e635fb2e5af35753746a5ab914cf9d5d71c7ad3a1d7029d4b9454bee25d4fabfc56ef3c7e875fc577338fb7fa3f8551c5fd4dbbfcf1fb770edfa4773e5fabc1eac29deceb2bcc7b655943dbe2bb377473afe749caf42767cdbc37e81574cfe1ba7fb2707d180d0d58f36f3eed6ecb17c653f2fe89e9fe31f4ef19d73f2a1f63e37b6773ed3f9fbec7ae5acd6d598139ce2e93a6939c3955e8bc4e5f9cba653d25ddd4bf972ae4dd7192e852da35290590a529499cd55a3ab1eeb3e7e2ed56b8dfe959f1efbb68f4a2e8d72f2f8fb5813a5cb95c86efe4dd4dbd1603986953d4c5f41e069357496c66b35a96cd30b63c97a5cefd6f9ef77e578df374ecd3f4611bf9452fa4a43a18b677fc96b635962f56b2362991e8fcd3d2422c06b3429eec5655c7d544d6e3d16c805b9e8bc759cddfd6c4673afc2f59e56afea79cd2b1ebb48852dd4ec3756b34a070adbd2c6ecdd8f3cebd265b2fe369b5671ac66fd1b33cecf2e80b23ebce6cd2e834380a05b15eac9d26e2d9b34ce5b141caa6103e4d2f49e0eee77e9473df8a7dd01c09202db5e995d8818048d4758af63259c72c1430bba782dc6b6fb36e6698f1291094758aba110feb58dac6c02cd7e8288dd1b9cf6be6c52746f4b83a075c838a65f4d46592d4a8b2ea115ac19dd1a55a86a15a49656ace56f295d80b07866bf1be92dff004708a1ab8d5b0845a4d5bd03be793e67433b3dc8d22e8fd2cf199bb40d76c12c941caeadb0ebd9e0bc87549d36bf697c6feade3d58b5e311c5f49b5e176f96b6f26d94d79d3f474ae634bcbde5f5db5e235f9ebd3b30ee2e8f5665307ba3a0b811675239bc27c87b48d4fcb3e17f6ea7be3f278fe82f21d78fcbbccfd1fe55d650bf4bd86de272fec1e6f53e7395af95aa3d7f52bcd069509ae09168a1aa4396a0e809563abcb2c5971a434a1923ad616d368927b89c7b5ae7af5f34533b1b7f027471a2d4ab5d9a67d528529bcb52b66853363235647cd739516aea1325ad65a75afe64596d7b636c5788d5fa7fc7b4796fd4617d77c0f3de6212cebcc3826c5234aa015b4a9d4c3e0594f262da2559a55ebf5a9888a75ea6596e5acad1c6b10f6322cd01a9ecf3af353ec7124f3f53595b8b530ea4ba206cd0c5af494fe3bbcd7d2ae7aef27888f877bff05d2fd537fe55f4e92d42579966cabc79eda3e2dea2eb5beb9f9df6f3afab27e63f55ccab59c3225c5207552ab156caa5f555316966fb26e06fe6a83a6125128be6c6a8a246479aa47f57b52a6dd4617a5b18d5e1c9d3cd6ca8e2c6b532ceb4070dd2de590ab06aa19bebab72db5672592dfcc7d88af364cccafa356aa91d1d62cc56653c1524090d8674f8bceceb39ba141b4457716f30cc9f87f47cb1ae57b95d3a157543d3795b49ecf3f36b392e9da4cec9e28ba62ec722ca4929cf4ddc75aae9a694e8e71446f2cfa6eafccbd3639fd1f67c07aae37db6ef8db5e7e9edd9e3ef72d7b65795ad9bee4fc96c4d6fdcf3f7b3ad76e434d59ce934668497ca8b0b654ce2c7288916452e183031035093aa1ab32ad97ff3efdb3c27a39fe6c86cfd5f2d45e80a67667a1ad35e647729e7a67ec237131b2fdaf9d32ca3a6dbc17529bac68b39bcca445aa76d5a7daf70ff003beea9b3e64b4e9db5726c56cf4ed7cdf47654a7ba173e93236b479df30bf53e5b5977a4c0f457214191162008aa36ac2eff0093faaf96e5ac2adb11bc665ab44029d237e89f228e7bfb5f8bf28e97d0e58dfb9ac0b5e97373ccebe2e3cfd33e70284dbbcd7a9a146ab0d8ed67358171556d0723f4ab6f63792db9932026ca34f496fc7f635ef3ca7aef43cf7f2c7ecd4e9cea78af63f0ee9692965ae932bbb4e3a72cb9b59b65ad2555b9bfef3e5a19bf43f98ae26f66836beb3ec3d97cbfdce16b42bc627ad69462301b32d4ad7e2abc3b8a565b5ac2185cbe9ed79ad5c6af09f61c32c5aaad05595fba689f4db160eac4b674f21d2de591e56aed256756c2a992d5416e2b946c2e9b73a58570d4d1a8b5259b14a2aedfc3397d18f9f7675a29279935f6ebdce645946a43c5c65f3a351f68159bd3c145e5bc2fc7bbcbbeba7eff00d33f8b74685cf46e9adb5ed1130d6b51d99bd9e58a3af9d0c13cdba604c3516d5a8991e84cef24646894b6b34689d362dcd65fd1bc47e90e73c76a7d56a79e7847fb4b78d795bde81dcef9fbfe8d99d656c50c23de4fc8ab57d7ebfc8aaea7d827e3d66bec25f1bf67cefb0778cecdf72df11ab2fab1ceb98b62f7cd696e7d91bf26dd97dd8e1e9e74e5bc8f3de73e88b4f977c97f4ef88ef8fc975ff5ff00e70f770f162b67a790f175900c95491f0ba9a1d2f92b5a4bc74765334d9a5bd61d73e2234e8e7a0bf426e7574933ae7d15f316cf96f41979d65da5ebcdd87c8f4e7d5ec528b501607fd3be51a1cf5ed7cb7aaf9e65e98a8e8f4c5bd44e5e2d788ada9ef70877396b3c7d4fdbf8f4fcc33fa3f3a5f8033d878aedca652ddcec1f45575309b72f2fd43cfe1ec70df9d4e8d4e99a3ecfc89468722c6a7557b530bb671eac21f20d1ba23ec53197d0d0a3d9b62d38133dada957f4bcf3b37eda3f0cf98f2edb1e27d8f97f5610b35dd92e088b74ee255b97d373a1996af5ce12b73cecd2d8bb3377e85fa4c1eef99dcaf73ea7e31abce7d62e7cb77b13dc5b1764a45a5450b3c342366811361b606c513c5b4dcd4cbe94f0f5f3a83d1a394566bab24dc3a9045392ecd56add8ac516ecc2b3a749aa5780c5380422c954d08a904aa2594a18a9746d4351b650cce9b6b05c6bb72625d15d770097aca2b2474c1921b56cfc37c6f6f31ecfe83bfd67a33f9dfc3b9ef2e141ecd5ea5ab9d70b883bd2ca94326fd4ceb6c54b837d4ead8f6b31e72eedd773c8f2fecdd6fcd99ed7ca67b7aa0f357af3ddf47e3c333dd5cefba79baf99d5f53e2f8d9b3f2af39d71fa047f3a2abeddf36c0bbd334ed5cb1bc533d1129cf52b2abf2ac6dbfbdf3ecfc5fb297c9fd7635ec743e6dedf95f5decfe37afc7a7bff009ffd5fe6b9be7dde773fd3cbe97e97e5fafc77f5bd7f93e970e9f5ab5f37d8e7bf67185a72d94366bf3cfc0ffa07e0fd9c7f194fa3c8f7f9e9728b793e5f53654d1952e14579ab9935adb3e435a43a1e8c2ca5537f365b7989cf1946fd09bd1655d7b9a1a0f4d9d9f7b2961f8d39de9db45ad6069a32f3b2d0cdbb35e8fdf7cbbdeb95dc628b9adb195f43cdc24eef89c5f59f72f07f5cf17a2dbd567cdd47375babe5be1ff45a3b73fc9967d0f98f7f9a556cf59a572b01a3ecbe6baf8dd9cafa6d9e5af985adec0e980962b50c224ad4b52858dd1cbb2584d3b4b46c1fa1974f4fc5af96ad647bcf9c6e23c579eabd3566f667a7d12fab7b78a14350e3c997a86b7e41be8592655f785cc712ac9f37bb8f9e83e8873ecd7c1f44867166d50cee6cd7b6295e80ae73bd7f801c6bf41ec7e77f698cfd2e1f6f9a81b241c9a9f09dbd27bff8b7b0d6bed35ea5ee79827a322390506454ab76f36d46c16768e355e3aba5fea2c3d2daf33d8dfaa464dcc5af3669d85c31a96d94db9acafc9a3e576a11a4836d7986c88a8b1528641cbc3c29d1d34330da0a77be01a78bfba78afbeed9189eabe4fcf5e131aa07af390261d7b3f936190262a4595bba956ebee397965eed09d2a6b50d0934ebe95dbcf336f2ec5919b7f93c7eb17a59bf3fa3aa1718c9af919dfb1fd2ff008f6c70e9fd11a5f9dfd5f93a7b2cbb59a8797d5b799a74f0bae35f171b2fb73b98909eb907acb72ce1eb1e754aad96c33d6f91a58d7dd7ccf85f49cafdcf43e7bf7cf1fa3f33f89fb1fccfd7c2b6ff0087f59bceb0bbcce35ee3d67c9fd5f2d7d174bc6ef79bb7a6d1f1aec5f72df29a72ec566236fc1d574e8fd7f12a1fe8acf2acddc8a17d47d8dc4dc03cd958a99de85bc7eb36b471f519f3d4bd22daf3a1ea33a50dca5ad73528e96459c599a4d6566ee57ceb3f469a1a6d466dad0bc9e64767cd9c6dfa1f01ed58769d634fbafc97d66279fa7b5de53bcdd33d0fc2d4dbb5e4a753df7a2f925ee7afacfc33e87a92fc09bb983edf3d4a9b15f79a266c3d37a9f95fd1f875f4f94bee5bf274bd7f9befca8498f4c05a4742d3a69b5443056d5ac59becfc5ec7c7f3acdf3a177ae917ae54dcbda2a3d7324b135050233808211e23a20e4cd797346a0e7bd8e59970ad039d575bc5075333a6bd1331ac5e60fe6adaa5b156e6cea79cb59a8dcc1c69777cfdd9accf55580fb60e6e8f1cfb05797faaf9fa7ce8fdd78fd2b2da3bca69d94d8ed8c1b197a7ac8dfe7d3006e2ae40b82dd6d6c0dae3a91d1af9d630dda7bc14ababb846c2e185e3092780ac6f04ca43008e85705d12b0693b254ff90eafcef2ef7d0fb3eaff004f05f87abbf1d58f9efab3d2fbdeae58216035dabb5772aadc2f4139f3e9d8bc5b954f533b3f4c1559ad653529f41950ba93f392ea6ae572d8dcf3e7737732cae55daa6e5b709cf47fb3f15d8d7da6b7ccbd366327347a62fa6a9d900c0b247a34891952ea58b9d7a88f1a2d7b74f84e6bd3079eab37ef7eedf99acf27ef2fcf1f45d7f25fcb9b196cf779beb7e3b1fd7f3d7cebd379b5f4cfd96efc4fe9be7eb6fd0f82f53cefaf2b983c3a7a4f55f14aba9f76f0787ed65b4d95f3d55c3f5456797f19f4fbdb7e2c3fd3bf9abdfe7467683bbf3f32edbf3935a5a035ee749349869b51d19d7d908accd7a35e399b7999e95ef65cb5a7406f20bb5bcd58b523a75338743bd879989cbe939997a1acfabf75f22fa479fa7afdff0031b7e4eb7f0f3bd3c78cadedb3f73ccdbba1a9736b1f7b8eeffcefe95a12fe6477b3f07eef33995fb7159fad8966bbbcfe4dbf54c8f9fe866fd2333e7827b4f31e528ee6a54a569b4e9697d8b0a3e33ef9e1f95fceb4fee3f28ef33f62a5de99cfa4fca9d3d41797d1b8d65cb193813d4060c9d1dc4892c0ced0c89bcf8999d8f6635dc8bcdfaac5671add4d0c6efe1ec5cd672b5f0f62cced8a7a0859daa94f39bde7db376a9d8035b0b4b28f4b4f2eea7bcfa1fc2fd972bedfddfc8fd1727db29f90f5de3efe470be8fe67ae3ca85b4f7e59b62b6911e8aa2f9ef628eebf9efca759a7bc498c59a7e8fc45bc6b716259d501606f3201d46230842301cc45320061b3c04c8705c30a46b45947f31fd7bba5efd245f37e3d3ddfe3dc1a9dcaba0defcabdcae9a40ddebd15a595aac1ed05dbc919db38f45b84e920d6654a3a55a50af56cd66e4ed5c9ac34df296c55b3abac613fd008fcb6da4cbaf6abcb468ef29accd8c6dc907d278df45617016b330316315320215e533d75bcebeb5ed130ebb012380757b325db593a331bff007efccfedb84f41e2edd2edc6fdbc12b2f3e8bec6595222f59cd7e6daabc7296ff9379ed6e791dde5af5f6bc5eaf2d7b0d1f136b9efe89a5f30d9e7af7b533466be07e3ff004f78ef6f0f8c4a4fd5c73474b2861d7b6b74cb99a37620ec9622d3ccd09b68d3d34e6e2dd5ec4d5ff3fbf4f58f2fd7af67a55b6fbf18358d116fdff89fa75c666c51ca93e85ee7e69f63f1f77782fac879fa789d6d6ca41a7bd7a5f1da5b742b5eff00c573f53efa1f36f678d6964ea5897c1eb7aaafb9f9d7e03a153e87105e88f4ce76c32ceb3dc3daccb51e832f46ccba5cefbef6bf9f7e95cb7f26c9d8a3df324547515936eb4ed06c05f4999512c6e1d5b570b4d8b080e12b16a24a8615ca13a9ed3aa497a73d773e95022cd793c797434d0fb3b3598ebe9da92b974c1d9e6ab4d5e7d9cfa1a6007a5f3f72911e94b6b1b719def71f39cc4fb1faefca3edf86ff005b63fce3e9fe4ebf3977a6f27df8d52b68d4dfd7c5b7c7a4eef9ddac6d7e7fd7749e1d9ef7c674cd162bba66ddcc9b39ba9731ae62e786ce46a327aad38d4c882811903c4f44052b20b978f5b180efa64d780ddd8f81db6be1b6a9fab5369567a66e2aabd84b76aba564e645ec5768da34bd0786d973dbcff495a739be0e656538a5abde2fd54e973074fb5cc1821a8fa6d110e5d39535722a3bfaca5806beeee787de9cfd1650eb39e51242072bd42d695d0cab36a3374aceac8c19d2ad508be891eed5e21e8388883172c26a5f33df46f9aefe6696769e6ce7774317537cadca4d18235cbaecf6468d655b12ab2b17b0b4cbeddb8bb7c757ee53773dde7d0d1c5b1eb3cd4f2dfcc7e95e131fd3cfd57c9ff5bfcf65f869fd13e6be9e352c399b8b9ee48062cca121d6ba7b8225f064121313c9c50ec6ade66e641998bb9cd17bcf396e60bb4e8593f5af907a0e5d3f4c8f98f47f33d378fcd14a387eb686b3591e7ebf4cfbaa9e4149eef1e32add2d3f8ee46e7e84fccc7f35ea7bf19be9c6ec2cb7cda41652bc985377e874369c2c5fa3f316b375fcc6e61854a3aef3250dbd595b8256eae45d936273b4af18b2152e6c65bb3b3bbb5f3a2efac566b7a39ef44c5cd38b779d2233668d6bb9537ea4eb3f58c8a17633bd0d2a0cbcef707694b0773031b5daa9a335b359cedf3f3b5b6b2b1b0b75417dad4946b9e3d4dcc9ceecfd73e53ecf9beca36adf9b5e626d54de34b7bcf3f9ebd85bf9c52cebeaa39d7f8f4a7a58f91a9bde43d3e7ef3e706e51edc9eea526c544ec6759f59a9b9eb14d957454d978d7d061c2103f4a5c2d8b5f12bafd21f23f8a79adefd5e0a2ff00a79602daae9d8afd0d5985af6f3e73b2bccd53026277e86113319459ac67b9a75a838ea6f78eb933bbe57d6f83bbb3733dedfa3b78fa37cede11d67a228ad6cca15a7a5ea88bb98211b7690c7a7f59f2fdecf2f5cba36af0631125ac3d485a15da85a9e6dec7a2884c6b7dd3077748c7d4766045ca750c575a4c53332f6ae2ee673a15b4e75e7a49d6ad738bae8996c32a1175b46ca58b150e2ed0e01d66b317d07aaf9bd8e77e857be5d38bf59f9bdcf26bf64f973bd126cfdd7e055f875fd0bf9b7ecfe9796ff1c1ede17d2f2b444b59e5342b300fae82678819e3ba3892b5f4de77cafd0ed179f7e0bc77e87f91ea789a3ecf03be6ef9b8cd97deb6a5cb8e55f4c33ec7f17671e9fa8a8fc2feb7e5ed62efa5a7c774ebdcc0d42a78a1d719ff002df45e37d1ccbe8f7fe0fba8c19ee9d06df6adc1397675c83d9795f45262543751a382ba478830217977b2b3baf0dab7b0474351c62a5a7976a659b78d7273d1f35ad452b2662f46a7671d04c61ab8caf133aba3e72e39ee9579b82f2bbd99377eee4ec5981b9e6eecd69d8c7b971b2213acd3f33ec7071bceddc6f46b746237cd14354b37169e965cdbece5591a84265f5df4df8fba67ed7b7f9cc396bf5f790f937ddb95f33d6eadc410b2b6367037f8747228e21a4dc5bba9668ddc3b202dd1de6cbb8a2e331ce507d42de5b6b39d2dd2a3b59b93a8af10dfd6be41f0bafd35e97cdc33bc4e8e76bea66ec51867383a75d8f586672a9c55a5b2ecc62acd67adba56b93b84ad76ef9c293d1e7d999ced64d586a74683575ba968ce562d675cb85637b4c36bc647b6baf4fcefbeb5bd97c1e7f47ed61f958ff616b61f8c75bf665ec4fcc09fd42739fe5c2fd32bb3f33abf4bd7d4fcca1fa69c7e38c1fdb7977afe38efd634f6fcb3dfa5976fe6defd058d6fc567e93e77a3cd9baad7414518c3b22fd3bf983dd7297177f3fa7919cacbd4b1e73d2f9d9b46d79d9cefd1dac7b3ae7b6ea169954c891172997160db17772ae4beb2af9f9cdb1bde4bd5458c0f57f39c6bdffe9cfc29faf7cbdf5fe39f6c4f2bf908bd7f8efa5e56f446f3991ddad774491d300dfa3f48c5f496ea68f8fa29d633b375eba76b36f79dd7f6335f8a33ff005078ef4e3e77bfee7c76f0743d5786d62f1d0b3a37cd5535f699f8119d6b62c8ea3b61bb125cf5557e37cf553cbec66f4e8a9b27a5e731978f11a752ea168cd7075a2b5a51d9c8b4aae88cf9a1a5719378e17e85e81040a51c4d090f25ae1099b55a461c2da54fad3dabd6dba19c62f39f14b63b5dcc73757ae7331b4b2e741d9c6e6a49d297c13a6c3dc11acbf1f4f22297a4f35e9668ab37cfdcec62ece2cd26ee6e84dd12682b6a5aac96b6fce6b32166f6258cfa7fcd2a73d7ebff002817bcecf0d20b9c97b51658d6f3fa135af67cbdfc5166ef8fad63abc99cc03d64a2b3a8bd0f9e54d6cae8a73af79f3ffcfd43a6b5b17491da67de97ee56ae40d380c9123cf5a0263adb2fe65a99bf94c4a34025a784394b994e1cae3b00bd26f65e3ec7d77d073cfc277feeece6f94fa2f68ac5ccf4f90586b3b18a36ae79908f651e3e0f687e188f725e18e5f6d3e41b97aa8c0b52ea0e7cc5f3cff88edf4ff6bf883d6f6bfaf1df967ef5c1eb8ab37969fcbe148d02aa381eb093c6faacdf2fd33f40c6c8f558d784f1ff007a9d5fc97e03f7af759fce5ddfdcde57acf86f97faff00cdbb797ce8d8c9ed87dcf2d0de9613db36ab8bf48cd47f22e2db73b4c87a5696620745207b35fea7cc69465e9ac0fac7c5fd754e5bc3b39babbcfdcfe95f913ef9e2f47b4f827dbdd87e6d47e8df0be8e7f02e19f6729ee1a2e838d8f778fa9c74fd0cc7f2bb6eac5cf41b19272fa7b3e7471af59a7e3ef635b2b4558c1f2defe876e7e33ca7d3bc87a31f2c6a7bd3874ae289d5f6b2d67798f318dd8d0ce0d34f1ef1d8c55d459cce2b272f56acb9ed55acdbc5ddbc8d5e096cf4158b6d61ce939da78ce9633e197691b49ba120824c088335661b02e25741aeeb8ac694c2a804c9ae5685cee9aac5c2a4536d6c7d3cdceea8b56eb6522296377cf6c3175d51b798e1ec644decdbccad72ec8b899d2ed065e31efd416ae20dd322855911728b8d1a95e134400a4d8fd01f983ed1cded6bea4f150541d33651abcef9dc6f5de7b72876be3ef3ba8c439772b0fbdc6bc0c7d3fcec786f1bab6bacfb4fe27d0f39aeda756dd8edcf313a8eb6900d833ee5662a845775735bcfec314eab52d0cc76b7c4072738224072635ab7d5af666d6d79df7bcf95ad54e9660385f984e9d0cda73e86e62f97b3e8e65f3cbf4c88f3ead91d4c6edf69e70bd5decebc4daf6b6337c9dbf50ec5f3563d1966e11efe1c7c9bf36ddcff00a8e919e97d47e8cfcb1fba3c4d73b5de1d5797489637a5899e227a41164d569b242a486089523ab34cf917c0ff006ed3f572fe7dd7fd3df29f6f1f9dfa51774c3656573d52eaea8ec64bf36cd771580d8992b2346b5bd693d0c34ba5bbf51f1cce3ad0f8afe9af88cd78ef5be534b6fd5bbdf3bf65e0eafced4ab2fe515faaf29f53cc51ddb9db989ee3174190ce35c20395dd4f3f6a6b412c197b5fcdeee5a76b37b9eafdaceaabac9cd24465fa3c5eb9f874692bd7ce9cdfdfb3cd7a19f132e3f122750009bbb3e872776f26646b9dc54eb42129c1656737a3a262b36d3a650921b1359f4b3b2a0556f467029ab475ac2670daad771d3cb1ddd5600b531cf275abe9a2f2493203950dfa7a306e31b389b9728c5d8e5cd22a52e7448bb71405acb355f3379d95b2e6ba8ecb56be9837615a59a1eae4cc92b88ba3d8c87336b3f628b34de896e7bba19300cb1d58f2fb8fd8bf257e8ff39193ee3ce6679f7a87af3303bd2faba190fe7ba74f6bce74c337bce5d3e87f9634bcdbb6d76e7cf7b602bdfcdde957a8f5d58b99a525ea60f14abf2658946f736e9b64b5534f5738f2eefa1fb9c74fcf6cfd85f40e37f07d8fe85b39dfe6998dff0076697a8d4f4d9e75f7e4719d8f49f3bd8e6f72bf2de8396b62e56d2e5ba93ab1951b0f1979b58a5b70f5c75aa46a3a34e12daea3251b94bacd12ad892fa88f2bbe2d117eaa36bf569dcc40cbd0c79c33d04e1a0f473e6ec9b5d866bbb38c11bdd8066f8e6bcb02d64b53ad715b98bae254c58589d9e0fc67dc8bae7f30787fdb59ddb9fe292fd2be4bd1cfe274fd878aed8bd19772cd0310d45a49393fab315d76ade8fbafcd7ec5f37f275d8d5fcebb3b7a7fa5f82f73853cdf79e2b17d2ee51afcb65f9abf4dfcf3d1cfe3e5a88f5f3b7ede479132b7e6adac020eb3d6f851988d1c8ba69dfc09ceb71d991968b2988c3aa05645ecfe99c8a7b199d338fe4bd779fe8f3e7a76aebccd5f599135a2fccd4d60897172fe8306660e82e0621116572a56d1b7525af9cca17b48445d4b45a701d62625aaaee85ebd5b7673d8af4f2b3884015e8b2822c57bd5e4ee8b933734ebb35ca50d589a9a8832286c66ceb5a266f532594c9baabd1f5dca4eaed6ad53624272780e8eba2eee92cba8920c102b604e476fe0fa273f3c9fa0f90cda3ee7c1be3f4458f3ded39671b37def938ebb8c3a969361f0b606b4be6303d1e2edf39f3deffe63d3b6851b95765992ed3789a70ead799aa237949dea3e9bce7e6e2fd89ecb9f5fc7df69fd1763cf7c4facb7de7a04512f44c4a312bb3f9e3ed7d06c7d5f3655adbb7ce798a1ea6e4b93f40c60e7af6163e72ac3e8d5fc62edf756be717e3dbd4f39765f494b0e9c9ea6fe358cddd3c03ceb629a8916c451d3583275c4a34eb488250e8b33a697869f558bd8166367bcf5a5b09b170c0b1e8dd181ab73b1a2b55dd9ac43497297b6cb31ec5f828959014d700e2ab58d3779f51ea0fc619ebcfc7a2bdc4f8993db63e66acbf23f13fa75bdb1f8f30bf7265f5c7e1f57eb0f1bd71f9abd0fbfc5eb3c67d4bc4fd333323eafe29fc37f37f15fb13f34749e3fedff000bfd015ebdfe23ea3e5df94dec954ba556fe6c61d2ba3df9e4d0f4999a9969b4bde44d5c25771350b58d90eafc68ae931749741d2dab39471e85be7ade6e9542419f42cd1eb8c8c0ddc3eb248674a99f7b171bdcb2b3d6632f533a346c21964f402cd32b715dcaae2266b4d5cbd999975b18a4abbaf3d1adbe56b91aa215898e5e21347808c8520cb4834aa62005aa763d8b19144b65bb76e9df716ab2eea584b1d667a3472e6b26245da7bba23ba2d636b1c86b90a642cd63ba089e81b2132174149105d51651ab3325b077989860ca74fea77f9ebe3bf5bf947aa3ef239f47966ee4cb759bf77cb7aecdb1f20f6df17bd3dd788faed3d5fcfe3fa36feba7e7357e88399fcef4ff005b6f4bf8bb43f73efe35f837d57ed9b7cafe70fb37a91e15453dcef4c4d4c8c0523c4c842b04793a23a5f8552cf0f7f9539dacadcf3bbc734d7a2c6562b9941e8d1766bf77ca3a5d55e491a3394366ace592ea3f1bb2d30cbd9a5a915d376df9e5cd7b5cfc6d1cdbf8d5ed59afd83a70fbb9c59b7dd45b9aabc94d6a5cf36c8de467dcce8ea3d9666d93ad63db52ecd0dba1c6d2aa865ab6bcc82fab1f396e368b38a2f9d435b035aa9a738f62cb502528ab4586096d71e7ec69d6b0ce4e554b78422ed5b2d7cd3de8562d0f411b9f30dcf7b66e7e40bfaf79b4bbe7bd22737c71dec0e998a4cbdd3398caa362e8ed67ea6775a56a559755d4ce1755d4b7283211d161967b96fce63cd22cc645f767ae1b54a969979ce4759c51babe4f874e5019ed64f1b5f2736d5341cddd664edb2faf6a7531f48e84b762c2d3369dc64d61d3f71e6f5d72a3bb5d3a26623ace9c98c3f46d6c3e4f1fa47d3f27e449fdc1af9d7e0ed6fde5739bf03cff0040064fe7e37fa0849fcf0efe87d3afc0999fb8be57d73f9967ebbe7badf11de9a95e75ae8a53295a8c6f0fb63aeb1dda269969d9e5c4eda8b72a35a131cf414251639513a57a4f3e5e9fa4f305ecb5b2f9cdcfa9eb673f1dd4fb56ab3f0c3fd2fe8b0fc734bf6ae8e35f8db77f62b33afc683fb36ce5f0b9fbccf3bf1dd6fa67675e23d16af66e6d8b739d4caf9590101f2c89e8e3ba79060a617cc1b44629a5b9c8559bdd86b3d0c79e237fb21917a146bcbbae3f30a2acfd2f2b961c59b54086c74c4977133028c3548c65539ab2da494d85d518b6151d4ff55e2d39bea336f51897238b0c570f72599a49b7af2f98b7a750b576a59c6ae0e7a635ed25f9a42479ad4cf2f5851c1143806c9c129f2b125201f72c41449dd3c08b86914f5c93cbd7f5f3a78ebde8863cf47a383cb97a59acf2babcd4f3d74362be726ec605c35273565fc7d069e68bd1bacc1d32a96952b4a4c2c9f64ed67e6b81f66c8de7e6b3ec29ef3e3d3e86b74990ad2a3ace5656ee6ef355f5ac6895f55b2575d1a5fad5e2ae5ac628d9665d88756965600968e995594ac74db0ced1de004a6c8ced0ad358bbc16e5a2772590351ea110f1254b53372aded68e6f966fd43d172d7c0767ee7731bf957a7fa1dce57c5ed7bbd8e3bf33b5a05cb6a2329572d03babcd599118670cd309661489030ce11ce910ab7c538ba2575da8152ce1653c471480ab3253568118a5b3d6d37ba64543e05917030c1078a0193e50e2e9064fa95272ab998489abc5b9cc49b539406c46411add9b0692a9b0045d614a6e49919fea4ecf23deb78f256bd272e23b560ad66220a060211e82201a608c9f94697a23fa5e5c676941522e74954ac71589ed33ac5935aa6d884f3a0445f22995974523d42970ec5d94bb9fab573a4f5c005f5106b36bebe34bb56239d49d83843892ad00b8a8b0410d1514ae9ac63ce9bd2cca0a5b5358e1c6a95b5355c864b95690325813ea0968913131d225525049ddd2b10c88e982064e01831380a444592aaabbf295296c41e7b434396953d984c466c4987db7d586af44279b1df559e7aafaa627cf32beb01b9f9f6b7e8aabd33f9dfcd7eaba9b9f932b7eb3ccde3f2caff004b53dcfce63fa1595f9f2dfdf20f83bbec927ce6afd3b1b3af85d6fd095abe0d7bebf89b9e07bdff006b1e1337e9cb3c01fd0c4f9fcfbe49e1bbd7deaf051efefc7cabdf7da3d779ba7cdaff00beb3e7e9e0357dddac6bcb6ce9463487714a3324083048e9e014d58e2ac2598af156a2b4963abf163abc9661330fe570d9490d2448ee570e854d3256316269aeb4a30ab59e9fbcb857abef135d3df4fcf5d5eee3c3147b7ef0e07bcef9baebe9a1f3a79ee2bf97bd17d6b72f26cb8c657a7b078f3f5fc79bb3b71198ebdc577174a72021c74833d12cc8f071054a684c7480d3a1630e858d8d8192607a27a20608c530438fce62b8fa1e5285455a7e6f46a2e8496ed666b4a357631e2b90f6a39504035c6568b652d41d5a88dd34d6cd1b0aba63dd2d028e9af3b3ad985e962b3572ece356d73970febf6632df6c41e6ccb5dd2474114a30c22af5c110c811b305052a32c4aa55c75ccb048287728a8f83a0e478644493312b2604190f07c324c8c8430032164710c0c95c853101f0c93d1c4f771323d53d1113d124f048523c170f0c95c86b28135eff0059943af2630edc18d3b1c62d0f5055e499eab93c907aaaf6f98bfab29968d6aa0d8a6069c6309b6ac40b37cfcfa17d3a3cc56b3d4afc7b6cf59de6253d31f90ad5eeac7cd44fa95af934cbf5b2f95d9cdfa48fcf04fa1f78595f73de0c53def785e3de778083e805f3ea27d40be5dd5f4eaff3849f454783b567b0ad8d76505e9d9acb0d9665808f66f5f9f8fd1c8f9987d462cf98b7e9327ce1fefca5f0cdf6c31e35beae0f3f6b58a5ab60a65899e224782e5843e53d4f85f0d80327804604841c145170cc172b1eb787c7bacf5539fa19b02504c070c84cdad857487d0470cac742b864070c088389527e752ce2fa5e5bea4b41874a579252c4c38333884339e4daadd2d905dcc935fd2dbcdf2d6f66b949d62dcb43b43a2a4de0946ce3c1e95e53cf750db0cd1632b55ed1c5d2cdad7861ae35cc1c8f4112d871700e351408b24883821cb857071271adabdc529d252b133d1d306b051032408912e38c082e881911c3040c889138860395c8d85c8c2540c9020a4242e880a224e9893ba60ee88a281982948168a9f25deaac574240b1cb926530589ac458e4cd3206626460321222082a63a23a0a05c0348e13a04d9e8ceadae5666c6b01974bd1c9e5b3fd8b2cf155bdf32cf9c9fd0575f3befa1b8f9858fa3acf9d3fe86c3e7ddefebc78c7fae3b7c93fd4cc605bd5996a159996a4b24e99e2388a16363a932ee152490a24a22244983c8b36247365bf146cd8d944ab66ba1342301cbb638f692eb30595b7199a1294d438b109ab5a23e63d205d9fe66cf6d9de2b1772cf98f409edcb1f46d4ea65fb8f2db58d7d207c8def3f5f48542e4a64b11c0b8868808c811181d2712cc899e3a7b8fcdad0efa3e56420ece86f2a658092c122fd9c5b58d18bec15ac9321370afe351a39d6f179cb74b4874aaa1305f2875be970a9fa8c9de6fdcf35e833ab51218a654ae02502a46047128ce91938e3a0bb88962ce3b848231252e8320c65278a5627b8e9e9889e9b4a7a638878991e0f84899190b8606c28829190a420902904ba489ee0c638220927b84291926624991927a38919822278828938a249e1927a3882893a7b8116c89368830520cf41243c172f86081044a9266382202265714c119892093a55c3783860f707c124cae68c906378206f2505ae5c8c8a2d2dcd082f450617a69a4bdd9944f428f9dddd67d9d1ab6a575df1d7cb14d187a9eb2ad6bb142ff98c4e99f7be732f60d1659cecdd2562e90f6d1cf3467cf52de7d755f23b85fea41173d066af3556b36e5522b79167a9a38ca976559bb2998dc9cfe9376a54f4065d2f5698f2c9de65952f56b12faa6e2dee3d33b4eef95d4f5599a879baacf336b375c1712b6470ecdfef3e9af4a7f36b9a9eff00bc67aacdb3d94e97f3d438be8f9789501c491cc36c0b2c4e6d9ea36734c4ed19b6744653b742ae5e88336f6749afb9a59625ebe59b4a2c8cb1c5cab0b108826ca08380186ad784b175360b1344b5cd2cd49492c4942414ccbc6064b12d83e8853e8338a0ce28843e12599090e572ac2ee8ee89226641e28227a0899e4ee9e5e9880ba0429892642498893ba7aa0a20991e0a4243e1e0f8660f8383e880a478ee210e5721c4707c1037964144493d1277449ddd01c0f07c1249049d05c449711d320f489ddc21f2e43949043d24c0487215cb5325423cb0d95e47f5591e74f2135c705b5a6f0e96b9a42c505ccbb33ad68aeca4fbf565c24fbcab660d9b76a5a4d7be3cdbfd34d797cff74463f6eba5f256bd12cc7768aa5ceadbd16569414b6322d56b1eb4680855f408c5de0ac3ed6e67cdddf4b56df0b85f53a7d33f356fabcbde2f645ab58b8fa951b5d7aa3204cc56ccd6ecad4d5e36b6bcce8634cd5a9665a976a5538b43cfd5e9351773f9145e6bd1af59f06ff6de0fae3dceafcb3d9635f318b2df4f2a6cbed8ceb5298bca85a9ed62decdd41a819bad5e6e66e55d72ec58e432b6b37b763b5f12ff003d5a461b29d6714f5375f86ec5d52c7e2f6e60eb674ee5b3356bb5c952be94550d05c16baa2a5d0ea2d2d4e7f17bb3ac16c6bf160aa017890d86f702b3864989345cb18003a552de985cf45474f1c604a51311241234973470b02c40cc744f03251433d113ddc85204bdddd5d05014acc9828889e9060f81e29026442e8e0a424388119c1c148c8511c192e06c0911324474c81cc9152c215cde17252094c54f44130bcc2edaacc1934e4b1358c784d71fc950399ba2083b1d1ec5269766ba6cdbc7ad967b01cdc836d95691e8a8e262d9bce4e66a3748efe6d8cbd5a13487e8ec4989a963a553096ac9420bd1400be9cab89a08ce78746fb56b2ec63a3af798d3b358f216b74117045f5e49b19a682c2c6c252bf1515d3d08bb4810fc3fa90dcf14ed3f35d79ea975c544d7ae5fea5764b2eaa19ba1a9e6ebafa83f3d4a3df7631e376d69b3604d7b9288555d9ad9b62dc3727490be7cf651bc7871ca3f460e1baa996ed4d3cebcee8dfc6cb5959bed33739f2cc68abbc8a35f4e6aa2b4d919ddab5a3cb5cd7c9e996767457a63c1b38ba7d9b4cb73c8d34ad79fd7cdb68d8462e40e99d501d4e8c93d41109b8819d3c0a2e00e983952d281dc1313dd0346616492f267a48e9224d723060a5473e2c4cb80093e2260a2797d4d81e964d4d0c8228a7a48ee9227b8eeee23a60ee82078b88e2889989a9e8e82e193ba781e670b9615239f2222ccc572b1c225c20977124b90f97214af8672f8672f864aa462c105a9cdcbb3d1079e2af419eda90dea8cb0af52a229741fbcfb81f9f9e75a58c87f4c6b1d0466ecd47e62dfccd194bd433995674fca69123e98f37346c58973137ef19d4fd30466dab42b75d4825b599542cd7b191706b189952861a64e7fab45946ce2457a1d1c0cd97d1d2eae25f6eb59a1631912badf81fa05c90de3cea8358453ccdb8a4e5e9002ca8d2c40040a7ba8456f268e85346540b5a9e22f6fd7de7cd76a646f32cad5352e596ccaa5ed7a6cdf31ab99959ba74b431b4f4b9d87eb72f38fbde7773d46a790f4fceb5cbb58d57b49cb5b36692b53c5f6657f4f2d345266b292bef33596e211172ecb573bd1b337cdaf5275326deff4b69ba67c37867b5067bde82ab511631d51cbac8a16f1728a5dd33943ae66b59c3d2e7bb10a2c8e0268a562af002088260a1648d3492ba63a5005b2c335c8e5818c90e95b2b90b84893890995e4b515981ca7829e124d4c23bb89eee38c095b03d0720553125030c917cd32bf5ae2a9d892bcb64493601e283a4783e1e0a4382e0e0b8783e08190121c0c07c8713d1c4f449ddc24c840d58e226f8e6aab5b0709bbce239d57a62be8c56ab818d46cf49e87c4ede6ddc3f47a19be0eefb503ce336319674e3a2f1e6652fa1cbced5b315de8d49907bb42588bbab2e535ac9782a3e52bd9462bd066524d8ef196eafb7630e2dd00daaa316f4631e4a9d6a639ec2e516bd691a78607a5af94b35bb2ac96e29e657a6045fcda43a78f5b485aa578e51594b52bf25e2cf6ca0251629562c101272d303aba862ea69399a4ed4c95dcb765ad1c1b58dc3a73aaa665eb1bc59ea0b8d1c59d3aa79fb9e635365995e872f381abe6fa4d61ce723b5698e74fd4cd296c5ac6aa5e7645bb9f296b567a2b8f4c94dbd6ac37593c6e8ea46546853eb155eb2ebeb3a2ca6a366c79335fa2bfc1279ebe80ac5b18ba7cb4caf599552b0a31fdd5e1f31153275e1c55149a26874d17409051d464b8893190fa242883849d76d3620a0d45c3e6bb158fa670fe890894690604b3c2e1526c105608a65788a07720a9364419ee94c9063e07822182786428880e5523204467278772e43889227b8998e27a3888e82662028882662489880f97034015563b1da9a423556d953f3b66cb3e616faf3f7d9be4ab9eaf17cffabdc7587f73d6566e8dbd64aed1466ee272fd0cd6552d9aa81b38db92e753d5d28f33d734f4c7bcd1c8106d56676c716b20d90ea19faf52ab37229a74f18d58c9be594e8d296868799f2bd33f4fd7f86fa4afa44d0bbcb55137d6be53c6fd5bc5f5e7e6a139bdf9fa8ddf9e69e6fd02b78f6f3d7aa7f96be7b44791d8c6b49944e5ac76c6cbbe5d9ac79eb5536f7926d42c6a5d0c965c0a8682ed19fdb98357cf32d94cefd84c8bd7972e646b899efb38b5a14ad0019b7e8ea16c675083c0f5c9d4f1de9c26e5b16873baf52d59b2e79dda5c61d2dfcee911d7aba638d7abd33e88bceb23d1e8e2d7c6b89b4352f58c7b068a1288d07c59cd4983a5951d0465675ad4c55ef4503e9b737b1fd0998561edd4769513e7a7f2e659991a6a0ba469d77347cb80c08d39f5ca5640944c44a9c4823643926225a319e008b888822498d8ad37ac196cd464516d825ae4e85862e60a43a8f8461901c4acc812180bba28e4252497d2b39503e132360602818a38508e8828067751c8cc14af8672e06c576532173071d35311492f4d315b6ae4a234570470207e7ab3f53d2677cef3fae3dc7961bbbce7e77adda3e7373de9c78ed3f41919b7a194b3a9edc4420c912badd39463e81ac8b155411a7e893ca6bd9a72c5a1546ae6b416bea4679ab0818b846996a6aafcfd9ea29782c4e93eb587f3456f3f4cc4f207bcecbb16a57abb1e374332cafd3ddceb7ee67b3875c8c8f49e1ba63d9afc6114bc9fb0ccf472f2be8fce3ba67d21653f3ad6dbf3dedf8eb1b577f0f9ea6bbb61722f5428f4be798ecdbc76bb3a1cb3ada99bb37f0ecd5515fce96c26c067452b266cd8a72169975aae46825d2af456be9d3eb3ab68a49a94f68c597d3b35114f78c3dba2e8bcbcb05d2a4768f3da95cb529dd9892bf9fb1e8771f9ceb39d79da9ecb1359ca3f6d423ccae92ba4d21c4759bda1e44e3d150c4d95b35eb524d52a4c2e727465a8e6444b52c94841496109a567a43cf6674f9ae43c5523616258624a08d1d4d950c5b9a92b6baa116195796cae5d229d66ccb99db0e5ca66b0e546c38978a220b9303e142aee4055b14949c4b20ba380ee2b4799d0125291d3014a847f28c9899b788624218959038a032af24c8b28c8094f8790ba1258e005742b919089874d7455da38f81bcfb2ec9c9af5cdf3f67377129985bb1e350b0ec53de6aae933ae346d676866dccad0b19b91ab4dd5bb88ead9b729b64d4654bd8b6028325d05a71eb671db5f5916e9d15cddc8b46558eb9087e5f8dd4f7c5f33b1b9ee6c606d6295bd5d4e7bc8a3e87cb9a4baba0790f37f4bb7d31f29cffae79cdcf2b6b7c2cc13f53830508ab5a97316dc5dbd957b16dee4f96c6bd489e8675e46f6a53b3c1d3f6bf3ef4732652b1bcdc5ac637bd57ceb5f1bf7638ede1bd6d4ce76740e5ae9c4d884d9a15acb171b9d2ba9df3a3e1384f54a15bd5aa5f8650cfd2b325ba3d5e33d23f2353d00f9abd9680f9df454846a365c7ed35952f55c8b35dc9c61da189af66957afa19d53b2af3f668366f18cfb26973a83669361d4016d7eb33ef6c6722b517425f0add1b3df156ce9862d05dcae94489da488679b5d574736bca45191c01012f4b1c21973171a59154c366b314b87a43250964aa12be42d455ed6b91e72dedbe5c9b564f3a0784c5a054870282dc082d82acc0e420670c852b127964309243602652ee84e2090667aa0fba262617887839588e8aac4648f2992650e0497b8a2c89085754824c38f461a98fbc139b5536d365b89af2d85675f1d41de72cf619d4b06988554edcf7c29bb1aa2fbb76c2f1df405e6f95f5a95a9275a7373d01373661d525eab6752cc4b5a95e55d5a9ab5a58ba719be51fe833373274f1f6ae525a96b3accb619d0ca369fa54b9b139b5313d3b23cb4fa8a7a9e4fd878fc0de7e896fc6fb0c6ae560a39bad46e552bdbade5b53d8f99b5b0787dc22de6a85ac334b6bc8d80c3dbd18f0d8bf54f17d254d6a429e9fd0f86bbcb7ea4aa66675e824abca8f33e9b0758f9bb7d9f82f5f2d09a8db2cc0ba566daac73d7b7b3e137f874de5d2d2ceb8a132d5569b2cab6ea1452beba365eb4a395f4e016625a95e199167a0ab3d2a2c556d94516d9552511613068a7a1add19d2aab8350a2722af96a79f8b577b8bb4c6dcb937abaf52e8273a352869e256de8fce3d1a6d2b2b6735e15a25d5cab2a3e47eefc0fa7f572dd1a29e5abf4215a88b49ced475bcea9a9ecd58aee7abc2b246ca1cb395b59e168e7da045c59568b23a573b3772c9ef43726bcc5ef429cb3add976755d9c52a9ab9b1c59a8350e9ba1e110af9570d95c8ce1e90b87ad91993a46438180e4242e1982e5c93d1ca711c93d1c4c892f741574867a698e436cbe7e78cf4239b4cd6b3e4bd48c5f4e6992c468e65aab15ebc55fccb7592f15074af5662b5356b288d1af435232eb1796e98f4b9b931b9e91df3ff56334aea79e84b4bb36adaaf587d3d9aca16a334ba36923fac528c3eb6cde46c53d4cdcfafad56b51c9ab9b6e95fae59c7cec0e99db3cddf1d9de8a9e6e137ceabae36743cf746c6df9fbf9a6ec8b2ba96b1f5b2a6aa3f415f3fa767333a6dbc8934dd5eac688e7b8b2552a9aa9a3684e2fa1c7d4c16b8b79dace0bd8be5697b1f31d70ab0bb166d59ca9e5bd2042adf415eb6346cfc63ed5f19ef827e7dbefcad58a1673ad5b18d7316ee9e2e962fa5f4d88de1d754295dcd0145aacded514c1d28ac5a55dcf3a3473694029b35271b4234269569750a8d92e635cc7ab731da99b73629c53b629831d0157d17d52bdf76252dbaa94cfdcaf4a5d6c8bad3ce6b5fcab2d6586c5612f7ebdcda41e662e8df467afa1451b72fc9f6aab7d3c9e2b11d00a1f0a60eae44943b45155d8b21837225519d89525a9730c02f556e6bc8dcf4197065e7758d14da666d0b560e5a99dbf264baf8947ae88b3838362095d2ae1aa41d8e95ccb1c5c744c044044904851d2474f1d2124f749d23014c0c307c8b373d5aaa222daf24ec732596c8e6e05cfbc6e559c69e75eb0cb74b8b15a955d6762bd22b72fd82f10dbc8c69d67d2d8f27a79be8ab22c6355da8ada9e6af6a5dde63532ee73de8e0dcb478b67a9cdde2bda75ecda2fb7d9d05794d0068ad31d562e6a63db6c557d0ccd08cc9ed4af0fa5e873f59b3a3e66ee6fa45791b335aaca0d4d4ca0a55ead981e7a5f573f3f774c7aef2d5f5eb5f4fcac62fbdcfaade7aad606cd5d5d83ceaabb969a36ab5b96aa6c0ae3d9bf095db350425f4acd10a5037ab3eb48b32bc6c792d0bfa8aad5b60c7b5740f20cf5991bc9dbc4d9c8434979d55a76b3f53dafc9fe81e0753c7b5f5fd7c8edd7d6cabbaeed62e45bdd7f3da8727b375bd2611e6e9ad74e5f5618cfceae6658621d7a49ab395b2cb0fb17d1cbe7687a00d4c8d4cd8b2be9dec4376c57b7cf54ac838c7a1b2ed4451b4b2b5bd1cf1b770ed2a29334ae64dafce91e67411acdc1331bd7473a451b90958e6c156c5b41c4f64a94db33e5cfa4cf4f2642d82a2c2ec838895b0ce168bfaf1e51fedac66f9ad6b4ec6a3ab58cd79d4e96ef5791f15ec8c8ee9484849954230964a4b322b9321220e143984279dc899395183920864ee992227889894e35c871548235f9ea5e6336bae037322de35975b473b593052750ca3415ba62ce5a573cd52ea368ee4598a760e90fa74c379f4f94c566d2d6b3429f5058877296ecd65dda4d87f666657a6a94f6e28ab4e8965d8e06c795d5a3b9808b21d79d5bf5bd82864684f3b9fe872f5736ce5dad29acf9a4c44a7cfe974cdcada19915b6bc427a4d9c5e46f1a5eb7c3dd97d25d0dfe1d329e8b19b52b6c67e99a5185d31ea6b7861d4f708f3fe8b34367cd20f5d9e6bc6acd0dc499d6696d255afeb599d788d8f4212b6ce6d8cd7e5920a2628de74a813a324f61b5418a74b04f28a4eb1580cfd6559e77d0d3b1a69d33a99b6fade70bc6f4589a9e93072f2ae7d4f63fb297ce69d32b3adc3f344f08eaf5df27a15a694b234edf96dfcdade6bd6f9bdca5eb3c1eaef3ef1b9da3e7ea597b083cf335e96a1d5ad4ecd6b59b927aec6b96e5c83652b3553a94f35915f3eb6db4992b2a4b903a950b35401f5e4b4fd350b1573abe6e867e884be735ece2eb37c6d94d537ce84519b4457915962c67d886aa0d7e4cc41fb383534dd65d7a74b1aa1db3a19b85afb13cf54286df93b3d253f225b9e919e69c7afbd87b7cb6e7c1e351dd2412e068c89d13c44171ddc274f4a08b415793a4bd662f29d2c1774b0420927cf5afcd5a748d2ab342ac6a695ef2352bdcd6f1849bd9bab8164ecf94b3b97b3b6310d245a7426e844ba391a5463ac428bd6326f4d3d39ee4b40e995717a98a9b8c8c3d568d886c3e6baccaa1cc9ab0d5a1cb4eee3ab79e7ee4475342d57a0f79e6b0fd00f4c7930f625a9e0a3dd32cf9e97d01a7cf757dcd6cdc1d246ae6e7d8b95f36fe3ece72abcdeb3779ce67a2ab1e0ed7b1b7b985b37a9f2df62ed57b33c7644cf3d9197cde6fd2dd67cda7e912be423d72a3c6697a9296a36d166f85b9ebfb59ceba1473ad84639adba4416672aee76b0fb419d2ed288a542746d18d6aee41159b365b4d76daf211867677a0322e5e5c66ce8e650d6d1d00e9374737133c35b59f27e67e91e77b63cf6cd20d6742c795db975e7c992fabbde27d7e2d05da61843ea68d9e56c12ba67d5edfcebd072df7a44d9c5ea7ab91345ade4d9a9ec69626e62e56a59ce1742f32cc8d28c9b2ebac25accbb6c9280857b3615c39d71da32bd8ab0302cc46458b68b11a25555b52652c3bcc6c80da3ac55732aaa9abb4956faa16e81c655eb55f03d7337fd9dbd4f27b1a07cf407319bddd04712ca152b6775c7abab91e8e5c70d4d131742f0e2ad8659b1324a333c4c749dddc0cf4a0176056f761ee833148b65469d9b51e3746bd42bca51af4edc1b876c79bcbd67dae0e2e5ea6b656537ae215b3a6796d9f614f1724d75d757cfe86898d7762250d0c5b98b75d52e6555b6972d1af79ba8dca5a2b7832b34f54bf3bf42cdf9cebedaacb6cc73c6b7326b681994bd77561f5fceb288f69ea6871e2f3d69d7f9e3bb675934bb59ddcdb6b973aa7a50b3cf7aaa3b52fa0bbe7b53874d085962f410844b90c539f438feaf3f79f35ab6ea6a4e6ac6cf4d91787341d93a2607a7813cf5fd0d2a6e5aa9e5a94f7aa4b87afa56655d893944a022cf5315b914baaec6467a6c66e7b759b4b55928eaf90dfb369b49d8d36a38d72db642c44cd3a2d4ca94bee4dbcea9a7606caec2e94d0c130df6bcd6f3eaf03cea379fa9ba9d8e3d646b425fac5256cb4fa7d4cf8d0ca97270fd82378c44da0dca675b5ecf3bea73f24fa30f8adbe5bb367136633e97a4f0fa9b476d92e72f9ba979fe6b0ebd5788fa160599bbd43d24966e784f5b8dd8a37179aaab9fb3a88a3e8171e735174779f41994b6a6bcfea69a929dceab2934ebc53dca56030cebca9d0cf4a691b192e1db7d7b2b9734eeb1665a4f720ce6592b213cc968657a346e58e6173a893e03992261f256c3f49d5e39feae773ca5fdb66592ed01952c64c04cca897703315d2d4ae1486568c0025cb46959d653544cba84b659135d2332cf97e98f5b7fe79e80dcc4d0c3001d63798a96edcb97a439e6b542766e665fb82af23afa2119d733af9c1a59317eca5f9b5f1fd257d4c2d55f55c6d4b58d4aaa51b2dcb5963ea667516965db4a7635ce681c4cce84b235246585f9daaeace3ed8f405e5ad404e3ebeb37357cfe7cd6b67e6b759d3b96119d54decddacb42faeef1e833dd2c89a94eb2f22e6cb726eea49e7e91975362b6b2aaecb8509b36d51c15e218af43558768b1ae642b36c32942de5524a5e4d0e4b63542b49be56cd9a98fb37d7ce96d25316eb64aef674ac8885d05a8a47258e59a562c19e17c8ce6c80e2553b340802574566134ee422fcdeb798de70c74b53d1cef6f76679faebb316de6df7f95d41f79732db5a2d2e3f92f788d67c06d5ecde98b759d992e8660ec594cf5eaca3771edc68f92f60c97e79eb1f9bbcfa6cbc1f479d63d8b99573e77d158c9dcb96bc53abe8d93e735f1746c5a5f3d64e9532d4bf89b432e45fae561567da9735d62e5661d76d9b4cf1c32fa16d3a66c210c8434b401a91620ad6519aa34425668e4bab52ad498b0c1022d0101cecf2d484ca4200379708de5f2b22006c55c7b34ef78cf5565b5c066b589c3af423974eb7a33d4213719a97574062d5dc841769e75ed6685d4e8537b2f6336a144955b52cea6569f64ea5fc9d1e03d079ba67a5f3eed53ca23d986a63ebe368e6b6aa1e53d165c8a6ebb19aea3aa9cda6dae3a2f4176a058b6cb562d0d461691dcf9edbd1bb1835bd361ad1debd4a5436ad3b36e966e995f2521d334b77cfeb6a7a43c4bdc77a5433b1753d7d6f3bad6015ed197c247d17ceea17a6a88e7bac7da064d7f40654a3bc39657a40e962bd711235a752fe6bb88b196fab991acb2bdd96e552a68ea997a8a6cb7d0ae9611656552701096022c4fa95d242517c6c44455a06a9966c6df94f418d297a54e54acf9295b045697516cae6e6159a6554e582789917eca516050aa26c21279b6d66dce85e73afd99e76ab9dc895b2a124cfa0793d33becf1b7ebd0642eba47b8f01b2bed3c5edb79eb075b3b3b786e7c8ee69e860bb36d3b2955a9a385a1945ecbe5f4f8f4461f4a8e575cfb3d6f0eec5decd0d23ceb3d6f93d4f609c3f45cf76ab2e8c10e9f567e66b36ca7729d13d2d3a072bec50ceb36b037f912ab8a556b665c898cecaaf41bf95471ad27e26d203226585e819957accc56acecdabebc6cddcf5fcaaf8b6452b5b3c9947f5032d1d104bb4723d16946f52a06b75122d165d3d4d27663ca33b0494842ad684d5b504fc6da55526df4a34afbab29bb0d8aa6a6cd4252ab9c5a7ec9fb9e3b5ade49776bc0699a986f9d451dca426d53c8d4f51d85a99ada9eca8e759dac2dc26c0e4caea9bd5acc8d6c0b3b9b94abdfc6b888e3569e7325d2762562c0d17ee6ad55bf2a78fea13a98cdb542c5e6fafc7abb9aaf4b2d9f215f375924ec7a4d4f277fd2e7e3414b942b5b0a96a7d0d7e3fd1f3d69bf0f631a5e57a0b678fd5dc491a19279b7338b1ecaae52fa67d057b47cf5981e82b1e61fb189d32b7ebed66e43f5998d5265854b06b81aaaf03d4a2428638aec315575848159cab02b1c5958341755917fac2d1a1731abe9e7cb5116d09c743aadd8a7d16d4356af80b216ee52d8aeeb499c3a12b5f2f40acacead40d7b1e48b53d354f3f78d9b3e6ee4b4bb19dd33b95684c6d79db742c1b7956772ed16aa25c16d2ef6752ceb569e586e6854a09de750515c6efd1a92faab7e26ee2fa9d8f39998d7a6c9bd5cb9e13d32f79f20ff0051a9a9f3cd64d3d67dacf9bdde5bf39df42401936e9e7570eb252d3aa90dd8ca8cea7468d73d123cd6d0fbbe742b5f32b7a84f2b43e85517c759bbad73e7d3ea626b0ae53dc4af6c918d5ca9598071aab3af61686f0e1d78cebce6a68a8cdcbd056a68d6cdd0cd2a8fab736179b97b9a1e9bc4e8569a14ecadd4434a65a36572b48b82532321b99edb50abe495ed57e8d0ad88cabb61d51a258d7b2b5fab4b59f515fce684ba4af3fb29694ece976b4bc79cbe8f3a191877ed76a2b336de790b5b1e7779963af9e5fd12a959acef39b19d5b779bbe58d9f2962195ad2f4b497d7c82f52555d0ced015ad47425d1aaead8ac5e7b2c231be799bd7b2353477b17431a6964dc8bc797665d0a5975a90bd8d2d67cfe9d94ca9b6a15bc287e543573aed26fca734cf1ef501b70d37a9663b525d1ad2d2b7a5979a9d4c1a9a9e92d79cbf9bad4e9acbc08bd2e7ce8c2548b8401cf28c48934db099166caf533ea6d56d33b4aa67dce94f9c0af5777e7f64f75a1e0fd5f3dea2463344618182a2c24de08495a95af2f816d061d250a49cccfb9dbbde66957aaf0fbddacf943f438bd3297aebd695fc066529b88d404df58c09a0ac3cbb573706881a09adaeb8b5f413acc0cee9e65beca33ac0f5987a98b628bbb3ac14fa0a7bcfa0b1f31d797d5e8f95f3b2eb0664f4c6e6d79ff51cb55e343b3a558a744b743ccf75c7b7c6d6b9cf7e32c7a8bd67cc373d12eaad3d68cb1297a276a7984456e99dff003fabe8b37c0fb2b7a18afad6479f4b4dcd51a89c8726da13d2da7e1f88dcfa6d6f9cfa8b3d3d4f3939bea9992ccdb74a136794f5f39da8ac5c8afdb1a5b1e6ee9b187e8d1967d9b53109a968b2059cb78b322cbd733025d4a8ab6756be8339b9f73793b295cb70695e81605d979d908353bcd4ea6ee36952ab9e9be6bf53c6a8868f95c34672bb70297a904cb568b152dd5a12d55dce4cad58bea9459ab905c4d4d2c67d9a9659a435b5378fc5d5af7953cafa08a92e0b19a54d99b5f06c58dccddfbdd9523d98ceab59cfb717b36d3b3536dc996387cfe9ea73fc56eeb3ea0338b1acdbaacfde6eddc5d48ba9b0ccdae27616232ed1724972c01725b0af9a5ccdf4634570673a28424732d3210d7ac40dc82b19e51a068616462babc68d94ad5e5b5666be59b839ef469f8e56a7adf20fcbde7ab211d70e0a77351c5a56f9eb0b78accbe99de3b6b8f4d19ea395d5866d6cb2841a33e3df5eab3ebd02307628f4c0bd3692fe2dda8ac915a5ba275b4d3ca7e704beb5bcf3549cdd546551ad5ad9d6359af62dde1e4d5f3dc62fb6c3337419e8073154b96f4bcef616f27eb7e75eaf70aea2ce2a17e9aae6e1ddbc75e4ae7b2a879af2deea359f9ddaf5599d331eefc77abe3bab6dd5f1be15e5d952fd6ede771b52a6755aa7b4a4997e6bdcddaa32dcacd78b229bd8f68459c6ed67d85ac9b5cb76a963796e93e80df09ea24d49ad812fa7eccb60e5e9ea1e015ed6cef3e0aafd2281e0743d9a93ceebc684b9a167565f31585bbcf57d644b108ad66954ceb14caacaba9b96f12ff3d3aa58420d8ab46b5d589ad48868588b77fcc1becf156ecd2c7af67734f7bcde873d68d0ddaf9b85d199d333596ce9967a5ccf4dcb7af8b9b8d9beaeef98a27baccc4d897b0af46b38fadadc6456ded397c46e6956302fea4166b680f3be6f2fd76375cf9947b2d8d4f1beb1cfe5a7e635f9d0a3916052b76ae68dca8d5ad7de52c5ccde8d4e4dcceba8dc2a2436ac64334b13a67729f952b2fd72c8de7d46be0eaf2db9c2bcd79e62ab52c20b342d51ad66c6536f2c633f66cf229f7be76cf0f55b47d3ceefa2f29e8317d2ec51dbf375759556c6b4c69cd58806ad3788a67e850f4565755c4e74b1679db2a67d05f6e6e4d45ef3a9ad87a59b5a6115d9aec5de6c0274350e60257d841656ede76866e9d2d3ad8d2d4146cd70428b5633d838054366bc0e5ae74b70b0c8c6855dcd1ab403535523a72e053fa279d4caf59e5995edbcfab7396fc517d3e86a606b9bb1aad89ea62320d65a96bd3e6b796c2a68d8304b76b51e158b899ebb581a9a38363cff004cfafaf9fb90762c873d636759574cef3b0f325daf41e2750f5555f3cb7e47cffd2fc975c06ce0fa78cbf35e8ed6a665af435f1acfd92b38d79da9e8a753cbbf55764c656bc2787cbea7a8b7e57d34a889e8d2f3bccd5c1b1ed32ae7372fd0df28be8ae55dca0cb3d4d1ceb38d5d1a5995e84bccefc90fe64ab62107ffc40026100002020202020301000301010000000001020311001204101320051430400650601516ffda0008010100010202aaaaeab5aaaacaaeeabd2abf3afe203aa18183284014451aae28aaa03daab52863d4655743fa2aaaaab07fa33fe90ffaeaeab5af4acad6aaaabf0aaaad75ad6aaaaab2baaaeabaaaec74148a58e3856348c26a31717f6aaaaac6e862ff005d557fa33d5557fcad57fa1afd460cbc450234403d015607f88a94d460ff00577777777777ef797f8d7f3ddddddddffc0d55657f257e56b8b8a559181d8b6e1832bab8606ff8860ff4f77777777777777777777777fdd77977ed779777fe96b2abf0afebaaad72bf5076591194872e4dec2512abab6fe4126fb5feb55fe989b2d777777dddddddddddff00ced7755555eb407b55555767b1ec7f3bcbbb0e2749c4de4dcb9208749bcbe65746520edbef7fcf7fd0d84924dddfb5e5ddddfa0fecaad6abfd1fc8f278fc9e3f363e6af38fc82f3397cc6e7f3798dcf8b917777b7ad755ad7b56b55ef5ef55ed7fc81b6d832b6d618302ac8cadb16d83870e1b6bbff56d87a3fc6307fa3afefbbf937e1a8c8d785c6e7c7049f24d2c1cf7d13f7bfdaaab2baad6bda8f555ed55eb555555e977b6d61849e4fb1f713989c933f9fcebc88f90b2ee1f6daeeffaeeeff03841045557ec3060ff0081bbbbf92e5b7cef2be4e5e7717e478df2cbf3127cc49f313fcc4df2ead797ddf77977fad55561caaaaf5aad6aaab2ab280ad6a80d75d2b5d6abaaaaaaaad02ebd5565e06f2af21394394399f73ed7dc1cc4e407bbbbbcbbbb1f9dddf777f91f7afcc60c1ff0b227fe7cfc15f8de57c5f07e3bff00317e265e1cbc19f88bfa5fb5ed7777b6db6d7b5f577b6d7e95e95ad6b95595432abf1aa02ab2abf03d556b577608cada3e4af27ed8e5fdafb4796bc8126e1d5f6bfc6bd6bf2a3fc6307e555555ff000d7e977eb7783f3bbf5bbbb0d7b5fbd557e806b5dd65755845555656b5aeba94d751e97d6de4d83ace271324ebc81c8f3f97ca1c1bbbdb62fb60fd88f6bfc07bdde5ff00c85dddfe57977d501955eb7832ef0755ed7f9555557f35ed77e95555955555d06f26c1d67fb7f747c82f3c72fec79bc9bac8afb6e0dfe657520ff0dfef55f957fc15d837797e80edb5dfe97e9797e97b5dff0015dfe177d83f8d55557e178736f30e50e5af2565591641207db7df7f2790c9e60fb6dd9c6c3dd557fa0aff008dbfcafbaad6bbaafc2efd465edb5ddedbee0fa5ddf57777b6db5de5743f8f6db627bbbeec48271cb5f908fe48731fe424f913cd1cd1ce7e627323f925f901f209cadc9bfc2bfd7d7facafe9be81eafd6cfe80fe167d2ff33872bb1ee7bbf7bbb2c5aef2eefd49f5aaeabd474922729398bc959b6bbeaaaaaabfe8aaaaab2aabd6aaabd6f6db6db7daec35ddfe177d0f5bf5bfd2bd2f6db6daeeec1bbbd89b276daf6bbeafd2b2baaaaaaacaad6abba5c0f1bae0c5c18a000b555ae9a69a6b5fea2bf9aabf3aafdc7ea3d2bfd4ddddddf554465e5ddfe858b6db5f77e9777ed5432bf0aaaac5c4448a35d8cbe759964f206fc4ff00aaaeabf7aeebbaafe9beaefd465ddf5555e9555eb555fa5ddf57f90f520ad57e8493d5e5ddfe35f98f61d565566fb6003158489344e0faddd93fedaaabfdc0155ad56b55555fadfaddf63f0bdeeeeef34d35f5beb6bf7aacaeaab2baaeebba02aba3ea315750a12bbb1d2e4788eafb5d937777ff00403f11dd93777b6db5e5fb55557f05dddddedb6dbed7797777761f7dbf8ebf3aaeebbbcbcaa03555acaeeaaba89a33957bed777ff487f3af6bbbbbdaec763bd75d35aaaf6ad7f3bcbbf4beaf6df6bfc861caaf5acaf4aaaaae8775543ad40028743aaae88e972000612ecae1aff6aaff0084afd2ec1bbbbbf7bfd87e55a6a50ad556b59555595f9de5dfb5df47f3aeeabaaaaf4aaaaaaad74f1f8f4f1d5562e01d51041159c738724c23518307f011ff0009555555fbde5dde5e5de5ddddddf5777777eb777d91f9555655657b8f6afe5aacaaa02aaabd07bd6ba81ea56ab588890b139558bff2b55f8557ed7797f8dddf577b6db6d7777d5e1eabf5ad6b5ad74a1e955832aaabd2ab5d6ab5d6aaa8002b5d6aaaaaa8656b5fad83d035a69ad65f6001ef77777ff115dd5755555aeba6bdd6ba85d4a56a46557b5ff05f57e856abf3af6acafc35d75aaad74d2aaab5d35acacaaaaeab50baebe960f75aeb9ae9ad6a15456b555a95a1d03955aeba9564cb06c1daeeff00e0eaaabdafd6b5d40aeafa1fd97f9d657755ed595f9015555555832aaba195aeb40557740575446bae9a6b543bad75afd2b5a0a3065774418fc7ad57fc38154574d0a6baeb5595ad7632eeff00d08eaeefbaaaad75d2aaaabaaec0caaf4acaaaafe11d9f6af51ee3bbfe1183f139559555595ff01b5dd9eafbbf5aaaa232aaa88eaaabfa2efbbf5b1ef5ad6b5d57f0ddddf77797777b6d77d5edb5ddfe37befb6d7f95dde0c02bf92aab5aff007247a1155595aebae5555515aac3955ad5551ecff38e8777b6dd586daff739597e977977779797777777777977777d5dedbefbdf777ec32ef6db6dac656a2309a85afc4fef55555555fecc7755d556ba65f57b5d96dc919787dace5ff50f61ef7b5dfe47aaaf5bbf6bbeaef2fabdac1bbbbbbbdb6e836db5fe940550c5c183f7208f4183f6aaaf4aaff5e72ef6db6df606f2f2ec66ba28aaa2b55dd11e955fc37f95ddfb837b5dd8eafdeb5d6bd75d75aaf4ac22b5acd6aab2b5032abd14fb0ec740f6b83f8aaaa87fc28154456ba78bc5e329ae05d34d75af7d75d75d0a94d34d35aad75d6bf4aafe3aec7a555556ba850baeba95d35aa0baea535d75d75f71d115e9595ad55557555555dd82a707fc1d57f2de5ddf43bbbc3958308aaf5ad2aaaab4f1f8eaa88ad74aa22bdeaabd6abf3b1fc43a1ee0007d6bd287a83795d0f5af4a183dafb5c523dc7fc9d7a5f5b6d7797d5dde5df560ed79783abc2863d3431e8135d3c6d1e9aea1750ba68534d342b5ef5595d5501f95df57632f2f2b5d40f6aaa2335d2bd41bbc39608c1d0032b5d6aaabbbb1ea3075777d8ff92d3c7aeba919797b6db6db5dddddde5e5dddddedbf93cbe5f26fb6d7d9eb5d3c7e309ad1f4a2ba69ad556550cafcaabf219402aeba84d35d0aebad5555114066be33198ca5505d6a82aa05035a1fc4301bbe87fcaedb1c3d13dd515aaf5aaaad75d34d68656bad6a05760575ae823f198fc7ae9a18fc7e3d157431e9a78ca69a78f5fcaab0656ac9ae56baeb4000a0743172abad74d4ae9aebae9ad015a946561432a8a850a05657f15743a007f25dff00b0bbbbbbbbbbeaeef4d6ab5f1f8992b5d6ab5d68802bbbe860eb4d34d7b1d5555743a002d556baeb55a69e309a68623198bc7e3f1989a130f8fc7e3d34d35d75d74d4003529e3f1e9a050b5ad0e860c04755547f2ae8865d75aaaafe3aaaee80aaff007b7777777777777fb50f4a29e3f1f8f4a2bae9a69e3d35aeac1076daf35d0ad50155940003abbf5ad75ae87555ae9a952ba6a56ab4d4ad6a0743a1eb5a78f4af5bd830607daaaa80acac235d6aaaabb22bf2aa02aaaa80ff007377b6db6dbefb6db5dddff2dfe232b5d74d3c6d195d6aab36bbbb0435fa9cb183abe8777b6fbed7f8d56a575aae8e115955d5ed763a1d56baebad5550180df4457b5561e87ea45555515d40aaaff777b6db6d7b5ded777777f8d57e355e977b6d7e977777779a18cc7a6862f1e9a6b97b06bbbbeaeeeec1bbbeafa06efabbbf5aaad742846ba6b5ad7a8c183deaaaaaab07755e83d0fe555e955ad65557fbcbbbbbcbcbbbf61fca456b555ae9a69a560caaaad75d6bd6b5d7431f8cc6c9ec3aaf71dd763deeff00122a8ad556bae9a6b583abfcebd6aabd4823d6abbad6aaabbaafe2bbbf5bbff635fca47b0ecf555ae9e3f1f8f4d35d75d6abbbbeb531984c3e2f1ebad6b55580505d75af6bbf51ed55d1f423aaaad75d75d6bf0aafe0aaaaaaaaaf5aacaafe3bbfcaeeeeeeeffa8ffa5208fc2aaaa860f4ad68a6bad6baebae9ad57755a69aeba6ba69ad775d1195e80dddddd837fb55557f05dffb0beac11e9777ddddff0005fea7fd215d4a3295ec60f5a02aaaab2aaa8a94d35aca2bad557addfad6565657755ad6baebaeb400f6acaa23d6fd6fd897f97e34dfc75eb5fe82eeeeeff9eeefd2ff00d556a5594aebaeb55d8fceb2a8a95d6ab5d75d74d35d34d34d6abdeaab5d6aabd2aaaabf2395e955555aeb5e9cee673be4d7389cbe34d555fe92abfd3de5ff001d555655657f59c3846b5fd555555dd556baebad557b555556b55ad55775f955557e15d4d2f3a7c187383cdf8fe7fea3fa2aabf33d57b8f7aaaf5bfe2aacaaaad75aaaaeaaaaaaaaabf8c8aaaaaaaff655dd557a5775d55557e923f27e4b85f25f2dcc616a71737e3fcc7fe9f039c7fd8d555557f05555555557f05555555555555555555557f1d556baebaeb4457fc2555775559473e579e85a4772f6b19c1d3e23c307c6f3bbaaff00a5aaff00435555aebaebad557f0dddff00b373f27f2672f67348db6018457c4f364e1c6dff002b5fe96abbaafe3aaff8727e6be47a6e8668f805659c19b70fe5b8dcd7e44bf2e8dff7fc6e4ff75e5e5ffb6a95be53e430824e042a3b1e83a6365d47c6fc9c32ff00df719b893ff39f6bbbbf4bff0064cdf2ff0022000d8714ef6308247ab359c18b2431c3cbe0f2ff00dfdffbd53fe2bc9fe73fcb7feab91f2bf29f2610e0c62d9ad05e862b0381647c547c19f09236731837c2fc87fde2e433f0b95fc977fcd7b6d7777fe87913f379ad945832e11ae944346462aa88d5b9d8158b0c80f351c6bc1e5ffdd5d84922e1cbf1b3ff00755555557ad11ef77e97d0cd75d7f8b91372b9831f2d4556ba5754e9a78d9fa1978570e7079af83207e27287a72b92bf369f21f7d5bfe46f2ffba08e29e71f0fc8e47c93fcb2fccf0f9bfb5555557adddfeb55f90e8b037d1c3fc12bf3b9788bc83899b7b137b3be0ed70e21f1911608e48db20c0f0728f39a49c0558f4523e5b8bf32a7d6abaaaaaef5aaacaff49583d2ab08f6bfefbbefe2de6e34e22939b28c8e0c8fe538df2b173bf88e57f5052302db3ec18303767f4e473383c9c9f95f23ce50d804b83011807ab9a3ecab4ab8d88fc37e4f196078f0646ed84004f415a3e272d7e6e3f99865a56e9b1707632b539777d59eaabd6bbaaaaaaaaaafc40aa19b0397b170ecc1866b57ef7f9dfec728f77c46f8f97988c2352a8ead8cb907cafc7fca7f0d115aebad57f08503b672e5b2c15eabba39272b91f2a9f2fd48fcaf9363fe3f27ca7c9998f5472519489eacd87a02b142a75ae6af9c378b979cd87a390c9bb4ba8c55d1b1a350eb0192488afc9c7f2b34eb9c6e5f1a7cb0db31cbfc19ac9c076cb07b24b5ec1bf327170e3346492ccc5b7d818df62c583039787d0cbb4fc8fb49cb06eeeeba1e9e5bec3176999e8e0225c5c69b893c989d1c008384b0078bf2b17ca7ad5039e7cacaacaaac23d6aabaaad75acad709076b627d5723f5f98e42f35e5b64ce3724fc9f3f95c679338f360cd8399564c2aea3d5daeefa18005f40318425f8b09ae6f1fa6522384c0f8b203d1070a0c2242c1456249c3e7744e0057b3d13b17195f8027d81ea860f53871702c8f61f72c72ec362e062c329718ef63aa95ecbbe56b1cc8fd6a18fa3cd758922bcec3aaf5dc2ab46833c81f0f55ab0d488e2e27cc432e333f2391f26fca5e5b9119589cf27c90e71cc92ff00e845c8f79792bc812fe4deac187ac6ead724bcef939391aa8c2c5cb479c8c42f21e540ad3ec598c46297d09c2da7aa8cda28138438af8051c933e3fe43cf1c844abd36691bdb481d24563d3821438d403802229e0f22ec603ea4f6a32c613777783debd2efabe80766c272d4b1f41830045031c648c8ca7912d937dd215e4ab99b2acbcb22aebaf8ca06fd54dedbae1642318b8d3098f91c7f92906acaa113565a2062e0c819f2484ac7c9866f4e6730621de29d39a792add34b95846bad60c65f1e9e3d34d66e54fcde7f54b87a61a5ecb8539a321e4ed132a956c47e3c9d950d294666556c04b26390d1f324e4a3ea474e08819668b913a61ea39369e3e94ab0915f3560568001b15847118a6c1ec4fa5f57ee7d6c36dd137b6d60e0c2589fcc6280762ebd32301213e95e9768cdca3c9f207334526fbe1fcc100aa9634711b14e363336052c5b87326538d7bd33c689123013aa39a5c865eb97ca545423aa380f93cd9c7e41e4bf357956d31e4fd9fb4bca5e4fd81d12dca11411e72e1f58b81c8e319b2be41fb4640d8572095399e853c7a9023f1d12e6289200b240b92e1c187088d98c6623cb5efc50e681697b050f4428c384fc74d3f1e3533f1795d0c637fb8f43955d0e8f63a1d9270e57e2336db6c560c4c84e30cafcc0cb1d036927a0c1ee0a4bd4996b8a314e10729f2a3689f8bcc23d75ac52f20298eb961a3e4cdc8d460e91986511a915d0033522baa006299393c861171a3aae4711be37ff003cfc6a7c54707cf7cb3294e2cf02f39a956414849c65c191e136bf82f117e3c715a5888ce5224f2842c6245e3347162c3cfcac6ce1b72e28a5916ce066c049438a7cfb0c7519c2e54e149cbfb51f209f7bedb96bc9cae81ecb5fa557e04fec0ddabb65d513fc61b6bd89db7326fbef558acae19ba46b1db2d312236fb4efc7e583e8bdd557755c7e6361f4b97f01d288c34657ad704934f4abc28b2ef672f246d7f39cf70a4e1c5918a9ae3c5271c6280ae3ae2bd683da38978c7e40fcac9c9792297933c92a9f2e1c87a1339e349ca8b29846eceebc3e3b29c054b75b44faf8f5d30606839685840d9046ed2fc88f9497e522f924f918a4ef9fcc9a6017389cc8db2b065b1f400765f6fe6b26eff9cfa1eefb070f4723c91cf2127120981e98316c5c238f148b1f22198e0cd4743d51a45cf9c938c124d3d130a7a8ec184939a1c967e3c11c54223194a38736ddc07f2fcaf2098df6ec66f88e7105630c84fac691fc7271a49b8e258f560c416394310629972290e26425fb3808cb9a50c5465e5298debaaa22b2399e78f992f37195c0ea2585a6e6bfc9cb3591884323c1cf4e661e95fa0b84efe4bfe4380ed97fe95328600c5a7696d8eeb271a4630c9e7f29eb6b38b9026eb2479261c1d9cb3913732599e73fe3b3f19a588f1da1cad3baa0716078e19a8898f3b9473e2791eac346465d5934f9be628ac8d3243df125e170245891c147e94de47c31f1a38b0a72229b8e55796393c88180474e81243873903b432632c3d4d0e3629c6c2a4a3123a1d1c4723d4ae1cd75d08640b50ca25e5718a6bae9a694fd1033ff0040f2a1c8791b0727f1327b55505617fc82331605d701f1984a747f4a18725964909f58e62de55920e77d7d9227843cc42805be3253d0cf1e69a5267f914b072b9d2fc21183aad29de51ea84723906a3e41e6fc8725b0e707991fccc1f2195d6a54c661f17ca7cd1308292aeccfeb1c9c89e06c6c2b3646bc56895e41249ca2d172793f285d4ab792460652d9796a5595ed25de0c961f2097a5c390b72cb0030104e1cac4944c241f813842e3e2019c5e4f3b8e3063156d9568c1cae321bcf2c6e2669e39ba660c5cc9bec4e2b24c0d5560c385cfa9fc00d2b5aea30a4b190e1e88d4658638f1fe83362f2c7164b105d445e128e08070670b9bc7e3fd483046ff0019c9e2ddf164e4e46722e8e1c90cbf23ca9157904670d8397326fb48ba1f401b0b09a49335d461c1d01c4e771a7dae7e42fcdc9f3fc8ff0025e7ff0090563606930c9872fb50cbc5c18f8c38e399c189e38e2f8b98cb28959b074a6c9ca5c741840e94a9c95a3779268f62d83a8c4a5fb19180728af4a703efe7f25755d319086c27e327e6f107442e32ab452452c9f193c041c8c078dc8f2bcbd2161dddd82b3ed554cdfa0030c8cf6b2176c8d719ef37bcb1d6ccf80dfe7723c40848b02f73020f5a8ebe339dc48e4e10114f2f23990d4317c7cbcc1c294ba725b9c1bfc8e7926e0fc6ac7cbf8d3f0edc8e7727e0399d8c5c6e394caae54d2488cc00b7c0111ba0338bc9697ffa3f92e75f4334c201387a3e8306131b0c6c7643c6e5fd6e3fccf2b9f8c6f3529a6a6339166d5b1072c8ce36151d432cb291832b170a9c6c52b80a06c194e31a3b3818e2e4523ccb978718de458d9c7647e4f1594e2959a8af9387ccddf8cfc5978c02e24b5e84f67aaee39fed79f6cbf53ea3ab1d52a84c62dd29bbcb0a70f558a30fe45e3c077becf4ea63d98349848cf82f908e6c6e2b70cf0df88ff1f2f0d90047e33f3df8a120922742a4efc8573f0ec7d55b396fcef9b3f290cda6b974f91f5a462e6963f93e77c944b265d9605082c7ab5c91bdd30e4aa3ae2f3b950c180375504242b60c95971478f1ba409dc71f6723040c235396a5c771968c7471b15e48f528a35ae837d8a931432ab60ce0cf20e4747a38eca76e3724c9e72ecf488128823a3d1caec7b5e237e23a02b5a2474c6f012735eaaa82e9a5053178c8c387d1d062b911c85ba3d16698938a7b89b83f2937caafcc27ce45f3b17ccc9cb8b95bb8facfc0e5fc3f17860e6a627e24bc1e5713907e2a659c358cf91e5f27e5f8bf3df2bcfeb88c7185530d55599598f22777c1819bb4c7cf20c27bd54e5f430e2e2f5312505bb71f2ab48d2494be16627ae0c638d2c78e32066c2216e445d1c8cf2a3c38412714632e366cad43233c88314ba656db59ea9184ec5b0307c6ce349c96cb192e0e885c591a5472f21ca389363a61f422bd0650208c18ae3f05ca1832b1cd7a1c5159784e6fe40fd172d9bb747d01024c8a4385a36c39248af583abc1961e12a4433abb7c3f042af1d620a4ee25d5403db237c6b7c12f00f08f0978ff0023f1a9fe3dc8ff001c93e067f8beb892d8cd00188259a5e54fca46672bd479e53d2e3003d09c8a375c41e19a3817ae4f4a405cf2e120bb3346570038ca720e5c9c8624eda81c7c74c83947bb0d87bbe9d9415d714897229640315e418415b1ddd0c1862e9445272fe4b0022f2c61c18135aabbca8ddb9666f63e8b9783061c1d093d9401597975954ab85eeefd8317c4e8f447a5832610a9bc7d4cdd038ca47a0c8b25c4073870c79f60725791bb63292265e4af25640f7f856b97cce0737fc6e081736db93ca839d1f29d6a6f6bf4397d1ec28248c88b489814e5f232a973619b5b12d832da41920a0b210728106368cf278faaf47bbedb17a944781b50354c42032562bca3a2b9631b28918591ea892ff18d7bd9e9c968f969337743abcace1e19413d9f5383b2713281f45032ecf472f7040a66c0b472f09dafbacdc1cb66ee8497b644ed83a763ddd827d62c7676cf83c38cbae29042f8a4e30e32c0b1a818083f9d149be31be1b99f16ff00149f1b17c31f82e67c638a8c00c9eba9f51d1f4b188eb333867cbd826a4c26fa18084d00e97263d903a8a485a7e351ec02029eef245c6cb001c391b6ce0e5413490cd063601ae6eb3f2b99237c7f23c4d9cce613c095885c079dca79e196782074949ece366e09c2d51bf47a1d1ec7a560c38ad7802e6f608387aa18c436ead796708200cbbeb6db65c395d72b91cef916cd3a1918b91e88ee806f58b1c8561f1f3c5caf2c72262612ad65f7e87f1de5960ffe40d55558e3b10d7a118a2a40329b0095406c009e915c24412327a50aa7130e53601cee1a2ebd0187209e2f919786f0f8baa02587b00f4c30611832b17189c18b3f1e79b8c72baf962a588c18a77c2004978bc87e5bf39db5db89cb78e55f8e7a5ece551c3831cc3224987d08cbc5cb07158e10b83adbab1808766b26f619b07125e59c65f418d830659607397cfe54ff001fc7d32dbadfc8e47a2e30195d14c5120c9b38b2e4453237f3075909044c92060db5dedb6db5dddfe0718edbfccfad1564d022f532f6117238d8f4a635e3838164766623a4e8627c94dccf13a45964a6286c39c6c3c978fd9b0e19bff421e7c9375b71f95a30c18735bb20e0c56c865689b0e6a031825292f1561e5b7227ec0254eeac318ed6ecb9b0c4ce1cd2450360f43d29617830646dea451eafb53577ed6b8df85821d64ca2ac06564983036d833e67e436f07c6f0afca72fa8dce138100ec380a263a462661dc4aa14ab2918bd011c49085c2e66f37977dfc9e4f209037904c2507aaac92364af9b96343f94d9423d4955b25574da1ece4b87a45d3a047514b14f07c7b94e8e68ccad2b2f55e8729b08c0238e7e2d50c44f552ea33518a5479b6ac3d09213c7926e47c9f258747bac0d8c30f4314388dc671390dc70d63aa383a2dd0285e32eb2614ee8fb06c1fadddf432bd2f0e02f832f012f33f0f8ff0019f1ff002bf2c0eb5d80acf1db1ed516010b28769308040ce1f2e3e31e08e1fd7f0e8144adcd7f917e6fdc3c9fb027fb439e1b60cb209119c487ce9c94e52ce1fb2ad04ff10ff17caf8bfc2abc580a468a415a8de351d33168c907221d9453d71e49be59b9019317257d4e26720fc2f20c6bc7978337c638bcb7087219cf323c651968ddb065bca2a9870946963996adb22ce6cc8724500fa060a7030c6c27ab6e97253c1e449f2039a82baad4e6ab814aae59c04484565301d1c1e9405777d28ac1ea3abbbdaf60c4dbf607c873d64e3fc4933fc9f40fa00089a418aa478c2e1c93a191a1e39e0f0f812fc370b84abe6fb2bca69c73e7f949f9960dded664599678396790395f65678e7e3cdc859319d2449927599260f7dbafc87c03a7e2c814b092e7529e2872e573d2e11e10319f70e486dcc98abc530e39b391ae407c1c7981ea5826f89e5f0060c29a0ea27b978e5107a59c6c4cd572db04492271a48f5e4c9f7649210cd843261183163aac38d950e78e40a84e1cd6a39e0f92e2f20823bb967e4733e3e657eac12c71a60c1bb07a898e2e48be830e5df63a19787f3e44d3c9f15c5e3f24f0be633c6706286f65c39e432c1c7920c8072a313b955de121fe3fe560f9cf1723e0e6f8f65dcbaa8844421f198f56eab1f04b060c8f18c2f9ca52f1c81959241324cb2acbbf7f2bf1bc8e0f83d87520b5c46ca8c4e36662062e28eda3c057064a7a4c4915c6375f1d0f2f8d9f198aa23cbbc74e7f0876ca736e3c88de39b8deac29486a08487055fedf2f9d2c83354063c3d6b9a57a332890c726c4b483095c18d8e148317c8c38d15572f952386f8a7a059707471865c6c71b2aef6b476247630963d5f63f4197f393fc5f0e5e2b71fe67936ce7a0dd13d20912bae3c92288e3930473475144468cb26717e4be2fe6b1f8f37c77d03c73c6301462eceee70654f9164c62307cbcc10fc64bcd86459446ea76f2c7247287470e24072dda4fc648c104482589ce498474a801e8e0c9172c484e22b26bf662936ce3bcf92c5c6527cc66138e52735393267338b8325cdf35e3e6c8f2c1247e830838a4e540efc66c9f9583340bd1fce42ae4ae12c0231c83092d2b42acb2087909c99a6fbd31d73e3bab8dde0ece39c19148cbd575166854ff0044d272795127c2c14f9f29c8e8f60d92a9e301325cf1e46d136cacd88e5fc4a08b919b17236e0f397e4a3f907e79e7372db92fc8698c87d5822ba8c11c58791c079179d0cc15a02e8ce934322ba3965915d5c64cb2c54071f83c9e23276c1d406c1891ae4aa1a658d19f1b1b1589b2093d22950d6706441e35ce3e6d191922b76311a391c3717a68c9185b8dcc95639a5674f4a31f8f2cb43cff0093e5629a46ec1fc1893dae42a70bf6b9ab088e3989a9f360b0ac91ebc57c8f2269a078f0e31c1950beaca7a18ac936e30a9fe1bec67cfcf143f17f1e89c9e47cb7ca2e6a98708ed157b924845c909554325b488d262b87797cc33c58eb13fdbe09e66797ca5f08fc2ed9a579a68b93f11f35cc879b1a989d259c671a68e7e6c91ceacb9f6979917266839df1517142c91733831fc773be0fb923029b23e820cb953a75ab054daa08892d780e426f38107221e2a518e485935c5c409d7c87101b3d3a1c59c48bcaf2c51634d2f3df93e73271e35e372559b511a098c59b86d917abf693b004785b11970e2484b851932a1b94c4bb60321e2f3236d78729c393f1f28e1c18a588565eed1863f47f9399ca63c6f8be343cee77c9f3c7431b171fa08aa8a4a9390c4d9673c870ab60cf1b62abe44ac914633ce706308de4e67e52379da612f90bed919e31f83f94f90e3c8b91c800c6c56865e3c104d92f2bed9938fca1cb1c9328ca2637f95f8c963c18cbaa9c7747f57c2acdd5c5d31e8e47842c91ca990b96e3f21d7ed24eca575d50ae266bf21c3cbcb750269e1e47dafb9cbf9152e82311f178e1d0ce13947b90744a8fca53d4217a9f2a38d89531e2f60c8232c221b3100e433cb3c13a9e372f2f92a31b0e4592958d71b3c7dda49b0c6cafe177f988fe37e3234e7fcf4f3d2f4581e86174441ac8eb1aae518c22957739b2872a988db4c9470e3e2b46c8d127bb3f24fb00715785371f9bf2911371cd76983124772e6459524b8e60e260eb324fb64d1733e37ba57291aa61cdb09bc74d4ab645d48b95c78f93c750713238c8839073e2de5865e244f9a14d237540448c9e19b823e263f8ff00f21936b6c1889da08d76e1cb2e190a00718e50c521aec36e3d189c505140e8aba3347f84b8d859302b66cad903472432c92f179592274563c4c2310bc063e8f432cb98f2c1f51f831838cfc7f8ce37f90fc9740c61f02819a8c457ec05f57063d3c660faec236407a2e04a8aaf1ebe348171d837ac8cc4b74465629c6922351e374bd2e5e0ee9943472ab21b19b2b24b1cbcb87e3fe53e6be3060c71adc3e870fa3278d9625c65758d7578f7db8c70963c09b8a329a1a56cd1f8fc8860e57dc8934a193cfcd9d1594468be9c606477f27167e4772e1eac66eb8175aa03b91b2352d24919bd9f17106484658ee5cb260ea5c655c509d48b9c3e5717e43cfc984659c8a5d6d71f118acb15f41c646f28058e0fcaf91c8e1008ebcff9190e2e3104138442d238cdbccae8d2ac47b3378ca9c1deba8c96449564f32c8061c621e504823d24323fe77f1721c0fbfa5d83779aebc7240c42a68623a3f3c7c3737e5be2babd153d0fe4f9c48e7ce333c751296b504fc5723360c725817925e3e489b638f22ca92f9be73e4028f703096eb80fce1972e31187a191aa6360eada452ce723c95c1452ac6d9eef27c8f351dca881b11b6657cb043f4eb817e164865953a5082d3143a5a19b892c57780613a60c07a1ea4aaf1f85af37e6f9bf2449ec031ae6e87bbc8310488bd1c9a48f0cbbe1f5da4ec18e4fb11c99247124b1c71b44a626c91ddbf01d93827db518a3016ec60eee2c6c85d5af1584a8e64e467107126e5fc2bfc67f1209db0b71e3c2402cb8b27139641c12892684f1e440e2656691fe566e7f8a67b523b55231149c6ea33cce9999b09eed4f5bb86f4192652f4d8a8f8194e4f91658ee53d2222b614507a8c5b1a8c7c711218e54b0fe72e322998485642e19c1ead4f914b760fad430cf3f3fe5bff40b6156e862648550e43ec98a58931c93e4c6132ba1f595cb13d8c5cdeaef07463b777c3f832fa8c56d971b13085377d038a324c4c29c73818306e5cbcc17c49a09244f93e17ee323e22272b8ec8c8315d5b74cd711f87f22a5e328ad643ab23afc8f3b8b0ccfc9e474ab83ae2c7360cd8fa0c737f82f56736c00fa314603a20e438c18a2bb21ea6e86443a7c11789c46417319cf87e6fc949f1dcf789e3eea153327223c9638b240dd82044597b07a2fc7493395f37c8e61e901cbe804c249b1d8ec66c1df10b6318f24284747a91d9bdc159e173e8d83251b17f7b64f50dc7e3d0c0244523abbc1872c6121b165f2f9e2c93229089e113fc672668f9bc5f4387f08e2e1f1080147cb67138f32975c84054031844d0cbc5f91d3c4639dfef9e5f2e61020e7733a45c1d289246c407d8e361c3eca4152b92769e830952aea5ca99844dd464e4183b95722f591d829c6c18245cd81e373a37913a1898a5d160f1458ee1cf4b8a5b141cbead7241cef9d925515831b1f09ea30c2fd066d84e6d03481584ae170846c538d8e3f04c48538be1f0f8b42ab9af287e37ea8bc0e111dbe48eae0e06e9b2c906ce5c4c391ca38824e509be2fe47391c7f97e17670fbc3143156058db93c5f8de3fcd70670838e54388cbe39d8f2a1f939b97f64e0cf171222dcee57683b524dda9c383a396cd87d860e875585ba55aac89734c72b8cf8b8d9483a94d0e8b3b6f8c7a3d0c19b0c39f05c99718612716733c616232daa668736cbc89268e18b397f2dcbe5560ca271987a29387a3e87d932641d0c5030278638bc061ffcc4f875f825ff001e5ff1e5f825f895e12c3954478bea1e10f8ff00fcf6f8c7f893f147e2cfc4ff00e0bff8dbff008f49f0afc068fd142983e4a55cbf26491900861808c3d0c745c6cb4627ae3cdf29c64c93381cb05d3e478bf971d11af66cb561914bcff86f8fe07c87c5c79e06990c931c0bd1232155596498c883a8c60e8e0361287ab10d447bef778be912c8c70145e8e4a0e0071462b141db9180390cc5fa60707a71f194aeaadc0e74851590e565f961e4f34b00d5743b7e4f162f96e7cb30c5c7cd0a92314938abddeddb0194465e52e34a122f8b4f835f8387e3b50a06237937daeefdaef91cef203ead1ac3af2258b9a92b249c193e125ff1b9ff00c766e011c25e7498f9aa3c865ed7065de5d91943a930e4639534242c6dc4f9305c73382bc5e543edc64ac4376153a5c13094a913719f8622f90197d1c511af23948d84140aabdc8c027a05f465cdff002187d1092a1906577265e592855e46c72b8984b9c3dab80c171b06599095c6ce1f2006457dae31e39612b54723332ea41134bf1dc267e44b567a5c3d0c38710be13ee30615ca558f8d1fc671f849109bec79bcfe5f26fb6fe4f2f9bcde6f3093c9b87db6bbf92f961c9ffd44f91f8d3f84bc56e1c7892fa4bc61f0ff0025f1ebc6387a2e8c446a06bd261c1978c5b132e6230f36185b225e3a706638d8a7e661f5191a29bc8d8e10ac25dc646fb93b1c71cd4f5857973ebb09558f47076e18a374ee87a7c25b1ba18457b0147ad4a923170b46dd16432e0e8770e3a6362e2b48d1b388f0e1c3919618e7d4f5f1fc888cb1ec8721ce588dd94f4ceb889f5f951c6d3fc87279991b65f85719718f64fb583d065c5c468c0c1d0f41d557b6a1422a6baeb5cff93ef8737c3cbf9ebe351eaf1733e139bc4a29e344ae9ba8f1b0f431c0c8fa3832f829f29063647ca81b18498e3d38abe808618d88da5025b6c38cb21f445918631272e31871717a39e351d346abd3e2876c3963193f18d1989c190e1c1809c2b18907aa13205389d2975c19bb7684a1e89f507e2a73c79a338087770203c84c7eb8fc893e4397cd039d014acd98478f8411e8870818dd055e3fd3ed5e08e3451e11830058978c38fe3d75d0c5e2f00e30e3883c5e3f1f8f4d34e6c72c7dc79f1cd555fc37345c8f829e038add90714e0347a5032ed70428d0cdcde2058a18e78e62ccbf2517a449d0c3d2b65e210737acdc893258845123c44721c61ee11fb0c6c2e4ddd8c258fa8098709dbb88b3747a93243d1ed72c33747abf53919b93f1e1cb1735e5746c240557c8da48ce0222f94e6410f219a4325e0eaead4483b19478707c345fe39c6ff1f8780a94706010f1d15114c1cb3c9f32cbe6df3409aeb5832bc997b6e1b6cbc78bebfd7f004eeef6db6dafd2bf0b2395f14ff0127c3c915e362e1c2b870e58eeb8f1b0e37239fc68fe36086559d78ec1f970c89d71a33d9eab016c188760db6062061c259757320970e01a528fdae47b3dd03ed188d6557c27a0b9591f4dd385c29e83066b5ecdeb6cde8b8602b97f1d38c0ee3148930347204cf90e541c44919fd35d72c8e8e05e2fc5f0bfc7a0f8c11d7a1c391a451a220965866b191c2b104abdfc81fcb6c943289b019c49b49ca1c9579265679c4b78af47371296cdafa0de4f26d95aebafbcb0c9f0b2fc1f37e35936573d1c2c0d6bc70adcc5671f250fcc46ecba440e2e7c8f19a0448918023a27abac52714d8c2466fd1071b1f0e78c06ca43d5fbb60c6c5322b8ee949f618b858bf7778714ae5fa19187a820a8c0187ea3216d678b14f0b97063c722650023a59a73c1f8df93f91c8d6ba56c5919b16387e2b8df009f0107c5aa7e3141142b1d64dc2e17c5a71ab0e6a23f0f87067db1cb59bb2862542bab47e111e873646d8ccae24f212cde358842aaa32bc438a787f5f4abf30e47984be4047bcfc5e47f8fc9f0b3f035b7246c878bc2865e5c53715839e149c79244d9864a5c242e30ae5e100f60dd862565c0c1c938c4e4be9291883a189d8c2cd8aae2c329da407b1d1f7bb1dd62e3757066bdb00b20f723f75e93afb5e33833e339626924c6c81ca8965e7c79ce9cf40e32e00224e147f09c1ff1e83815fac7004f088a3e6793edfdb3c8f31e46e1114b264984c5d6a32eda469f64264b6c5c78b4f178ce1c0a101125e5777ed56469e2d3c1f5da3a27ec7dd1ce5e40903dbc337c3cff00e3f37c1ffe70e0f01fe662e073be438df2ce91f1a3b4c78d1970890e1c75ece5919640cbbbdaf0386c60c2e6f4384af470601764ea016672b443e07bf4bfc280b07013d5424b19558747243fcd508aa6ebe31f9bf14338ece06118323cf9230f13ff00317fc787f8daff008e1ff1c5ff001c5ff1f8be063f8a1c558ff8766e413285e188f411f8a958cc24f26fe576ac6225f2edb6e55655e4156c9c2e094905242d6d256822307d7f161984be71c9fb4bc8f279430057abbbcad0a8057531888c250603b6fbe688937c3f0a3e5fc771be33c2e9c295d1d10cb2b0381b1c1e8f6c7149c27035dd8cb19b363e4ddeacab1765b72cb9a00e51317240014f1fbd61f4a5cfa8dc7fadf5fc5a18e4f405642e5bd0023f854276c1b11104eb0f00f147057e397e317e3938edc758bfa2eef6c385bbd4250f4bd8331daf6db72ea8d1940cc61e43317591f124dd5af0020618bc5544e6b94cdaf8ef2ac3de0e8b34bf63cbe512fa11e303ba68fc7e32c271c9d9a09be3b8b0cc3240a5c30538c0f6724c183b3960dde6f6492d8fdb342be8cab853643d1cd72f7ea64f4089c58be3e3f8587fc723ff001e4f851f1abc510ea6309a18db8b37c3f27fc68fc04df14dc6fadf55f8e38e78ff005cf1febaf1febfd7fadf5beb183c1e3d34583e98e07d04f8c5f865f818be097fc7d3e022f84ffc9ffca4f8f1c7f0f8427f0d7a5b4bf67ecfd8fb17a88fc223f16995dd8909cbec1bcaa0a232b58ace8d01712039406a17612a950b8d9a05555cac39af6457e615832787eb2c1a6a56c4c2432793ca240d97b578df8fe2dc4fe618dc67e0b71b52363d530c6070611787a272f6bbbc6e84c7da5cde99107ab288f2d87d58fe2a3f8c4e22c3140bc548faaaaaeefdb5d7531f8fc7a78f5aad75d75f1f8cc1f5471845ad57eb55555555eb7b19bec0977693cd662fac38a38ff5c47e977ddfeb60ed81b6b0dd4529977ba18b83152bc6e8b11562b25fa5ddde0fe3ad6b5ad48d75d1a30ba679370dbd98fc1e131052cc5e36e2fd56e3fd731e3e30cb6c3979777b0387b11cd16e8ddb00153b23b5604227122e12c5aac4b02f1e3e381eb7e5dfaaafceab5d75d6aaaaaaabf977f219bcc24f26f75a78fc7ad557f1c8e983dcafe554149ee946222c7555557b86cafc6eff00b35d42950af11875d5d6ce790bf949d0c060785b86dc47e08e0bf0cc054fadd8c39c58f95ccc6643b77262afbc69c6e1240142240bc65880f7ad72eeeeeeeeeeefd2eff9cb998f2bed7d8f3f9fcd7e310f87c5e211d7f0ddfe0735aaaaaacaaaad6b02e9a50c1d6fb79fcbb160717235c1dd15b1217bac232efa07b1feae8c661f0f8fc7a18fc5e2680f18f0cfc71f8cff00ca5f88ff00c77f85ff00c51f0c7e14ff008e7fe07ff3adfe38df083e23ff0023ff00247c4ffe4ffe4ffe41f891f0ff00f93ff911fc371be1c70fea0e32c7fe92f732fdafbbf78f3bff0043ff004bff0047ef7dcfb1e632f97c98104020f0787c1e10bfcd77fa5f77d5658c385b60e64db01bcd75113c61463669831b02a4006137e358c2512ade95597e97fedc831f83ebf83c1e1f1eb4c06793ca651289bcdf604de4bbdbc9e4f2797cff0063ecfdafb9f73ee7dc1c8136dfbd617f3fd93c93cb6e77dbd8a783c4534f1f87eb7d5fa838bf5bea7d2fa238438c13f3bbfef3830fadde5640ce0f755a85c0083917276d4c673661baa85b0f7a03f9565560fedaff0055af8bc5e3f1b4278ff57ea1e21e3f80c263cf1e8170b990cc27f30944a25f27904c263379fedfda1cafb3e769bcfe419e131d041008043e1fac38a210bd9fdeff0084e3f2dbe422e724ddde5df55d5f57eb7b5dfb2e3763bb0ce762fe4cba2157c3e358a8c7a6ab24525997f0bb18d979597ff21559446be3f1d0071878cf1fe99e10e27d5facdc5f108bc038bf47e9af0fe98e08e0fd5587bdaff92eff004bf596793965b281e2f20755559777fad5744fa1c034233540b0d9ca5cdf656dbcd208d837937d8168e25ac3fb5656557e57fe9abd2f09beaabd2b0f755e9583d0803d0a6a16ab5c02bb6e80aaeeab5d35d75aaaec1f51c8c9648e5c660cafe7de691391e5d91d27b590b02d22f332695f9b2f2bcc22685601c7112c00c53acbfc35979795d0c5c624e05c2b1ad8cd5b0a08847a6871d7106a07fccd7addde5ff6dde5f4486bc06f099248f91e6c931e279a09feea725a6f1f159ced12879273c9fba577695e348218e15927fb2658b912ca6432ec5cc223794b9371f29260c0f87ec48a937f0d557a84f18003a212157656f26c59d93b20ad46f8d883bbff00b8bbf274d21c5eab2ddd249795f70f291c179602fc9fb25ab930ab09354c38bc5459518cb14b1ab412394936902cbb08996c9592e4c25315e167c195e308b81cf5063050589e9dd5de569d79a39a18bef943dc60264f256a11101f1f80c01635d686575583abff00b1bfc2aaab5c637a32b48cde79391f797903299cc7141d088ce80a41204c8e3d153c6d10e298e8afd64e31e3980f13c4f18e2fd668153c07a1831d140c209c19777819e358b2ace090bde3848e48999248f9320eafb002e8984055882826669bcc937d98a6ec803deab08699b9517236eaaabf01f98ff8cbcbbf695c756487daf3579cf2a09eab92d1b78db8eb1262cb9b1c119c0a30e04285157a3d1c24e3e5619d7172a8b48ab8e485c559b8afc17e38c76eafd46360c8997019311f1d225300c49278a35e447241a71e6bf40b9e4d538c53cde623c2b098971818e01b6fbb4c9319bcde6f20936beab478961d6aabf92ff0bbbff823824cbbb27b39609c4523613a9669210aee1e276579bee2cb2c9c797699e39d4a66beb7b3382198bc632e35cda9bad95a48d10e6a1982e34d0b64903addd83d5daf4723c38ac09c6c38b2362e3208d4d32f8dd7509e2d37b0ad9aaaf8da2e3a9c5c79c3622df9063214aac184ae28f4bdb6df7db70f79760ff2d7755feceaaaabb3ec4ba05c0465f45b0743a29e49e58241879092e2482579081c4faf167917162f0c47d36d8c81ac21cb0a7a6c25336de468589af0f936c53816e8e3606a9a3c58c0cbc036dcb1cd96556de8213471461719658e0889c206682258cc7aea1742863f0ea0057038e38c5066a30c9b99ccf1c83aaaeaaaaa80e83e56bef7e95fbdff00a5aaaaafd491d1378f8a8ce8fe412c317530f3fda6e52729d91d7944ceb4b85cc889b5aa3e1511c7060c2a78816f7b2fbc920999d717a75957ccb2b352119a78c454512675681707608c0d84c891c8e8d91e48d965ed31826246326c49504d9e7f2467350a17365cbc110510aa3634b1c830a6a98703ab60eb6323be021845f5d5336a8cea535f6aad6b5ff477fd15555fcd7b33b484ed6c7ccd2f99a6d57189548a287569bcff00695b2da158e39318c9d220c06aed45b0b1328e9e351a928669a29223a0c469510b45e2852ab0330db063e07b1d2e292ec4c8e2395b888924271fa27ec43c8792593a214c2efc72a322cd833467060c58f632b4becae48c215a692191b340954d831d62e98ef8d2a4ab36fb5fed777d583d565ed7f8dff25555557f581df20ee1a5114e393233471018e91c7f5c243838d8eab248a2158d95d2241162639f178e8e24b8154c8e640ed84820b2be047e4094f630aaf5b553b28ba184ec8017c46df70c3abd572d9314b623ec23978efc48f8d371471a50d8c991e34445e02a832272c9249c84e4c44e1eb5d00202f8d60f0325af18407036d7d34657409a0c18ea078c47a7f4df63bacbeeff005aaaaafea1f85dd990634924de5f024221784c2d91e4584468e7cd24cc13246f1d08e283c5a36176e828c921558f0bb0de7978c4e36468b8b1b969db950cc70128dc711438d84c61727688e5c8830c8676986596ea4008ca3814c87ae3c9342919c0e5db181322a9964b8f141284e4e2f6055ac2340d9e1d238c288c266a220bded7e4cd57048394ad59559472ebd0fb565fe35d5f43f8aab5d35d7fd45fac93ec31b9064cf1a71a4532458249e589bcb2c291a8c6994fd38b8f9e572d8b0d32824000855445d4472a42e648db0e15a74960232d648f93f61e659bcdb2995886e1a4c5e46dd735008383a18d80016f8d12e568d02ae2ad39284cd91e334f8338eed14c942661246d15a63c6ebb798cbba65d9cbb540bd344bc729262c80934102829224c72c61c2e1b0b5d9c3957e95583f223abeafd2f2b5d35d6abd6ff006bbfe827ceb3595be44fbc7ca964dc18c789a58a40d2728727cb1c734a92628c70b2e2874e3e481232367060f2111e3a821c2d78672d38303c0f87a2bcb56c2c92edb02a64c472c4e0691572a6e2c784744f5a2aeaecb20c50a586bd48be3c679239628f3671bf87c51b3a62e56aa9a08e48dcec1ee37f356a173cbf66d5f75c3d9565081b346c18ad1c9b7aebd5f600c3fc367b195aebad7faf259ace56135a79e4e749c8f29230423891f1fcda44be0941451ac6db9c6381754071580750d2ca4d2aebf5c750c6f8799ffa0fcc332721796e0c7e48708e42c7c85e44c24132a90db6db4597b11ac4e0c8be1462769601320ac53752c5f59309dc16c0485c38f91e2c6c35d94cf1c043b28145a570b84b13208e489f88fc55e31e196cf12c3a78923aaa387020539e3689172b40bfa5ff000d00144423d6bf3bbfe1bbfcefdec1cd6b3632b49c9919ea40901e38c8df553e569d1e31b0662c04a9d2b9e4472531675cf3472087c43874b3ee1fcb3f25f9c6766bb0309b89d5da0e3e12f8ca0efb488ca8db6452c7c8d0f152168071cc230c809ca8d9f071d7a8d8898453be1789b4080e33abc6ec30cb338c925e39a7834962c2ed23b057c591533c8248f1e08cf9743d178dacb97f399fec8e57d8f3f9430f5675eefbb1f85de5d9379774104612bd6ff8aeefd6ef2aabf525a469cc8b2916d230d95d5df91f632198c662118233eb247e3f1a60003c7e3904b2249288d94a45e10c499649d793f71b9e93ba2f19d089b0c8ced91c0dc6107d41c7d17036fe4f1b304654c9236563787354e3a710077f081275b361620c6ac72165cad80c73b4912ccc0ccb3ab1ca8ce87375940c127904264512c9c79584b12b7978f2e3a18021cf1c7179481863f1b2088ae364592e78bc5a8c1872eef2df04632eefabb1ddfadf55e31178f51efb5fad557e75aeb5e95d91afb06eef6ca6c9580afaa900c2cad3e2896349f4758ce862f38e4a46f198d11e254690486129203c61c63105946be36c9792ede4454e1c5047151c9a3832574c18a9e43cc5e44ac791e6db70c3ad390901c50d1cb8d9632ef2399791c7cabc0714ba46066b743a12491c53091d7738e8d844524ca92ac8a65ee45525a6e32b13146d85198bbb5b4751606642a8ef815e2d308d3a61e354adbaaeefabafceeeef0208443e3197d16bbfc0b6def555fcb21690f251f1da1ec0396871e46c8e31870f21a62aeb0ce1fc2d1c6151a32a2078238ddabcb68d24d125ae508d22ad8b78960c908491e2c56924c0f1e0c2ad16a9934b124cbf59f903955270bea4dc6c4390e5c6a249e3bb960617dd868b9314817c663ab7c32a9603082aa7154a105b09215357c8d164611e15192331e3b1883956c02138ebb7904acb1c923ac97bb62e562c7a2c3a51ead31dd195c93ea0f760ddf57963a004422f181b5557a16bfcebf80fe672f1410170e69e4dbc9e6db6f331f06cae391e6772c8414448429733388f3cc1b02cd8618d309925924b8e24210e534512ef6aecb8b27226b8e18c493a972cb2b09a12f1b010989974da294c119319518087a1258c7c9339d1603d008a33c6b3e1c0c8dd5be68f121192307a0c1bc072b62aec30a23ecf02e498319b72e32c332c60aca009117912380b2a608c06567cf16c86ba71a47924901dac1395830ac648fc3410ac416f280e890735aaf6bbbfe81df93a1eb6e302ddd65b2a872cfe4c2abc82be3a11120ece908957595952bc853c6f146cd28c2066ad29334cb334ed246ed91379567547447614c1a79225c3d93596cd774e2480e46ec250dd1c5c46dc1c6904858e0ec629c56f2f1a52083194a5618d831319d4905b6d90e6bb06c90b109e60ef8acc99b483a2be3f2e98049246d451f2143842966ea90de5936d823522612f93c9e40e0b15eeba03c6235cb24651379665128cbbff0040673cafb0dcb49f66548c1bbebcc5f761847534917224230f1b4788bd9639c6c1d2938abe3746995e23262a5069a611ca63c6c8908121004f3805116a58772f1a18951793348b12e1982a8c94a48056b401c05ca9c21cbc50f53c6f9682d4e364a70ab01d8e81c89745512be2c91b81699a1c69bc6f02e6d1e790ac4e673889c954c52abe121f0af8a72a25731a2bac8833c8a0e32f4a724c129cda3cdd147bae3a9c0301274f1017b58223f0056c0be5126c58a8145047ad7a93e97fcd6554f8fc0b1d2e5ae683279525e4b70f098dd6732a125b155d71390b3790e72217e1c5c3f0c6f401c05e239e1f124522a9dd9255f1243ac78b24b38e4c61a34e39573e1fac793b42bf5efc7f4fc1ab205d0018c0630cac69249770416766d99580cf13361c24cca70f431c7c8af563a002c6233a7911dd9065ebe4dca4a7cd0ca564880a0d3112acec5e2025e3a1591e6789190303c7b57f317c915e28d8e30d4b62b6c7b2f83b3eb78dd8eb55e38e28e32c58c1b36518055557e1761ff92f18f225447cdbee1e4ed7362100265ddb1586bc00c99f55f171c222a3bd78e8aac68873777f36f5e19224e39c60ae33c65bc6aad8a2699b0c678820fb0262aaf1ccf349c9134932aaac8d19f3795e55936c2ff6124a6cd3a2589e8aab574c03b3b042d194a9228e25c29e3ea3939f8a8c358f8fafd78609a79268659d22563e7464602a44925123c6c14edac91d6d371a1ca20e165c95744371b169664970c7e2db14ed9235698637c1830b6d7767d07765b640b02c4b977830e2e5760fb1c1dd5656b5eb5f86d92f24f2f8edb1c0c918e33c023035f1e8233d6db00c6e8ce997be8b111db00cca318206cb9f928e6432c3c9f24d1c382469358d0e6ad2f91f9119927925c59389262a8e3c70bc7242783ff9ff004df8fe66e54538c68f2480f1cf1d6268c44248a70d79295233638d88f6317a1d5b4568e4eaeb14d2e280baab49c7c5c324723c8b2be3b98d38ea5b2382658a787937794c8b8c815e7c6c920436c00b0ba140cd812c47a4b0a621c6561e489e98816c63c384d651ece0c7007642c49c65809c2a336dfaad2bd6bf86efd8e2b56483ea4707954bbbcdb86050ec183b12e519db2eca22ca161086659ae35c7567494f1938d59608568da16e39e3c6566f188c212a4867dc1f1b64997b5965531f1f363205c6733b72772dc70125447924866491d3c51ae56e24690e33edb9c53a066c39ab62822c018cb9bab8cf1491bb34bb4264464d1908899a292349a0e4bf42465e405c48e3c0d43099961cd5b01885529bb391f2700d9c490990c9e566c31e052e4066718149e984b8a0744f47360dd8458895725b349248fabfe1bfb28feb7ea04edc75394a2490cfe652d13c71c0e15d9367e579b5489a353308d0485f621d99233e6768e3a24861809495a170ccb58f334fe5326fbedbf92211e08df8e9200dc638228965829201c4110882fd92c24f249878e784380dc2faad0c3c6d1f1b84bc110aa613e579de48b1921c9242c418b7b76521c2137a31ed0cd0c283a59064dc6bdbecc9324bf6c4bf61d15e68183f4aebca956487893348604922271d7cf7e0954e233a644ebca7569620f146b2c4a0a63c49194a0f871b090ca4c5a9c2085367155f91846040161f046b54724e5348078d31655932b5a235afcd9554fa568168e0e9dbed7dc6e77da3346d22619217e4603f67ec94f0a71d9927dbc9b903146faac222a2361328d563a721ea6974489d8f28721652df53e97d2fa7f47e8fd15e1881f8e38fae2e23be6be3d03cd22c8a7ca4490ac1e3f060cbbe8e557a3379866ba32b2f472f657c21d5266cd8475a03103940498b2233742022546865e34991b498ca8c306721613e3a64f1910c892c7922c913f25799272e26af0955c91d23690ce30a18a26057074249b15b360fab47a9c98a9132b6bb07392346d65f91396b551c75840f596310056078838838ea32eff71ddd966904a336677e47d9926df65c4c26177c310e38e3271f5123bec335f12c78a2d632a047c4552aa1c38faf1c5e49248e6745425f91e712070e5cb068796925fb92f94b322b63491c8e74930e013cb00c1c844d2923183a03d6da5f30233ca1860c3850c3a918a8c6f1e35e8f4c071de51347c868f0678e8a0ca6c759519d791c8c12f2b0246728e5b078c454704e934479498b88f04f22e3ccd91929aac7096600451e465c47c9b95aad9b08c7c59131646c02d4832bee56e6e37d454fc0e3f297929ca5943de57ebcb9b82a7a7c5c924550cd268b9e5f33b7da798e08978838eb1c88f23ca1632a32c1d143103c98d1a4644990e1cf23e308d4c51ae5b3be0e36d19e5cd7581bc670078f8d9e5d6bd893831f08f1c9145c6f1eaed1b6be31c672c89c731b46a00d6af6daf6b3213d0c512451e021afaa3832cc4a8abea4bbcf3f92e37b0ce80b0418448a9d3c623f1cdc7313e165304870959d2464b55682a0e472b8f023f1c60969c3401915a311b0574520ab18b1896665c121c182601725722489238e2099a14083194e327e32c5f5bebfd70300aaafc2eedb04031c1c07a65d43aa3a8124438e22651815c679b78e3f01809186248931d84a0039a616661c65597951e6cb280ab94aa13246fb62660cd1a2f144d2f48774c4895c37abb6206e4499e1faad3c79b080a3e16db238735d736bdb6bb19ab6192df14e0ca0c3350853a68c611956a75bbc38bd72c1032223a0460c92156ab6c942e09165cd73c063332ca57928338ee5a4e3db3109c813ecd9e042645e4794e79667e3b4cc994d179c0ea4cd440f1aa24a5375c520891b90aeee243d33e1247ad55557ebb9f4b277c69172b2db1a59790b1266d2a894c678de3672aabf5f5dacaee27abdab1866899a3ca26d81900c755e3aa9ec4c1fcbc8c1c7d0b1e807524b2aa408acf1943847471f188370e48c31f0b78fc8aef2264712af8c2ed9b5dedd969190a0d7c15577585158e06eb6deb5c05d31b2ec61ea62ab1c3ab425c4ac55f0333ed220c91530c6224239324286431b2174faad1da4d34209574cda295676c6530e0c91248c21e3cb1c19bc9898c5dfc904b59e6b311c7916557678dfc9e48c360c0ba6b5fa09afdee6c8a1f248de45126188f1d38f467f21c64f115d247a4c0ef234ef36abc7d1a5129e42e051c750d12439f637d5b092b7238e284dcc6b10518188f254b3abc0ced6c0708c3aa4a79473c504c5a49b7c8f8e165c881e9f08c69fec566ae3c38d8224804564df43a3ebaf8eadd17239708e831704919b65eb6702e1e987472c1cf0e9aeb784679167731cb2323581202cc77c8647918ab2601e659f1e2694731a6f2bf18f1da1c8448aca43c2c65c8f1a34e43e791b0e365233b08ed4c87c96142a60ca60140385d6445b46fc8b4a57888309c9e7566e4a4eeead8405d5f173cde69caf2558ca1b1226677f2fdc3218a2cf06ae405c5c1c5b8e5c284f94b226ad8236627593109c5c7612eec448f22cba48162b5c18246e4b48a1611c53c59234e10e2b421965f22e36467a0e4498a1e44925c8e5070c9295e87ad7e5b13b000c4c7abc22b2f0650cbcbcbd735c1df936b29a0c31859c1c3d0c3d4123b06615d93b6e30b23b26791c62b923950ced8644e47955a4ca75d1a264cf0c843cf871a50c654984a7222f299062e6bbd5768f372a1e42b21eafbbcb69639303f419c059123880d91eb570dd00a862d41a54323cbe35e38e1fd7d5e577bfb664f19c1c9fb04c6cb824dfccdc92de1c6cf0e8319a3c18f28e47996496605cf8a72245c85b918d3172c90a22ccd9b2cff63ed7da13c8878cb088615a56e4e168f014c1929dbeb3491c489555e97d5f5ad6c65dab5d4a0886261e8e335e503b5fad9cba011ed651841656b27cc642fe43d0f4003062d65aecbd8962c93126b90028d2443b41bb2bc60c5932465b35859257c7863030130ea78c63faefc651e34e3cd1c581060c218a83978c9e058592f6cbdf738d8667c388373863d3c91721d993eae81c3b1215359258f074c496c03cbe4769256900286007cc67322c2908c3234da81e518ccfc8f384a5c130732348f2871245215c0367c0cf833471a7d68f8f23855c65185e11f5d5108c19a0c76c1843a2ae119bc9c879e150816b2f6b23b183aaac277c0301ac188e5ba0aecd9606155e8e50cad6bc772167f299d6713b32a960d796d83d065ec5f6d8b6c10a816ae2468d5c0923f166de396252a210ce04ae93c913aac65020c611ab484ee7971f33347cdd008dd1a0e984875d442bc28b8fa950a6367542cad7470058f081234aec6641832805cb32d562e3679ac92f24b136dab4ad85800e18c86579d24fb2fccf3183c0e14af2164f2a83c79618cc93ee24925cde8c6b014f1d04c666623c7e64c276d835cae66d7ea2c4b2f915da5fb51bbc21766cd48c925478f3c2e83891c41c3ec735eb5c19af5671baa286202c4de5f28c1830f41490463064ec8f5397b3c72e11a803a8d88ca183a383a39b363628c3d0512c12c91b432f1e2c4c2a653216678df59104650e39537271bc2f3f978d39928f1fc8f22f237dc2f172836f8b8461e8611d06e8ac88b1c78402f94a5a433f9132f5d0e6c05dd9cb39a1c0f7863addb040636759de6dad6362792258d3eb6be609e22f248235e208f0a88178a70baac9912880c11e34c9c92c14289416738b3bc11c73011470b77a28956906135e29dd52a781236c611a56b83071f445b698ce6546bf2160dd515aeece5de9ae48fb59361d670e0f44f472fd36eaa4c59cc8d206f3cfddd827a1d125f7059fa0082008c7d485cc70068b5d1c5a4baefb2e0542e180939043d42ef2207548dcb6789a04124589178843df8f4f22c8199fcb2cebcb4e40e4af23ca58ca5ada639212e2598853122530184e5e53e2bd867080489c8768dfc217143a8cf132245a66cd0a897951cc57048b3eecc859e0632a939e59163876516dc962498a28a4c7e43494b9b68b16db95893561aaa79239650b19cf28ed9114e59c18c8130e33f1f8a78faea7a08175f1e9a6b832aab256898e5656d441c2772d60103207f4ad2b2ba75786c481e6651805dc4cd9760744972f71af842489817c31e3c8725c123399fc633c9f6756e2c7c73c765cb4915108c18a5a18e10af1e825df6467655fb1e56c9a3882a63b33d866cf19408e24e3987eb3f1fea7d610c732e3866f3be2c0911cd54b66d9e17904de471e3abb72d1ecd2f9bc9aa323952cd2c6c279b92314386e2f8163896491d607af2090932cb02453bf17adb25cf2f94944d0f6d2b347069e1d986b8a14e5b34bc80c2301ced7a46aad870020605dbcbbb3ab616dfcbe4b5903ddde1c5cf1816cf13b63a469b1e52cef239bd9c938c631b8900540d1cf62524cf1c9261916559e7cd88aa383a2c0e5bb65136642f8193020856440557902449258f463aa0640bb47248c39085e45e434c53c51f1e2124685e379460e4472b66c5557085e52c924478e826581c36d3bee1048a1e78390aad976328c42275fac60581542361506f06331e4b344add6816e8969219fc9f5c71089390254311762870bb771bc8b214c99515a39666e47944ed21990797138a126795b52d717162e2e3e6ea5e2f12a9224cd402dbd78d7240f12403269df9093aae583d039e406842c2491209599b65c8f0058c62fab6468d39359473ce5d98b2e31e9b09c1d311808c5c7eaf170e0c666eeef065938cdb5966605738f33c12710c4b1a71e3462d14503f1208b1a0f03f1febea6103695b644d6377793928d2cde4dd4e386190c8cd271cc638f1c43921094e2787ee421a362c9f5904d2af21b26e2980474dc7853943c8916cd1295265cddc8720461466cd29611889c81a263a78ad9ab19429c77dccd5b478a6447562d9751f1d4f94aa3b4b1aba3c2bc5fadf58c211a25c490cd7a4b8d0af182b12810e3748f8e889630e0e3ac541b76cd5d9e66944c393b23ea70e34ab9603c9e4444c7448ab931b29c5ce3959a32736caea8e450f77c9c3d138a30e5c876bacae862626049406beacf57780d925f6b180047e3c9c61d473249478d140cde4533c1c7cdb060c23c6914991e48b360c0b060c5129477e33e7d88790701649605e3c79c85e2e3a46a08c08c0e4d0a7115e48cc6276c122a7d85964cd2242d318a792013f9d6593071938c20605de4cfffc4004b100001030204030603040707040201020701000211032112314151102261041320327181425291233062a1334043537282b11450607092c1d163a2e1f105f0245425153444808393b2ffda0008010100033f02fefc8e24f09e11fa947f9b04a8e1bff9d96e23fcef1fe76ec8a3e03c0f1087f9ce42705bf0086e829e046bfe4c3bb35205801738c095daaa3d96a4e61ccb576aa95b016d3d576a7f65a9530d3e5ffe95dadd4dcf0da385b9aac7b2f78c634383a1d392edae6636d3a64740bb45175386b21cd9beebb552737bd6538226cab527b7bb0cc0e6c8c4bb552737bd652837b2ed4eedf047d9e5918dff00c12788e10a7fc96228b4775de4bb247fb70345b51add7127764ed8f7398e224e49f47ff8aa989865f684cacf2daad7dae9b47b1f77498799c8f67e665073aae527284eab529721f249f75dd8a5569b0c385c1dd1acea514dc39654bdbdc51a8d76a4ee8e06e3f345ff00c1e774514f1927adca050e0edd1d784ff914eec7d98d6148d4033bc426627b452c99887366764fa1fb26e20cc6e6f7970aa54eddff00c6ba9547b2957cd9eeab50a7dbdf54bab8a5503449c85d63ed14a955a069f7acc6c38a57dbd163a98c355d8439af94f6d4ed2d1d949ee3cdce9b34450a65eea8cc77310bbaa7d9de7b3d48aba4dc14fa25a2af6675325b3cee8589a0ee27fc2b08ee57528845420b74d4ddf8841daa1fe4136a31cc7896b8410bb2e1a43b91148cb5767ad55d52a5397b8413244aec8d34c8a376796e6ca99ecb5a9f650da6eab188992a9766634b98d756c384b9763b7d959a64731b2c7db6bd6ed45951952f84485d9ea609a7180434b4c405d9aa8607d29c021b72a8577135192488f31403401603fb887f761fbe723e170c8a70cf8009a9bba1ba0a7875ff003a7aa29c9c8a2354775d787541041043ee07f9a53fa8909c9dba29c354511c1a503aa95d51e20ebfe75427270476e0d28701e208700a7fca93fa98fd6c7deb86aaa0d538278d134f9ac99f304d1922720aa4e6aa2745d12aab4d8af9d53dd53dd35daa07fc9d3fddc380fee22dd53c7c48ebc27fc873fe2729c8a727ee8ff95e3f5728ff00728282013426a0a7fce929da2a9baa9b94fd4947810baf09ff001c0fef79e051fef40821e39456ff00e551ff00025d0238c7f91a7fc271f79ccb97c27fc8c9f047f86f97fcf0c3fe480410feef28ff0075cff97c3fc0a7fc327ee421f723fba87ffdcc4febc07f9ba7fc8b3fe1a0878820828f1043c53fe6e14514789fbb3fe0a3fe4ccfeb1ba1b7f9ae3c23f553f707ef6ffe6a03c478678156fbf087f83c7f8b4a3fadf5e1d7effa7f9f73e31fa94fdd8fba1c4ae9fe4482b6451451fd63a7f9aa104388fd4821fdc83c63f5007fb887f8e87ea854228ff9a8781f01fbf050f08f01ff00357a21b7eb847dd9ff00354fea651f0f4ff3b47ffd9606825c600d5331c53a789bbca6f68a58e9fa11b7f9db4fb1b79eef393554ed4d0c203599c0d55d54ec9571b2e3e26eea9f69a41f48db51b7f9d6ca14cbea986847b47697d49304dbd3808507a27f63ab89976bbcc137b4b407c36aedbff9ceda6c2e798011ace385cea6d1e5839aa8096f69e760f886613bb5d6c2c3f62df28dfaa802e100aeaca2e165a1e8abd3a585c1b5362e5daa439d56e3e89bda9bcc032afc939ff9c7009360bfb43b053fd08fcd5d0d23d16ad526fc00123868a5594112532bd0656a479d83970eebfb562a75460aedcdbbff009c2d634b9c61a3329fda0b9948e1a3fd54a0a78e1108421751c6ebfb23e2a0c549d98d9768a1da0768a1503e9838a999cc2c4c69889197f9be1a24c01b95df9eea89fb1199f994232ad7cf80953964ae11d547020df8596caad10d6bda1f4f5057650e9a6f21aecda4f9550a6d0e7d5a6d69c892bb2537b5a1f8e732dc826bda1cc21cd3911fe4051ed2cc541e1e3a69fe1b6d3617bcc346653bb5d486c8a4321bf0c220abdacb11b282a4282a4a839f8c1f3268c819f55b00806cbd53eccd6d1707773a18f2aa75998e93c3dbb8ff001fd4a15456a2ee70724ded3d9a9d6664e13fe190d6cb8c009ddaea6065a90fcd1cd02386de185cde203d54f1c7d9d8d32ec1f92ef5844b016dfd556ec6f9a2eb6659a154fb6501529db76edfe3e01c64668e3a9d99cf96f99bfe18ecd45f864bf7c3a2abdadd85bc94b61c3440e67c32a387d7848e306029c96a78597db1a5a9c93e85738795ed283aa4d3b1372dd954a2f6bd8f735c32211edd45dde002ab338d7aff008f409b5d7666bd95da3baaf4cf97e654fb6501569e4743a7f8559d9e917d530155ed752e4b69e8d0be9c36c95b252542ebc020654051c25404d37a8e0d6841b4cb28d3c3f8b5527aac3ebe0c354198eabbfa2ded54aa0a8059fb85cc4c2de0843b276a69eedbdd9b18cc7f8f6f9a3aaa9d96acb0487087366253dcceebb47e95a26771fe136f67a2ea95326aabdaea62a9ecdd95e16117454950159597551e0928056971c0cdceab652aca38594c10afc194bb2f76fc441cec9b3c86c81cd51772bdd81d1b59527d203bc64b465281c8cf829765a78eb3a3faaecc5d765503785d91e245668fe2b2ec9ffea29fd535fe5703e9fe33a75fff008d351a0f794f3542a5114ea8f74ea4fe5f64eed15032afe929ddae54a892d21c5e3485da5d53153c0d60f8225560ee7631c0ed654fb4b6dcaff949fef78fd5db4a9b9ef30d6892aa76dad2eb307959b70d4ae6f04f8aca7258539c65c493d7c3750b45b150a08e8a6a81304a34dc43b35745b709cd9c0e737d0c2ed19b6b549f55dab2ef9d0aabcf355a93be2471dee7728ace101e690aad277d9b9cc3bb4aedad827bb23ab734c7bb0f6868a7f881b20e682d2083a8fefb3f703fbb5d41a5e4b5d45d6734aa749e1f21dd95f9382a76ee8591a759af13646bf6973db7e0f79380e48b5e0b49042ed34c005c1fea151aac26a4d38ce725d9aabf053acc2edbfbbca8e31e19fbfa3401c4f05c3e119a1daa8e31620c11c29506b8b9c25bf08cd54ed6435dc8c1f0854e852073aceffb5443755332b995b8620a3c45c7a28f0cf0944e8a3d7859607c841df84ee344e75192ec6f191dd3df6c27dc2eef81192c470b82dd4b6d30b0912b9948bab4b54ba4e5c2b7637f25e9fca724fd7b3823a39767779db519ed2a9d76e2a4f0e1d383092d6b9a5c349e205cd8206ed20fa7f78c709e2384a1baba9e11faa8dfefe786fe0e78cef91c93a9d5349fe4769b2e5f290467d7d3801aab12b0bb1619588f03164e104662e0a2d635f59cec6dcc3459feaa976c760c2e654ce1daff00760e207df01990bb3d38c75e983eabb3d07b99ccf70f972541d558d82187379d38b69d373ea1c2d1994eab44ff00676e107539a93942c15ea529f3b717d10a7f65d9cf3fc4ef9549b3a0abca07556909cad28a951e2852a384f195bf10385b8343b982ee5dddb987bb9b1d9620b1b2d9a8e385dce797554260d523f96ca99747e6a42bafaabe6ba22e17581e109908b1ee2c7169dda55578c351ef70fc45777e5e53b8cd76aa6c871c522c485da192ea90f0440e8aad59ef2a3dd3a12be20ab5032c713d09b267686cb089d46dfddb657e03c478dfc33f701a60ad960b0bb9541130986275f109981c4ea7c0ccb121b8e3081c9346a8cd93ddaaea8c270164d81363c21f2117b598b4d536a7d9f68a9ca45af709b70acafc23846aa491921aa7b1d8a91c2e1a85dae9d41ded52e6eb89b2bb255200ab0e36008fb8697100891a70a3def77de371ed286ffddcfecdd9269799c70cecaaf77ddbea5570d64a738db2d57ccd1f44d8bfba04069b10abd1e49e5ce27fa2ed136c1e842adda0b7bc75b6160ad1a22daa484fa357bda7e6c94a852135c61be6ca106e6429bcca6bac8b5f0af6503c31e2babf865613c4d3a80ce1839a6be9874874f95c16001a78438bc719590589d84bc34e93aa2d6825e01ea8ecaeb171bae65875b2c46ea029892ad9d94abac93a8d4c6c30e08769185dcb536f16de328abfebb2a38c210a7c11f7119ad82b49b780301bdd175b7584437342fbf1a8c02f23641ed96e5c44cc21313753e0f9513af12dea1072c56197dc9037575cb87dc26d4064442ebec80cd03c2d6e130b98ac9413c8215f2b2e63260e8839e195e9f76d8f3ccdd32b33152787b771c1adf3103d552679aa37eaae4508fe25da098359c42ed0e91de1f6109c7373bd6552734c918baac44937ea539b6154b4e865768c8567cef29cebb9ce2fea5547d9d56a47f12786c39d8c8d53da39581672d123494ca991bedf714e9bf09bbb6081d134feaf0a78369532fa8e868d5329d3fb038ea1cba2af55b86a5473875e047a2dac56e251b169839422ebcdd41b296a82a1a4bb25c92d60f745c3bc75370a1abf64cd172c852e9592c84c5d6291b2bab5f8c708308e7e225017cf854a86c2dba25afc44c8ca3545b7acc78665cb740fe8d98437eab7e3aafeced34de3152db64da81af6830e0ad6e61d10a8d582a39a74e266c89bec9d5e880d31540bfe208b5dca7dd3aa197e7e888e12b652e165ca543422b99185bae557bac64a75374830e1915df52e63f68dcfefe386fc4a28feab0ade2bf8e7c1256152110eb1521601033e1872faa3eca47194e61969842d8820e1ca6553f982654d9c15adc0058bd14f12720a05d468aff75250f8b2e8b0eaae86ab9aead65657522fc32d938bac6ca22e840d14794dd54a3ccd243f794fafd9c101a1faa33774952af7cf86aa426b77cb8daeb9e42703636475b2761c90c7369d13b1dc6129ecb1bfaa157a3b6f0c3b0523eae44a2114ea66730a91f34b4aa23f68107096991c69b4c39e01fba9f1d2a0e0da8e83e89ed03baa65d393b455ce06d4762b6815ee54f093d384f4508b4d9195cbcc87a2c140c6b6e0fa34aad36f92a660a28be854cac375392e5ff65b2733ca5778dcafe01aa0a4add4e8810b6e128fb2816596aa07d9302aaf1264a1d9c31c40c2fcc34aef2f84375c43551e082aa37c931b28fd1dba158d804194ea81d531076d1e034dc4800cd8caee9e1d4ac36589a1cce6b49516e042d9594a90842b75570acac55aeb08581cd704ded4c2e6f2bc67d57735a4001cd1cc374ca991f6fd42df7e3f5db70872845814992aff00736cf816d40536396eba2e886a11d103e6519276ea55feee0ac5aa006e86889e3659ab70d96c13b38b2966c428564ea5508c70d76f92c6038ebc015a71c4402a09bab5d4ab5d35cd8d560364f03cca61d20cae6bcba3816905b9a151b6cf51c73a748df227c62138794909c0c837dd55882f75faa26e6e9d48eedd953eef1cd94f905faa1203b35d5342bd9b2d43e528e80274de17cc109c95b8068971809993399da2c15ea77c0f687c7993b1e2c99161c0d0a9048337f092abd5121b03aa343f4b846d754995b01cf880deef537f06132a5d65f9231b70ee9d39a38b99a214df8c9413508522c8cdd0080d384bad929128e1e51758aa616b4b8f44661f05bb8cc27d1ab87f22b1bc98e319f06443dbe8421a0ba7920cc3b70a9baa60b87e6762b05623c0feeb1c72a25c5babac2e8b1ee63c10e1a29575cb1970ba8574095251703009f45c9c26cb9561e427cc8bb418864774dc51277bff00455691e524b7a846abb0968f6fd5616dfdc27c0148e31c27f5fbf1fa218428c9177c2a162d543af9a9e1b2b20b2dd6d087363d72e8aa86e1a663a2154b5aff0039fa7085bf106de0c2b17005a60a8cb8008882db2c43cb74e2d23251e0c24c283e1e8a38c22a593aa81e0df8bb7428b4e27031f54fed2f9c5880c9a324ec5f643d41d116d3e737e0153af77483d100efd272fa2a3332e8d932a9c61f841d0054838e27bc8d952a71ddb1a232b273aabbb3f667c3059ee1f1235209712427124ff5460b6a0f28f32ef6edf26eb176a774b225729287999386755745b2894e28e678f20508fb7dcd5aad2ec9bfd53b0b4609273e8bbbe6c18ba342652700f80ed8689b51af6d0701573f543b49c15ce0aadb076fea9f4aa6079be8774ec7cc677585c42c3752f2562373013be075f628bda416e1aa1776ec2e41ae967bafb51e88f196f7751d63905ddbcb7441cc14aa111a3b50b9a272d946a892a50a94a4d9edfcd5f85f357128b0d8907709c6455876c7540a6e7887bae5b70716f76fe6d9063fbcc041dd0a9ccc98d97775710fe64e2dfb37a8206193f44da99483b1fbc85d9db9d56fb5d5173b0f797eb6f0c7807de0fd5e4f09280d67f558528e9c4ab784f18461620baa2cd97440bd4157e1050d95959163818cb74c0f15194f09d91c78ed73a2e5fb571cd4e46478afe18478c2a156a96d1aa0bc690839a0ebe1c2e95376e5e1bf86ea59d519c94710e6cb33d47069989761b9c21547486b1f4d9e972a742af201584177cc32f042e5e1f67c3fb3767ee699fb6aa2dd0288c91c32022eb9400185d74f69963885254e48b6e42fed1420bdb4e9baa41f5d2539940558e42705f7d786df9a9b64b4e32dc09d3057e2f1beaba18d92a9f6700d732ef942a2c16639e7e89d0629b156aaec4fa86d974449e7cd398e0e6920846abb1bac7584fa80071240c961d117ddf9ab593a7241cc2211c3cbe7192a85c5e0c3b65df53c7a8cd3dee83f08faa3539dba69e0c22153ed94035dcb5dbe59d5745df078901da5d1612d708215f87358c4abf0c264668bb3cd4e6a15d5d1073451699098ea582b79bfaa149f8e9dda7f242a5d87d42ee9e6153ed0c06015dc48125ae4d693888a7fd0aa2cf2873ddf44e3541c10cd95c8a34e46ee55a799ad7213f68c20690995998a9991e0ee061a706a1fc93eb19a8e2e575ca038484fa440a97a7fd107b439865a7c57f10e23f58b719fee3ce7c1641a2ebd900d82987210a530db55cb6bab841c15b8594e655f2f742abb0821aefc49f4aa163b319a7b061007aa6d5a73e522c6fc4fb28bf8ccc68b0f0c3d84e1741718f5469d7a4f9801e27a26b863a643993685886265c6db78242bc1c91cf31c6dc64f8096d82289d112eb702dab86996cb44ba4afed34039d2d9d0a6d36814c0680b74c06cd09a5422d3d3c37565199b21db7b63aa32c0728be7c30a0b15828689575756803838fff001b81ee6b5a5d0d1f36ff00eca0abac1d54caba6876e130768fb29c31aa9f0bea18634b8f455489a85b4dbd5764a713de573f44d6d2c34c368b500f71873da6d0b0d48823d78ca853c27251628e7a2eaa0b6ea1a2a53721dae5b583454f85c13985cd3676a9da2eedd89cf1f5573c61745df34fce3f34e61b2350073809852b65bf8743628efe0cb8c1b66aa52cb9adaa79e680154a6e901aab55b39f846cd536b950eba0adcbc03fecef7bc84fecfda5a5a7d7aaa74f7276550b21b4c35df34aab51d2f713e010e9f62816e13119fa2a94e4309008ba7d330417b3639aa0f206300ec7c0da8391c0f806e80c97a7f8044df80e2079539d995ba13ca8c46888ba044aefbb586f2d87c46162a00eaa9c79a7a04daa3967dd48585423985fdb29881ffe4b3fef08ebf9aa0fabf6f88750bb9306edd0a6bf22b00e606e84dbc278e30587d97f65a0fa8ebc27d6aee7d4b93b2b61dd5aa767767e76ff00ba2ca9d0a6befaeebadd38709c93c0983e08e10b1648ea8b73c9319e85070b2c216a0a75386d3173792a493aa6d7a56c53acf8656fc6f9703c2ffd9a891f8cff00b2c42da708170b11470f2e5ba1a7828e3c3dada5f4a0811f09dd52adff00c610fa8cef2a1863b0f94ec4f54ea751cca8d8734c108605ca9c24952d1d147aa870520145768a9e5a4e8dcd9103edaab1be9754298e569aaeddd92a9872c03608da1a09fc592ed389c5ee99d8ac3f098ea83205260f52a9e36f7adbfe49d4ea65ca6e1c159124009cc7b9af10e1985b70b29cd188d10316ba109803dae1e6d53a9de2db85fda592e1768f38d3d5608e6fa2a6e1110ef54d69e61211a507e0391e39ab485fda4e26801dfd51120e7c34e1756e05441984081712a3c76b2e9c2e84f0d651d0596eb00e40316ea9e01fda002f99e509bda29626c174588d543a0a9cd0db802b0f98184d9b648b69f971337d962e9c2af66334ea58ed70aae0f2b316ebb4133de11d0649cd3de3271028566c8fa6df7ad073fee094e3f0a7edc255b2456e2534ea8458a70d3efca8e181d0b13a7c6ea7e5589d2e5f625aa3d150a5d9b0e0635c7f494cce17ff00c26ff6515bb3bdb519131370a9161c41d8935dacaa94d9e538774ea4f6bdb670d536afda536e1f99bb233aab667123ec9fcec73a5912251953c310967d38147843c15ffedcd8f2bea415ddbda68b007fce6ea9f68a0e156ce1ccc701aecbff00dca94b8373174ea6eb056e07d421b0466c6c9cc7dd35cdc6df1615072b2c4d6edc05330e7885d9ff007a10a90da35393584f312490dc969aea8f6479c203daa97c6c78f4baecd5acda907675bc739f19867602e1079aa7fc2924eaa2c754d8be6a23747bb94488cb840f5f03a9996120f44eed0ec754e2a9abb752ce1056cb9a535c0cbb091f9a2f68004ac26589f305df9a0d12e74aaa7f47c81542f92e71727d2a63bf741fc4512dc14bfd49c733c03bcd9e8a01699c053b55743b4530f262b0cc1f89147c106422545d1220189f8774ea6f964b4aa7daf136a340a9b8d53e83e1e214e69ed696e6c2afe0eedd8f6525a6d71a283d15b842185b073e12387d13e9b631100a20de1c9a7a1dbee6eaea42816516d4a30774e64106e9b4e9dfd4c215e98ad48de27d789571ba22da2697dce15dd3f0eba6c532ac61e43a84ea2e9cd8722a276db8f2869196abbaab8987d533035c322afca14987718f5527cdf44f65a538ea9dba71f88a76fc1ccf2953e610a72f19fbe27208ebc0ede093c0044940f995a028d420784710ece10f87ef60ae8be55f126b9b8485872c9147629e7e1553e5584f321a785fd9aa4c073630969d951af44d50e786b4c14d1e4704ea769b2a1587da5161eb1084f79d95e314792a64554a2313d9806db2bdd5d1a3503c1f54e6d5efe8735376c854602cbf0c3e5bf440dc2bdd59369006ab83657666cc1248d82fed3da1cf33826c0a0db86fba7e088e5517fcd1a9d9a8d47e6e60726a0b647745634f6b488b1f1421992021ddd42d7030139ee972dd62256117e188c05a41ea8cf2c2bdcaad4b931727e25deb78d2a0dc55aa3583f115d81c5c3becb52d2bb03661ee7ff0b5511fff002f45ee3ae2b2adda7b39a7499dccf99c0de1184d0214c61c823ea173745a42d55d5a23c05ce0022d741cd58f0fa282a954fb3aee7367cae032553b28e7fe53b845af05a60aed1da40c2d2e1f928f395d868920b8d477e1549dfa2a6ef729e0f2b8b474527af185795bac43af0736d641c15b84a83c2162e18c366716a673581c1cdcc2a7dafb3f388dcec8b1f07d88d57ba180437c0e790c175cd942b7192b148daea5bc615a3451743dd72c4a329d362a9bb36381ddb9208e10ecda75e2255f8106eae37e12ac60c2c4c348e6db8f441f2fa7e6db7e3cc116896dfa279cc27401b215395b6a91f54d3c95058daea6f49e2362aa5031507a1e2d767628b4c68b1743c205eea059188950b172bbcab0bbc36e17b2f987ba6e19911e0d07dec94d080c9128a8cd0575af82335390475ba1b709e1089e0742a7ef67caad79588464a0c93c00d3c164569c0c4f1add8aa4d32309f335d915d9fb7501da2930b31e853dbe4bfa155299ff00c223ce151733055b83a2a4de6a0ec4df9504def4079cd31ae750a963364fecd5dcda661aee6e8535e39a1afd916f963dd3be20d27a2a01ed63b10a87e1c32844cdbaae5a74e987e39c7880b0553b5e1c541c1fa96b3ccb10ef3b56260f922ebb28660c32cf94aa6fad82855c145d721536532c1da713499e665c7a21d96952a34f99adb732aaf2451ac70c6855435ddd9eb3f148c4c933e1d0e4adc974e1983c4ec853ea7409ce3cc65398669bb0b91d15f653e8ae8e151aa03d56ca3d783a996b9cc76198c7164c6d3c6e706b377206b3a28fd97c37e6557b7768ef2a40d1ad1a0478b365cc08c94bca0332af190526cad7f15f84ac2f078dd46770a855a67b256c418ef2bc9f214eec7dba3b43317a65eaaa51a7dd5401ce1e574d957ed00e27727cad5254042102a7246506118db2ff0097fe53a6d657cd72af895e1612b9745f44355ccb6e0cc469bec1d93b62b0bc839a89574693e42ef45e00cfd38595910787d50a944b8bfed01b853c25b0ad28e2eab1dc699a03340e5c5a20132a17d55a785d0469ba418589d6a4d67a141de570f7b29cafc1c88f5523aa2a73365685ddfda34f384da8c0e6e453492596288cd730434f37f5441c2e09b5f286d4feab0bbaaefe9ffd419fe25dd122a1710a9768a7a39bd55106437da57c54882d443310befc20c858ee78057b2bdd41523ee9ecea364672b20e1b207efe3c3bf8ba2db892a14f86df77cdcd9206e070131e3c4b08275430c14c6b3106ac620db84f0ab84d27d66dbc98b3f4448fb46c26bf654dda42d8cae5c26982135d6732df421550668541fccbb530e2eedc4ee2ebb45705b501c5980444a9cd3d8d001b6810ab639a7f67ff00e4ccb83396cee8a9ff00f274432a99c1789cd3e9b4061200c82a84dc9557aa76c5382c5e6565804ea9d5ff00f98a4e7677c874f1872a1d9a9779da30b59ba6e07b7b1b5cd336a8750bb4489ad5bfd4bbfa86f24ee511b4adf35ca87097ac454d8708ebc3bb6170bc2ed74cfd9d631b116553b5d0a749d0034cc0524ce89adf219522e3df8388be5c396500f256b089c91e0254d95b6517d3c217289e043946b0a0a6d5a03b3f6e2708f255f953a8d582438661cd320afb26ab5f3e16453de61a1368e465df32836cf7e33619286a18099b85f661f98e132ad081d6119c2acb758e9dbf483f3e175bf0c7cbf169c4cadd6a11e1759f18876a98f06a50f28cdbb29e10aea043909ff7e04152b0a91c4b724c3e7a77dd9640c961c41721564312e5b053c3b97e13e4729cb2443c83c2534b79cf38c8a836fc917805c05d61b8b15265307e10a3cc6da15ddb8f2dba291899eea9bad51bcdb809a2cd9950fb108c74dd7cd96e864ef67283d55f8c7dc5d47131c245fef6cbaa6a80a54ea9adeaa74e10a56fc23244adf893c1dc4e88a8cfc724950db2bc1cd40e612b12bf86e9a1b19a6fc328a8f01c49d41ff68fa859af34a38cf70fc6cde217696f95df5baaff0010a67d903fa4601e8bb1d5addd6387f55d99a399cd542a9e461f584cd615376419ee151744b1b6ca176771060823aaa7da0b0bead525b95c1547b379714fa21a1e0364c3a04c3a2d910c3b2e54287ff214ea3b2c94f98207543837b1d00f2dc45cec202a4dec85cc7b7bfd199dd50feca0f68c5df8cc35be64eedf5f1ddac021ad9cb8f775d8fd02983c2c8012a55d0841b905cd7d5068c472013dff00a33ca8974e478084d68b4a9cb8f37443447096abdfc26274587c235e36e1cdc25688e1c3a225987509ca45d03a2f9f2d866bbba430c347ca9d51e6785e02dd6116b2e5b20f7c112d363d13e8c83965ec9d49d0ec90e1d56286b8c6c561b1cf806bc13701074d5a5e5ccf830bc40523be191d36f01f894a2a7842fa70c2439962b18c6d03781c1b05b51a1cd3f50bba8239987272ba8cf245b9eb91df8eeb45cca14f02c7626d8a69f3b7dc265fbb327646511c3252138f67826ecd517b46210e1aa852a2e17287346687c5974532885b276121c6ca5a245c220827457985304700b650034fb2c4882a335b7ea119a9fbd8e339f849e1ba0547184e5ba3c022e442f9ae80cbc58894d9b2b85221cb03ecb9642c438decad051827ee7395260238038d4a601ea57754bbcef29bdb31ca5637494ec22b54a409376971ff00655dd60006a7ee13b751aa21385c5c20734d39184f1d7c2d70873415d8dd9d06fb2ec0e3fa270f471545ac0d18a0754cd1c51d2a08f4551993a46cbff90edd5463ee594d9e501ebb497c3cd36b7e6c52ab347d83d9506c7957ff002032a33e8e0bb6d11353b3548e97507862eccc9376d95b8c2e59d54054a954c0e75f6407e8981dd5778cc390e8b0ba535da211cb278df29e8a7cc246caf3a701eea0a27dbc230889e0244dfa28718e189c0265a74581f6c8e484ab70bf08588dd371734c2c15860389be91c764da6c9cdca64b8ca80ba5f8002e815a04696114c401f9a0f69a94a4b7e3a6731e8839a5ad783a8e248956ea8bdd83328837b284698230e269d15ede5d381d781c5333eaa0dfc575cd75288b276dc0b230982b1ba4e673e1ca5ae189a56179db864d759ab03a384a856e19ab701c07c4242b4b4870fcf8df34ea6f96aa4d863184bcf9868107365a642051d1102349e17b8e1b2931c2de37537595fcb6548e44fd14dc78cf8efc24c1506cb753e2b71df86fe2280cd6c3eea14f0dd0e31e1e65362b09cacb65273516011d785bc2d0d11e64dc369c5e292af64e766606e54ea8d7aa1ad12764ea744021a13bf0a3aa953c4b542858be257b943ee82d91dd15d97b60fb7a227e61629cd97763ab8c7c8fcfeaab76673d95e9ba9ed895ae8484577621be74e630b4df6554821c47d10bb87991b8510de27ee37f00df8e1009d5063a42933c309944942a53e71284db8cbb8e88ae70572ce88b9d650811c0344a2b645e5458153c21fca4f09e10a516546bc66136b3399b64689dd875e0480ccc283752a42852381e3b8e10e950166baac451e17e65642a30479ffaa8e1230d4cf43b22c7e139ff005e3b2233564656c8a015906f338c009b5e4d333c2d2b002f3a5d173cb8eb729aeecf85b98cd61e37b2dd7774b1bbcb3129ac6e27386145dda7bb81d1516d3c4795c330534de99969e13c24f8242e8b135ed75b508638cfaac5978638dfc73eaa7d5467e193c3a2db815ba6a1c40cd6c11f01db8dbc5b29cf8c041c3c3cd7084eca74e106102eb0bab70e63e011d7819b78b99003af0b2a7499668977c517539954e7cb756b226e225626f5565d54ee9a46cb795a2211451fbd0a4469b1541e3f461a7f0d940e479fe65daf04500c77f342ededcfb2bcfa415dac9bf65ae3f90aedb31dc9bea4aedb36ee8ff3aed7d9462a8c967ccc32029f547647d1070e6bf544782dc0c4e9e2bf87956d6e18692051d15a5489e3224156ebc269355bc1cb658a6ea3341aa5d2a7fe14b8205d8b7f0f445398e044a6d6a57bb4a7d224c4b37e07533c655d4e59a9f09238056b2b48e175aa1920c82a9baf4e41f94a852151a94db47b48b0b35fb2a731a7cc13a89bddba3bc05119a8f359502795ed285301b4c82efe88bdc4932850ed0d2ebb4e6a876be7ecb504ead5dd79ec85461a6c19ea81f366bbbad636362a4a91c257727bba7e7df64faae6f787ca207446a4b2a3a4116053e956fb4c41ba3a1626c54260d8a343b4371f9039073039b71c2fe19e0778d386075f2c8a6912c32dfbb9e245c2c6d9d4291d5613d14e5c254051978235f06146786fe11b2b2df8051c76e1d11e023c0cecd44bea1f41baa9da8063060a7a8dd5d388c94711bdd466b96cb17af82784f8b75254cf44466152a540e161ef0e6e25383917a9f5507864afd3801ea82c59feac38144660f5855cd5e62e3d9b4da7c5b782458a20e0fb9c30aeaf7c90c5ca8838752b0d21198449850e86a313a2fa29e0745ca9f55e1ac6e271c804fecdd9cb2a7647e3f99d3656bf82dc2f2a5488d16814bc0c93a9b439a39634589470b29cd0e1529e4e21bb2661fb407d953a8d0ea5ca9cccc2716c8cf6507849585c08370bbca62b526c7ccddbc52174e17e3aa936519a83210cff002e165de52c0ecffaac134df0e67553cd4458e9b2837cd09e31498dd499445d495b224d93d80809c4676e1264220e4aa35d8a6fd53e8bba2a41b39fa20d6c86fd517bcb9d72785eeaad3c9d2dc8b4e4533031d4db8411926bbb3ba6ce09fdd3d8f391b780a9e1056aafc242753b841df751c6cb09943ccd52247bac3e8a547848088e1d38594acd49cd5baa28140ebc67eea14f1a1d9b135c65f13853fb5d72f3968364daa79a6db239829ede8838f32bdf892b123a2df8deeb0952574e2e172386cb0b004db45d5d4721f01dd418467343541c2027b75087a14375a7eb38bb03ef1041f00f0eeb08b2054780912b40a5a4e5b2983c4dd4ab924291072403d61790b96322a785d5b81065860aed6c222a64bb3d7189dd970d6d4b4c4aa5599349d80ead75d3a857c3da71304488bca94355261bf55017d16cad0d0b0d76658a53a93cd3ed11ddee344df35338874e010f05d1392acc8c2f2df42bb4473381f509edf300552ad71cafd942232cb83a89dc6cbb3f6abd3f36cae7c041b5d5903a2877080a4afaa15259da08be4ed93a83f0bbff006ae605b86c6dc20ca6b1a21d7f976547b533f16e154a672c4374f3930a1d969cd4cce413ebbb9f4cbc1175b1e16852ee02504029e1191426ead654f0ba8f682703b223309dddf3905aef89ab0329bb14b4d89db84782dc24f192a3d1597cde33c6dc0f08f445aa41fcc2c2d107f532325b8434e12a0782e82016e81cb83e954ee281c27e2722f70d494d633001359f6010a345b3a282b96e869e0211f30e369715331e021494da716928181aa38a106ac59231c2e8d40308b22d19702a51e1257ba74e5c214268fbb84103afdc1451186969994ea8f0c60971c941fbae4e075c934325b98dd1729618d161a57ce3862467250572cc4782799b9f19cd376f099469ba5766ed7d8db42bc631e5e8bb4b6939cfc2c032c473575172b13ba700c662a9f452eb22ca8d74649b5d80b7e8bbbab653702c8c4c18dfc20ad9595acac8a6f68a0c71ce334fa62473350529ed772ba0a6556921dce336f81c01454d95c1e16b151c0bc58649cea21953e1c8eaa45ae355cdeaa2caeac9ad6f334e2192f8c7b81aa069365d3d4aa54a9bdcf781844c6a8f6ced41e1a59688950508cefc04db89e1d172a2a16fc5ae5054140dd5360752ed13dcbffedeabba602c3ded177c415e27d15b994f1b1e10a56d7e16401c2fc977646584eaa3aa9cd0473cc74f0c788b6d9b76e17be4a3c615bc56f0f374508f80a2b9bc381a5eef28129d5eb39eecdc6512dc712026d3777f547da9d3e554bb2034d87156fe8a1d94a6b84830765198f014d7363256b209bf0f80bb208fc4a355033c937e21743e1cd39d7e05d0d43bb319ac2e16f6542a51c27b361c39e0202ecb59b2c907aa6e8501994cd537d7dd0e89ad126dec99a1faaa2dfda33d8a69f211eeaa9f8da07a277cd3d515d50dd404fef2d48e0f558afc0f825a882884780281f034e898551af5fbca8f7111e55499d8ead2ecdcaf70f36abb5f67a06ad4a50c19c3a63eeef9a00414745914065c2c46ca108e640b8e9c405233bae520a8774f15e42d389a352745ff00e3f7405f70b1bc97ddc4dddaac427450dba14c627f9b46a352e7341b9ae6b15861c152a8cc4db54d42c155d45fe57e5ea9a46415369385804aa755b0447a2aed3c803c7aa731c5ae10eebe0d82dd47a27b0723a156830efc9778309b54df7513a1e04196a9f5f0620a1590517539223245ae90b15f550ed81b14e6d50d7fb2c357841564ef84f336e9b4fb13c7c556c02351d89e4b9db9e10ef1426e69ad36f049e21a638ded92fc954a0e3ddbdcd1a81aaafe57c3c67cc153a8d6bb998fc889e5422c67c33aad02214e9c250c05ae27a211862fbf183b22e6ce19437e04e41119a1e2bab5f245bfc3f716fbab5bc056e871bf81bd91b845ea9c82ed1db2af3d575d53c20ba7aa141cec3a7280320bfb2f66fecfd98e2a80735446a125e6fb9464d9423e090a10d42198e16430e50a75511055b83be2e3f67389903aa350f2bd964fc362df54e78b54a527e12576f63f177209fc2e5da2939d8bb15473b424649f4b9aa453fe27268126ad1ff52a599ac3e8bb39ceab576760975569f45d987ed3e8c54c7e8da5fd5caa55f31f60ba23c0e9c6eb744796dea8795ef3eb1652795c0aff00ec2c5c3641dca4e7c08519ad8a76e8ebc254f85b5185af00b4d882ae5fd89d1ff4ddfec53a9bcb1e0b5c3307eeb1141aaf62146797098288bf44dc13125732d968117093c2085897551c2113c24db345053c3164b172950675d149249bf09592d0d934d48abe5feab0d7180cb26c42764f40f1a75043d8d77aaa67f46e733a669fd9d85e1d8d9e9c4158561e058ec4153ae3eccf36ad28b5d95911e651e1216a142b2116400b21795b2244e8becc36ac3e9e49b509c0fc6d8b6e1398798429b6a85164bb34f139275474bcf082a40b20b6e04702b7432f041462745ca9b32b9912a26159119271cd39ba2a94eed30aadb1e177b2676910d10fdbc74e9477870caab56a174c0d0042ad08f8d99ca05b85d9e8ef010e4673574f0c0d0e30896e7747513e3c284f29f6287badbf51dbc47c2cecf48bea649f5eb17d4324aeee99a95206f3a05fdb31b7b302d60b63dd779daaff00a26680a1ff00f14af832c48022eafc0957f1b535ba4ecafe561e8a8d7a41ec71a4edb30a8533cfda3fed5d974ab55dfc90a9d679f33069aa6b07d992e8f98238794b5bd0344a97129c6e139dca1c88c4066aa64e77d556ec4431df6b4ce40e9eebb33ec4381f454bb6fecd86911fcc0a03f46f72ed14b4c5e8aab3ccc70f6e2f7e4d309daf1b7181c611b4597e4a955f8b04fcc57da112ad7cd6e8eebbea01dae4544ad15fc1d50dfc6cedd4be5acdf2b9769ecef2da945fead12156cfb9ad1fc07ee49f4506eb9961eab10ba810a3244648c4ac4650033f6e37f01d147007456b780b483308b6ae22a5b20ac4674e34bb435cdc47bdd027d030ecb472872c064ea131de5851c021c03c107229dd95d39d2391f04a2d6f0c2e94e2795d3f84a6becf09ccbb399be2c411516455f87d13a93715232d2bbc693611a2731d89ae823228d503bfa6c79dd50a6e70a188faa7557e2770d95aea5d27c038099f14052500c516410d56ca4a1a68b128522e8cf0839dd1a6d02a0c5eebbea6d7b2e0a74c612a0df837b334cddfa04ea8ec4e325119223b5468e6905466b4447a7864ac39e4af62b4fb8329c0a913fad0040913a046a769ee83b919a755df61a8ec87e68bd8ca51f679bbaf441b4c766a21d4e966e78fe8aa33b47f67672536898dd7349cd1255f810a7c375a84789a66ce808d5389b9a79170ec5ba8b3f94a0e6f44dd0219de56f92c576db6458ed962027eab0e718561875327eaabf65abde31d3d0a6f68645786bb69cd53a82d09a74541fe6a4d2a8b3cb499f45d104d09ad410e13c41cd1664641408e76dd1698991b2b029b8b057a00d3dda79952a94bbcecf531b3fa274ae7c0e6901cb35072585dc0eea15d5ec57cca7c70c713945d37bc76010d9b7dcea32595aca2572f541c16ea725cca2ce908f0bf83652a0f0d8ab2b70073214e451f709f87012437608309bf2f134aab1ed3742b5283639c282b052609b44828e99aa9f327eae4774423aa0532b522c789695fd9df632c391e2422735392fc49cffb33cc74551b9b646ab18fb337d8a63ce580a7527e178f15e429dd0565d1776fc516d42fb1ef6988c59841a25c61a9eea870b886e9c2568a32fbebac2a55d622badd1941a2070bae6dd42fa206e81b95d1566b3007bb06caab3279556ad59aaf73cee4aabdd86031b940b6eec4e3756e11da013964adc3134017e89d3ca3ee39b0d4cb7d941d0f51e2babf45854e6a0fdddfef1b46939eff00284fad5dd526341e88d4780352a29633e5c9814a6d3a6e7d421ac6e64a1dabb4bea0f2e4de37e30aea5128c64b92cadb0dd6229c3e13c001d774715d6709f8a70c0ea9e09b85224d826e4e40996c20d16408ba0021d549b26c730f74ea4e0e0177ec18096d619b77551a60dd0a82d9a1287ca86cb65d47093e20e6dd610b137aac2cc90cc8ba2ca85cc7069f9774333650e6bda50a94e42852dea3848f78e05a50214fa709e9e1958a93c6e154a4e8a8c734f5e05d9055fb43315364b77557b33a2ab6139be6047824422335bad16c8119dd0d25620812d1192c371922f37c943b8595941bab594f990170174086dc0426b540e5cd15238620d09cc3063d900bbfa1cb522a0d09cd776fc354737e24dab4e00885a2bf863836b30b5d92aa1e5a1b31aaba9cd0f8516d90d13995016ba08d577ad8a82e99e71f519841e032b67a3b7584775da2ecf85fa85170e042bf0b70909e72693e813c79a9b87a85ba0d1c0d0b178c3ab4a1da6b4b06166dc24618581aa6a7827eeac4f86ebed0a8b7184ed0274dd002eb4192b5d43548eaa54056845cdf453aa9b8cd11915de528fda32ce0a02be70b1d318bcc83fa14e61bf11efc37519afa26b9bd5471dd615f30fa26b866a33c9735941fd5bc9407f115349d54c6116ba3dadcd7991401faa8680d10dd952ec940d5ae606dbaabdbcc79288366844aeb750d83c23c12786eb6c82c5619238e08e01cf9b21861d92c3308ed750079e7524a23aa01ed390d545e2468b09ca14a205918339a04def29a08b952408b26bb2b2349d8a9921c163a808104d8a73bb4e1b12b054cf89dd4fde61cd4169694d2d86aa82063b6a213583b9ed6fe51663cac6d908b24f0c298f608569e186ce4c997ea9f45ad3fb37e4f0a72ba71c93c666ca0de9d4fa28f82a7d135ca8d721cf635e465299daaab5f8cb6044054a8d3c34d80041a200809955cd2f1387254fb561c762dd9764c21aea0d3ea8612fec44cfeeddfeca0c110468784ad42398badec116d9b92b706ccebc4e296f1b2ba2387d10232589d00a20a8d14f18e110b14acd32b58b88a80d90ed181af701540b3be6468b7ba7e63540fdd44d5a63f88719cd0852b0dc1ba7618255a330a691a7546267f45cb044c2ef9b34bcdf2f0633370b2fdd8f729f50733ddecab4477b523f893dde67b8fa9552abc0a4d73cf455ad89b80752bb5b71f29eeff000acc1cd12b74064b45cc9a3862c947dd5b8cab4286a23a70808118b081c37501644ab703a2c260a9c9596237c973618581f6521593ed8b098112e17854bb4cf744e3f977f45050f2ebc0110510ec4c1cab42a149575d27a2c27642ac119a7dd90116187786f903eaa7ff007c3108507f546f65a389dad82351f26ee2aa7686358efb3637f34da549b4d9e568543b0d39aaee6393466554edfda31becd1e56edc2c70e4ae84052e57e062744172ac2a44a71b12a6ee564ed027b76f44e2e8c37475510572ce8893080b5e560b31e89e771b6eb569bad734d70e409c64a8cd5a14faa930e5822f64e0f6bb13b130c82344eed666a79f531f7785aac112519451766568783453339a663fb505ccd5a17f69a629d5c21f30d0364227e12b05423ac70c17d355deb4e1bc8b7028da507507b33611ccd288a830b83b16505371617729988280bc88dd52618993d162c884651cb17d5479935c2c86a9a7272774288cdae1edc1bdb0779470b7b46ff37aa7d1a85955858f1a1e3211952d0b0bc692b653eab6f15e51e2429bae4f04a18b98c058516953eaa51a6e96946bb039938b50bbc8a75bce3228aa941d0e12d54ab0b38076c50e31c6781a5531d367d99db4f099dc2945870b3dd173887910a935a43a5006d2aad778395a2daa2e9b2329cb74d7bf9bca143406c35a340856a5d53a934bae136a32a53ed0cef29919eade18959492789c30a1bcaa2df757fb8c5739282b1361107250d5373c655ceeaeacad330b0ceeb9a4220a07d97767ca3e929b523ba6600351aa7d571ef3eaaf9ad2a1589b2de030e31efc3a29bac5bfb22e176cc645178c529f860ed9a77770309e8540247fa54f830958c7552b47885784469fa88634b9d920f34c8c4ea8eb35817dae2ac6edf8420d6cbacd1a95d9e8d38ecdf68ffe89fda2a97d432e2ac80cd0cc2950678e1522110251d55d4582c625cb08b7007347e0747aaa827139ab3c51ec810af16584ca07210aeb2032f458b29581dfeca5db2b044996a6461800a0d86ac5e508ca8f2e68b9ba2226577ad383cfb7dc06e6b28cbee0363552dc5926d2af4b1f91ae991a755528814fb4455a2f3e769f2cea8b3b5541efebc3913998701b8bf090b4288320e49ed7626e68d4aa5fa94ff9891b276bc3aa0e4f659dccddd0305a51d57cb922114d77987ba8f299543b6d3c15da0ec750bb47652ec4c2fa63e31c6544e708381050f83ea5373ccab5f84663842bf0d93467c6fc2e784a6d4a81af7e06fcc74428be1b55951a6e1cd470b8c4b46bc39842dd4688d0738819d8828d4a6dad1d0a754a6f654bc64507083927b7cb9221a03f80728cf25ab53327d94dda54754d3adf62a9b88c4d6cf50a99f819f4546a8ca0ee15219b9e57666e74f17a95d93b3fd8f666457f8883e557dd6ff921a2956bf80b9d010a6c40ac0e8943b451a945fe622c554a2fa94a626ce5273e165ca7c1653c64abf4523c10a549b2b00b08e8b0b7802ae8010d56bf1c4ecfc3792a2214852d28e4b0b972f5507a2928c4688d27cb44ee153a993834ece54e94778ecd601cb0e626546cb4ab612aeacac5169b226f904ccc1c0edd4e4ec2efc94b6e44eab1e4e829cdb541fcc3c5f5539dd62163645b69fd420494eed1da3bea92298f2367f34ca06a56d732e39fb2eed86bd7e5c5789b05df54ee28bbecdb9f5f0022e84d94e4a33520a215d0c62eb20adc1a5e55bc0636f557b91e88ba4023dd06360fd51c76c9348fc5ba722328c5d162b3972dd0cca055e20a31751935ab1bb9b3586e324d2235453c5c448d1490ad22ce1aa2ebb8c9f14594946238dbc11c31000590c4317935551fd99b8492c04e101540036b92d6c1c3896de23bf0db84a85033437858bd5464b16bc5c3228f073a9f7bd98c3f56ee995beceb72bf282994a9bbb4f6610df899c439aa0de7d428f45b7dccadf840e1215eea02c29cea7decb232869ff645921a73cd4a8aade37419c9532714d68258d89cc716b93a9e7926bb83535deaab50e60496f45518ee575b645f01f4e423bdb6374e191b2722a9f67a7de5770637aafed3daaad63f1ba55ee9ba66ad74078625ca0a9c941b2ef294fc6c43bf711c6ca2dc39781c30aea60f191e3c23aac4e8d14d82972e5508e02b5503840510a15b8dfc3f68a15d7328f4e066cae9b4043ae0aece5e5a2a60d9c7541cde62d9fc8a96e319f1e647ca549dfa2bf9701fc9730910b0f972476ba6bc16968f4469bb2b782109b668b5e442c42428522f9eea0fde53a2de737d93fb59c755b8698c82b616d82a76a95a21994e49fda9de68a4320162793c3740a82af75b20ec931a2e2ea72575ccb994895889b2833e101d054e4b08894315eeb7e2d13010078418508325142a8c25011d1050740847556b8fa2c2fc48976fc21b7cfa7821ab119fbb8e1dd9777803a9385da75f4eaa660b9ad9300f09d38c78215b8cf021d0a78111aa0ef5f44539381523751da7cf8868ed7dd6307b2d7bdac4eabfb353efa81269eaddbc1cd2d519fdfc84ea9521a098ba05c6136857fb404b48841d70a0afb56ed3c092aeb551869bf23af0840f0d69d9cb0bb05510572e267320e45529e6a43d404c1e54f19649db94ed0fb21138a37928f6ca8da6d114e9e5d575bfdc49503c186b7f10840111aebc2384f01efc6d9acf85b8ecad24adb8738536e12ad0a13752be55a28e192e658b394008e389a81cd5ecb0a1652e5756850aea45b8737009f528d4a26e1976f44691837a67369407337c872e12afc18443dc0261a714cb5edd934e53b5d1d14f2b82f849f629aebb0e13d724ea4ee68f6e33d115884ca8cc2244b6e3eee05d3aa8e490342a9b4938313b52561a448692d1a04ca64d3a4c248d5768ed96a861bb35453f048b2204a856431f82dc3740596274a1c7042ef6aa0d80b17a2be5e2830b9cf830ba54e8b13b240e69da5d3ac5d920f19c141bd4ee8358e2e37d211d1caf1a70831a2839fdcc8e32ae9d0183c9b26977d94e5ccb5174e22cb08bf1b782dc3d1596788e6b03d3c8f3b7d0a1372254a053c6c4270f8447a26bace6c26d27869582ab9ae01ccd3d1115c10eb6eb1b705583a21de177677434fc2744ea74dce71c87ea6fc41d4e43b70893cc2fc2e42c6eca4a7b4e0c8ec57c24b716b0a29cad02975f25191c953acc1cc31eca54223341c99545d54a4ee47593bccdb3d5402ed94ec5ccd80839bca56104bb44d1570d3a65ebb51c5ddb431b96e851ecc1fda9c417643558de4c471b5f8e250784093c071c351a765352d97191c078090a34e22614e4b7f042e6e1110103759ca01068e550e958b864b75695af186942d75757ba132aca597cd7e486fc07701d8a49d36e165375b8468f68c778ca4041e7bb7893b8cc22ce5376945878427e400011766a1d22c9b5841174fcd8ff006dd4bb0bdb86d6728e574faa0f6f9910db73468536245b751ebc6cb15b0dd419120abdfee4ea8dcbb5f8552ecec9a8e81b04ea86297201b2ed01d88567876f28b9f88e68172b283c6f65656cd42b78b9962589c8b4420ef55cb652d139a876684c42e51e30e17f109bac2f0064ade28713a2bac2e42a0ebf73845fc65879734d68b1ba80139f641c4ac2ee54e009d14f8375280f5e3a1cd6c53e5bf2eb7c97508e853805cb70a3b4b8b7d535f45af65cc22d7ac162725deb01175882feccfc4cf21fcbf50928e218f24dc310aa3eb38b458045861e210720d3afb265cd592742877dcb9224429cd5a74e185f20dd35ed8ad9ee9b55b2c20f08e12a7808baee09a936eabfb4914e98860373bac6fb0b2a7d86887b9b2720d4eed150bea1e6e33e0962fb4379e07c52ae7f2fb86c7557e3051e13e09728cacb955b8c85055ba70c6f4001ba853c7938dfd38d94e6b74064a071bc70a7429d4150c4b952e4ed341c2e60b7541edc355f276720f6fd9996ff0044587c226653488b8eaa9b585b532546bc873bfe5775ae26ae5380db62a29976258879638c29050bb5dec508b5ff00aabf89a3cc6027bdd2016b349cd52ecacc55dc1bea84c76769b6b2aa768a98aa1bedc66eaeb9278ca8957e16507a78278e0a7d54fa2b8584ca0ea575cd75cd2b13ba296f2f870844fdc5d10ebac42fe196f55cf92d4232a5b717fb89cd4091978a0ee8d66bde326895685080d16285cc5a5617c1f62a49f1470bcf0faa839274f21557e655cb8075bd51ef65daaab4f9d930dcd0aaf638e1cc1f54695470f71d42a9ddf76c7602ec9c0e49f51afa3da27fb452b3a75ea9b51a4384b4a7765af80e59b4efe2bfdc3aa3a18250a6313eeefe8870dd4769f65dfe2d82c248d42186355758d98966add17370c29d49d8a9b8854eac36af2bb74085b29d153a1fa5aad67a95401815842a005aab4f40876d9636cd06df891c711ac2a7d8bb317d4c87e69fdadf2eb3464d1a7193e092a19842bfdc5d737dc470852549b7186786541454a8573b28728b2b70858aea1a7c106ca1720f0c5866a3550afc20a9520a95f142abd99d2d389bf2954bb6526d4a6ecf3e85163a0f8017f556dd35ed316841d9985569b63e1288f86fd5612e8104e60a7461d161304485192c4235584f032afe0b800124e8101f0e3a9f90547b39157b6d4e67652b0cb3b1b63f194faa66a3dce3d4a92aea55d42950d8e23394345b8f15bc232284f2a233502e2c9a6e1755949b2810119b1475e19c2df3fb93394a7d47f94fd116379414ff0094a7fca53fe529db228ea105cf61f773e1c4e01775d91ed7d8bdbe10d388ac4541b2c571e2b70bf80b1f880921079e7cd36a303c118e6e15959806eaab6a9154f249c2a7cc39748d13d9dba90aee0ea6ee49398585c41c952ad1de3418c97763bda62c33fbc351d010a74dad116d574fa21f894fc4e443b092a9f6b17385e17f66a780383c132548efe90cbcc1468a4ab4052b96ca0297590888403419f64e9b582ed2c6c53ab03f85768adfa4acf3eeab811debe3a9539ad97d96c4ac2152ececc753e89fda6a4bacdd07821be081c5da29d0f13af0d1429fb93c207100a278cf0b4f09b95658ae506885255d5b8c3564d5038dc466a33cd5b85e16108a92b137a8e36e175cb657bdd4b4c7b856cd777da0d07461ab97aad0b65418e108fbaaacc8aef7cfe6dc22440faaaf9829e584399242745c4b7fa21f09be80a61397b6cb3c2afd56ea78870e6faac2eb649d532b33e64c637034c0d6551ece08ecb152a7cda2abdaea63ace93fd38dee869f9a932a4d91539956e30a6108b7de48473e3645f60a0c0551d934aa93e5715566301fa2a9f21559ee8eeddf45daff0072576c77ece176a39e11eeaa7c555a99f1562bb28ccb8aec6dfd9cfaaecccca8b5526e5499f44df94269d1346838029873548e8a8ea1767f95503a2a7f086fb84cd6834fa15d9be2a65abb19f8e1507f92ba7fc1547baed43cae63976d67eca7d1769a7e6a2ffa27b7ccd23dbc25d922d32335da18f6df17aa22a12eccdf8f3142a36e8b5428c94e6a0f8f7e3f4e12de10f68f8a53aa39d51b90d365b1829a0489c4a9f6dec8d2c7e37b443a734088283985aeb82bb8afca0e0d3eef0306fc21754eef2c6cb1659ac598ba6e2b8bab412a9768e7a2e6d277e4aa763edcd7d51898356b4aa47edbb23b06a58eb2c9a2e7a2304bdcd68ea5413800f74f73a404f12200eb0a420a384708ba2f77289299d8e909e676db94fa8efb4749372b55d11527c1b70f75b9406423c4467c01423ee0c7835f0622a2cacb14355ee38d96aac38e2581ca5f75895b8c1eaa4f085cd2829b8e160ee36e3cc8661612a40bdd163c1061c0afed147ed0dc204d902145f4f01689694e0ee571581d7baa6e6cb6a5d46a0fa2d54e5ec7802d99bf09508506924fb6e9fdaa5d584374603fd51ec314e919aa47b3554a84973bcd9abdd34140f0136564561281e16f07281e18e22d0650f7e13c1cdb8b85893ea7969977b2ed3523ec881d556f8aa35a80f357fa054687e23d5346886c820b0fdf9a7dae950a6039ce37e89a1d8710c5b2196be263bccd0553664d85b155a91b64a7f481537f95e135de66b4fb2ecd53cf4187d97627feccb7d0aa47f4559cdf55da59fa3731e176ba1e7a2f1ec8ea134d618b14e8026d57b5ec187970969dc70fc9348bae6202b5d023fdd42e5463a719f045c64a78458abaa4e01f431019398e392b80573b4ea9d46836a61c58dbccddf62afcd741c60026744fecf5055ece4b2a0db554fb500e3f675b22dd1626c8cd0aa2f74ea75a298e5392aa5f870a345d84f8e5d2725a85d7842690a0e6ad9a2a561b1cd176fee81cd362ca9bba203e10e0a072a80cdfc32a4a9b043b3b0b2819a9abb64e73f13c927aa952b9fa218561f05f6451c667c1067c45be2b7dde017d54958bccb9b9784782fc6dc20a950aca1aa4a136e1881e9c313447101b10a428282e6e1ab5625ba910ac8d17742a46c511ff00845be9b7020468838958f380ee8b09cd59019a83d1431b6049b83aac15762b9a743b223a852e858560a64812741ba7f6ced0eab56700374cecd41cf301ac09d5ebbea3b371947bb571c6dc6067c36575cbf76fc33a70944e4139df09053dde7780a8d21cce2e5d95865b49a9a3cb6fbc28f028a3e18578eccf22333ba7f7fde924bf7550f6d15f089168587b4768ac3112e6f2f44f7762a6eaa4971dfee69d4d309e8aa34da0855e97e26ec5621b1f0d0acd2da949841e8bb2b27ba6e127f24e6d26b983116eb1a2aaf0486db85e0648828e1850b11b2bc39405b70bab7861dc25405349863231c2ab1ee0e82c6f9421da5954d21dd90670a70b8e54ea91cc02a6eed51539399548fb5b39afc2b9a5a6dfd15ae80371758a863198f14ac2de10784882a1070d91162650d4fd51379b286e92aca5470c375376ac744ee3c4560fb3a67f88856e64005d1492a4f4f10224a062562e38548e365ca8c7dd5b84a033e2506d23b9e3217320ee215cae6f0d94044bba2810ac57d10f452a1ca1cb9961ea15d5d43b8831e1972b41cf84526d279e71e5ea14cc5bf0ab4b54f2917401bdc261c25b9ab908925d23d106f2bb987541e24084e06f92336588f3668cf9a365224589cf653d0a651135086b53ab542f0f0ca2d3e7d7d93594c1602ca4df2347c7eaabf69fd3542e1b70d135c9b685391506ebac857e9e1967a7dc41e274284f32633200a272b7ea67c70a87f6770a65d88f2dbc14e8bcbaad3ef761365dabb5bcd7abc94326b00b7de0d96c61386667c4c7882131f268ba0aa9d9a4546945d9270cda510c0e430852675e37e1caaea2fe0911af196c70c7da0ff08b29a4e70f30b94dc3df5388f887fba739dd519bfe6aad263583cc3e2e9b2734c543ca77d14183c3151730e4b0bc8f0cba4f191c655f862301351191faadd6139ab5f80764885c8e9dbc25ce429523055d5f89c943783b1d9668ebc344d841b90e32ecd61e36e119212868a02947c7653c352a14f11817342c0e53c1c32506e844f8a0a26cacac811d780c5cd92c278823996dc718ebc20f09f141cd1ed558b1ef87c4c95507fe1381b883c4b51795895380d39a6df0201ca5c611c313608b35b6c532950a8f23ca2556ed95315675b647b4546d3a22c9f44536d5a81d6c81f2ae68197559f091192bd944141c6d9a22c54786eb450780d0f02720ab3b2a6efa2ed1fb97fd3c1008cc158cce8a16c9ed12e6380f4f03ce4138e7c021c2514e44a3afdd547f66a828e1c646a9f4ea165405ae1a1f000f6e26e21a84da9d8a91a74cd36c794fead4ebb0b6a3410b0973bb3badf2955a91e60427156f1cf860a8e3cc53bb96d5c3ca47990a6454c18f0fc27554bb6b1cdc380fc4c3b27767af86ff0084ee8b8c2a8f82d161aaef23d2e534b5d3388663640fa29469f6833af8703471015f8152805cc775cbc6d072434b27b7a84d3ac14ecf3588105163a13a32589fd16236429e4a4a2d3e0d7c77fb9bcab2047551e00b4f1d95d43549f0da512f1c2fc21c0a91e2cd4269bcdd5bc18db073d3c50a0a82b9bee7b9ed0c79c82200f8987272c4d9f3b7643cd4b2d95f84890b2408589865d0422690a8dbee8f0767a6ebbe77774fc835dd62ce64e4d024b932850a54c370d56c978589dcc868a78470b7077aa93ccb28f097e41567ddb4caed557e18550f9df0bb3d3f3f315d9e979693535b9342e9c06a89365f32d96ea325529883cc3aa6bbf66d94d39d367d10d29b53b44e29ca7c0104340780c7001f55d575fc97aa7feeff0035d0f869d4fd25363bd42ecfff00e9e8ff00a150fdc51ff40547f734bfd0130654d83f94788700820821bfdeb5de600aecf5f2180f45996d65da5b90c49f48c3da4782ea23507842b78b64e6f606b1f626e17316eca883cc0537130d2355fda5ac7f7981acf308fcd55639c63585869968d16122d08daab6ef6fe6101440c25bd26502137b45123e2458e20f1c4f9d3c32384700afca110aea784e49cdea10392c2a73ba00dd35c2cbbb44d82b28703a2cd6228aba803eff000956539abdbc11e3ba610b02136f072cf083c2fe096a96947c53c3955969e1dbc392968f0dd02d96151c4b2586f4ce613a93886a734cb6ca6eaea1a9911af0f36e9ed1cae45cdc5b2ba34a8f74d3ccf174eaf41cf603c925c4e509f4fc8e2df445d388c9f0ec8eca2c5688e68380badf2e04e41768af936028bd72bb352c989adc9a3c7758ca0dc87001060971b26d5710dd3813ba2743e01ba6fcc133e60b1644fd1098ff0065f882c599fa22d6db11e9289cc7e6ba20332d1ee999e36fd535d71053182e503f0ba374d4d1e5b943f0fa261133098cccfd107365aa9b0c1374d764efaafc417540ce7f45137e187cc400999778de12af1c0eeb7364d1ab63d50f9821bf007c07ee29d66c54682176677925a9c3f47527d5769a6df21f64f8e6690b428e2bf830ad9128c58a8a80e68d5a07bbf31b85271cc1758f429cd24bbccbb430b0b2a5da9c63bf01da18b2c9cd42a30f54e8226eb136ea0f0c5ccdcd3c0c9173a16011c6e84e4a16bc2148cd61f0ec8a9c9458dd1dec805ec9da850dc9594a10a325ca616113aac8719fb8852159485aab75f0c29e23c016158bcde0b2b470ba1175b2ba9e3192b7dc58ac4614140e661471b7de6ca9d4696bedb3b629f45d86a360e7c0b722856a4ca6f3f6a2d7d5537b2f8ec61348fb22a32e0142c4f84599e49ad65bcc9f85c69d297b8c3536a1ef3b5bb13b3234f729d5b150a10decc320d19f090780e116392db34354311574f798682bb4d5f8213cb7ed4aece33baecd472604d68e511f7537392e96402db854ed0de56fa1469026a3e5c7654dbf0dfaa6b7ff000ba14ff8401fc49c73abf421539bba7d5e811602106dcc0f46aa7b1ff420d9336547e677d1767f9cfd1527655021bf167ca3e8a99f80268f28853a2e8429f3e2faa60d3f34cc9306a9a0f98859c190a66c67d15b24d1a0f40a6f7badff00aa07558a227d9c9e4fe8efba7104809f17256ee33eaa37faf109a744c0710907a269325ef947f7affaaa9fbd3f45547c6df70ab0c834fbaa8df352286c53130eaa9fcc134e447dc51ae22a30154892693a3a2ed01f6b85da5bfb227d13d8de6642dcc20eb221430225e8d5a41c1d04e8aaf66ad81d2c70d0afed5d949a718f3b2a844b587164b0bb0bda5ae1a150fca251fec7449be62507596174eab03fa20f1216152a44426b56dc2ca475e12a3888f095b2283bd5168e881d210d47033d147556f040819ae585af0b29bcc056f05d130a14b538782478214fdeedc76e39ae79f072d94291fac5d4e4a091c09ecaea35007b07927e1f444b31b41c3313d54707e22c925c44ca8e68ba69e768f54c78b72bff00aa2134b48722c329b84b5e2421de16d36fb95fb5adcc7409f56b16bac05b0f1c214e4a34e076553e52abd4f2b0aed4ef8545eb954288e5604065f7d8745395ca77c50df52a9fc557e8bb277c19458e7fe24da7da1d5998e5d9b5ceb291707d8a3f08fa994f3b2a93e623d1557798e21d42c43f474fd9a89c98ab3320e0aa93726539b124b4faa39bde63a39374adf92b79d8efe5409ffc2eaa355d50dc20df8bf342625d1d1170c25ef0378583e271ea53b644ec9f982d40bf090a32a8f50e12fa97e8844e37595a5b58c7a27b2fde5bf8555118882be713e85531a3c7b2a76c2f84dcbbd5d57a2e9c3a2b713bf00af99477e077467a20744d6e883bca60faa33985b3a3f24f9b552df755c65567d576b6aae05e8a8f35272a47390a93b2784ddd0e149fe6605d9aa689a7f46e55e9f979976a0d23bb2abb2ef615500874db24f752a7db1a270f2d41fd0a6b1ecbf23bf25cbded1b11794eed158552c886c22e704d1d969b1de6688308d0aa09f29d42152970c3e8bbc6add45b8cf0babf870e6acadc4f0bad91d534e682d975bab64861f0cd943789c507251c400a4a8509c0e489ff008584dd1808cdd10adf7e07990c59289e168f072a8e123c16fd642133c3ed151a351fde87776f10e6e857d99adffc73856a5996fc4d5ccbb9ed74ea33ca4c22d243842babac404ac2f4e7363446951e51cc6c156a8ef2397683cd4e67e19f87ff002ab3aee75d3fe6447c49e4f993a7cc9bf1397676e775d999f005447c0131be568fd4a8b72a73d4a26cd3807e00a7ff002bbd6e0331d153bf2c0da569223d5756afc6c1ee9bfbc6fb26e99a70c837e89f1e567b04ed58d28c6507d53f3d53ff000fd14e708119a037e0f1900a73027a21aa6cd826858bcae1e8561b39a9b8a22c88762638b7a273492403e8816e4e9e8bbb7076328389233eab66ac7938820ae5762063d10c270b642396456588077aa2dbb182e83ee5a5a7a14df97f240e91e8be57b9561e57aaed372aacfc3eeaae45a0750aa0b77728eb49dea1347998e1eca9bb275f64d98d553f9c261c9cdfaa9f184d411d1c9fb856ba1197e499b7e49872e07e68f74ef991476476e0c39854b609a011a1d1523fa1e56ecbb4763a780fdb53d8e610aa1ddc9c38bf2552812f21a5df2abdc42cd8ec91a0fc0fc97d0a8458ee8af65891081f0c7a709575b956e00a8f14a85eea0e50b6571c4bf95b99584f77aa00cccf83995ae84ccdd12549b9b28474445cf090b94ee89175f547ee869e03b2aa410d61fa2af13dd3fe8aab2cea67e8ab1f81df44f8f23be89ed3ccc70f6466e213745a782f65bab594f867ee4475fb9cb0a9055b8dc14714b45d3cfc2556679710552bdeab25df345d56ac63cbd48554d16877987baaba84f3994352a9837baa6dc9aa9b8c9684c6e4d1fac8f9821ba68d53374df54064d47a23d11451ea8fcae43561faaa7ab4fb1547fea054f47bbdc2fc48a8d130e72869e29e83aa73462e477ba3f2fd138270199853a0f545b01f7099523bba987d5571ace158e65ad2503060cac30666744c70ca0faab1b9ff005271888faaa932086fb2affbdfc954d6b0faa7b8dab4a370ea84843437ea5094d9b170f4289167541ee8fef1cef5552ff68c3ec9e23f4456e07b282035b8bf9931f77d3ba68f2a39163d7fd369f56c26cc77774464d7ff00a91ffaa8fcdff6af4fa23b7e68ecb70531b9e2ff004aa5fbcfc933f78d4df9c261301e27d7c23609a7e141b90e3d10d9039184edd386aaaca78f33537e2042a4f549e135e33baa8c6e0a971a2c025d684d709619e1054dc2badd69e183e290a14abf08c8adf842273e1cdc4765a53fb570b745f11f09925755644291e03881e19f0c5e8aca0dbc2e3934aacfca995dac480d89dd5679b9081fd2545d99be6739cbb137f653eabb20ca835506e54983d9531931bf44364c766d09a3e1099f284c766c6fd150779a937e8bb2541e4c3e8b5a35beabb549c305769a1fa461f6553214ddf45507ecdff4557563fe8aa37e177d154f94aa83e13f4557f76efa2a9f29fa2adfbb77d156fddbbe8ab7eeddf455bf76efa2adfbb77d156fddbbe8ab7ee9df4557f76efa2abfbb77d13fe529df294ef94aaa72a6efa2affba77d17693fb172ed3fba72ed4eca93976c3fb35dab50bb44f32a83e24757aa43cc65766f95766f957676654c2a43e00a9fca153f94268c80fd5c6ea9b45caa71657b5272e8d1ea513939bed7551dabbd9aaa7fd43ef09fafe6e47768f65f88a69cefea537e51f4e0d1f17848d1bf453c0f808f093a2ea147101c0900854ebe1eedd80ec55564dbfd29f9127dd3e7309df2add8847942683a0298ed47aa0d3fa4646d29bf37fda88ca3e8aabb262af0aa4f3b1a5070f235370b71016b201ca07083626781918408d50f942e9c41cc71e91f73d101905d13732d54cfc25533a3826b5dcaf704f23f498bd554f5f42aa9c8b9aabb41ccaa9f2b87b23f12e8bf0a074299ab934e4e1c2380d93519b427b374f03cd7ea9f3a14df8c2ecfa42a4e39a9f29955186e2423938422d765c278d948e11f7f7e0293a70873b49c93abbb1d4327c30b9515caad95d3b5f1620a33cf85d778154abe5a453cf9dd0a8b73972a4df2d26a03408b8d90d5359e51f7210f14e89bb04dd826ec130e6d0a9fc8133e5099b054fe509bb04dd826ec137609bb04dd826ec133e50a9fca152fddb7e8a87ee9bf45447ecdbf44c193421b0410dbf5c01346a9bd7e8a74723b27744fd04fa0559d935cab9ffda79f33821abbe813352e3eea97cb3ea9832637e9facf54465c08cb814e8bdf8bdacbb8c27b9de628cde0fb2bf94219dd364e70aff1293ce1529133f54cc8428d40f409ce3ac7aafc23ea9dba737ff6ab936a623aa31e4ba3e1e88f447f55082baea57aaea8e88a83905ac21791086778e8ad38dc9df3fe488cc029df2add0d1072a673013742423f37e49db029c3429d3ac2ddb298ef84fb21f0921102ce05549b0557e429c2c41e36f05beeadc0961768bbab3fce6f1b2810149f04852de64d07c0267c009e05c9c5307984a68c9a3812ba2714d6e79f8c0cca66e875fef300e69bf304ddd6c1c548f290ba229c7ff49c8f5e010e03f5570b3584f54e2d05c20a8f1cc69f7a5c61a0958190e895d02d62cb15ef28df34660108f458bf68b0ba667c21346c868094f39353ba23aa6ea50fee51c37401c90275402c47cc4236974851c0c798a70b4fd42a806851d58b7a2e54f50e1eca89f8952d2a7e6a7c952dea9d9072391682987f6655323f46efaad9caa2aa0652aafc851198fb9b426365eeb9d10a7e412fd360a6ee373994058202ea7c1f0a81f711927be0bac13582c38b8e8b740203ee5bf28feeb68f882a63e30a9ee9ba35c51d2994ff0095a3dd3be66271f8cfb3539dfbd29c7e077bb91f9189dbb07b23fbc3ec86a5df54dd90dbeecfea43eff7e0466c5f851b72ab793f34066217ff004238a448eb28e1e7763f557be13ecbf0a6df15ba2c2791cefa269cc3bea99f0b8a8f3420334d3f17801f31fcd5269891299a21b153a15b351f9515d57e25d7fbc86c987e10a99f842a7b1faa1bbbeab67b93864ffc938eacfa231e562ffa63d9cbfe99faa645e9bfe8bb3999a7ff006aec87485d8f7fcd765393ff0035d988b172ecfd7eaa97c2e216cfb2ff00a89da5781e8a6e6b9fa26fff00a8fc937ffd4fe48e1e4ed0d2576a6086b415dae3f46bb67eed76bfddaed7fba5daff0076bb5feed76bfddaed9a535db01f2aed7fbb5daff76bb49f3084ca572e9287cc9bf314c09adc87f7337e61f54cf99aa8fcea8fcca8ee7e8a9754cf94a67ca87c88fc349caa9ca815da0fec5769d983dd55d6ad309daf696207f6ef77a041dfbf7227f6353dcaa87f64c1ee9fff004c7b276aff00a04357bcaa7d4fbaa7f204d1901fddc1026cb0f123244f444ebc0ee8efc0a29ce8b8ba0c110d25033a1539bb993b23fd51112db2977fca6fe108cd9b3e89c7533f44d104e19437e046509c7a7a2ba1174104029d3c01755d53bfbf8744c3f08fa2a5f204cffe943e67fd519b54727fce3e8aa0f9555fc3f5552323ec554ffa9f40aa0d4fff00eb4f03e0f7053e7cb4ff00d49d17a47d9eb76561ee9bff00547b267ef1dfe954ff007ff926fefd9f453955a69ff3d3553fe9a7eccfaa7fcadfaaa93fa31f54ff00ddfe69dfbafcd1fdc9faa8ca8bd1fdc391fddade9a66a1c0aa5d551f99523f1aa672785e9fa8f54c19bdbf5547f78d547e6fc93624072681a7d501960faaaa7c8d9fe55dadda6155cf9bb406af9bb5d9767d7b438aecfa0acef454b4ecf58adbb23ffd49fa764fab955fff004cc1eeab7eea8855f6a23d9768f9a98f65da3f7c3e8ab1cfb49fa23f1768a899abea3bdd50f94fd5501fb26aa632a6dfa2e83ef8feb076fbe3c4264f318d9362c7c3b716cffca6ea983e6f6084d81f729ec6e10d691e88933853cfc30b0805a27d541bc0470f99d3b23a9014d81c47a27982e67d4a117105531a262d954c732b723efa3fb83aff00750d84267ca137442755d4a1b03ec99b09f44c4dd4af95eaa7ceaacf9815da34a817691f12ed50abc155f723dd57cf1cfbaed20d883eebb56ac9f655f5a67e8aa7ca7fd08ea07fa537e567a21a31abf084368f75b131eabfeb277ef1543fb455bd5561f07fdaaafcbf92ab1fa31f45588fd1fe4aa9cb02aa72734fb2ad1e66aa9fbcfa04fdeaa79f307ffa93f567fa9c88cdd459ee99ff00ea19fcad94df9ebbff008589bffe9eb3bf89d08e9d9a90fe274aada772df462aa7cdda1ffca2137e273ddeae547e454c64c1f4406407f7074f0802e602a2df8a7d1521907154dfe60e6aa753caf07c43f506a6a1e13e3e6e17f3268dcfa2768211c50fbaa62d242668d74aff00a6d553611d111906fd53a64b87d540996c269321a27a043568f744eb846cd402081e9e8ad68f75864972601cc7f254dfe5fe882120004fa70e9f7810ff000b947a2dc356b819ec8e8c476847aa71886d33ea15339b6983e89b8b367d10fc30b62d519e056c813d1e8037907f89444073bf993da7f43ff72a841fb11e85c9ce121a47f3271ce47f32dbfaa8f843bdd54d1f4dbe8c4ef8abbbd826eb52a9f754468ef772a1ab1bfd5526f958d1fcaa3208fcbf9a76c1751f553b7d57a2eabaa087de15d788fd51949a4e7e89cfce3e9c27450cb3afa84510435ee91e11b28fd70a2335b047e2407ed4310996bb195506964750df76a1fbb6a2d3f226eaf43423e8990713be8151033fc953f843c9e88d417c51d500f19b90f44df99313740b667d54e6141c96e0703fe10e9e0ebe03a0f175e2742514750ba719cd40b59147883985d1672ba21b04068dfa26ce43e8874410f957e1e0639627aaa9f813b71f4457a78ba21b0f00410f00391f0745e898758bc2eb64c618b976c10a84816233054ba2e98c1cc4054f0e204426b818d1539893f45503e48187d613e3eca3d53600a9cafd5330cb5cc3eeab38f27771eb29ed9efe3a4265430d37e0d76444a00c4842626e834137549cf8b8f5410a4d92afca162cede885e048d55171805c0ed29a0daa34fb225ee05f0d026daa79134c87fa66aa37cd4deb1096ff00a4ac7c80e1add7545ad7f7df0a0e122ffa90f17543889cd52ea9bf034fba947e1cbd55ae548b1b7aab0b05874fa2c4334e16c4118d65039a68f84941de66267ca87ca1464214ddd753904da8dd9c80d5047fc8781250709064719e26d848f7429f9b24d7dae0fa26812fc4df550339542a3b98e22362800dee1f87758198a7d8a9c4e79e54d3f094c740b854dc2270a70c803e8539aef8ad984319c0d675c4e4d239bb94ee773002c70df5550118e85934020b67a26340c0dbedb20e10e0e6fa2655e6a6f1eeaa509e5b215b95d45ae0b1b458b47f0e4b9a69546b874b15ca441876fa22caa3103192aacb16894ec59327f85633f68c6b8211710aab5e062e4cc10811ccd6bcee4219606a3320c2698ef1ac23d153ab3dcb883f2942959f49cf77e4b0795b809cec9d6c4d2b222510662eaa34462faa38f1be237c29b57ac6e86da441cd1a75669d50d1f2b96131569ba9fe2d13f0fd9d420aaac20556f27cc3f519e03c64e8b7520dec1445e27a2dce4b26b6d29c4c7e68832540b2d6c86e103f1053a95b0462fc6cb6b27b5d20ac62ea148b2703777f8c3a7df04d391e1a26b5d84a9107241a03405cd27faa82e264ceea1b021bc2373d02c5f0399fc49acdc9d93dc7409f6c20045ecc4e3d30a6b1b88e5eaa5df6751ad3f8d3c4e270a9d5b74de66063cc669ce361c9a59522e8ab4dad398422fcaddb45839a647a28b61327a21928f3b9adfcd62679f18dc6615421dce1eccb944943338e36301536badc87f8a554713861e3a1ff006549c1bde1389bd131d0ea4708d7120da7883e6370b0faa25fe6b26df08006c116f9490b1887804fd106365ae2d3a5d38d3ccfaaa46986b9b7dd343f0358d70dcac0e20883c44617b67a8cd32a5332706c9ec7e170ba2783830346411f2d432349d174ba04f00ad1a21dd9691eeb1462f36e81e5a83134a345e5a39a9ec537072797e53a213922de59e4db6f45529c632d2ddd1e1b2ed18b080c1f5555bfa4eedc3f0a7b81c2f0cd83844aed14cc3891ea9e3cc1a541fb46fba39cb70a7373e61a40fbb129ad1900b5711083ed825dbadd9f9abf908f74757610a371d4ad31153f3207394d099acc2a51ca9a321c2f1e01fe4104361c0fc31eeadcdfd173e2b7b84eb43c0f641b1671fe16a86e2759bd50718689eb09b4cf34c919029b9167fdc9951c0537d407d157c4e0e65f432ab16d860a8ab622d2d9fe544c7ff8fcdeb088658f74ed46294e16ef5bd2420486bea303bf850172e18f7c0af0da981daf2a15b9bbcfb41690a9fabdb95b24f6d523017039a6c40058dfe2557f66440d154caab390e69e3f472c8e929f1111d484e91002a9fb3735bea2519973e4fa260b9309953232981b0eb8eaa87c9f9aa0c90d666bb383fa367d1767fdd8543f77f42a9b7cac75950b9fb5050709a7527a108eaf0aae28696fb184e780ca94c18d415566305f7288b1e2da8c6b1fcae1e570fe89d243bcc38ca9f15962c23ea9b52251a6ee423dd5b9842ba9610ecb55dd0e516e883b983aeafcd968f0aa8f31611f305cbcd06c99861d8a3eaa94610e046c4a388c34b1df2bb2288385e20ec56020b6cbbdf85c7f854b715331f70546699f37e4bdd18c93dc7a6e853b6227d952f8b11f554f1799df44c0395b88f5550e4d84f6f99a845c26d4191087ca80d0f00e5197ddc66837ca31754c0db365c98f6c9105350ff17601cad2e76cba42ba93aacc8bf456e6b1da786d0b74d2a8b1d0533e477ba7d47d9800dd43be04ef9bf2514ecc73b480bbca7e52dfe209a5dcc5cef7547149639ca8b6cd632762b0ce12c0d1a4649a72bf5589f23b43c8da54449283c6021c420c3c81bf4561f104c65dac68dd39d05a4a761d31219c0940c4e881106e364d6f9401c6753f557cd16aea51d1c88759d84756a9b591c8b7dc26307da0234c931cec54a094467081cd7d3a202d37ea83ecea7899bb4e49872765b1baab8e5a0398893b20f716990778855da6ef155bae8551a8ec4658efc3aa8f2d533b39aaa53cc48dc7093f75aa1881d0858a943b970eab10e7c2efc417d17eefcdb14660b483d541b7b3553792701613d6139820927aa6b418c41a7e19b2c0c8125079c32df74d2cbbe00f99551025af66c507b7cb2371985529e7040d954f3069f65523ed012df9bc44e883734726a2e3cee853a884ca66ff00d534643f245c63bafcd56bf231a9e7ccf086e9ba67d55e33f440ea11d895807fb2e9c2d6cd5569b302a96c549107f476423caefa26ea084213a6ff0090e1d3c0340b1666dd13064d43e51fac05d4783d5752baff0081c0126c15339381f4f08d4a1e0703e4ff00b9557d5f306c68a49bfd0a2d160abe8f67a61587cf24ea40b22efd1d2fa955c99735ad1b04726cfaaa5e7aadb6f2ad0d30853fd24c2638cd9d1d724d24965f7ba1a1c3e8610a63cfef329bff00db4a0e1c9524fca50a707ba02faaa6072d373676baca395df8d398203da06e4a1118f1bfe60d55ef181c74558c77829c74284ca8ca3c437401bc47aa940abe683c799c3d0a7003e2f544fe91a00dd49387137a8364e033923e656021d09ae0644a6b2e18ff00e509841e5c5d35407c4583f1a0e167077f0ac6d8c8e853999b8b91897363faa3519fa43eb17550121d4b2d774e73472b7aa7b6317fe17360ce774d734b5a6a0ddbf2a34c09c4ed0b936a6b1b1dd3a9bb0bc41455f8dade2e54d7bece00ea342b0ddb0df4ba77799630738517c52dea119b19e898f17c5f4401c0438db552ce430f1684f23cc5aed8a939f36ad53e7c31f842708821ecf95c17da1db443d3a85879bbc207d549c41d1b42ab3381e0eed721ba27251e629a3293e8a0f237ea8ea54893f9ab0c39a71f3b91d01f74e9ce1119ca226ca72475c945866aa13215419bbd93e6494004d9e6364c3e4a8274443b99dcc8ebf928ce55f91d74f1bca2df54367391fdda762b084751e01c0f1f5e1d3c07647c07aa3fe12b5afe2b20ff00d2f30d2724064d0385cdec137e1cf35756e001b90a41ff009510d1c3a2d614bc17bdfd06415c80d7fb0581931e92177ad27cbd374d7439c3e86563b51bb86ebb43c58068fc49c1bf6f85c74c29c5ff00a0e4d8a0e905b81db3b2288602e180eedbaed16c35641dc2739c313f08e8131b4f0b9ce2df45d943b9499eaa8bac2fec85c0c43d17574755419e7eed52a8791b96b1c37e235b293aa124099449e88de2ff009a717497bdbd147c4ef6084799a46ba23a1fa28d8a1d1464177839791ff882acd27bd1de33a26e19e6f65de301a551388fb56b87e2a67244986d66d46fa4151e780774d2d8cdbf5581c1c1dee3fe1603f68411e9745e669bf15bc8335fb9c41fab51009aa0348d90c39c62d561871797116909ad38608c4b0b4e65bd744eb16b803aa38a4136cc270e526da2655fb3a87a82800e869696fe6a4c01745b7abcbd352a9d4fd1e26bb6370bebe08e16528e7ecaa795a49d93f146b1915cf848e52980b862ff00527443493d0af2f7821c3e9f559f340cd36a79731f115525d0193fd53b08319677430e275c6448d15f15813a839a2d19620765483b0c84e041c5643a21a157401f3231aa26cdb7aa68f35d5376aa3ca0224db14a3176958f4f751c244268c8280ba4703861b9a71f32ea837cce27a2a539382a7aaa63284d07294c5cdc94ec9da313f500f48551df2b53bf0a77afbadffaaf45d575f06e8701fe19b5b356be7c211d9145e229bf0fe209edfdb38faa7fc0cc5d53cd8e610be20e80338541ad8618275c28bf98768791e90acb64f9c4fabcbb35623f69ddc0df3545a4e00e24ec145cb3037aa150f202aa344d5777607cb7589d60e93f3146c1d74e05ae9b1fc5109a4fda557df406cb01fb31ca32e7cd1bbaf7fc90c53ded33d1b9a35640a78c750bece3f47ee991cc4b88d85d3627ba7877e24e65c52a40faa73a08a6676c50ab97f28c2cf544b62b4263320d1e81423ac2c4087dc2a337a6994843006f09c82ea10dc02a0dc39dfca9fa7247ccc4f2e87e2c3bb5abe76977a04c7341223d55304c1fcd48b7e4a7ccdb2a81bf6387d0aa8d8ef0611e92a7c80c740888b88dd07e639b4baa61ee0d201f54d7b8e589015267d91999ff0074c02f4837d110df3fd42f8a906624fcaa5074a696c1682364dcdac6ff00457e6248d8e6a2d98eab6c96cba950dcc95f851ef24729d46eb29441c4d0838b7f3582cf6b0039382c2f22fe8a4e4a6a3b841e20a70131645de504fb27e669fd55a0d5683b3724f6b5a0e732880eb0929b5580fc636469096921bd13db6c7f545f188ac3e898f1683eaa1d8f509aca92322ae6240d35586e05ba263dd9481d1735dd21006d29c7211e889cd1d33dd75943dd3466e6a68f2367a95f68311fc90896d458adde02b036ef0026bc487ca60cdc153393c263bcae43d1056d10f9826e851f871aa9a3401d53b577e489d5df458b577bf07373023aa701f0a76a4fd11267bc5cc1b720aea504df950dbc5eaba943aa080d3fc320799c0271bb1e302a8e772540064aa17016908473b8041824be29e90981de79f654ce6eb2a4079d32a34c388f6430f237bc3d5caac795ad9d30caa82d53b4b4740153aa017d72e11bc2a2eb12e0ede5512486cb9c3ad9546ddf8594fa154c729878d6ca935b2247e00b1381eedbfd50ac5d8395c8c882dc5f8c2c679b9a747e4898c34191f168a989c55c31db874a18bec8d4aa7241a395ad0ef9511864fd1553e56b7fff0022ac69c1aad0edda1546e75f17473518b96aff00eca25d93510ebb4fd538bacd70f75b86a37ce3aaa9b89e8157176b7ea83e462687fa270cde654809d390faa6130f64a8fe1da211c521bf9a379b7aa7537cb8b9f3a0c93d84fd908de117d30435aef454aa3ff46e613aa77c3509fe20ad7c6d23f34c82e666aab9dc9507f094e6b62ab047aa1de18681220381ba7b5f184ac9ceb3a217bfaf0eb75a1081f5e8b7faa2ebb0a77c50165f911a225f85cdbc217fe8ad6328c6c7444ce13744fe9800a3513d75408b4283ebf9211610bcad75c1b1942e5ae3d255463b381aecb1971a4413f2a70b3ac76e3ddb41f88a76cd8ead54b173536b7ab552c36e61b80b1c5888d1420f185dfca78163e5b62855cdc18fd6d9a63844b43fa234df0e5254d2b18ba16c4209ce4206ce31d0a917208f44fa727f483a224f344e92153c9d11a10a334c66bf444f953ddafd3c273057cc9ac1cb8949440ccaf9935a775de3b95b85ba0553bb02c9c4a79553e6553e7fc93be75199253502332161b6240eaa7e2432ba1d0a1f00ba7b1d7bac791becba2e9fab7aa9df87547fc060782b0f2e47609f39dd557fed177605e6755cb0601f45cb7267a593310fb478f6430e26383c0cd1340875d8464ad1803c6d9270923cbd53ea0ca155d1b1eebb4521030e1ddc98c0497d4ff64da90e6be01f84aa6d8c400190181188a6e0d0354f86c02465894e59ee44aacec4ca8641cae8b6a9ef2040c82a355cde7e6da225566c6123f858155c53cbde1f98aab10fae4126f842a6dbbea3dc324c0c0e00007f0ad430bc681a14890dc29ba86ca8b0799d79b2500c5cecb9c37bbf585199ba99f2faa045ac9ad7f2e22e4e0df237bbea7253862637d1384deae23a4a7867c7e89913dd9c5d2e9ee121a59fc4502f6d4be209d82d8bf942be2c357ea131a62ae2694c02f564261bc5d3b1f9e3dacadcc07b218bca3d4150f06c06d85670f2fd6ea6e1d7fe240b798e1beaaffeeaa0f95c345ca3135cdf6958eed7e5d14c8400802ca3d10dd55aad17c1d6110c87be7aad1df54e8e48c5b225a4386170d10f2cfd51f2dd3e70bda7a15abac7744488c90f301eab9b3b2cd8e2535ad36d6ea062a731b2967a2b4208ba95ae7a1cd07e773b1548bbe2db3c936a4733ad911751fb4fab554c430e123e79b27d47637bc4740a91901b3ea551a630be8c9f485dd90fa5e5766c430f78cf2edb70972739ce230e794ac261c2fc25174cabaa6c1705dbac261b769d1cb2eeaa44660a8388b9a987cae6e2f443caf6370f40a9cb8d32e67426c56e4f12b7282da53b64ed539da47a95b94c6b798a6910d619dd39d736f554db9994d90065e880b4a1bf80bb329d3cc654f06a1b429dd10e902562cdbc632b23d3f51bf83aa3c3a711e11fa9147fb80ea3eeeab8f2d3b6eeb2a9f1c7b23fb305c77d1549bd41e81769366b2db2aee6454868cfaa6cc473e98d07b7f445aefc365cc053a64937ba7b419a6ef651b83d556fd9b5dec155a664d2fa9555ce9382748ba70f33cfba0c789373b26dda43a1167944edb2757bbb0b3a04ec40616340dca8fdad307725548c46b729f9192132a5523be7bba4158dd85b51c3a96596189ad3b4184f222aba4e965cdcae83ae101546348100e85c55461e77877f08570e6e22f8c826c876174ec9d12c25b3a10aa0105a31742b137987e6bbb6f20faaa8d9ef58dc3d2eb10381c25a7695f1173fa86841aeef1e3d2530db1b9dd01b27bbcc1d1b116533a261b54ab3f84aa78a5d543b602c9af899f7c906d4c4e792768b2111247a2a6d3cd3654fe63f440e75191b0b239b1d2dd420fc8fb20531c496e2613b1852d03bd7b4a7b2a607d5c53d11aa48bb5c3f355699820d41a2691f6630f4441960871cda553c6057a3ee9b1c8e1d1107fdb835ce9f254dd1b4e69a3540e40d94092dfa20e0b7571a20339f557ca502dc45a3d4add7d36411c1cb7431ea09fcd1618704ca8016ba14cb6d8960185eac5d48fb2b8c61ff0045dd80e2d2e6e46c9b8b95cd683f09d7d0a6d32d6bf13c640ad416e13d130730a8431d940b27d32d18ba846ab24038f64fa7e7739874b277ef0bc2c5ad908c272fe89cea6feee276dd73144110a408e47fcaec8a269cb843db9f19e01cee7c953312f83b0bae6fd2613b4276221cf63dbb274e91b9506eb3c289e10a139d995b943aa8d56230835b7c820448737eaa90bbdf88f44088a760a4e63ea837389f454f429a33648dd532f030f2eea939d0d375b2ea828cb8c6cba8f10d50d3874476fd4ba71d8ade3f513c3aaea82087f75df8319639aef294b4123a2c004e1637a9572d600f55f07d9d1bfe15da1cfc4f0fff0084f067bdcf2c453b989a9cc7e2468c38d4a8f272551cfcdf3d13a39f113bb531d530bd97191720c737576c9d89d8f062e99acb1b8779d02a870f78646cd098d89688f99c6eb9883cd6d95378c306ca8cc1a5517784806a01d5bca81800b80de02c065b59f6e9088fd3566bbd05d52b3671ecb16103b3e268c9483899d2cbe260eef7c456865c9a72a52e1bd93c34c867a34a755b546d81d1c835f05a3a7322e7e3c6f8f970a2e188779741a0c6224e72e4e1e9b21ab6e8874927eaa9b5831b5b01033869968de214d861c5eabd3ac95190b29d8a074502dfd50736e162c8c10a33e174e938b99a745021c0a695ab7e8ac03421de4e47509ae761bdc58a6e2969f65898e6e442a45ada75bd8ad5950fa1174ea7cb54490b159b0414eb36a2d2e8628a822725d41eaa32b158b3895697030ad675b846c54b32f56a8100cc6ea723ae9985d4e6b50247c4110dc4c3899d10a820f36ce41ae83caedb741c062171a841de5741eaaa0316b7d0ae5c356317f1270070c9e86e83b95edb6cbbb2c686cb4a6bc96830ed5a834e07bc11af2c1429b59ca1ed1b8ba378cbe14e6bb04c74d1455200447a2c6600ba635f22ced9537bc12e874234c12d6f375ba7ba05a152aad22748298086b99ca3519a149bde30e26efb2f9803ea9aecec53b15c808d32118cec9fac11d423860b5b09b51b0580380f34a8a4245d01c7ff00b089f2b5caa45c2dd0d906f95a494fa9fa4740d93079933e160463fe146fec9f9b447aa39b9f75395d38a73040742a86d8a13dad031356230fb750b627884d6a1d780053755b047484ff00c29fbb51199fa293636e16477fbdebc278156c97443c7d174e210fef084c982ec2e1a20eab8309f5d380cd4670a9416f313d1009ecc8db642acba61dd5532dfd109dc274f2b5cab62e7a85adfaa6c636b9846a4dd0a6d7381c476559d2eb16f529a18272dca6f2e1f6214baccc435309cfaa4536dbe629f84632d99d93298c2e0650736ff17942616ee5a639ca98c4d8f64d7b8629f74ec367e11be24660540e3b669e679afb42783738b7941cd20d296ee13ce2184064593625e1e7d0a68bb5a47aa6125cf171a941df199dc36ca5912f9e8a9d20dbb9e77584c18c1f9a73aed661b7c41548e674fa29064aa4c71660b8fa268a85adc45f9dd542e04b59e99a7ea42c27139ee3d161e6aa4bb613011d0340e0e6dc1846a365d9ff005e033cb86c543a743c214f820ca1539da8810744dc404ab9c25b2131d0d7090e580e1220e84eabbf1cbe70886b81e57350acd82e047e69f4c626f337f34dab4af27f094fa738a5ccd085370eb23d13b369b6bbaffd857c0f9bf95c9d7c505026c7d4237ca15cc0e609b5796a7d427d2f84d46e842f8a838b7f0b919e66617ea83f95e0109cd70c3ccd47ff0069b53c8e870d97ce6c849eedf0ee8a7cd88b0ec535ae2da8d81bee9b530977b382150de43f7233551a30481aa2da9071b35dc298269971f5b265425b569c1dd6b44e2dc3b54f65e9fd13ea8201870f990748a8cc256170830e888dd30c72736a354cf3b6632309a5b0e6bdc34ba0c323160362ddd32a38b298c07494c6905ce27d1ab199a52e3ab754458883b1e210027e24673b23c3743709a3e243aac6dd420d1025157e226244a762b23393beaa5b665d40b81ecb65ba02a735d6cdfaa70f89816f054e9e109bb78a7451c0fea1d56c78594e451d89f00fef18cca0d1272554bac1b87873ce227a688946d94226a39da16c202f1ee983cef6cec10fd9b7dca73fce54a9448902555a86d4caa9704b5beea930f354c71b0b26874536bdc3a2755d1d4cabbae64e6744d6c436fbbb242c18cc4ff44c773bb9632b21524ba8fa48cd3a7fe1a9cd24557307e15cf04d8a8759cc64ee2f0b134b4e381a82116b80a78f19dd54c4d713ec4c94c33c98aa4e5253a2edb11e4d020d36737a3459124920be3a4239b006faa377c3dee1a030ab1782ff00b31a04da46fe63d1363ca4e25ff4fea8899f2a05902c803cc5cee990e1210a40f36aa9812e7c0f554dbe46cfaea80ca9aa8ef8a02791129ec1cbf9aaa0dce21d552acc2e6370d4d6e8b2e399bd1597d8314a735b8c1beb053dbd4754d71bf2a2e638d321eddb6e179507c0354e3385a636dd67196a135cce66f326385bf24608cfd169526fd50065926132b339c7d334fa1cd44e309c62585a35401bdbaa839fbc2239e867a8d1459ed82a9baf4dc541cd61d7eaa73e03309b51dab5dba045f3fc250a76c4f83a394899cb6404f3967f1042a37369ead29ff044ece57bba0eca7fe55563dc4163e762848c4d3ea88e76b277e6854ded70a6ec40e6c714052c3823a172c6d2c3678d25331339a5d9669c19c80ba2d750d12d737d0590c122ced0a69a50ff00366afa41faa0e9f2829de52df644892df6857e7698dc8553192ce61f8163a67e1c59885569bfe2701f0cac4f9c37cf24e74e1732468a0f3d384da8d6bb95dea9b56c1cc9e810f95ffc52a30e1384ece4e8334c977e17275b6ea8a79d53cffed3867854f00d1c272e10aa680276a1bc0e965cb1256d6585745ecae798a68d3fb834ba76cb78410436feecbf8ccdadeca7a7aaf98ca9d254e62215f3951740c421302e84b438e039c2aac023cbd13ea182e27dd68102c691622ce0b0c13807add0c388b9847d10c20b1cda646e02899a8d3e810a87138bb0a639c703de6338364ec6e6e198d91666d36ca53843ab4895ca0d1004a7c6603a73550b76bf98ac05a5ce0e9d8227f66ebec5611e66bbd151a8efd192770994c7d9b716e764d138df87d6ea9309e6c5fc21778efb3a36f559c7d1117cfa0ba0630b1cee99216c6c60fcd36098b686139d4b10619ca154ef0e274b764e6b0b591fcc89bd4a867a214a65e04fcc551040ef43bf85a991d5371f95e134658539b954647e1cd5476453c992eba24df8147c1cc0d930b407083d152cba4ae4b79742a2c5078205c1cfa22d71073e05be530a56269c19a737310a389a665b13e92aab84ba94fa26561ccd83f304e06ef3f445aee5aad3d1176b07d1549e68b64414643a9f9b56a05b70fa6e08dbe03d458a9c9669ed3a16ee9d400c6d384a616f380e0a9d46e2a0e2c4e16aad3fc43250352102d90d2104f10e1cdb84316139a23283d0a806249f94a0fbbe9b99a2a8d30dc2f61dd398e960c1b88466e25857596ec5165c73b751aaa5dd82c9c1fd15cb4412adf1533d13498c40d4dbca51a6fc047d500320e8d1348ef41747a4a7517cf3169d0941d54c1b7541b98e5fc9537b7133f228398272d2f920f1e67178f8804e818efb458a73b99952ff0029502f2df509cc2def1823e76a79e663b1b358551af05ae30a492e664b154069f29f95c9b88c8c3eb70bbb0390066ed41ed2443d48e59877ba33388184081718826e382d38bd10e8b784cd484c6ea3d9070922137a26eea72164d02c02d809519c7f5435694df94a6fca57e044fc0b7f086669a5a0cfb21fac6c9db2715b9410fef4ea980c6300a635d84bafd1536b7cfece41df15345d7c4d8405961ca9b89d827d58c6d22362b08e675d1aad3e766920d93e81e709d8a58606c8e7f9a755189b16d154221ad91aa1ddbb9d8dff00655c370b7bb23f890681de622fdb441b933eabbcc314c47a26979c0f6e1d10d3bb1d754317da5603d13483dc907a2aa2cec94b811f5585c1ae8de1685bc9d1d0ac21ad1fc46610e84eea9e2184cef64d9e492a91bb9c43b60ab54f243290d745844f7a4923cc47f459d9c5c75300a65304b853207b94ca98037140f944008324b9ee4d26595f0fb2a5b977454c7c1654f5a6165858ab5582ca5cbd5557655b08d6c88748a8e7f4365a9a70aa61fb36b483ecab810da2583f0dd1759c4db452c88e15aa7969b9561e6681ea554d034ff32aa1d0591d66c80f3d403d04aa6d3cef2efe1b266429b70fe2bac3e56d31fcabf05323f855332da949b1bb55266173315fae499379c90a7259e5d42c6d3d345151cebdb35df0184f32c248220851c65376098f7806f3a8d151a79364f54c06d0d3b263480e69f6099e60e7fb15617c48636cdbd42911fd0a6877e2ca5070e71f4506261028b1d883adb20e5099703fd05022d6e8a34502f708674c8f75f5d8a88376fb485d247e141e4e1cd7c2647fb29975303bc6e93628b5c0b2db82986d25bd6154618a9870ee98f6e26bc47aa7e19185c0a25b3879f5055361c6c0e139c203f46ef625566f99b8dbf9a6d790f65f74d7c039b729b10aa319e50f41ad73e0c6ca9556912153bff5050a7847309dee15bc81bfc251a4c24b042a249c0e827309af918a6744e86deedf993c4e176368cdaef30580e27339771ff0998ce16e127e8998a4e10efa29f9bd414621d84b1728cad92a8ca9ca241ceea4bb0c0469d43317d949cdb8f50466b13a486e21f5520de61755f55199564e68cd39741ecbecfcb2a74852774d6e6983e12868d5d174038cf0d93a20595e4dca8fd509dd397543594d1937ef0a3bfdc0f1947ef09d7ee03bcb71f7060e7644b2c030fe24db59a7f11d562a64522d6bf4810aa4f3101777e67d38da2535870b18f3d4648c5da40f5584f9b97aa0d367e09d4ffcaad4ce32710d613c54c74817b5c14370968c3b6c9ae367193a009819e674ec6c9f00b5f81aaa3df151c63a5d31807795b3d0054980863316e53c9e4681e817683bb01dcaed4e6b4136e85777114def3be89eefff00a61fcc987cb50300cda9ad60730978f555225b4c3bd0aaf8ce2686edd538f99e716a2139f48349f4242ae60120345b14a61f2118ba947100e23d934538980b05834007326f286201e011b68b9a28be0ef9a679aa3cb9e999b98096ee835b14e3d9387338390552a186b53b3aae3e8d430fe8c376c4131be5688f4e184593def9b3741755d8ec2ecbd543799ae2352d47b990e75f2c4e449fb56b32d4aecf5059a2fa2a349eeeee9031ab954393be8aaba1988b82ed1de598ef619a74c3c99d9ca786ca504d0a699030969c8a73082ef445d49a7553b75572e8beab0c9a79edbaefd84e4f1f9a91e27b7275b62b1360018f626caa62c3525a06528824cadff22a7ca41431728048d0e683d992207304c7379b2df6555a736546ee8dff00d953373ca5381f2cb770811b8f4e1f552e21c0b0ee1453c4e925b7c4c58e9b48bfaa9d60a70787b410edb75cf02438fc27543e38e88d8b4c3b70896fda35a4845f2ea155dfc2b01797033fd136ab310fab53e8cb6c9b569e233ecb94b83f153f44dc1cf047546c2f3a119a24daa7ab5c10a9e66d469d86a9d4c38d27e36eb3984cab848e57f44e6de9c750aafed29e2ebaaa5870971c077585c3054259f2cac2e0d38ae9ae6fe8da9f4eae1688f445ec0e64b3ae9eea4b4b5d849d2102f386676843e20d9f441cdc27e872429f2b5aec3f55d0a7f785cca863e5705558e2693c3ba3d62773d37b1fd0d90125cd91aa870c0f0ea67e17ff00b15b404f0ec4d2d844adfc00ad946a826efc274f00f06dfa938a76b01754c09a3203c0066781fb9010fee0384e037551a25cf13b304cac36363d45d54abb86eead9a6b7cefc210f8440f041d10f853da39f13cf41c053bbcc26d692c05ced27ca985dcef2e701905505980369f54d619bbced2a9fca7ea8920d3ef11ab4b98963ffaa7d37dc1f584f2dc26706f098c6e64f541dcd89e46d298f04d6a7fcc536060672e909ce797398d6ef6ba36e465b484752d0ce8a91e6271fa94d06f49f8776b906b9b829b8b752ecd610738de1173039b507a96c14ea6f922c7552c30f4daa61cc2eea429fb3a2d31d027e0be3139b5163bc8d3ea9b50cf91fbe6ab3090ff00b468d0144e7498d19a01c7030077e24eca65e80b3db8ced9aa804b293da0f45532bdfd940e6867f3268cde21513caf7cfbaa004d2a2d79c93a88fb3a2037d154a972da6c1f89a806f9da3dd019d4ff004aa4c6638b1d4a96cb399542d38f022dc9b2ab6224381552c5cfe51aeab13795ff00cdba634e173b1d41927d46bfe4e89f67b4803794caaebd667d153609a98dc3f2583968e11ec9db00bfb55322bb3f9866853e6ef0961fc3754c3ef58e1da13e902e1cd4f709c5429458641e89afa609b69d160964619fa20d7f3b4cfcc9aee7b8ea14b096e89a70ba2e85527008a9f914e63cb5e083b78df4ed9b762995872113b239168851a7a2c713208d55e4e6365f44746c9dda6172c9616fa841cee5f30d9482084d6c61aa63e5251d01f56940f34969de148ce4a9ebd0a8fd1ba3a15ab2dbe152398051e89a727023d548bdfd50888309cdf2991b396edb8d962121b8c7cb914c63e5a2a364686c83e43d93d0e6b0f91bc999083998a9599288772914cedba900e4e5804d5c389183860cfc04ff0044d7871687078f74da8c9eec03f4551a4379c9fc49aff84d37f5d1075321d85c46e80a7e4761fc19841d6a556fab5e81b5410771927869369d03d540e69eeedb04c235f4284c3ec548c4d6871cf35acda75d11a667936b2b03067508660cae670067aabccc1e89d3682dfcd7348969db453e88796088b8e695845c80a6f214710ad6430cea834754fbe167e49e7cc215acd5d3f543a04f3a2f98a68ea803e5e077f175436257aae88f4fb81fdc1ee8f4f6e01b905a1cd4a19902774d073fc97af0244861423fe1089cbd552c5ca311dc04f7379718eaa265d4e7f114c2dfb4ef5f1b5827511cac0deaab92009469bc62b7a84cab78a608f984a70870bee1370c8661fc28e3870c3b27877e1d775dd9003f3d0a682713a4ec553009716c27d41f62d701bc27c018e3f891a409a8ec4b3156c3a845b94c1d494fc45adc4dd7290aa441747a045a2ce8dca7b9f89d507aaaad77e949e9856ec0a74bac117fc956a70e0659a184fa8fbb4cee027069df4550920d4613a84e1f10c3b222461716ac36f27a73144fedea0549a794bbd4a6619b91e89bf23fe8a9919b50cc409d61588d7d5069e7782ee9a2155de8af91551d86002deab0082f047caa9b665d9681110595f9762d4e3e40d3eeabba20b189ac6b8d475fe929effd036233c2bb4e26e2f2ef9a762c4232c9636c55a152d961d1360e011d1e1546d274f34e813cb2f439778ba0c7dc38a762f31e865631b7aaa6e73a0c3b358618e321ca1e542d95b83dd4396e6774f6d4fb49f4469838e5ccdf6532ea4fc43409e630b5a3a14660820e89eea2c745d9d6f1e1bdf254715cb8b762a84c8619fc4535c669cb5e2f64e690d745fe6b226ec76176d3213e2ed0af1f16c9b52722e1f54d227657b3af1920ef330877509c20823d134ce31ee11f85ef08e1b90ef44d1cd94a0c125a7f97442a33136e1389b11e842330e17dd6225a5907aea99decc161fc93b42c4630fbc22c6f39fa845c2412c3be6a1a5cf6cf508386fe8734cc25ae974759216cf006a0b552c585c2247d5196e178735bbe681e7647ba1e5cc944b2cd6ed0e6a6c473076c0c158861b969d555a4f8792f62c6c804cfaa9fb3ac1eceae581d860e103cc985d7c33b9b4aeea4412362654b8b87d0a1dd8c2d25bd0ddaa99686d43e8f3ff29ed6fef1bb218830873762806cbe084f6f3d0b8398cd1c7ccde705308b4c38fd154f9a7aea8f40364e6dd860f50aa5ac3ea86665bbecb13b1027d9171e645ece5821391e121002e8019ccad916de5139ab2762ba3e0762944be0bbee764ed1a53b584021b23a04e5ba1c40dd745ebf77d7f5da73e66fd78839789eeb03016110b99ce2eb6c866029c96eaf9fd16c8122c317547758489049e89b8399b6ea9cf1f611fd156eee1d847ba3e634c3ff00114d7d9c4b3d32548fc4d3fca9d8e03c80324c2d12e692374d8906c9ccf827a427e13347d20a74b4f2069dce69eff33cb18a8e2e5c4e3b954c96e373bd16167d980ee85380fcb0854dc67967551a5bd55303ccd3d0aac6af30b7447100eed047a2a54a99c6e791b624c7d3c885849c01c5de89ef787774f9dc9b058d97fc90198298eb10095dcb40813b2c4d9704d688824ec9903906208533cb00279a60b00ea51c4477ad3d2162cd4629316809e3279faac430d58735507386075467aa2c07bb7e21b04f26d31d724c73c8a6e637d4214ff495da7d1a994462a74b14ea9c23130027454bbcf23d3adddd08ea4af9bf209c3cb27d51d903131fd540d8213a213169d95e1a27dd5b6f5446797409a7540821c259aa200eeffe13e93799a637570e06ead8da7963e8b1996e7af0c2511e9c2318e8becd91e60aab2a388bb74ba638f29eedfd325ce03e32cd0bd37794ac333f003e308b4f2d91c30ee61b3962b39a306e87a7ba9106ea9b8e22cba13e50a2d3fea4ef8b1d377d5a554822a1691a18555afd30e842755a72d706d41f2e4aa61e70310ce162009e43a8764aa8f332468e6941da19cec60aa9953a867e57e6b13b03b18ffeeeb14b0de3add3af81d23ae61362fef053836cf3ee89f8259bb4a68b2322c8dfb92dc5b4a911da69ff0030430cd321df2b939800aec72a660e307e55f289df70839b061e370138886bda1c3758a3bec3639b744662c1106dcbfc253de6595038756dd10394f5be4aa4cb5d2d3a685381e5870f9494c73bbb7532d0742ad138a3550c927ea9ad6fc93a68ab53d8b4668546e2747ba0416b85bf24f0219f42b1380a946f922c7e20e0e1a8ff009578b61d8ad8e20a4813f9c2bc58f45d2c80370e056ea00d47846e89f456587756c904d4365d14e416a513e4847c01468a57ff00428d2546dc3af18e23709ab168e4363fdc5ba60cafe8a98dd3601831d5531f127694deef685534a71fc4e4f75aa3b9750c09f8886b1b4dbbeaac81ebe06e3c22fd50053fe58f5466eeb6ca04084e2ef347408fe24639bfaa65219cbf608b8f3523ea0291e7c23d6e8543caebee423f0d54eee80c4411a84c682430d676e4abdf8595ec9e1bccce5dca6999cd3009ee89f65a0a70ed93888129d68706fa5d52c631073de9acbc66994df0e74b77d94ce01f5458fc55703717541e2d241d910d21b0c1e8b7759364776d6b8a38eefc23a29cf013ba0cfb361c4e29ce610e690edf74e7b61af8a8aa373927d512d05c4269a844895d5d1d10692715935b6a6d876e9d55d2e90372a9b4c73bcfac04cb068a6531d681eca953a048686f5e1658cd9fed09e04bf942a2c12eef8f4c953679191eebbf7c35d508f955368970b8f98aa0e7e84a1459200f4556b3f1c2b6775bac2db7e49e731842a81f38a46d08de1106d1f54ef9bea14df0c39136210a77130b0998384ea112db0b8466fe5d954a472c54ce813e93b17360cb9977ad6d4a702d0611a449b1f98213c88138e9e7a8e274e10b95623317d54d10a50a8d7b5c05eca0907316fb86f99f7d9a8164ba9327a3961f262703a1bc26930e05a538031cc80649a6e036283db2d72e5c2e1ff0adcc10bb9a71045ae989fe1b2162ecf7845a61ec96fcca5bc8709cecb1b62a1b8c9c1383a27bc6f5cc2c20b47b4842a31a4b72eb92a787162c913cec7076c49469b7c8fcee3341a263e89955976c8f5cd436cd31b4a838bbbc43719ac310f6bc75374dc70d73e7e908cf34ba755ab1dfca466b9b08c00ecaa626163875958cf3891a16e61401cf23aa6b5bf68d2ef64ca3704e13ba6b073e4b0c3d958b672947e283b2612dc430e1332838e22e8da724fc439bff002a1d8715c8b029f8b0bda30ee893b68861ca7f24431a399cdddaa0dcdd73118a0ed287ed37b4ab49662e89a0c963b00e9926bc5ee0ec87c06436c6d2ade6c5d654595d0f1dd419852ba70d617452ba85fc2a340baa3197e68fc84aa9f21f728fc4404d1920479be89b1afba67fe820747421b23a05509bbcfb276e8eaa4dca6843c71fac85cd77057979f4b2c6ef8c0443a66df54319382c754cd240dd517681e7a94c6472341f4572493f54c60e41f456c8a693aca0bd1776d98faac74a4f2ffba0ca64779728f79232599e6fa20eced0b1bdd81a5cd1acaa4c123e89e092f735c0e50aa177c387f3473c1f429e0d9ad60fcd12de67dbd50993f96a9ed0035b2155b62a56f542264298df70a9d5762a8ec2ec93eddd10e09c671e9a054e91c581ea499007447159ce8e888b8327f894c5e0207e227f8420e279aa8eb29d3f643f993f18739feeb99e453c3d4a39f78e9e8117322648b4909cd6ddf83db3462c5f3d53a5ae2e0f76e725da3bab191a862a902d9a2490f2710fa2761caa7b72a631a64961fe294c1e6a93d4ac0061e69c902cc2fbaecf13860ac51776dca9b98ef07ab9069e5a44958ac40faa717034700098dbbcfac180a9d2b767a7ee9d5249cb728776709e43f336ca97eedae5a0e5e89e5dfa481d0293cf51e506fe8e9b0f57a01bb7a20625a0ae629b3317565d55fa2e5b4a762e51f556bc2919ab2930cb1ea1613e5283c4857ba7b092cb83a158770839a363a841b9af30d1cbb97c381c074081a8d753a8018882b09e57617ec539bcd8709dc26d704388c7a39163f0bc410b0bc16a0473b6535e0c0c245f8429a67706543829691bafb5c5f111cdebe3b4a25a6015f665ee1f67946e9bdde2a38ad9847134bc6284c779490762af7381dd543f139a317ccdd55a45d0cfe15a8845bcb56e342d408185c2fba21d8816a31fa20e5dd9e52e2dd8a6d53204153caeb9d3458cde676715dd198753d370577848fb3beacff8408c3521afcb95d0539b87bc6e367cdaa6f77345e47452e0d23350c333ed9a6556de01d1c14001d7d948258f2d2bb4301180bba94e2dc45b1f85608b3834abf78c384ebb2028f390fa7d2e9b801638bd9b143c81bcbb26c40263e572239303db1aa7964d375371d8a747330b4fe4b9311613bb55375a9d5c1ae1213708eff0b8e8e6aa98041c5b38184f7725668bacfbc69f5089321d01637e263ee9ade47364ee8b7117c11f334291687f49448040c3d0a68321b7e8b091d566354018d7c1d7ef3aa2724fda3d56ee1ec153d71154c64c0a148854e90baa955d3844692aa6ff00409c51f1f4e3d7c20a1fa9c67c6049c90a84065481d027c806a726d0a47e9037ac2a6dcdf2a98c8147465b7759552243297d4a7917c3e89ce10fa8c63510efb0c4eea8c09a61a75ba1ff00a401ff00cace1a67aaeaa7293eaaa654db1d50719a989ceea9f21b219eb9aa6cbd47027aa686e5f942ab56cd21a3d53fe2701f9ac23323dac9988435ce76f29ef27ccdd88d5657791f890178841cee56e376e8cfda3c0316c49999e73ba31bfaac444b7fe16d85aaa0377b48dc8586e49f64ec604068ea6eabe3366e0fc9724636e2dd3be200c7454de074d953c58a6fd4aa8f10daa23d139ad87414c0e1888c69d18999ed28c13883a33109afc5156fa2ad8496b83d5516ee79bfa27d479b3806e4a3ce25bd5031ce30ed0b9e70b41cc106242748ee858f45da322f6b76e6554ddefe4d483309d13deb4b77855a6c5a7a828b618d1926bda5b55a3db34d2d9a6ff6727b21dde32075471bbe21aa14c5f9c7aabfd98c28a2f027445dd06e9b87e37ff4427cd27a64a327969f4cd0b72dc261f332e81cb254dadfd27b1ba63c0bb53771f54c6e6e4c1ba6bfff005c3f0ca0321c7744f9562cc5c2c176d86c55ce023d1077aee8fa8da5581110ac445ba2918dae82aa06cb48737a2382e39354d307111a5d02d189d8c6e84da6f7305370720941ec8a8c98ca50aacfb1fd23742519c35394e80a149dccdbabf2f3039271395f695123252a460764545684e764d24a830eb1ebc2abbf66efa2c260882aa472807a4a7b64d4609d02a94e3153c0117ec8b1f214b454a1cc75013c8e76c23167b48084f2d36ac5e5058fd06eb1e843b544649afcc10506e5a9d4484fa4cbb6fb8c902d6e3e59dd32a754da3ab988e101dcc50c07107fa6c9c4432a177aa74cbb0d3f74fb63a8c3eab9b0c44ef76957c54add2507520d7689ac93cdec85468913b38593adaac462ed7755a619f47231e723d0263f3c323e5b28b65b2188e186bb552315388f886a9e1b71c9ba2dbd222eb1b248f6539c6143389b669a1d898d36d014dabca5ae6bff00346982d3cedfc2dbb57766cdb3b50141f29f6463cd2b08e7261626dc1c3f33536464e8d4844f91cd809b8818bee9d3ca47590bf08528e91ee87c447dd8d10509c7cad94ef8e0260d1464405b95b78246a8783a788a28feae32177238728f545a6ce07d0271f9535d3c801dd5b544ba5ef31b00a1a438db77595122c49573ce5cdd10ff00ac5307ec6b4fd502d6fd83a772d85d70a199a8e77ba6e47e81305dac6fd1444983b2005b87e028cf94231ca0b8ce8539cfe6a4dc3f88a2d166b07a200e58ddb36eaa3ea87be940cd1399f61652630bbd5779232f4b20d21a1e77cd0d813d57d9cf2dba2b5d0dd5e720848c041f74c2ebb41f656e5b7b23f8cfa3918e61f559dd002e6fd537016b1b7de54027e345de7713d135be5681ea8b5d73cab9816dc4c722b921c2e558f3f37aa7b6265c3a2647da45f74d23ece037a04c6930dfaaa6ce58e6fc210a03cce276434c67dd13773e06c138c062a6d3cd2e3f92a783ecc7364aa3ad8adb0e0e6e4ef64c6f9dcdf442949a749c5bd6e9dda2999e578c8c2696e671652b08c338dbd53f172526c752abd46f377606c14b5b82a5ff00105bd5bff0aece0439e67d5766a79e223f89516fe8e97d4a311819f455315a3d00557141008d8aa66790b77baa20c439e99843817b3a44a761c41ec23e8aa8120b49da53f3ab61d149e57b70f5370aa03c981db4155454821f280f2b2a158aff000ec87070f84c744e70b3811baabf101ecb381ccb109a7f44f6be6094cdfd8841ae6db94d93a22f959c9c7cd21660b8df5418e8b35db28cf94a761e76b5fb4210ec1caecec53ecc2506e00f2369085da049db757968c2e58ef043e3eaa441cd39d8f96fa10aa974e07db55de379cdf4309ad3065e7a2a41d3cdf5549f5097638ce66c83461a76626d5185f18be1244a0d3c8c68f64e3cd57d9190ec01fa4c20f033a7ea8977e958aa53789189be92a816bdc69c1775541cc1677acaa348f2badb28f333137e66aa4f7e263b97aac248d93db6990b188a963ba9bb61c38e1ca63629a220b9bd344187310730838738059d57ee6a98db34da587bc1ee026541636d937bbbe5b44aa38346756a3ddc32a070fc421543918235cd13986c1d427ce77d0a99c4d2d76e107b70ba1deca0019ff12662c5879ca69b090e1a2e5f3b3dd5ace876c6e148fb668c417ed190647a14584cd86909d8e66c7529f4db0f0e03e61745b7b11d10690670ec8133756f2c109d1001b6ad4d7dc3883aa924639f443145f1e92890ee6907450df34386a9df8615af00a24f2c7ba13637437b9be6a6211be456a078496c281e0eaa72050f89536e4d13d501aa24d8b7faab5dca9e85bf5416d29c7a272723ab8fd7fb80a8cca138664fa2e8a3aaaf5395a1ad6a0cfd33e3d17671e58277720d3fa46b8fd13a271d38587471f4364e71fd0b3d4dd5570b3697b2ed3f0885dac91cdf529c5df6b5493a414f2794b63540670b98f9be89c4e16b7de5344627b41f594241fcd318dc5ed926c0bc4e88036129b89d0db6e5626f3bf9760a21ad6b86a65623939d3a648fe21d015132552f865e7f08551ce8148c75b2b72805ff008555c78dc007147585796004f5400cd17930c86eeaa18c4fc5ea834cdfea88dd742aa7c21a074cd5433f08faa38b9de1348c9c5374a47ea9df0c0f751fb46ac1947530a9910f923a854898a754b46caa06f2d56102f2aae310f6061f8859618c44c7ae6998a4b23a951705198b349f991a6c389f9f446a3b907b954c11ded533b054b08b4b370a8e096ccf80273fca251638622273c29ce04b1e7e8b08cdceeaa6d4cb7df345b9b9c540f88ab491807e242396a613acb55436c56e32e24805a37544fc11e8e428b9b0ec4897645e8f77cec3fcc9ad9c4d6ff2e6be5a8ff4844cbb0623e8aacc9686fa95520169e6d53b173e0fa2bce112a332afa267c59745847a2ca723914e108e38758a74f23fd910ee680efea9bf0cb7a223358b3584f3261bb1ce6224093fcca1b0e33ee9af673410a058b8b3fa2186d6f4566831d15f1d9c46c99501735b71a14cc3a585a1627f428cff00ba6bea1731c5b1e60503ccd7169dd5460c58c1f44e3f114742a6a418beeb940988581ceef71469d510055a53875e89b51cd7de4e6d1aafb32434cfe246ee0eb744d3115a3a14ea718b5c8a22946220e88e2c354dbaaa469f9add354ca4e243bab61611e596c4a2d707d300b48ba24e2991f9f0c46c99459133d4269cafd574448ca119d2764ca8c8772bb455297d9bc72e8ed161ade5c07433629d2604ee33544021cc7032881f66fc436766838106e3aa14c430fd4a3de0cfdd7a46e1071c176b8689ecc83dfee9afe5367e929a5dcc61e344e122ce6ec50d89d88ba69203c0baf95ce6b8f555da44b2dac5d0b4c86ee344ec5948e8735d2c5075a9552c72982e6b0b86b923003dac235405c5930380c572bd1536bb988c7be49a7500e6b59b14ca62dcb39a1adc282396c86ab6c32aa4834fe8b57d89536c453c6b8bf24ec5616e31a2eb850ea7c0fd022333f44d67af52ab39d610df44e02cd93b2a903160c5ea9b8bed6a367d5501692fe815339310d1ab74105d3c278f5fb8a7244927a058fe02d1d7c5efe2bd8dd3c1c2c4e0c2ea8ef64ed07bca3a9fa2cf135b29adcb1aaa44b00c29e40c5548e8d12548ceb4754322f71f57200fe93fdd53a9218e32152a2ecdfd5527ba5bd99ce58bcb423d422c1ce0307aa663b5d0a87f40e3ecabbbcb4e9531d54f9ab623f86c87c20ca21b0f2d9eaa7f48e20f4d553a7a475283bc9154e79a812f6b19ea9a479e0f4ba1226a8247cc8c6579b109fe6aafc2d4dc3c81eef54f6e54add555c0087619cecad779329a07316a072e65966a7e27211201253cbc62868d94eadf74c6be5d55de8134f90bbdd1e89e72a8e0bb40d6423c84b6e1375a87d1aafcbf529c7324a2a5151c24a738121d840dd35afe61886e560796ce269cba2c7cc2a12068834063412ef54e264b1bec9c4c97623b1458cfb4743b40027b81d3d53eec0419cfa2d4d407a00a5d1fd6cb1ea80cd340c81f40a9ba643bfd48622e70e91a28b3049d91b77ae1fc29c2d8da1bb0584f95cf9d4955aa1e46b9a3aaaaebbecaa6997544f99df44c710630740a93336ca7bf26b5a116192efc9373c22774ec3c99a7d4762a95133573a5346ff54d190e0d6e642a62d2868395348ca7d548fc3a5d63da5546d9c02c17896e442f2dec466afe61e8afd5103ed2993d5374309edf8712c43569568a974403ddd405bb393e39e983e89d123facacc8907f0ab3a4cefcab0ba03f098d7240e7e64f6930046c5a98fbb439af19858bca60ff005519f29050738919aeeaa1738900fd137161667fd553ac4b0b5cd3ea9ed3f66438752bd94190724e318aebbc3cc51a3b1e8b9ae061da13c4bc3c384f953bbc25be5d936b5e9f9b6dd068731f76ea140c544f27c5d1431aea789cc39cacaf2381073594e7b842ab31c62f4cd3873d2b8d46ab1b2cd6e21b2617c6300fca4204934df1d15665a3bcf42aa3812f10bffa5137a6e83f92730c56a7cbf304ca8d8907a20dbd3387a2c5ca673cc68994806bb987cc3458a30d507a26bc18bf40539d4ac3db54c69761b11a04ca80cd823caf63e00ea89fd253c3f8dab1362a09db62ac0b5f863640c963e1da91fee1779189f85fd10022a393866d07a8b10a30e1e61aa65437cfa2752965477794f684d0e119e9893f42eea14b8b480b63842c59b439d9c6ab69956c50b94da1dd42661b12130b4667f10cd40818beab09ca3f99388b177d13b3b0dfaacce22e5e889c9d1b2df0e3e898d39b8f0b23c5e748f55bfd147c00710d12519e4b04fa9f11553aa8fd212df6546639d52a7cad298ef29f09dfef83bcd9268f2803d3c4351c604a9d0a18a01b8405dc5ca90dfe8a9e98be8b66aa8ef2b4fd55639dbd13c3e5ce8f539a6bc870384eea90902abfd82a6d1c81c0a6e2ce3d553761e7197baa2c1265eb047d9403a94e703148fa95da49e57b0754e73bed6bcf4685487c127f15d51a6e88ff004044d8537c68aa830f207adcaaadf230900ea9d23135bba0fa93779fe1b2797735560d829bb9d9260e8143ad7f640490c6dd300f20569061348b80501e6385bd531df87aaf89af738fe244b798fd1326d9f08f364ae7e21a43512220fb95ddb80711ec83ea62131173a2c3b20c6cb9d654c7c251892d68f7408bc04309b62e8a8b8ce1a8de8a8ffd4ff52a3193ff00d4a81f9bd8aa5bbfeaa8fe3faaa3f8feaa90f993464e3f408c431df54f91885ba14fe527d80d154bb20bbd442c22f0c081c8aa93caff00444364b846448b94f7461113f31430c17c11b15420017eb0a9b7090d0e77558d92d609d148b34e24dc504fd147e9002ee8b1880f7b3a214872fbdd36416069fe25481cbdd5263b96656b2b671e1d78102c17b2dbc21a2eb1793247e277b266d74c27ca86ca46417cb0813d53995224c20e171f550724c2ec11056857baf9731a20eb67eaa3390984f3fd5026584a70eaa999e673654bbbba55883a13aa735905d2531fc87e8a329c3ea869627750f1ce446edb2c2709c276b26bfca6fb14d1520bb0bb65cbcc6c50a4ec40ebba153cae3ea1542d00007a85de971c5cc33e546c68738d46a135ac181f3bca930dbaa8406546dd381dfa8e106cad2cd731b2c6def3e219f5458d9245b45cd8a892c3ab742b04b5e395db283b225f0225398e21c2e9d49b8a0e041d7f29dd34733b0e2d48098e74bd809dd385fb361555a010e61085b1b3dc218840c4d42a365b71f9adee3aa664c68694e0e919faa7b8f38615a3b3f977582b07b1bc9fd1600e2e0635b2606cb5c64ee8b80220ee5a88bdbd085c84001a0dd777c9847364e170a410ff00cb228b5bc961b9b85630c17fcd4b2e2da8403b0612df5c93e5b85b2de8502486912d58cfcaed919c2e063d335121d9680842cec28071740ba80073b828f9868aa803cd1ba2264b7dd385421cc74058a70b87d1127e31e88b047354f554b965b07aa05a413f428536e273890a9982d909b36cd53d534d36f76ff5087073bca094f399013067cdea80c878854b1261307c3f551900aa9b31b1d4a9bbdc5c50d49f408372446bf9703fa89d482ba2cc4dd5ff00df840bc04cde4fa296f235dee156c58b1947e37841baa6ece77e49cd9eedac67a04f7f98ca3c094d1f0e23ea9dd183739a12000b18c05cd6fa5d559f293d464aadfeccfaa8fd25483f844aa7ab6a387e2b2a711ddb074432607bba00ae6c047cc548ca4aa8dcc86376084dcb9e9dfb26b00dc94e0de6713eea9779d729946231923d15eef84d7439a7113687b91634b4b5a3a958886fe4dd17cc6422dc82c56d7f89019028138a311d9caab9bf0b3a3517f98fe72853dc9554f95ad60ddc516d8b83faa713ca2dd02c639e65681b3ea9988f35f69418394ce8a1c61ad1d6154a994c755529f99d11a26e1e72636081c82dacaf32a2ce323d535fe5703c2cade37bcc0740f55529077303d209556abb50354d7e22e103e658697279106b79ea7f2b3fe57d9b486616f54f79d4c699218a624ff12c0010db68aa56702e16cb24e6b622db02a790da132a010c223557c46e131cec21b9a8c664831f12869712e272ba7171c6e0360a33cff0f0e9f720684a9dfd114d376c61d90c31f446248fa2fa70d936a5cd8ab462f75b9b85b18569250905c41d8a1f118ea8b75042c6263258fe1ba70cd1d23dd7e2c28ef2a410724d6ba74581f85a07aaa6723708bab73f94e88444db809b10b9a60269b3b9bd540e4701eb92ef0612598fd251a4f058de53a2662276cfa2c4d181e27aa21c25ce6ea00130552ef092c05df314d91f66c1a1b20d736d8987cb74d6becd298f2ccc18cd617dea36134bc0613846a10f89c08eb9a9397f32aadf3b1aebe6886f35c231f671fc3985dec16001c33098448b94d649cba289c2eea2cad3840fe89b86c60ec532a0381c6763a29692446b215d4a34cc8cd77a7091cdfd535e61c0faac2dcedd5329912082b1367f48de8138665af6e9b84ec58a9bb9350a8d5d3e88b79a85520ece559b38c07b7a14c0017f2b90aadc22a621f429dcc314fe2088a501e33d9550fb86398750aa8c834ff541c21dcaed5a6ca24b2493a2710d25a00c88215849f4946e5d23dd06b4171f7852445b50422e987dd4069328c488460873483f929319d937e3962120071693914e6c6275fa2734e51d613f0f306bba85f851cc09e80a1f1b3dd0067e1f542a6550e1ddb9a65477339d2a9b4e6e4d19300fb9033c9341e4e64ff747274b9489192738fe8c86ee50ea821f7ddd435a398eaa5aea84df2e2d78be49ad10c6809f953b754e6dcbefaad7113e8aa69c9eaa5d350e2941b92c91f87ea55ee4fba8c84a7b8e5f92793914e765f9277c4e0d0a935b8b162098e0086ffb289c5965caa98b35827775d4886c34740891cac77ab8c2c2203c7a346244cb831ee3f8dcaa9f8a933f354f1439ceaa769584f2b1ad44ddce79fc940f2a8805c07aa00c822534db0971fc2253e4118a36555e2082d1d4a6b4df04fa4a24fd94f545ae2d768a6a08d1532dc279ba154da708b0d82ad8ce1392ab12e977409e492e66007e52a0f3d671e81343adf44d2868b3b844db135a0eb0998a6a54ff0055953f25333fc192737cdf44030d3e62e28e8139019dca7b8f2e277a27987561c9eb75434638f42552765407d550263f4675c3920d16c38ba85079d94cff002a63883808f46a3f0f8ed2d21177fc2c3d11710e15b0b7646a36cf07d725150e3e6f52aa547f2ffe9737da3d87e5015eed1f54ec3b26e286113bec8baf0309dca2f39b6db279b37946e553a777731fc4b204133b04f713ceee96b2a9324e129bf1413d5036fe8adc3aa1e1e9c3419ac5e67222ce33d5002ea32c9076460aa8cf3096ee1430669b12724ddd6c54d90d575446c8304689a4c10df7522df9a81116402ebc3d1754774518d7d93bca426965b94f0c54da725b9829b8b06204aca0b9be8be6faa96d90c585d579cec9cd19ceea0c8bff00b2e5200c4cd9ba2386039c3f8954c5cd151a7554ea1b1c0fda2cabd307131a5ab1191cacf5c917618207aaf2b98d9737484e654f2603b225ad2725df52c21d85c325525c3cd1d5399180034ff3098e23e64e150b8993d553aa711185fbae59a66420df36683d9347cdab1c51a8669f23b56955283c17082107e76288e7a7e53b223ce59e8e08387d9983b22d7c64e083998890d39142716107d0aa551b9c47e48887b1c27a6451733e0c7911ba6b1a308c3d1070b12d3d159dcfde34f444538630c1cfa2c2c6b4efaa312e87ded8562838b0a77c70e1a1d50c4439ba66533e1a8ff4374c761c4c0e0bbbcde1acd938ce1e60b0838adeab9f4a83f026d9c0b63f10458c268b43f589531de87525cb05c7d4a8b0c9369918b3524bd8e8ea8bc4e33eca044c8f44c6486fd100e919accc88408b1298db91ea5530d8006154c3a05907e687cd922e19923ee8d4cdd6d97ff6113e675b6011f8200fcd3f524a3f7f690aabbf004c9e6979ea56c11172e7ff000b50817faa072fe8af959126edb21ac20ed5c99abc6258a4d947c327695bd3c1eeb1600d769785f8717f1b95be4fe10a93631d43d6ea893f674def4e86870c1fcc834924bc9d9190e0d0cfe22a49152acf56a9e59387d138f968b8ff001593ce65acfe0098dcda5dfc4535ace5613d19a22ffd8b81dc84f7b407e6375806aee82cb6c2de90a3d555248634c7a2735d2db9eab13e5d9fa27e3d23f891937fcd3466e0b0f28206d0255627943ff99174f7be654d936fcd3587ecee77d15473f11041429e6e8df756fb1a65df89e539ff00a5aae23f08b2a784729f56affa6e8dd3bf84f54ec3ce64fa2c3a94dcc0854b1cba5e7f251931811ad9f2b3747096ba081f3a1ae7d13eacf761a1bb95ab8e33ff006ac193fd9a131c09c4f9ea9add24f54e7581b26369e10c93b94e79fb3a44aacdb965cf54e8dfd2c54e6d70f14796e506364c7fb27cc81a5b11443f006073b584f896b309d554100038371ba83355d95d7306d288de1602396fbcaaae6cb4c8e8b111de171f429b840c223609e3c8c94e6925ef970c80c954ab12c81d0c21186ef84e6997933b4a2b7410f1c94511a7e6b1487b5ed8d8ae505b242b1b206ed77a847412148cb8f510a537641684c2910e4e1e53edc06ab700a69b64b0133e5dd36a790cf0215b282b756b7e49cdf88b875e191d781458d036ba9c9c08d9027cb07aa8cf245cecadd5366ce4d73c3b5e8a7ff2a7ca48441f5cd4bc8c5ff29f49fe7cd54998fe655e9b7119c3f5542a918d8316ea9d4cf940d9cb91e059ba42153cce2512396a313a9f35232e1984d3fa40716e11640a87153764f45a7766846617da5e2778502c8b2c532d8ac84cb2c74d954d3e80ca739bcc3137d2e161772afb321df929031a6e1e48cf2720ea735196fac2a65a5cd25e3fa2c2de4f29432c401d022d7618b6b02161f8641c8ca900b0e7baa82ac16ca7b87286f55cb86ac03a4a0c1ccd17d8a65c699e709f8a69bdae6755003a993fc20cae42ee60dfc61022e3bbd9cdc8a386efcb340b6c02823cfb5937112da85aed8aeeeae26e5b237c033d0e48b1d8f080efc2535e63090ffc49e4d9e5bd137bc0d25c08ba71f89b519b14036d656833ec9b3999f44ccda1ce3e8b15e3ea80127fa26b81c0e0b28009426004cc61a5d081ff00c2c5a0f751936dfac308b3828f0faafc27dd5be14d98c43d902a26498416d288f85c7dd616cc007409efb4fd15422433eab04035e3f85a98f01a2a7d51a4fc4f05c374f736194f9772ab9cded6b50779aab9e552a3f00f57ad1b55adf46a64826abfe8b11fda7a9b2a73767fa8ca86c369b48f44ff00c23d2ebe7aaef66a6c5fbcf573a1539b413f804a2201187faac5335675b597372d40c3d6e53ed21cfea8bae437d110e1fecd47e533f88aa84ec3a3516887d5c23f0aa60f209ea807e22f3e92a9b5d03f24c98630b8aa8f1121bd02898717108174b9d1ea9a072b7ddc9ce8ef2a6111937554a279936203240dd4ba1c4fd13e3927ea9cd64bdd619a69759ab9e3167a2193ac53aa3e03a3a233cc63d93291f36276d09ce76fe88b863703eaa5c311e5d53aa65e51ba7e1189d6d95b839d9029ce6913046c1328be2a383baa2e7437e81550d9ef00e851932f9f4e1f4e2748563ac75c977c227972584c179f60b3e5709d4d91698b0e82ff009a31188df6088117216e607f54d1e51f9aa752e0737e49ac6795d6d939c399d83a6ab97939fdd383624e1ea9de6911b044b7cb74778f44d6e43875fcbee1a33bfa2bf20558e6e80a2cea85dec98754d194a2df45b405d0957bf0f758b2b291752b42102885640856dd107f0adeeac9b8a62fd0dd75c95ed329d95bdd74086cb6467cc23d14bb3909cef2851539e7d96c9b86399bd53b04537b49086a6e33553bdc421e068112670c355ad6f556e77343961225b6de537291ee9af37f37429c3204b7fa27d369707dbd15517113b6258dbccd149dbc2c16a81d8f3808d225cdf4829ae3f68d2d3bb50acc05ae93ba75290e71ff004aa752cf8e8e6aee0f76fbb4ea54088683a41b14d7baf672139c7a2bc07623f29b14f679790ecac25a9b5462658a7b7cc70fe229956c603f709f4da438083aa8e180cb4c2662c6de43ac232dc2c90759536b7d516904371fa985f2891b26be40ff004a7cfcc3d5638d3a80a938f35dc87c392e4b1b8d5609bb60e8a1be58e928dc827622a286c53782cd884f638431768618388750b151c6c3cc33842a4b6a8b26b4f23dcd3fc4aa531ccdc5f88238b99a70e89999cfaa6923039cd39e69dfb401c7768419f3cfccb141896eea726e13b155b17e8816faa799c40b4fa2608937f45f691a750adf6ad18fa05b01ee9c7cd081d109c870f99bff0077ded32603c7dd567886081ea8d321ce78f45bb9b3b4ac3f1311983f904d27ff002b07ed5fe81aaa112dae7f9d54b63ab3e899b62fe6429e4033d0266ee3ecaa6207bbb7e34e38498fea89bf9bf9a118f3060faa6f94d405406e0b7a3535ae05a5cf77ad9173b30d9d334d06d49ee2aa6ac6b07e2726cf3556fa3421f0629fc4653a24bfd822e89b7aa7123ff4994f22c694d3f1623d1a9db068eb9a07771f5858b2737d94887557fb2a5996b8ff001b90166401b350df0fe69a5be4f7c9369b7f66d6fe1098343eeb1f943e139ae189ff009c2e6d253ac71d973e2c13eaa4197003a04ea96a4c3872c453fe381ee831b731d02a7900615479b7284ca6e87bf13b60118b08ea5467f54d9b1bec13a265d11b27b87d9b0c6ee4e99a952c8b9a58325853645933bc93ecb63f92c7e5fe886ae4d0d8a4193eab206a0276050a730d67d119c502555ed0fe597145bfa5207e141936187644b4618fe12a60012420c80e10765f6786953cec9d8b9bf35500e670fe16855aa443223aaac3fdefc4fc247d14d8921aa9b7641a327fb052e86b4fba38c9070fa044e4e475fc938bc463c26c0a8221b27f12c26035a9e048600e2b19332e27e205011cb7de5373a9cc7aa8b0cbef2421b20383a64543ee8c5d1f50a475e25685006ff54256d04ae8b7e3ab5466a724eef3138cad42eab50535cd20a8f894e48a2ada840a6ccc2da217e2446e4203374269898f55170e364274e8539879b990f44cb485ca5aec90b40c945504cc2279e9c96cdc1522f053e9e22f1cb94c220455970391958d9c984c68539a70d612d585d2d3237516d0a8208927faa6b85c5f70806e077330eebeccb0e5a2c6035c62a0c8855184826535f18e3d50df97aa6b4f98b7fa2c0391f85c34cc14fd5ad23d161896363a0545ec00884d930e23f35a191d744ea77734c7454c93111eb74f65301a454626d522e58f1a2be28923456f24b7d60ae60eef0b1fa4a74733b9b4706aa9dde26bae3e54ced0d0d7bf0d41aeeaa30daafd426ce17bc5b5409160e9d5303b05431d5caab5ff0066d6bdbb4a2088a5eb7baa95072381dd8e6dd5768230f2faa2d64dbbcea8bd90d7e13b387fbaef19ce585fb8329ff101ead2a9b5c4f799e72a402d8a806d9aa6fb17c1fc42e80ccb531ce965491f295847295504e2876d646d16f65b1729d4a0cbf37f542174519e5e8a7d10125a089cd67e6fa2911af5fbb8dfd955a8d2d653c237723f13fe8b03034783081ddde54daac7aaa4ccafe8a93cc03746d80624e0ebb47b2c467e2e814ccd360d6eb98cbc4ec0261cf115807d9339b784fb935206b86eb96406d42163788a61bd48ba736399a1b199cd49e592138e6dc3ea5069388df60b18e50f1eaaac7980f4ba19bdeec5f8ac9824499e9641de51f9a63732c1d005f2d325577030308ea9efbbea84c603cac3fc59a6b9b89a18d6eb2161cb1bbd0615835653fccaa66eea951dd72403086609cec1768ac2cc206e5189a8d79eaec9530d82e67a66811ca1f87736539bcff44db4c7b94debec109e5927d13dc0fd9fd4a7473999cc641359e56895206df84264c96bbdd35b960448127e8d51a623d4a91e573ba0c910d03b8f756fd1b8a9cdab0b6caa38ff00cac510837f48e60feaa99f2893e964e07ed2afb31136659189992aa1f36280aa3c72007dd01d5db6c9e4cbcc2992535b3876d549dc2249388a77c209f44ed4a988683fc455339b44f45f67869e1015f9dea9b2e1beea88bd424fbaecadf28544e9f544f91f4fd0aa9f160f64f03944a27ccc238cbcf2b8fb22fcc61f747cb72a00dd6017242c538edeab1d3fb384c653bbf11f44c77333f2375dd19c6ef443aaa7dd5c9be5ba3505e865f32b41b7a2bf5f08ff00daebc7aae88f4e1b047d16e42d96e84abe2612784ebe019a6911a284ed11d93f608ce4828e03c17b1087c481121c144e2cbd57c8e046c574e184f353b6e1089104263b25a0b22cc93ef8c02de89ae9d91d2e4287021b878152385d028b7954d2919eab10e66e62e8d3740bd377c2849832afe2d09011118413d404cae4e2071f4587d0f07795b7e89edf823db816e47d9370da7fe13e30ccfb2e618de3d2106bcb1b0c71cb645af8a94a9d8e50b03b92cd3a14caa39861768539ae0d7ebaaed0d7cf99bea9f91bb742330838097e176e2c9f60ec3d1c0aef2714123519aaedb08ad4f6d53dce0c7d2e5eba27b3cb71d1cab003137bc1d423fba11b648e3c43999fd1587248e8eba60cc969ea1134e69ba9872c377307b154b312d77a2613770f64c360f7cee1368d5c58c91d020e6487fbc2654372d77ad8aa6da92cc6d71d4140ac0f0413e8bf099e0015d780eb3a12aa6238f0fb1cd160fd15baa0e7f3b401b8b2a5f0549f7524821cdfb9139a6b735de180d70ea42b5d48eaba23172a77fa26bbcdfd506b792cd551e2eeb745dd8325b84e912a9b7e26b7a00a90339fba2e713f0f41213e4e22efe89c00d4a783e7c2b11c8bbf993e0e103f85c53d931802aa3e26b47e109a6ee75473bd553cc37dc9527943bd74563ca8083605192182e3aaaa40bd8ecaabbe17a7137c210f8aa14d69b47b951cc20c6a1069980e3e88bddcea9804b58e3eea072801567c627d95a5cc71fc4f2a88cefd1b609ac07053c3d655523967d4afded52ee92a7f454461dcabddd64d3523309bf4e887c21c7fa28cd55a91818e1d5c8800baa47a268bd36caaaff338534233c47725163ad6fe00bf14260b6229824301be64abf2845879df7d9811c32196ea50279a99cb3c2aee6e1f4b427b1fc89c1d2ed539c6c7d82b796fb4a7b409606b7f0a7bed74dc313ff089a8354c14cf2b3166242a926e89ccf0aaff0028b2a2d315319704c986b2026fecc98441cff34f6ec572622c29a0794a6ead3ec81f84aa6e0715177a8422ce7819dc26fef112c87ba0ef2b088b46eaea67709e19ca2daaa8ee600a787622d1d5ce2b1c80df43ba7e4f6ae63dd893b952f8c18caed187035ae840365d8c7babfd8b20e529ee9b47aa632f5082530be705f7289e011db80f00f55b37ea8f40baa09a33202a63558872f0fa2e9f9a63bcc3dd061c8f0d57457cf86113a204022216e82b2ba19cf09e33c3647ac6c89cae116b89c2ef594e320869dae9a1b9420eb3a7d96d30ba2c03f467d9333408b1586a1829fa1522e8ac6dc0ff00aa8cfc601c9462ea8e53e294d6b6d444ee535c43bbb6ff00baaad3c86a16f454ce720eb64f1e5c2fa6a9551cb0c7aeef97caa65b39aa8cf3b60228eaa0ce9c31b30bf4c8a15861f8f476e9cc71045d1d8945ac877fe1629753781d0aac1c03c02347263a6e59baacd8c2fc4dd16373e74d6134bc5cc7aac621aeba96c87900273590d7fba747341f64d738f96dbac6f9734744221c247554ce4d4e160f0f1f2bc219b67d9559b73055c58d30e037d153a92096877e141b954907484ca6310175de3326b8ff0054d2e3c90e5873cb44ddc2daea6434b71226f842701cae0cfcd5ef58fd507b2e1b5213a416728d5a53449033d1340904b134c6222d913c204af48e03afd17e1529da157c0209d4af29b7d149ba2d249c10bbcf8710f4443441637d53be3abf40819f3bfd5d64295321d84bbd14f99ab13486c4f50b153124cf42a9473174ff0012a63c8dcbe645bf1e7d32522cfcb54710bced089a704c1dd300d561fc29ad1b94e0310124fcc88dbdb8344e23f54006d9f1f85349bd193d556049c207a22d025c09e813ddfb3fa945a63fff0096ad1bff00714f73ae6eabb46188555f77168f55399353f853a948a98437f114d04776c9d3255b2bb7a0108b8eb2aad4c9861617c5433bc2631a402130b85db887e192bdcf54c2de6b6c8638c4633427ecdb3ee9c5be46b774d698300f445f62d1feea061609f5552a89a8e86fcb920d68007d1117b0f5cd7344b8ef6c93719eee48d4e887c067445ade7789d93225d881d012a9164b837120698bb197430901ce7f5d149e606161f2e109b00b813ea879698fc9739c17e83441cc38b41741f001006d904c73acd357a0c96118a9d3eedc7aaac5ce969246a9c56588867439a14dd2d8f52b0ce1663e89f503bbd18653299706b1c4eee4f74f2d820dd16c9cf366c8d53010483e8835d7187d2eb97e28dca3bf007413bc203960cf40aa0230730d8a7541f6808fe129ac69c3210788e71ae49e1b3f9689ef6734346ca00ce154c7cb006e5188b9f5401836234584f2994f7db3f64f81774ea15ae50190454668782d9f80a2baaf54d5b00ba15ea175c5c3a8410e02e0abd8db80d141308d3cdb6581f6f29d781391bf020934c03bb55b5f42a54e7c3a7821f386fb84f1f8826b4dec809c29d1e64eb5d3a7a218ae133ff4877670991c07dcdd4709f0d53e5a6e5530e2eedd1e8b0530e0ee63d325b132a1dcb629ee749715de80f69e78bf55528be5cd23d426d738a9c03a82aa6a0cf455809027d0dd7681f0bc2a78bffc8a3cdb8546b32188b2c9c1543682bbb71c763be8a4b439a6375fbb323a5d57a770e109af74d4e53bb554689a6fc60ec512db31c770806c3e58d9d4a2cbf9dbf33330a93a1d7f5c960a830bc91f296dfea8d40e17ff0075dd4e2a847472a98e2e762d53fef882ee400d001e8242961225a4689d3ce039a98ebe3cf25ea9d8796e7e8aa921b51ae0370a41c4c07d354d060330f508916c27d554ef24180138f9c09e889ca42a8623047e68b00b3dc7a225d67c1ea179a0907708e18719ea87c4e9fc960bc41fe2e0e22ce1ee1472e11ec85b91b64e6f95b253dc71563fcaad26d09ae0e2dbc225996131aa71fda18e8106819b8f529f558f8311a054daf00b8976baae5e5ba107bc0d9f584d1ab7d1aad719a6839e9aa686c1735527bb39f5466cdfa9550fca3d027fcee57f33937e5fcd36d30981d01ac2517f99ce83a35b0146503d13b46cfaa2e1e611d135bd4ff126cd9b2893cb4ffd45618c4e6cec15389c44faae6e568d8185570c83fca9cf10597ea5061c6e227a21bc03b66837f46dc5ee9ff1358d6faa6b6ec27d826930ebfaada55fcadfaa1049cb5b2c440a74c18deeaa8f355637a26d36918dce57e56807755aa5b98fb2afb4fa396b5ea0f46dd1609a6c219f32683352562c99f9d826cdce2e83257c2c10d3961cd56f8596fc4eba739d2ec3ee533bc9b42a79b0011f1297f20e5453a2d81ab1dbcdd4e498e9c589e065b2691cac760dc2c739cfe25830b9903724ab820e2e81ab1381feccefe6309c59a33d113f19f6098cda4fd564e00b8faa2ef3181b2c3cad00b06a177826f1b04d6801cc27a4a22cd6b5a112df320de52fba66cefa2633640a196e9acf367b2f9eeee8aad5008cba9c9479dd298d1fa21ee99177e1e8026697eab15daeb263734dd015de09008f558cc9a87d0200799d0a9cf984a96c028eaf7207a9da5725c614ca5e6b9d82a8f6ce10c6f544b7153e63d5563189c27f24e221b841d4a67c43114c679400a09c65bec82e889dc7ba21147747aa005ca67cc50f55d3895be254ff0017b95233847e7fc956376bc397681984e6897350d934e6df74ddca9cb86eb70b63080d174b2dc21934fb23f0c7ba917cfa23122e56bc09cb3ea8ebe0213b44f6e5cfd25590a8de60bbb7e1330a32f0c070d0adf84a2adc6de03c0ebc7a2318e2c9c5a0171b2241b4b9537d405cd129930ea74a3f34cce91703b10a90b5405c7d5767780047d5603e6781d4c84ea567b59ea17d897857cd5a250caa343c75d15310e6d33ecbbcf2d53ee134118cb71fe1b4a7e6c796468724f736393a88458d9a8c036c2735df3f90f76ffc8a125950b316a9b8bcf9e42154609170362aa87ea3a2ce4faaeee7e5d9301070546ce7b265777207d3d8aaed1caec5e888e4ac4f494e68c2c772744e167730ea896fd8bbae077fca0410893c97407239ed27644688074e331b143a7026714468b13acecb485b221c21bca7541745eb75cbcc24f44227241d50b21d3bee87fef80d93833ec880ab876ffcca181af9f7426eef659814dc50f89a00fc4506d3d214b72374d6e7657e56e0ea53661cf241d935b5269b5ef1e8ab3da5c5a034ee538ddfdd83e92bf13cb7e8a239a9b07532534fc33e8d50670b005b227244182519ca11275f70a7e3a9fd1326247d53698f30fa29c8e2b2a98793f355221f8530ce37c740a935b2c602377156e503d9171d40f54d1afbaa60f3beeb0f903a3784e63ac49f509da902765f660d371681f32a7391aa4a3302986353066fba664e71f645c3929923ad82738c3deffe50a3e22a8b5b262dbae5fb365b5954dd77318493b264f2d368f44f88633115da63f4472d1577c8c247aa7e6e747b26e5f68edf44187969347a89556a02e37e8aa4ff00e53a71499d961773142989d744ea9ccecbaa9b1e567e4a9d46b833cc2f7d538ec0faa01860c9d9344e34c6cc0c4a6749d955a8621d75545383187aa636efa84f409aec813eeb07338c04dcf113d0238e5aec4e1a29223cda0844925eec5d004f065cf86ecac4526ba4e70ab1fc28373e67276802c06548401c8a3d5608767d653df9b9ad11ee9adfd109fc4badd0dc9523c83dd32648057765b1763ad0b0811cadf95309e6ba6b8b60c009ad8fea8c8c22538b4830e08b0f4f452dd7db832b5e9922a680a73d9f6ae2df540736371767923f19f6ccab0d9464b0ec9fa32538e745e56ec0c5d6c826bbe65f85745d384e680cbc251451d0a7eff92ea0a22c0a319f821386b3ea83981cdb2cc7e4a143b80f4f557169ebc2335b70ebc04f9975e2f6e4fbec562743b3e8b658dd74f637cdca8e1ca426be9070b2b70bf03c638420b7e11a5f882215e08bab23d4fa2a0e89f3263b2a88622193872985471f3e207d5536be1ae20fe24e61e77b48cd4f94e1f5b829c1d22b3636287332b1be9842c28c449c3aa351a3bb38fde21112d36e13c3ecda0bb0c59560f05b0e66c13b112d74c7c3083acc0ef655e9d3ddbf336cb7e18c61a804ee9adb4b7a2606f3343474c962665882eeac1bcbe8981d93637c4b981896ee0a7e32e15061d885de1c54ea00ed6157167b98f1d5550e270a366d4645fcc9a4f2556cf5b20f9ef183fe5319953081176156e59f458bfe503b7d101935a8379642136cd6ca3309ad1a271cdc48551b10e3ee8d469969f64c6b6d27d5531f11f44d3a8853e52a0e1372ad2dcfd54b6e255263f09c52a7583d141bf78f3d4d963f8408d9131784e6b3e6554de23d562f34177acac36100f458b9712c22304fa94eb18681d13459df994df85b7e8d4edbf357be0f6ba3f2fd4a007311ec552d31bd34b32c31d519e4c44a74733c31329b608c53acaa78bc8d8ea8180d65f6011891cbbac4434bcfb35366edbef28070861253e3e168f545e7ce7e8b9835ad9f5470c4d30fd156b10e64faa25cebb89d8054daecf09faa38464ef6553f0fd1020627c15d9dc267f35429ddb87e884f236fb9559df3393a398860ea55161cdcf2864689588c35b07d53f4738fb291351e310d0204921ae77f115ca0d56b437f09ba05dca9e5972d615583671e2dc283cf53d9359613f455aa36490c69d0aa348c9b9ddca9630da6cc6f5638f3f554c5cc26687f24ea8c96b39a73516c588ec15478be111a2641c424a6d3689c4df45601a0fba73cc1fa2787e1c2716c9d4809735b283ce5de46ae45c2c031bbaa4d1794c65a9d2fa2764d0d6aab57cc6c8b0651eaa778432d1346b3ec980629b6c9c33635addd0273cd631c9530e90ba3de42811804f5720e303f25bff55d04a79d7f241c3ccf6a88bc9f06483b39f628002e63d55eed50333ee9e5b34b0bb784f30ec5813264dddb95640688a3b147818e0250e11a843e6f086364dfa2ef09110379f0dee14f94c14f832e0a0df3f092600328b4dc470c263e139a1efc2109b207c6d2eb123a059e1265109db944145d4d856bc738d7844839703e18e062c89cd6275f2548f9794f5c940e7503761d56128bdd34d56fdda7b5a3bd6b4941bf0f2eb1a290d34ea06f48cd1a608c2d6fa2320cdd5580e68041ce148e7a6c737d136ad3fb33ec554a7630f1e8b09e6647540821ec91d532a0167d377a59549bb646e141e4b3bf11ff00647bbfd1b71eed28cdff00350510273e13442a948901b89bea9ad975dbba6549c5809dc26d2107e9a2a4e71874054e9f9c8f529b4439c4e2a7fd10aacf3621a15dcdc931e8a4e69fdccb3984dd0d5a7e8a8b9b6bfa2a65b77dbaa6b0cd322fb1581f85cd0e072854da3985462a4d87e3741db254cb83bbd1f440cb29b9f1b94f6b6067f8910ec9065dc2db84d996475431723c1722ec9c07428981871a6bbd540bcc23332a5d0627ab562bb1adc5f456e7a152776a7e29a4f23a3b44f7c3a04ea554d3091eaab4da0fba7360e33ec980c1a952dba155d34dc09429999bed29b84170e82eaa9384ff004559f67623eaaa916704fa6f925b3d5c9c6e4fe4bffb2a0ffe144ce1bea98323fe90b1795dff006279d3de577061ccfc913ccc6393b16447b4a2e8389df4840932e3f554879b0cee50736c5c0744dffd940901af1f4584ce1739db90aad84b004d688716b8f409a2f8a3a041e2431cef529d8439ef0de802662b8793fc286071ca15270e773a55f974dd3ccc94ef87fa221b7388f54ea82345257d8b04dc2041c87f0ad79885710433d5521671329a098604ea6db969272843087ba018b9050c1c8c3032b296f3b8b754c75401a4dbe2845a4b5d0ffc49adcda255273c0225532d89c2734699e477fa8266532e08163f1618f542f80177e4154b777847a050e25e65df88a63c4b9bcfb82b0da980d09dba8cdcaa3e2018dca0ca70e77e689f2c347cc6c9ac16e7dd55736e3bb62a6d1c92e3d53aa157baa87958e2d0980f3e2726830c6af9adee9b7f897e1b26e1c53081caa28d3ea8ccd9000f342e58171b94e246709efb9b752994efe62893c981aaa69755263fb3dfd15478c9b4c2c16c73ecba9e1b93c2a00229c89dd5426ecc3eeae2f64d6d9cecd34032dfa201f872e88d3ccfb26bdd02982980d806fe49937a9f9a68d533e64347268372e3ee81c82e9c3a2e9c5af75ae504d0820354e779d98786310e581b0d5d42683914d77440013795cd6cb811929249f01b3be89dbab43802362a9e989bd1309cca753711921916a6c484108907e8af920ff54ef833d53b54e0b712a5fca8cabf1b7dcc66380e275e0c3e66bbf9531dfa3a9fea5ff51b3b2b43b986c507308a62db6c9cd32299431791b1b0423924a2eb3b0cec536fc8e1f8985576348031b3745c53e6c09f455f94830a9b9dceec0fd675551a4774016f47221b35601d8142a79490539a7983be9215332d7590021b281bd387bc6883bce0877a595178bb87d15374602d3d116e8563ccc2aaccce3674cd35dcd25a569898e1bcad4bb9778c94180e0f1d553a72ea64e3d8a79ca3e8b7307d2ca39bbb639b398d15b94870f554f32c03aa0080da8673d90a84c3862e8b0f918c746719a26ddd2a4f3e5c2ee89afb3fd8a601773e3d5536980e277128e290efa90aa89c2dc43508fc9519e97466315fa855980db9776a6b99b3d3dae0553f49dc4858bcb974c95561f87e8bbd25aee53baa93f6956da5902f3cf51a7f253aa7b480dbef28cdd8e8434253673e642c404c6cb9c4c6ca872bbe909a35fa5953d31fd50cf4517c3f543703d16c03bd509bb87f2843644fc0b15e72d1300e620fa2686f2d33eeaad5cdcc60f546c5ae98eaaac647d334f260b1deaaa62bbcc744e1769faa9119941b9e064eea93356c7aaa6df80bad995f683bc86d3d91248c6f7de04058aee047ab9305b12a5480316c90821bca37080d2e9d541b06ee50c40044388aa1a232812980cb8b888ca5330f2d393b9289107257e2eeec0c9a0a05c4b0b712c11ce187ea9b55dcc2a387d106c68d3a210e13ca76364c63b22e06f2e29b0300a6e550fc4bdd47969c752b193ca1caa39b8465b342734871698eaab1fd10b74551e4462277467ed0dd5fca2c9e088619dd54a9903b2c1e7cfa14651390baa9533e5098cbe12e3d56530348504f76cf729d8402311ea9c0d9a1b2aa3ef51caf73206cb0bbf0ad58d6923e672ab504b9d0360b2d3d4a6bbe6f657b8fa94d1f1854cda64a919084ebf37d146f280bb8b63aaa8f167b70266b2e298dc87d1369ba2139e2c3e813e639894f75dcef69475519f1b59756c745ee9b8af6524413b648ff00ed34997e2247d1611986b7d1777664171d517025d329adb52046f2513c1c4d9068f3158b7415ac8ede171b5835068e55cd0c6ca26205f5e19dadc2014764e3e632b658e273410ee00d67c6d19364f55bf871341dadc2dc08365264f09729f0cfde380c2e873362a8bb99b206c88bb097b7fa7024c085545ff3053bf68da4feaabb5d61cbd13dc670b42f9dd1d251170eb2eec83de29174c20f284d6dc0ff00b931f7e661f55ae374f456d5527bbe295dd6b807d53644d5907a28b6169deea90bb5985fea857a7871df4e8bb4d3300621b8c95539d321ba854f3a94fa64982c18d8fa267780cea833cae7cece4d2c07063feabb37c74cd34c70e4a93eaba129d80e137559ad824c1f995f708b3ca206c8435cd01b3d1532c2e9c053d8f02c67285522e5a155a6e969187554dee8c25bd509d3d51762156992d3b2c0e96d528b5d389c1da2e6c3507d5507dd9627629ec322abb0ed098eb54753c436545de7eefd41baa6d3cb0b611d08581c26de8734d7e6d2a2f3ca854e6a7853c5984145ad9aa09f4299f09aac9dcd9542794872f9a94427c5985cde9a20ea6d9ab87d027821d9ace0205d8a5ed53671872692e230c8ccca67cc15370f308e898006873484d600db99d828386074929ce68be1f44cd4cfaa00c83eca4db30bf85044832846be8a3a0ea886838ade974cf843dc7770507ed1ff009a0e9389df5530d692803e6ba2cb35bee53c1bbe3f802619c42a13d4c26c00d8eb015ae6074baa01d303dcac6db54c2df441a7913a664a7b985a0485bfd023930068e8a187d56d9a974a033525596c138e89d9bb081d4a6d3c41ed99d0353cb4b69348586ee327647019b754e3949557159b1d5547bae31387d17cce6e21a2263109403aef183654e2c67a625b911b058072403d02c7982e23728d2372db68149f88a7547fd902135dcaf835139d189e2068111cad7591b6012844d424f40bbb8eee9b4045d99c28db0991d511394752b0f9ddf40a6ed054c1c934177298ce4a2482d103d1389cf0faa0d1acee514264fe415479380611f314639ea4aa7a38a0d3223fdd16ff00e93b15e213c64415265f18bfa2c19c7aae929c7a0e8a2e4027aa79b174044659a7bacc6c75440e774fa2b68a0dd46e9e4ce11ec81fe2f4536c30a9327529cff272ac324b8b89cac9a1de6758649d5b5029fe6835b6f36e86b75de387c2c51c083233585c5d51b8935da3bd0291e58f5509da047e2410db87313aa27cb6585f8b1cf18e106daabf827c16455d18e17f05d487057ba2ce16fd469b309f3be551aa3cb80fe14ea72473378961e881822dee854f335a46ea9177fb4a34e70d494f0e00d291ba244b1b3d0aef265847aa717e2a6ab53f86cb76a0727109f19828ea8117c968498418ec58dde8a25c1867705070bb4ceb8931b539a961eb364cc6399c445884315f98298752e53b1469926a18c48bc18a9eed4e121e4bfd900ef2bced3a263dfcecbe564e0796a18d2cabe18aadc41558c316f4945ceb86a3191f508fc5cc9a45891e8b1138671755575fea8d2644184ea9ccce61b22d185ec38535db8f428b2c1e48ea81cc7e4b65cf3cbea2c51d2155d1df50a9d6f3083b84d69b3c93b2734439a995993669de157a4eb091bb55563a1df984e753b1683d10c31508c5f326bf99cd1ebbac07ecdbf54f73c5e3d13c87447b2810d380fa275f190f1a8401893e8554a769e557cde98f79737110ebd8aeee1a29927aae5977663ec9a482d7967e128e0973317409af6e22c2c3f28283f2c4cf74c636089950395b07a094f68ea83059988ec139f071b987e55fffc4002a100100020201040202020203010100000001001121314110516171819120a1b1c130d140e1f0f150ffda0008010100013f21b745e1152a5ba2ff0083a8740224a96e8af3d2a574314c61f9540817d49d121f85753a92a040e9171cc6fa85e8178b8f0e6373d265cb0e2952e80949e90254a952a5448f847c63e33c31e5d410861c4188874a9528804a254a2512a54a254a9528951254a952894ed3d230c31b40e821fe1aff00855d6bf0313a2448fe44210ea7fc33ff00e6a1d92a54af994874e6ba7c7404a769e931fc01351254aea12afa1ea572f7b9eb011ed95e8f09e518a994a95d4a81d152ba95021310812c8032ee88b6a0e49346372baa4ed130873e26c4d210843fc152a3d065e9241518a690843f03fc6fe152a54a891ea2bfcd72e5cb8b162cb972e0c3fc2f53d424495f990e843fe0ac7f1b972e5f5b9707ff00c3a9f11e9503a812a563a32a54a8e3a3f81d0e9b944a3a3d7995f854a2e5745747f2a95f828a1066606676a07330a084c77983f00860c3fcb52a24bba05183a03fe0d4a952ba574a952bfcb72e5ff84b882060cb972e5cbe8be85fc92244e8a952a1d0fc2e0cb97d2ff3b9729187a6c3d45cb97d6e5cb970ff00f0ce97f88cbe8acb617d0e8f4a952ba0e80462bad4a952a54a952a57e1717ad7457e2b2a04a83509aae650d30ae13983dba784cbb9b6fa34ca7a367448197fe37a544892bfe555fe5b8b1e830fe00fe2020824ff0007e5cb87e49fe03f1b972e5cb972e5cbea2f52e5cbeb7d045f518b972e0c1e972e5cb97ff301d1e113adf40e950f2955388f4ae9b952a1021517aa7e0ce253298103a54ca6dd36952d11fcae5c3a1995352880996373bb0806f3d1611604ea1e308db2bee2eb33b301cc040841248f4b97f954ae89d0407fcca952a57e2c5e83fe0965cb97d041f841d411707a10fc9fc2ff0001972e5ff8565cb9717abfe1b97f85f41972e5cb972e0cbff8572fadf561aea91ea0952a59853a1865254ae95157d048c612a6e119432e8da540ae3a61adf51d78e8c5063d6e54a8741e85e814233135155160920b3b51c045e82a9ad85b065aa2ae863b2cea9874105a0ff8cfcee5cb972fa2e5ff00c14952a54a8c55f80568742e5cb972e5f45fe02dd172e10e821f8dc58c59717f0b970eb707f0a95d0fe14ff82a54afc6fa8f43f3b97065f5b973b26d90f32e82db78f0e7133bf0b00dd87bef2e9eb2b0d7ed1663b27fdca9ab6734ac24cbd7ac8feae1e142aafb732c5f5a2453ee63fd18377cf3ea582071b5a7dcc07b7d470c6e93c743f8f1d6a1dd009ccaca4a75654ac4ab85fa13d15de044812bc4aae2574047a540952a30c54aef35ae972c8c5b195d2ba011e88fe41d2e1706210edb9e48ddfa3dd623bcb9e204010ecc950fbc0ef2bd17a4eec1efd1243d172e5fe172e5cb972e5cb972ff001be87fc3630c3118257e032e2f459708b065cbea740810257e2b165f4b972ffc243fc0912247f157e292a54a812a54081d0ff05cb972fa84a06a52e31bc418a0eaac72334aa9a6ef5006cf41b2f170112944c108394eb3acdbf51f5076aa18254c4317c3f52d0004174387c47fa1bb1ddd7ea382906c5f845e20f94b972e5cb875c4257e2bb9c740e84c4b3a54a892a07508af1f8841595288919f102302a377053de54a952a07795d40892a54ae80741e3d26199eba12e10410d88d34b07a53912a878a8019fd4452d866ee70a3e73b106da03ffd810487781e97afb97d2e5fe0cb875afc4eb7f8dfe02e5fe4c1f83acbd04e972ff0257e0420820812a57563d163fe23f03fc2c632a5448ff86a54afc4fcefa5fe018544854c0ef00e1492958ac638bfd4bd17127e1503fb85f82ef2a023f809905ff11183c02129df6d47788e4edd6715f4cdbd2ba98babd4d66db80ce34db863675e5a80755cce32e0cbbd5d54a9eb060df45f45cb97d1709ae8b96e8b972e108b2e5cb83d2a7a8407a34950769684126713a54a9518f48741b11e854cba6ba3e99438e8c3cc47683da6d2cca4c751f08461d150a94865d046708bb32dcf97a11f52ae33bc2f4523ff006d2dff00b26b1605b25dc91dc530a03b9d994dd8e207949776ce2915c90f3e8c3ad71866903174bfc0875be93a4b2e2f4117087e2f47a12244892a2462a247a1f907f84318913f3ae84a87e372e5cbe972e5cbfc589ff0087e6b1fc2e112bc1c9011da32b86efe7e661c41aa3cd3983585bf297dfbc44ed6f6037fcc395686d2bc0eb12a0f10e35e332c429c80ce203595d07d8b3894ca768bf714300f008714300982a03825cb972fa0c1972e5cb8e52fa1b86a0cb893cc7c65a5fbf52d08a4a7109f9cce5ce21dc94ef284f4e918625903b74563a2623327b4213da22253a997887e105b2bd0044ae95d03ad4b712f0c8f4031d16ed022ae26225ee567513c75103c46fd6b9a6013cf51514e6672dc4bb0a2b46e521b0dc7733d094c709b96f7442adc4b1e49e4845e5cb843f1abe8632e5c0e8087e2f462460448913ad7463d4fc0210fc8b972fa3123f8a2a54a81fe0b972e5cb972ff000b972e5c7f0b972e5cb972e5fe0307f37f17f27f0be97d2fa5f50cb971822e5cb83de5fe235d023e25e65cb8338839e822e5cb972e1dd0ed87403bcf17a8b2fa5e7a1d10ca5cc21d08ee5dc0951ea31ccc3d40812a612a1152afa13a0a2691966ba2dda7da5e148d9c4425fb745c96d6fa0b3d98df7451a655a61cacb3966ba39ca07743c658047773932ed541a10165b0c23158095e81b4bff2aa263a6912318c58c2fe043a1d0421065cb8f42fa2e5f5ae952a24aff88f4b8f4b97f95f4bfc8972e5cb8b2e5c5972e5cbe971fc1fc6bf33f00b83165cb972e5cb83d17d4c4a2ba68944a746a303a5d4646f5142b2b2e6d0279465301e972fb414e23896c3a5ca951c429e87a1dfb8764aa847a5cb970a8547a2f4a89d6fd4a8307c4372812b0ce144a226312a574303e8479968c692d08fb96d44f173b0cb1da0f6bf73924079bf8870a262c67288c03595d196ee9ee96ef04dc2b02148096c22e5ff00852fa0a8e4318c63d43a042108419707a2e5cbeb72e5cb97f8d752a54a95d6a04a95d152a54aeaff00c221f8dcb8b165cb97d2e5f47fcb52a2f53ade62cb83d50ea5e6794b832e0f4583c7a72ea6e2f465c166e5741829707bc58256fa0710ca5cbae97d40d4de0cb9b86e5c18570f44eb5d6e0cba25c63685f549518d9160a38c5be86262864ff12ccd613b4a952a51c4a892fbc5a8997163104b0e650ee7044e4d21a84e733388c17ccef2177849e5d159e49e48073076ae168c04032e319ae608232a3d1f2952ba10ea7f8cfc4fcaa54a94952a54081f83f9a747fe2bfe17fcf9ea3065cb972fa67a8b07a2e1060c19788741e94e2590803b9425252a06212aa04309e32a5c5e97da5bd2e3af45c199b874a469b94e27a4acbf1080a5b89678832c63f50964dbf04c4a75112971089ef0ab2a9d59e9a74b972ede81d6a574a8c7a5f45a95731f388ef7d017b92bcc5a898c5cb973c56681cd34f9e8ce95e6618da2cbc538b330c444c7bd22f2134577e1821b4ecc3c50f889d83e67979a7102613a2c2fe352a5422a5753fce7fc0bff001a462bf1aff8d5d6a57e09d6a54a95d6d2a3fe3254aea41ce3adcbe97081839e86e15d17d2e10653994ef1a65743a5cbedd065cbe85f45c59cc25431d1930843a2e132e09750732ba5cb8cb679740aa01cc71a97d03706730204e26d89a8308b60c1e9612e149c5cc44493b5d43697d08ccf08bd1d45a8b72820c195e65cbb264cdf0b01811f0ea3d39f1010c4430cf99c5d2248b21732e01e657bca77840841274d962ba1d2fa5f4bfc0eb50ff2dff92a544951254a95ff000ea54a952a54aeb52a54a952a54a952a54095d2a3d4e89d0bcd65fb4bcc20743d9d2103a54a83e866d2aa1333306a5a5b8b8f23091f722a36e81910dc2d99a4dba92a308511661d23712612e30613d3f0d41a9b4f884196274b9b971ea0bf82f1067bc6bad4bdc68433e8de1f86a87e50187be67d09949716b72914972ee61948909481dfa8453a48a9970c7a57e8ae95d086984e6237b8d552c1e6277e1ea01032b2b10cac4cf0e862f2a574a9503ff00c1a95184e8ff009ea54a952ba952a54a952a54a952a5752a54a952a3d1254afc48aa5c1399889fe018ae1ea51d8884a768e389798eba1d1e8f8e95d2b1f85b72d832f1885ca95d2aba24312e0cb830e9708cb8b065c14a7411ed081b816c6419432eba2f118f94b7e56ccf32e5c182cd6d80332e1eb0de2e3a5bd172e0cb9a752e1d03a54a4f082b72b72838988d75ae892f3e7d6211733b34169cc08b80b640f2405c30962a0a66025907f36304495d6fa5cbfc2ff3bff8c918a95d152bfc752a07454a95d152a547a152a54a952a54a952a5408b065917f0ae955d6e1172e34e81ea422e8dfa089d3af4d7151e95151e8511254a959fc01ae8741dfe04c45830821825d74af40b87e230cc10aae97da6f883d05461212a574086fa3d1851b9d9d4cf2faaff0000b70e9c43a576e84ca6a1d0e843d7e19e8a9512243a08fa4a8c9213ca53ca0f3cf6fe6722e24f139c88f28c39601dccf06ff058c308e85cb972e0f5b874be972e5cb972e5f4bff8cca952a24aeb52a54afc054aeb5fe0a952a54a952bad4a9508f4be832e1d2f3d0ea4b9b8fe24026ba077804a0e63e25ca589708de352359797ef1ac54dba952a275ac747a5c5972eba2e5c1832f33da6907a6a283d04b8a4df4be93c26fd5ce52510db98f8a21c461183173195b972c4b317a33899e957d178118095da1dd08ab7a02baaaba0661495d03a3bb18aca95047a1066512065a9d84ab446a5cb8f4181d232d663d194061d17a5657d6b97fe4b97f85ffc8b972ff10e95ff001abfc2b2ff00025cb840e8fe2b8b2e1d6e2e97d09070ee845fdc3be10bef2e0121531d2ba24bc59d0b80ca952ba27e012ba172ee3b8bd17fc211840f31ece8cfc4d7a2e5bbc0b9849e53d61e7d10f32ae88e788971233df567117a11952a24d747f53da54d42139d7422ca95da542f0ea0b84071098e8b210e62a1d283a45257880a809d2a738c2ae12e5147500510261a83da1e5d2cbd0b87f82a04afc2e1d2fa5cb97d2e5cbe972e5ff99e972fa90ff3d4aff33197995f89d581f8109536812a1f8575a8c73d2badcb4290708de107417475d189564abb97755515e3a0aed1f18c6ba5cabeb9469d732bad9f80e678418774da5cb83165bbc19789783e59f6e966fabd1632ea5dfe06530e9502540948109488f6e81709da1ddd065a95d074a63278752ba2a25fd058e87302691ec95512fa8c363aa98536532d6e5b07061d0874aea43a04ae861e97d2e5cb972e5cb97065cbff0009f854489f99ff000aa544952bfc291ff06e2f425c29d453bcacaf5065c2af32fb41972c94edd0a3731de54a898eb52a1d0673d07b89674a616433d28ef1c40430cf809d94df5195f12dd1b99f1291ede8ae84955d1eb733cf4ba83d370e85e3f1b8742fa0952a54ae95995d6a1152a0420ca054ae82d0aea04af30950eb4e99d70180ac43c19eaf41db2d30959832c5ae951b9297a031830cb0422c44c5662d92f1741d0843f321f81513a3f85f4b972e5c187f99952a54a812a57fc9afc5fc81d654a95d6bf07f2b4197e8ca118b843d92e1d1c61d41172fa0cb3010920104a8077e971853a35c91cca95e3a35d2bad47d4a8cafc0547a15d092e2dc3a04a82275a9505703f1a951bad40874aea43a1021d0e80571d1acbcee8f58e80420402e12f52a07e34e8aca25cc309c4c4bf5146ce8629571090a62cb23368412d0e8421d0fc48754892a244ff18f5b972ffc552a57fc6bff0083278fc2a5789513a2d2ba54aa9502547a12abadcb745f45fe150e84ba8498f45cba6650a740a0e09877c39a66dc1608cc7794d45822625a224ba972f30e952baa6206752bade11b11c789e12d2f040952a65319504f7eb3355b950254c3a3b0742f70e33eb090133e27a43b2faa97ed2d2f0a4f6e8f2fc00fc254218842540952a5f12e317a304b8303a0a9e5290ac2cf518dc31d126295d4874b8f4882081972e5cbeac624afc87a1ff06a54a952a57fc23fc552bf0574a899e12b32a650ce2fb4b5c3ce3db05da15ed2ab5d373299cb769dd858710227a17b4a660414a60cbe9707a2e5f41972ff0011979ccbed2efa108196cf2846a512a59ea33eb2ba575afcaf2997530eba566574a422a575235d2ae59284209fbf4fefd40919328784ca579a98ea15d9003887612b12dda5e0e61d03a0e87c66112ba5cb984beb130c3aa9c4b71298a744b4b841cba442506612523d326b148c0cc1a9dd9b874483a99353243a53ad1d65cbff00f11ff8243fc89ed1352bda384487521d173d266172ae2e5e1ddd2a76883b4511cf116e35d0c4e961b8ab512575afccfc8dcbe839dc1840c1c7425cccb9654a89f12bbf4623e12a30203a155d06318998c13c2579ea4a95d0c4bc4a9643a163ae4dba0968180952a0c6602527bf4fdb03f3d09120752095094e8e10b4f7850ef290e989503ac7674077944a20743a12a574a99747af4041080812a316cba3e12e32d08ae972e5c3a574631ff807e27f858ffc021fe4eef53ec8da694912f04bde63d0269d446919ea66a2a879c44728a4b8ea6ba2cb8c20465754952bf03f13f06108314b9ac3ba1d152e519b4c39e9d630ae263358774f18d3a57453da04ab982547a1a890204440fa8410418c4950d40eb52ba903adcbea125f4542150a857404a8c6bf071d2e10653f06e11207e24b97d4fc074043f0a9518063d0afc40211512244952bf13a1fe43fc4c7fe45cbfc29010d210d62c617a5c53be838fc328f5a113b462ee8978849440952ccf3868744952a24ae95d53f325f683d2e5f51172e1081810970710852fc746a0113b4df43ebd2c5fb4a8129d5897d4f7d2ba1e5967783e7a6a5c1ea57a2e5cb96e816527e9d1623db0eb865c24f38492465f8df4b832e630a74861040d9f911e9729032bf8022bf26318fe64254a8c3d73d552ba575a952bf3aff001a7fc2b972fa5cbe972faa4cf980d6630f5314571d1695e216dcc21d896e65789eb0854b4b468a20a041dfa28f51ea075c3a9f8dcb97065ff82d972e2979e8b830a741177d0a7432dca753ccc4e3f0aebb98ed02274317440cbc4b970650e8b969ac3a4318b9bcbcbc3d3a7dfabbca4b8756612b06fa0a0cdc30984a54a79994beaf42e10e878845d2483994949e12d2d2cc1a34a60fb740a7f82a27432fa2c5830843ad4a951865fcbca95fe13fcb52a57fca1df1022a28c09cc7782578808724bcdca39988cb98b89730e310370921b826a302b88b10a4b80c65cbe8b51c2265ba5ff82e1fe0a95097027308c5372bf05507adcb83d424819770ae95d4e98e4b94e30442a3dd2a7e24c211770cc0951979ebdcb84303d032e5e5f9e9f24f687674124b36ea5dcb7bc42121e9b180302a07437d08129b9cca87424903f047f953a3474a8c0e81d6bad4a952a54a952a53a184eb50e857fc17fc57fe4aeaf5f984ed7e145897259ccf298235d4562ab733de58d315cb28d5ccb5b8f8629d1b4cf99d99bea34998caf12b3d310952a54218a892a54ae950254a8102574a9a9ae6612e10aefd6fbf4b8307b4b4b12cf41fc062c4aeb5fa2d1352e522f45fc2a690ed4599ae8ac4084a8932e22c967c42bd154f4a952f2ba19c04092a5af50b4608ae8b4cb2a10f395da04f996c4e60c1e843f03143a178e810c108307fcc91e83d01081fe77ad5c0fc2bfe0b1fcde87e15fe26574b27bc647dcaf681bd4488f69319f18a712d12a2314cf795b85210040ebf1372ae69e3a486fc407401f115da2ae5baf594993a8f690ef951f52a24a950332a7cf4f8950ed987e35d087e04b84b875a8454a9982054f89474eb0cf7f86cba23093ba25997a2bd278c1a9e93d3a0d2539332b3c25095d0812ba10c0b9e1e809502542121194d66129d895e92043a049d0a95f81258043984b97060c1ff002b13f03fe0b187fc7a96e8afc2a57f9de8b8181bcca3d07311069148452303d911788151741ca0b9e9ccbb8ce21673293180a8f406ccf73c620778d7c4a7626ba8333959874addba0f565e812ba650aee1f04495da53cca94cdf3303f125e61f80f464f4b97d433084bef07a5c197d2e19820d4598f4654a952c9826dd19513a12244ed29e818e95083d2ca50f1113507ac84a82952bc4a952929599a752592fa1eab3d35065f4b832e287f8dfc4ff008552bfc47f8aa54a95d5eb52a57f8ee5cb97d18481e232fa073052610bf3d3e32f3348b997368e711d2d2d72def1f70a748e89a840ae818455ccaa89c13b84ab9110d106ee1f6898963f29b2c899e32fd12fd130f1d0e143e5d160890eee8c7a24a9501dff0002aa04a7e02bf0b832f12e5f6963733972e1d070f3e8416cbac1dee61b8044f10e8c08047b632cd32a36978becca7f03a922e29bcbba44099a039948a6e278234e92b0a755afc054a952a631cbea1042117ff92ffc9597fe0b972ff1bb788b2213c12ddba3cc51c4be8b1a8b61d9d4fda3d2d65e598ae148af78525c22fc4141cb72c1774b5e1cc172996208e60b9827d75182066e55742472d13d71c35d157118b13099e84ba4f0c7be3db1a6c8e5ae8684096a96e60949513ad740b952bf002531847f0202c2c3bba17c3be1e703a07d35f11e87ae261e3a1a71d53d1842d18eef49cd4bcbf42c4bc632f48096c7b6147f0dc654a952a389b892a1023d57e157d6421ff12e5cb972ff00fc97f1b972e5cb972ff2c364a332e2263288b72995113b7a17f12d713c4afa9984a8418e279ca740a5a6da8d788d20b84d78e8ce0399d9d41ca85cdf44908189a42dd34d4f6c7c22f8187453b4b73d37367400bcc0389eb3d634d13c529c91ed450e08be4fc2a5742109a86930f3d0dee02b30227708b2543c20252a5207a97ca8204106202169551cc0b19316c7b117d1672e3a4bf449a3d1a3a27fe54101da7a4060f0743b109a886057e274631fc0e8c33021215d474043a1fe67a5f52e5cbfff0016fadcb972e5cbfc03f990b97f807b22e184a5caba9c88f821b571ed32c9de9ef2d328aed35d45edd15420cbe82b98271145007b443b8185388d388fa9f139d22fc029d47454ba34d656336615dca769527accb89f1945c904f529033b314d92cd45cb76257981da59c152a712dda0a52b4cc5d4fac7c59778a83e922fda5bb4f0c4991530f43e107144577883093ca148185f428114dc20e80892a544951e81031d012a5fb83da3496e083878c24f0810952ba5cb8b2e1d2e2cb8b2e54a6043a252074087484101ff00098ff84ff9b72e5cbe8ac7f1eb2fe28b972fa5fe57399646bb47b21ef2bc4c4aec9e02222595ed2ad930e256786a5f923dc45f11ec21ed11da60ca4a38e81e904090ee45b528994f08b0552f29665d4477614c65c7a230712f3d121943a1480741dfa5195ed112911da52d74117a89ed0253b133d12edcc7550fb44f69e1d03046a64ca82574a201da06b5d338e25c85772a5743a3582efd431cb8f47ab16edf882a10903a133b60678a32404ab89d0bc448df4197d1e99e20741d01f91d0843fc172ffc6ff88ff917197ac618f9743d27cbafedd372e5ff0084eb5d2ba2477350104b89152aa574c44254132dca313da319f1d095ab8fda5fa55da7820319a7820e102e8dd28f4a874e261a84288b83d17d01097984d203aa7741832e0c3a32a27430f84b48aed3d26dd182e2c6023e7172925a730f28451ea1d594211eba5e85a31f3890e810660745a4afc0e8410934ea63f9b2a044e8fa4b7696e92425083092f090e952a040eb72fa5f41972e5f421fe2aff98b2fa8c32c32c3f80bd260e85c21f95752ba90952a54a96b884cf05ca529e6366a5bbc2477101d3632fa0b052c6e325665d24e0cc54cc174d45e679102ec9c0234ef1c65a66e2a554c20ba6670f280ef29166081211af432b05de0eb70e8bea1ae81240c18561245f5a89d4651132b9dd994630e9619495120c2fa14ca0cbfc2bf0e7774d7a020812a368c57e20ea7a0cbea90e95d4ae952a307535d524204aeb52a07e372e5cb972e5fe370ff008572e5c3fcb71630c30c30bd0b186185972e5fe03a10fc08102574a952a07e153c32b1f09589ec4ac2dc25f825d8bed2c4bca6060a1d07a7bcb45c0485c26e54ac6292acf04574784950c419982f796c51ccbc04d32e057b4a950b81074496e254d4b8ba074ab812e105a0c3a54a8913a54ec9197a5bf432cbd20cb9d352d0611708743a54a952a5420210e95186d19aa843f03b729ea4ae822a04afce8a952bad52a1f81f93d2ba5cbe8208b97d2e5f52e5fe172e5cb972e5cb972e5f43a1fe1b972e2c58c63162cb8b165c63f81d3695020421f810eb52bfc14448ca8c60c5d72d7403c74d19ef2f073c1157a96ed175a978cacd750223d087a289582b2dd416ba2a210784bf696ee97e497a82204eecf59dce96b09a951254d4211482418f418a0c3a544ea544822425745126596ed2fda5fb4b4cff000c4d4204095d2a5750207e4ca892a1d060f461820820fc02a04a952ba95d4a9513f1a950fcd972e3d0b830fc2e5cb83d041d062dd4be972e5fe47f918c58b1462f465c7f0a952a540952a07421f81d084a952bfc3cc70c63d066617505093ae1042128959489966a32f8c7c63f803db1af13d3a2bf057b4b38a953ccaf0575bd651dcf084907463151224ccb4cc46660bde2414b43a049d0917f8a465744952a12bf14afc465cb97065c18b04e97d245cb972ff1a810e952a040812a54a950254a812a54afc1227e47e4c58b163172fa852e5cb8c3d0b832ff000f72e5c1fccfc2e5f45cb972ff00158c631e87a31eb572ba54a950fc48743a074210ff0012f54d5a88c46043062540a8425bab1414bcb4a9e90e833e088f117d04d47a47cba2f2f2bae65cda1d552a57457454b4a62a574a87441da57f239d00952a54a95d15d09e8a66532ba3d170e8c7a2ee1d2ba100a1ad5a26775d56a5fa8311abb1b5d9e82cb970e97fe23a5422bad4a84074a95d589f8b1e87421f8b1e8c7a2cb8308308f41e95c1972e2fe443adfe772ff0172e5cbe8b9717a318c6318caff257420408103a1087e0fe172911d2c3d27d256e00d10e904a810421084212a54a95d15f9a0dfb46339eb2b11290ed239c575164b422a54a9529e95f893f87575a87409af457e352a54495047b224a9513a0fc258c1e80812a54b6e03173fea134cdadfb46b8032f659867060057e42ecca1d43adcb83f910254a952a540952a57f85fc189d0454afc1892a54a9518c7f01972fa90ff000040e972fa5cb845f45cbfcaff00c491230f5550e857454a9502543a9087e043f17f2a860e9fa466ba84a950e83060c1832ffc0f4a952a2195ea3152a57457a58a47b3a30ea544952a04aea3d59d5e1d422a54ae8a95d6a54a952a57457a95d2a1f827407422bbcc5b25abf1c085b3547e2734f08bc2a52f32c9fb47f54a95f89f95410e87fc07ad4afc054a95f954489044e84ae950254ae8254afc2a1d457465cbe8b972e5f43fc95d4a8fe02fe4754afc40fc4412a04aff0003f8d744e830c30cbd754ae87520c1e874b972e5cb97fe2a87f8aa54a952a54afc6ba2a5408f5152a54ae8a952a1152ba15d4afc2ba5cb972e5f40182b59ece912f32f401abecef1d64dfec26c02f1da202b7c92cc25e7715f9a2f5b0eeaa63652194d9efbc76a25a0a5e2a032a5b5a9dcf1074a62301840e950843f33fc6fe552bf37abd2a3d4bd654a950eb72fa9f832a30ae922d2d05d4aff00184a951257f840dea1e91d03fca05cbff12461865ea7d7a1e96c7e04212e5cbea7f86e5f43a5cb972e5cb8ff00c6afc2a54a952a54aea92ba1e854a89f80a8421c805abc4cf34b8bc5fbc1a5eae58b03390ff70853c5ed8d68185b8f702ec945ae1c4a83d9a6620b4a9c2ae6f3373d4d557fe710d9ab68d0ee4a812a10454afccfff001d224a95d5ea7421f954a812a54a952a54a952a544e95d2a540fc2a04a95f954a952ba952a04a952a54a952a574aff000547fc152a54ae86597f202f07f90ff0bf98b97f890fceff002b972ffcd52bf2a892a54a95d2a0122da71381a346fde25662455ea67a6693b42c5c0b466e62d5d42c8bbecca273ee19bc4a089c89756062fda77b51e9e1fe188ed80b6baf1d0e87f84fff0026a54a95d2bfe0d7e752a57454a952ba54aff254ae952bfc552a54a89d4a952a3d07f1a952a57e35d2a54a95d44952a574b972e5cbe97f8dc5ff00054a81025757fc67fc5a952a574a9518b836941037c70f2ff52f28704adcb7f49ea1a17244a1a8a00f1151888c428f729084021f88c2fccc32f529eff0abe98c691b84f49a8f888332d3ab2fcacc88411630ff0001ff0035eac7f2b97f93fe03fe0d4a952bff00cca943b376cfb1c44ff8ef45972e5cbe8be8b8c5cb97f8dc1fcde8f4a95f990fc6ff002b972e5cb972ff00c15d02ecf69c4e05adbf663badf89ac2f69da5f8a3d4ca4ba65add15927609176e266ada2b2e705f4a2eea503b4e6ca8022a8893cd6905d07d415797c5711403d85bbf720045c5b79edfe7b97ff19ff21d5ff807ff00b3716597e8d5d77ee4c6c611e1e4ff008ec51e972e5c7f07b972e5f40cb972e5c1fc2e5cbfc5fcc87f86e5cb972e5cb972e5cbfcd310195e25e15783bfbc00c20cd5732c93218af751cb32e3ee2b7bac0596df112851734ea4a80621a72b70666d8e65904e5ba4c185a87e909a6e88fa26410ee72fb7e07f8ee5f5bfc2ff002bff008a7465cbe97d2e5cb972e5f41ff0efff00cab6e4fd18231452feea27fc2b972e5c7a1e8f55eb72ff001b97f85c2065cbff000d4a81d2a57f9eff001b97f8d02d1cf33e512788dcfb8cd77942b87797a00b4134a99f88d700c412ad965d465db6c28e6aa66022319d0b13ec253dc63500d4b72c17e73402a5759bed374e12c95caaf60b9af133dc1655435aafb41ece3a1ff0ae5cb972e5ff0082e5ff008d972fa5cb8b165cb972e5cb972e5fe172e5c1e83065cb97fe2b97d6fa5cb972e5cbe97f85ff00c765e156d65bfa8a6cf69a3c92d384ae45d989ff0005972fab7d5952a54a89d47f1a950fc31ea124d25259ff00e0d795fb62e486f60f2f765aa8d217cd84af1f24a396073554d16abbcad1fd205e6e14056a6504ce8c459835173704c191ee4e5edf443b36c09fe12b9ae008c3d1b998c41d902cb56c1c3288ac1acbfea3368b7bbd41bc46ed95401b7306bfd5cd96363fe5b972e5cb972ffcd72e5cb972e5f5beb7d6fa3ff107f0b972e5f4b972e5fe17d2e5cb972e5f4bff0035cbe97d2e5cb972e5cb97d0c5aee9dac958d174f78a155dd8ec71a4ef0215045afcdefbf5a95fe47a318ca95f8b1df44b94e8b745ba080952a54a8f414dc3adc1970e85cb972e1017002518867b47b2226ffe0847ba8aebbbd88c1e8e2d4d80257b88d4e22e66a5e8c57780f0655c7f70605c80625c4cca2306fb98005b06d70ffd00e626b025d33773319b11b4de7c4f10711dfa28f22d019b3512792f8bdc29692b89600c01dc79651368538c62241ce1b95d2a6181a00b5e886845a43fdc7618decfdcc9519165f757fe1b97fe75fcae5cb972fadffc3b972fa5f4bfcae5cb972e5cb97d1972e5f45f45cb972e5cbfc2fa5cb972e5cb972e5fe572fa2c5847169da9141098380c11f34c6dcc96a9aecf7260d514a67db3e7d50f9678f3d65f703dce525ffdff009125448fe48d463f8a40fe150fc5e9529d15d6e0c197f81b974ea05ba8b83f0bff00192d2c8933b915760777bb3001f72932620adadc72545960df1038bd39fc28f085c192c2ec61f571d77295c7cc36cd62a253d03b7102ac66372c189824b2ae9589b1d337c404d03ccbe4625abebfb85e49cb7f0864a2e32d3f7125906d107ee34f6473675f92e29369cd4770dbc6218093d442b9ec3f8963c6557f221f68eae7cfb40c8d6258c495f8598a3ada5bb4b768b0ea17011ece86298aff008e7f94175d2a83bca3897536cce04db296a55f95cb7f9ae5ff00c14dc44b2315ed1a685e64978a9cc4f0f69ba8e597f57185b2bc6238a043e71300d99cc4604c9b7539830262a5448f73f30e6e5b2fb12ce46ad57fe3a952bad74a823091224060421d6a57f858fe4889b42334ca1c7437fc333485ba5ff104ef6f45dbb47e2653dd32a35b6ec96ed0f7157c17e7bc5063e0bd5e7dcae608f18bfee20b2987e13344a253c9d335d189e67a9c820aaef1365978e8620f289117f71ac08085b30b5882ed57102eb3bc7d5736362ee4bd0cda3222356ef82a3aa70eb112e24ee985397882ee8e3bcc33038974fe729c2c5fdc680f93ccc963e2b316f2d35b96a051df316dacdff13b44abdab93f89dc3b6d1fa807ceed7bed3ce6c200029d40b406d70110d07bab89e65cb8ae258037281097a1717a69c4aea54a953e6574254a9529d14e9acac7b7f0952a57e352a7727bcf18a93794332aa20201961de352a740e3331e63dac3927b4a1d44afc1970ef977aff1d1b1f7fe665b4d463b94ac620d7479f3b191097ae7f2e121d813e158f28f224a2abbda0ec6b44a9558e9c5911360f1da2a1e61addb98841d006921a3e301f4b87c906878a68f47a27f86a575a89123d03d2f4e8248a952ba54a95f9a46302e65cc34a98accb808623cb20c233c5da6ccc29d181195a07b62e1968ce62a8de23e977280272405daa1482646542c23b4e219b812ed7c1c4c31af4407ac7c07fe8fea33cd50ebc0f32f05ee5dc6ad37e5dca784e05bda64d09e788740daecad4ee9651b2c4f7d77d286370b596a146e52c5ecae9e6a58aa80774283119b1702f529c61c59a942c5cbda562abcbff72581a4ef2c1d599d8ee54be130c33bafcb35e620a96e12cbf718814e0620b099b828422871d934572c409bb3321556a774532880b7b46af8a683ff0073319b4a9f4c75b0e9e84557946a3cf9f98b1284685de0e40d914fc414e86b8c4a34ef795e25b7873e5768b36ea2d8c23308f461acf5ab06e0a23d29dc7b23982277e1ac74b824ecc5addc1d4bb0f5c4b3a54afc0df4db85748a9cea0713c906bac2402293994b2984b04dcb18e431997292c9e1d7d4dc8397b4a5728470763b4bcbc8950bb91554f12dea520197ec3bd7502f27c75b033820ae0b8ffde75505ad432d626d0c5612a7390ec416ed2caaa933a25711963c1d13ac47134038f296476b2dc80e4b46b587e662aaabb545ff0062112ce9bbd150bc1c4571c799711f3c424cd14a7e26a5d0030f155997de3641bfc02575142b7072744ad0f9d2f1c2dd663152d18a96877c01c4ae854a952a543a0c544e87a4a8ca4fd252556bf052ba0963d09711715b0d74224ce430dde3b88b10d8b17e771ad91666fa262c845b6f85fa8525770c7d05182657b7f506b2e21b034fb0f5142cc1c3344ecc54b214047c90bb0b9e73b96477ef0a979ef12b946c32b08becb3898c3efb8ed62ff539009d8861c0e62ce23d2a51b8e598d88da962ab98f4afaea014c65c1c4ab555dcc2b57e350a4a25b64235d901a987c769c31ab982a8997a6610970f32ac95371913042fa1797b94b0f92f57ec985c1ada364c15dce1259e26ccf4b05652054fc128e529d040e57106f6c6f29128f25331a87610c7b635055475c7308db584d3ee55004b4693b9065f40966e510344be9422cc32ad4a7c102c5bdf5611ea330e63b7c47f152af52e274047a2ba54a981d38aa1671ad06394b84b63892e5f8e9cbd4d0a8b98aba5dc86e0e5c730f2c23de30c0194d78a9426a2661c3dbda1aadb370f9f6dbc12cb5e5cf7997996ed3266cda166b5d2a79c4b4a29c41dc9ebab82d9c75f72e369bde60600711aa7e48161fb96acc258d2929e7a2b12a54ab89821527da6e5f3b96a4143631c4168902566d30a1c20d8df0cdd56e5b2169c4b94c9c7ee254af6b0930117ea192b58f516f93e0c5ca8e51b8ea8ab6a18f2491b9505c6f954d10c5c334438595f44f0d12ffd46aa8ad146de1bbb6a390f61b5df6ffb9766fcec8be19d9a3c4d45e5a25d78794976aebc2dc1ba62c659be0eeb075c59a97cc08a4ae5b920dc63d6ba58269bec7b9b1a9ee33441bd7e4ca8ce22ea43cc4b884ace6543a111c104f08503714a7971463cd8f0715cee01ee2c21dd78991c3922e44f2496b0cd8109ff00e48f4a5475632cb826ef52fd453c05b2c1f5b0e14bb569be1961c8cd67f99b35d5c644e6e59b5e264a24b5cba0e7e8cb5c18674f515966e1e03146999596e576e94aca8e60879c95683f7078e2e4e23a052889f37201976de2154d1f395efa2a76879c4255a139264ee7888334259ba94baf7859f64abba4e6298caa9c473a9c146d6fcf3a8a2930f1fec96ca88e046ec79808c6efc917c303586b23310d05427819621940030eed948b1f98d1ad318b8cc5666061825783356102f0f0c4c5383cfcf51cc1063165c7a0e77d196bda3d8c5b073f69da8be313e68f72146e5bde2c666ff3057e0d199c19798c398170b69915167a03309965f6e673f9163a75c6895ef31a37531941033fe894ec5c1dff00504e5cbc4a08b8cc590f626f1d14bbcc9d39ed0f461e5e25b047b805b0a827789000d496b8365cf68987d25b535cb024b42233c8f52ce3e516edfe07a196dc40affdc83b5bdc768bb9c54b9b7485377cb172856a9c0ae6ccb515b5c4f510f7179cc1c14cb152cba793896673a0b3efbc4b88a5c5f8ff0051164bed5962e2fb91285b2879bc5c4f08e262708068d9cc5642df895e4fdc77a0be3bcb2705684b991b38104e7659672fa86be81c379f33800d7350aa6a72a1d5a376fc6c35b01fc10a58e79be8196ef11ae0fb260979459f71006d7528813925e6af3182fb48b0a4b1b3b918a96f4fbc7ce0410e1824ea886c6a5d09a3bb284eadb0d5b25ee82ef985e48d6095b2d4a9c10a975d9995439fb818309abbf99e1907d9966b95c5b884b8b324b8d708812cc362799b25f001f34fe2279a61b755dd2a784bdc17b86aa00f459f3363282d71e27b09923304b329c4a166b1862767aa82b49388c264b14e65583ae383e23e44baaba3d04ac0ce607bb2cc1630e0f925d43bce207d45448b90d4e544db7e7bcdd6f23f85828f112ed9594985b5767cc3ccda6c83c6091c24c8561b37476889082f2110b73511b1b34e273c683069b9621777e23895f506b43d939c8d37aafdcb9262f0364d836f31ac17e20d2f64c7991311059498273f761eab972a316a2cbbfc06622db2a70473d6a5740c410b874c72c49a6e60ccb208f4a231484265b0dc55d1c71ee3be96fe24ae99b29cc1a88a973159882532c04c3a995662603be3cc55b73b8393cce6dfd45a3138c74246659cc57627a621e746e0305bb3888dd7c25d6e79d1de70857130ae9e23abf797728776ff0028fcb62de6163465e1f841ed9ecf1047cf8956ac6ce6e24e6e5ecbd4cd5b7308e61acee708aaf677b994b2da991f4082768d512ec117f884c006a976fea24b5023d92bb5e3138e58ef03881dd9b8e396a2aa202565930593b8010663f544e2bd898222a135e63c4055f4049973889628f32cc8eb0910e078f536011b35a942433764ab28b21ca1f04bdf254c6d0fee658d236b84b572e650ccae54005938e6504af83fe9183a2e4d40f67dc6d2ed3b4a2e3eca6085fee8df85fb986b7e21bfd314218f788426465c7e61e5605723a685f733ca05067d576f32a7b772d798056750e05284c732e3752d8ac2ca32f68e9fc1adcae2e25d8fea1aabb9e0f1133290d8cfd0ccd30a77a8952aa97c27090fc8d407083855c3647cb98c56051d97123650400d3984520125e8a63e4fb815097a509c42a708869407a25d6c22df68e0e58c188ec27ce54d420576352f648ccee86b9260880de20a421f0dc0f925c6ae10b6ea022885b73174b9e68868f70430157241798398e3382b50ab99de7b41b185b8530700f2b64b05e2539459e02f2f3392bee6b2c44d18a5af10b19a6601e2e63cce44eff371edb6661183352cd32402d2b596e3d789757f038ecf99b40aa1d84da9900b8b2a51da8b55fd4187454466ff0005e8798a711e8fe0111855910aec952b10f6843a45e8e662ceee2b06652a506592fa4ed8239ca952a54a812bae2c71c42477cc25ca4a8a851a2c82d97ab9a9505a7423d2a5463ad4f98be3ae9180dca8a12db57ee38539ecc1fbeb732e87a9161b4c21da6c1d40b6e8611686a67111c220d12fe250c527068832431bc2e680abe619cbf6400618441a0f7000aa617fda58dd734d6204085c6d2f755da03179c33131899bcccbdccdf1f31a2c56a88abb2768ab4cb5a71000221aef314d3fb86e362ee38a51ccf1ef985bc1c62040ea0432cdbd4acc6a0de2aa589f52ae21324c01c4df32c6a15e8c6f8a8560aa9f3258b51cf37e46e0d084df1a998eee60e19e87840e074ea3f3dc2ee0453b0a320aba0df90cdd87af07694e49644ca6942a6f2fdd1c39f96ee3ab13b009d981e9042a70651a3e78edd87b12a9c2b2dd4f2b32e134a563787ca05a753c77f8a045389922206ae56a2fa5f754c11b3c4c53d315ce7ccf6a43182ba6c4546671036972ac69da6a6fa2c33cc712e0a0acc5efd085027de540f300365403fb9091414e626d1d3434f0c04dcc35e10d30866e1e21ed4756db2b7101c5ee02c2decebe616081e0987b0d328d1fd0618c466cab8fb2f798fe3ac265f6a64dc35e633172e44957112edb469aab99c1398ffc9e220e86db5865b7b5c172e6101987561566bdfb473d628eac9e63c407b0be48910da4afe255b372053cdc41feb989582b3508833f52d55e654051bf3ea0db9520e65cd0fd105c495a78ef03db935cd788a67b8ff4b86d787258dfe0f5baf718e211a16a077598d43dbfd12820768fed2adc74d5118ebc41be9ee135962dea32d82679caed0c411d4c1bc4ba6c8f88b98b32e25fe47e4c7530f47b4a70b363010018330da41eec6fedf1326307e01d5de268e95d06a6fa0d4b60cdcf51f68fc52a294571888f32e770df56c4e0a65cd92a70c0f9858e1df46b24caf30c2f271017fb97bd3e20db56b96e5d3cc2f9bbb954ab8637c32cba9e0250db4f371dccf923aeaae64aed742c8a25be9543e258ebb2d69f504424d14ba835a934f4c874a0a99112bc251c47e50acf0dc0546e6da38604aaf99dadb096b2b61aed7b9586dfb81b95d2a15699180a367fa95d1c4bccdf95cbcf7e2066e7a6653ccc6bd4b03bb9971b1295b1950112c7b3e279e252711b08c095c2d3fd13bcb9e4cc529418aa88cad0576435d0e5ee1cd2d55297898d5de1e3186854fdb7fa95bb9a0e266b358dc69758b8214115b20eb1e30d4cef3cbde2234a3314807364a3b7c2edbec3b6773616bb95e11261e6027f76e5930279dcbec643bf5be5b3230cc3ee353fd20a25e7a2cb8420cf14f972ed7b96ae006916033619c404ab90307a11fa95ed77323b21253414f03e6721314b0395bb8a6fbd099f24d4c5fd4cb2c67cc6b9b97ca56e2d2d3e22d12b00ed2da0603c3cc27b6a6350f28e8c7216376788819b05478c51ac1ba7bc6a202eff00c8fee739f5705a56660c44b09a182bf48dd778d0448351d860c3669e264281239a0a967cdcac8da20ee1046b78dcc2ca63c09640c74bd3cc2af630dc9da3b8eb8ef01c87b3b206452fc117ce345d8ff4c0d097061f71182fc8dfdcad136b157c41d8aed5552eac477228a361ee7b952a60dc1fdf31ed2c06e2dc7d44c332da95ce521a0b18efe5e481473048918aa8aa6519cb5f855ceeb29f33d11c6e708b8b7b4b977cf4be8b7fe025f518b2e3a8350048ea142b9ef17b6673d1e8f5e7a54712e3d2a19ea97d4819be26d2a1388b32e5d1328c3a15f27b867c4f4817a8909cc4c57c42f4944afcdc0ed91ddb82acd4a0b2c121828d853ea5f82cb29da660af117cbc4f0045285bb023768e4626069e84496ce45c4c67a0a37dc8afbcc12f3305d42153899b5999d2a6a308525a32bc5303110ce68073dd366d57b430cd9158e65dcfb8370f665f47e48b612f0c387707aa22e9da0e0d420ca1b88f356d9db544d9622c021ca545666acfc1e66d166f3df87c3077850044381716225dd411a9f1a3ff00815328da8ae669ac4bafc399500e20c280397894903f00731305944b59b8a6efe311114eb388557366c63b218b99e98a88a00adbde39ac55e608b2025d3b8ee361f312b4cbb0abd54b3aaa778b6b66001d92859b7644f5e15b3176d45ef17b4ba86a784882e523e2d5da7c10cb91db1fa8ff004425d24a697707f72debb81e7f501c6fb462a20aacfdcab55280fea1a3b42ce173269a810452d5f3ea262d10ed503364ed1bb3a9448f42afc4af486024b51c1336711d9652b1682bcd095631af0db30d20a83b82d767fb862e6ef334e415c7c42f194540bce152bde38352d56ee271865ae648d91496ee392f31b19c46fe928c55c71db7293536dba97d81c29c54b6f113de3f4c495299c031bc191dddc00a34cb6dd01da0b7457f898d803704b1c4c95f12ae02d0e0407bb4e29ee2eed12d5f0c40d96f789602f3e7981ce20d226ab3883014b9fea84afea4c2a5eca8038ffec08066530f4c0433ac2f4344bc625da8d4c3db72a040acc4e349a65be62fb08acd452e5ff03d2ff23ae25cbfcca2691a8a6bc4b8318cb8f4657e0e3a5372a54a81d1e89d033a8b8e8f4cf47a9a497d027acc1ddcc916f155cc2ce2897a057f531a9532726b99c803cc328c205008ec678f53388c414af7b99dcee955e8cf242f4006ac416f73b732c561501a34cd24be48cc50be9fec8c060a7115b7d95a0f71b049d375d92a10632d61c23638c254f561d3b4d478116226f21942e208795d4afee468782386cf2aef326761ff009ea112fbd3b6bb1306df094143e6ce83d0b1b011ea7a8c4b2366371c2f997a058ab1f9744b77e49895ee788dc2299796c4a6a812c9c3c2fe20541e5577f738480a679f7d13ae9982698ef30d4bee764cc5712863882388f76c4c59cffe662a23b9976e8b0957f2446d507328d00374e62d0b765bdcc7170d6bea3339632e96e1de7794db0e7c0c372e180ce1208f3799998b7c4241978871fc2251bb85618a61e484da666e3c0fdc14f85b286bc80a1f0468a346300fc4a0782ba1f5cfccbd60b2f0fa2531eeb84542e7b9322ee66ccbc91828f1a3342c94d2aea5a1a64e223706b2328d09c06616b56d617888069cbb408e33fccce58543e5f959aa07958e4ff445e6296c6f8eebb32acf08dce61cff00d5060a6f2e650e16698e9640e16b25fda640d3bf108b0df78b03a311d651cac5798b5908e598af90ef2f1bbc44a5dfcc1b370998934ce626f92050b80b4f244b94a2e44c9b1fb98e18347910695c188ef655c45d3ba1c81e6734cb5a6f8511c8ca1a804c08656e6c880033c4683b6b44d777b4a0aa1aef798e5dde2038b1222de22956f88ae5ea1afa997c7603e93250db335ee5c22f985d2a7025c5e288fe1aebcc65718d83c778fe177d568d4acb773923f8ae5e7f3e3f2e202a82d9a27286f3d951be3ccec5fdcc2e8fd42f339865dabdc4650f98e65fc40cf4f4e95196575e65fe19977e981a40d7fa949c8dc66cabb4b7e3f12abcc42d663db5ab9b9a2acbb268670a954a8c058686f911b44af3ec1e6a1ef8c257f115c7cd865c4bddd67d92ca5b6450ada781773c31a148038870562290463374390a63e08e53174a768075d6d6e5375cc1a062a462e4f1360027c62d7ea38007b8f8352c12c7ca0bb0ca6afd8eaf1a9a51ef15842a2778b5964330b71c92bc07b2a5312789cc0772ba5461974ccd76c501b784141b66202ec0f32bfc38586e55ed72af5574ee8c74d03c4ec197d2192bca6a9ef71e677e28cfa196fdcab8c074a7189690e01c4784ef39437e3fda58cb68890404032d6e607807c30557af52eac1dc770563b20e7a93f342a1dc02937db70a8e4dc25ae2d960586d9aa89c3295c16098f08ee1186a61fa6aade263e7c5a5b1525b9f272b2b67bc2dcaf363c95eb71e865da3f821b91f72d73a3b41f6445bfad87b90958570cbacdaca847a260708f782de4e205b239312e679983b40d0b02ca7d4b2296f11c9a8ca2c81f41be923177182afa779520af0f0c59c0c94ff00b881eec7312b6b3b91d312dfec8b82562d8c42d9b7adcc64381b23d8d4a979f10392a5be181bb2a7d6dccaedc710be2e288e3bb19a29acde197a5bde662b2cc9d2ba39aa95d0669c6f0ac40a1d425010f32d4b77212ce18892b8e6570837d83fe98569cac692c6fa446b1de5e821e46199a01e54ee6b91d62e5874be5b078961017042941587f865b014b7dd01c6a58c31809a0727989977f222acb8232b3872cc700f09d4f1df6441b49cba91155c75e48a70f51a37942b07b8ec2d3b5c499163c710791ee6a06c18583a4e72b3054f0dcd2372f7dd9cfe0baf10f3304be9b8198b0a97b89b568a363f5d56ce3bc4783dd4032cc52abb4e0c1f100d0a20709019c7a9fa4ed43be24a782f32b2dbd47a544952e1f8fa8d7f732d8888876c70437dfa58bf77611a2e7ff3a68941b74f70005678960d4942f24a37a8f8996212566036a65f8802bc3645df0b30e67d929ac7659f643218d28b2ed73e490dfdb985137f898d3bf1515b761dc95888aca63c89de32c04cf87b412c39ed7322ba72b71ae8a7c999840e58878d545f2f694adb9ff6ccc52b71b12da91a8ca559df103416238f28a98383bd91d418871ddf6ae8b3dc79a5529c9de1919e4829f52ba55efa660a507ce22cb77d5ddb2cc8ff0011de58982e3899383eb89baf15ccc9b2b97bc209917568591479a8dccef1b0b785aebd7fa837a53dfbf413d9c760b864a9c607358c662e29bbb9fb94b4472a8af14ee6f2f962bb0ed04a1b38850665db164a6a6f0c3035fd10816d5e43fa8a15a1a8a523e27263332402aee2528efa8876ad1180d094db9ed3482b3f28d45617117aa2d87cbc4c058723a937c06ec844b33754252bcdcf6208298a361f3a9694fd7fc4aef28d7f8978ee1cbe60b8726b308205f04b0e59ecc4e27ca03745acab6e1a611772209dfa9618196a0706e5371af86a08b262fc9a9683494d0b8f9ef3de6480ac1cbbc74d7f00779622b002396f70c9736d6078984e600e6d56e602727a48708bdfea5356b47adc54591e817e4ccc81c42f7acca3570066bc45af2253bac842c7296e0f8425ad3d32c1651bb602d6f616f8666d3512abc2193d789b7a341acc1cbb1d0a3a3a09c6502e0359676688d630e6b98c770c000eb7787fdba1a1c6a1940f785a1470a26373d59de580d8f17c45ca1fbb7ed7de08f2a137b24d07f70e041d19196070cb5e638de814ce1f12a46fca067a25ce37cc10a29def3003753ea16763ca7788ea90c1e83c9190788444237ee6647e4807718bb47bcaa8c1d928b3ccb9a15ae8633701ccbedd6fa0f46338eb5010b9917ccd02d83d18251cb38dbf311a94c82ae5d91898371eeb442fb966567d4b70bf6c325f298e76971981f33dcabadc16a8096905b23b39e654e624aef2b3f910a2db889b1f89bf920b2b8498a112b1345485df15c745b21e7681c4c032dea582dc4a8805a65af1bf11f32e5be00c7a10a4f5533e0ffc35105a9dc69290a1e1253b0fb1c7f5192eb9b369e9e60860af7c440c0d118f577fd3e23b8c2412bdc1358ef98fe370dabbfa800f6a57c663c7c1d23dd4cf81b5e1297a26d3e07965f3942daeec3dc1c242f772fc3a1d0c54dcd39a4fe7c4ab0a2285ef47b62773df7485f7a85c792aa88af9e01365fae3c47a54110de453797a3343aa042ec0b3686eadff00c319d09f383d417c62c661a33c931a8a1b23636395592d5b6008ea2516979d449c7642aa1c3a611a0a2e0239b05a283c16b510a01876d3e78a6292a0e23b5e655cb2ef73356e0661ce5dae5bbca185c2cb6339c12f1686a97d5f330146e0de3bc1505ac471b2305d22a6cc3115adc623a009997d3344ca6fc34ea2319fb47fd31a6a297b98d233dbf721da614d780ffb87728838b117c2c7d410cdf89dbd7781d2022ff5dbff009c44280f29cabbea0a58c439518d11b052d0b20af694162451caa3f046a180c646a65dec8cff00aa71dce6b513b30efccca10c732e83eb880c0234b7f4ef03b128b5410629c4bb5d951597c258b0167278868788bbee582c54359a002350a116f2ec82f04b1fde164b66da8604b73dbc4b8a5dc0d047042e2df885d16a722b70e6d2d387dcba40be6afa81c2ed5d2fed002d53511755507048b22dae08aad828c0ab48104d42fea3f77faa660acd70c67080b158aa286a5ebc18ba9a387b7b85f6af65d92cc380ee142e83dbf623091301b98b6d6504bdfae754bb253a789bf13438950379181c8599b26a96e98e777894bc3de3845b1de15843012bd9ccb8c7ccb0dcdc54b4c5cb58e3110c3e44743e5dcd62f843907dc7529ca5ce25c259d13c4f70c433d368b5820a2ce595d2ac029ca60964da678630c3c41ee53b22b3035713b704f530da24d2037d0c34e2046a0ccf79713b466a5c7a35cd0e88f502f13b598866ccf0e972e2972a85cb7f3c7c41465f12982cef3fad939c4559dc798fb1eb932f4e49be6ee6a0972f0cd75de23534078712ae44801441ad7663e0301b74e0549fd40e4d78e0e26b9bfbabcf89a7c363b232bc3217f532bd733572c21460dd23cebb168811ea81c047cdbef0456509b877060860dcbde70778946a99a652356ce0311b4e7a074ada634a45f586bb97b1de6083f11ee6130fdcb954776b5eb5338593c8b2fe45e4ea615485039cc286b0dc4509a6541594155a3445446f9e3dee0db368ab6ca23649c02f70f01d0034bd530ad56f4af1fdcae682d49e46fd44d017f6981349235e256e8befda15d7196561e710380202b4565d32b4c53b8a8b53cc5cd4d732de14fe585d10db9efd39ea08bd3da5fbca9ca7b44bd8d93b799efc067dfb91b3a6903b8c169c267cc0c402ed2e5883d062c33390f3d8f7086aa74efe3fdc04d9ef933265fd4d33b9b37947499f532085d56e09b826eb8601db12946a64b2ee5fdd9287b018b8d9142f0661ebb0f09e4c3336cc374ed87193129d0aed69f1360e130dec98625853316d5f7813f861cd896e198c86f712b083820d689a315e1d32cff636ff00eb096aaa8d14105162bcf04c68277e495d5ce418c4d73bef103c46c2e862aaece60354078fa9e630291183c0fcab3f1a80e8df84f643a7730dd401775b9b1e8258b7c42839bbe226edb276600cad646720494f19872ba3b4aa15f07fa62adb15a7ba04a707bcc3bc32788ecedbe4942059b21685fd0cdb216cfe51cf7058e4f32d06cd0db46ea325bb320d54dc1dd4c9139ad7d5301f3c5fc3dc8b4b01a6a2573079b84289655398cac4159600f12b8b120a8198620bf7016351f0818e95d19ea56212e28ee5d0d5cc01b83b93252c328df66216210acb8f303d475362a55d040ee81e6e09c12f925794af199e92d31515f332649842db97cc464e224612fb4485f42832fa0da32a25f31aede0cce823508d69251a63bfe0508372d025010446b7cc76a56640977388e18425cd9f150a08719a9e8621bb25ee3669f08357de7fdc4abe4131078ab43e965c1f45f0cd329e13ee61a43c2ce64f7be224b789551d1a053261cc2b43b64890a03b80fd47e86622bb8defd138743cb37e5d2088daca90336bac92e0017cdc2b42155d89dc88f7186187c5b07329dc1696a4e2fba1c4108b31b793ed97c6fc74171c99f52b916414c58ee01a0cee06e1029a85bd20d03ee6862a229a2c28e68c4eccec1cb110f26731bc5ca2c8b2f17aef31771089db5399445fb4037527b24a532a80e020d69a8e4dea0411930db37a85d524e25aa8c1da0cf73b4c400b5a9be26b89298be6e3f11aadaae5350ecf10ff00eb099f37340dc68065e2194e3c373fd4a17601cf97bc44763b9460bf89701d4b05188df252f6a1de5c565877730446ca170f06540b4589a636c311a789775a406059a4e2052341a602e2a03f6351760bc1c939f139f100e38e65b2c4e220258e561820fa88fb80b2c5cb774216cc0cc1a335316ad12f84da67e122397951998059687084e425fc0cbcada0fefcc0eff64b40bfd62e144c83427f3306cc4b5d611e4d7896a56212d79b974acd77942f132878d8e6aeeb57f11b6e72c52422d7340e22e9d3b825d3f994113ea5a9bf22a66145534c6965f88d8d5c5732bdb880bc078e3e2059b34f843465ed313c3c542bb532cd2c7feb845a7062228a2c4b00c0752cab1cf78f9cb06a6abd43a87aed1f4826a15e389e0cfd4297631dbd92f10d420b0c62779a7c45e419cee5ae18677365cd98a9df751d34ea250bb11a372a6a397c40cfe03f729cbf134d40d4b2c2a118f66e3872f70204a853d467572876b988a9825f84ba5cbf0b8a3b8b0bdd64db9842786253ef32cd00f84391592ee2ccd4b9da653de02d8d6ef99bc6e7768e562cd2c9ef4ca2574519abc12b794752ec0a23a8ab81f7d30138e8a9b364b5e623433797c4a0c8be67083ca9f78c4070672eafaa8abb98102b90d10c768a8a9de49ee0c1c3b8c515b4df372e7c05cc504f73b8de6654a1ee5db11f3f82000ec49a47f48e1c8eca21d528bbb10603e7329d780ffee2f83c6afdc4b5b0c6bf5b9dd606c7c4bef6f163e724570fbafee2e03b8ff599a1293860cf3627c6a16bf2c3755ee3dcc517c92c771896888b798a14768bfb94f5bcbd1f116d1e2e5d30cbaf6cccc529696712f0e086937267b195a55d81528a05765cf5a981b3c3b4c44c199a5cbc6bf0ad2b72710cc0dd17115ad204341ab802b2337ccf9851b8ca173f48eaa100f336c1219fb819833835cea5283a6cfe18b28238e54f725b4dfaec4b760e1995fd4eec14b4a3ee12c675c244059ce5990239bdc3ab4ff94f842f59879f5ee627bf69905fea71482be39103f202e538b6fdcc4968612a50bdad90cbcd7328391e8860db52873f9d848d852bb745e27192384e1ce26485c7425bed13b9879252dc235997c50c95c4c201ff00a31daf1c452b8eaa53327018856a60720e39a8bc83627244cd267cc3de5bbca4058e26416623665a97c26992e606b9f136b7291b6af0e309e6e7bf81a1f12b7da060fe65096d0c3d57ee328ae4704b213b84cd1a804758e51c94cd9642bc880770d3ca0c888e75382e58d4d21952623976619f0c2abcccec54a09ed5e483097c690a0641e6710df56fbc746732ad8d4e3798dc54e499e2516e60a714ca70fd41abd455607bc79998c69678974c6ba5e23d5bc165643b225654a711c3715d54cb510d7318176884c4ac793d88462a21ddd0bbc4157308caef022c6e789c8c457dc405e950e559807c339a890973dc770b8557b985424c0d384a1b567f1001134666179903ce07074a9034bd1c34ee52243799944adcc607fc253f5f822b598f86a0e2ae6518bca8d07a8ecda43512fbb805bf513a6030f12e37697c29701d59f703b24ce25b1e718f31f6b3d33bc88b08f152e2dd5f11900ff856d84c364947568f60f89546f1c0fc9060bd0fc3463ceaae8a17c3a63c309a2d73121d33191cb56103d1e54f781e0392b223b63bdcdc2eca0b894a871be9b8a3193aa932bf864c4baded50408387a730504cbb45b282bbf405a5f0ed062aa4775b66684b1462bea5bbe83888f4ff0048755a751441066e3a6af88eb3a1ef1b906e244673729db502e91b9dbe22db6dfa885e1cc3cc459315728c684dcbea5d363702b58399abbc5642d7a673f230794c770c5303c5351002dbcca766bdf5ea582dd4aff329c5115c0e1f0c4b0d8750993c44b0752c1822f65cd998b6487665b352c1c51abd54ac856897599621c46cc02071a8d3aaa8b288df12957c68973d54102831bc43cfb9579370fc62dffcc40784e6ef01e7d418e673ed050d27df35181c6043256a219dc1618424ef22c06790941cad71511895a9c283697c36a0e32addfcc6c43242d8fe236f63326e04c3c2583571185ed18f6324b34ada779965c0d177ea1a8b9057112b51c3b468f7ef00a26638f72836d5ce3171c14148585411d2b09dbbcba3a35d8c1ca34e8e389938954957021f225bbd4fbc2cb86bb317071173e602d0642f0e233ad26f9e8750a62f31aea9ee2ddb330c2dc32c6a58f087cdd2bd4e388ef89e4a61a4255a2778fde04e2205b234eb2cee444653718f42a179317a23724b1e227515311c338e9586185f1cc0101bdc732c5e663478c2a9bbf118782c406eb4c045dcbd8a8adea50c394c350d6da692fa308ad5d188afba5e00b4ce11deab61fd3630270246b1f60a310764d660898cdd4c9557322194b151a446f1c8bce250569cf0ce451ef989635a80a3328d29391d0b97fe279c8489b5e4226aef8ff8cc4f854bfe265c1794b3f733decbfc2cc7da55d45d8007bccbb0877ffe251c916fc81da5f58f3201fe551e19b88f2a7789d5b06e9e9c7fb751d5507b432cbdd3c621ae8064b9ed3b2c1d92b4ca8a6b3cca9d9de21714372cb9cc21d28238b1d0e23502bf701ca10c4eee6aa28a9825461b4e09c295716c57b8040b9fb80284296f746a5bb188e4304a998f3096b30586252ab6ef3cb89434a725e208286acf30b0c5c1cd7b94bb145e6596d8ef1b94577e89f231dea35ca50baefea623fa959b8fee2aa71961242eb73220c61d4c57d897727b45a6e0e0cda9cec8efe10e60c094b79c9f4c0bda4c4882b4ad8ecf88635af8331559a34f403565cc9bc42eb85914b5a872b155a731b9278e11e2b7bb0337068d544093cb4abf0c6dcd3bb8e0b85e61a877540be9c67f7061983ecd45a7b772520d42445e7c3fed1f3b4383d0858a658afa81eb6bb6ee662850b69b3ccbdbdc1c9102b74cbb836ab64db7ccd711555fc454e045addca08642d50e17b859a5f6f24c33b73da6a2b21ee0cf4039b9ea12d99edcc32488566367734a531e279a2dc513ee28657b200de518dae6a53b9125e52eb95cee55e0ed2e29311cb117e654601edda2b642532b079c660de0971ef2a24e62cc2c8975006e5774a6933831738468d39252f102747318c308598fb17625dd9e4b7da6dac970bc30f732a9b2663a617286122f4816a3985c8253f7287ae9ea5aa32a25b6d7c7e2c1f2962f1321600e609a25ec82acabd1da2c170bde0e1bacc359f947908a9b2a064b3437c1227873da394fd21af3f136d3c43146c8860cb25f5b972ffc372e3dd36ba2e3d8a4e03fb81b617294cd8d49aa1e5dfa2bda262a665edfe05b0d8a032c77d08e25157cca96339ae54c12f0ae26acd4037b7ac0d2b0e8a82307827752dc07adb982fb18ac1872ccaf671015880dca02a35305c6048ad859dc9210ff0048d9e77d5635c4028479a350daafa8f47010c463933e272caad0345c06c8c9d5f32b0ba98daa49fa85fa4f42400e37376527e818e75f14d2ee227917412ff4779539614d094f2410cc2d66a351cf64c1c13072f11834c692e586752ad9a21ae38951498d4c2bde5797e656712d810e7978399a61eee6c9e651a61d5b31e2072b2bbc7d80d5621ef579a5715e76ebe60594a8dc3707a0998898762222b772ce20d0da391877ea1422a7172d51712c032f0cc0857894f7ab225376f640ad5bc70f73277dad178516b1d51c4365b1186cab621daa01ddb5b3f4c6ee647be6582259f2dc454787c45e7bcc173895a4c7775041db73169923720814b8944ec8f23a6208d0ee6f5d04265621c4d429b8f888532d4a764f48c018e8201dbb46e4b81c4093bb4c0ab821ed1b3e3b45e8234c484d74444cee5b820b5af1368dc00cba8a30970b840c29ee9d94aabc30d0871c47ba0212b1a861c93d7419b4c165de21bd4a697d2598d442f11da368376fcf12ef6ce4707b4a2b5c818fb85a8a58de7f842e7f497b3b74151dce6143788eae9a8cdb8f78adf74495089348f53ffd9a044772c61984e8778ef1116b267bfb330064db1605e0807019c31c366a3698ea9b803b25aab5cc45beb3ba0fb96829ef309786de6150cd19acc4e337cce3164b8dc2b0bc3a41e922bd24d259f8574625cc652c65f298db8f619d43f053a3e08c66ec8ca051152f9ef2c5e2bc750887813c07c77960e550d637a23bcf4a0036660df0aff11f324c0c030da80f194dc630194a5e899dde2a60dc0a874c4247786a590570ddfbbdc241ed2be13230b6287cce40b269d88f24b1c6994394bac6730b019622aac256a2d4f98f3360b5b3a21c69de0cf6300a15cb1a957b4cc3b0e8626e2ad3128f0482aae85c845e46217ebf116195da30fccda9d9b969f246e665e8cbb7cca5506c8c24a08d0f474661d662ca112cdb92646877943ee2130b71aa85918bcf046cd35c12615a34e5f98f5440b3b08c6c33d40578752d9323bca9da56988782c6a7ee5fc1801b0f90473976112fe0c3477a172c22a2b41c74ac6e1b9825fd4a1bc906f51b60e6e3e4d4a54c4bd2187688fc71316f83714002bbcc93e12fda2e508b3272f721313b1a9ff4f888c586167ff0956a35e1ef2bef147552a735882e06cf1013f70386d8d6ab710ed5c19f302b1d712f2a1de254d7307a5e6373310512c087c917e20a3788506ee59ae7fa8e58ef4cf41ff84802583a62dee5e21160c6f866586539c4a05ee6e2e2a1559663301bcea54bae663c4e7a9b2404e6f11b661ec85924cc1920b65ee017308aaaed2037544a2dff000899205b46e5e886437e88d3efee32dcc42c6bcc313a726def2e94a370b53399af03b45267aa1865b7aaf52c755ea3973029407b4a9871c3b8f88c1ad432b88b8a7247b620265fa94da6638e326d875b609c0d4b529f70e51a911bae20a1a7b9c93e0416de186bb2a06adb9a319ef143377f132c80eeca36aac03b8a6e87cce42fcc239227bdc0b33e65e7eb0f29ed2c372d09bbc779f2e158105e9518f089c32ed41c6cd4a2c479bbf6229b7d0266186b164b97187442b52a54d3058f732b8c74296b71732e48db372f3939456d42ce258d87b8605a282f3582e51ab245ad4ba63c34164b0b8c3712bde30a450743a603a665d00637070b94a917e180c35584c25876349d9893aa5a1c0dc5c68869c78efe9b268557553bc36570f8f12db077ae668a1f0352faeaee9882cba732e0c1b08528a9072c8c3d972be52ce23234b21de272ee2711d8b88da815f308ec06c6eaa51c8adbfa8bde5c724718e3c47956a58ecb8838b2134e3317c8f11230454c768e945d8088236bfe37a9a2f2e91c258121656c8dbf62345d2c84446c5cdd6d85a2913c3c44cf81859a649fa0434e04bb4b13b4acafa2a5965c7c90f33884ef95195f0bef2f94c2c2dc78ed99b7d1b4c073de0284d96498225a0b028e57644df0361f3e6183362eff00c4cf0440389f318ce88de60db78ef3bdd40130b45435a975199d17fd4409978bcc7310d8d7d4cc32f9ed0253d9d0318de0b43a39713c4ad4de2ce52ce2529b5f5da16ab670f4b825660e63183c8ccbe12ea8979dcbb7136fc017cc10ca2d008ce8c1ee8be656e2f618c1646fa8d8c22ef3062422f94e65399040b46c72fa94128ed93c203ba6802cf6960a22f9503dc08bdb5d68586b99787c2516d88e251be653bb5f69cc4acce225919cc51d899d5478876a972b8eaf9111fb18378cf11033ccd41510817480da17ced045a00a21e86584ed2b708b47ccd73e8801a3f132607db08001af6bfea5e0f8521cbf97021cdfaf2cdb4f69657e2ad2fc3f0298de58b9e5282c97f72b6e9dd64c1a170e7330e7129e67c3f30f9c41f99409ff00c8a97a1efa326732a3339c823a7a63b4da470350d8a50d482e2d96caf17da082e0c43bd1c43f3ae84223a89d29e2a37f3402964613d999de72c29d30f88cda9f72f815daa5196a625788c072d462aa6c32fdc10ab8a5e25447a6e6c34ce56ce8ee5200bc247bdc294d551c91609b41ec1a9bbbb31adbc9ff0072b7d2214179788b683a51b7641371102a45d768a4543b2a2a25b511b07c85317f64a518a0cb608690616e27cbed205d02d8b4abbf495061775100375b819ba1ab6a5eaaa3732dbf701d326a64dfb44954c2612e26e371485cf8236cba8e1d88990dc0d4326e0d662852652acb3d126112f6e1225462bb7688738860f0e20cef3181c589ea5e1ac0378db156002cb86b111af980ef136fc1b075185ab3de77432ecf1da2c64a657b665c3d01531b96037de0ade5e6554caab0202d3091b5a31f08eb4bb4c89e9331a06d1b2f3dc89145b48dcc7a244470e8418a25bbcd4b0a542b06ac83cb5de5f67776a557e16cee86a68b53e636373fdcb280ee6e3e17b822d2e66835fa8a6199dc7302f3716e8c4ca067c4730f285434b724cdb6de5d14cc705cef35ae8b8666629b8dad2686e69281b8adf4b8a0839d4ddca36978aaf12ad303d04d31166f514dd4dced4d44b7d8f2ccfa18b9a3ea1546f0ef2d6633ea4eebcbfc434578085edde5bd5b67247439768cbcccb3588ee0c5b6696ee5e137192aa73c4cc543a1e66030431509c407686011218dcf2aafa1b4d7cc3b3e62f3fa8fda386dff005283dab625378928bfd459d85435f1162eb963fd25701bda238b6e317f8805ae5f0a69d7199eb9776fea5b553d8bf73ee69afd4e343d04a2e7e501a520995c0ab31c71145889c3ea1bc9bb57040bdb622098060ed919dfb3c1a43c1eea5470c242d67697fe22f8958d6e59be20e4ebcce4586f097cc13bea3f0f407007f031ab418487441be2ff00c778d4ce8149fe0e26c8772d4ada7077814447697b082c5f78f41a399507272945783de0c907cc5661f0b4ccec01a97b81c8bc665ef3329a0574bd44b3421ea037de2036a711158ccccde1f3092141dee2db28dad6e2ab359255b7060e884bd6dcae7b4b2be2022accab2c02ed855b6cd300bebdb2abdcae1dbdfbc230c09511087b226ac77610e006f44889b4f18cb8dd91165e65e20021ae12e5034b30ae24afe78dd689899f9dc467b846353923a4c033b4d9019dd8ec6509bdd46832adcbbec879c2e2c428ed29c31b1c8f719982b03fbfb9280cfcc516984e423477616866f8aa9620bfc4c979988263612d626d6295c6e6d061287119a5d1da05898eef564305a435514aea1c85c4b450b31301912bff003994a8577666b660c2d57171513e26bea0b000f85fb96801beff0053615552821641f12e1a5118794c79f32902ca05012d22b655d8b84956e87ff2638dc1accb5e732e434bc8c4ed525cb0b70a039573085aaf371dc5adc35311a2e66ae955045348eee3a83465cc6062039289b25f5b8f112555cc2e3665cbc4b8a2f465538983037b998b9998cb1ccbb874378dc45e8603959eb50e630a17c106bee51e5f4235c8d7603cfcf7818ede1e89445231e5153021bc434ce958b96d5710e8940ac7771fb9426fcf30d2f7b15138077954400b0ffe690562784cbeae5dd1638adbf72e5a3b57fd25988d91cfc46e27a6f9e966eccf7803ab4ab0a4cb7ccbb4db9e202fc0a84add816af1b40fba0099694ce4b8f2097493b5e664ac4f97d4b4f9b9bceeb32de62b1d1134c478978408a2386d861168e33da2c8ac3995b591d8371b1b74683ee639a452ef1195d3831ecd89600ccd4be0781de38ee202bc89452ea63b959ba9ca333e45f48f2dfcccf500ee0deba92a4ffe0dee4b4ace4b791235fca7fd507a5c1970994a9aad20312ea3539c798de078bd4414d181ed094da55c2071cf103a9b990422a1fda63a9be3999113a319918ef72db0c51b22caa3cc7901c47c0efa1184b3632860aefcc2a06bea2c5a6f2993cc1f18229a967495dfcc0191e8d31bf30c756abab866655b927075353c84b39988158852778b05a3d3e18a1a9b25bdea3f91b9d83894a8b78a69206aee797e222423ce23b93c264e884d6bae0e34185207edccc0031ab8b2e42ce4ae5965096616a5b49fa49acce3fea1046b1b95809b0532ea1bd0c1f3cc70aaff00136a826de118c01e2644c4c54df1d335d13151f352847f0b25886d59798a8e355088bbe668cef535e90aaa4fab98442d196db84c4d40605c2d9312ba03fee28d5076d4789fb825cc26d9a3c40d97782e5a808f92a395d5430161a3f98e54fcb2e2d57185be40e7fa8d57c184783a6656bc19cc5757f12b8b82d8c210ce85f743cd7b8d4ecf0730709162690432fde1677998a3b977d9c54b53f2430b999adc1e99b2d7a0cbcc3a97329c4e3a30fc6ebae52f4b3c9962db187b3ba37293431890ef7ff04046f3958ec7bb0b5a3d0d5937e6706ad9e21367402af11590ef1101750951524743247261f30845af702aee6730b76c5084e969f133f01f171514da87c0c38d57b4c721cb8664d996570a81e1e62ab8ae445651beeccb533b519543729e5f70664f47f020da4a70489dbddea70bf6c585e10cb049f1902e372bc0b65e84550e38858a3b8352dd3462c77ee041675c48c01bc62e0cfa3c3cf9824dfb176482dcc778ed0052dd9710b0424e513c6c6406ee0358724b41ad7f502987cc7a36c4e1fea511713bd05d3d2d0ad354c5ce8a90ec2e54afc0d4bef2bb46b726ce6280716712f2cfccaf361a5e1ed29a17dc69b43e206e14315d095296ef11338b2300dd83ea530618b1b517d8c42c98edd2c6c9556cbef39065e7a66bd2609297c42e40cdf702f10a2bce219e4ddd4c8b398ea5582d825558f82e1ed316e19beca054d81da21a75e59ce21f6ebdcd37f32c8742d7416923959bc6cf0cf8e8c0471285520198485dd06346b02dbfee0b0a2e5bf8ef06e0efc51a5a5d3e7cc7949e1e18e5e892f316217744423876826a6da72f30a5aa4940b2ece6205005d17179f258b849683c418140451436ed9880d75be2be6338e972fa3d38e975782665731769473d45c2658239bcac9a9ccbe58c16b3514c704c54e457dc45803bc8c7625d49f295040567898231dae10ab28534412d8d0f6ec403402ddc824389598ca9d86cf0b1e32e85f10cc16dc8360edc929ba7091cc4b26c452a0b6f99c6af38ccc54a7885c521f047b313b4b566579819879b89ec57ea28a75778e61af7711c8743199788bd2f31e98a9c41d22e7a3d07a2cb972e6d8add0dbe7c4bfabe01d764dbf5111317c4073f30b3c46734bd0215d4be8304bd4cb9e09b3ad2c401625cb8018f510578914206d9bee87196e63831d8fa2358abbf3302117c23d57505486474ce6cbda580af7493193a06ac8c14dea167a2f5049acc0032c78258ecd999b16af33204be031ca519c905211e01dc8d8308dd186c83457ee25859c7e65ba046cdb3ea0ae6afdc2b3f88ed8e3a106a2e07a8ec5ddb0abd1d31a0a97c45de41bdea63281d95fee5c48be53b455aa1d779b118b25950c933e77264c6f89becdc31df133f3443bab9c87d2260ba3b5d4a1ab76dca0bba9e69f64f2474984eed2be238026a854b1563e23cdcd6e89b672acd10266b48d8ca1ca6acab842199796488723b9370abb620a38129dd15dffaa11fd9ccb04324c98e96cc63b5b388312cd5d18bca43a185a2f671b8730d6008d64ccd92f1512d53e62dedb9e7bbf78cddaf8946d0f2cc6adc493775369ac05c65a25f85ef646d78c70e60be8ec40216940e38431620c7f640edb25160c730531cca83c4b1182efdc13051cf1144be0d33251c24c0acae2bb126467d408c12238d61b970046d228ca1e887095ed9feac5a17e71f3de087c26e4e865417ccd4e6530cc0d62e15956f7cb0cdf04c87778960f9c235fea63ffd5af3dfa60197781bb9e6535fc431474583ac7716b7f9328e19476116fa5e020b66421ae61bab5de077a3b654156212dfc9516c59ef29bb4a30fb441a0b965882b70d979ed363b6a5ca2661a1f701dfd214208d0095996fa5162f8c3f3360ea2c06ce1ed388c6165939ef9a662da3bc1b87cea22aad8a7371e6951143ec3c333a6a932835fc3dcb65ff003860b666a588458a80ecf7051d4f0c1952e0ac72cc0d4ce3add4b67bebce2698e7a2c5972e11a97061e7899b54ff00a632bbb82db1e3ca9ee215486010f48eb92ec4d27e4a7960b2ae21021e64ca2a7371953d2875d30eea69ac1aa896869da2ddd8364456d284a0aadd4d295212c07346e32b7ac2b8638b752cd3fd100b15e207c477604e74cbe163cbfa966644d0fee519f157ee58a0cf352fd5f4c1f26da488967b9da71aaf244da0b8c7feb80553c6014961752b54805703ca4ac5cad3949753e95996b864d597f11eed511f2943f9dc58d2a63cc3170fc6905599ddc34d0ca00c225c7b2f4ffb80f5bde261996e22e26a65e0d66fbcb90ed3d4b58b3cb2a031a26632b2dd9be3c32c166fe66a9f6c7941ec94abd827b988c5aa7bdcd82a42ea2d038b955300b69c65f7011b800a872de56e25d2da901a87ceccc1cb9baefdbfdc6d14aa4291ecc1880a7306b2798268571058af7aa5f01ed8ddd56f9945ad65dc3324269336778582e38ebe49c112e5d596c58e31611752cc708a36bdc36a12f986a6ea2e6bba8d317825c7b54aba988c5c2c1db17134c2c09b7804c3b91cc0edee00453e139a9716b885c4fa658814e60bd4ec4b0e2192366c6c38f3307400d0b9c1446ad7ee15db39456b35b9559e1f11ac6b4f301a0385aab80ab74beff4779498e74cb2ccd8e65161bdbfd128027e046e1e3d5ebf98700c60b5a8008f11691e05aaa5b03e2813ec885145df70d1264cb104c2a56f654a6fc44996582a504006326a2f42cebf1631a57bf54544fee181781c688c5050e23adcd98276970bb2a85deae30d6509596380400f451765ed38473995194b190fb243c241b74a6a0124a630ad6e07c0590a0405aa0f0aea1cb14bbf328ea041e236b0bb7111c8e63c24582ee0a0372ebc1042e6992e2880e3587d24c602ccf67e62006fd4b9753cf4362fedbee32c889c9083018edc91d4326e5eafdcbe9b9a8f525cbef2e6e3d49cdbd2a14156e21b62d453f6c40515e4d9db0ccaa810899841855881a136f10b322d0f231cc4b2b6402d970d612a3acc428b6e534efb8ceac088ab75a965406f33c4382f730c4d452b09fb8484b7b36c40bcd923ceb6d76c118df4335d8c36c211ccde5df8096d8d717a8d53a3ecc46729dbb40455525a2979a848603c6e25ad448da811d6235aaff1957a4798b4375da1368bbca6a5662ab4507fee5df51a8b7beaf5b966147ccc7b04cb2b1b7737442c6cedd11fd13cad1157f32c8dd35c0b0fae7c462061dcb79d41689739bc0822ce8f94cb508e184cd54dfb97c356afe6bfb2546bff004c9de71a366c19595e49c4fea4c9b428eb199dc9f5b826d9706d0b93c79974fda2de0778b8f7cc7893f0d31cc677c883dec8d6a5cb00ede5e66d8d47fb3b9d15931e441059dee79a10ccd36183cad87834764b69e52d0cee2df408b8213dc266525742fbd4d5e26256c94dab752c2bb47a3160a2064ee0d5cc4a6c4b196f3304d6b99364ba013230e95857c3dc87a8c1ddf0c17888f6385fe2531d778985acc4bb8fc333c46e13b266642a3756f6976979cc219e70092172f530914d99832177da5065da895a815c9862a1001383ede65e30189c333c2fb9dd4075bc8f98e4f88e8957b3086c6b6a602dd7057b8f131c7694086076960c273286d7de5f727bc1af2797a1d2ff00058b2e0769c40854bcca3accbae266e0ced8a01798c3419535eaa56aab3528ba778d10eea1ba18e2e108de92abb947c2f8845ef52d40f06e7211f0963e48797512bdb696793b2e097f3ce302bbe35300dec712e190914dc386a59bbb830fea708d607f73463a28cb866dd186c5606f9412553a65701a73dcf30a01bffc3030797db1625536b67aef2cf94c7432f313dbcd4b58523b6ffee575c27ea27bc4e4ef8b9836aef16f52fa5cbeb5dba1166e3d2fa2f3479889e2d38e561246adb981ecbfd46ac1ad4a08816ec763ca35ff00d08dac5c2dfc62105af1087372aa29152547b55ca7e5de28b17280e91b6854f30e7c4aa56119c20dc74364b993ec26641384bb95d01a2e11182b88ea343b77861596353e8cc0cf35335af0804d837ccb1a95a864691bf70b31cc0745723004b4966e670da6730ddd97aff52aab753054bc8e222a0af69ecda2a67451eb67895dff00166b72b3ba2225947abe3a5c475025b3ed2d345c46cb88d5e5bc76824d99b9931e914b59a29a1dc970788507a964a125c97be61733c6a1c9a7885d190a55ad88f5daab9b80c3de0ce02e07388b470e25506cfebd3003f9c105b63dc06aa1ba9ceae10aba9ca9c55f0c32d36c3f70b7c43f4316d0f0762774e210c110c5c932a6bc324b733b4d4184dba821187cc4a1157c4d5a97c289c4a11b7466b909dd2ac999c21d3ee128ab11dc15a861306d829f021313648fb1d4ac562bc082b32dde44abb0fea5fa3e509335ee5e63c20ba7bc405b45bb7689cee18c6ef87925ddd9cc43710e371354356cb96ecb420093c443929e18f515ec298d158d8c1de4f84a8be134c430bdb04d88bcf2a0168a143b7b60aca59ef02bb1093b79b81746651023d056c61e3ee56a57c4b048bd438e2c79a0000783375331001364d618812c16e22a6b64371829bddc298b9bc1a73146443c8745e94162b2b148da544c06561e486986d732ec8cdbaa8147897b33c12ff2c16ded1600ce840edd2e68884163b4aaf05c6a262a25b6ae0d67dc6eaf315570375f33d970e10f2724e4515a7f7a8b8015c661655aefaf52c406668e536f311112ad443f5476923056b3f107c4301c42daf7fa84c8062b288d4e989be86417ccd1971de5cca9373291e4398e774839399440d251e77cf68dedc3cc3a07cf44c4351628f8835d35a958ea4e801b58bd522adab94b0abb0583b792d466fdc703b7b8d6c38ba5160f6889404e5463d0f711e0a4b4718646d5d4a97c4c8139c20b32ab028789739b9f301408f8e9c33248ff0004b0b53b1dc651866c6485e00c62fec88cb6065d63bca8d0e329dcc9a1dcaa829fb86a5364e5732aa11f114ac5c5fa0798582f991ecb971da1979dd32517bc2c1555dd4db3cc32a194069fb81584dabb867f020e4771a95ba88b1c750aa36c19a59d32a5db6c5c0840215b6034bea2dcdb2642ef35e65087c0384cd4eed1823b8b3a67b9b0ce55308dade8bf199df66c62a0d269de22eac9e27a4b5c59ea1c441b2bf50ceafe62dc139fb8ca7789ab3cb8ff00498639da57b45200d9681e4ed16260454240d605ee0de0ac56962f398ea5e75358e9a3f0f933480bc6a6c0cf4bc6ee2066f2b37a99868b7b3a8d715912cf714130343862887f5324ef1d423706b464e6724e25b8f99724e1e49b9be3ea13d9977058d454a13564bf4030d6caee23c9e737c454e565da6ebda69732994efb681df59261e22ec6350de555bd8f312d9905f0707d4c446254e1191ca6877de5f4be953e0206081ff4415dbc423ecf10f72379874680eec1453392635e2e2a8e231e61b129870c41ee1df1142620063a32e5d83a05efb4adb6d3c4625af111ca622b31a4c5f89b9b4a41e97fe63b79662706656811d46b7e389a04b22a5b866537d4b9ee0f6afa815ed05dc45cc9569dc55de32cdaf1b3bcc020ec0414a5a58de0e12153d2cf862a9a4c03df1118ece1ad46ef0adb5016aa1beef898b5aefe3b7925f2b3fc62b387641a2bde9f2313da0e9e2394bbe7a3611a0da8e3dcc400f0eae505747099222bc0f7a9863f0662bdc22c63a389b84fb8cf718318b57a5db16815ff006b31c238449ad983fdb33dd2e10c300a3a02e1228aa99f2c988e443617082e76914dcf19ae2ba0a030747826cc402708e5a77f12c2ba574dd2bc6654e407985805ee10916b1bb96f083f7167105ee16419d5cde3a0942aea77c1c3075ccd5d656b2e96ee0abed0de14778e663b3ccb05d9736dcc513ce65805e788c154df1da15b16de55ee14f4658a39225e979b22dbd4c465c4c425c3082ef8836e89fcea39d8b9de3b7b95ba4cdc0729dd3502ba552e0b769ae2250ef0b62b12e7895635a8dd72cc99a9f580d6dd4a179197aa6df2c195239a9802c8188cff00b830fa991d54cef66bb92d52d05c647f24d5c44bf54766021039b35efea1be996f245f30f336966ef1afc166dd4eb46312fb74180c91cd57602da85235ea5b1d0abcff0032d30cb5100f11961a6e2aa662aca2b9965f08c898f16e656277c9a0804e19996fe2667d7eb633a2ed71402eff0089c8c7f12ee562a3c47b44327d22f7f6ca576778a5b24ec2a32252a5cbef0eb01fb4a5dae4958d743f0c610aae03b8cac4b8f59a4529e192d21114be5856bb44a7887cd4c5549ca6b5d198d07ccad034346636b7345dce224bcea369e3bcab357d12b6e7b911235106c89c717b8055cfdc67aba823f2455ad3d4b344cdca52fa6b0a82e65572768443ea2f4cc6933368d4a5f84adfd43006ee1215e63e2204b41f48c1cd914054bb235f1b888be2234d3572c173ee6fb3d44c1a9a9f1083f9010dc4b6751e96e23de2ea5bda0a6e1f6856659d85361416647cd7b9ff0060060157b0a0f7dcae6111646bc9e22b2650b99ab956a722f882608663831174b9a9cc5d7dd460b3a731bbfb225443e456c794c2398d09f9607b7984051f10cacf275111297314622b4d158f7158617f07046233b7885614c11fb4edef513bcc37359b81bdc4747e59cb0836a474eafa5c62f7e90a1798be611b94008145c1578328a84af4ebb2a5a05406aa7cd6e0bbb37163405f6089bc4764cc4555f27882660deda338588ff807a08e186e23cee6b2c4c40a65e2bdfdc72043818ecb6fe66234e27675f17820899c4c186e292eb3339a8b132d27198d8b51baccdc2769b62e24cbc611971e6ab73311e8994f6258567d8d4a91f4a355032613ccdf5b283bf47959a3fa8cea8e16cf711d1f6c618bb86bfea7899d5a3897e21b82f31846263f161f82cbc4c6d8e304262836bccbce4e9151db682ea0542935d88a2b876764c9a5e508731d178062d7a571006ae4b72a4bbc59158de246e65fd40cff0072353ce1294ff29552b02c7b46aa86d6e2572574b75f52a5be132fb8b4259334f077f7297a1753c22c6f9197d1ad4602d8d43be8951b9f11160d52363d3ce2b8805645c12eb984e11a185aabbdcbcc4251ee2e76f43100ca312b1fb31ed08b66f98802b46e1a34bec4beaec3070e730b30d722f6f6808275a8b1dc84374e66470cc6a10b2352fa4cc6206a511396557c43aa9014db702e905d98fdc160f530685b3c550955688c5659e65946e626a1316fe52999428397b4186dd58bb557dfc43e1d1c8c1d1ffcb3050e474f784734b23ea52012b20a3918f6b029be670956de847bc5ac5a7c4bdc2d722547ff00affb8d3d8e5f24a0357075f10da92a3f89728b63e8f980c83cf8628d4e2be061bc30c32df714eb7d1370af1ccec2e7e07966040d06582ad562d9969d946d1c674dbe6398087301a305a74da647e930357da0669a81550657cf50bd44e35d1e3533ab89520d0420aaeeee035c25cc94c38dedc949a25d8aa6ff000595128ca927075770dc75c5630e0a9622b997798a0e65919b63c4056aebccb20978e8428d312bf22a9ef28393351cb8e83479976f45e9277139016fb4c91a636c3035888873e22324babaa96a6fb194d7ea14f706e0d4e1d219b9713fba4c5d933aef0e1b40e4e660cb7e6586cceb93e11407f926e4af388a5adf52c0b627ca1bef81939942f0e3dcb5555541416afb84f8b1c2461059ae0cbe8b1c91db1fcee0400cbd3c548004a10ec4bb852c10a7bca61b37bd88f6efdaff0032c5c5313648e95316219812f38881586925e2a3dbb95e3f7189711591433730ec9cea94ed2bbc4500cc600e5b554dd40773fea36a397996dbfc2636057d07623d110f12e0e8e94d2e73383b3732662dc4bbe8eba6d98a81d18256f5a6aa34c5ef75d2ba92960d5268e0b985c4324ed0e0ed1ee45b8ee8983d098f1cc0a22b1e6014b4ed8940b95c4d6e1510584bb0e41cc4a3e09a3910554ab8d4d74be077e815962df0ea6eb65bde3dad52e390cc28f6c6c0b5da1dbde503de607fe30a0c62164a0e79c4a413b183de76689fe618ede4a9dc545b474c0ac0cf997de64c2537792650e3c196b14d3b58c84f1781e9895c974c3496af8250995d3fe999ed299c7116b268e60dca1896638dcfd904c6a2bc708594751318975ccb25d4c3880595b57cbe8e62af983f9f11bcb777965ad52c628dafae062645de60e6e03515898be27235516fa32a2569b8d9ddcb1c513bc0c410ed9f5d5d45d9e983894b061167e912e4673c562b5ffccd5c8e25b0024aaa28470a1f31633be8aaa2c1f27e00351e97463a21697cd2a5b728b32fa5c02253d8ccb26239788582bae4885c6a1d57777e4efa64384704b5a9fcf5a979267a8f698b4b495f142611d685c44869219deb11d9cf0bf5614730e9c326e6de26cf315d33132ba84c0778fed06e3da995b583b4bb1698b2f85e27b8398a2f836bd5f8961814a354e7e62642f6fd0c3b4a02917dfd7794b1ae9d67a1500a02918932bf4107a5c2729b3fc19b14060448dca108480310d20512aa8a0ec2f31ea3256265030a8a45fa9b99b8a7110b2d72b990c620861710cb776cb0677ee63037c1894888f317782cbcd21e7894996e32b1b53e423fea593e646016f2eeeeef6261b6ec4d05bf2bb10299e2483a6ef4468d1441d1cc2282e1c41c62d291178e99bf1d78be81ca61c7418e95dfae5e2ee23ee059daeea3b1c77b832e5c4acc4a6a02c7113aba6f98f4b56ba609ee76979c7cc11ba633c91a0e652b71fb8b79e31132a6a67b159a5044a1d457d1cd42ec3b472ae498c97a616de25f79df31432afb4bd1c84dcb731209b9cdabed057d3b1983228717335105d6e2b1a6d5a7fd32d0a0f6ec3107c0f0c66a66cc81e9e620a8af8e6372b6d8c9f12fbd46a288ce06998e28e4612c0381a0cd83d3b458851a98a59ae71a8b8108c519c33e8440a6bb372d6b82aa97082b735019605c0ed7fead81dcd017f4460e3d727c46bdc266511a9852e37c326e688bb31e268a2a7c07a10701777989747c47a1d5c152eb26e58c1788a4a634b48ca64f78aed1e719b61cba44400486e61991cf100b720f9c46b93f5282f79fe020cb7f8437663082c79a82ff00a27ff1e34412da203860778881b9b818887895fe110ee632bcc7a0d74ab76b519408077c91073b31d37d036e8b6ba3516fd3b304fe8974cb820c3c3996e6105c05d909a592d530d4117001320b970bfc710260529df98ed4e529f31d255a95dc8fc9343b7aff00511282ad4aade25e1a19e1759f6115736b4ca4219286233013f9e8306644d9fc99fbb301948cd370dad9ed0a383eb01e01ec91885af108ab8f6172ff004b4d24becf180d9de02a3265394bea096345c4579a76ccb203c8b35f6e670a3e65fa71ae4c1bac69910ecc4300e1b34fe2191e385494cf2605421c5b556799a5cbcd4c0eb320dccce0f5874a95d202d815d2dc36ccbe617bef33232b9496abe448c1634d30839f4c87c228e4ba8f8710e9ac5c3cc77d7267622a60d44d3de3b85a836cf66a188f3d5d6704512fa310952828d4d2a2282ade89621da66e2a2b06f4fa8b8ab9b571da52ad5c30b2a0ef5972a51b10f990cad1d06bc99ec264db2f6b073e3f7448315c92a0bd7f12965b64d888a7fed3bcedd898e4d8783afb81cff692c36ed028a9d8414c30d2bdbbb2e3f66d82a6214cc50a8d79c408db1cdc4accbdf3e9179bf80df880b44f0ac31544ae8c959aee4154e1aae60dcc291d8f4014a0ec85ff00ca8dd8ee2febbc1300b659f961e5dc34ff0072ca788e3d25d69c7b954cd568b65d1da35087129ed2c52b165818edd5145459af32f742e1cc01a6f10e86188e08abd33c113bc1a65431730bf48a8cbf1285652f6731ea1a97e488a94bcd6264dfa44b2b9151fd31407ed1702659fd84c5b4a1fa9ea06ac7a213fbb9fdc09fd759a2902343e88f1150d6fa21bdbeba77be41213b2154e8ff0058d333c40c7cec287ebd8f6ee1bb4b3a7e13f9d8a9fdebb9aad0ed7b684adce3ada52ea00441149bcc118f4d3ed79e8d22a8e08e1588ab769c4c0bdf688ad23cca85b2c7b3a19626dd33b1d4c8a115f9458b388e598b46b84af4dc6f2eea2eb2cedc4d3e2e5f2a9a7863ec8d4a702e7b841881821141f27f719dc24c4aca711d8b82f0e8474c7f2ab6625b6e28e6389c8300d5c021361a1c2b2a5a9a5cc4c3eb35a52564b88f740055f1c4a1957217656aa31e19e9f1dbd41cbed8594909bdbf50402384665752fa83da9e197dc0d4e208f7c46bc2620d2e3be2a01b4ae92eaf4432d4c03ff45c7addbd1e26cbe3b4a7931b8e1af53e13a0e8f81983a364c5c6d2c7327680307a4be6fbcbcc7ae187a60d6626824e6625e5e84bc41a61de685c30a853a0ace3bebb1d12c871de663764a9015e6086b5442651aa4e4982e2868e09b2b3d9956fc2372a48280efa5d43b20a23cb2a0200f13d85f30c8b49564a7418857987023863e186c77e844dfb5402e0636f4f310e3246cd743d987e024ede6107f8cd9a9e488007b4c0d31e4c00468b88d60f10410314ea5ddb28487873c45662f940d86e28da506c20032377b8d6bd3156662d34ef3166e2f98cc339fe61cca00b2aac3fee2f4c96981668e133977ee34519c1bc55cdf38fdcb3289146665371f548ea888bbd44a73d5f510a704be86e5af132dc6b87e219ca471e630c0e25aa3569c4c5c04120d9ea334ff88413e49519909e37082e7e08bd879243609f102e84bfc4ae138516c1c2fccf694ef29de5914ef2cefd6e16b851c4a410b382c16356cce70f097d6e6e135f0d345c2af3d433bf7d43c00f24d80f173f6ca189da5f099fb121db2f1b964f12a698ab8fe4b107b0f640dbade6b1fcaf044fe3a2152b3940845ff702a358854a2db29fea9c44b5330fcb13b1f68b03349c0c34f786132c3a9dc1ca119187dc547690c8abf884952654aee3c8fea1ab005844054e04baa9c0f721e583865c61a82ee2cbbffa939255ab3dc9f129b5f647a1286999687f84c9fbfd437d9dc77f955961295c1cc0e45174a24b6e30e0ae782f0d661696896398a99dcbd91ec3307a0a7954e035d820a82af72cb6fb9a962ce3e0d71509554ba693667a00665491199182f9707af13ccf24295c1b2c11985e1bacb829cc0b540ea8033e5296cbbdea55433de1d6c2cb72fa583ee6e0d28663614e238a730cc7ad6d7f1d16e02cd741cc5823d021657a46b18a685766205ec87ea1474d0cdf998d60828630a617a96d7894cce3930ce583659609b96b65ca9f3282623d1b064351131d1ae4b8579be66a2732e61a536ccc5382352cd45716a8bcbbb21acdbbe63231685bc4ed43c19868b49180e7b847263ccbdee5d712e0410ba6043f10c3ee3d00bdc07b20c5cfb4c44184540f9387719df7988f88e71d206be5dcd29025aee70f0cec4a8195da73010797b4ce53fdd711c15640da186e0b266a2b56b72e27033e21dd59dfa12fda56ee56e2ba7797309694846b8fc0cea54293505b96a0cd11168a799ea1dc8be57e20c57726257fb79b72ece26741e4b86d50f82792c7196eecb32ccf6e9a9cf4f8cb71d3c92d52d621ccb06e6e77218c2c41b1a1bf706ae9e8c4105997966343014e045c48c3f9c1f176a37097d2e5f4a95de6601dd8f9810c6a7da40c878997d6f15378248b2af22efe12e8011145e17dd2367a72e2e62e497a2e532ab1321596f3a771c4a37a9632838238aaf88799dd059bcc18b08aaa5ab2b2eb5a89470c348f0c1c236828bdcc3c1cc39bcc354dcd6bc36bd5724de956c949a3e4fdc4ea363869969177bba3e6297b99ae29feb31cd0208bfa65cae5fedda0bd05e985f02c29a9833cb2ff0011602111ccaf0cf80c5b71b83779e25d5d0f78132fa3a9a72f3b82c51e928d0e5f2c6de03f686d811f330475e22a9ed1e8d3b9c025f2b94874be8315a371157d57f0214cd5e2199df68574611ee60269954df5e939e9582ea10f0add4b8f50f2669babad2616732c2f32c623059165bf025d50eb28e5f515b37066aa365db507f32c82f51d756665286820166e3398a18143be3a74a6e332423b9f094c8e5d426dc0d36956e715139a8e2611703536da70cbcad711e30dde586a32b779437ad4a6ce805375d5839b940668662b9b985768944f379745cfde4a2bb6724c582398fab057c05bb8d6eb655c1655556dcb60138e0ff52d0a9c5ea7747b4e64d1c4a6a34371d35725a669d360e530a0c03db53baeaed3c6a690761dfcc63714bab775c042806eb87452b1a8173549b8dc059e6205fc5115194a258e663ba09d1f32f2743734577c23a607e035d0961d07e083292bb41c8af130bd86e7673c1102d5589ef3287407e0096ed152ab7126673d2a08ea61e46257113105e61ed08ad9500ddc7afab6c298b9ce7aae7c32d2de7bc714031ef84a95f810fc93633c035465fe177b94175e09628f9a751b0277ac3380b5cc1ac277a9606981c19dc0f608e3a0e6e238981658070cb868be20dcd22455fb21c4dcc8bea65adca2a8a320e79a8740b280cd4213a5a2e1e3e52921e753e7398ad41f1c95cce4d5452aa443675abed1b4d4c0c8ff00f6577959ea2b7b1a874ae985b074ab82446c7b93ee253d53e60456e1983d8f51112ab7dd85c294f887f415ca9c2efb30b2507bc2fa2a2d7920079446cba98f3ca3d6a18098e46aa5f4dc5d9ba96309700d769537be7a1b68d477e1c4badc3c74a2afb40a9948268e8c166d98628be952b8732cabd4ba10ab22e34e150d4975ba8189f9595adccc5420364abe65cf583a3a3ccd0e6034fcf32e7da09b3532b8920518b660f699d34f46188cb94af6983731c56d7a9b2fb40f352d915c8b1129e3896c74df68577da317b21d032607ee58e310283be973a895e62abb971c297fa85171cb86a1e3fb5718b4867b3e66679899bdc56eae2a6e8dd4a070c0a948ed00256592f003eea51e033a8acbb683b4568b7c823f4ba5d97b46084bab41197a40a3965127c6c5af506d6f21831b6122d405029cb0b2d659dd877160aa11d12ed3ee6fc47a18713919b862e999889b67509e69512a47e26f7c19783f03d69b1645a1640d3111c058f94018189496389b960452a19b657d9957135c3d0e09885da9e1111b41181c90f09aea07b43c21d3a4e10d4387c44d219fc06d31b85df8986e31c52929d152bfc37f95c21c33ee4a42b64853e87c622cce33aadc06ee23bc4be964b0e704a0c3897af69a4ef017b850f0cde15992eda66169cc691cee0e4c6e564f88f1894f16dbaa06374e56ddf923e74bcf65116c998c20e4a71033a5d4f2c024bcabe41c9292915a7bce638e1ed1fc632bfc02d0250a576856e24ce996b6256467b51b197339867cc52e298b85b997e08b5cc2d82f94cf97c58b6b72167db8629877262fab12e3776869089b45688d1cc00d21d5bf2cad3b112314d7307575ec875ae844db9fcf88af241544355198e6f1071ce364f58b164506e5a535dfabd6f943033016ed0ee8d85cafe00d5b92160ef2904c3d418a8bd44e495d3c3a54a55a0b4951829491e706a64df401eaed1816c3713308154ca5bd30c07350d3f3f8858fe057bbb35da202f08985873afe98f1b1e7c89abb45ac6c9fbd20ecd5ca2ac221885970ab8c652aa7577635d6ee50ae3ea824aeb7bbde5933ff000509707b6174bddef532496b8823932c10e731311dad2e5cb50e209c97502c3f622dd6ef040598f5df10bce4382262a3e2766fcc371fa402db2e4a7749a63f111d9f515b336d5e2568db044737b4a02953967471f51635fc3b99943d21b8a47abf116280477ae038772775813894ec420a769127f850ee0082e11e1898ec9420e18b3daaa1ca83d659b0f994eccb3b43c2293f9bfa1c7f421c3002d7feef11f1f5521f8972fa6b0ee447fe23603076b23eba77e53c62bb32996ed1eb72e5cb97083104776410b4398c895f6484b4fa31cad3b901c3d295980b9aaef2abdc78898ad47489748fb32d516fbc5b864ef0d1db983d02a3786669b79897fa818f1f32baa06db57fe6e34403667477f5090df01e25b0c5ba2a12ab44a37da6bf92382eb62c5cee660e48b60a18601754f54b8610713271988ee2c4168d431dc2e05078373136e2511c12e6e158230a61214728e530c8f2e196ee3d474bff0064aa65f132853078863bf79bc4f314f082d422adb2b2b0ac1b49cd5cd4b612a50fcf5f83d73474c2c2b32ba233c116fa5f899e5592ec7f2ec25210b85cc2e3a0d48881d08abe318a20dca7b30bb67cce60c74b0be213992a2c4ae84581a60b5459a47d4caf7037ecc0cb6e845be95dfe231ee3985899e972efa3a2bae6671f908db9d1c2b89c7d9dd3c91e70cd2261200badb95510c65b20dd2d567830c7c66654509b89b00ec4b221a14b88e13c8c728c637a219ee06c41dfbc716f8a6d5883a44cabb7adf413981fda52b8214105dc19070448221b53736cc6e996265e9cb0d177c4a5ad7cc3a887a8535d6ba690708a806b6cac3377e88aab898b8ee9781792b0a4e28a5158fb9571984704c372ad8fb9a767689ffbe1ace3c53f9947f627f885b5678250747c26cb16a687b652bba5cfd92467b4245a5deee1af8808e613c1898adbaf24c797ca6239cafe633e82183da3e05c2eca3df0cb43f00598f03e900dd35799ae697710a229e510f61a99f2e3c4f073db0ad15e08c7377d8c4cabc6a2aac7d9a9b9b7d4d9a598a707b4ca9718aeb28eb30c141be4679ff12fb110c445f0c4653da5f425cb971c3d7722ca15ecccf178c66480df295d7677c4017f2cc26a4cccce3c747334c04e6d5c2b3a8f00f88ad3611a7530ee8a1efdafcc4ee46afb21d07063f9a3b6fc3dc97a31c0703bc1b5a9592ed2f50b9e1b8802a5adca12b75f4cb28ecfdcb62b7320aa2c4aa8340dc02357ccd9e267a59dcd30a534658c1506d063bc5b86662735bc5cecd4b0994a99a6e6d6a50bab22e4f88dd4fc236714ec95a0a84ad368cd9612c1dd164ad3da506724cccedb8628627b89550d8c47b4cf5058bf1d09cf462d7468bba8e866cae26620d22efb4c5b22b1d4b12fe7518aceae18dc7a1cc78562576a64a95e3a074e085eb715cc4bc130da56e588c49c29f717a38940c4966b99553dfa18e834d917314288c62b18b4b70fa234fa13da3bf4712ee9d0fc0de751e840813358216ade9965d6e4b5e4f12d7ab079384ee74ca30eb10f898a6838cf0c3788515709b1388f10d641bb8f9658fa99e3d45388d465b50d62671faa54c8721d3089ab0bc112a6cc9a10cc2faa4c3bf40ef25ad0942f9e9590b50d5e88ec63325c8eb13c2ea5c8bc04ae443cc0c084de58cd39f32a423c7f86a60ae5c4c20524fccf054ac6e5117c9809cf99a3476959b792512a8f0253ff0044157d946e62f002228efc1fc4693d3389c02814c2adec824803dae56a69e654d57ee57a7bf50ed0fccaf31ae621b59f31b2fa270abc4e45def33ba578c40ae43da70157b4570bf31b181e982f083b1b825b08646251a94456f809c31bca781b65369e0aa4986827b1285e97dc8f8a8e305ca8d4e54730a807b545aa279895ebaa3686fcdc51a21e62c64220aa54b69ddaa85e81933006c47cc04e3e4953bd8d6c9f887887b998ce0f6418df3555344636d648b25af728e913c3026bf0abdea29f814541dbd902351afd45f22b85cb90f246c621c4a2c43cc4686cee46c83353087d9c41d36e91f532ef690d3fea195773ccf3151f7b639ed0eba79b06fc9282d019f3119787755da5672370e850bf72c0bb6e11d84ceee1d40deb3b81700313c00f795582fcc4bc7684d8dcad1810b19d931b6a326a50e799fc31b7a4e79a9431e5cc54a1dc9467295b55ee725e5b271c7b26d208c607984a69b9a070e606cdda6d797897d503620bb9a2fee09c17a3850a5d85c5e71e887378805214a34c456aacb02250428e488eddfee298accc0ca441aa9538e86e272a8a2d5414fe46372d714ee6d98e21973325da553994bcca065d055e238be7d47aa60611eecad7b44af52bf12501a827274bfcdae3aa75faa0de8e1dc6825b7b8f696f39e57dd7f5a99daf55e1069b8ab52feb03dd5cb3619334698a993c205641eaf5055c64d9358ec161f4c01e414be2042b52bd8aa6ecd3e0ef1e0e2980f7e62ed0965dd898385c605d227cc5384cc64cfe23e5bbf128eeb0997bc40d9c73502601fe3be8c2a7f28eabd0095703d5025935c1fed96169b45103454a11f8935cedf6a20387caa87ff2a8661e26102a3ec131b82fe6894dfac990f8c8300764da15d248ee0d07fbdaff0051e621f394a7165f88b05893bd44f73e21cf0277aef2cab5f8c3684e52674eb3031ce2cf25ce6baef1ca11ed99844e4bccdc02b788b955ec035301e58a45d073c352de602e696213b71fb85a9fe0a80b561589cdd074ff00ac0090983645b82fb32b86b5de570e5e2197640cf241c77439d7d4155a254f4ee3863f499e5fd4b1da1c8fb26ce28f091bd669f0d4a3243b2cc392fad92a69e37129e42a0bd8079371264abdc61e6bbc4f127d80dced8fc43717921c559fcc22010761fb88e65186b66fc4d9d7d46f39ee05982584892d4338971df738250d63d63ff8b13d0916f7768a9af48ffda9828355e3bcc78a32f24ba2f98aec777f6460d286fbcc4f318531453bc6d6c4081932fc4364dae48950cd88e2d588aaaa17dc2a61872c52ad19b064839c10d5c7e52adc0f04cf854aefa60b194e4030a3ca4b8ba12f321869c517b595dfad5547665ec4c718388283b741882037b7286e52ea601f5286dfc4ab0579ed0008a8359cc0e9a2f697837109898a89695d571578e968fe017388b70209d4bbbd9e254d2c4ce7d746b708f09508e17c4e42401962ba081773d5accb3bc5bfcce8ff0092bb4b4ccbc403899a0cb1021cc46e562e07a6a4a4bc9e21a31149fd5c9fb988bc5392076803c5e2997f79c5ebd437863e67122a2775a799f626c4bdbda5f955a43ee63191dd4b98f5aed2aafda5b65372e6651bca306499631405c541b1b4d5b7b20f47d734a3e3abfe1bfc2e2c76c7dd853e0147ee02b2d7ba97b95ddb701b13d3280020a2e303fba1a5fc8804cb3e0c4305472b8999f9b68bafe93f884a7de5ff00b8e961462c8f62e5265a798ae39b848d05a0f223dc0725dfb9a9feee2a95bba1b1fe73441e5cc54d957f7098fd32612b1c9923dd871494db26da7e25860b78450d5e19743d559270f0ce9736b81ed624346e70f32ad9969c2644e94398d29502f2414a671a7f304581955d413dc9c1285191ca25b5b4f76e0ab47b5ea7247e673073dae0e977e012f7b4164b16bbbdcc4c6f6912dc23f41e4dcb12b3c888b937ce27789d84e04ffcb2d97995ef2bc9fa94772bb676808598c7ac4a9abd972922be8a89a1bf0c372d1cc1ee3692c9469af996b1745055198ba4f1105caa3e043c6e2ad027a83b8360f41c4ac8c7d15cdf87a97881d260f11129f799ef3d31382c7213df7896cbc4e1262dbe996beef8f2404b33a9979422aade59fcd2a0aea6e19efe26e19f11766a1ed32792534da637c4ba4a284d9b2534d930cce0698b6dcb3153094a85fdc4b11b14c57db2cb80f1b8edd7daee234a3c51e830b3415098536a6654741d0d5bc68852d15052be89b94af1cc5e522b62168dd8d259e22633571b00b0e13215434c8c23c4d7e624b0c74d11c751b4bea25004ac40a450c0f56b0031252c6ebdc3380b675b9a9c04790688352d8e03cc4046492cb2c4676c5bdfe1c49469b8f51c5475d6edb3daff00c042ad0b7b30db4e3b46360a846ce225ce39810522167f14cd06e12c7ee5ff00c195ed862ee18557ea64eb7777a7b788d0b061baa0a37c969e96467ccd4cf8ff00837f853da5329895ba3e63ff006305d37d11d8cbcb51f73c6625b3fca2428f99d8197dd1e2129fff0061756dea50734a7f9149e0f137727b1871b5042f1091c33b587b98041f5716c119ca7ff615e63ecfa254cfc094223c3c27310bdd72878fd4255fb551dbc9c26541f119076758d32d733b2373803eb22fcc78029cff00b8470382f715b3ed693b83c546b88adda17edf5160821c01ce9500d9afc08326bf7d7dc158ad1afdcc5fb8303b55de39c4c4b43354dcdd95ca0c41176cf466c504aa759da270d24a1fbcd23b27a8bfdc0e504e90bfd4e31b3c4ab43de84fe625e10c423241daea1468f81cec47bccd35f68cde7ee89cb5f6434e4fd400c3f88238cef66182a9ed4ffbb6140da77197f1f08296c6fe65b2efa220ed1fb988a097e66651c89c784da8a1d8cda15c0f07e234e93b4640bb4a5cab517312c5a88dbbaed09f0156a36814dce09dee54d0c7dd2b862887de6ee0860c67300e35281a81f130dd5445677157a976625f787db05b103698784a3cc2e0138132371733304b1f53070c76a5e3a0277f49899d8fe206eb884a57c26f16c1b49ae23e62ba10ae4af98e716bbf108abc35a94f9e6168a212e934e6bf0a9b71f116a6fc42011b4603dec66661cf011cc14fee447ff8304a323533d403a1f51cb63e48551f4ccdfd737d209a4c5384fbb83763d195c35443e152e2c0362d17f0416694341bbbc27cde26815f0a0ee69f682c0af6b465b209bffa6976ed8cd026d4c4d7a7455b812dfd73ff00810571f4cdb881620b1f4ca77f5cfe5d13b2a33252f280f0cd202f702c052e8008ef167f5c6018fae7ff000a7ff0e6a57c7e77d2e5cb972fad3299694ca955b651de223717e3a8bdacf8accb707dd25cd97c2441b1edfc206c55ff009dcd5fb84a8c0bf33fc42d3ea5ff00994efe3025ec55e4601a8ae8ed1e43ea34c49708d240ab33238c47bec1efd50c314ed82b2dc93c20d852d693f99728cc2fff00d8d62d080c16c798452d81e1f164b35ebcae070642a8a5f7088d96b9a8bdbf72e4833b1a669e26c38785e2016ed8bd8dae3e3ba0f42b225e3efa80bd1e0ffcc765476baffec18c0fbd458168e12f18aac101e96dce6592910f32d822dbb9fc4188791cdc11d7e2a502ad176d46935739c8c50414d63501766e05eea039ba2190ac466f799f2c6efb93dcaf73531cc2574312ad0cee17f31cf49ee546f5409aefc4ed07614c48c07e8ca214f34cfa838dc425fb77255019f1296adf507b2c42d7e8cce403e49bc1f339c4c899992157717858ff0071d6c50b155f599d9a3b21068e698a872f8b851809762b7e62ac23dca62f8224b49c464e44ac00be63b8d3d4b708e86704c9ac47999b711cc58a0b02a2b7b8339858cc38cb45fc7456e12b02b3c2f29cc7934730a0ae231e9816b88f6350d00576826842bd782036259675273303af50bbd01da14f296ad6b886303cb89595f812b33a1581e52e05a3e2609a3bcaa5f3e219a3cc0e96875144c4bee9e6964beae221b5a7ff002a7ff2a7ff002a6c9fc4abfd33ff008f3ff85166f2fa80ff00aa7ff3e7ff003e7ff1e7ff001e7ff1e7ff001a7ff167ff002e237029b8b4d36adfc4ff00e34f013c0fa941c1f95cb97f832d2d3dbf2451289898967424b52bdcbec660c0fd45aa3ea9d9fbb0071f9b8ea57e597b0bd81285c1ee78efed82ac3e89fe92201b3ecb9a910635897d2e5217e196cf98966e2965cb843a621530cc733171abc74b96ac314e5f7394a96ae73d00bbf32a6cc4c32a7665dcc9ee2ab1d97182e4e2e5dfb0845383e23c2af2dcc05fea9403956ac333228f57518655f686a4d06ad82435bb7fba6c0ada803259de299553c4ecebc5c017f44968c081e454c33469097470c6bc4b15fda26669f304e499ef3c987f91e969d6b3a8d99807150ec63bdc7ffa228e512ded318a5f92295758f12e947ea6db1f3324d39895ec1822a23ccc7455ef03b11dc99b0d3b936e47882195c37a93c9359bf50b2fe4a3c21f706afa188b628f0c08fdc42721f09c157dd16580f72657352f2df89e6096657c4a6e9c465d73369e9999dcda67831e0ea3e310446d2e422d25b5b9a900132b3de3c069fb8d5ee0b7ed0a0389a86bc7e218912c41d1e8a34cf56614c271312171fc8d4e6c799a7df12f388c444b29e59ac31dd99103026a57e2e80443bfd41347d20d98fe25308f685f7fc6e5cb97d2ba3de7b4f69ed3da7bcf7e9af4d67b7454a952a54a254a251fe13aad46b11f71b33f6c2777a265fc345c9ec4dbfde59a09c26bd40a65609b7ed29cdfdcf01502d57d4af4a9da0068fc6ff0a6f72b3b942667a972fdf565e6716ff84c981324e3cf5aeb750a8e4812a53d33c6a3eee15cdcc4bb95e2213d4adeebe21e4be095e4b4c92eaec935355b10c2891de3e3fbdd911c4a34dbe78955c2fb437e076989a96838490e521997f4d3429ed80fb3d4ef234e496cc4b7b10bcdd5c179ae84b97d0060e25fe1513a87f8bdf5e7c7e2d9ac5c7029a4f103480497c22a55f096d454aa4f4259b01c54b079388d8dbf0c7bc3530b0f682558529405538608d93d171e1480af0bf12fc8540693018598e3e19379ef8a70ae2c8538fd9117498fdc45faa1eeab96d7cc37d1e8621061328568a06600868cb630ba6def0b0a5cc9959439226ac5ea01619c75769c9982b5fcdc934b258e16d957960a0898c45781e60e2d039a43f3a7bcaa66df999bfa208701d0ff008c6e5cb972fa972e5cb972e5f4b972e5cb97d2ff00353b93681f336900f27d11fe8697ff002d8ff7096ec97acce02c3fe9750e7d2ece7cab0b71e84f77e004391407fddb80e8f4b97f9e78dc3baa1f8df47a315ed33de7cfe167797339e298318af4d7b462ba0c61dfd36650e732b18df9973b2f620b417e2e3b85c1761f1399639a8701cfbd2730fcee34d26f46048ead5371af5db40d4cac13b1a42862e77186a20eb941ec0d612da8ef2c0b27cb2d9cbac56b310ad01e58db17f8807103c4b47a86fb41fac29476946b244d2e9f70b7f63029afdca5782535c6506bf8c0773f106f552d9dc97065cdbf01874fbe97f80f4bff00138e19898be2ff00c3503f2bf63ea6c3eb9b6f8b12ad07a53b444582844359f990b2c33452ff00b22a9c0c2e317f70b1b4f728c26dfcc99c9f24a0eb08951f1496efb52872c91853dc5de98a5cb3e26a3783780adaf72161c352ef05f98b2ed22a6791e6e0e9fce557fda7feec5e5cbdc3ff00b27fe8c7ff00a268e1ef73b3bdee59afda64ff0068ae23ee2c27d103cfea1ff573915f73444c4c7e1531d2fa5c59717fcb7f9df5a1b7a6865b57b88349f88db567e264a881ab7c47fed221cefdcb5a1bf32fdaf867fa059c2a7b96ff00344fefbc78f7a9fd89c1d1f454d23c50fd9bcff45b411bfa487f744398f6407a86897c431a25bd332ba627cfe6d3d6fadcb98f4e5ea32fa2bd197160fb88e53e63bc458bde5214c0edcf4347210bf2b09059666cc7b96aff00b82604a6a7e04579b7b206304073fb966d3f3297bfdcf646c4c6650c67426462df150e2d81656462063018ff005059c97d830334f2a948341c456f278251c81b84b04f45959a4899e6e08d5947150868bdc0b4a5a39841ee104a82f7a83e205a080c66ea799f04dcf79896e252f083b4bf0e08e2e0d7227e0308b972e5ff0092e5cb87e17d6ba33e65cbff0092ad8be26c1fa07c2d78d23bc0628b7a6d31b2c5f71dc3fd42d6ca78853207c10e34fd894729effd236997a12956b5dab13902e593e9ad01fdd68e3b3f719300f70a31f241c9fe279898b6fe62757251b9c2e0f79f12e7cefac62962e21fb9e623b77f330d87cc2bf4898b3fac10dfea0d78114a4300f3f69bd3d1ff00054ae952ba1a360f99a43ee12dfc4c4b4df4a64c8f552f80bd927fbe8ff52ee0f44c3558f204ca7ce4a22b3e0929ddf8604fdca347ee58dbf9517693db07d796de7fe63304ca358dda35e1f53c0e788bb6fd43f97a45b4f6e687ea9a59051a0f896ccf7952a6a5cbf13ea6259290b6c96f69ed3e6639ae87e172fa1ebafcfe173e663998ef2c99ed0b39e859f72bd4f986cc2fb810069f994e42511089d8992784b7994bcb0efb98732c32f926212d6acb07fd43d4a9486795b06ba8565c68b17ed53447d4032c0ae88fd8a47dcb7593c5e21dbd5de2d87ec2e04f24f372ca387a6a095fa2b97420354b48ce837cd0010e4062cadbb411755f1289cbd116e29c388967d3874ae952a575a388454da5b95cba8849eba638612eb72fa5cbe972e5cbfcce972ff17c999ee9f4f4bff84600ff0025cbe972ff000d998a6dbd22bbf80956944defe533be6f11c9eee128d7b1170ad5f82a3465fb89597e4270bee4d06420fc5a614356a55d92661c2681dc02d9254c02150dc71465ac35e68cb45d92da991a9b56f74796ae693fa0461067c358978a4bc385dc38db58fb661bfcae06d0520ab147c11ce7083843edc1f048b000ef0dcd9da5e2a1e48c853ee888a8b4f745ab23f50abb3a9ec77df6ccab9e64233e43fa11355e2211afea5056e3a2dd8fdd5f72e687608bb6ddd219d1f799a67f09a27f12ea5f9976ee0e87e36769f1d6a7ccc4b8d3896c565e7a62f6c2bccbf1025c5944a1e207a74b259311d80ee3306dfe17361fe7110a57d59f71ea7bdd74b973d1973353529e25f6199ec7ccf43e213ee7cba6ba2ee5c5beb56d67b25e7313e58be3a67cf430f0419b965273b87b988b085365c0df813ba7f0857f761f2170ac0c7920d4a65879b30402d20ba57517f7d43f966214977924b969b94fea2a30fe5f132abf7b132ddfef0d40f14ab81dd3f2df4b443f4429416ef932cd1563ec079da2d924f9dfa96edbba6a5d98182de6939e9a972e5c22929ccdb1a80e6a37e251a8301c84c70cbf32bb43fcb72ee1f85f43279eb72ffe7d74c4b3b90aef2a54a95d4fc6a5128944a3a6b2bccb4a78af98b9fc2a34daf654535f4102d313cd3bccd5e1cd4f78283549b1e8fa250ff5b67ee1de09c1988e97c1a9dafaca62683541b8a578ca11c624e2e1c1536a49fbc2509b01734a6d4b1e5c786e7778f882d8f7c9f7372bef862ff8d13276d77604657bb53f4cc201fd12a5af0833e3f72bc8c1c0b8f9fb4f874793d17d6e30b94c7ae631ef29fb97df1f310e495a96f13311799510b947687e549773e63f32e573146dce22ef39c0e92c6dafea0a5da6c93c1bc4b062e3d46c17c459ab31e7311bc67e60b9657bc7c898e151af5331f37311b8c33d33e3a57795194f68260a5740352d60798421c5cb354c3650df9848d03de603ddf33915f8664e83d86e36ab65cb281f86e07be41bead7c5cc8e07c5472657d4a4b71cdc2c0b300e1684a56f600a25cc9db2009655462f552d67ecc793e847beb1ab2278222e4af84a360ff51b5f5ea7817c67a76921832cfe7f1e350f5f815c97d557a84d4b7722ae53dc85f895d0a98fc2e53fc97de57f92ff00c7731311ec99ed2dedfa830b96ed2df328eff04f6977da66f52914ed28f3f703b2ccc5799f094f69472fccdec953e53d995e5e8de9222f31e357b979622ef22bcc5decfd4e6790f70aa20f12e327fee67b44ef34cbee5318c4684f152a684536bec9638a045294ef84a183e311e07e20719ac767c4f4541006c6c7c2ce4590774fa96dedea53e267c4ccb77e84d9823b94ebea9e854a76253a5e09e095d2ce62a84a6e5cbccf8fdc1e297ee7fe66585d042acbca3caaf9e5f3f6e5822be1be2164e7bbb8aa0f7b1e1e3c37ea5f713d972f680e9c9ea185589cae98d72c30712d5f1c91630f0838e8f062a5d13d8929124f0972c017b2c52269b254075e26e1357a4501759688582d744c0c5e14998a698a5290596026e024231943e6a0e1e39b626255545919e1f14a87b18f6177a371b0abbd0caca88d60c18585d5d2d7b81168e9352e9aff00e46eb88b10e263ccc9a3f70577fa94769a979d4fae81eff10218e23eb2fcc7b665e69e857b403101dd21a95d1c32a5e6f63135e87ce18681f04716106d84acbc762a59d14e187d43de5c29a777fa8dbc40e90d4288656f528e4ec264ce7b4fe9646af0716e624e04be1618a1029871128380ef09380dd730dab128626d8aa83d283474ab7a92a3fe23f03a57fc3bfcf333d4ff0080f5cdf4ccfbfc6a512a54494c3da53f85b7b82e8b7697e27a32fc3f52ced28ed3ff006fa7cf4b3bcb3bcb8f5c7e2076eb5f95cbf3d4be8b972eb00656101770611704588fccb2597168b62af457397ea202e9984b5b9b7713be2500ad1499b143bc2a531b2512a24f95ac3a01c5559b8a4241a333284ced71fc01dffdcafe974f1717a03e3668229a6252fbc3cfb8d967379cc26e8014bf4750fc33dc64aab7c8fb95a8a33c22a7ba1ce3aa4eb2594708f6d620f4617ba4f98364f68da9ecd9345d336a210d7bbca37a9654cb506dbad907bf8184ca78c1491e05e19cdcd8cbd24b815d12fee20ad87962e107b0dff304aab639fdcf1a9e8805c7ca2fc2b703c675a7c5431497a52a56580f688aa96dc2470e696c7557ea3f152df19e8365f0c765bb9389d9ee402562f5df8be614f86f2fbc72e463c302b2bcd5ee50d53e6537161f29ea7c7dcb78fe26537026097f8b504f316d886599e69ef29f1299570b9cf79ab828e45fb97b01c1de095e16f3061a16e1ccb2e3b2d886975aa4fe84431a81d882b6ca0ce160ca2ce712d80dea51bbdac4c24f151bf8952cc2a2bcbca738fc11950637303c40e5cd903b5457a5c22fb4e65e3f2bfceffe15f5b972ff003bfc2e5cb972ff00ca9d6a57e59ff257f86bf1f8e95e27c4c769667287a99edd6bf1b824b94ef12da1f30550af882f73ea5976735082532adb1da59121ab665001c115efae2b0f44ec21d89807ea883c5a37700338542eab8bff0069614a76750f4ef455cc1829e4f896e9161da1ae71f0f58988d3c9697ec06494129b0df12d7f2cb461c15fc6255b3282af9450d9f72564a7911bd8bc42ab27635fd23c141ee9f7c3b2ccadbfee766f942cfdc73579f4b2d68374618a69a5707d3368a733f51534aa4a2078774a6e2b76e1f73117bf033f466cc3ee1197d91589e826fee2c285721ac412ae196484544efdfcf111181acca571002afd4afa034d50e7c072bd7fd44811b5991f51cca405e5cc7d14137b25a40f8beed11755ab776bfcc74352b2cef00dcf65cd0278108e3a6b9fb9692682ee238d9bedf68dd5a5b65fa7a8e56b3f4fb86215f3e4eea58acf46b3814d90529b1efde5e7216acccf9c72a2196f819ac0076ffd8118a9f90fa95c79430c3612af02236118adcb56abc82a64f8f5716f89760a3a2f899e20fdc2062e72324308cf399a83e054a458de92d55948c9d87cd23d3e02d586d73714972e547e494cc52f79a1fb61b80aeeb00a2f35545e05f7d015de22390f311dee54a2006a6f882b404bc745f684be8cb6a579e82c3f11ea12a54ae87f87e3f1c74aff008d72e5cb97fe2b97e25f5bcfe67e372ff0be89fe1b7f159ed3e7f0be95d29e25614229b265bcbdea6b06616fe5b4c4d05f0a6a58fc9f6c6b4937b5c36ed7bac34ce56b5f70ba64cb657fdc2b4760d0f72e45d72f08e15b5828fb8485a6791f1056af455c0d9fddbb16a3199aa5f8966c8781fea78d7a916e07d01bf510110e3127d4cc21b90b3f72dc8db0c27aef2c994dc8ff00a45661761afdcbb64cd187ea38eab59cc9123b53701151c0361181a6681fa8da0396b16ccacb6ec52cad9dab15a0ab741146009b125af7b4ee065ac174c080d648b700147ca507f45c45532f94b8657a07715b5e6b0dfa94674ec13fd428bf46a0af4f1953d9d933e22b5b29b688d9a06e9f70ef3370c0e2af0bf6f1044d6c95df99ae31114b83a6aa35772dccc3a5c215460ec14c199acd24b689bf47c33d8fd9f11a2e6f980a53c0970147802dfa955a8ab3fd46368b4f04ae7656a8d211646192b8713fb975beb3cf74cdcb75fc2311a0772661fd67710d88a8b90bcc2b897d196577867a0ae262b75ee5ad35633aad0edccd620ecc4053deb8949f07810aad8ee31146a9f1acce00e44a2d5e85cd055dd85eb5f89647d7c8cccd920ea2f8961c338082287e152a04a8784d2543d84429e9b5827c7a99763da9d9b96b52a5e5a5a54a80f6952b30ff0002e5f527dc5d9fbeb5e5e9ebfcb72ffe00fe17ff001ee5cbeb72ff001fae975c4a32fbca79fa9e32de09a2dc4a6b47cca35ccaf32eaaf9ed14ed1a04b20b90d769c0cc0215ece98004b9e92e2813c902ddcba86d3be7ea2555b2f621c0b632c35b03372b5b9b5a3295dc2b9714a3dd3310c625f1b472b95b2d353878637dc4169b56e8f883cbae6b3fa97e30da16fdc56ecb9fd5372c3684a80d093927fd4b5542b1ccb1e52c5543f44f6bfb97500574257ce201b0dc30a33c26207a7af52e2cdee8dc491b7489ad4da710ca13b074f984e07aa4076b9c62581b51858c5ea633673a948f70c83f33627c1e659163d930fdc23936970ae41c399512c4e659cbe252e857481917b686584554e45a86d3370fd8798601c6732c6626d1baf0c75a9e569e9e67613c251e62a4765b01f6814a0bb8fd917b3bfbe7fd474a7f32a9ec54acc1a8533cc184be97532731b40e38829384f884eadf4bed34552632fcc2b4bf207ff54b20d30bef7cc1fabcc3f32f23b2b207ea69a49363e094acf87f32c9ec064f88f1a7c525ccd22f0299b9437c3c5c170d6ec1e9954481ddff006cb6572cb3f5001c0e6f73ea589d9033f335c4bb210950cbb57799f3fa8b34d33260af99b97783534c7b6d0050bea8c37a5e8945047da4b32546d3e880e27742c8386dc083ea78e659c51f825f2e17e114ba7d4c23fd64a8b8ee971a00bee30a58f2bcc2d3fee4c3604dec5f6651b44955aa2e2af84cf73ea2e37f52971b30906a503813913dc0b83e278812fcf4d74c78964b0972efadb0952a67a3d4999dcc3e66b412f198786a5f9b883c8f4ca997e5f12def2dd4beb5f957fcdbfcc663fcf4fe152d94ee2c569bf9413885ae51ba46b74ccb8aa80cd07ea786a15de7315599bfdcb0ac6f6ed30db5d72579986b5eea8a8800ded5597b0475fec94db434109db3d90208f6a1fb98e2bc222d0daed4cf9815a0e2b30431b2ad2c60014678a90a06f92d988225d92894d38c8f996bbb29b58105f5205bf10d01e086d7fb899d210e516d85980dc3e212f6a6948fe08f9620a3ce542d4dd8d73116fc623d9872732ba6a20dc174183be540dbb70cd2de1ad4a16be06526cde5aa518aa77531c0ec8364cac1e5af865d0468537007c085844852bcd901613909b80a0bb914267b45869fc4b37396a1dad1a723072c429757f1158a2f21ff008cbc0052cc03df78e82c62ff00bc73c872ccaf6095aacbe788a62b64568f5326872397efb457c0981baf24b246eb6591e280f3ea66cc7e094676f245b66d2f1d6ef9b8aea62b31664ccb0144106af01e3bce180d949f12d59595c844700d5f94ba00faa4a001b6d7ff00713288b5cbfa8c98ae0c33269b4f01e660212e6c7d424d47b8f888dd6f8b7e25d6e95b33171797c1f7304f9e4b0c003699bc3ec946e936a58f02432be1a23f73945d6fcf04e70f30842c878d428e1e6b995b3bca8701e84ca2b7a888cac81ff74ccb4a6a16e3fa443667c450053c2527d89b833dea34c317680f0bc9294443ea8a70a98f808d8b7ae06662af0f22a7da5ab10f9a97bad1ced99c11da0bd257312f7fcc10372c95704f4255da2a539589e187da23bfde672d8289b15b352ee23e65bcac32c402f1324beb5e58634bd3ee1adf52ae926b53e2578887329e6504af32bccf6e8081d1610ff827f85ff3dcb97d2ba2df80aea9122dda71d2e5cb8b6a1f71f02838609f530353d8a9a9760b89cda31da852ec9bcbe33e25ddac4fd333c5578954376b60e155f8829c8f3da570ce45f1aae664d952cc6ddd9fc10373d6dc2cd8de1cd2cd043980b1ca7fed04c03516daa2ea139eff0089563b44b9fa8a69658dc4beae16a82e0f11626e3da3387f70e8d1b2d58326b9b47ea0cf25df3952fdb79d408559ba37fc4aaa93b33fdee1c1c356db3049f892bc1108f53fa8816be500a70e6b13448ee626007b4e5e558b76ea1567da350b09cb36230c54e7ba2b557365a48619a9c428d856e5ae638189ce870afea60019c1827c45000edc5df84dc2762321f7633019731164a5fdf681895077fda2811ac5f5f7a4ba14cb2a90790950c0ddbc1366be19cb8224122c0581fe23a02efcfec86b48b46a0790ac05c25943e4335b6d4593e489223e0866ea309aaf171476a9760ef336078065838c04c40a87624b3fd46c2b56c8c698e60ab28ab88c21176115a3ca56ad7c93354f85d4ce14e0b37f3115b5a6bf6242c52aeb87cc1d4958b31f30f0f3ec285559dd62ee525b1ac327fd44dd5ed3ff002a091e7a9ba792516c769072c038479542ee9ca5a95064cea63c2fc530f579716cad4af823e2fbba9a0dee6e0b2c07170a09476ecfc4d815dd8e028edc44c697b8dad2bb12819bcaca9dbdd0a6860f2b5ee15a710d07db118330f2d2325f1128329b41f708db9fa1a5b0d2587e236f74aa047c4a20fcb4110e03fb94603cd62cc6bf2c5e1ef44a4a9da371d4c3e188761e2103827b8a06c63337772bf3f50f166b2b74a57c5cc766384cdff506fa180ae271aeb5d1f12dee5df887c74dcf67ee0f17d089711fc8eb72f398fc264ff817ff0006fa54a7b745ba94947694763f1b972ff16bd6f8113a34cd741c172cf4a5f296ecb668bf89cf6de254c62df7345c4f4ec0ccd0cacba0c69b42dacae03750acaf332140f03825d933b3f8a1c152c028fa83ade63ac6bd3715bac21b655ae194f0ac0acfdcc3b4b0ad1f1350d7870cc21162c7a3cc3b64d4105007623f762260d6dca57acbb64ece5e5996170a8e267305bab57d5cdbe155ca042c05586a25ec24b0bd2d9a42ec48da356e58a65f947fb898a5ecfdc4387de25974f8370eb4bc5544a6c75b654b9dbbc5a5d63c4a601e6dd7c4118fa4b8aabe26f170f84c822f2ebdd2cb83764657b89ac159607df78d02f821a547b70d997655c0c6fe4a95f306d71d622bdc47e5462f84835782ec7b185e83962e35a8c2d7fd23d04eb9fdcb3142f196fd43150a534c7b85a095ef84a679630aca5064b31ed814a95c71f1885c5da9a30ce0c6f04854ecced1f244ec0339a9e121ae477325898ab3c2377a1dc65162c059ea6894b99928cab24b5ffa3b2467985e7bc460c1aef2c6c5956cd4b378e838f9870a41a5375ebc455a2a1e08b7adcee55150391e96dba22b737f33201ef2782d788dd7558749443198c1193a0a337703cb5b6cc40b29ef35e4ed11567b90fae206427edfcca42d273dd2a0d0a8378ea24ad61ac64fee620875558f49281006a887ea07706c52e0b721a2428acaf9a525cd2c986f7042bcba468b3dc257aa8a046db7cb0ae101df506aff00b98abdce099ca87b5aa59615c5906f6bc90a349ef114c1f88f4df6cdc537b992b3351e36aed530778e2d81ee5fc10b845f04a866efc4b25fc80ce30bfacb0cbe67616f4942eedf44c8f6246a2313e85cc187e0a4cdd0f9bb8bee419a88efce48bf31800e89f138d4bf12e32a66e58abfec87714f1fee1a507e39e972e30bed08874f883d33c54b86673b895b94452f51213e27c4b98e7a6ba67b41c644807fc61fe5afc4289476fcae5f5be97f95c18c41b9e901bf9486968e5330ee0c59d2f88b02d2abbc4d38ea4d667900d96671e15bb32cf6b4982269a1ee0f1094a650bd693d8c7a941012ce87d45b55d8b970a8d5ccbb2b30f7f3050330aedef12a5df2bfaa8da56ac385f10b27158057cccb3d8e92faa592f227838944acf3ce1e094a7671fc00865a26f2443f326114f1a89018e463ef513280722ee0972fd0fe6512dfb6bea60f21c0a360d98105e7b549150babfa4a0574d50dfdca4fa62a235473853129a4bf329a525cac1f5145054b1757d662852f8197cee00a0572c3086e76a1fa26b53fdcac039f689806b72ad581c0f14c2c80c2c8e845e454f1074d62009c4ac7b8681376d9de260f227ee0375462ad22ac0c70e3d08c55eeddfc92f21c7b61ea8f26bf130b9e4021696ced2bee0514e13fdcd7403ba21dafdcc70df28fb566b9b979762cdaa8bcec1920435131ff00646c72392f705d0151c0bb79f11a30c83c3ea0ce58368d7c4c86c98c4ac862daae731aeecc7adc77840400e1d0411463933a789543f0d31bb29a7ccb745d3a467f074f1337ee17a4727ce4619a026e5106941181495a9a028c62f13417f6042662ec2fec8bd2b8d03c3da6280e96c7d4ca7bea149f8f43da63c43d8ce6005e703481195e74fd4bed751e4e25d1be61efe66e1eab1303283b1fdcc4a2d5e5fa803003b5687a887475b545910100dabbfb661281f1cc45465cd2e56661dddcdc00ec2a5bcafdc14d4a5dc0a817b43e237a6bf32886cf31aecfccc6007b9cbfb4018a1b3c472acb465fb875bf2dc17ac8a06e7763ea1eefa4b36bea174c78a82956df8250e97bdca700834bc7cca0857e262a37e68c4df2fb2e1303eda869f888d5a9a5bdb2ef263e8997f87eba1f834ac4baf88784cf69a89e481082dfda077548f6b820a459721966520f13d1197e3a5fd4a9752ef729a657e032e0f9e97fe3a7b32dda5ba7dfa2928ff0dfe372e5ff00839be8e4a1a7bc131defe7a3515e26d55a2c7f711bde939304ce0316ef06b8273722d6cb78e1fee3f663201af710f3503843bd440144a6596a910b137878691855fee592c3415962871b19164c2873628812f34960bd731c536337ee510f742f32af3a5a5bf532d536a7f32f674cc5041087e591fad4bf2575b74fa966e0c68fbd46c14e11fccbca54c1641e455a04723664534cabe3c627ff00621dd5a0943c8390afdb3f46d2a1f7002c6d952bed1f6a395c1ab41d86098a02f861889a0ed6cc45640efcc7cb1714d7a26c923387e509705ca84b294d0033484a59431ed80b0071ba6f66d648f0296cba988bb194bd7ef510dfade4a0ef7dcfd32808d9d5fdcb3a3b9b0fd4a5923db250686a67b614e8ce3f9247c4fde04f923a726c29547b200d7bba5a8f112527dddce2107b2649fa248b918c354c1a1db66bfa40accf8482401706098e8bf088bc8f246b576b2e602f6226ec88e202dc1cb9f1031a337b802fc02fd45ad25ae367fd4c3a21874cb2201e1ef82184f6156415cbe00f3ea73dcf48aea4993bc6fad342620eebcd8d7fb8b8af317aa192346715bf1fea28b0461b08158525255f52ef5e2fe4ed2a68a5040f9823510cdd5014dfa169c20a1c5899e0f3630600707fb620e355267f72b56ded6df98e1bdcf53246a9df60c7b01d8c0bb304532b6c9906fdca119a8289cbb386265119cc1e9e25b897a8a56b41cb2e148de65cd957c41b5e6103ca3b5c01ac1017bc1b88132440e68ae25a5d9f112622e4b7c4e20218e89a0278332e8ee16dc528a7942aeccc335d869070626ac976a28f32ce7046dd55442e8ed50180786f51a02ebf98862ecf328ddac0ad1460303e65540952c859b6820d42ff00e283dd059b65e25cb972fdcb7b7525ce3a108b5ee3ddb84be286355ba95d87cb0b1bcc5f108c5d32c5c90462e05e918bddfa9f043bcb357f72ebbcb4b99ed07df40f897897d3e213e60fe01d92bb25e5fb93de57cc04a3b7fc3bfcda3476fcecea38c523834947fb95991f461c4a4f0a1035b5781b65455eacbf7108ac52f4f1889b0ab4be5f011ae379147ee0f2705c4fea5c36b8575f11602761b43655d9bd92d597e1084180d55c3c778eb9e9aa81f13305c14c115b907365410c64b4b4a26530e76279851f084cbeef51d6389b9512b076361ef98a024d900849d8d4a10aa57784654095bb06bd33003722d42b763697fea052c33547f31e2996c9f4f1145499dffc6a0108cc350f6f12970ac9863a3876aedf5cca8af26f0af7cc561edc5ecf99debd5386ad1f637cf78e09b5b4b7fd434b34d38b23b0d0814b5aec6e7183b98fa268f7b943c542cafcd8a72812e0d2826ed3cb2caf26704b66085f59da374d782c47dcc80bc0a30ec0f16232947d17fc478b309b130ca79b9982c60c3f728950b0ac784ec6249af109ac38ec60ca031285ee3c4e453346d2240b0d2343227719fb999663dca0d4b45a59788e3b46ee5dd81edb886b2d8ff315ac87192c584177659539251363a22222f2d45d4a45b54f1a3c7997454d6048cd18a381dfc7796a6ad7bfed05736df994ab14706a5123b4ad7fda22b4773986cb4d2ff71c5d00a4fec86d801c7884802f6b53096bb1a7b8a8b0d8e41e7c40abef3a077821baacb3ee300116869f4c1f5e462303bc7038495c5017c53b931bee054455fd0411ec7760e59b87ba1a241a6d518a44e13b45c2af6adfc4a395fe04f0cc9a5a2ed2317e23f2b99e9731e05c4ff71037ce12acb70c8dac90770e5aabe256b414e8b8dd09f109c8069b6a292f722ca99a8b4c172cea3cc3ecbda0b5f7209c55ea6042d7725643c8cb2a4eed26a06f84be0a37484c502df64c31d9f28bd72877772f5a8ee9612724c5c676d403b7ea266aebeea37e77ee03412b388e13070f71be1aa140a752cfc104b4edb3e8827172d5c7ed16f48f72bcca77958e61631071d06897de5f69b863bc5f31cc1b29ef2ea0b8a9b3495ec603cfc32b3b3e60da594f88bdf1f17309654be9898971e9efa7a65cbf72dc5bf13c52eeeba97b250e27a1d33f95cb97fe1bff00877d17d2f3565cbd271cbea23fa39a8926269d18ca9f95b0a87d594acc00d375a62104396e98e0006f89fee5655d00b8329f8180f71e066dd615026b1692df99b516a93730402d17cb1d8cdab41f3b9428bbe3257a25bbb7527ea58e93800f12d451a2d4fb94bc2592908854860c3989c87e929f310f9b222e42c2b444129b5a3dac9811971663d9916aa83d71137a4aa2f3eb1308ab959292add8f39c411bdd8a23ee6840e2a7dcb8a38189ff00e4b571f3fd3140a8d56a9fee5b1b0c6013cf68c0f1c8166eda7c1fe582a255e6f12a05db38b8c6b04b639d9a441102bddbc2bc4a90a03c05fd431b0f425360aef241b18798da33ee3145c1fb211ca2c477469239330a5851f0cf7814ff001095b0d66d873b3d9986c1ae51d0437816e1b86ec99bf5da54d36b917b7b98422b9ee7fdc735b85267ee54e762c5329741bc07cc31bab7cd4c530f7da571526af7f72d4051da321bce710ceeef855fb9999538a9411f21de3a28ad81a87446d8f12936d5efb428ab4e1eec42dbb31a994955a1824c0b5af040055d984c6f10f83b90127b9b54645a5d81a7b30c2fe463c88982319817c4ce3725372b2b771a3b3171a61bca3f72ea0f769f0ffb945afb0cd7a946b875a204c6ca669e123d4a6850bdc56b8d2c963b166c63d789b69d58ca6b956cf3ea2c9a7083cc41805fdd52c2b65655ff00dcc3d9de0ebc54185c9db7308cbb5995440aa289dfcc3162c5b7ed1b87b719fd458c9c74e18bc07b56a38589c350762adc32d296a20b1568edaa8ebe2b67a86b80ff0073843f046fac4db2acc4e43c427ca7ba4ec0c5ac0f888dac99ff00c0719f8d6881ecc07ed32a580f0226326dd0f7c99590fc234368a0b2a2505f8399b52dbcc04d077dc4ca1e160ee65f96bdc57cfd4c99a6626c220b2ff133e2522f3e255b30bedf73b1f941c63c64c201cc0a1423a784085fbb1abafdc6eb89e5a8fcce212c98b8eb71bbff00533dd65358fd2263242fe10b0de7dc39497cb296f37f50a3187cc1b38662a7d74f227c4cb9b055c3e6796e7bcf743b501d89a972e5cba9e917b419cfe17f85cb972fa1ec832edff85716665e6af3ba8e370cb79a2e8dc15f3a2cfee501a6ea5fda5b7457b991777ebf71b7203a1cb07f2168256bafddc5030f8e26fedc0bbf5318d03088ca6c875427ee32c48ca36223501ee7fea3435c1c6000720a0a8f20bb94a31c1cb2ee011e44a8588ac298820d03a8c4005972483801c73ff50fd701a6edf9ef02ea18427ebbcd254cde03f705a5ed0d0a9181fed100c7686ff31b694f0a0aa45e4ffa9440b2f23db102235853247b098b757c12fd5a596bbf89547c76b53429dec22102b18bdffd45ea46b4fdcc2b6cace6f13a1c54b7fea54807c2afff007a9821f2d54bb8332ead1daad4b28fbed0d21e72818c03b0541aadecc41b553b52331e205fee3e2abd44edf80e25040b6e072861966591cc6b1cc45b40ec91f0bcf3059df92c62123a96798a65c92e049785a9646ccbbcb74e692c8ca7798ec8a87db3d31455a99700760d23cf88edaca4ef3b8a4260314354deb08c433f94aed00aedded07994506f1b7531a5ba735b953d33842ddd67d0c1edd03880784fee315452bb9da5c8b7d9d98b491b8750a0439302302d28b798931de1ca1cf6f128694cd0c3f305e791bc90cc0852dea34a695fb11130232aafb966c46e8d45f176c577e7c4a537e7347ae6203e36d9ff00681e49cba609b0b42fb4bd558a738f23070dcca87ddea1e083216f799e90d3291200898e0206c55beffb9e66b585ed500a11d5e1f33b88c974f0ccb81796c1f8e626f396053e4e208ed345d3e6659b42b62e4879147d90a886e068e8693f626771ef054eeac40e65d39f3876623dc3aa96ff00dcb18fea33b2579960d55de3bf68e5c2f88bfbfa9a32964b3e1d1b8afe3b0813f44b66e586c9e5b654838ab3be374e6428b57d420e7561a7e047165c1a0f41885e89f73485d737ac41ae8f9e981c3dc0e05f47925774989cea6fa0f4f9e845cc21537168db2ca359e0bf309e60851b814fd7ccee83d41a6aa0b949e6c0203b1f95cb8acaf2ca952a5128947e372e5cb8b33d2e5ccc1fc6ff000b972ff0b3e7a80b03e65b6bf0cca5415e6278abaef2d6548aa1517b1a48769506777027c543a82cc8d6dfee53714b59710a522ee0fe54eda97e4afb97e8d428c4ee8c470dcfa22c4236b6afa8c3345b6d260f3e4e3ea230e586ecf925f652560b3ea6559e48d3d40d03f655ee5e22864803d42b11b74be51c8a00d517eb739eda2e2500da2ed8553c365771019dfcd83f1c4c36b62850fe986a0e763ebd4a81a36ca261cda4e9ff006435437a3fb72c512d315fa5ee66a7e2f2ef192a3e0e63a296932fb9646d37465f3197c7098a218628bdf111870cff007141b3e7640d57de47e881d977e7729a0dfd9032a8a5bc4c89f0d218e39cb8c8a3c171b52d704ce07db190cb79ca603760150d3ee185fa214509cc59fd223064a8430e787926049722229726e9f288f0efbddc982cd768d87276952c0ae92d00384a499ca900c9a2e4b889a0ec76430d8a6ae29a8d61b7d161c8970ac6aeee644a775425ef476aff00ee658ce5b3b4c72ab8164462dd1f31ec423caf24da166b4c47dc8caa560f09fdc5d114f0252306b4cb098c9bf30bb45f9fea2b710d34c719fa83ff00731f897621034db6a3a7068c51ac809335f01f9948193df3e258bc7b1182cce908f093baf1e2e704f8967becc299e4e57dca4d85f7bc30023cce4fccaeec7cf978614c63b73f5e67172bac08c784c814fccbc2234adfa817db2070f87701a1a369a84685565363e9e23b13762d3ea01719c955b81a74d393f3013b0e03f52fe38b877d4a622e772ffb815aeea0ca4c83cefd4a1075b16c51a47892631c7802fea16079132cd32d844fe65361e656cfa94763fa99aec7ea20c377057fd90a928bf51f3cbd8832ccfb94ac45f8bbdcc008293b08f332a80ef129db7da17c140b629b8179c6d5abde08adaa81cea1391ee198cbbb2d3b1ea5df9e80f523e370bba67d4f99aef2d0f994776152fa93d4cc3a66574f507a2129b8da7f69ff00d5966bf583ef03e201a07c7e572e5f5b8094972e5fe572fa3d2e5f4b8c53bdcbf47ee1fe0b970ba338e78972eb70ccae8a4b4068dbdd169d5212d697004c1e0f31bcb2cb01a96dd2fe2202ce39856353b92c06c7982b8b97fdbb43ea8f17ac2180eb296a3e8944a6c9df93cc2b3ede6fea79c883280846c6c47788b9c24bc0b8da05fa874b70038556f7ab59f2c3846bab2d7e08d89af5d820144d777b890cfd32b3d439c0a69b3d47171686efc5ea503738777caf12d32b4035f2ee5cd939614db05d85ddbcb13448302b46672714fef987b0eeff00dcc01636fe9165253815292cbad07b60bac761bc7e629abf90416b36d6fdcb8abf2e0f10d996b67e58ddeae310862e7ca3ea5d12718160582fc2d8fd8055a6228bc0f37fcca1723542d7ccb8c0717c4bd0f94b726d83f72c889af32876103dc9402ef923eabaaf9fc4b380af70482819b3d1e19668bfe65dd70b92fc9082a13041aa8bc731495acca652fc779417c502e1167823c5f7083a43dc545ba1f5b3e66b08df27d47a3c9b58fd40703e132e8ef2c2570138bb7e61a19aaab10f93434e40e257b549de1103939ef5e21439f81349ee0201b39b0634768cb3c86b2d9152db58caa5587a1c93e40029882eb3de0cf41aab24763df9aa96d1ded98f3e1889edc867d41140396a15af309fd8cb19077d7e998ae505c06bbac6c1f72fb697661ebbc0262d9e6ef79ae21ace7d5c5ab762bc619527b2c961a37682ff00fb17671bc69aee30d9c7c341286db683ea0f05f25b278ae62a0559b5b1fea00240f925e680cdf3f94b8703367d9cc2e68e69ff002efd448a438687fd45b8d9b6c07e228a997563e49417176ff10772b186a67c5c2d2a26d458bb3b0f24a762ce0591ba53d660fa836b9c0ca5be89a0c4d2e5cdc361829073f517c2dcb5272daf994f3f19806a83e67f1d0ccb51f695630f984723ee30fb0b898609e65dfcc54a22b89a228623daa5ef0c133b750bb81f2cd38fb8973427efa3d08ba5f6e60414585e0c1f315c4ca6c9ed97da2b826b6c603de89adb7d0586a609e12d06fa1c3a041e7a0b773e209a7f336d47ccff00a583eefb80683f35f46f88b5cc1c4525c6f885cb7bcb5e8972a66574b3bc41ccacac1eb896746d2de08bbce279b0af3728ff0015cbbdea59282e95704b5f14970859e4ea4699e7586e5dd157198150b95665812286bbc50d0f4130d5c8c351798c39cff13ff281ad9b0ee8ac8c4585fca691bbf97b8896a0c3fea5c08f663f7136735a36f64b500ce01fcccf05c34f3888e07ce4cb581ed63134dc368769a17abb9fb41d54de437fb822c95d8a07bd44898775e7fdc6a4a8601531b763c83ee2566d3050fa9899cf169770e65444a59087cccf0295d89cc21e0c4b21ace1cc32f9a5e87bef2a453962be10129ce1f633360b76d41545fb3ef13787ce406ff981d2748dfe622c4ddc6262b1b629c47158475642682be7b4382f354313cdc4c9f8660f1e5fe938f2bcab7f500b9e8bbfdc15837d9f332dead9d4f6d6e0a32ffdca0c6e14a3f7291ee8891743fe04cb2b66dfc9370fc0907c50ff0073111797393ee2abf134877db62cc2cdd940531c80355db019d688b88ead16c6f1e20069559b73dc65dcc30559af301040c0f09d9f31943609cc9560e6536d42ff00e89926727f8452c0b9ce50837549691ae1870abc3646aa98ed2966452b5578fcf1132f09ac492e2fc8b17ee075476567ee0587630adcc46ef88834b95350d3d997592fd9865a752e8ff8957430e3a89b257bd4342a76cc6e43b0a17c89ff00a660bb4969fe67696290f791889aacec7170aad01f7f3f110d00d3ff0086217474727863cdc981604b42af83fea5c8fe587fd4a2c790fee509418327c914f2c84e3e496b91d51fabd4a2d1764aa3ee605752916c9df0fa0f332829381297dc1be464f0f661e412a68d3ed1f7a84d05a586f700d86cd0fc44e6c2d8bbb2ab8f8956079f2ffe4b4b74ab187d27306367a07ff48a143deb55e61a25c11b5f131c4184b8ba502fc4272baba4a4f22732faccb96d4f715abe6999f1304152d437ee0a80704e219a1daa84fec4a1557870f98aa0390668bcbb449aa7b99cd15978752907eb0ee071c9881e43c0890d25cc14307dea52a1a778640494339e3a560f52b5931671f021c67eb2dc0235cb36c167084f30f25ef330608784b5f45c53a14c1da2b5c435985a2f684b832e1db2ee17706607f12eedf71b98a7364340bf32fd83d74a9443a5c4129ea5fb97e19e12bff94a7bcf68977012ba592e0497f8b1643ca5257b4a3ad7454a25f68c657c4012bf1e2116fc972e5f860f257b863bbef888d197744d974c13c24aa81a38e61415f7d27984b3de2fe9331e57fb486ce3bb6d81b5b77552e6ed976083ed55b9fea0ae38e9dfee032eb30147d454ba66db59d8ff00c7e98e956e5fd253f32812525f3a1e6a548dd45b57f10b6419150b34f2c897474f93e666eef163097b818065209b9cb51dda5ba7f48d1a396c7f72feaec45d3e26bc19ba3f5288269c89ee553176305a30bceff425783580a869dbcfc7c4b4a9cbf965100fdbc5c285766ff729033c0bfc207db6007c731bea4f27ab8e6e63a72f8a99de580aaf0f78228a9ae301db72989d8fe658d3f1886347b0fee5b35af2ccfdc371537077e20c817e65aa94160025c2c6629791a98d58781f1739e195d89f352dd733470ca020bbcfd42da03c2a388a3902d86a1f1bd098a3e5b2347f736bb9c2d036624b7a860b4f352ee681a35ee240572b99465371b43929c29b9c72f19cb385b23f840218fc9a79f315950cb114c099c1a9bd1f6480e32c7f18c7701d8513d4002cbe70cc0c4f7642b423b998da721143d44b4ab3cd5422363447e1bbe0b9505199c5a92516692f94554376eeb3124caf611b16f8aec92978ac72188ad0956310781e87f7059b14c167926411d2ac9e606204d17b865eec687b9962c5d38f467306f24c9ee13bbc08dfb255ec468feb642d037b6be65473beacf8414a5ddf00f921c8d1cea28a4986f0bb06cd92062854a459fa8d32d464fe9731b227737fd4b8aa727d895707435f0303d139559c89cca63f01a3dc70599e89878ef1f55d2e43e3c4722bbb59f8488209e4987dc22294f01005c0e03431816dd336ec2273d25b789494061e2f9dc01bec5d6e548146c6fd33920246b5ee91dcb6f7d44d96735ebe61d01c81fc330ddc542f994926ec8eaf885ffc6a2295a0ed6454b07db01b0aa4112f9f0cdc5cc271294ed11799320fd257ea51e9c12c4375eaa290a1d197ed1ec94b0a22dec9936e6133529e9cf42a5c25b2eb73da57a6d0b5c4d50c46d01bcbaf13999f9ea3370c4d003293c24179dcbfcf737f041325cbfce8ee56e53bfe152a51f83f8dfe66a83bd2c96102483135fc8c6301dcf1fa86019272f30c325f6c070fbf39b94f789103387c408f0e55fe252e16bf64527c081f72dd5063572ec24c778bb214a845d9a6eb3c10d9c988cb1b81cd3608e5bc2e3912dbd8ac9886918fc7b11add4c0553142e7d2d5356ae6dc4706ce4e1f2404d6185cbed25834f86c65e56e59266841e3654dd2d901544c38b73b20848f76abe223a0e55205e426b8e7ba2e01ea0a2d2e357f50b4db93c4581b9a71d35ac2428eaabb1647214b8193e633655d14a7ee273772c3f4c2410b872440199b56c0ad8a30b447248dd985985ca6d0a29e6a4b7ccb0b95f09817b8aae3f6c79a4ba036fa95def2ddcaf2ada5a5f5b7912fd44966e5291f684e01c796343205dcbfccd845d1a8dca9baa1d12905ebfa84bdaf1c1ebbc7286cb9425c70a61104275fc2e1c85bda318e23a8d3874b26073d6933871342fa869a4ee53ff00b283b1aae2055f0e3420592a80c1ed940e474cbee210703ff30f6712e0c00e1a224d8c58e1262027212e38c9d991e4625a60c81a625929b4dcd98a2243f610a4aab031fe861007ca1032e0e33d3e1b9bd55e7fdcb8f99e196e978232eb83c8c434b8306e5816777942aa0bddcd46c6adbf49ee0df5ec61f334e945e9f704a11e3bcb1d89955e222a9978b10346c434489653ba731a390809b691ef90e9ca3c0c10b5cffeed28f36de35070f696e33004ee872b1c73a8c8774457e199984d16acc35706460f9961bf70f47cc548460acfb47a5c8c8b13d778401cc34b2d6c5bedf04ef12763c1663e61801b5536dfcccaa5dbfed304704dabfb858d85d66cf8ed03bd8ff4b83e2f2eb45e22e77a0d5f861b46466dff00bf88a986d0562800e1e47f509c5064631e650c87956c65d66dba3233140fa5cd9ee6e20a774b43668833e11e56979639ff00736d16c7279a8683f2b265597d88ccb4f0eb7fee3a1c476a8a03bb392596dbc9bc4c9b45947d27023cb2b8507bb29494948a0ca11192bf530c6fb9a4dae23d5631fd21dcbf0bee3716267a622952f9f117bf4b11679cb5cb971f08b1a44b3e63b63f100e1ee0bdcf50de1f666000f986581aef146ed50672f40571352e286c100e17ea6983e513c9f98679a1d3e7a6654f998e655b074f665573d7e7fc37d6a09983d165b332a540988ab82bcb323fb261116d05414ef4a8694fea6bf1fdfdc5e40ec20851b1ee1691a4699e2119411ea2016aab4252c32237a5a865d2bd95ca6c2a99bd4c61d7687f98a69ee1323cd599080d858523e181501d5ad84c592f2559de251b6cb427bb88f9df22630d8c8e188391e4e1667007b858874bc772564070f2c22b26ecd7a875a736b0f64d42a5ce69dd2cdfc4aa1b78887214c7279a82153a899f15c4e525ed222cbb90858959305accf0b8dafe25bdf2983fb8d55d0bc42fd8c3708073adf1944ae5858f9b8a5679e0440071f4607ab8ab3f7300f66b7f7188bda75fbdc084e2e92a7b5c46cb02dda193ee65edabcb302fde8a65a187be1fb89828385d4a3de94c996acbe5c1942a46485af29ad1b960b8bb0441e5d74c4bdeea8c132b4067863ce2f395fb9bb8f620388b9ab6e3216f8aff00c312073e87cb39d76d6df31799aad29bf88a39c662a33e93e445cce0f0fcb36f062904eafd94d1f711b181e462611ac30e8c207e2190952db560c54af703306369e118ec8f759a8f0530d2a2100e56ec8e1c3929a4bdd10b1c42363e5ebea517a7e0fcc485c95e05de0f40730855bd72a83b7601fea02f2ad5811f288363ea1c96c06ce505e5cb396cfd9bb962c29f6f98e5fb50e91058570ba96e3f4560d3cda9bf9964606d7f31c52de4c09105e1b0d09fa944a5c2eae34553c1bc45c8a6f682fbeaec915291dc89f31a165b14bbf32ba8daec96b8db899731ed72391f994ba20e09fe19423b9c70fba8f384820605c72acb3122e9bffd11b96b754f812844c6e04fdce23ec0a82dbd5f63fdc19019cd30ff00a8ace1c477fe9832b56552ebcc351ddfd43bc5234cc1d9f507a4986ac4884a01822e68262fb1f98b64f2ad58863775a1f64a35a7143e965e852b29a81462e44209015f31f11564bccdf3ec6509a384fe495c3b9203555c86500ddc3387d44daacceee584af6528787bce600da798d04f6c3f518929e6e8c398ae9ca204ef0c4624b401e21c6a21cbfb9b6a3bc953057996ce52c5b2eec540c82def2eac57cca1808cb695370a99e7bc4c6e5b3a25cd8af72c8e8dc079a3d46aeae24fab8666344ae817c9f8836c31668f0b3696be205c0fa9c779deea65d8f999ed0100e2a6254ede0264ec896ec78b955c9f6f45251dbf352ee2b2fc4b9999ef3e7a54a95fe0b97d4e8929ed04a6f257f339d62234ff005229e25e1e02315624a8cb8a39ab9f3f882f973ccbab64eeca892b34b6a0956af58970c73b590d11076d22f567c55c5f6f69dfe26d03c5cf7e7099c343a3fee0914515a01f334251eccce5666dbfd40a93eaaf894618dcd2e36b5001788b6c422293c315985a099f11d57fbc7b0019a351c502a5c90fe31a04215a47acbfcc405df071f44ca133018042cd39c877f3072c78236df965856474601f30a4b86b8230478e7a98c4ad639fb9e71e1665871f0d66a51051de0434d3b99ea37028cc5bb100663a14a953c3cf3281cac0b4803631483a9436a6d8978ad2be252aa0f7fb8aa226cd4c7003375316c96072c6938053b28a1df6bbfb265a3ee1251408586487aae0ee66d560632b8c0308b1bd1abf994e48c5f30d4c60385a82c92c6884a62c638b2a015abbb772d51af3c46aa7db1489d836e89669767c4e7e8f94dc38eb065519b3c4362be0d91456fb78a829d0e549fee108113e12f02dbd219bab3d980bbda0bcfc25002b2c1de0c18f773e9963ca5d4ef2b703910b264bb7b4b037722d88a6b9b75cbd918b25d8a443e0bda36e05a2f7898371dc18388a0712f94b0af843383b65cb2d00f423b36f0c60c101c7256c94909e6e98ff00b82665adc9c1c1f312a0d0c7c826d5f8314d7e02100432ab5ee25cc546532c61a8997cc05069d946f03ffc9b98c6e096ff00620ac55c9623f0208147a52111f5ac3067e1652788fc07d4a0a9cd651072719d539117dda96aa473706ec59797d4ad164d10cef039327861817f7cd9ee5bb6f9613c44b77075c9e6811dafa1fc93646d58b512d8ae06c2f32c4c4bf8636458aca8bf1ccc9e4cc4199d86cb02e3120b6bd1e195556ec18f1ffc944a6ca5a799c1bb0b397e65950c1778c70643bb36bc9e60627201fe4953eee95af9968a538d896fd6b8431ee2681ad1dfb974870187e13b8af0a66a2957870665008473567d4bad14728c92f0b6ec95ec02b0c328601f64a7257cca377fb890efd0c860bda691f188aefda22d894d2cf99b29b84bcc7e656cc6bdca982085a92c76f9972e43e21ee5acb72330ca7dc6f665f625fd7dc31cb9f0b9b8af6676832f5b966ff799f2b010785ccf445baa07dcab861076d7620e85ec8ed6590a70cb7699bbb96f99f133f9dfe07f9abadd64511ea4df75d43b70250d7653180dbb04a54930106a5bff00e130e8da83f6cce1dc2cd6006dd62de67747ca14d15f12d8bde0a5add9a250937a6379668d5723c47153d3b954587dc01911d0662a70a7d431582dd6d1ed1e1254950c99ebb976d554cad870594f98cca1decdc2c3e41350db6eed3e25ab5755555f129b9453c4b3aa345c1f07d4378606ab3f711a333058626524613631542da5283ee59c5f872d4eef95fdf112c36c377f351215b396233d6d6814b150ecb6efe20f24cac47990e03222ab114cdea2c3c72ac81064b08b47cca996cf1580dac94aba8ea34c56bed1b2a7c2ff00716bcd6f8410679bd32d29e130da80d45b10b76c6e81e57fd472dce296d3a1a41ed05c5e4f9770bc954a74bfa8da134f71e6dd7797e1093235cafee6503f3cbf1b851fc800cdbbf632a9a32a304b8a393fa2652f846408c94bd2c1f52e439e4710cc134a6e3775b7618b8d47965f72e47f2659f35c57fb9559a7719b07ddfc4e7c938c0c17fb8b8872fbe67b016c6a511d05967c90539ac9c3f3325404528cc79d9e0186629b7c32986900a1ef2da68c06ea286ac5dd7694a556ae3cca599990118b457c4d3cc66b4665a0efb2b130083f64049b1a47fa85a3bf11f28ceb8a43091f036b1e62c6e0e26e24861e9ee34c0eebcd052858aacffa8e5a728022b137ea5b8deaf2d5fccabad9655e59d8e6a32835eed47b503faf32ca1e407353eafa2c1fdcc144e2e2ac3b6941d87866419db367661c604ce1ff007468614b4a17f50d40566d0fa32fbf7529b3e600914a043f5a9d8664647cf69709df9fd9b21596190c3ed356f0ca41f89bc5ff008459f4baa07f4cb9a5babb7f4480c45dc2bea22c40db63a8c04196252bd478dfa3b3f352fc3a72a0acc8e8041e5be1d3f714061c5ac3ee5da8ae4dca61b8ecfb8d4a172b70f89434a8652b811946c3fd4ab05bba2ecf195574e7008b4a0c83ff00621d8ae563729e8706bf81ab8959b3abf9853008f009ea120b19d97f73bcad5284af99642869b9fa8134e67386429ca592228f262ef7de3790ecfe096c8b5e4580ddd4a88a4dbe2713de235782ba61e13403e99e0651ca69ff00a947fa65dff56389d7c3342cfd400e5ee188c3e19ce85f997f2dca1c7a4c552d5db2c04bf07b9bd7c911018fde0b93baa5374ad7759478fcb98703893f920a71b41a21446cfa831c98b727a19c24a344202575fb850274a2609e12d99952898e97d6bfc1bd4682d8395b06b4dc188b482bd9a4fe46d11c3679da95c30a9655d418a552e8d62390f7976639df0879b1c384b0c3e972a2c240a70efa9e0fb62cd1e5572980b62a9ef7457f09ea4ea8b218ef186560943b65035a8daf7049bcb04d94575cfdcd48802a39d3b29690d0caaffe98c38e2dda98f652af023b9318ff00b2254f53fcc6d84ef6906a5fc5ff00a8cbac2078f32d4ecf51451bdf09105576bb9f32c05db28b62e5a6ad999f581d98f982353e5b31b45b77fe65d618f625f81ac201fa880056ab26a36644de15ea3705e1d8f93b4b076abb73296382a08c2c081f2fdb10cbcee6a45b099b70f881c2f8842f2f5c371c87837fa439e1d882bdee0f75d9d3967e6fd4b10f08c4df93db0c19c972ab1064f96bf51cd0439a0602391257f72a589ba74fa8f721972cd1d576a822942b9ee8b54e59697cb69bc116d23fbde3ea70001c8c45c5b27195f3360135998205ca3730181cdb12fcc0e1dd4ad2fd0972c2ec35730b012eec3322fe435068e9fb9a6aaf2c2aac1eb64105a5ef2932b7d45a1536e488783ff7795027dd47b542bcee10bbcb64f52c2e533dc8817f6046e5a8d7880945966f27d456eee9af997e8317bf7140814982eeef862843c0293c3de0ee221e7d4bf95da77fdbb311ba91e890cdc15bccacfd010d9be676b31cf0f798211a202b0e604d6a196e28398ee753232a26b01950d4c00765aa1b4a2d99bc410155563505ae07cb29aab7c656134d988b7001e1826096dbdbe221b063b420b6cf1a7e61844c202807677fea31dfc8afe227c46ca1e096e22537fee5d6c66c391e983800b8dcf4912da2ec321a1e9be9f9d21ba399587aff00b84d1b715c7dd4bb046ea2931d08bb5dc7659d9106eaff0021f710f94329664735742cbc5784b2064f0a647e7895177620fc372d216d3363b95fc4582ec8e43c46342e16d3c0cd1172de5fb8cda78c09e99654f581c7f4c09c3182ff00d32cb17f23f69430159a9f98373f2b5b07c26a26dbf0ea4991ece65e9ef30c48f87fee5af4ee34309d0b39715fdc1e37b8a59320bb5ac3dea50a41ccb4f5054a558565f67102856947f52ad02e46618014adf799b030f1515deaf2ba2dac431b8d22637987419b68a979c547c5c04d42c0bc40d6e3708682af622ea98395880e7ee101fc86a7ed6b981ddf5896e943c4cb007ed66911d3feb2c9753b19288b494b6cde5603a2a60dc5ed16f699ef38ca827782747b45b0bf52d4be95e651de60972ded0fc3e7f3505a0f9944c3886ae05c552ee20a133636cf9a9a2c4795b19571d7869b8b6aa732c67b342407a967feb10b5367baa7c04db9420bab6a2a54417407761f4bbc22de036f1062255aa4062034ab7b5c434bcb5fa9a4cf34c7c4188bac5b282dec37fa442e841a3f6b9858161addbea07210d003db3986eb477c096d53e47caa036f04aa26d56c576954c16c34429f818b1f04033dbabffe20599635ff00cccc6137ff00d462eaaf2164a37fe90a94429d8004587b55b97808362e1874a63403c58689a1a47cbd331db362f1374dff00f1530ff3822f372db78f895e2d7106571388251bc3b57dc64297e95e2a08d4714623217dc8583dc121ba12e27666d6626b10d04fdc7d01978f44783bc85b3120eca6d7f12a04c6035592e99fd4c001c60bf129d6b7d8c64036380657a09b6cfc5432cb303bc66e56f2d42192e4532cf93798046ea9ba83b99015ff00188a0829aac4d8fd461f12a2fcd9057bb9177033836c4a6cd5b32541195729038b8f2c75cf4fc234645ed99600c3d6e62cb1ecd261de7639377886a04a32d6e577210990c50b1e997a50b638956bec6d4c7c4617d8bfc312d03dff0048f610df04da0878c9e20601ece7f108f03a5ac3ec97618f2a8c4de8c0fe49a66654abf301c1705203193b41f865eb7763de382f1b293e6538a7b01f30d98ee04c1d68af64a43cc5372f0a7a1729bb69e20d7c4acd055f6666db23b8b076804fa3ac21815b6238520b891e1330a4aafb615dd0329f13782e5372d2827826206b370f32307c7b8a1a557973f52db7614da7b1942b1fdc2e3cb4c115173752bbb3db5715951e5c41730306d3bf8965f1f3aff51993b13ba5bb43d6ff00d4144538a33fcca7ed3b0ab8e91e9557f49822ba457c591967cce17ee15d26f16b1f4cdcd31657ec45d06969c3cca5a35c21751abab16a2fe6a2b11bb2da7346bca0244335f41ab9816c5bcc9ee50e38d99fee167e60dbd8c166352c1cc6f404697567fb879d721c3e263523217f922b5a6481cc31200d34b2fb928cb23235552d34da8ecffdcb439c1587ba8b1dda35500dd8ef90f5ccc7a7aa0f938943b0bc0e91c236ddddd328bca1457cc4d005902a3ca9debf71a1a09a337e183a8b980456d6cf27103c011d0adfbc46f739b6228629e6aa6f0c7b33267bcf8619bc9897349e8e9de0f7943046e2ec607b2f88fa687dcaaabbdd661c476d4a5edf50cf07e616f13da20bb622e30f2542cd1f530712e5cb2f296f697de5dc3df4ab6cfa82b8733b9d2a53b7454cb89e930e85f5a9eccafcd43691b9c21752d040b9b5d4d0fbd1172c10fb21db77f70ae62e3054a50b8607fdc503561fe111a523d9ba816de9e090163e1a0afb8261fbab099d1be8d25ed717c5c1b40d5e13857d8e61ad970ef280de7754c0304f98006eeccdeafe2537b0bb1c4e2aeede7f7029c0d588f730d5cd5d91d4b3a5095a428ce8561a8af68dcb4ce83f696a297bd899ac3bf152ec8e1b4db682070367911756b5ea8cc296977cb280a83bc5e60dd4e9dd9b74ff00703a6fd8a5c0ec678c9ff53127870649f303541fcd4c3594bb514815ea9b72c619982bb229f32ad87af56c751b70582afb985c2c0448746078829587b57b9bb1ec199855d9a2fee616387ba5801b637bf73998d2732b144be6a41de3fba5480395caca477b5d3c0441a4052f886d99ea4aa5bfb8752057a4ad4d666998e6b1a757aed1d6e9b45aed33a125b0c7c46bc3f4216fd9eb7e8886c73ff153745e5fe8a80a2cee74893e7d52502bbce7f51397298a6fe238d90e1b114eaf1909177beb09c30ba33ea53f6186e02c06d40bd801b402ad9d4c38878b394859ff00f222f57c87ea5210ef1719cef2e7f894c7772b0a4990072f78da6a9ed39439bb912f69df27b998b21dd0c1351e74c36225ee9a7fa84cb1eb11482d2f1a11d89de524171c8f91d98b91e9079ef1c53078a73e61a1f21a6295c68b6b4c29049959d90145d0cf7ec869cbf30ffb0025e38cbb7f088d2264744b380db58a71519b10d9fd928e8185e57d44197b722202c5784fcc6f9f33531a0079d2209716d880ebeeb0bb7e66296742899511c8460c595dfc799829f0647ccb29f530c00bac705a410b338c936858e9ff00c8b808976bc32358c82fe63db1d6604230f459333ee56fc41ecf8c78876f4f6efdcb8fb442fc63b31ce843b4b34c8739066c1ee29048f7c9bcf8634137382464c8a65692e06ba2141d6ae58803018d5a142ef6c7a8916a7ff74c1005a347dc111456e5cca6c03a2e9f63a9f45c6e5e52f83f5056851b0570ac0a29eecb2ee90cca366c70273ebbc4e31e13d7333c0e5c16425510a9d1f26fe60cb732198e62ad7d8ff528b92719f3106ff3831ef1aa8d1ebb4c809aef865ba13a7f9225f351fb88dab8f26169a0d8291ee430c83614b102a9ced506dbda51454d31f74656b7334ca02947797c42680813bf0a0bc8139771d2a5d8e23375bec659cf41accade220a6e520a63b10a9ccad54a0e1396bf511949e09f7799330948b58e7ab4e44fe8946c3f280f332d145d171f696e9085ca960af2caef283a5be625c01cca3ad471f85f89706372df8e952ba1d0b9f12a3474a5a960d07cd4454c3b2afb81bdbdb1c34bf041562e2f32a641f5254aaa5896c5e3b6514273499772f958378882556858b845c11e934ec055151103e787dc24f3a501fee54bc8abb7fea348abdab338accdb5259857769153a6b0e582b4c12f0c8e15b78b95612e0e48e44559a70137c5705db89667eacbf52c0c9947d4c104f4094684bc0afa877b01b575117f747ee380fc1fc98ab97fd0baf6c32006de2bbc1b561e6250adc2b5f11518519bc1f71bb195853ee3ae88db0e0fc610053f738a6bfa8daf9cab51dd03e4ff00a83455724a63f23fb83bcb3971fe66dd2ec8b940dfdae69ab2e4b54f4908c144bce3a65db2229fd4151c5d228a13b46a0f40bba2a38ca7cf3055da6d7f04cc9ad2a932c375c52a47d91d41669ae15f2ba29dfb8e17368e7bcc435b98a585f47137f309579cde1f1058322282967345fa4cebefebe23b03c46565b833d7f44a84a9afe8435b7d399936b7edb96d1a940efa482c18bc9bbefe99bf81659a25db0b744a3331c0f88a541584d402daef9858d6b9830977c846656a1de1a9ab5ba0ce57ec551674fb62f83dddc1517162d592970e05f7c42b1642f865fec99006cc1b89b3d0b0cbef7438ff00bcb15766d6c83b6baaa75f708b00ce181d93d96541026e78194105e0184f313586bba16a7ab3b345165c613399ad53d4a011ac2d4277af346a6e82e6545c6c6d1908a42a9525ff00129c8106c0c2c405ff002896faa6baf99913dd5a6dfb83bf55ca1c939f42a0573a833a952c0e105c46c2e33a45fd94afbb23fa44d897a7ba6f17dc3f3352bc46c7e634ce32a973ec6181b59d0a29fc4ee2f07f066713bcbb49a2ba387ea28259e703d9326257844067bf28447b9c08a34df4cce09f666829c1306794242cdbe0661d961a57fd51206f5c3f7b9ad031afaed364fd2e1f31c9f360a82640786cfcc0a810c255fa60d7190c773ccbbee047f115145a6b49408db56efe628ce576a8f824d264f989ba838543e7fa8a006251bff52a1d445aa9af01d8314ab32fbaec90bb7e6684002c3a062796d06ff50be46c4fbc2ffdc20041c3923341a0798ce03e972fa20d54fde1056f58d928f68aa74c728384b7114518d55c6d664c34ea29e15de2e54af635338077531166d15af4c0050a7355033fae05b34b69a47d74bcce4ca6584cd0c3e58371dc287cc6676eae19793b1cc1edfd865adf874b9968ba4c3803c0e12b3e2c23294773129683b54f0087617d133e19e9d1e89999999ed29ef2bc9d074f9eab53f48980af346a2f717fd4c4b9706e31ae87d216991260dcae7894ca81730b8b94d571bb9742be5c4b0c6f9525bffc1074d6c60b7cc239bb0e18f851cf30bc3ac06d3036b3fa8ebe7860b99362155b7a88518ba7539366958fb97643cb9fdc1017bff39b993398c986163c4370a01ddb4f9813c13667320c208503498bbafbef2add6c3ce1fdbcd3d4ca8f1d36c09b0747fa44baa3d97038abb8ff0044b6306ab7fa8a064ac95262379bbb16719a701f98ab2539544abe1952f514b2795ea183cfbb83087b206000dd8d128648ec4bfa18ccc31dc36fb958aa4f63ea32a0d61979f43156655db24de4f6e23ae7cccc40e8ce7172e5dff4c2cce784b629fb86396ff98aa474665d6e0cef50147305effe8a9496dfe448ce9c8b684ed4a50afa9ce9919d460259bc9971bc45b98d16285c4acc1dd37a583aa4e1c43d58c3125ace319b61195985d2f12faf7dac83ca9da9fdcad0fde72ef80c341fee500e6d0304c0d3f28c605c74fd4cf460ce47c434bc9957320a0f6afc4522f22f8302681ad64b3000aa6188b1ec2b729bc675294d7b101bf4ccc0d6271b9b2b7e60eadf71885197ee11b12510269772e5da6078c41528ae473f51d172ef485c2f836257e0737c3ee2cc9da9dc4013a4e2998158b98ebc32f1f7b982df5c135280a4c522e08e3cf11dd4f086e6080b8a95ea759890c33da84a52776bc9063a4764344af2bddea2e481e0f9945052c52d112ca58da18f71034ad623f33ee5107fb25e28df0ab1769562416494a4e19a60286afe530c8ac65c7a40400b92c0c2363f030ade15c8c2850721836cadeab1105c9c5f11cee6f84b6fd3a69ea2235cbc3d4a165958e3ae5ff0820a98d79ff73301060b6cbea0b55d330aa54ed52e8abb97a2c9abe25ab387831ea140a866f51b5372e9fee589c923cad78cc26f7ecb09aba99e4fa808fe14ca38baf49fdbd57c442fbc0fa8d071b95892f96dcb6c86cbc36547e5cc5649668cc65bd0b6798df9c6d9848121b5c267b32d4c3f10ccd5e656ee1b6f107719d66a9811de0b0fe989726b08fd24273a6161ff00c6e2074a73b184d6f6b5a671838120a6ebddc33f31e08297c53e60362e93bfbe25f2cccb26732f3baafe1fea59103b378f31684ed0d446acd1fb4374e33aba659cc3605c529019be096006eeb3531a62d94886f13ce5167c3c39bf50e384de88fc4c3365e14d7fa4c2801c26cf12899cbccad42176ccce940eec7c929f89c86203c46e4fc46cb5821eead89a2bd1385182bcd7b25ad5ef770a46db62725076332df2ecd5afb9b04f04addb1e044b02d7398f6c12a949cce49f8957ad745bbcbf78a83cb30f289e657998fcee3570aa17d9c4c3fd6a70a2df33e26a6c96ef39acf6cf84ec43126721f82d982df432ee0399ae22a8e7928254ab77da136ca0e201339f30b2dcf102f731dd09309a2c7c2630b691d6ae682fd44a7710e5f71e459e550bace5703489d1bd5544677a1b122614bc144308743967ea6318ef1067f2fa823ca0c46fb0aceaff006c290abafe84296c020fa86173e593e3986451ee8844c1e04ac40b25f0095eacf351fc4a61212ea8dfdc685f3c531a65f46e19e8343744177e6a8b89edc7b32b2e6b7d506297a03b1f8257367d25f53e0cb073305a1e6ff53807c0abe652fb18dfd45cd1ddb212844ac93f486302f345cd3bbb6730272331a95c2c6616f388b0a61a13042bdd413327da3be2b9669602c7165fe9d07265827a5ed8e581fa2308719a15730e9ecb181a96f59148b99ddb518174bf5de074cdf3ccce322e0e20f1b6c837cf1288b792d0a4738ee1c308125d08238808d40a253493714457a541d08ce156133048eccd82bdc236a39cb6cc13b84a6664122ed39861523b40f2b7f111dc73ccad6fec977a87c6a6c259642f29855badcb8b17a80056d72cb30cdf2c40df82a36982ca540c70cee8f17011ecba1d43b916cb94f665b3b8e4e53273ae13b7939801761cdc0782c7152db28136b9e459fc469b29e3048ac302104f008801e1a857b0a647372da55bf04b20dd2c7d22455dce63b42d37a10b5535c7085516e652f6df98e4404cc6741f71ed41824268c263c428ccd3c9a352694a64d9f33bca94c9e6a5e5ccb531e22c435e6c429add8155298057ed94400d294ccc0afb0655a63cb91dbbc38120306d4cccaacfee8c8bf25e3cc0674b69faa3b7726574fccaff00d99a25deb86002a767106b7becd12cce270f5712da4354508f60713afbdee4b9a2d994f71ce5272ff53d947198fbcbf03dc027a987ea64441e0c7d4e357b61281f3861201b2fab08215f4ca785fa98679c8e1ee18d5052ea659da41771aeeef0185dbe031f530f4192d9e6581a12af3ff44a632392c3df12c1b9196e88c996e885d425baa2968f72da0b32e98be5892aabfdc139396bfcccac1b4dcf941d10dbcd6e5584cccf44d5aa5c55459acb751030a5d2cdfcc24a77a36afa98a0efd910153345d4b29be21a029736b1136a579e5f12d804c01b489b2670d4c424c553ccdab328153381b5ea086e09c54bc007614cb057780bccff00ab49fef3e73e504d184f6f5df40013903b9acbfb44140f44f9125fea5356fe09fc58ff0071ec6bb45736f11987925bccbf2cbc43fc152b798e36cc3a95db73136de207811c284f0e2040652a297a85731f316968382d291dcdb92e6c6f460941bef6c42303f99711fd34315aeccd369fb31ee117b82de3dc27b6cbc3f52b2e79b2fe10b765cdff00bed3e019b41ea92e8d8f2337761c92a5ea36d9621b350e54fadcdb8a8f2c4ca403b0d47cc9e163f44698729b2883e821174db6f343f2e26df6c0c3edfeda1538c3bdadff007068de6287f31aab0ead2d7e60bdab827aa9f376513b5cb35535c319eec9e0a6181a3cdac16a6bc1415f824141e81e8fa8282e3b9fcc2b15a4381f3899602f23ea51a14cd317ea63a4417500d8efe200ff000020f92d8c49f418d44a3c2b2fb8d3b4e558fb8125dc392fccb52ddbf37b9b847dc4bd17ee3664bdd65ca9de84f21d86035867d8258f2bb9ccfaae8eae5f69455d9e61aeb9f932ccd8cd20a034f29b08925456557deae71b7ae32c4035dfff0048dc88ca3e95961ab35672f32c163191c25889fe682a807b15041edd0595ed43fa67da0c0fb94fd125a55e163288da0ada1ca06e5f10054465cd7ccda40b79531571f2cfa194eb100d4a98196712fa23965853ced1476203973df98a8f3ba54a12f9768ecc1a768ac39eee65ea96fcc1c82fb4c71ddac45c0b765b241e2d7908c651793728488e6e059862c9823f82561bad3de6bb0562a505a7969948c28c56d83955f60540b585b8a9456d9f254e5838a8595aa263eee59608d36f9f5175070f84406b999d404f5c9770b1926c9472677acc70401aa5cc501c1942c95cc288f7687343d4a00a711fb467a785f646d17ed23d901e93dcfad4cbae68adcbab594865787ccba55e6da67970716bcc3c4c6469cc2c54b30b5d9942cbb5f1102f546a810881741e75dd86159af6389ded39167a827380453f53424eee4984887622b235aa1dbdc4bae0b8ca3b806bdfa94a3ffc84a1f4e9617ccbaa2677331da581ae52c080c9e13592c8186a021d4b92af93dc3c4b6caecfec95d96f2af6476506d6cf338b88570b805a46bac7683955aa6ff712676166639a266ea9f3e60c159602fecef02afb6ba7e98db5218597483c5e07ccbc20e3f86615f791ddf88ba8e92b0b8234d214fdf328b06e336af33c601d0fd45a5bf25848258699c1fb8b8c1e434ccf5d317fee7712ebb4545cd80ffdca9854a18ac4c374b0c9f30446f76032fed8d9a1fa8a598f0d7dc03197877f50216c39b15f106ae4f525fed52ee2856631fc89677f7a999539beaa1bfab9ee25eff2a941507731e01473c435d5ab5d880c976f2107287a4f9ca357f10a734975e61b0b98f3f95cb97d3e3a0662dc3658d4c94ac2d9422d6f5050b3d9750d209da6a8ae57f51b5997ca58dcc76ddcace54e55b04003c9b6a733e80985969e637615e4d41bdfce22882e782702be328322154055ecb885406ef89740ee3fea080ec774b3943a54af994ab5a94ca530f2c86e279aafa8ed77bb6bfd409006eafd4ac547c3680ba169d17f10a873bb1b23cd9a7d4f0cac3cc5c9ed40c46baadcb57f3803ee52b91e186767206e8a074ef367f5051acc9372dd0b17426fb3899bcbbdcccc78835462e620ab81a8ef494a3e60f306b241506ef854cbe56bcbe5978540e41cc3254bfafdca34ab74ac279229daccb9a1b014617886602d49663c3aa5b3f4b209e02092b8a1af129a3b146be2565b1d6304ddc3e9c4b38ef686288f35fed339bbab312e549cb427924e2afd443403bb0e16bccf72b12fa8dfc03c474536f638654021e9c42f20e0665741e01700b0b56bf889abc03bc1ec1c9fe60116b1664cab4b572ee65a2b9fd929726d6c3bd4bc7de2ac521886573f04a2afbaff00a80571e0109aa4f10941e9a4b1c06582f0afa4a4868f98ac32b62995ac1d37cc4fccf67ccd39f8803b3b259701c715f32b9ab548d05b5a96d4bc20296d625455fd011bb23bc17cc56c9c3bca3adf13270cf13b2e3c5ee62bddb9a5768d0aaeebb44342b8c19497ac62dbf110552988c62bee39a517ee36770f1cc7ce1e662b481536ed5a80ab20dd67da6a20d65aab98608f0f30623a49aa126621c87b30c559b2c12f1386af1d78569732e0a6752def6213552819a0a1fdcc0097b6e2db63c94af11163f8da1acf1435f113afceb279f10176ba5bbf245081664cd8b4041c772eca3ac199779241a387dc56acfd19b0d0c99460dc1593e19e28d9c3385478f116104c8e60a9cb9ab8b2827012a22653c8474bd8747c3338131da61ce3ce62b45f01b09911bc3bf9962b6d36c62181669c6616136d4c442dc7a5e08390f0b54c25603767e48ab619635d0855ff00b930a6359727a1f3033fff00b2e28445cb73e213524ac311e8d678cfcc325ccdb1084a195953436c6c5ca396064b33fb848183651baf310c18ecd21dcef2a85e54fdcb3e35dcf642807f1267ef6c6ff5132e3828b1f9e22645d83334e51bf30aad6d05620102acd31f106a3b38592bbbb70a970545b5372dd52f2d3f136877fde5c08b79e2545a6b467f52f3ef8724569556286894c52f7ba9519c383bfdcc810f263a57e6dd45e8cf142b74df88a014f828850b6ae0ee5257222c14da1152ba6a15da54fae96ed8f72959954e48b189dfe66539fbba100293c463047c9296c0edc2606fef4839654ef0b9a3aef1664b379cc7287aec57dcaa1c122dcc700bab23d36b852e2ba8365b9dfa9791071e4dff001006ea2abb1f0442b8469331ed8f243f6c6abcee67f99ba177b3f5a94c9dda1fa823bea4d7f729439d86be634516dc59603cdf2a4be577064fb6362d72d9fa886ecdbe3e91515eba7ee13009bae7ea5e0a6f832c5880f6416dda0c5a97f50280fad7cb0995b7bda4f88219e65e00e2c83f44a5af55a2841a2efcce5bf31048b3566ae02925b64c4898dcaea0f8c2338466eaa556a69cad40bd973804a7ca3255f660881ac99236217af0525c34dd83fda5a03e3c27735f7ff44307d86a2d76d0b50515eb71010f101b6094ce0a2c250b0bdd812c5dc4ca6e839c384ae651ec259656d51b97a1147fd084c3abaddcbe22658f70fee13468cb4480e15320a3e2393e54957ae9c74ab8a78baedf32a8e7ff003ee318ce4a0fa9daa0b2098e27dc6e341ab6598d1c6ca6d7e651da8c884c8554e4607c4b44d980c72309e03e66bfbe9f9656c16e66e043f928b3d8c9139422c72dca81874b40c2aabf72cd9a7961dc3ea01e261a08baef19f9c6f3de690973c8fa22d79ba1a40b20b72a9e69b9488b1b276cca0b4724e28b79871142f5aa95d836799658d79983882b835987c60cd0235b2f8481a87b35325ec5034894fa8ac545d8c0ec10a5baf031c46b6a6618a089e84ec17f732b7a12ccd71e67c4f29a0a1c70e849eaf450dc40b40d8dc185d796205351e3bbff0091064fc225020ef8312405f6bba98901efabf894a9bb3b330aad4e17fb8897e8ff004cb1240e1c0f5dc9cb8726c9816d7738804b82f84bc9d7d58dd8aec5cdfc30143872dd600eb1ace200dc0736d316058dcc79f512a00f0244b9641bff00b9b0dcdffe03326ebb54bf889a28b0369a5b8da5afac584056ee0634363e4bd5cdcfff00f426693e386501f156b700c14349b8d42d323bbe1e2305ee5597d388b6fdd0c5424e4a2efe25b3ba43171935c4604ba32ce1b8cd9516858fc710c8caf0257dc4235786e6fc3f362193b03709e2055b639347cc5ef670aaa2984dbfa066cb849144b77fa865b2d2d5fcc438cc6ab0cb5cb9a0465d50f9c83ec668a576f3efb41186e4a5b954246db3f0cc66fc617f12e447d3ee5c18acd51f30836c7064f4cab63d82540b27b72985bd6af6815d0b43205056fd2a64cd1ed1adafb83382325ec9b28541643e387e617603cc64188dd606a3ed55f7d2ba54afc5a9da5138950254a3adf87adccb0695035867721d16a539afb9470fe20ee8a3d08bb61f30412bd95cb57a7e488c43f9430e6bbca35c9e37165b3eb88edf242e0d893920288f68da18ed67ee36cc8e2b98f39a1648182e945117681590d7a945ea84198f697fa979567868fa21d736709570a11b04e76ae01c334543f70130e1d1b1175563c12e86bd0bf51d3d9d5bfb9e805cbf823b1e342b48911e7885de8890b858ce722ea35c08d6aeb8350b9ceff8e620c2db782a5a2ade5bf984a79b555f9894095b613743bd304a8e5099ee7672542b103b608bab5daed3d132dc79c9f442d2e4199f8469a07cb6c1fb53fea574171162818e45d20eb5b4cc00e679798fad43964f98058538a4dcb0a90db51630e1bca97a0969151c70f89982a2a6b4eb5f7241a856916a151cd0d25446afbf336731da73c0952a7f32b05f965f13c01a3fdc3b6785dffa8a555c596b1217fb8c4cdf8e7bcb1b04e17d36cc85877b884005b691c521b062511eeaa68d00329466fa4707d9861aef97fb8577677dce17e9a0cc1260470387cca3c4d5f2f53174182f09412a9b6c4a9181295a27c42118be12f59c346bfb8535f0d7ee281afe513e4ef29de2b78350e1b9911a469798afc4ba839c444e6e22f3b3bc4cf8e3318203cc5fe4fd41eb5df9b22d693e13154f26311a6e6745a930d4a9cd79253798f203e6505acf52d825ca343b5b141b1984bc9dc86c4d76970b7f1994c33cad8da8dadf8978323fb855cb4fea3eda8e68ff00b4b28c17060c543917863c64c5ab2910c02bc43c2f8732c2101de2c710d315a460815bba164ba570e3712960ecba85eddee1af98dcd18a83002ccc35351523d8ff00646cb3c79164549c111c3348bb384be964c87281383485fa828a614979f8731145adcfe9e25ecf79774c011c8683e189641e09c7719696db7c69ec831a4ecaa810f8bbbc7b96ca0e5b5454177b155e66717866208041c301e2538357b22377b1942709eff41de50448722bee3d4d4958d40b48b6b50cdd1c24bb7a986bb8cdda8e73fd4457982ac916f6b93bc0dd5703562c83e9106aca7996c4f4e607f706f403b563e21b10777a1fe48bb95d92afee2e62c3666128c0bab54fc933441db6e18391038a2fdf798459911abf1da1cce5c05fcc37a6386c3176662f03daf72838b78dbee575f0163f31365af1e0f921d788f39f52ab8e6435ec8d36fae6da0f88392d9a40fee35005360cc20b052adfa940203b54f89607058008c42c6e993dca883c494c08ba3cf38293bc0324aa3ccc897a95e0603e189dcf8a265aaf65ccbd7563466e02f17b840b40f042975958e68afbb4c4c4c4b972e5fe2a0668a8110620acddeaa5f6fc2e5cb9877661e73f26211d6860f53250b07f48cbfc4a9dedf84fb9445b7e52f452b681b0d997b04e30f9857cca94a7cb64819ac8900f447994009a9071456e88d25ec1c907b7ca7f6884a5be57ea6f14ee07ff002369dc53ed2d5a7952d436c773552c37fdbfe882d37191f6c137777624a5cad6885a06cedd1184bf8c3ed858797d39fb968ed503afdc36f9657f08b8270b440b2abc856be610aa8e6a01f32d3d93a19ee9ba21edb87655bee568498f242c5f78d8cc6c877d21cb36102a65377ee7b80a37572e7ea3d0f19557f72c4aee54d105501a714aabc7b11d860706d2fb4872187e799765c7214115d7cab572d8174f57e65470f191994bb4ef0219d75d8db28d01c8d982bed086ca0600a2668de35bf899bdea0996aedffa8fb9adaf533a6d2f7b44098deeeec4e5d0c26096141b1d256a88e711ed15ca71ff0068c47cfa8928a17f1020f3c06df99442c76e23aaabbe0809566cc115624dcbb8d988325183cac2d818f832c8d0d50fdcb0a8e8e37f12b6d0f2bdce58d4c9759f71571b19bb4cfb02dac5fb80d5604bbd373004a2372baee2e2235adb441beb7b89510c2a3c37040ad2255d85ba58888d855e0fe225906b358f705d5bb6a53e20ac5dfa066664fe07a25468ec25b1553ee143bcf89977e994a8e3927ab6237dbdc76299a072ee43602cef1fafb98103c22c056b9ef0183c1de71261b9ff005cbe22f7d9da6d05f8828297ae12d335716b0ecaeae2532886c1fb977a710a6efd4a720cb2a12c15b5006882aa63396b883591032d8af1a9fa11c41c0b57165c10b6179803831d99f13d997e561c41b05cc6f50f8962f15322150a9bd3acff001165e470b5107a1995903e1897da2db989c49e165f801e483c37f0c7d4ed8a63c41383e198010ec86c72ef998962b7f20973705d45c413820b868bc3e6560fd0662231ed0f7157ec547f312f437a1dfbc2e343b42228b5819f98afc4b620cde0dbed2fe327f8500589df3304a7846a695e4cacff00a85d6d6a2e15170f62e35a4587932fe4a58c0cd17633fab522dd0dc7f74cc6f7e7350c79ac1f12b5731b19ca73b730f05152370da8bbd81f709073affda940779fe825058edee22e16b506ecbd6465c5870157018832009fb25837b0364646a1acdb2cb38feb301e288fa65a2bbb8914d382d6e17a665a9196039319ee0ae4a69e246abcf66a66dbdd623fdc30a8b830a1e24e1cfee6c38cd287fa80a119d1881c2076da54d881c8ed1e04cddee584f48c6393bdc6896bb2ff00710064878ba8c568f0457f52d1665cea3d7c346e2b033e0ff7868851b167ab2e5f5cf7ea6736f02e5ac4e4fea59b30ec6131c1ddccb8420dfd4bc6c22033aabac11c35a16a77bf49867df3a95402bddd117e0f3662dbc4e60cd92e488192a830155bcea584cbf8097e08f208806c126e18c67d97897add1fd499914f0d6599eb8e8cb0f06cd056cc9aef2f138919c1bfd105e61c4fc10e02b6c65f314a44d5e87b85da0aa6eabee197ccd4a31e556a68fbddc1497b60b5f313970c1147c408c32d6204a0b6dec487b0bd91480029659f3ccf84c153205e503e91031c69fd22e2934409545addb4fb8115f9d2b7101fa50cb29c2787b858851c68f7003594050405f719666ad7916451f62ea7f616e51897e463def27f2c34e67fe4c6c003bbfa87502e5b07f6c4d28aae5b968d4abdc015aee83ea60bc17116530d0984b81d722d21ed4152a11cb977f7074ce8a33036a3bda25e0478da5a4ae0b40094060a99c0ef16625915a68371e943646d64e2f11957f148480c15b26643e5fe0264800e752cb54bb40a514f033b30eeb96c9bbaa13583c5c05a17dc44e6e7721b6fff00cef1da191cb1e6e574af5a0de0436a91e8caf4cbb1837011dd87681c045281530e0b2e37c32d626e3d98272272e04c02272773291777dd465888c8da20e6b6d5417538764009cbdcb71667b4a5ed28f7ea64c9f68e1c7e92ecddce729f314ac5bd4ed4e25f4096d65b85e6dfa8fa2f7140ff004228e29e26cc8bee6e074c873589c026e761a7b545ab4530932bfee20c0ea36ee7d4448b5c42a01b3cc01c2fb778569713bc6db07f709b38734c7767ee0b7999136c15e49b4de4d4db27ccd481e7cc686498e332d293c6c88d96fd0c2a7fe39cc0f496860bb8b1fdeea36bd0994c30e112155f7e28c40d5cf6859f5c4cd676a99254ac571088a3bedc0b05cc6ec8ad2d0a726e0a094864ce94f2c64a919a3295c3ea7d4c6f55c27801acc472256330d0732ccac41326b1117927372dd8be4dc20ac32c83115e649c6e2592ce30bb9736ac66ed073dc9d8076b23ee5550f6cffe5411a6856912968f0c4f73b870b97f11d5ce4a48ed8ec66257957b3531b1c387dca1c2cd519bd44ca297b7983d49c99442c246a8dbf30083ae529f3cc011672c7ff50b42f0ae7e50e7c34d3fa9e80f153e6789f8ff0068882c5df3ef1e3c02eb17cccba83752fb8ed3768e18cad6cd8dc4e0f9e99e9f36195d52d6267fee391ceec96214f0b3ff00528d4660fd085a18041505b60bdeb31f1876c9048614e47899d6a58360f3044683ea26053dc51754ef1529198d3822d1e0bef893ba2ea45356175a46a177b94c597d17d2e53bf4cc297ee6e1f6d4c4cfc425a5b00e580941d96ee5b763d7158856c277c54118bf9b5311cb1d9a7ea64c138337ee5240edc1fb63174455afb620504c519923bedc20910d4553db2ec25f87c06605b9b82ff996037e4027620e415f533ac5e1e14d31d60a61882d9efc53c8cd3f889516cf2bf73637bc2a2072f79874fd8a9552f7292fc14e33cc1c255eaa66b1f2db29649d8288df2656eeaf880c82c2c8906a4daa28e1ce6aa60c676a497c9105b02edbfa26a59bc02bd6e061be19905836d6460ee8e4b50a95ce445daa1e0afdca18995df04bb108ddd5fa8e06d6f8ad08baae777480f31f1de308d1df47c4da0b1d8fcc2d6eb78cfee1b803c7311abe50fe203581da9bf6cddb162eaf3345b9d6e06b16489415a1de2912dde011610bd372fd405c160cd123c82a952d82b5a8c58156a96cad22762ae04b07bf6b143bc320fa8c0175ace08aea56b9726391e2cbb856e4160902594d43e953cb30ee56b4ac8ad478bbc3442e2d3396e2b351677309991d9cf26a56861ac31c637b9db0ba369db3aef7162b6f4b15615954c5025d75c54608e0ff004c5ce5e6730c0d6498aa6fa4880d9faa216a6a8cd40914791fd4607576a88d86139e206e12de82571b3b2aaa2e83c8aa994bd8020b9946132cc5bdb8dc70ec4ec98a24e826c401b6e05b05cf825774260cf09f102895f7f4216ec8aee92af2df50271fb8dfb4ed2f364e298e60c792a5af97c45b757e15a9850fa4630af8a544bb5d3773b16e0a4a02e22505d77de51647f336c9f32bdf2dcd923997b09fcdcadc60fe26b5dbe60683ff00c8e862f662b5a5f24bf7825e3f996cf688ba417c4f066735f906a51d7b1292038c0fea3010f0dbe21662c78fee6385e4400b749cdb3ff361598674ad2eeca7e63fa463a177de3660fa9e795106ebd4a17a43b19bc19310cca9a8b1cdc0398d67897437d978824063f486380f310b6ca26f3c676e29e2e031a0eec1787b845bdcf5c894b64e38e6cf722ed257df15e3d4e0ac6e8dc3d0d68789522770c91706fd4527a4d032a5897a94022fdb9893ced0ecca037946e0f891895a78a81a206117101df306abdc3df5a0b61e6a3c15da094baf3d0fea50179aa76f30b542d94cd7b2576c91c12d1d5c8a92a640fcd84a46c6142b3ee1879c0e47c246e2fbd97ee50e0febd4bcddae4d7b8d5f455d4ca13b9a949ad14fe51a04f6a7fb8c6726598fac1d5e88dcddb6c269ca1bb596b98038312a127b4e5c07170f178b4cd928060c2f7ff50e088ddad20d2a1f20238cb2ce660c2ea08c2f08edc26d17d055ca1339026ce4894498ef16d390b9dcb126b292ca5be625f60891593ba41e42a5c10d56b7e5158257beaa3486d6ed669cf85495f73281e6fa8cedf149fb629061ff00daa0d2b98387d4b28a766a3d6bdcf52a380ec4e60f281d8979daa33f1f67a12e40efa63f9881729ff825cedda1684acfd6f7f5287142fb55c645bc342c186be45af825a043e0512b6836ee88ee463945619f10916a183fda1d16715d4a52174970d44d62f44516df1a3e63e41de723fea5f99d0c4cc8e75788851c72ad7d444de77e129fb0adebe8236a95502a4b461711b24bf95dc20bfdce082211c33af99564a3bd450ec0e5c02c579303f538072a67f537d1698a8d5307baccc4557673f129e0b3403f708a02f0ddfc25ea01e72bf8839fc221c31f7e1f7123a5bb650b515da845a809db0bc85f87f1e6625070333521701fc11c6056e37082c9631896455e51506ef6835f73e8be4f8968b9ce12f3f4137f32c98afc11c10a2ce3e6a6036dc0c825e522e06d8e72f4729d8f860ccdabc05c15539c6c5f10c58e77bf04b2db0d0c42010314660d237639f88732836862a51ba5f7665e0799903de6a2006f9ea2a06ef05d7b818037ed84d675f52d9ac3de5277a19a8499fe49c4bb214902a00c706777cfcc24afec54fb992d4355aa7f70c607f583d97de20d365ddf12b4bb8e112312cda699f86a528cbb16659dbc5a955f33896b53fa3c96762203265737a372ee2b1ee21ba0f33b8b41adb1aab287cc1668f927c112fc7dc173fa47b9f931a6cbf704fd0acc52e8f888b769f718984abc99897ac32c014ee478f1e220d593862f3de542d56cacca719e43b26135295774d007b8ca82dcc5a1618a5c1e6f5da02d687167ea378a0b1d30432f267e234c2a76724b34df8c405291f28319b4cbfee79cedab2203d04afd45578b341fb849d9c92c89b1a7352c460f7e5f704032f32dd5bec8aa283c99fb2355c83ba4d2034f2ca32e994364ab3730a99dbde2a5828625c70dc5081295ba87811fb4fda5988f94af5255eaae7fbe240697798422f0232983da00bff2c6add503a479e18429f052dc11fb958b3f210209d944366ef7e22ec039e35ff71ba4c6acc916c8f09a621989d3373589466fd87a60201732ea72fc4a37a1d15b3fdcbc2b157515e496f6af8208725606e01e0073c20216f67c8f0ca602f00cbdc093ff008148bc1534027da1623e707ce26cc6b9f654af81bee13f513c08ad5f98b670291632b6c1bac24290a0cecff710d53739250fd3aca0a85f613790c5e4458d61e095df0018654bb23567a2065aadd398e26976b8d588eec7f689d78f97ec888af85bff00b96727f06265aaaaff00b4ce3c2ec97682dcd2a86cdafcee6176e748b5f43ea394a1cb92156eda2a0b0def0c11b24035c4a80a255e4b857531ace149781b22b5be0ff737240023393b2d16540516f0ad42a7451f714cbcb156c522b3e09927f356bfb86c1f7d352afa52aaeafd11150f8557f7000fada209753c0ee7256fbb931d03e3d46803cdca288d9f60668085542bfb96a96374f0f64b007930207445e1b617c85fa08250ad9cab106c0742a6420341dc3d9225daad94c63e1c2ca81a555022af22ea42704a9b47ee246e98b7499395aedfdb11b2f77443e66073de6361c3cd9fa8a403b94a9db8622d12df7b241c17cdb32f04c2332d737cb12a8607c15ee60d49ce6423dae6df6cc887267702c630d9fb0cc01a34743dacbd83e62a0ef13ec3144c9b72ff00101434eeb5099bec083883856df70ceaef8731161477db10db0ee507c4b2b00c1687c10cbe2e4aa9866600c3fe90464c584e615fad96d7d31dd4ad523ea6103bc7fbcf6737fdecd00325efed04c96ef5d778360529175ff705510d16a4debee26ae01b610fa074ce273aa8788c6eb750628a3e10d202723999bb6fb44117a7785b7d34db0aaf28c0a8235f47a342167d5311f36e336b989337454af9892d01cd2e11b88c4d98bf7715ab0467ec4794551481f680536c44b7e9772b631ef7728721fa8a96729b199c03822ca33c0972a25533ee5f8f870bf51b42765e12f6d4a62d95c5392da20001f787443c0ad9ff00c739e5070b788a5dfdc6a6ea3896e59b6912043c647c4cb45c571422dee8f70a7ff22be22357782005a2f7ccc56250dc9f26f2803761489e6f7b8b7683b443763cdcb8d7e90a721ee005b1be081bccaa80f4cc5e0ef2b1fb86e0982d726c8b5987161d6724ec63ba5a6c8365ae262a0cdbccbfde5859ba453cca7bb0eb67f2430c69f1346a5912eb1383899722bcccd702e55aa51b1478600aaf8cc16f945372c681cc72b278330928876141f4ca5e52ab8a8509cf1d0ca121a7a1c44449accc97de5910dc16d6c481ad5c423086daac2e5006b05ea5f48b4e96263adc262cd5290eba7b2f4f867bea2604f8571446ccde98091e3b10cb1ba3b5ea237b5c7dc7c5ca47009bfa47221ded89c10704ff00f38e351ee0cc64501327c07c910321dcaf840c8d7847e0a8505702a2fab8325c064e7ee1795df37d42e23771b95bb2765c53b3da222439d32a06d819e0638dbc8283d35e4353cc61ee81187ffcccb7cc68193d7299d015d45dbaedae221423372beae20a2c78732d1e13c4ff00515e53ee0996c0e331b536774a11037d4c4e411d40ecb6a195865d40c6cba3e51b2cfc17b81464374ca8202ca62111483e22ab35738033dc9544ea9c7f134e6ce13225ef2be55dfcc09b18c97eeed42518e3190fa252255692ebea5a6576c3508aaa1d6595847855fd4c8cda4547eb32f04321857cc50a42b691cd285156d4e63498aa937081de680714d52887db0d071ced608c81578accb28db363b265137a98392bca73164021bd1060a02d560b2fd30729984a39c4082bdce462b50e76d71012505f1445050e1770cb4d50239d7e329c71f4edeaa535d579245d43b77948a9a5ad15376663516a59e72fcd6b8472c519ab03d43214cde57e585b8f842e431bca34287566095ae380f98056a87285c12b0773735d4f3604033516417f08d59d7dc2a4f7d003e65600af24592ee5b55cd22cecd8db7619b34620ac01cb38fca0eda7ea501857c7fa85540e0d8fb82c077b1b8579b4798869b7ca2b5f96142ac044669770186323cab7f72de16b57c7a23813b1683f52a1bf997290575955bd328848d3858e57b48cc1b1a63f66efff00189a8118da6a12f41ac4c8af1110af6bfde65db728116c9a77d47efee622d4878692036033b76b28a17ce22c342f351cb90f3da2dc175858116de775ac8813ed2978723b89473e05d40e102b7ff6963495c988a0c452312d46397cc6a816fdcaf22643985f343e129d8f6dea5cca781b22c028707f699174fe12d60b686558d95718186a2aaedde34dc4a886481fa9868c3b9b3db30ab8f7dc40c17db2e77f6bb62571bdc413e420a5fb08babcfc264cafc4c3d27c8ca680fdcbbdcd1c41e6b0606a252ca6f31c5f8f10b45e573cadc57096bdb129d85f6676045defd4c4005eb398bd2c8c68d4ecc5bcc6385b8f9a39211adf3662fb4cb69edc4f2d1b2297534996f0c138122e1f4e0fa8e2e3cb19e1ff00c8ddb1e772dda1f4cc28a1ee0969fb4c4cc297da58e83ea3879cf89998b984d3d86e2e98731947079654643dcc7dc53b028ed1a58b6ecc4001869ede264a5c798a21673d01b1896742b3704f4ce570baa6220b5bea16f9839c4b839d78620d40698c587e58d5e0384205c46c6526e4dd566052c4d948dada7216fe659befb7889069815b8522e1d83fe842baf4114fdea58a265ac11ba9cd731f6a330d84c6926842f8724dd77727fd454c99c4c546e1d8d3a3c30b3e5d301567611c4b4722ff0072f02762b7c9153273ddb259b6d3c9330e70321ad556837536846d5dbdc36134e2f302cfb739b05d2f254fa081ad6b54be195166da0410aa3c10678195018f3c9921541be15712c40ed37f88d15e39a3e447eecf0d57f710972bc4c5d6bf840c541c6794a0e2c693223fc01cfc42ea17b38ffa94987753920a8a15f89a69f13b22606c384631627a330d2e1c6e5611392cdc2715ddda067f7a5230ff00728d3b204bd028eec20770799787c4e3f51d907e4e60560edb61170a070c3ffb2840f009b85968c3632a034b76a1bb1e621fa8760eeb08d164deb399b5eb9ac50a53b10b7ee3b93c301bf339fec63666e3dc90b294f6c9ca7214f44774ddb8a52a5677cdb002fc2692d45a4e2e6604ed598f7b9f0040504ef364b98c1bc0893576af11106a6ac3ed943f428fe23e3ce6f11bdaad5e6eccc2ae02b0e874dbc2116712c372fd8192c7f32c6bda70fee00bc1e5c2236176decf536292068ac7cb2f9b96c14ece10206b7b2d3b86d64af444741f3511937b90ccb1c18c2c302add7328aed83fe90cf7839294ca7ef0d70c257ba48e580604a4725eb955526463d672cade9e0ffb840c63df83ea6d29dd101941b290ef52e9b56301f040ec3f3da2d96a39d089e975c399c91bed24fc68d01e67317c3a6ffb8b5a83473039edc62ebe62c481c50fe6762382c8f62132fc86701aab609e74389a2390c3a7333bdccd5c1c295dc0a2b2f572f4c2cd18b8d701dd658d639d3860cb35e4cc9d55c46c4d6c52ae57a5ccab59d3262109606d6dce2704f13b36ed0c06544385c28e7c6394bac17b4a2b31e8c0accaf6329d99606b5177cfcce0031760bf7518b6e7e66318f82578ab5700154c1777798b2a14dd29842d2724119e5aaccc01e62d95c1b7c6882713c80fc4a78ddcb3ff00122776e5d94f2a65585fab859ac934e262d71b74239f1d465f8542e211115a56e7924a0234e3328010f7141aff00443d66cc6267180c3d3eda9dc8848412f495065e483bc575e1712e98a069b8d50a7fa8ed4111773b56e022c2038d6b1017bf8b818ff72c678898ef9e65e41bfa8ebcb240a48daa604d42af72e8ae7be653c0a5856f2977025c2cc6090462638b64b8f68cacb3bc4c0ee5d660c58f886ec4775301739b2a66f06ca1a6a9c557c9367db089a9c70c761656bcc1f16c776a560a630e5855f2681f912a003e88777ae68c217032becb2a2fc9280d48ba544da84d614f9e65912a6b727291c51099d5bc9b88ec4616d06a973a618972c18e48b3d2ec65df3d70653cf2a061ea5745422e977516bf92f71f3b775915c2dd2d29152d5ed2bfb440b6e2aaa006d6930fa9610349bf68690f115646a7f4f31c11fdc70875065216d94e6e0fe8017fe934f1f624456a376fea3506b961735b1e4c4b1dbed9fb262089a2efc4251b3d10bd0db2d9b960b059947500b14853dc5efac4a5d8362e5f7046ab908f141c862bcc731f4d0c74d4e5ccac194a6babca7dcd590e787d47309ca9a940a2705304203d0d8c42efdc1910cc046e83501b347406045cec12dc4cc974fd45aecf79ff005c44a1a5a1ca012edc5652a66b596263c2bbb0d57f5a0f8804a3e0a4efc59de10341d8acbd971e8824a8ae525e601ed32cb6ebca0ccd01ee507e61782efde3901b95b09fa620999b0f0d3f88b74690e445c420cd3a79095a477caa201f58bea54b772a311ca239827c0614143c5804fb00a635707c8b982abc573125be27352828ae3d917564cb72ae784e5d3763516a4f0311a25ee3da0f9370b691c5ab499b292d625daedfdc0ac46d398304f2d33cd003243f6f605258d9e45b3dee6e64ed6ca65ba21981010e2d4460b7dd9984d390d4302ce08dc22a97f24483ec9aa8af41959c20e320761fbb6ca502c2f507cb98204d3bb2fd44519b6062397c15b7db17797b9c41184d3bcd1c46843eff00a12e140687f48bc81e77ff0098504795bafd4c2ddc6acbcb61d8c4c34676979944056ad331dedd6e8f701ec158ad4474b3da2a45dbdd13e83e08c40239ad458c9e42594c9cee1722fc3512102a93706ecead10d87fa2265e0ffc5460423cf1291636f783b61c7016c01d5cb3763f195abf825112fd936559e62b8b94bb7fbe270d5f386a1c176825d6be96dfc47584afd4c200e939d46015df9979c85e193fd410a43e5729805cdadca3295d0d40371ec450d6bdcc580915da7c4b67230036879966fe84bf66bd455edf72de116203b62379f6273b11d4f3139929a0373959c56a5b583f99be0f5b83a83bc68d37721965486aef0ab1b3e22161c1816b2f0b96624cbf717305967316a6099a94728394ba7cc680c56687c895005f2cda072246e91cd4b936266efc4b4b46e1075f68ad62bc3152b538307b3ea729f71ca890ba40837698965b98598023b5358b467a1b25e65097c335e62c0a17dc82e2f33bd0b89668586574823b259519dccadc5e22ed626dcc53174f625c8a9beffda5bc3b89865360e41516db5e58d0c5beff0050cb6d6323ec9920b56ffd5122e1ed70cca4734b8ab6edef19a8990688cf9dbc79806c3d58b84be2c9860d3033890da4f5bab8351079d4415ef2a7e202e3fdf69f3186d2b5ee94c5182f666555a7cf79481169c041680f273f136a0b628fd45a7c36cf942c4cf95cc0053bc1ea2c5a9e8ca42ae6e4f897a9d98ffa4a609f20c5fcaf810a08601ff9738092955d7c44b5c0edc5fdb66cff00ec0c367505b661c3b65410f97489987635eea32c8ad08c789889cc3b89367bd041ad0d2f440af92c7c90a00cbdf1509f4d3787f99af8e6201073298ff644071d611a9485820f03c54582c00f22a34143da57ea352bff000c44c782ce099da6f32edb88cf93d4b21a6ab529cfcb148efda74c8614380fcec5e6d572b1481e15849aa23cab7382f76171af31596e54ad2f76865c3eeee142d0ced216c6a60da26533837025c5e16e1477c8d58f2b2b2d88a8b0ce920518d89fea77afc1a97f401c52e7600f352ed771b2cef1b933665ab600513027b661f7014b5ffd1c6bb35ec31f0442db7329cdb65b462023bc658a357dd6d560654ee37729fd0e13bc0b061988112381113eeb62581bfe115a8ddc1a4ed116c051bcce1d838cb15049f117d6b366129d6f60c1ee0b365ffa7135e85d765712d1c664ba9bca570144b2b76a5a003c85c7bcb356b44bd2d37a13d30650c705091f40e8cbbb7d5ee0b5c7dd8993034b2434c232a28b8e7b7ad9328bbc4b948f84687df4cc1ce236f113447a0ce21ca1ac6823440b97888c4c6ea89888e700e222c26c86f7291ac1ce34cbdce6a727d4b90ed94b0d8a6d0a85a9d6144e53da09644f1145c6c087d21cd46fca1e1529825b8954471db3036cb1c041baee744be577ced14acf6671040e2ee1b97b1a8a5981e23b4f457bb2cd23ea5eff00a866d67dcc179dfb4c7c3cd4059935de283178426358bc794efc100af84cfd26e16e9dc56c5eb1d9e608514cb2453397bcb0622a6ab96e20adaf158603283dea08bd105505cc14d22d6da96261262f65c60b6c9e799b81ac4a931dd443d31958190f83ccf0a9c8169cf317282421b071e2595a272471c2c5c7dd1c2d20316cba8da961e625dd6e5bd54307b151d7bf98ac9dc2e2b2571fa81dddecc7150f827315a86721361ed1492c6a66952eb51e4c7b25fa4b12dd01a1ef2ef8e8d6513cd2c77327c4fe04a239986c3899c9755bf0943b4f73204f9664006349258040ec2e66cab56b23b08db4d1128c8ec32c32da6a28b9692b73d883568c142c792291a5ed6895a73ed6586072a329bf9972a3c84a9596fc20e738c1eb00f9e209bb7414e255d328a752fba0cd8caff530eb8d6ffe9286d17673ea50371a0e71978459688bd0700cc5dbcb6955ea1661f23516a8a5facca2facad8ad95e698a9526c39db1881df6a39a9bb8d315bb1db6c9f153693b88d9ba9e7882c3f3016beef7193233e67ae650de8202e8cac5b7355b03543ea38e438d2f88e33dc317f32ead4dd6df99614ef6e8411e1435efbca26133919f51f288f021b4ccead9499a1d9ec0e20c1e073734363f1348397b329121c1895395d62c4c28a61b94136fc863f98c6cf37332864e5703fbe606c2bcc63a677ee05ca3392a050cf51480ee715ee715ed292ed1f016fa8e765ef0216f3ab799642e7766bfb5951fa8f990eeb88bcef6b8912102b5fb181323b64db2c0029dc2a22515d198aa6afd255a283385b1900ee043db43971205510dfff00040694f7307e26903776c6b5c86958d6b0772a560d3e57ee50562dd465e1b0d3fb182e3b775a1ac23bcdfc4cc73390aafcc6025eeadc43644b70064a854cdcc30f8806fe678f5801bca307b44d4d107c334571656b531c34bfbdd6a59145c64fa85623dacfcca23df825d036da33fb8cb3964b6bd462aa73e6340d7e5a8dca462e6c1a182850c66c0bef4470eb9994d918e1612d6ca71ff4c2bcd2a5d92e5e88d3f512ab391c10457ff3e2162925bc2392ff0071c7ce0254686c9cb179853366999e0f76881e63b76c4a6a8d10cbb106a02d20ac151ae6cf7a8ddabe2d653e654ae0c8bb97ccb6bba69a1dddcc12d03990d1bed2ab8bde1f2fd2218d6f2ff12ce5e2a88d221aab4b812ef50d2a7f4c46a4b92e5c9d7038f4864a2dd0cc3adbb2f04478ec611a81fa45c555b15820fbc139798f9455b40eb95e7425f03770c4a0caf1328cbd988821b18d1856ecdd610f37922fcb7211e3072b72bef68e0441b0c9d8c54aed46d31a0725958e36c8f32c182db5b8ceb61c9d0c16821a92ac66aa6903b1662677ee941a827f74a46040f1500f94f89b9557ea1044f945be97231ef2a29b301e3ee5afd440da31071071e6726357a989826929b10465a37186236b3f8061e264dcf12ddd5dc6221b1d313a0cb49fbc518d3718be81025db1a3e7168d4bb8a65ac6f3771a8fabcdc2114437dc8ac9731672d9121857351632334dc3b8452a984c9c7c09441cc85d371c8077324adb8fca55a12b20ca4dfa562684afbc0dc5e1952537d44a6bd9764c87b04ad7ccaeafbda5ae6f9a94c07806e062b7998a82e74588c7d23cc5c80b96c7c45eb30e260fdf01493ba59a1f50696ccc01adb167979a8ad72cec49c33eb949b03d978a17005564a8ea3070ba952aa3be986ac7baa896f53bc465ad42305419ce4895fec6494968d734c11a6e32e281a0da324f983e1f98a556276b94363380ff00e92cf03cf24a41173aba043e6ca6638c309a9931396f151566321cbe61a6ef5fd92e1578b8889ca72c4c94760d4b8c31746a2991171963ea3bd06b0a22410ed515fb96126dbd9f710e2acbc3de6060d190650fd0ccacf06edb8316c957ea63ee34b27d433025ddeb2e7370d8ff00a853c9bb6c620ef59c904281e6ff00a659a95aac44f5f51014aba76c42386e07f982a0d1c27fffc400291001000202020104020301010101010000010011213141516110718191a1b1c1d1f0e1f1203040ffda0008010100013f10c8e209e21c0910dca7983a8368658221b9b6f128f2c4159663123f194b822de663ef0d9c455c306f28dfcc177535eee385d625062ea39318811f32d7e3cc456524bbe2040825897c4b12900a3a9dda85fcc4b3353071b80e962660660a9ea554ace1cfab881ee2a3218956bf32ce32661cab70b66a36422179a9416db2c554f71a1b6732960c4c0baf68c1421f752a01b81926218305c3a080e45c00d0540f440f440744a7444568829a215e92f73079c21a34250e3ea1488116c2a58173eb99319866c22ab1189a060101d1015a21d44b4608741007043a09e0253a253a3ea780fa94e894e894e89e0223a2074445e888e888e88f513c0fa88ad0874d102b4467344b9a153c4438d1015a80e88074403a807528ad403a251d1f528e888744a74442b44f8221d128e894744a3a2515a2217a235f131728bd4081880402e51d4a2b529d4a3a947529d128ea2153661bf413ea5ef8893f2f4e61e871167cc517cfa08713487ff27ff8544f461cc12bd0dc1972e1ccb972fd0fccb871ff00d54a95ff00c1ff00cf32fd2e5c3ff9a952a54d30b1235b94a7042bdc1d8d773b2aa27dc0d844aa8d3b8addf300c54500a445e28c46c440e3534c6a22fb816b512f1994a750b78803895552b1325b50210dc71991c42cd09148627006036d3a858c8272082784032e5865860b307c9281a8e5920062540a2d8655cca25440788d3da26e698698bc7535b60aa0878a8e511d5c1dca695b2e744a86333380589b70ce8089505271b2801810ab01c4a6f9268d541dce25403159e7d0270843ff0094b8c23a80de23069afc441d4b6688d5925871e97b2dc45626de810210f41ffe29e84cca950fa7a8f481c84b25473005210a4210d425c21e97e972e2fa18d3d18713e89927c2107a052e5fa5ff00f0c5b94bc4a96461c19bbd362bd084081e8c21348b307ffbb972ff00f9bf4a23b7d2f12e5e3d041045c58f943dde85c18307ff008bff00f1b97ffe172fff00b0ff0010c3570018f6c1b3cc52f89a733f086d026430a87d00911cefcc072110ecc4268473c660f1895e3112063cce5bc4bcb0635f3150d4f225438990abb861db53e509c11f74073f51a8143035b87de66357117a8d4c3f53060412aa1b5e614ef50e2266161dc51ed032c1a8333d2b50a8462981482d5dc22eb66e6a06662abde1845620bd41aea387065d9a8565658440a1b9809e4dc57060ff00f824a951110404d412c2be6e3e6946020b71336a057a540843ff00c98fa0fa09e848e50dbd019892a56210f43d6e2e18d239b1c61944672441e968b1f646dcc7ca74b896106e0fb4077e90cafcc6b0175798e3323fa9971a97e8c6309bf47044319322102bd36830830a33042328b36832e5cb25cb94e653399e4f42b13371559660e3ee7920ed8419463c20cb8e9d44d472b87945883060c197187a5fff0027a3ff00f11e875e65125ee34bdc355589667b897e2022f03e8ae008284e22ae2c8bd457512f8ccbae67be3a5cbf1a89f329a6614af42f5e627dcacc07798fd21ee9a6f1305251988c3070dc462ae375885d53883281accb9d4204456fd08b850798e5807bcd18288cba82b33897bfcc36ea5522591d858711a0dd04575021abed2d068f98178c5cc0db44bd5d268359638d32c14ca14b113706901a838815bf4592ff00fb751dc112e31792be21b4c1a9a42543cc271ffe2c7ff9a952a5476952a04a89e8c3d0971624996b98046bef15990ee23a8e11a6988c403dcadd8d4cb6c3ca5b45e6513254c85e180adca68994d9cc68c32cfa86932f548912fd048fa5c59707314b83065e669ffc2d587598d7737dc7bb1e8c572cf76348b8e6c77842cbcc3b4040b81ba80ab8c0771bbb9ee847d13441852a1d21261e2103eb708fff00c572e5c166f5163a429a44bbe6045c6231ee4c97c750aad6627da63c4366495d27b18dfa28352ad8d417318129cc40f336704a98af33cb121e770cc16c4c2ccc1b3512324c1dc470113875003a880d314409350a2f88d4821640711b39c4b4d665cb83f51c2102d23848b0c103ef1059d4ec25eae6b32f6897919d30c0bca50144c01c4e44bd162294d8f988d551017296029068b5fce6102d500e1c443563058ca6097417997f5186065c632bd14f6892db8e51255ef03d0f5f9ffe2e5cb97162c1f43ff8a952a578952a3e830c57a1e8b728b983700b9b3a8b7897af1ef003b8da38456732d0eda84888b528abd40de370d332d46652b9a22ef7eb0d7d0bc451e25c1f463f8f43e8e23f496c1cf883e818420b41d752e5cbff00e17ccc9cc7067e7e9c9e22dc73eae62fdfa3184b96ee5b32ee5ffe41ee1a41bd4a586b50c37ea5af10c3d02065fa5cb972fd2e5cb972e5cb8b163045d12f329dcbbd45a841c7a192312ad82aaaae567798d9c6bbf4cfac15e9810c4601df70b56583ab98b3a94f111ce223012bcd4219ae2640770030e7ccbdb165270c45068489a6898049d07c4a346e51d94ca1b5c382625ce910cd6e6cb6529cbb8c04c532835a898ea630201f3198ec97b03acca4e7cf89686e597c413a8a0be25809785b967b428b4ccb9dc159c12a388a5d6e2006cf32a8a21541acca629338a10a3184c8f904b4b7444c8630dc7863700c082bf317903e23995fd45a4b03330ee086e3b994f786e126f0972eaee12fd58c4f4a813843d6e0c1889bd4af70b4de1158cac18307ff00d127d9152f2f7e2346692e4a8b897b8970b0ca4a3994771ae9cc30e268461873f10caa6f298861043b9d9b8673c601e62cc783a9a4136841972e393e82dc19bf8832e2cb84148b5d4bd4185266f30810211a4ca796a2af715145f503e8c65466624b4b8e6728e272fa5bef0fa4bc7a839f40c210841f4187a1c25c1f5373f29d6aaadeb50bd30de5a9ae42eb73194938118bc34210ee080076f02a5704ae8d5ea4916610172039688dc072ad7f6c6a39d6ba68c0312b0f5d88236a7de3fdb4016c31c07ed2a45e1427a6d4fb918936c30647c136b64422b9dcff00170c39b8e195820a2ea36c09711c44c63706b02e8609c281d20a5b83a618e980262503a9c45b2165bc317a5c5f0658cdca5e0c7bc1a61219d030ca3246744c19256daf94a8bca2d75442d5003041d34cbd733b32c4a3131750c74c40f12e77106ee06b2fa806422e08e4bc43ba056e29ce20e0dc2bed2b1ac47a618999d8987b4e71281d44c9cb05aaa81679f44dfa029adc300aa6661b9831866c3519bc0fbc2cdebde60e4b0ec1732c0c12e596220a3ec8f06be63db065020d1a6203827bc2bde6026e54e1c44bd8fe210144f68f4aabe65a61181598aee01accd23d98c2cb97f70ca51a987a3f2f47e51fb463683165c59b752e2ccb83061bff00f3a952a54164389717112a999589c2c5172fbd417e25f3326753975e85c0865e6646650951848610d20cbc76c79819867d1282194089e3d16a64891ca2c70f5065cb841d436c21369c204210204a89327a38673446f5131e6244b94f9947a113ea0579f4b2ce5867095b9e081e8210610dfa5fa0c3d267117e23d20a69106e68e8e3f300abcc8788c3e236ba53aad50eb92204576c04b0ea20bed6d4d5366f3004775c83fd0218786c85235417788041332380d3da1966413467c8850e7bac0f53afdc88ca2016eeda8f799f0e2758e7f31c371f4187384f99462275b200dee231d4465063695cf735706d9d2d21dd88b85435882be62530d78964cee356f3007311582e2e86a2355b8b2a607a8d9b7104174cd8d66233ca20e5f6815a945ab36c4b0cb069994c56a14623772efbca50b831408346e2708569f33d945738458e20edc6614324a22912fa4a7515c6a282d2a57624e98f8c597bf985dc10a09589633115ad40582ade7a9440325266cc622a710c3fb99de250632f70ab1a98d17adc65b516d0f30b857e66538af118407ba6000f741c2bef00e3694f0ccc942f82737e08a06281191f6800dc277922abf6943788075078865b80c770b9e3d030862e592f11623945986a05c748c61075ea1cc207d562488256e16847e12fd58f88732cbee0b304abda7cd0e340a8c3321e97222e689cf899b9a4ca57a19a9b7a315f331ca09821f48407b44c4189a798bb9ee45716308c1a25c1fb842690810dfa061060e60e7d5f506e21d91334d415efeaf309d4225cacfa77860ea262560843d01ffc5cbc462e23988f3718d7ab967301b1c3d9f638ba3e6171f06257db3617cb0e023eb205e0557ba5c188656851bc6775f11e07c453315d984d8f1452340cadbf98cf6dc390e0ad9b21c55383b506d76608442f15e3c86403056a2e95ae170de5ec238bb8612c85b880db6acb75090508c2c9784dfbc32dc66ddc29b6393c4175059834ae251330f0a861e2597cc4388ab18e77c4d39af10b1fdcdcc662a5b6589d47e5ef1681a8acdb1ef78838f3397728bedd446d880bdc3ac153962798d5863b82f3156b9215e6126a52ef32b3a94e986063ea3854e4351696aaeea586abde2c29310e1b288abc18980c6c7b8658688d56517516f2574823197728e6aa5ff825ab8d0308e44298332950a5ee03013291d22b078555710b388d144cf9806aa391ac40a51989bf102c182f6452c8a29851760820542ab1b8429c08d8e6a077713954b19cec8f33f6207a9052c7cc20a1a841619d4440f990816a3dc81525881741e638255ce61089785d2b2ad86e2cf78345085f172dec8e242f0de70c05de6773510e18290630ea2e65c514ea5c68316355199a458f0b83cc63b3705517a98c5f433766772adc27d2d9dc6307506f73c650e7530af45c43f3081f703ea12e80af40f1086e7508fabb2551f4752b3e94fb432e65410fa4108420ea11487a03e92587297e9f531063ccc113d1973825fa04262318c183163c4d3d2fd165c5cfa0a5c58b1f288f51ac6324a8ac3d958b9e41ca7c194f460381f5058196fb44a097c0795b4c36cd28c56367659a396064ec668116981a210adeb628e4262b7b861e0489d51e58f2c1fd9e49377b326f9732aad83aeca82405ea3a80280f89e3b999b9bea168399832e6057887d202a7be1bdea702aa72a62eb333c9a615da776a00e6a1abb44bc610aec665e106edd4170dcc9c5c4bd15d9280e5f11b0b4105c54aa555a646f04bdd5b506ad79ea501a111b4b4380d40702bcca297b84d54a5af31b2af311d200ee5b4311df884f94d02655402f6cd03f29c612280b585575f284077133ac42f2c29b98cacc6dc1120d12f05d4117b8f3cc05d1290a6ea1d5de222716cab4c31cb1b8d9841366220b57305a41837b8a78479066346d72b64f860d53c75e82e616c0588cb08dd6595971112c23de601751e1799a6cb832caba9851c751ab34788945634160f12a4ce634dfe50ba02542f0944564dd36ebfeca7ccf107348ad8c7da50fe841a7da2ca55a1dee1d812870596272ee334dd904ea0eb3195e81d42317ee1a2000adcc2e3a8bb61688f10ca6a831097e8cd23e8695398d9c4f04ecf49256636885f51831660c18b8f435e612c21c4e300d452e5cb8430c2e082c982023dc703571c23d60ee60fa19fa2063d4835065c36841056e69e7d1e5165c58c30c31b318c5c789ca196218421c3d1a7a162c1d7a95c25fa5c58a32e3a8f33684671e8ce517798bb96d798fda0d454b9a7897075015e65d5cdb058cd432943889a770c8ee383b8647f30bd903d623b4c91977014e32c0b46ab04d96625847096ca0f3d4b40b96982c6366606258388dfb3da0ef6542845673882cdee54f2f69dc625e56a1d6028c22781991d90badc5ac31d7a9786f4c168ccfcc6e3a984143e630710b05a113a32821788977505054696770a035296eee3979833e61bc6e3ddca0c9343c4656699ecb802f0c0766600146a55ba8a4f24e8116e0f9dc68a250f79879b8898dc40ee0d16d7bccb8c91070ea0f78a99da6e0a5da2d2a0c780208bdb2bac0b0032246ded302f308198dea5f71be585bcc12554fbc17685f79bf2e5ae58cc4480a0d07702551381c4adcbd5ca7b1f700d1af32864e230c882a94678d4b99c408a7ea50b19c8831d97037989ca5b82eec807982d181a86e1a843d2fd12244f45ebb8c3e25773c50cc58a9e265abc4e1a965cbcb39e21f88bd06fd021862af437f30f3f41f297b9e4b0de16f40c788e52a7e108fb228e254accea1e8b2ee5fa1e8c21a998b2e0e25c52f31851630c5f983f70732e0f9f45ca4bcc1c460e1831414f2dcdb13f2f41c1ee3da51378c3194b888bea0c58b8f4d44cca9588c56e55c4dce21b25e3500be085752db860b535f33839f1304c4219e21979981e6169cbb948770cbb8e05241660af3a82ac875268eea5ad412c6163d468e098582e5fba2706e560a8d10f983940dd4a9bc47bb31be6e51c1ab9a7962ce92951bb52857302df31a7572d00dea65b5cb2de63ef4c98638c42da2297370d318941aa6687328b36d30ce05a0d3cc51c330ab0e6655d419814432d4056251ac41db330eca8b143882564ccb98ab329ab33230734846ca5452f5003f8809c1620141f52c16a8ee39f50155b9c0e25976620941897e06a280a616dc61a0ccb39288a12a234a8eca8559125ed4b077375185c47b083686a20693ccb0b43da671bfde3e65f70c8fdace0ce1e1d884b57f6ff00b100f8481112f30561bf78b98b3de0ce69f32ecd93de334d82bee421b2231b600c3981cb0b7b43e9079e25cb97ebc40c431999d49d488646e20f89a7a040fa05cd12bea7341a9a4e314d10f4a7aa308b88b349b9057050b5ce7ccdc257dc2d510c54bf52d1f0a8ab9502f8c7a832867882f4b0af4045f431dc62cb8be63060e484b8b1d4187a24199a421065c61ce0f61e83978f43b4b84316458f1065ce08a66383d1ff00e6ae39465177039bb8b97a944bcc4a7a83577966ca9866d34dee61cc6e04a1bcc0670c05150bf8448c27862510f09872ca0a99306225d4039252cea15de235f1151b899a8db7d4c7882bc4b192996aee5f1a8140ca0fea5408beee1d16807820ec5d8854c4b5b8816eb8224de2256a2ee53a7ee1471045887a49ff00298788d22d0c66244ddca21c102f31d4c8c284ee02897031d11bcf5141e2083accbc62fda0be2252c00a844e13500798ad0b8ad9211d32cd665aa242aa2412274db2869aed9a0658e9ccb65d14cd8e23a1979f1189818398d290207d44d95f11557c4dca121f342aa7f51074235d0cac4d174c700206b53a35e221c6105611941ee003de29925f1be503b058505df31666f945e09c2dccaf76263a23ef00334f78d70c650369fe6e1d6c4f3a657cc6fa691c98fdc11d8f7971219548a4e7318c40f0c4465328ae10e9aa98160848a798e18dc2a419417352a1b20610dfa03303d02544f448c3d172e0c3d0103d2a54a4a5c4bc464548403d0c908847d09189188caf4126c7ad620421e8102543d0fc7a57b7ade22c5cc52e5ee5fa732fd47a7ea318998efd5c1e84212a16334106b0c77b8862765c30c412eb1125583157c54b896298a9bc42c6c981a8837015e6397899af510c4b981128c6668751d3dc00a8a59d4c10d9699994b6e5e258f1e60cdd40029366b30580855a96375880e589a0c34d6e5e2276cb83b20b32cbc788a260a6e66bfc429e496f3056d5301bd40376dcb0f7860e11a8a302e3085172e701962e00a42e50e19f39880c08ec5972a6194cc20371a0a601a091a46defef07cc600a8578278470b582db1ac590ede62680541d9888359bea6f5041a8166c2a517aa843486e6ad4696fe25a1d7719181881693274d4e7e202d6311445588ee921a6e20629c6e1ec91653f4965683e25c2c433ce651b608b69a43198db2998353863ea6088c5ab9c6e0cbfa4c4777de5ad35e6385aafa99044684761a83bec081b673b605f03ccba033e215b5bc4a05e8167f013c5842e281675c253526e2ee3379858d0f796267ce62eee13b61262267d3995e8bd4bcb29e21f386103303d010339810d78f462cbf1e8421e84d8ea10f43d08477e8ceba972e0e20fa162fa31224a891224c9e635c50ca604a81e8095398fa7dc1837dfff000c58fcc63e89e952a1018898f1e872951224c9299571c2107d2615030409a21e78800c6a3883926d73110dcfd4d106260ea567cceeb7010c2efee5bdbd2f38122cf988e0c4cb53982a82ab8b759c41e4b99225e1c443ca7030a16c41de7c4f1d4a731c52cc873f706389e02e613018babee6026fb9bbdcacb9cca6ea2e758881cea38316e66caa8d9dc2902a948d800cc3971e20f4b12aeee176b711aad5dc34b60a05e3cc68f822798204ba8b199b15b8236e626ad58a186c9441799cef6860356c2c723534f1055bc448d91b351a5dad89a6a22d2c50834a5411a22a039881cace0ea55bc62206264732830a9c0ae030836312f0c5b0cb13a815575073bb2026eee0c77ef0e392a5aa07d9003998a7702bf7816dfdc71c11865c46b5d40777014ab8506cc6adcdbbc4c7854155322b13b0b98bcc40ad32d6e50019704406331c0d4294b11976b445df1ed286f68d828541b6d660e6e2aa5c4edf082badf999b750c5e9cc363ee5051b4b3120b97e201756a145d208d02e3bdcb88aef100e259a3ee18554c9a885e23461e8fdc20630bb8e5e25c18410310330d20a3d0f43ff00a62c19f2830632e5cb8c654a951844c91f48558e508230dc3d587a07a57a2c63e89f7097c331da16cc33ce48e988f494dc48c3f2639465ce39ef11c7d1ec863e2566531036400ee3d35307399cab51ca54e1ab8556b301e332be654bba8a306e34978428c1441ac998bd66097cc5c40fb2082730abda212adcf127471303257bca9d46c838baf30e91519711d1985dbc47408c052a56d52752c15005db8f11572fbcbde304a0a5496983f132b0806d7888d3516e38946ed94a96b7f71bae23c912b6a450c388af7876ac42418c4667ba2bf79913995abc43a0b976b64006e5174a54692f12d69b85f67de16a3a4a0db0f9d4b8a62e663c4532bccb68d4c848f26e235ad4a046a539856b9894e20b0fc44f1701a412c501e504e153696911140117b1b8d96c208a5d10caeec960750b1775cc710606af315c39965aee38d1b94e57104b8754bea3ee7bc01e48a7714e71e635520ae1ed04cefe270257a951e21068d425aacca0c11128c3294d980bd4cb43005e467519bb85dc8deea50825451c62647040baafa20b60cc99d4161a60af350f6ccaa9818a5b8fe4a251d3b986b41c04b015719c6c59cc542e707306a9a9d09d29e18a71e8cd9b947152e5d8fa8a1ca5441c1710e22eb5184c9d4bdef1319ddb805c0d40c460cb839ccbcc3d0831e6318cb832f3065cb972e5906711f4a952b3348fa4df2a72f47886bd5f433e8fa2449586101f9847b66ba96dc72a968e5097d37ede861c3cf5368c595853de0e0ee07e67e50cb88b1c5477dc7f211c35180f10aaccbd6fd36f12e3135d3106891586266c370af88ee56227466540386177e2666eae500d129548629432a5808f206134846911854a6f5376738b831accaf980c52a23982c4061b9bf88989f772e83a8c14f312b31460cc4896c596f89c2894f3b8ad2fe601ccf2593a20ef3b99ae1659607706e0d7bfa54d0892b19f32de6a67abcc1e35509b8723997b968239e627dd32d56202b485e09f222aab1ef07290d0c6ce08d4627304795d3a9bf0541717b89a862bb8e485de3132633ef31a8c3ccdb0620dd6a58b1fb8a26822c2ee612514da7d46edd4d86ee2317f712c3505e22eb1960f948b72f9bccf04174470d665ab3a8ba96eb881f100af301c998b17512f466118412df88330205f48c14c658de5ea1938b9819ab959d625851cc10ca24ad5c1a5c0178800a8d4744afa2d14b020029667de6ad7bc2ec8e0827bcb038096cc6ea1c0bffcb12080814c2bfe6397a5c20730f4160cbd4207107d2e0c18c5c62e65dfa12e5e22c18ea0c197e97ea30f40626633e7e8748fa2a24e21e952a540bffe0080d404adea2203a89ea53a809e63da27a8c72ee7e50f1f41cbd0fa3f0993c4a5ac4faa622e5bce255b71f6cf32b88d3502fda3d106dee5e202eeabda3066669888bdc00dc390b05e5b8a62606e2b8a9f314480ad6234d264db15baf8868c42ca82b70b3b60691af88696862359d40d953a0fc7a0502ea78aa60f11c8d544c15305429017e2396196b54ac1c7a5a05a2e05f4e2717c46956a298ce62128ab88392e5076c4382a61f3345b022b0848c272f716f7552e1c30609c4364cdeed858e1cf88039cb000adcb47242077140b52380c219a2e546c09437b232e8b9500c2548382164944f335450b015c414b0542974ca3aa098347c90dd751ab518230e6658bcce563c29f7885be63d08db647068b8909020e3ccc3652a0cf51b6b3896abfb4a6de7cb0aac10c902dc40a6770babe27dd84d8c5f888a22b5bae9835ef15b9a4182c18e1aa26f4545cdb5196c711a3a80c39b871831cc4bc11aa0625f541089583773622788695278942267bb31d7be28730bcc166d15bbfdc63367bc083d79789484abcc605ea54b3d162ca4c40a876e67c896dd6e26f2c7d26dd54c12e0e19ee8b50704606181dc329fe5cd26843d01f45fa9c4b8bebc43d2b1eb7eb7062c60bdc475115dc44c91fa4a81507ed2f72dd42dc43086101ef2bef004af1021150224a952b12aa3dae3847afa84101f52a30f84da0c4da5a11cca82fc441dc13ed32addc1a63839655e37095a8989a6296b7a83835981bb80d6a1bf3d416b7882df88cade622a99427b66f10b5a41550411b579252b323da1a86607a3139896d1b44b1c30431162c1177cbac41d28d4560ea06aaa2add401ef34c4c18b898819f7985a5bec458cea0abd5453ce2255c2e946668c66362ddcbb96ea1e58898b940f3353ccc4d2e518e4a8a55de62f26e0f30284d4531b8457a9c63300023003703550a176425ed32caee0f1a8615798915732409b485e6f69c6540734f683398b193136d430acdc0a373a9c45432e254118d4516d46069ccdee6c9c4545d43dd1dde21c91c778859c04c95327983665b8bc69136ad85090845a605f88e7bb82447f12e004a85b99b8f138889cd4ecee0629706aeae19207b8634ea50d4a15d4acdee2aee219cc0f2b6232fea10b4cc4d2f102e2c403c900d8445be23e29096c5bea0317b9c2bf133c583452a149749585ebe213cc477303d41a6a3db99730e23da1dee673467fae7e20c20bf1060f983d4bc4b97ed3842065c5ccda5fa0cb970f437e9cfaacbf47d2a24af4b8b3680f40e60c4c4acca207a2a04a810224a950f4e3d2a54a84654624a8ed2a54095288c60cc9e62195884364597a86903798852b1036c0030db34fe25da41c41cc3f11042c8432d5b15f1e9ce9bf3059ccb5ab825f7368aa33a96f7333986ed041a480355055da13489719e12977624a05d31f2cb1c0bdc42f301768313c6661a097961884648aaf3a992cacb50cb26626f711de22618c270446b710ee3ac6e230b0e3311be988fb42ac91065016e08aab5851c04dcea26f1a9b1516e5ac7ee5640c06811471983c6adef04f9f996bbb8678dccdb7dcc2e9e6796a0e5878fed10214a1d4bd85fb43584f328ad3323a945c19c46b30bb83c459ae2261104a71173b9495aea2132dce352e80ac42d0ee1572c166f49a95f72e9acc59e652f4dc176a411d3280307411d9ac4b5d8c47410962f1085b230ce0f4898a2a720212e600ca08511b581c05cc42cb58ba8d95310142ab88031700ac2c55831010e488351ea5c449b9cc45a333153b961e23a16ee2a9e22b51ca245d09288219530edaa0fbba8d86d829bcc0dadb1b150d270a842e07a1e8199f94fb27e52a2351bccb7c452e30b30867a80a9736f4191d4b8d2100971f4e25ce6102544fb8c58b14b85a1032fd40952a04a8c3d084af42543d0acf32aa57a24a951204a812bd4d3da193b8aea53460b87986a1a7a8b1e2726a67ac4e502f9fb85fc42e177030f0ea782dc0d3a9867ba0c9985e333886c867960f4ca713ca157312bfa43e98794d46eda730554dcc1b6a76332860220f6c19944d1142ed18ce5e1835ed18084ce20752fcc46408e50a8b30f73729340634687da5a946f284651f8956f10f78e38dc2d3572b3ca4375a8ad5cc60b2a8cc6f88097b82859b310ceae298bcc33030752eaaa645c52e5888256e7722346199b61f6982525de60950ba16a19339f31bf7aea28ca1075450ee16e0261c388358e5f13516ea29cb996a959f136c99968561c407926d05b90181a3a8d8bb8537885ab479940de67b4848890ab25ccbb9d01f13a750500d6e58338ea13af782155b2818d3564b004185d540d67ea053cb03a0963acf88cbc454c408e202f0660d8f6d78e2631d32d957114adcccc6234ae2588e25815a94c02a67f0824df30eca4a9c6a51a98f3319d72ca3c3a95d5c144258e08a1a12f0d0ee360b98c70cb02e2cc3d40f454a9a4da0609a203a886e39c590530f53947d0234849b4f2983c4fca7e1060e3c41f461035d43d491311f409131cfa10610f41e84b9c461e87a6e540f43d13d0c64968e91254a9503d12254bb13362177e63ae21b8750ba83b8f7c4158cecdc1cc6d78f794ade25ad4706b5385dc43794568ba80f39955716770b68c4c23654ad66a28019ca05c495c419cd544c0cbcc42f624ad545f13234222cb6d89bc6d894b9592628c0b286b736fe60a399a80866008cc0778f30178d2158b475306f504d6494f247b30a77b9c06505bb8814032b6ee125229d5400d57e22078ca793da051862193069953de5528311c57141e20d6598ae49708addc5b08f920db5e87de155bb8ec1b865910dd40518157798e58dc6d9e650e5cc157882bd659782a89879f896d4e7ccef0acb964d4c88e188b7799b39a0965e580bea03c5440287e2095a18a02eaa5518d4ad5ad41dbd40bd44d732b5afb8352d67baf896b7646cdc1267501067e26d08bff63ae5066142a228dd11c7103da45b0214c32c08dfa60793ea0993ee6916b364037880b1663c4acac9f681349141c4d471384c13711315cc2ee60b09168998650b4cf88a0e1829412a660e2e2c4215ea6525db2cef51a09997bf9b9adbc4567a0f42cfa0205ca86a1020cc12a24218ed3675137e87d161170d2118075ea141cc1b840b87a8fad4a8ea08e1181757077af448309508ce7d799c43d083e8fdcb83883a9771f4495b95995b8fd254a811f530169cc05788e0f711cdc4d472b35031c25adea03733f31550be772eb8978269e65665370fcc1d7507a73d411cd45bbe660d152f8dc10660df102b1b8e25b8ea153d4d06041dddc40da418d6fde296ac866c8e6a4b26e60977e38861e65af880e4a94a87302f6c36ee99839980bc3059d20d364daf98adc6e32cb077632ce04c9e65ede626aa732983a8c1598618dcaa7799c7151f97bc150072dca263519daf51c376401728ee5218c772d78d44d50dccd33528ab33106f138043440b8bd9ed0bf572cc8fa214d710ab859239e353254544ee06352eaf306d89a69b9c1ccb3ed00c2c46ac906704aed6e39402b51297a9582de8886884b3708d6ba87512d3198353068972a0b5512d48d9ac4a032206cc428f506b9b8535922730ebb992565c059f081752ae4945798103393128af68a96ee2130b50e086f19254e67241cc1c2b7015dee6c2b95d0556480b691723b4a817de33aa89b4cc8a70949b86900c4542b7343b87ff0000f475083094bf524bae6d89af47144891c7a30f4dc20f99f6418308e50ca5cbccb97060fa2448c073885254a9cc35e80ce3d18fff0004273e25e25ee5e60e65fcc22e5cea32a544c4495e8b98c7d159bd41db895830999744419b402470a82e6a09a0371a8b31143a6a040db5b8b06ea2f0d291781961cdc0ef8867897e6e351fcca65e73b8b3c450c45b873ef323355054c1299a97f70db4b52ba8adf130e6103c42acb12ec7316c2090badea295850798595641ded655addcb58523f0b6c682c8f51632a9cab789a069d4537897c20130661e425974b1b42345cb0a312c1c66665554747315db8946711872d4495f5321ac4a05e0c4278993bc40539951c270198e642a85cc261e2a52b8c112ed25c648e0563c47c63c588519832eaf106addc0bab30c2d9b554b9c0d4c95b4396678206b371d86609ca665980595b933ef728a312b058a743ee987959da468b600119147b22b5c4ad28a23591b410c07dcc992a520ea14f082aa0b197034876cc72e89e116b598647528b6b02055c30d4182e3a05d90ea690c14a9688e2e2eab1510625c284b0e77163cccd57041865c7389711b8639d4ed400bc4668a220726e1762226a58cdc07536ea5d5cee328af3281dcda0426f0c2349b485f3732425a85dcf3420ed135dc4458b06e0f418afb8fa2fdcbf407ebd06cea1065c183a832fd060cb86e32a543d41046d2bee24771f4fc4b97e847f10d461e9788b14bc43d58ca89122a31518e5f330626e3675995b2cc1c160cc882a68c46aea3d1dce1e12fa3885ca59e15b2c60579630c8a37348eb510104b4c51b99ab3623a40000f880b2b32d255b2ae609586e406fda0b21283888f0b30648fe50cbcca0744b58e588e0dc3e906e6494acc639c171bacc3ea1a1b2a119c5c30ba4ade4a4705c4cb5632c73518eee3d5fea0419c432c9884cb8ee0a602589dc4ea20b2a028c5c257ab4811c2cc7b4f9b95a8a0cee179890330b746202bcdc3234ca9aaa8ac9e20e4852f880e05b1375a61d372b69198052985724a5100d1a94675295492e0051858bdc00c831a8a24c6a58559bee0a8e080081a555750099b83100a8004a221ce639996e4133608fb4102c8d160307a622cd3045e15182183171b30a2158cee5dc998b5cc04d371b985968ccb9ce085dd102b824733858fb16416f4332235312f4a8943877028ee2aace61975b80a2c978d2a20b4598a9c4155ae26970c81019ccb8ad4a6698f058e7e885b6e0ad84b9a332dd84b3820182f9c462f1392623e84ba81508b78cc3833dc62500660e58273196d896d6dd461dc4c11252cde9d77138711b7315dcce6de65c5bb899f1130c631f536438867de0c1c7a1ea7a5c1cc1f41f5a95e81dc0d4095131e8631ff00e09cc37eb7e972e0c598a10ffe195dc489f52b712722339598858e53e3440d620ef078899ec8ba896e244b82f98b78561968131ca46aa5c13109b6d65595a612d262732210d8a207108418ae1a6e22f32ab0eaef3d4222254ca1badc58a5fa259305ebd33cea1c77175987e617f1067ccad4ba372edd4309aa8254ea270a8b6d68ee21c932e4a99f3a9a26a437ac4b054178b87910c8ce22f4acc7068220dd42d0b67b80a6db895de7da75479b016627d32a64958bcb11a04319260954a71295a2a6556a205c16d42c0a06735ca2358cb0b77047b3295e2077922b7882444267716d4ea52e53e2197882137326e0ab7129855c4446b516b266383054a0d96c1bac4af1057a836a4a077d450314c4863f098215043231a95da280c1716aaea2227316f45f88619dcb42e606063d770b598a705c5ad46cb0312d6818dbdd0431ee813aa61d79962aa2090cfcc3b826e8b99aaca0ca0cebd11d5702d1f1306a014620a7589441a9488810da37550b1f02a26106381ccc0152da94d01070ed88ad42608710134592bcd8fcc7b0851ac4c12dd3293da69a865a869d45031e8a83efd3b7a5408198421081ea7997bf4bcfa0f42107a902063d5f518fa1e84bff00e2fd5d43ff0080f4e3ff00858ea24a99b9fbc2b7407c479622227ba2685fbc32020698214002416831507796e00b00be656282140bdb1da4a08d785c1adcce93132398ab12d334639bacc25518990f31b7b4cb6dcb514c152356e2a88f15b9b1d4478c41bac47481130db2e5847e128f8819d4d5dcc3337bfa8d32b9817ef01db0c0d41f7b8168e606996baab220ab986ea53bd449cc07933b103188528950cac9402f50e155cae16c02853919d8e6160acf88ace12c111824031c6c5c3c91d0f30bd9753235f71da3839446bbea5d6a050accb6b880ec46247172b96a02634ca5799a49956bed14845cd041ac38991c5c06dcc712084c4104413bc4c71551e6373f289e724094ab6a65b35281ae61cc21016b886e22f2c51e371098e6504ee64ee0cf89df5295065dfdca5e26661979880cc0b8800b46223982622e5882704a3ccaf79817b96167dc2ab135a61a5b301a84cf306f13b207d4350730698b773625310730e27c21ad4081339d43998b504a951230886966d0879c625226220222f118e0e7d0bf5289b275c5cb7c4a810fcfa7087a887a1095021ffc0e212a043d2bd1f539f420449509cfa3eb52a0408420fa5cb9736f45e22cb9725952cab502d5b95dd54d8d63a8bed033326a5e4ee28b8ef6979d2c63487386a0d9a48963c1000adc4c73311cca397730b399970c40a717156c25194a25232bdcf8112b588a6f18831c5103660c21e539f32e563976cb4a3823840bee5ab50215dce4e210332b176470e99806a3c6a239d440f4f31758a834e6002d60304ba31040f473012e162c9e5a8eaa552de62615c40195620a7316d79843ac4b729f11098852b24bae722aa008fd23439b8583cca9508152388958dc0eef0219d10717cc0786e1543a6267b604628522235504b6aa69a54abaa616ac63b88d56e61b021695057a46aed98d19b78855e20130e222eb888066df114d56a34765c0f3b206b0409696a174c6665631381d410b0a2eb5045b28e57128bdca21cc45622ea05bf1128cc613287832425b1984b8716a39758816199ec45ab993175dc1c039ccd9ea699bd2ab54c4c25837b21eccc3704a9e3d0abf31979981b855998794aead9c360950bbc18975097830c85257aa47d060822113e232f32fcfa6c4cc87a00f110712eb9234263f3129cee53707c90a40c7a2a0420ca6d02565810254a8404af4207af1e8fe6606237e654a95089e9cfa54a950213f50712fd422f51f42e397a165e188cde20540290dd905be6278f94b70d413832d8c371d88dc540f541213311fde0126150a7c2535df3322a366983140f9811aa48c256231dd31c0ee06692861d455b8818fd623ac1146a921837002cdc586766260c188b9c4efb8ad8ba86e1557517b800ae61a6331b688019cce58855b2fa82e7152fee0e378ea0e7cc2da854102c2dc5400ee6001c44bb8d1f41699c47c65a637d430305af1395187796398c08be2f32cb60e31895520b0ed601487e25856e34ef50a38312a6aa00b3b81dd701b857b815630c4554e279133b135826fa995ce600ddb10d660977702e710a2a9c3599475965958cc4ba2825e8862cca1dcbb3169cc004e3896bc46b6e25f14890393b824adee5581cc1bba48d5c84d863db6c30dd5cb314db09ce628db0e21e99821a2e0b60cc14ba10aac7128e2f3169798207528d6e0f194f98b626cea386e0a36a8b7308542865829849cc4785b87c1159b5905772ce73046d58663716daca269613c2671a842a1eb52bd5b18f40d531ba9e5171e7d0c84cb358735cc3025422b7109accb26cb264d415c326f30470b1afa1709af0fa540810254a83040f53d0f4612a544dc61871257a2c584e233b972e2cbf465c183e8c4fb8fff000cbda7494c2ecee3c3571c6419628bda1b5a21dd5771556c1a640c6d8f9455cd98da02076ca52bb858310af1680e46620682d99244bc2a9cc0f78c1c25810fb800c5c5ab0061b34e65872532f52f5bc4e3c40a43b56e56b25917ee2abb8db9cc789cefd0b9788c30f3e62cf8973887a710df994e710e9985333975143ac4452eaa354cd4b0eec94a2cb7b9694e6500b940958f1ef037d4178966eb7012c21777a61b18e5e252dc929c5c59ce66c427fb899b835501c29881779978d445bdc4dee2d5ccf243f30c8a075021a43c0434ed1435a80d4d4ef71f6cc05798ac39898b351eccc143a83ed157e227196541127198586db216eaa0af2c00a418298ba882232f54c5b867d4a9a1cc514e107c300eecafb3de61e905cd4a11fc46531512bc430370a0652a2d32c10b806d54c85d92dcd62303244d188e84532d4e2372ce2204ca0c12d6751931b8dcb731129cc1a5ae63214c5bb161d7960900e2512aa328c4a4ae21ff00e551275c07888bc462af5023989640d54a081f502101f72b1e3d461bf10afbfa36894cc5b88cfd9e85408653742194cf37084b97e87ab0ff00e5f431e63160cb971d459ca0c21e95084254a9536f11223045f68226d89aaca0477105749e6a8d5b8a20ca06fa8645e7de58e73959b88644c4b457352db2a8b83b79f4424cb712597107483653ed10e215d9729081da58e11a22d71722501b31064c62389768d8f106f045aea57e22339cc71cc0bbb981a2d9653f528e266adcadc213c43bcf04af11172db433056aed83ee251058ea502f15029910340ccabe261dc22eb299dd92def304e89318e884053cc428544f342c53899172b182505223071b57cc12978868a8838dc64afcc02cb896c635d432b1465d54c55ee3a78951dc16d6e1624b2b1170c516ed8da5f1dcb6a3e665cc151abb886374cc1a6ee1c59650437b8a0d665c6711a28b4e026943207077178ac91d833294b82af306a42883a838862a160abb8c38b7c4cf150a0fed1c6220bdc6a2dc4138208ac54555097d91adca05711155710536a26fb24bb009335952d4cb880ed2fde212798567572be2e531dc38ea21379ea39de26e7332788fea000438b506f044c5989552cc189854a25b5060e3ff00c5f44809acc3ea227412fd412b10efd00d56e063ff00d46224485904254a891ca57a5e22ea0c271ffe0c58bd0cacc0f567086e7084a95e8a810dc095f52a54489f506311c9ba956d59982765c05e20577965a33ee8581c7cc4ac3ea0418570c8da7c11c0c09f8246d06a222f7152b104c618e3ad7b4afc20f0a8468cf8960d4a4502354f71ce7306bca08364a2f300a39408ee060a17da544fd61320bea246a126147b4a085cec980a8f08241836d578851cb1e6d78886b242c65ff2205c365332f5d9d416d34858cdca5a21af51758274b10bb86a36354a98e38836a4652d232224069ad12b7032b01658f6864335079b26cf7e61037896710165c05d1109e66462072c10c3898babcf88d89418639c72f310986260cfa6a3c18315cc32bbc401195c2533994bcc5d58456dc40d39250c1b80b7730e589d50f728a8fcc42ee059b8b1c85c3136789aa379893827710e28450bc315340115e0ed10d04418544a1776c00477acca235cc4488f981a95b7101d6b886286d8418ce39667043419c5017a8017505b200030c8e20f0c5c0e4e4f68a61a23c0416310d7bc4b8eee5ef0c0b3373239ccac0974c684ba95313028dcc823828811409b4d899094e2041fff0017d1877d4d9512540c438212a57ffaa41b820cc3d58c798ee32a04350fff0006318a63d1146658811224542020409508ce6108f1ff00c3368abde656f72be1cc65ad0c758a5e081625f0d10db373b1069371b1ee57c461fc51b610035b961a3da0261a955222b289d6a37051551025c2954c2a22d573899324652a5aa8660f157738ca8519c6e5d8970b0752b6bca20aa842d87e3086aae54e6963ab352d95dc1b46a1c919eff12acd244959b88063103b2a226bea0ae23c64ea228023086c9029c7ba56e0c41ee1b7025ef041b015154a2105e48d977b899b08287153367f312072cb7f48a3ad6667e217556d4a70afdc1e2888c997cc6cbea1db10f08b6cacc0cb9987965a8a9b3497b822853a618b89a3388e253986ee503515bc441a8c9ce2268c566bea2d26a5135297e619cbf588886a003998231885f65cb663b753c588f94b5cea678d706c83e58173989996af11d6f329e2a10eaa27665ce8c26236bc415c443413044100a3505788aac4c6ec8d5805944b724a1c43e44a3804adfa208d111dc43a9958c4cf44aa6299c6aadca5984b8fda5c23477052d32e62c7ff00a1e654095a83d0ff00e6fd2fff00c583d07ab1f4af5109f7ff00db1495942544c418654a8fa1487a0c5972e1e832e30e11c3d0c06ef9825e22542a06e62e229bb52701cc50ce208ddb2d657cccf26a59e171464ca5ad981d31ce880a5e255432c51bcc5cb5a87046c26a08f69882d9d4b946228df31c7155390030a5622412ac18e5e988392055330556237635cc64805c3e87c4f16468304324f6350157497b2fe2055fc45383ddb87d0852cb89362fda5056269b4a9c0727898731cc408392d95952129ba48bbc1f70a047a85372a4b5300352949736cc4bf7947fc86988ddd6264422c88d30683cc5ece25a199c1530b3100cb1c1e61635985dfa730f0ccb0b60384a562195a8771e853bc4a5ee1d53b88ee5a62018da0de6288f318eb330139054375abc423ccb8cd89b6bee12aeccc1bf329d547d8b23f0ca4331323244d964e02dc30b0363ec400aa8dae98b99a3cc4f26650d6a5af5719ace6667f334ccb694ba625b8f7697306a6e456830beeaa52521338a6a263da65d0cca2f10959189b9608e5d45225e20b57885f532e310c2003598dd1a9785b041e26d08cd5166e2b2fd1f67ff008b2fd12578f43708435ffe24bf4b97ff00c543ff00a33984212b739f5b25cbff00e6e5c58bff00c2d3e86d2e5cbf459717d46173065cb8a69b7e2156ad4c655c68ce1281bb2c70e6e05652c2ac4b399b64cc3ab3cc5a95ea3860dfbc53770ccc46e5c22e5b25d0330650061798c46840c8a65da30ee5f739375325e318e5cf980c8bf704151f996daa205931abe02020351c068ee38c0af1122e0b1e21735646f69619dcb0cd40a6b102301736d6602b6660b8246e7f0c2b00f88f5bbf33a4b8c7ea006cc448a94cbcd4cd64215d10cc6223162583da35647dc65f9609444a0688888456b15321180171661858e200f7829770280b80669b7d1cca139663437030751cdb96e08b5d46829658de083adcb23641711ba2b52cceee2af788412eea235153369d4cd942c6599c5b188b69fc45628fd4b958b942f07ba814cc3632ef38ea21b31964542d55177588182b3dc172cab82a09b1a20a99cf981c8fa808d39805c7cac2d7198e99940afa99326588a972cc9b60a6751c28b494b2cd0a8b46f985c41eb50d4c38f402e7b228724da3a38c4ca62fcc3c2713f302b106b151db3de555d4c8660201cfa0731a998788293d230d7ff6fa54a8f98c1835e972fd089a4208187adfff00a31332a540f465c597165c1970972e5c58b165fa5c5f7165c1970f41fb7a119b7d05a5e65c1972f102920635319c101751e199c3a9ba658599184291c0c0561b9aea67a1a4a0093002a58750e1ac4b536e21784f822211880e172a10d471b304760310e88b2859883bb1d64a22a4080a0989455aa14d6fda2c100de51128fb2a3cc150770532e2014c62599e2119a95f30703729c3302fa9636504062e620d8e5182d7f52d503e235b6b98596afe639c97e2e39289371acc382f98344e6314096883c1ee253363de12c7f52852f716cfd9143857b4657421d198958635424011ee3864c47c2553e215bc419f10671295690972ab94e5eea94de0c45186256609d4b6553dcad76771a1d841f3058f12a0148025b73543ee1ddd1282aafcc0a35046a1b9a2e1de370391301a83c08dd0035729da09b19608224b983e20383f3390a2e9bb3e22d2e6a22995cb9dfccbd8260aa815b894efcc1c202c3548970554333b371e1ccb9a1f100f0b8896608556c8415532d095710262a7005cd0256495e94ffec05f70f6cc6d6653339f12a2e5978ba8f0419a425bb8ab28bcfa20c7896c9502d467352ba26043716a1c43d6ff00faaf4608fa1a414b9a96f88c0ea5c1cc1972e0cb97ff00e8c4f5b8c673e95e86a5c18b1630b1731a7a1a7bcd23b47e75101e653b88bee61c4718a0731be5ab94678415f89ac1cc65208ba61174b7cc00d84c08f118f5138dcf8c43afdc4b54284eef68a303701381e2356eeccce2c960dc01949e22f0d2181318a5e258b0c40d3131962a00ac5be624e004539427c304e0a86985096842b76fb400563015d0873fc20145664b01b202e42614a88bc6217ab256a851dcaad132cd660ee1afea2f0a6615d101842ccd0c36f30a952cd8bf69630b3cc6ce8b2a429145061db34063a880d45c724a5a98ee8c0930445c3de17156ef53062c8b0d0bdc498a4b594844e10ece3c4e40ff00314c01f897c093cc02b4c16e761a969157e614d3730d57d4a35f5806d45794119dcbe40fbca6866016eb3e62563f396f344b6aaa8a70401abf302a8659884b1510d9158398dc7704f0ca0039803e215ca0474ea503702d9963f694989b94bf455f136598f100d2197312f03704c2184cbca0e60fb4cb0c4bcb1dc7e51471b897a54cda86c3151ac6169094b80bf1043c7a10b897550cfc4cf889ee056236cea595c6e0e9aa8ab89e0ccb2ef10fc880710232ea3ae58bc9997ec8401008420c1d4b972fff00c18c609f946733f7e9503d09b4fd40950fcc21ff00cdff00f1cfa5c597e84a952a3e8b2e2033a95adc444f71159c468f45b6a29e67be234b3c92c771045770ca64c4dcb772ddc18283062ee5cb972350d0d9f72ec949c9f48f5628866808163189bacdc6efe088600f88d602fa637e9f443595f100b26b5551cc24c58b3b8662cf30aaf0788e1435e62dda7c4b0b4816057e62c7189556351a9a5431303388782eb9883392629c1285813c435115047880f220f28209d2410c7dc31dd45b15a821a18938cc0e8a97f32cee41380a804b01f128ac351c9a96be2733730570cbe20554b74c4b8bb940cc2e943588506081562e1546234304bb84519235b8cc3ae118ab28358189caec060a32bdca9cc03a1f50b082dde2246008a17dd178628222186a99482b5f10018895305138a00c1b89e058a23514647d44e42a74271155176e00da53ab853898bd4adb0c045187118c38998f66a020dcd7c4cae27dcc59728e7507b8f9047c22af044ac90a1075ac4a025fc453a8153b88e330260013956b1e841b6b104dee6a0d44095b8963e86d35376710d4a1cea3e52da9da39f683a42b4ae216cd6211a9966bb80a94ad44628202cb80542270ebd039830610fcc183887d2184bccb972e5fab197e84b9503d0952a5408212bd3fd9ff00e6e5cb972e5cb8b162cb83065fa20841b94bbc476a48f9e20f29dee5265880dc39618ac4dd883ef2ceccdea2ef798b6e0582e5d372defe81f4b97b871b84af9f5044c3e849942b25c0abb3e6022c1751cf9788a1a38942ee88f546366a0bde0b8b304c89439b811c6bccca56a515018e9138346525859001684762be4814983896dbf847806e2c72fe21a9fa459daa3579a60386b52e6f9406f30533770c971430b7136724098670420895cceec6a6396664b188d8350d0ce6505ee0540519cca2ee6eba89376ca1ad44edb8416d546dc5d40712a5d5dc12f32f8b7233216c09860d6e311825660d4543e6222b5642be1351b851d822d69530b240c40ae254ccb1754764d1994915e1700e29827d2185e44a30c311602f3a945118f59851c988675299300e0496f07c238e350c75023821cc625a42c605008554155cc60222675e80b57865b9252c971cf32abde24acb040ff12ef7983328f7961662dbdb05b281112fa8e59ccaf686e0ea2c47d025312da2286953ca9b2ca85b9837bb88305411632c7980f171e97a952330c087da19789e1812a8830ca16183081f434861c42d51628a5c1cc1970d7a3e89184cc671e9cc3d0de3d065c5ff00e0732e5d45979978972f3eb51942c48c686e28e61e33999aef315e6636d99a85a8fef1f6c691b9bb895ba8bb2980736cda92d04a662c45a830950204154d8e2794b9c40950bf104caa7b63ee8646256bea30615f12ca16254d7cc7910ee6207e52a6629ca4eb544259552a6aa6dbccacde6e00de659a0b98142e298afb83080972d55c4208980b96a4ccf7ef42348aee35441be6a74cbc6a204c911500f889866fdaa702830156c06b2c122b500e6a5a5625c85a21d9b457fcc5532dcb5a35142306419623ccb534455ef3129205c38970a8251c6586e0e0ea24350b5010731b845cdca1809e658f8991a6320bf882996a039b80ee27989e270d41622ee252a1bb048a5b0b88e5bf68990dfc4a5e5306a26533e6163329b388c392c87c6a00e3312ae7044a37133113ca10d30c345c1d5c33ef0dd4a2ea53c7d4426e78b8f699da40711a2a04495a56a598a858c4a712a473ccb7512998f98415028c4ac44b3c462e2e5ebd053b711813c188310311ca097c4b5c3ef1312d08c1a96fb4d6eff1143d7c4f9cd7300f64ab8f433422b1398690c31b9a3d12265f429503dc0d798411f943283a83e839808a0cb832fd2a5623e624acb19ccbf4b9798bea968a6fff00863ffc5c183346619d4c499a2cc788af31f299655501e5a800e67962b865ef704ee5dcb789cb32d0f54fc4081042e773e894958f48acc62184c12a0448e5069b317bc6672fe11a0c405b77882b910ea01821abde676461e2d5969e094708400c6bb8fbad47a62e2de36c5892ca398aac1126c910d6609e60977f710bb89a0cc685240ad24198616388b18652d2b28b4532b08474c5f702bba788a1a48d5823e6f7069acc6bd6586d815867434c6ccb772b60066ed955643a4ccd6087e112ca8a39206222409da982e771c310db31177985fc44ae8819dc7b18a72d75046a2c01e6649c239d54de05e26dc441f3025134424bff00a401a60de0898a95b4891b8d6e0d19970ea65b28639672f89e40c30048002d2fa8d5f13239c4acf31af39828f7e8353f2952d713cfa363a9a6a35eb32a9a7a08da774385ee2fd92f64c42113101dccb002590f339f1009a8b97bccf2c1f24fae6707159bd4aedb95ad6a52ea8a813446143acc2fc4a798c1065e8a8ce60812a54495b9f6626208b83987967d0519a3d00422e7ba100c5c03cc0d9980a9716a2c7e91abe8629dcfc230d267cfd47d0b7b8a0fa0e3d5db1d462c5f4691c26cf49fdc6c5334d914b307a0e4f713536f117d3983101840a39668f407c43921e87a054207a81f52a04af4a951d2dd132e2a5adb25772868983336f302f2e66138a8a744059101bdd900d3e202af5046370d3385c23f702b45bef1a3810222e33f94374771b3059ed17933ad4ca06a2c7232d6629895283889e1a23961751eaaf12c7152c6b4c546a863668f98db0a88393ed10cd53e659623e9bb8b786bdcad42076c935f44174a2629ba8ca06e2d5e9326b2660b106183f318665159cc319f9ca973644adea0e0dc581b856dbf30e0a8c373c9291953e20d6e1b79d4459994770c20d60895f30ab988ad4a6a0b78a621880bfee38309b4dc035640ab11e1536f2f3e89a364306730bb859b1bb83ac934a1896eaa18d5e3d02021846ce25f1d4fca593040fa812bd083ee397a08ea611664f12c3ccab099331e9886299c1534f7e895353bd420242ea3879f475e26462386a3c6a23a88c409c463232b32981023a4328325438f57518f330888fda6403704ee1967d05821a3b82e22c291ca2fc7a36b88f3375c71de3d3539c45771a66c8dea2e6116ce65be25c16f1b84211421e972e5cb8b163162dc7f7304fb27d11b9ebd05f43e139474c4dca83a594c43ed09478841e199c9b8410e204213684e1dc188402a225465fa9326a52ea17333acc4c99a7886ee20d40e1881e4318166205e0f99882aa20bc5cb0ea50eb3310b015a80bf3043210ae365f3ed14b757045fbb314d11eb38c331696694f7228d241771bb90627288adc20edca08dcda37728886aaa5ceb7379b3c40d8600308954e88e50c0185452a02b84037729c560833a9500992e139d470aaf4c2b5a88fc1321865568b804b18712e03a3d4f26729b8f4136d90bd70ca1059e594a1327865fd1ff00e2398e4ca8d9f43f682dcc1ccbde67b607989c54c5f110ebe639621d62347bcf6a03e6221d260f303e6e1a40ee77082563519a5732ca9aee19f8f4e918ca8932957a1063b471f43c734621196e307a36147132431f1031188910945cc1e8539bd7a5c1cc18206271e8458b1e8df7d7a183cc52b0a4b67a8d81817b81c5c4565893994ea7d90cb718c30a9150375a636ba97ed9ae21e58817087ff073e8210710c8d54c4dcd0cc6dcc4461858b18be82cc7a8a5ae68cb46729b47f32a1737072b1378604204087e254364fb1e82d71040992041af46de8ea3160fdc18306255543a6cbb8194399439222b1882352d62362c8e16c1caa52b50787a04c5a898b20b52c54bda8744a2b107c999c2d5cc3aa8f8932ea590a2daa0386c96357280c666b559969d4cf88c5f097cf705f6806ea0f982c169ad4b8b10a0b80cc575e650c3a12b5e66b36dcbd6a5a2a366a62d401923556aa0632329d4047867be5d16ccf1e6236150fa4a672dc32eff00134e5894544788950bd6219546157a828ab97ea18751060cce68a8a8dda859b604588e0f7dc2e456c616e2a20ab52c3040f3018abd4a496dc739456820585517bed4a232bfc0cfd4a610c3174e60b822b97fe6184197065fa810e2136255ccfa9436436812a5ab5897953af402395fa02bd0ebd04a66bd19b33662c59c43536f412b31d46373dcfca373975058cd6e7d90ca64f116ccc7ca61dcc79b96332829f64145844772e0cb972e6d3684b9b7883060ea0c1fb831878fa107332c4afcfa2bae63bc61ca31ba306669e60c33e3368aa6d8dc523dc0aa8157dcacc09508999cc2102d7a86102a099260f42c6541a826118ea3ccd9972e5c348b11d06dbdca962e02dd412e9a4bf206358200eb3151332d8c44ea55ef0cc9f40848025186442014fa1de3087de053fb897ab21cb372fafe239b844ac91c856257408751f132a9895de60d692136a94288b43b8ba67012a0b2a648565ea6f44b538c468d6253d5415e21e106ccdce226b4543abafccb8e09c08d5f30c8b81b9c9d414c17cc35a942c2054c40892a175e254af43843ed018e98835e914dc28c25616682608509946ee62a584568987128f6993550da396bee0545476df9e92ca250b2e2dfe223fb4aa835b47e68bcf4eff51ca2c59ed88a2c22af44b5c144597925e0bb88c1c7a1084da6bea07e619101e83d40ca1f6812a3ff00cb06227a6e089c6e29f79cccfc219103e206a541e83f18ef1a91ca739ca2b8c17e20ca8ae23ee995c33ef0f40c4089123049775dc0fb9837e95e59a4f08f13021213496d5c6bce63697f52e2fd4b972ddc186a3a9715f5731dcb2674896cb08abc6658750cf72d33313f31ce61e58d19686d89f6c30831e604d4fc20c7883502a1020f41e8c7d0b0979840d47096de265aa836e2239c3ea09c35fb89ad44dca9db0cb5006594b61a983b85797303b81503b840fdc18465e60c35e8420730311c93d9220c7e51df128865921910f185b666356a79c0a8a5dc1ac2a281c5b169c3887623d22ef530ea7e106ea2f30c251ee71ea0de279c02556206ea54e18d8d4a0aadc3c4ccb75305b519f6c3a98f438c3c206a043c212cb0c78c439e6343df72b1018b865986bc4d3d0398b88d241b222fc4a655306ebdafe8ed8ca1a1de810d62147773e5134a5f9422b515f07dff00b8ada2c92bbbb73e37119941c112264f4fa88c41cc21a206254230970e60410810e204a952a04af5e2312304495f71820b301ef012b093e92bd12313ee3b4f8225608811596ea222c656208e2608c6d0fcc04219404095f312644fa21ac39421688b31cad9e2c45d2ca70ce5bf48ba60b7138f40fa951277186e1eb5e86d6cc38b8e19223158887895b9e0c45f57067152f152d1cf31f08df9c4a90778830ccf7600e236d18876971890e93243e102a1084b8b17d0fa10d430892c2675264ccbcc11f22f8982b9f13b09513750f08691da36317aac9355b014cc18b706eb884384728650f42e5fabe23bf4fc443e203882995895ed3f5e8c75398c42a2331c3d00ea527b3d0187d088542ec0593c2560e603c4b5f88e58861a84135ebf11e9a88ad43c3d19399892fd4bd6250d46291a4489aee25fa1b096ff0090b7a3484111a19104f1de1762432c43f05e9f9f78a22d5055a00dacb637ef8e3c2904155ebee38fc1bb9531d0b2bd323b04cca3118475e3ff0051b4c21453c8613f31c6b4e4037dff00a73e855e98dd3a4ce8620660812f7920cc13f29c43d086c87ab5eaff00f0c672892a5788103ea1089513d2a24480f98999d417ef1225e3106d653acc6c789a68968e4c7299d51898b057a5c6b0b7a04d212a54199978897b973705cc5bc0c3a18f54e642bbcc3e9e8089e8f319789ede840b98080265b9690c67b222f5997e08573528f138c6505cf0c47244f5b81c10d6c8268a85cd4a7454b45414f2876cc0fa950970970638462e3a8fadc0c4489304da9507352cbee6462b5528b93311c652f7aa8a56923fb24686204acc0ccce2cc582106b0f28b2f24508efd0632e2e62c72842c59830f41a111dc629f314bdc586654a9539f4b8be8308355d4184eba87ad4a4af435184dcad78f4eb369f4624a80ec256f511737b44547c311350622aea23188a345c7c2648dbcc950222bad964ee78ea5999b20326e4051d9fe1331953fe1107c02120d6e008a40ddf1089b591018b5f904282f0c0e556a21fc50a57b4c56006a3ddfd3862708090179ff00513c1e811920f5034cd3c44a87e6108420812a07a1e84efd2a31f5773f52bd0dc3d2f11f5b8c63e8b2e2c6339812bea5933788c6d2ba81b9a4607dce103d0fde0e7c4bf4e7d1b47e9e811f8472f13687ba6951f747d07c251713d019f104e88623304095f72a6d30f5015e8a8975dfa240d461b7bc62b8c44752966310fa423ecf43b47d0709a7a958f454ac44fb9cc5c4fd4a8c0f4631891226252718189bd6653a80cfb20a46c38d44d69656eebee38351778bf3085ccea0825303ea3026c4bf4e21e8fa3e8e65c5fa8820ee2a5b3dc3065f9971d466934f32bd597177e8bf420c19c20a104dc21ea43d2a040953877184fb892a25c4dc62c26f19719e113700b922bf26a444117d03e65fc4c836cf8aec6e365a8a4b2261ac6a3d866ced6b48dc0b30662cd6615814f70076caf64a02ec58bd960d83c6c27877ed05fe149196f21872633ef39927214e50dcd61e835e21e81021081043ff00ab972fd1f409c44dc4f475e831712e5dc63e8c751dfa318cb837ff00c3a9cff31ca6e4fce38c4cfa2bd2e1060c1bdc3ff8a810952a115e9528f9952a3b44dea57e2021ae206a6f292a1a4203538951dcaf5a951257f9f47089a9ec8404654a898958951257cc309bf153d915296363ccb45c3c611831ea3f887a262397a3f0984a95f7122434ee56622b24475f713ed1f8c44057a3aea30fa0a54d61f687c3d1788da3c45c3170c58e1e839830f508936238b10f3344d224771625c6308420435186fd043d0e271081ea420e3d5899891331951f41da3091a4f66667b6ff002018edee40c1ff00bfea8854cac052327529e07a6f10a5e18ee525b9e58a45e617388147531958a801c542046a928036ea0aa34d0d432f3595c336da0a85bfde5a028b5573c1f7887313205c21c57b73301167c7c4a2ac3035e4feaf1004cd1c3e120dc38972bd087e6107dce3d0f4bf783ebcf8971f477e972e2c58b2e0cbfa8b2e5d4b972fd0fa691465661062fa2964521b9518ea0cc624a952a108b5087a1e609e830ffe186a10224da1843287da04a952bebd0f5ee339f5e7d3b952bd2a54af43d2b1e951d4e2212a564f43598c63ea9125476ee69ce8e43ad8bc3288faa4a8139f55970dff00f8d44c4198b3240c0477a8bee64c274f33780b2d5c46384bdc1d41cf138f404bcc21b86a11d7a1833022a3ea21af47d4271e970d25dc352e0cb87a04168fa148fa7319552b5131e813c44d586703fdf997fef30911409e9152967b87961e00772db8fed3255a5a1c4c6fba5f12c7883a8056a3cf504815f350b2be22fb08850d40b03fb8291506007bc25054e371da8ebf81b6506141881a9cd795efff00909e15efcb70c58fbe798fce1c0a9cba7f3123bf4210dc210832f11752f32e708c5c58b2e2c5f4b8bffcdcbf462c3d1f42c5c459cb3367ab798ee3eae231623b62cbd7ff0006e10e6aa1065fa5e65e22bf797e87a5408103d087ff0017ff00d3ebfeb8c37e8c3d7f738ffeae5fab0d77e9f3e8fa3e8cbf4b8b9f459710b01c3b19ee0208dcad5f03647d3f3e8fa3af47d2bd5f4bf4632e5c7d19122ea2ce536dc4d6621a8a82f30564729a798e7e206f3394b2690a9fdcd61963242838c4bd41c4291eb1b418c389789ca32a0409599538458f30833989086a5cb8fa07a16f46deb9245c1964bf40ba973ce2a8114b140ba34e312b3cacb8dbc89c055ff31f0013aa06370ad4b2b19d45dd26d2f43ca83c35e32a8e4150884b8f89767a64b9222f2c763b86001d9e65385df7382d585b12e7230074eaebf1088411293e5a800605fcafd58de2311a5e53afef51304e61e8184b970732fd2e5cb841171631772e2c6165e3d19799b418bf717ff863923e8fe21b84a8fa3e8437145fb8888bdc607d167ccf8420fb40dc4d789bc348a5ea5ea0e60c21b8409509752ffccb97dcb972fea2fa2e0c1978964b9717d0e25fadc5972e5c58b8f3165c7997187abaf458bffc3165e65fa5c6e26410cf77fe4f085566f1fb5d7899a57a733af5631312a54a9513d162c7ed1fa4f74708bff855545dc5660f31dcbf30cbd37d6e5c65c30994b87a08a9c13a21e85c2057a9165420f415ed19fc3d0843ff008b9717d465d13f0832e2cb87a032f30dc302b407e21ba140fc9d1f62e3008dfe72f9f8c679dc5973f32b052772b24c5eb988287920c70af1d442da3cc64d8ca0037134257351d028f0ccb30622e4a85a03d318dde2375edc732e0226d50b3ee08f08373299874752b6bd92c6540c69cfc8e20dab5417e4ff0011e3aa8ede9fd112b31f107a7dba8901068b4a1f4731fcc10c7a5cb972e0fadc612e5cb8b2e3947d07d03d0b89772ea5cb83f108d197f716318cbcc18388b398abde3f6845cd232b7b9f47a30f7879e661cfa82ef10fa4b665e20c182212613ec83f73ecf434f4692e5cb97983165cb97363d17b970da0fa1a79f5397a2fd17f52f7163171732e0cb972e5c18b17d6f32e2ee5c58b2e5c5cc544bfa9180b3f0ffc879f0e9f8c4564bfb8c4a67555dd0a5ff7e854a95ffc54e6319518c6388b1c617730e6347771d63e83ee25624f788b7f88e31ce3d0c40a9faf46105c4b567536a95513c45843432112bb961bc4036c2a20dcc28dc1387d44b8254b87a71e95ff00cdfaf7e84bcce257adcb970862043c3aa7274771f70a5074ff00e04543d7ecf30458076cb2dff925c516eaf518885a15f23820b8a660002837ef00809a5e6500b38f32c94f8951293700bea14a5de21851fdc6d92977c4196308ce0c3b7cbe583b8b0e66202bcc01e17d4e817cb2a44a2281a36561ad7985ee131473e6ff00b31b8bd340e5b6042327fec088c238d1bfa535770a200044e487a13f5eb50f4b975161064f7e83d072f42cbffe5cfa5cb972e5c21a6d8ecf11c639e2386f30cbcf71772fee3f497f7163f683163945d7a1d477e99ef10830f521370f421060ea0cfa20fdc583e8608607d4fa3e81ccb83bdc62e3978865e66d1836f45cfc25c1f4b97e972e2cb97165c2367a9789a45f47e1e861f52e118c8c1f20e932881cc43025469d01eccb811cda100756e46bca398189b799cbd03d58e7ff00863e8609ca5a2af5052a540b95e85941df5023ee8f585da9603173c104b5599e0946097a896ae5669e662c116ac8f02070c2c830acc309e860a18c0d661e70ef73b232a35082cc40183118bb466e5c372fb9a032e5cbf5b9c437ff00dd43f3344b3b2e4cf179185a399fd7dbe66c25e3130d4a5e9dcb5269d6260472cc00c92c18fc1002d9efa4404a8c29f3157a9b100558bbcc40fc65b536e6352e2f77e5455c3c3dc0a291ed8092e5e22a157f1299cf11b05615f99754208be6fc4349fd4c90d1aa50f91f98c8b6a8281e494d17d9195a24dfed172ac6880503af884d228d44e18bad4084380df664c37f6409f21fda39d5a16faa2b02e7584f0ded8fc44bba891232e5c5c45948612e5c3d2fd17ea5cb97f105972e2e627772fcc58b2e5efd1c3d18ee39c5dc1f42e65c631f427ea1087a1a84350f4b87d2184329708bfb845cb62c06adc454f534829621f58487cc1960ba9c238c4d6371fa4339f94acafa69503f1181972ebd17e63043f4f41e83e87e5162fd4bccb8b88d3b9f945c4d1e8236ed17fcbe625e648f81e42660d34071feea00c522d51923ea96618c21a6a17cf30ab07e5f8085548b081ec97110570da0fb569e4892b12a32a25c63e95131ff00c02d70e25b7cc5c557997a65ac8d49a31efb8cbfa9632b36c85426a078b840b604204a9ccac4aa83113ea25d914e228f6f1184970850f401707ea5c18844810b84d11cd3989ca0e21cc01e657922e65c19a4bd41f425ce3d6a5410762435a256a742b7e40f2c0c604d3a82c6361842c97d4c5e04d83aa80653e11574eee3601df31321ac476eaa6cf3132f50995a1290710238b80f1b3e6216d8ce57fbe25f4331ab389757e0f11ace5ee1a02e7cca853d919797cdf894880cd312e7673c4493205cdc7768e22e4feff513f784198c59e8c6953cea190fc971f794a848b607c6308d9dee413ec8f4aa0723f7176a3760ca60a1706c280bc8c4b107da107ad8b8770ce874faee8dfe898f7be42f767f2f72527c0807631731da5477e6234f7043440ad3d015a2565d5c14b14ce1ca5d1312a5662aa3528ed61e215613ab51e880ca47d1f565c5972e5cbf4b87a26224a654a841e95020621a87a9b8421798c00b855694c50d3b82a708681446ad46ee63475e86374a2c777c7507307d1d41a65f8c13024b972fd2e5c20e25fa5cbb8352951b7a0cb97ffc3bf4b97ffc31d4050cf98079962539985d5ac20dc30cf507a1d30178415df1e7fe25f59489417b8150020ac4338a514a63b40c52343671290c57646ca7bf1cd4f14d7bc4e79d1f8b27e210ecb07b2f72c41111f4fdfad47d125447a18a952d1239789d3337895f7e832e3539535770b985a3b818f303d4a952bd13ee3995120872c798f8f4187e62daa3ccd1a646210955154a1378388377990b75280e6186b0c7a67e65ef102c28eec94d3897997e86e1772bd026836cd540675e03513aa81fe2a6168481b22ca59481d6859b705f22fee62210f9c158b79cf7026b43587ddcbf10697780c2034da0a14b8871b18cadfb65022b76c5b2f98acd659a344e23a6c6225cf444a7551d931d45e11b70ca04188006b04aef0a4b8051e10dd445cb2a9fd209a062260ebcf3392f252e60d93e22febd54f391a47679ec9416156a114e40f621229c7ea58d50df99c79415dc0386c13840b8035da0023843b4bd76e2b10f209bb2e0cce1be0431994bc88eb3260c692b73dfc9ed04a82c79f9e916a070ff00a67e2312419b9b6a9bf94099c43b9f93c8c11c44cb2b19d45288b4d0f78211320600e084a5f52a9e7cc055cc2f54cec13135f8803570298e1a876821988d409f4b28bb8be48e5e86aea97ef327cc142a67d05e68bdc0f70b3967be79b10b7506db621d9884aaf41d3d0404a952a19305d625ae5440de951d95712e764556f240c42a23dd3cea658fc41fe442c1371a302da2210ca62ab1f33685b1a391125e0c654fa1e8eb11c59a81501e0971be218e21eafaba8b902dd6794af5b84ebd59cfff000832ea10c212eecfb88a401db00db2f319e1c431712876da56f3a64abef27e21019576a9f1e283be86230ac32c810334ec879f00b7b17325e581168cd3b80537a3aea59632044e65be64262634269d596c63fcc0c206e8c3f34c41250cadfa32adf313b254a9536c462be2547d064f1e85a5cb99aeae5ea455a0885b530622e0fac7a123368c264ee24495b8c66c8208ea898ba934597b62fbf88e8188aae82549c62e622163bb86d1310bc135395c35410a35137984b960dee50bc4b5413380c4b8b48813f51b89d5605c96d3eb102dab005c1bf2c0b212c4e7d16a594d0220c9184fc87f7132e3cffe60902a864e31cb630c8eb0360fc9f887999a2fefb962137ced4bda1d5402a1614f31843f16544e623b0220419609298f7990a938858108c54698a52b66e2655f7808224a9b8f1c45161f12c34316d81b5666d710298ccadc0770742678b82800268f98a1c0f10aef06345687e656df6a99b84df87cf71b2200689fc4428bb478451bfbd0148574a9c9b6505af727280f621754c3de2d9172295f90a8597d99e6291d26a01b566b8a8e5962c38840a8bcb1f04389bc41552736309ccdd282bf6a89832898f73fc6005fb0fdf254a6bdc821e9332f6545adeb2e5f481f21440cc54cfb9a8e50c712be90683e84c1bc6ac3e1fc930de27b848807315a46acb1cb89961862ef71cc542c1641f70adf50e712dc4e6811046e7e2585880ae5f98919af6954c6a82c8c942bcc6ab5cc028cfbc14a9a21508832e2500b1031cf72caca60105ee58e574cc477c45d2366e10f42a042536225871054db51a0b2a4629b7a97b8c26579973e654d0df897aa5c65f88f384764c4d03d404a698452fa8585cc60ac4a56f1039dc7bf31a2d48b3fb4a624cdbca54049d1188887a7cbe1e4c5f08f7225c28a86de652b323a9ed80f8891390950aaeb64230ca4f8aa6254d77161606d653d71a2cfe619449f6ce0ea11808195651eb07b55f78804f15ea2c8fb1f2cb99ef00f74839cc315b97489c69c8e63a61eda108057a0e5d409982fc15a9a89961aac1be92bb01a82050b35d90d539c4048015cd6e1819a2e2b8864e2911e0f7a02a2b411b9b90f2fba8cc015b6220f718737e611411115c57f8891255ce6e665b88cce9c4a6a72421e480560c7997f779034b8de13e833286a317192266899e89c150ef0b9a41ed133062a396b31bcc3d0c239d12ff316a2cb9e099688832e9ba84d17103388a620ddc3d510f0c45101cc31bbc41fbccab8a5d6e5e0c6d7f30d916a13496c4c1a86a061b21dcc50e708528f38c7bcfa0519a7478b9f52801d5b29a6db22d1d450086df03886d2c479b0ee33f52f75e43fe25a5be85807bc7fe45cbfc0a8e587f36fb42a76a9e3de071b05a3823d97c0ff00bb201694af639678833462583c21eb3a22382121ab47b4441017a25202f8a9bfed1f33816252ff004254e477128b7372a93c4dc8ae5750910bea645331010af99480590d2a2a4aba9a6f4cb0d1750a0cbdcb7cf51b3e6114ab8daa96152e1a8c7fd25cd15088d463846513dc1f891a56f47f1dea07742498220d8df27516986555898059b945d4a12c1e2742496ebccb1ab54b748e911050691d992bf53fd0a46a67530c53861a754c426316f70007435298b6adee363720f028598cb5695c102ee2e645313a27116e56c1cf7046ef07bcc0b17757102596c1a8f42ef4debc2346bbe4b1012155973e664e20963616a6016368d2e772d57302b71862c31409e631058f24de69f2ca0334ee265c6606e50e62f505be621ed34b845f1b5327cca955095d40065084c3b96b39471732c46ac4cb294304bac40a312ee6c9c6a595adefd2610b5951d4d63f5062d8ca8512e2bb6146f72c9d418725c15245436dc40de25ce519359224c14ca6ae21565752dda6fe269134b96d05b401ba5ca585b864067fd1822164ff00a7fb52df62fe13db0d9b798fca391c232f983d5692e402947100483ea75515d408801c9fed46f74394c0aacdf94330311888011af3bb72da55bc92b5519dcacda6989c2c92d353d45cff0021602403de0c9c20370aff00489bf129553663c4a8a8af30a50b884a155b4635abb1ad7fb101c55f66b550469f1749bf0383152a01b9e048a0c279465a7b88ad731ca2b6a8cd109ee20d61468db8f32814acaabdd0366721462fb8da04126143c05d3dc04caa01166f5292fddb07f69ec4c516be210e1c7f903cfd418842a2823b18ad9763f492e2e983244bee3a69d0be49c3f94540a8e10355fe22c47a8a078b7578f988360583e1d4132197c3f9870436a58ea0b60600a796b99614ed9657c4b82d715d3e5c7e66cef28be286046c798ac8332a57a035360800d7cb8868d9739cb4c8f6c03684ff00e2e5ee55226fccd88a2b8940d44b779858b1a366e3b0843a30cd19074e134832c096bc40bd44a5a6320d9f7feb98188356104e6fc1068f0e57241f0e93de5867238f88652d28ad7c4468fbee4051ae84980f4eb14ea1dd41babd772f85048c732d9c5f3018d4bcbc250335621f53362f91d801b17e499740d0ca420638df51b25ed64d82664b1ab555bf3fe206783640be4babcc08221a0e6e154dee1000e209999b8f72b5f32e02ff0089c57dc72d99a2d8256662032304ac866e0aa96e3e65b582fb253a7353295e0c069fbba21636b96faaad90f114c96172bff12a1bd8f10344a540b41f0872575c423b2ecf9f945c0a1c964c73f9a8aacaf028506708ad5470c268f071032aa96408bea5b5c1037a142dc9aff6a317f1ff00aff48718fb0dc00919cc5ef102e65c32a59a0c7981dd5b2e10cde7ed0eecf2bee34061b65e3dd641df89809acc2b67b7a65c4629b909c0671c663102b496b01616aaae2627501b8c128344dcaad4186a9c53fd99a619ae665a6614c198ec635625ae05b595e09756b32a01332c1c83371a78a6cd3dc89a31191e06bccddfa216ef08ce93689218ae1e055a9899952bd020aafb8a39a86884dd12829b27040481c201fa8e804e41708680ee55c08566f30b53372cb86a1d5468cd4240d748c5ba9f99953b8a9c46b96ea37823d2f100e485b0170c26c710590eb506a7625244d6f286894f39d44099791c98ab933078f311514a7f046e6ad4dc00284e205b256263c459422e18e688723a60da0a25c560d8246b6788440a6f74cbb0877120dcb948b7c8eb8d51a6ce25a02b71b8a32e35121a0398ea3bf661a6158ba46f8819cee04aa38277ff00c0a0b817ac12d41a3c1899a494c53088374c820db36bcc184fc3dc00c0ae2ae1a99b770cb2f643106ce7a940080cdd950e81a15cb3dd076d8002cf03082b4746511358e485527d01786be52fe292af9bca16b7d936f9ff00905565903b814685809781a5931cf30157b37ae18c7890bc73076c93215e32830ee128543d255682bc13507e609720c1838f9816aff55c6cc8a572c7701e4a7e0040df7a19a3c32872a40b41cc2df51f5d5442532ca23fe330c32bee30946f66d9918479dc1c29e7bdf7e1fc45cf267f4205ff0094c07af8b11a1e13ca373ad701f3d7cca212e92c60752b5897bc44aee38b14ad450999b1a2e04954f71aff00ec6bcd4c0540067f3101ff0062f64fa3eb990d7fc98b9763ddae37a76d118a4bea818b8d511b8f1111f031efe654449f3cc20566c7f09530fda3cc4b1e2396d798a6553c98891c8b2e42fda6437c37129d07b2cbab96a659a7b0f110efcc6ecb0e526352aa0fb42484471718a0d0afca000b5b371cb82b8732a70e7378ac4779264ca446cbda72447311ab274d2063c8c5f9801b41a18e92584dbb97ec576f70522d438e0c18e8457607550a8a46ed8b8ecb1e3f5424709ec3a1c44f8a0454fb3d996ac07ff432121d53516c6667cb06930ce084209fc14479fe200b7397babdfe689b846cc8afcfef10ceb82b0ff17b46850812a1cdd913728712f76f1952db66b286fca58d7b019a63c72399ccdd5463c146390a7aea3e2a9dc2af4dea5705616c1c6b39da230072801b652da8402f918b20b2ac9d23368b2540eb0127f0c174fa8acd3a1bf179273eb08178f3cc2341cf08ca5aea140bdb0a540a61cc5407304798a39a8fc1ea998721c798d919f87a46ab712b37131e83e91e26e9a89571f2d4b26604c0c173f742005bdc0ad38201848b4ee50d9282ef112686ddd405319f7979471dcb5bfb8aedc42d311b2dcc81d3013b6e3cef51d9588d9b829a698fe7d2bd03ea019ba801071288aabb8620c1ed9dc2a05f720588d82c99980856b0221574ca09156f0b98aeddf51a42e0df6980f742da8c0428ad17dcb0318965571ed305507bc028d53dc468af5fa96aa6c34752b0aed3939264e7c221163d90b705f2c053e319b8d6bae3c46ee6c5588a1000e446d0d4752f6b2f660cbb22623bd431ef1724a44dce66a2970c40d03280e61073141a0dda00b857410218af04acd5c8800e9eb31c21636c129b5ab3a82d1a31d58366b102542d392151838858aa8ca01347775c7a245084a32ce7941c1d26e8bfa5f4e6358b2af26194a833fc404391566d05766072235d38c62252e4d4aa7ab80caa0ceb04e62e948ba9a73a1700c4979b77d9e20b2f92e3d02e819236c76bbf3840e763aea5500ad288a71c3e610001ec79f4d440057a0ec460b2ad7b462b0b6fcca30e627f55141497692d6eef19e656dd5b33e71242150eb90c291536230ead96d973f29c4f68876e0a1bfb420f469dc77181caa38310d0ac2c35899c7410d5d8604057b1d597252f776fd442f0b019b72378966db4c40f6863954df472911c3ad4e7596bff00612d7ba1caf8298a1aaf79c7f5eddba79198500e8fb4363a461e447ab962cc310b6cfb97f1aeee3d90c47751c67e83fc462e0b642e9f2cca4268356768202b3fa8a1a3a85703b37c709b2e0c360699629d4d68eced19b94074a43179c8095c5f9f1828a3b95c1d4b4994972abc4a29429ed1e693308e6c3a996199a83b8948c06b8866543b8c092a5a7c18d4d5f70ec23ed025b820db703da0db868d9e220524d84bd5cb1e6de47c4683f81e7f6bdf30e0c731a181c0a830cf98d5d28bd5c9d45a806f05105e0119a6167a7fd77361d2818bc52aa12fc504cc900aa1aabcc0072e425c848157416c5c5e41a0f09cb923fd77de3f7125a02e5ff7e2122d19dc8e256f3254da20a02c2d5b982d775d47050658c95db1532dc8bccc3911830c081571af7952adc0a8c0cf0fd46d5b4743e600a23a7502211e5ba57f2ee2d55720c582759847d723c9e26a735505ba7716a6e02fca59669ea7e11637881e678975f532483e97f3383998bc404690c4d981706312b7e86a58d442dd88a0c36c998121293688b93ea56d9cc5529d7105f98ad9068d388fb59dca156d4c9e7cc685e60770606e5043cb312b0fa025f965cde22c94af332609e25e5bb80035e8824a5f518c87cc10db88499b706a1c4a8e904dfa40d598731718915db6ecf861868be66185c6adb16528a28a9a6ae34d5452b7a6007c4b5eefc41814a8056c2788963b1ccaceb71287504acd1fccc465bee3b00bde608338ad544f973e6255650eb3bf24b1073ca355e22e2ef1163a8b2e6a0edcf50b65d5c4af78e099284008af26a28cd2b13712f2e945b0ea73be2613d0ee0f9822342b7d6263eded9df067d91ef0abdf88ca7c410d6c330150ba31ff00236976e86172f4fc439bb734b309c114176e99dfdee63d895751ba8977058c8732e1504f94639b88ca2c0e71a0da1413e6f31dfa7e51481823795552f990901aee0aa610af912ce001316039969c4622f7dc02c1cd446578b4b2320d729569ee43e610324d47485329b6b84c1389514d2cad706831bf64ad2c3e62e02aa02968f151b8e198a345f897ba82e007b4ed3bc9bb80f5911e299e127b1f60ca32eea192b4b2fbc4a3df640966a07a15fb401bd4c76f7b959c363b8e71ab70bc56e042da85f24dff00d9995f9215b7f861251bb19e2b7f9b811813c4a49cc7931eb620cacf16eece73a84aa06f42f7dfd4a908f081af7c46aa0d5c21e5597aa52852f79dc2296e41cff12c6d58710f3750705ebdbb8bb57656df32d89bfad8bacffae0b55e3f7420b4d01f87f7001b334955c03cd14f13be0acc639fa895dab97b979c0a2ce25f2f9c225056ab73446a1ec30dca19b1092013285a788822bcba84a2089858858f11db9947bcc2ac2a6e16c99a99f01721d7f8218d87d827f98845e829f2f07fb72d0680abe7fd72e750c61ff56371c2fe8107f318637937feded04e6026879984310150010dd564c330431982156b110e7a8d47abb6afe1862394b5f331f788a225b0c1a3a4ec5ff52aaacd3f28820db396144e29a877c80f9b8862ec4a2221ad749ff7ea6dd52c175bdb0cdae190074c58e0693208f0bc4258d1593104e7c00207e4cefc4285db96a23b6bf44c8ba2e0c01be52cb291ea30ad141484f06cfb665ef8b50fd5e1986e079e6c20919832498160a1a5f826bfe439076e1681e09df833067ed721ca96f3d01ddf82141c9d271bcea25c6d8405de21818b1185af99b833c994015b96f2c43db88d6779680478bf6b243545b22ded17a7296bd970c8e63106f24ee0a069b89f11d5aa0804161c12f3a833655c52b753c6ceeb114dd1a9ad5a21b90cc99520c9314b55e44d6b802da542c328b4bdcbcf89cc3d1d9343a9d7ea2c1e2e5d7b4fd4583a89282d44390ea08356c10d888f4b1764baa43dc32fb88d9499b288f58c0aa07808d5ce637bdcc8ff0011893b18f782ec886d9e092a97b9dcf89566264c7b4ba753072bdc556fea09b54bc3d3a8f25eb51c26bb4350b72a84282f2351f6946e038f88ca0b92e202853a988ec37513cc666397104198646c331d62fb20c3e856c8d17921266ac5e13487b10e8a348415552a37b6344a25789b8a3b9671342578b8a091a81f01afa274a46ae06857ca1f108c5a4b81dff8cf04150a663056cc23f10240160ec9b4cc6b3c42ed334f31622d635072d7d41c19ac50b14c6aa453d465549f30b518c79c416cdad9923d677e6045b014a3dc770ec8830d66c2be1c43443ba282b897c6d2217dbe862536b7b8b5e60aed286f5131d0c0529c1cc42b3c47067dc9b1b01059b2f50345e496bfc22341077dc021c7074894f0331ea6a6d446d4557995907e679800c9adb7c4c78e82cd78adfee64b144f2eeb08ba26d95b17775fc4efb2a0d3fefb9443425d93b8eb0d4a0c215245cad3b9440d99230022f18f7cc305bb398ee7065e4190edabf85c8f7bf30a8507c8fbc09f8603f98e3290333e2d204e7220c184982fe4772cdaed57782572716645ff007c4ca524ee3a0c2c5786116811434455345f7c30077ab7b944b1c344630c062d68e97432ae66b7f503bd4420a7952818678710286c4509c11c10aa3f89b2aea3c198dc68d38ebfc432d81d1f68cff1081614ad47e523814dadbfcc4fbf6973c188d93020656b218b84a88b91817080340986441c330c0682ce03446b847a7712aab3b86449c83b79992747b927112b90d9eccb88c84aa30629521fe1b8842dbe198858a5599174eae61e1e448d0527910c1ea52be5ff00b7151a6acd1849c58794d9e4fca2214501aaff007b4601a3552a314dea63006cc24b75ca3a4a2ce1c900003677106611e2bff62030118b3b217cca16b0ea11f0869a44916282d020315a8e0195aacb54afed7e263bc9797250ff00542207be0dff004892d5bfd151c88d8e499731ca368e5f931dfe09c3a54fad6e770c2d4e6045c7314bbffa8a749393e530f84f83e615540354be1c4b63350fa468b406b30bf4068f7e5e21428f19fa46b2fb3a8a9415a50f1700b63c3e9fa3ff0020feded080baa60af4c4e9f52c5dca21ba8884d388f1e21337515629b9ba8b94339469344ae5af52853af30a4a032cae5cc58326bb97b821b18b8be636ce61848b4ccdf152e7dc1cf88baea2cb2d515f88a86e69ea515fdc2d44dd5b26067332877c440647231a9072b4bcd1f52f66b3b80dbd798aa52be604aee5e61e237c313f71b1b86958a85aae7096d788643c4ccdcaaba3110c6ee0348ee9ea2f5b8b36fdcc9e49c9799d266cc025984c33863c8cca2d7dc4d65c44e185155280b673140b548a8ba7b92d6de6394f0600ca6a56d8d3d6330036856b18876309a8f1eccca90af87cd4bf3f0e63e03e2dca20d83a22bb76b3116982f2c446a186e31064334ee5ca0dc0c133ce67db539c5d9f5fee98d48a056f6f12f1bf3ff4411d2304b2b3f89c8f95ce1360f98b499f115aee14402e4fa976ae265930cb050cd92b93c19759947537c5c3daa3dae8d35addbd57e2211918454488876e47c1fee22450a494dbb8bb4a846d1045f0b3e21729f7a0aa9c46a91cdc535561b730d83301007940062ea603c4b2e4cc36b99858512e9982c255d47c380cd464980d5c7ed06ba549405a80b1ba68e0f9f3090bb83406817b264acd4543015e108adadb04c8dca051c67c42420bb2c51417ca58d0b292a8e38422996e2072caee5ddb16be70f6a2589190c9c63117694bbad52b85a5bc20bacef1a988c4325788c60e47b4e3255973615b0fb18b551e547f620a510ac757dc025fe422501b384be767336e0d907784f212c0346c5f17af37113467807cc4b8286c6e51b1b6778ebf82893088f106c68bfeab2fdcd2de102f8cdc435d0856f76d3e77146dc05841c51d15bb850b71fb841becae5042e6e538dbaa4496f2e26142301bfe2341df63ea260db7fe0fe63598acc48c12cd6272cddec5f98f1b1790b9a6a54c23c52041c91930e6214f0293ff006229e57f73f0892730abc2eb4cbc20c1888ba2e9fdff009544cdc02de92657a99bff001fcc2326187a2651e7989902cb104745798d476ea380ed5ef2e55765c266c1462046adddc5b676834a95aa8150b4255bb55646059da50d3c995824b0555d40959f04af8cc0cd31db3f3080073bbbba941080287ee3cc721ba6a034250ca56cc16fb8a001a08d72c2890ac2cc3ec7f513a877f3daff007987f0948c93cbfd518e7e8f3ce0dfdce60ba409d1c41066dd22a603dd54da3a3c13c8c51cf63afcc10b33d9833c3d4132dc8be4ebc88717dd079794f0cd27d466f9c4a12f8ee0d9a2674ca5f41439af447097e7442055fbc7ae878c4fbce8b0d33da5d1b4b333f3043da0e215c9315e27ea0b1e2341adc3776dc5350952a305ef0cb458b99766d6e6b8df9892269dc5cf642c84aea240895320ce91e0d4a1b7b9d8448912ccc70f134f1068269d31c0aaf7808b7517158f454ee66f3530712d58ccd839997b04a878f31df128562a096b88d6f300b9b0d0f7842ee154d7d4f710c12d7372a92dcf894abc4c2e6004450311f6428e223f26e534299b185e45e30110d75384388bce2d97604dc1c501ba83bdca355abca522786a02ec28c71d4b191621da975db2c5ff0087cc1405596c730639cad57fa9c77047fe434d68925295d3701115b8ab50d366483f80cad8af3f83c460f840c080b2da0fca310e51d3f33af7ab4c4e05d8c4a1344dd54f788722a1ab83b81986c5018966c8802f3051339214b400a6b087888557e0aacc06e3f8f15c071ef294798a315aa7e5f739ce72e3a8034eb867d54d709646fb0888d45f2fe08baa1836edef2cf25c1512525a104c9bc6ac66ac9a312f3a00659a1272da54a5a6c45c002fe202306bda010700d40c30f082b5476ceefabb3b5b8f31f1e14fbfef128650623f98fe602812b8f30cac9fa4710ac757100acee574e84aa59250a1cbf10a6d5fb4372d6965cf8d7dbde63b02c8da3505970075bdc2ca169d312a342370ee030d0b3945a70a1bb972c21d0c2339cf135ce48231a306b78f7d350902151683255852bf139fb71dd4903d2b57ef1d62a68da090385c4a86355400556c5c6cd40e2541c0c4a0dac0003a9aa2e4862efc2c4215d1a0ddae47e1454026ff00aeabe52d430e33a10613c22ab156f83a0f346a56c002b20fd4f8f132d28ae37551acae814a356415ea372a6d850f4152c9a492bf21d4e28ae47885866c76772a0ce056531033cd708c503006bde0e3b244c41c2417c0395f89413601af661a108bccf8b440109d874945dfc53dbccc040608395f11c99bc10819dba86714a96474ddff0031a70c1524078391cc66c239cc2001637d4a6095dca6b188ceac718cc19aa1e48825171680ea5a46224801f647a2d2f5455f98029a962b77ed1cc10968cb15e72ebde142d29714b3f4413851282cb1e1d46ac1f9099765ff00310d8569ec9da19a8dc0bb34f047f517d4b3109638d01d3fedc6f01b932b00a3012b64ae6b5094a1a1eee789317b654936b363e1947c44e22a6388e798a7faa549d9a71c7fbf5021e1fe63ccfa80d38b3ee2a140b3f98439b2680ebfcb84c6c505073f2ff710c5f4bbf2ba827c8e6a26719acc5d1f008a8cb984702f32ba189c8854bcb1bc299819e20a2df2990861515a1926e770db7b86fb8393a9910dcb2f88ab6b444057f7e90b2a266020e18599e239b8dc6b074082eb4106dccbd4bc44bdea52bcd4a5f027e2175e666f8b8e269d4ed50859227757ce2153ab3848582223848c285033d25acd6f2cc2d54fe90b821ec30847810e998222a9ce44a16331d6c9ac16bce3a8d345c145f13233c4bb43f739b49784787e62f234f8818bbf88b1b0147c90a5c3322230879543e13dacbc08c410f454a8622bdcc5741e51fe4628bd3003267cd4454a2b01dca4e451ae045e75e31bf8e39c00bfc174e26644d507e32fcc62da5c68457e082b8309513dff00bf0cfe7a0b53ff0008b00a61b8316f9d2f39eff117b4e0f6b897ce74ad7b67f52a5303143896b010973eca9cc468e89dbf503487c39b8005026ae09c0194badce49df0f24a1fbd10a1fb094198239fe97e62575e0d5f48fd104e65b520951741ef63128861b2986ed606a1db6a1ee009d256678ee022f94ae018d292d9c1865a9029cc685ce60147994046ea069c1c546c0d18584de156eefcbb8e5019ca2dc1c7b90e2f1902aff10fccfe263807c55f8f795da1617580ad24b5c558013a1c7e5f51a3c08ab1df15059979dfc47e188166a60c33ec818a7330b02aaf3ed2f285f64b572ba037dc036e14b44c54f1cfb25c6d5de56f6dcb349be251d2cff3881a6c215f949454cd5259cf80b7da6ccdc395050df5363716193c402bb36b9f1131700883e44d5c3407bd3231a850816dfb4211963788574016461b62a53c8d32b12b6b30bba01b7cc262dbdcbf7220362f777e25e342f382f7d1f10d0c0db03f132782e2796c957a0aa6ff001e672a95b579e6311dae150e61414cfdc5c5b897232009362077e6508faa03f807f5509a26c508e08b013dd8a28dc2991e454c8d3f98d44a897b543170ce12dd29923e3a992ccab21d952e08fce17fe38a9f1d0cbd91c7503b852f17883c5ea62aa9a49519cf30d36d6fb2298143b210cb478df9947f34e8388fc91a6a0b50767319433ca00acb50796a81fa25b53352fcf790f102960eddca32acfa82454e69f73ff6134d1007e63f98a6503b17e4c4277f212975af1076e7dfb99133440000abb88bcb0c18cac40e99c5df98e8b3d9151aaea20fcc884762b9c9ab5328adaada5ad61fe0fe896300f12fdc6ed22bbbc3284232ef03964401482a34074ca272d3f925ab75957b73848c9d61f973fe6bf01c32d830d6c84b6a15375a8f7765467e20d00220d9febf3108dfc38e653ff28cfbd40b73c6847f30d750a6c2eaff00be89617362a03cb3955d91b57c69776f7b6e170e455a64a3cbd12aaad4b002f2caf88583ff0099dc2d7d82601cc322dc420288c2d4372937571e0694d5cadf0122a6d7c8ca6dc47057f88399c4a06a22df4c2c33a851b6652d8b01a6e01094e3a96941ed37ec44194bec4dc06ea3563f78033dc0dc12ac1d39944535ca1e00a671b81163849414266b981f90d415644e2e6213ce286f3b5ccab4a6355e10155aeef884c7b8aa02cd5bdbea1bc32856385150908a8e18b8a82e5aa75e83f71da43ede6241ae112d586d97a0a0f88a4b907894342f7e7cc6f38bc4c2b5ba82384f94006bfd45293df08ec10beb31faa72de6548c0d5cb985f48b2c24d4cb10aef3e85269e7dc99c8e1154be189745a9f0c0b6558ff002a5c5c991c9832d5b435ef4e7ee01bf349a9f47079cee5b86b829880008e750bf1bda7309fecd4a50d5c65ae1a3404137c8bfd51af72dc3141cb4579416268e07896a067b39803658c4cfd23f2da01b8c0128137d69116f36038554b96f3897d5cc1a114bb711675803a402a38e5925a8e189782c61820e15e522ac38a66f1305d7d8899148f07b8897f02039b8859d75001a543ad67c4d874f72ad8156e91bc3aaa380c7ee548818340f10e658b266e000dafa40292535e0812fb6b40cab8a195472d45d46240f33847d2d8c5bab57c16cf10aa9fa1f7c719d90c92a2f3a8155eec1f15efe22d8c77b043fc6e213b02d8bc34254c0297b3c87f486cd642578f7e58817833e22c0cb019972c6ab163e6570fe4103b878750db0211ba206d15acbb9bd1d8189b03cef1c96d112ec61c4a0030799a4614806eaaf6439cbcb2917ca200c659e481858c2df5ca2e5ee12f9f781ea6214f46b7ef238870ba349fd4bc3dff00991f333c3d5e21ec886fdc1d6e159b6e563515b875ad7730d1ec7242027b1f99874ca19a1a96233706a16a5b3f040043b3a98f23ed13062c0c1e2ae54305e2002d51ea28acad6615fd9a995c7929dcb55a2c1e119e7e1117547605fef436fd97b6470515a6a36e881b5a3ac56596761630c454600b52a005a81ecf311526b81646485ee1d381ce5b8d8e678810750e8871eca0294e7de23117f91319106ece08bcc9a85ba656cf0c6d1182cbcc52cd0df114682ce5b897a7d1041b2e56211e68493ec2505b7b1d41a50da7272ab6f0c0513134820b10934961ef04e2ebe2e11c51d88aae00a5d5bb7ed0baabdac05c26ca93a94a9f2cfd63ee595bc2d1e21502fe655032e20166ed589448b9de3dff00ccb303b829423cc468f99ed0dd018c02fa3f0654d30b567cf4cb16b2648fe52c76b63ed4b26882934bc2710ef86ca882f7744e9ed0c2c708602dd0fe50babd7413631ab66855a6e1400343abe22d79390b57f3062bfda15b6b718f0c2111a772d655be1837b6bc219782798383e115b60747c4523f5802cf61826dfcc6c6688d6b39a2d6db0c1a22886e68f504bf12c52597e66b88a9cee1ca0e0c93718d1efd4b23b658977d16230a3c51d437de20a41d3707b4aeeaa5d886552db6868628de0f128839364bc8f0f32b6839ed0625ed5a408dbe825303e48a2a95e26605a579650b45c45b4288a2c70b197ee3f617a857ad757339b4d440c35367f13a0b3cc56842be22d5d13e2508c541ea2bbee036a0f318aaa35e4c74565c3880af167171e271d73301d5bf31c52be5a654adf0238ff905079897a9c1cc7a4068ee12605b8f41b09806044bf58b5aeddc5380025e6884e438807a1d7921094dff00d12d29c19231ab03e0462d76c793fe5ceaab007d7ec73ef28343787f29826260578cff0088cfd92b6036ea556742f0f3342e84746046332c6b11cf4cc97f08ce073fa467e656fb2627cc4c4e619ac1fa0d47b010c0ed58100d129e457a2316b280fa8ffd9469f4ba80ff001572cafc897c948b656538e88a8b8dccd369f2ea250cb04f6bc30a38a9f2996603aea1c929702ed33041f223a9eaf1865e0876216438620f506c137752ca512d95ae7a1161ab9b27425623174ac777005d152cd9115fcf88623480c87a7da3899375777e22220563f4971d966528b02ff9896fc89900c39c41c90c4a777e60f1228a1eec35558682d3ff00907705a3bcbc87966fbfa88028af897cc3d4c68b8635c4ba952d49c297b59c4de6926ae3c3efd96c66f072d4262c7cdee200b677b8a10569191dc05136c0d06c6b8995dec951629ee29a51913896149e59da853ed32304427ba0a2342156623f691f008ab526fefef30ea52541c1790dcc2613dc8ab9854188960f3cfe92a4e0f129b64ea2c5b77da51504d0311c4e0642c0016d6397c454473f9f4d7e52f28f650f89485363e50cc60332cac712593be06b88f009e20c346f0cc34ca0c3b20c00e9640cef696b31c79f12f260331afd6e417fb4b0154b62f68c0b1650e10c04b508eef1e9f947b50db378ea7a8a172c2a8e391874e2b32c165b19942507f84a814641a8a31e0bc77ecc4705f68975a38a87840426a30ea724607a948926905b5f52b5ab5f3063b06e3604f68461e6ad9410aaf1f28312066338c2920c942d53c90553f3896f212bd5361cc72f8ba274e60b3fb5341ce53361942f1c70b8409c8230b423a8b2fdbd6e106664788e7432544b1523fa8e35b654294a58b0028081fe73285d6ebb72462be50770bd83dc25ada898302c567fb3ccc63091b7c7fb4bd9d0e3d92abb5475e4880548e207e4c67de5921b95874732d4abb9271ed2bb7ba269fb8edb40bf3e32efe1f49d9feb8a2d283e223b8276bdc840300078941addeaf898965dd26b03630a486ab01c5f4cd65ba7ee001e38a0e70f52e8d6496ae150d338788b4b73302e81d31c47ca542f378c441780fc5c2237f92a20a786b6300041c5f719acfd40e1b8063c0dcac219445f2c01a0a8b875286d6cb1769902ec95571d40a42ee675b899002e21558e0f7c4557371a1a4f885597d4694c15c12d39c43c22e0d13b20c0b4e6a0330b3988b54a950b93c637973817c9011dfbc51e6bda1829fb989dc2155dc440c45ada8a95fa8a3b46dc4b9bb436d372cd9fc4b59ba89a0adf534dc112d87b23a80366fde652b4d4b22873074708b96da636d3103e83942b139304b2481527c34aa4708d66ee60ba1edc18d96593a971abcb1b8980c64060b04e2ba7e883327c397c329f62f046ed0b4b948c5c85abde63c06c04efdff3317995fe19e1c448ee0437edf8967186b6bda5ab130207451f05be62e0676183fdf994c2d6290b863e0fa6272eed62f61f9b3e22018bd82df5f982569e000dfee3d4bece62667b8bfcc4ac8f75093357dc01d06798c2beca846752da1974b1a8549583de602f4f302b2d3016a2626479b8c5632f438a8e41c3a74832bfa58a2baf943ee162ba750a96f7b4e1fe2a3ff81eaf88c0c05585cb0c50af726bcc06a65c1932c68015620006808056d543ba370c852c36e51406e672c11a2552c174c2182ff30b28c2164c0a4f7e21f7f591bb578fda055791cd7502e659367f9fccc783980a812bf50d1aa611ec713941b4b64860b364f110010c54dc1068899a1809884a4279c471144017bbee2468815610ce63f0d39942e36b825251298f88b894334b9ed08b17517dc6e0f318b59ca886e2a14c2ad55215182ec7582b9e1e66c06607d7f831a972bec81e27a9c4b279ab788ae154c00376b12ec833fc96a0e82b51fb78ff00c42d792f392aa4af1096f4e55e25c54f276c5a74dd5252c2b4f01ddff88074f5fb2845308d66d92371bc1160e3a3b8ef5905ca16836bb943438585d4ff00e7af35f700d02ef3a82b62e1c41c3894502d35546de8d7e5170dc136226d4d7997fbc4c4b853380c78d1cb82453c88ad4b6e0a6030f280da04b29e63146787c309af0661314b71e0e93983627ec1dfbc34a8b68e6590e350d04f65801e4c31a64a80772d06ecb51212200e467e212df020145d39966fbf53229ad5a5aa5ecf31218197c2aafed4dfe93026b78a5fe3c4bdb59b8360b347bc0235567a81ff00388a2f00fcc35c193184f7c9c903e1301c248e7b883a0dd4b1b0cc69f1360a83265baaaaff003e25ddab862ca93b216882b5f2416c07cef2735fc44ff270e98dd6f51bf0e3f8824d581a231d88302fea2bdd0e9ed329b68767cc216eae883f13308d4743118701d038ff00d09541a5fb46baa47d471606f4dee3d615a0c25814b7281ba49470dd688ac4b28860ebb840d1fb97069137b8bd40096d72c0345f99d84cdc41e9da863396e106d632dcf911e7c4692df98a9f7957b7e6663fb840c6e6cce6181328cd33501a8fe933a4425dddd6a03ed511683942a00576d4acbb1d4bad040a8ad40c5c9092180e2735585615d6ae5ea53e235381e8882643da373f1862d1c4d50810653de5cd3fb8d288187eca670f765b2951158dc1aa230505cb1c96cc8098d0c6080392a7c924e262116121f3cd06595c1ce2252f961e2a3e589cdea7290a8c031896e50e13c44a7938e20f4c752d90307310d841e61b0ea2a6516ec7a398afa0fb2f09f684cd76597387fd99920e8587cc6bc8307ea0b22e58ea181096f8c0bf78acd58dd53c49497de8e2020302db60c67549205e2a7599813f0c2d34a36176d84e6979f40c3f884d8f116c120782fccb089930994c03d447c4afd426b4dac5d91a4cfa50c45c0c3db0858d6f2d4c6353662e011c088a644c916df057e498ef57cb4e2aa6bd6629935c62ab7593170bfea98fc085aaca3797316e2cf2c7bc531d2372c4e48d28144cb00174f32f81918f101ea3d750ddde96f64c281c0bcb016da9c40cb09d6201990d5a08b5933fb840614d856978134689499770c0c9b2e14ff31c224955d65dca9a57867cc681c92906f823a676ef88bb02ab9ad4613e0cb8105b4bba8b9baf11a3c384b12e209543a2e02ceaf4151bc388d9655bcb11320ef702c6ded185b9440257c1ee2c0b66b7dcb2899ab8cadc442a9c134ab33ae7f28d9b3071b212e2f1686354a5cbca51ccd6e0044b98b21fba58c4d3801e618439e67ec45b7c5afe3fd8877e33da25006cc1e98fbc32d2dc1cc58d0394f27590b49c9a810e935ffb0a9ac92fe48402a3656a0026182645646bc4a83c600f741b1545f308b674dea30a0b0c27cc130bc15e7de517fa31bb1506d1f042676d9da55e1aa5af27fbf7001ae6548bc353005d74f11a106056a52abcb963b2cdd5f31b00b234cc31c405c67961054d8d733298a1f996a8d016dbf102f2cab6ac93762a58f27fa228c97847c748a2cd821713e5141af7b7d82577cb133155d1cccaf08baccb05013f4858d898f11548a38ee15099f06342eff708206a89b026100b919feabda500b3985641150b751b5a639abc7ba3d812fc18fbdcbacff7d460d00b1c55505e10b280ce62160b36ca9ba04a30f88b24c67054a2e02b081e15e6228ddc84ec00376f842e1b8d5272e25327f70a9c4573a814da2a9c885056866e289a73a5904017aa5810e08af4ea6548becf12d497c845951782e6c367bdc5531728aee68dee64727981412d8148a88f05de108210a54600372da2c3f1196869c4328d06a781cb12c45e5ed0fc21a5e480085ba9f875101d4d0b82bf44dd40af79c1dcc175b622d905e44bd829e7980daa2c750b073283a855786d64ba0950590c4c0d4d33021a9b29479d11e04440b6b980c5e604390453df18855a78cee58ac0772d7ac401b3c92a0be45c2b29a940071ab98222eb683b97873ed04cd38ea791a8960d4155f0c0510a182ca814c661ab1c20e96b949ca058d8969cd0585c162e3a8e7cc3aa8528729dc106ed0d8caa3b4dc1b62287212b0ba9adc15cabe2e3665e6535842e4a55cfcc2f502b1d470c2ae2da82c32a86919c37c87d95fb4a2c47650de106bcff00389ba52fda05697b84f3cf6f13db872540eb2c86a05c0bf899394ea0174bfdd42c1ecaa06284bac20e29ead20a583ab453ece10e271020f06ab2b8a8a4797eacc973b403f70014498a3cb1e598d8230b9b2de58680d30e00a30a009e736d253ab7f8002e59086b1b77926622427fd4c1753b283eed4442b602a988b6350b2db6eebfa3f509438b52c05a48b070dd97e258053a152c1700c46c10aaf530c00aa05e95fe61236cb7573da67dccb61e1739aa9a3b8d4dc6c64c712af950a18d130b86015db8f68caf0a3e460a1716c74f9dcaa146c9168a187962f1d111d1980d744daa880b8fca1f88185c7b45895edd9da15505af11211981e6627a174ea5da9457f2ab8d0b88758496c57571d7c45dd9846e05f234cc0788ee109c788942b070f8de910341c92a06136d83b3b9959a8e48f3de25e3131cefdb72ac89f44161d36fddff00547e307c1096dcb40dca0dc139e26203cf94ab22f538246c99cd328835c8af93e087d4643773ededc4e948981cff008a9a8706efc4b0827b259830d273048a3d86e7048b5d84a37722c829bbcf73fe2d34e2a91c734d7504e8e514da1c411b1667da37860f8265796d9f645437b82a1c4b1796a109b3da02dd68061583511adfb260c4841735046d88772cf21e624ead9cd0296d91cb09cc07ca069f10dfb4010b160c84b90d54af2d02aded8a50522db324c9a1238d51af6970bd891143d9000d0f926036712ca37a30ee52b2345c1cc6f4720a23cd78b5fe9fda5c8474bf256fdcc448dacb724c65b51601c3599c079a7460b64708b63df88baaab25e3fb8658be0cf044ab96b930745f704ac6cc6220945b7d44b44f3048c52bc01734bb82629cc4212804a1c1996b65298066385cd4f91830299a04cbaea5e917e5c3152d948b7fc7cd46a3a6dfb372d9c4aa171716ee37d622e0e189a57c25c6c6194f48e1d506e202f70ac4c660315d5e7cc181b5e6e335200d917f84405b373c22890509dfde5157a2f68d456598596d6e686b115ea3a7115b00d401f233c41a0cf6c7a296c1142a37016bcc1723b8db807cee3736a85c2df646ce20395ee646d7729598a1a274015046e375ec425be91402e5873a80ab22b20881ac7110d51176aca38451825519a0f0b5bd1f3b88ef05dc6d4015c442101cdc292a02698869712a5616fde0646c00b23b4110f690304b110198204131e9d44a313fa3412f302d0622b5f3088e1059e533c078856b29ce045070d7e12b5988260cc65006dfb8140119965d1391187f8593b5da6c190ab7f104f7b24775ca1211b0d9eb1107016a5f328b2999807c066580eaae0a21b8560ddbbf4a8120205a32fa9ac4d161140f798e5012d806e09c4dce231254639c24cd5a801f9482363c902e5bcc245fba167c66fbc7881916902f63f204226058d87d0473dc46e669e1640ca95c703055a9ee3fdccb921d984fea10f2b404f1132dd988d55d806a1619a0db70a1994197a9903e088a5f31c2c18280a33c4b73d475705bda45b161230a5a11001b039818c648502c81b8278450ca629cc364d514783b971c3c3ad54a81e4a9e60b5986fa8e9b7100942a075f65645764721a85ed2e4c62098df12b5391f981a2f2c765b562a03a36092003da435c14c3de5a1b46e09235f884d1ccc263c43045108adbd4a95b851058a3f4995836d72c6d50ce9c4074e7180a600aa393b399424e2de9ccc14b3e6426e43dc56cd750c063b8325f29351a47e9ed2a8ed628dfb52e8c0834f10b3a07513282bda0c0a943d2025170026d63cc29daab5e258320e0e882d3a382010512b4220c36b3e63e7aeddcd82c7cca1b4e2080598424457512df637116c484b258662d11d502883f8255d6cc0dee59a2d6c3e6f9fc4bc8574ae9ea0403f38b5b81b55f31447469b70c79e9c422c72f7069653d91af6747500950dd4da25aaa58ec213f8886a0bcfb403634e18154d1a98045ddcbaa936aa2238b6ed5f5b9b6876e1077a529251aa6f903fdf98d35a218cb3268bc8ebfafc44ac5b8600caef476875513b11688660d965a8284606e1c2384ac32efdbb946aa725e0ea112b3d85f767e637b5f39f0650c1aacc2022fbe0055a8c0018f89c8162eb328041efa8b6916bc627b834809b32150e61b0e5031e9886050474971873b235869b884b6b9fcb40797de3652d9dc30d638b86d585134551159dabee564bb855231b144136bbf2e2345b773882811d0dc1a8d308cc1194cbac454416e2d5c73087439a660805c6502a01591d102396123eaa9486be51aaac6543506dbf340c54f744016903c4284174a5f3037787bce4e1c4014d78203b06b716fbfe82651c084545fcc2ae2ab99e1106cc402b51cb18e6e594b5c7500d8fbca8b47b912f07c4ca7cea8d2ba3150caa89e26e71037e05c5927629ccc6293847280116b896be4384af179989fbe82872375f5313ea288468b2e23aed978c9986e16ee4b3848dd954788e0f989c81af334a8733666c415d87298204a9eea2526325fe2295156ee217715f7d8421e2a59563cb9998b31fa420eb52dd939180286d9cc6fece219f84b308eaf51ec17d110559c0771096100303b12ced0210d722f50da554122c5011399ac2d2fd6a546712d3da349484568b9a786406f86043270ea7e90d2c8ff00d2825e1004448a92e6c3f34587727f90a80e0d4efcb2fc32a86613ab1c7fb3977c5f963a96cde388e53f0c7cde7ee44445d9bf6c479c78d334e277025402ade7d28fc923b78f4dbd052638bb5c1481b943458116ac36cbcb96aaefde51b42b65db05ae755117c728ff00772c82fa55031f088c25e41089c213dc16320381e8e72dabe68d3c6ee674d181ee38a93746e006f30dbe21897b1805cd519331a30620c8be1b8cb11ff54d247e84b43e00304058bedac1f1055a72ae6fcc2af84025d370006c60370eb772a7838a9b982794a21414c9f11e2d08c786674288020b3a00204ed18142c8a16b6b942b546fb95b5d20fa1796ff00e13342eea281fc21130d270441133acc47547a880b6af134b5e06200bb416c2e95c32a0e57caa2f3af32c755712ce600a808655a87146da4759ddc632fa27b5c7be628bf812aeb3a7da58b0d165727ba2379a6b1ac9fedc28ee50191738882a975172d58a9813282864c30bee535880c239887e65e424b64fecfe26b272d8ca9e91dacf70bcacd388f82fea078e783955056c5639c461c8322082043cd9c7da29105b732a03945307a9521635022f2952137daff009e25cde80f900c5ae5ae61e4a36cbfa3f889c6af6948781d4660631a5c0852cda7a7a6ce77f738a172055d55ca5ae062342bdc4b68f98085afb440640c6666296a508be4f6804db436753c59420449780d9f9b25e1aa765e48b014f10345d205c323cc296b89fa423658a0291d12a2842ccf52a5c46e56d202d50864b0d24b8102c0c59dc0330163427710ab8875a8f3151873d4b0a2367a9600d833d4ac77df8b8c112b293f220865317e654489bed06354aca12ca7aee67df2a43cf892524e4f981f2b7188b051967b1cc7c0b94289ee94847da1b153cc294c6f7006d88282e1b968adc4804c6b305bbc9342c2101401550f115a750bb5c4f00605b4e2781332e70c32ff00f239d4c46eb411e50e5591c54197a48af28450a6a38a39940839b8d1b09b50c3752b05c10955366e3c770d5c6c0e63629a9710b7b6ae560947191c7a0e18c1ccc8c7123d725a82310b01b7e2033036cfc553a606bf29608b10aab0b4cc61a61f9220936e1836aae59405c5f137c07b30142fb9708296c52958dbf0cc3a039730ac034b7b806abde081c90ab701dc125d432f30f407047d2a2463ea5835011a0910e2bc0e20195218525f746453a039f9655be307d7674bdcadad4c320bab866cfa8a0f788057dcaddd5c60679f781853bbc473ae686e89f74e654dca001cf3102d85c15389422d1dc0a23301bb98d8595a76cf00efa812a2e9c4ed2194a2020a0c8d470ab131543c44741561fea16e7f2663dc350d205b2d4773123e0973403ba9402945c41019826f840cbe62480f2cc395ac3c42d3588d5b16cb387b7b4bb9ac6195f12edb0b873356da60e7fef2016fa93774034677066faf5bf4e7defe25b5708621e56d800a5520b80bda3530d247652db9c12dea2f4a672bb78817ff00240ca504b514c4ec5784050eeed5c454413a2368335dcb074328583d77fefdcca18f55fd183cb5e4800a090a380e2250d60825a6210b4ce31c41a2ebde64272eb88da1e1139474e269723de081535c0a0c98dae32b084e0166444041b24b5f7733e9c47e4899b4a1a8809c279eea6a321809cc3cce5f1d929481b139858b94554400e0802764cf308a36067f29281d1ab8ad92bcc5b8bd909e471470164770c71e5350b02070f99843dda6592c7090e598656c3da236655fce77068ad854fb8c39e0db197016436c1ab265d339600950a11ff9fe7dc548ab19379ecf68c115519a53f5fa82200b38069f5f7289069c6e50cee1af91a4500a22ee55a36d4b6791cc381cead1ba57f71a6af3a802b42279b974d3889045143584205187552e83cb3118b08933cc4dd91169ccbc5550685c2c1210528a39b33dc6c704ea0dcc91d977990d18aae223f2284b57d3f21ed2e047ed3a841004597bf1dc4d9ed42a4ee16af1c469c0b2d00e5141bc79984086185e7c457bb142f025f3240697c8cd000cdbc4e3c15205505789be60129246d773949cf08551508b27c183809c2af720e7cc6bae7a8156b10d072952864544556fa9880b1330a6ba9c05399416c4a327034dd1c21e3b82e2ce932c37807bf6f04be43ba3335425eb2806c2f70730b3b664a788db1f799a826009a2687885bd0708848bf28167a0ae6cd6271db87a4c1e5654434164c1f30881c2f2f105a0e3c1947054ad16f51546eecbe20585853cf5304b07e651506dfc1341cb4c28205f988f4359e22032f7c2b42acb8aeb306660e59ccb9e031846c92cc511017064a5f62825199c69940a81bb638a87ccb16b2f5e99e580bbb2fde08c37b99564a65d56c2ab1b94f8817e20da60c6e707512e547ed12a72ee7c885b39c454388f9afdf31869ca5afc24abc7fb2fe2169cc16a9cfbc43690b6c8b2f5b9b8372d2db41a69a62d6c7b3984730b9880ae30989813476f545c1308485f49ed57096bc81fcc19003446aed6cc9ed353a0508490a315ca56806cbd4a629a660c6079043a36252b8330d5ba8d666a655987b7393c4e442f37569f666507f90d7fd1b98ae6316bc713176fec35735f0ca46c668bec09dff3109cd87da350361dc00a50a8ed8bce5be02642cd798a2b0379d4190d72b657f04748041999989e3ad2ba7b3c4b204a0d79f10cbcc5d05ed7341e08d37820a584405731f0876096ae62fe22f0b2e0b882595691029e29afc4dc3deacf108edf418aaa2c64cad416478624e2428545ff0088994e330f8958a2050ae1d870dd40c432675ed2c29b1cb04842f0cc6c03911e1eed59ee200e5cc08d7d0974500bc1cff133d84fe116e193a5323972ee91a11bccb9a99390bb1105519047e286ed0cfc4b00d681fe030c3add4ef7ff00654c1d80fec9a3036b49a062ce7fc1e7c4ce501a4582f2c455a7b4c05c7363c41abdd5be6203824f025090a0b22b1380c300c56e6c0fb8299c398cd71c11b87783d90aa38db350e5c97cb72dca58cc202cff0052bf588ef7927cf5ff00a2307a6145bc15cf97bc45c49a21a52d29b25b885aee98d1534ac1036d0663ae7a420ba02fc250161fc4241a96df32f16aa622716a6102ab3b4ad62f43d7883984751e91cbc3a9802fea5dabc412a8768137ddce605ee1407d42341eb19c5dbc40258b42d5b20e8ff2a223ac61d543519e6fdfe880c76cdfb31ace5641986a2c64bf9992cd445c62a20527926c402a6eb7c983aa45a1969fcce4751ad2af1113d984c97d6215ab862290b1b10500abde35943a6000fcb94a7c0c6085301f12d05f6352800c3cc449c77089a7e60cc9b8c13c8c188812085585788cb09dc650584803345525541faddabc47911012f2f6fdc0b95c80f73cc1edf1f31abaaf13207f20800c835e237ab830bb606298d68684f12e5abea13725f761ea2ac05b16f5f0a6c440990cfca22b48f88ef75c7f32a87307588c99af89764ab2b4472d7c4d3cc2b1ed9355284a6cfe62e5957697c4737020c16188da0bc1b481772a039804eafbcd0f0224093b324aa94e002e5730958b7fbe658d0366cb8367702c18543df70e4a78c886ddae06d7ee8eac07d467097ab1b8158bbadca0c7ee0af7f68218af9824d5e7fec6c14e3b888e5c4c8169e1006da3c997041fa83948fb429d31fa407b8e794bc42e31531b53da1d425ee051fc1fcc0d00d9305fb61b16336f116dc4c0f6ccd23a9bc170268216ba85ecb88ee8305838846da02688b326307f12b061c137e914fdc3b6a01666a30ce1bd46428f709b103753843d105e47b87300553ccbdc4752a565ea00edcf6c419b2c3bee30d1a20d2b7069c4748ea654981168951380a96e54b3dc96509c98314945fd772a1ae2b15c5619c91553306094ad40256d080d7d48542cb5f7ee82c8c1af33258776c4bf52bf9291a05580b03a666c49059b388303ef189d6a6a6842edf1046c62e2d8e4948b973e4817388f695d465ae6028578a4671066fa945a7079ae2994e89f0dda4bc505bf783899cc2002b2c510673c17dae660bd8ea15718f32a4217e63ca1c2154b13c311856169d4e3b435ccb8e07085d23e52da963b8c556f099641f01dc680ac8d077e5f94b050034732ac48398ce1b2b3370c15086c818be65cdc5c02025ce1127af69446b48c3f2657f1462fc89641a940cabf9fc4e4bb54b13fa48c0306e31a78245b85e26c10c076260f30855dad311ccf494488f08370ec711ba2783d3017a8026d06d00a40ee263dbf885019e182b0fed4bd9e7c12aeb69c4b661fe0ca9ee51a229b9765119eadbc404f066871ef1a22aea610ea082ab8915007c17a21b7e463ebb405e55d91300e684510385758b8d4077ce6e09be6bb7ccbaa27857ed2849eec42eb3a81444017a856bbcc0a6f3ed1d166a2943a4e5940d2e0a22d9b83477f7c42d63603fd51dc2823a399969164ca364bceb98e18331a97a972252eb998d3cca4d1392347881cdd32ac8140b82c93c40d5cd4f31bbb852f28c6170b311bbf79cba1a85574914e6102f6ea384fd4073e2151e07e21d755c71310b61dcb0792625351d0a2c9874f353da4c850457d48f17c4406678198f65fe65105b887196bf718955ee43c3ff21189694c01e19b97f98d9f9a19c09f0816ee386313ab6e936c899835360969574d241260b9ea2ec460530f31202043cf114d9726c8295e3f0259c151bf44b161da4de355194ac46380c1c6202417018546b80f32f7e2cbd4b282468d8e3fddccaa08415fe398459f78c7e26709e51a2feda2e2ea0c2a3414014f894a11c6efed0b761a3fdc79400ffd2cc4675668c10dff00c1f88d588d944806c4e45a3575df1e614dfcc716e7ea626c2aa0c27a8a85facfe20d435765f5061ded157d382c8d79a4dc19a59e9e22d0c1fb4e7fb8f74b0008aec72e205050f5703408b56e778cf132c152af792053220181259eef1063508d3efccbc609acfe05ac70cfb2362d3fb0c4e0864256e575e95f50085960336cc802944e63042605bb8c00da993731c4b70ac2c84e58298645ad3dc6241d947b8cb302d74801499f21304d35b56e3de23d6bbc908c4362b1e63e42954f52803239cc36831dc57c619c88e229854afc85d4bd6c21fb82c5d4a61cb132820c6a4e1af6e6bebf995814563b6513b8952cce0c877fe5c5bc27007518b1e2712f561ddc53da49cc00451c17fa8ac668e1d7e7f7121c0005333a0de4cdc024a03dcaac39190f66204daca1282c6b99494cb014f312942b2ec4bb0f05bc30fdb0877a866ae1e52460b252112184baf0fe3da538f142666d682b94f6304e206250d20a6e603962b1960eaca6a5a5ec65b49df25ca9465d711903758d63300b274f30dda80ba385e1d44385c3b9ab20cf0bf1029b568cab9123d0b20e9d21622d9f92302c35af50104bcd3d4b7cb083c373d8f482c377067fd9828e19128288019b4cf06ca32c2d43c4e03887a3b810161bf33ef8086fa4b8e2260be94db1e992dc7bb75cc651dc2066da10c0bd5f3ea324c9da16168d971a0c2c5cb0960e3989c69b01c74bf3e25529744877850051990bbd1ab2bbbf7940101007d92c1c623c608875199a33a8d68bc04c6057ee09506b0ebc09d6e1f981f10c2ab4b61c681307690e1d465f3c44cb4964549c6af11c912b87f07f73128770e995188cd73501adf84381418cf729a3d854b1d1e20808b28312eae1881742e351e9992f9e96c3fe45d2665e0fdca514f10e03b97659c90b5618d2f188a52d810f30c04d28950b8dfc4d119f699e5a8d4304469896e2c6177f897e16145c204584550a02dfb8856d76851b2a2d0c3cc0342db138af8800d2bc0c0436556a6462727066646c97078d88ea8c5206145e9e8188002e4931e0b825c19a8efa47c90d538b359c6ae5676e7714b5591686833964b40a8c6c0ad96574b0f32a44ab2662aa50bf43128b62de6114b5e19681acea50acabd46202b31596f962d8aef1a8cc6169a6e00057de39c5ae0ee2ced76978b8ade7710561606158390fca56700b8a028033764eb44a90b619eb98683dca3c854b2bd78fc2c36fccc68e1ff4a6695c2b2c0605e53f89ce734ba67ea572914a92e35fbb2a108353d8f1844e91dbff00030b845ff3de50f794331d6b5fa801c298ba3cb1af7bf885659d53a866ad1c652faaa7299febfe458ea58078c66be398995fb8d0ff007b426954636be5fe631d63e05fe2622f92a0800fca59196d595fd47e09646afabda3a5445cb43a88d092d67700e35365fd461a6bb2282a9ef14c2bcf89a073e8cb6f7167b2c9d263b3a5636fb0f686d78b2085d45ccd7388467135506f6cc0b3c412c461c6e5da8fc88e2277433294ad387a8422e85c0b8422f85e2b8134e80b957d10b17674d42281679dc1281eef9991e541e5806f59e23680341d11429012807e58802e11e7a98b4525401e6040b84a036280acfc235ceae218124151bb8f4cb1e152cb5e0752f40a8c8f2fbcdf45f658bbb539ea2b9f0224389966f608261bb45e3d988c3b92a3fa24c4c587f7400d84018a49cec432fdee3d71fe373f99fcc9467ed0015cb164ea0eb46db20bbdea8f81397bca9502f72f425b15a5705dec9f30fbb94401be45accb04a0a676526911795b8c2001cf612ed2edc35ab3dcac545ee2082d0dc5587cd88143de1156a57e4cab10e4dd3008744cdaff002d4f0cf9a92049984ae5044c4df0c4d42542ff00a26bcb8086aa3c3a2520661b752908c97988ad2df8866029950240bc7700016b1282b7c425af24486f69d710f45786e0c2539d9960405a534d4bce2a1a5d953285d4b7bbca0b4d9212c12e566ad85c479a1e6dd4358455b2a87cd3e52bb11a3b95be0040022c838b9e584197e906b8a3365bc220e56974efbfee3da2d1ed1aec4014d667fe081beef10052f500d9a3c5fc2270840785c7f3b8d9ded2503f1ef17dbf8367ee3cee54b542f7e612034eee0f659c1a8c4c0859e10af12fd85b95649b295ef19782f27fd9a042d4d92a84c8e710db564c95c042f7cb2ba69954ab5ef2f5fb09511759b0fd335792b99c190f27882d2d41d5e88a73a88fe20658b2257d3ab8d0af1193f99989744b88e25831a62516c6bdd1ed163fc46c48c51d22f0250ba0c5b15dc454bb2ae195a330d5c239339996589a834a2ba984ade42d07fb518a3b7860c0111b5b0051376ebf79825039ad73c663f70305c8a16f276be5284801428bc9a86f0648a18bbee6d353010f52d83d174cbea5142c085d5c689be3408364b07461ab2672a3de7333152ba17ed7f99548aa59f9dba3cb3198391b1ca7f3446c7cfe24abf309d03741f9b8dc1f0c7e0d4b4545b7cf02e15064bed35b9c00f8853150b2841b4af2b851816a87faa0027bfd210f1a94000ac93d42da9eacceb455737770703e0cc7ea17e122d3e52f8619560802885c40d242cbb73a4332c608a31e3398055bde6363300b487b4cc3b96179a8ec4f986a710ab5bec8148136d12c77d84ddc46498abf830b27c4a01ac5a30c500f73189ee009cc01da7c21cc1cab4a611c79a3aab071ef340ece3198d8ca263303f98d8a03782a206d5777a7e2561abb22d09df71aa4411945d770a4cc7f1570e0bff671b3cb4a67a07d07f4cc4fe0184a46e0b157bcc457b823da3c67516551a19b9d8726b232835b8798a56bf3ac16b08d618020c902635503d4b95057ef1f446498c0381c5f70b1955922923dd8cbac3046014dafa998ddc63047de68cba079228098430242730c75b80323da5a11db11d1dfa296536786046b2d719f38817316dc2ae845b940016db1346c97442bedaaee76e9d462b8870c297195e23225374cc2e83d8c64abb403648010b000b94a2d163383b96b683b2ff8f694e18c2d7927d1d3359434b800bb308522847130af617c021a0cce22de519d9e50f05d9865294f3321d46a8163706bde225a57ae1a719b84345e1d25ea0bc2e85ade777148a3e8cb82e016ee0e1b66e57712f2e546330fca2d341ff7c46a503f83f1708b352a8bc9461a08d1c0f102e0bb8082c552e0871e13c7d62142628830bfdc3387511d99cd4a40a8914f610100144588b07b8d09509065d11caeb40a69e042e37651e02e0c56a6d181bb97059a23a1eea73100069e59c3062cbe2114e1dc4876230a717506dcc76e94550b6510bc3fb315d51723d9ee0f1fa417855c48a681f98d1681347f84defe7fc608c8a1b447d8417c07e4454c4d1ef11125264e20ebb2cf0278961642e02c1ab80d6ccb510149b41bfa8b7e71e2c415a034652e5dd61c1842d04e2a2502bc6209b400adbe6580f2c4c921a5608b11ec109556f708ac95e4ea640357de3788cf13051169991ed0010ac4b0035162dccd1d4b22e618d6a064b6469cb11731c875004da129669496e08d92c1ed6601b7e58a54c859899c6a5e5171305d4014ff004848a62a7b0652a71ce4b77fee62600d15ed9aa4053839017cb791c4ce42ad9159de151b1b98dcab2ed615a9f99e884ab4aa5b6a166d52e8069078827899458775fe205b4e6bfa8c768e9a9d3f3036df3120bf49f188bc5cb1e25680afc88c66d8904603f7c42902f39dc55e13142ff1048b4d1a2306b61b4c342f5a5c34b435fc488d84aec7eb706303774878a965666441009572861cb6dfee57dbaf665bb77fba89aebea7e798525530b03ef312b746a8aa8d1544a4d6bc4438bca34d54222f1b6bb8da1f35128d41f7190da446c25ecdc12d0d075400d482c026ccdbe2338547a2627a4b96fbb1ecc7bc529e8739dee8849462cb82315f9239695f925a791772d82ec2624080885f1b2013878a771f820cc54edb90620a85f9145ca818dc20055ed84b0d426b7206407a9572d4b85001b4accb2a1d7a21e26bb9b6e26b199cc10237237009433014b00ea8368c99f7881694fb456c9bea01686d3a217b4c5514dab3074cacb3188179255bea58bf7129b51fdc0855c1fd2510bb5ccaa447bc3945cb141dfde2c152ae0c2671029ff1406d4ec47bd17da8f4600bc130487d0864ed83c2765ab60dbca255dd0b2fa8911ce67b439b72b341039954c4e42acff9c46c3780d9dcb21ff542342f965ccc78f908c4169f96145a1b850129dc1b127bccc29a82d4117ee3eeaf79080de18d82a3b9c2fd31092c1aee0ca0fc4a13f808d45403ff0047bce2e3587cdca3a445390ff9fa834e694fd7fb4e400069f12e85592ab148cc1550469507773cc7e1514d1c4cb1763c254ab5db2f59edf288bb2179897602709138768805f8ff006653f07c281a90a2f94a154b60276c6f44bd11340587f98e6e5b98b423160ed507a216ba274e25c59c663922d5ae2dbbd45b4f04466f42af490005757082f86597a6d446470681112362f3d4d8291352c9607e62507fd0254783960206c59e618b3a75895d28e72aaec1c670595f6ff90d4532278821c7b140473c37b678744b8a522adae2041cb45e628a5660b007a500c4bda99737001238b8db9f8896c7d2854c2e557530273105bc8f32fd710a0274ea590603a52e9e5028dc66d5c7c7e62b01e2cb5fef319545b3a5f30c08c4045f70cb28b04bd14a88a0e8377f085a902b6b0176bbb1a60b6d188bd12ca986a56d831a87730d42cce260115f11c8ec614d8cd43c04c861557b95beaa182d625e12d9a5ee27235c5430ce496bba9962a3a6064628df83cc3d3cb052d6135d7f398e1e4a3ae57cfe9156afcbb6594cb141076d0a0e2c9fee6147b7702ae455f53f23d6e405bb63060f09b88abf045c36fb44163916a07e2efa941ae745b206c0ac18df999b08f36a65783b23226e846d07ca8e820cc2820bbab2ec651507030b67bc57ba687d865d17b2001bc9e218543882ad3b4ccc912bcd4054b5791f98b90f0470aae81f2453251e40895d01e97dfedfb9530f8f13ef2024a8258a63b79a88a8610e9293798476a72960d886166e1dd1c7d4e45977ce668c54357e2a5599a72efb8bcaac8d52e417728340b05b70e14b4a85595b0387bc6bf6fcc335008767646e90b56a9d4259484ecea22b9923e244a793a801520bdb98c14fb01e3fddc4bd2b0985bcd8c54cd02d5500ae357ca244d2ad9800f4d4c15474cfc4c6084ff7e62294d4321021dc4ca83f6b514b096da36c21cd8dc19afd8b2884af50a5aa97fcf098c3e7a4455f31ea3b553008f263e3b1d100f25b4338bda0c6051634751ab372d6609ab13170050be9f33018545d113b1b794a0b0ddebe08a004820a55f2c28ab71afbd4a82b8a1d905600ee5950eb8b8a20080999fd2223ec4db991058c3e308de510659d1bbbcc4af03ccb806f31854203b8f2c625fbfcb4057b7441102b20756825ced53c9bfcca2211fd6171cb7171db31d23af07997b5ea0b1c9327f28c48a1000af4953057f446bd35f411b40e02752b001068d3eb30c068e474818b0c4e90e0e104eeb017cc1c955bcc7c9111cbf90b98b263aa7d91ec7e27b69a1040a539e616ebf32f6cb7064e0c391385198401ad14baf882dece38b826115e9820a3b802a5a0952e386aba0bf9458f052d8f27c67eb32e09d97c231aad32962594a1e6357241ef64a33c4b8741a955770c16db509671b8b2e72c1aee510b1f1129b3a464aefd2eb2a88821cc07a20f284ba511070c1acdcc2c76d7ccb3808eec9c621c50c1920a7e12cf5928f1283fc81980c309dec08d988dc2d350c557646d2f06bcc4ed0553d98e151386e684f0ee0d0190351dcae40042b465e969a95587aa397702c1f953fec5ece8df64741e44d8669590ac4a39ea2417810328acc507f6599df665e08c5cc07a5088fa3383104b52b84b7c90130d7bcc2850d6ea2c68970f2666144f10aa14e29d7f51d85bb0c6b1834befd14ba654dc5eea2159850d6a142caf74a3ac42a91c43193103262e0a09961f88c302853304b840858acfb932526f57309e985af1981f1e6328aa91ee0f92bd0fabfb9431f6816d5428dec00ee7f5dc3a81d0608495683e31dc2f560afb63b5fc4a65c1b8563dadc43882cb9802accce54f86e1f728a8aad912ee206896f888580c02826058ab7e67051bed955980e353000aa1840625ec978786cc256c9e7a0f69534a2ce65ce6587d27f9fccffc1115d162be25ae01958c181ef0c60aa40e7b2155ea5d33019003b23060f45e25c97568542d3b27b228165c1d788401be1d3af28c3f186fa943941a1fe893280a0fa4b003c2ee2e5d55d0af3020db510041d32fe67237c4706a9dd4ba111f69c7b442cadc7443750c621ef056e6525ae20e45470416253e61de4e098e339791e267600f04ac1aa0a79bff0090b9d0437cd63ff0fb8392558fe61e142ef8d4056dccb99561e6995f55414a22a6b4520a3771f119360a6c3104e6aa5fe9fe65ea546fee9fb0e3c47a88aaf20f79678f9315c42cbe95982cc23bd4b2c1e72b23f9818c5d18fd25ee8282046bda511031740f96d84cbe288458f783628be440a86202a71cdeed91b4f8e05e2b91ae2c7b4b58c561b61c3324a1a098bac76e267046c626383850393c532b1dc4cc34c4003f226780d17a83c8590c0d26599d7b9dcaa008411d4b83d59ef1b96d98cc03a94a99ddbf301f42d841423401597dc1763e915d368d31ac816b8a2b682d235661c30cea8168d0399a54d16865941dca61ab46c3705c0229c45fd2639ce54b3c788a801fce6efe5185904bc4411c9d2a2cc7188a1b12be18ee2015b0a62ed31284e961d7dff04caf370964155e9ea2400330c581c041532a0a5615e5022dae0ec7512bf4d176ec8204214567d8cbe4ac681c4aa6d92ef02850d1a39185115996c7c12c74a3acc01d808bf54b9133951d5402eda041f2c4b7974ad7bbc12a1b88ccfc5b180a2948bec20397b6a9045e0945cfd90f6238b76c70356b3182aa02c3595f13ca5a967afb8d6ab1a479991c666d739f31a915770d471e89150772e8c15c5435e8406d63030b51f17537d424829b43ede62bb364e2a5a162c2236aa42d5842b1ac40295d5f4450b938259a1786320653895758ccb1c4e9c41a16820b3b0f12a1caa3f110b4dac1a9372c4d5475aa22f68a508e71069c9640f150e8d1535ef3f21497ded5d4012dcb5b8391b720940b7ea5d856112518d5e5b4bd43d18616cb7ea306e18a9f428ee12e57a3d8ea1596658e2030d42ff01f32c203290c3e5a7ea1400c0f29451c67f111cb1dc79b6e0b17a9502b76303f28ce2e036c798cb80dad92820a30ddc28a623368d478b8968ed5288d8dc5eae5ca76dc68ef332ab625870b7055fccc953533ae22ed892c724c213045cb50c08f92b4165fd6a59fb39cb0aad29b32bf82fe2506491fb61b5c5cafe93cc34ff050fcbe62017ee22e8412e58044630844260b3739c02d425508c13a2e3a5c4b719667076cafc798601a865c71364c554d4798010b1068320837050c47c596af2be2356e401e0bc9cfb47e771bf812be3f198dab4ede48cdb95554057565d007ddcc4fb26bfb7515d38dee8e09752e4cb1da3021885732e74dd97387b79b7b2705917d474f9b9270755614b010e195da9f88a5a4bcb153889406ec82744bcdd6388a5292358c032e9db71462c622b4c70ef302a5a89df70be750b315ac4b1c5a4245f054ca262889b2aeee2028ac447bd6bc266ea2305f49502b1b0b1c1d3df75a8189376ab645b706bf64bc9213f698b6bfe8c156cd46d2f840e48c160078434369538af9ac4b668c2e0fd623ff00500d56418da376edbfc21d78e70c027b2e506a22b345605fe630568b38be63c888208469f83cc2ad467690828f17969e27211e2304c1840f1a25840a37f89291885602d0d9c0dd1f48cf50681abffa0622d2770686aa1b9efa969a91c89bc17e65699b1e471507920e0828d6a995011e50251d312d071cc7c37033094d041f5e4f7960b3db15b7b62001109472ca4460788af328c8b28ecb62be66d0d8ba969f0111d2e0307c4b608c0bc4219cec7994b2f110880d1ddea354355d8c14abb0e70e23a8de301c8aae18c4bb5b9803196fa21142bb87733c3b8950a620c457577a8dab17023943010a29c850ddbc75f894c138963848f378bf11155ab0f2cb788d806550a965f40f1059b00e0f083c1ad9e5edf12886656920a15070795cf94714e6af72f185f351ce40798634b2fa297f0a518530eaaf18fe6517429f319f858620e5f0004517142dbb5f8812e63098046d403137460d769a99363f52b08dd1617767923abb9d9820dee206614cc35e62d1304ecfc42075fb46bdd12af350356f4b8417dc9830210a90165710caa2d5e6314fd8948378a7084247d09542780d44a96697e60b9a7121800a20a1ee5cae20909b3df24016a9a17146642fbc5cc051ca64e0a186455b4b0f174f1126d4be50b7dd5121d038ff00c872cb82fce48b6028da3e13bfe63238a30dac65711e98dc17ab5130e1d5a240d97f0a35871a807e08895ef24bdfe04f64aaa0594fb965758070ff00081e9c9579f643c09967a7bf1fdcfe76032e8984d010202feae603b95d6aa16d782ad12535f02a72cea76bfa96de51cdfc4b0a871c957f30c85cb5caa58daf88aaf247de98e4b798d80c46b1590f10229c86a6479b95a693b8c283f505a773a45c5e6e5af1b9e5844777fa41c8191d1c8b7ff9068202e83b5e17318de02540697cd73f6bdfc46c89b78701d10004716f71439bac2352ed69930075cc7a6ba6f3ccb0148c550ee12c0b79d40046c6c731621c2f897cf021a2a3fb9d0b9886b50e75535c508a1801e0e23289703b1802b6aa93d951590dccabed8bd1972bc4e6c455cc5c03c85d404593958818ecf017386e33b2230c1d7107163a6db62c0b2c0660ed6d075985a35806e2709b5fb47da5d1645168e48e29700e22ba596988bc06f08506386d5c1c99db160de5965cb064dc5adcbc1d451aee731f8ccb72d21f77c27338a2970dc1cc0e21879941b5e22779916de6a18c07705deee6140a58c1e0d3dc7b54c17c0157edddd9e26160a8f68c7167f716e3a4052d6d11568d9e62b6294c20ebc202a2967c88f0c702b72ea304377dcba9c2f0eb96149638b440a9b1b58471b7bc1dd62dc1765e1ba577018fa446cae536647c462b004092deedcc805e7fd70184f58c44459f015fcc1d23ca3a910bb4d397dee347d66e3318517060cf97167535f11d1575d4c627920bee0c7f3373169b841b16b33caa256e4ac290dc6d89906f1b8b574d429b732e73825c5ed8573328b1b498483bbdc20a00945c2bc4669d6e350d9a96a7db3cc2daf7044cae89fdf5f150955560025f02d7888a24760d424270f30963768eaf8a5b043751ba5cfd74f0219550b4868ebf13c82380ff003ee5c32fc462ef910b618adcca256c9947a623f5b9573703d752807ab31e8be72b9a737b973fcd8cb31d22a32c7b8025e739a53cd58004b2f643f90cca53b2222691e4c19470fe020b220f94b60faf0e38a05721e22984ddc1454edccb7c410eff0004b0ad1b1dce33b6b864256dc4409bbbc0d32b964814ac17fd4ebcea1a035dc556625a69c2e78aee26051d470e45a771e3a5621cac9301747111819adca00a479a4d430d138ea66a3716c2129a222ecb981d5a874bca1b6672685df6c682c34f780b3920b75c152e5cf8cce26a1c4a12b75cf70198a989f546bdb1d7885401a82054316a148f04a98ac1c99777805bccbcdbb6e5e9ec33f3060358233005d4399d8efa23641e44a87b4c1dc5ab6764b861a55774a21d64acc29e962fa3ce388b45f5fd905d0270e48cac2b1a251165348c4017da5281fb5472261ff933e3252f335f007eb1fd40b22f72bc9ef143578706b752e8409e1e2e38837ecd01b3fb99aacb512d033f30b90828e268183be621668cd0b46a7d4160036615402e9d92840cbfb94392a5b9101569272e2c09455ee0230b6aa33ee0dbfdc55644136cc4c677356a660be7bd02221b701d0797f13309543fc4e1ecc7f01bed0b2fb32a9ceadffc72c5b883094d39cee555d9985ae121a52372c2fc088648855d119231879a83bacbd4a34478e3de2133eee66385ccc03b6c5b85028353ae92f2c56a3702c28726887409d863f4d022a6102657316417b0e518225bcaefc40b9117285d5abc42623277c17bcac0f9d8709d8a98e8c1fcc2212d52142916062a21b7bc904836d6559fcffd8e503729f6a529bb8a13bd8c01215cc6f12b5c461f0bf466349290bc570ffb1425b68a9b299664e63be897536197790122558c0862e18be81b0bb251ed14f1a5cb9ca085ef303036c20435a20f2ee663f60b580caded7df318d3ea43bceaff00984bb87a386019595007541899528892859c7246e8143c31b6f0624fbb0b410df8895bf0429d6198a8ac5ea32c1008fd0afea06472fba5fdd4e12e0d6285e0ebfcc2697c8d9942b475ca5d05dc83ad4751ab08d56251315be51aaed09373f1a1f77860d847c487c1e35504ac594dca162c6b57fb038f12a49a07899539c792192cd458110d917559947df1111af79597b83456e39f7802cf9303bf23b25629e10358b32c97860f12b025f52c94597b20416cb500730d475d964fd429e60dc1ed183588451b30944ddd11cbd99deaaed04b1b25487f097969ec9c751aa59bcd306260c31e7f3ed2f8e00f10ab05f10c85bee5dbf1ac474b02ae8e03760a7b1c7e2238bf80614c8e008b79e21f93ff00b030361e82556c997e90989b9f1029f022d362db5bf8287c465a748ccc3ffbe2104c57e202d72e51c2a0e48f42370d1abe4fcc51613cc432abcb005104786bdf7f9fdcadad3f60bbfcc71a4f304ed1433624f101b334f32a873920d10f996a1842e358b320293371bb0658de97712118040aa8e9ea3cd3b96dbf8989f340b2eed7894da9193c42251cc730896036f7377817361418811538cc0f1a3e306e536bd31338a2efcbe862c8e04455e110c6039b89b814f528f68a00abb106b0b1bb98383984be544a2e266ed85e651d60d3da0d8a3fc2e3096ef57068d16882c358998685062036cee1b600791afc3f534414615e7fe350dd73cc72974f7ff628ad045e1f7398bb39a803df338d1fb4a2bce98221a825bf9592fc0ff2940dc16317e4d7e4877c350b194297ccdd82b677fe1ed0853290ca3e0895b18849ee9c066fccadd387cca5201f286759d39bc10d162720f780f03ac9047418c0a20041e4ea039312ecf31505aa8e4f536a89694c74e21cbb4a70ea2d55c22b35ef1c891d2b3ac456f02ecd9f67ea034239d7d4b64ffd5436fb1fedc6c2701a769ffb8979a5c4dd46be271dcc6330856b45d4aea2ccdcb55878dc61469f997e8fe129d01cd4c4338166a608ac10370ab8a54f62080c9c2e06bbc5e79862afd02079810b25810b675ada70b17621ba32e02da78102f6c25d5dcb001668e6718dc9b96cb823842254e4e2cc115330aca82dcb6cecbe60a020a71a38105f1e226607636c0260cdb10d91c3b0ee022379ec58cf0001d619767013f68ccf48aa08416662dbe6605baf4fa026cd46a364b87bf55626d7c4b555e2541a8a98619dc6e43316a5ad999887744e31c5a79d6a342fb809b0747837718cb47a4840c150abae226a997882789842050411be8889929043389668e5ef89481a732c0a0dbf3057fcd9645754513297115960e28cc4709834fd30e46a73a30a9d2f4c525911cbcce031ee98ab628adb576c597aa9a9b8c7f6454a1c2ddef7f17cce5b5f06e0ff009530a563a975a6a34560710690ccf831d189541ca358ebd2b19a6607715b788b986a5ae7cd4bbbea2b91b25aef05835a9f1b14f49666ca9076d4a3adc6159993f97d0767f8469495c3e266466e655a09463fdfdc623af041675aaf1170032ba22b430007b89470381e536533203a12ad42fe62a1a3ccc4bdd4c1ae8f039fb25d00b29ce3063b6cf74c9b9bde3222f65f0d77e4dc17c9adac064c1c88acef2c9071c90b48569432a828c28b9c18c7861f0b65a4b40bb8894c817cc4eb5359c46fd981718a0c45a02a689f9e20b261c6e5b32ff351776461b76c6c2b1373a85abe8951ab17f7014b661ad425ce6d128288da294c2a2ce74c01ba52d5b9552778425ca54b3693e668c02c4e5e9c169ee06098a24775ccd9adb5141c5fb9622aa321d8854c5a14e4c06af63e20441be4c06ca8a4815a8ae24b32f52ed8da2f96108b060f32a17462ec342ba8c905bdc2409cb4b268d980fc54e42cdacdce2a364a3579450a29459ba99b802dbe60197fc967d19642a29f0f516039a98aba564b51ce1133a636426a9e9dd9fb4e7f33ba641f75b4c23f6e5b3a651166a5215e5507c22ae25d18d33eb1f0c61f004ef0e461569b21bea5f803c5957341869fed15c06ca7099fecbf9e3f5080a38a08d05667ca20654e8b7faa076e81cd772816b17618162973d49c159db0f68cd9b8cd97988a0c5d05b14b102d355a6378cc5aff00b2d54d129be5895512e34c51c47bf3a9cec59a7e7f8817e1360df6ff00626bf50501cbfccce1b797ceee5003204d8f46d903b7ada96413dc6251a837abd46d54a73c0821e13c30aad6610c10785ae20b56aa5c0f2c100ecd91cc2055977036f31f975294e12a3a4b966538a4cb52be10fa2626b7a13931c2d40044bc4bf6b8e077155c2ba5431a21df71ece2e2bd912aac92e92ac0d41c408a99900174f72e40ae94d40bc02c1f88c481aadfcca308236b58fe0f1368d818f6218b03e1260b2f91d463b51cc2cd87ea3625398ad7d5ff00e18f630250364be9006fa150ba324dad46803f0f28c0fee7625f83b9ac08447ca9c574cec2d97d08a1c9efc4d118c26f271df9970a59bc4116d22245ccbe4c877d440c447594f70298b883a8529015fc8cff00d9522d407f5353161a2f687fc64dc06b42984d4e086ab203fefc41d34f3fca015773d9f9e231e3225b7e2a46cf64990483c3e4e2af2ec9d690cc0c5a58383d5304b38b25fcff00f52fa951d3c430e91804119802257931057b40228ccd899638f420173284b9716a5916d60c8b540cea5c14f9c00006f9968b6e6089de08cb0dd761e6f50b2b9fe03f885676d5543071a800606ae0c738a1188380ea4f894599ca88236f781211dd5ca08e8d42044dd317681a8a1ef514a137522a0d3617113d811602b2a30e6ffc4a6b0a803fe7c415755bbeb3516ac17919ec5de05ca6ab23a92f4090dcb346dcfbca157f0412f887d31ab8da3a2223ac1f40e9387b455a5830dc01503d2ba6a9812187f9961630baf11c3202a565b397022acab1818e97ccec07370ad71129ac904e8d8081515a82961ed18e4621a3cccb6dd749b374c254a229e63e638a8c03a8027404300196289a000a6f01437382205e5150edd084365c3f3d261609065df72e2c8f4dac4929ca17c4c992308ea5a8788b972c4c2738f6b8e57614ea50870e2262af06155a701e2259fc31815418b704d85830ec0e95142a09bf3097314d09a5d18580750d16b43885bdaf2f72ca2099e6c374a9cff097298611d0ae4fe2150ec6bc0ea1f206e0c461dc55fd854bc80e8de6643a5cfb32a74ea846ee076ddc63415367a1ef0c66515a77ad3f89498ced3b3f50234737ba78ea2a3194e33fde3c46359816f0566df9e21498da524a8d42f2862d712453ff00847c74b5a8aa8532f994a1922b16c66a2cf2350ab5324bc97529e18b5adcae854b5e7c7e65243652d8e8e4fd4b7cef03d1fed45a52390fdd96c477f90398bc96fd05a1ce64a42e183552f1e1f4a52f518647bb431c014847c22100b0915a71df72bc1a454bc4365ea28c148a022d14c04405d1ccb8a9e2f51280ad6ea053acb6675186372876101747ea03da2937477bed8692a38865611b1cee681a8e5bbc4c1ac930434cb00d484d8aaee653137ef025398cace2302f6d6a242386258db32820b718f6f31c898b55654ac698cb95b5376ff71096785f285913baf317f6d1336712c02e63ff00c102b3d903ca47b416c0e203d005970ab16d811ce2e1d4bc4b33c3ddbc731e607d7360f31c202024af6cd60612f98f2565eccf5f99495e42de72a8067332a2241ccc402fe93515612f2ad5856e21c238652c0a582a1d1aa1302009b8815f3566985bc1cbc195700de0c4b0941d914047780100936679a10b00caacdc31c6e16859f29a8b2ad3c1c42b2bb40c626c6925c92da7975363f5168cdf88858f7a27516c4d1744d6ccf77a0c5cf99cc18b89b7896e66a235e81ca770435301f886842bbfebb8112334c4ac3e1b97fb38e287380278fe510c2a546219c64e630a37d4080f0300e996ea3f6ce8ae0f14181f30e6abca9ee117d900a03d9333393907ecd4a2361884971c5c2238da0fbc4a832f5a1a87030ee70ea6501b9679e8fcd4d71f73ed8e0fcc56fa5d0f7452d713044d4090cd3d25170be881a431318bd1c45326e653ccc81d4accd10c658fc128af2a059aaa43bca1de312d4bc7a1b97b0370d68dbdda81f105f10725e6056e1f98cab6b7108dee22b5b67e60402837508bea08b34a38b255aa1de7766d9950db9aee011e1a8340a2d4614b2f53c4cd44f300eb6b2f471afbc0836b923839dc8dee3cfe30903862e2d2af12e9425f42d692eaf12b46e5db20438d6fb8a5752880201da18f2dc54704270621161ac7925932954880bf64250658b8b985662e516235a701ff001ff6590ffe2835f532f85801edc2f6717092ab9569e19ba44f8230323f501a6d5c05dae600319710e805e9488680d9bbdc8c0a1dec0e36b6f45e4fd401190e953a611232f957f0cd23b18b2f81d40a211ecbb9989c1e52ddb8896708cca9cc47821bf73f33ccd68afedf8b86c32664518017b4006688950b4e1e61c6aa29eeff00a1e6275556a3e571045f67617aee6cc32d313f64a224a280f63880cb6598a685f328642de196ab6af5dc08132e12e2b97d008db1930aaf91398cb3b0b81a57b62164553dc43d5014c3a8782583aea126cbe0818f3306d982199f309d517220938c33ccc55e00351768736420b0f65ba84912ce7a82fd22e0560615464ea25e65ac145e260f311673d11955de7d1622b8af2477e6346d06a93701ded212b9140f32db96df12c4dc2d45623bcee690e4067fa6559f2684608597d119aacdfcca7d1d18be9589cc379d4c10364b46f981db8dfb42099b4dc4a1bf84fb8c139cd41363a8027c4d255f285e25637f28653b890556ad665c984a831b7b1980585f227500228584aa22e003305ac3367baf315e19a41b4ea19a0d7172fb9601b8a1b19844cad5f0f30c51786c9683dbb4bae6b8aaccca75ff00112fc8b45f640317a1abdcfcc67442193b7b2fccadc965f7fe8dfb46fbb02ef4adf83352ff004e8947802798d7d426ae614ea1d475095dc117c46c68991c830543b6e21ed3b9f112731f10cb0b317e08a9bf1b2104165ec800e266cad4c4022bee53a616a2da22caca5070002abcc665559b847141b1ca63aa8f28c6e16082086eb9ea2d2cf6e2091ec8419771b63e1000955fe589943701b87481d12880e0466da3e904b89d8198e61d844bb5fab8fea57871fc410beb0a5f4bff005c722b002baf67faa594acd63f97cc45e4b250bb869e53000104b1c6e551a8293bcfb4ae3f03f373322816bcc441f3ff0090cb8d37716b518d173476cad1dc7c9ce4b974dd5a94a2b2c566c163ba86758334c39842a50af68a08606aa6f0ceea8a814bf9205802cf9455a222324721a2ca81b2a183c7a000aa6881ed8df12994b0d1e6373666d02b2c72219688d133772df9836e86fe61a603222d5c2e5e2137357710a5d707989898698e066e3de53b2a3863a0786e09705980323fb21c33296cea838cd4d207844f084aee0f68355e96a39894c420820bb031c6a0dca180d1e0c44d7258ea5e9ad4babaf7ff006e51c810d252b00447f3f612bb65a6964fb2f66c85e738207172e94e08e87acb0503dadf84b35a1afd1ef36f03a03ced3cd02163fb86a5aa3f83701d82c6b7bf9f99ff00a0120ffb114c654459b4ce75613dc6868a5868a83580f5e4964a4659c92fa26455a4d1994df9f79b762191df98b18ab88cc584fe83ccaa08bc9bff0077b4b4e2dc61d171f8953458061d989da36b9bf999d6cf3157009c8ccdc2ab5d92f600f88c005a315bb2252db36bf4a297a972829cf50ec32cadc12f36f1c2215711df98dddb71882f17288a4f3cc0822c95423942ef821830e234502d53ccaf9cb51888bb232aabc75331521f717432fe625f22e50103e1691ca87bc7bba650a14518a870b1c0be022e63ff00c57899817430c056e20a1332da880cbb2731f1c27c502d27da09f88835903d3589ee4360b8e6ddc05023e71470cea267ff00b248aa292a9029abf9846b1c30dc63f74810ee031b41103984b4e1834608e196c0c041e14d844ccdb792e0d062e0ae254173335dc79ba2d8890a3989a39e237b025657413269314712af08c71b8c397925cc022e730c0a6e022aff00cfea0024370d261720c86282f02b30d9c8633a665e34425c4c3053181435f1a0e32cb032be8230c22ae3b8845bc1f1168b3b2642ca25691d4fcaf41f88e88fa7e4ca3f41b5a3d10200c08e71018ad80061131c83931e22588f69667816d2b886c940881b036dc40391506f25909cf51b540587317db6bc41af20d4258df2420b031422af4c45e094424d77110086d7f094c9f1a5fa4183363f3942885d955cc24958aa7723239a3af79a50ae475e2357029197b448bc8fff00aa52b15896ba88272e598ce225a5658a13c910c9628a0a93382f20238a03c020ca118569ccaa211a7c4dc261ad8a3f104bff00d3138bd406cd45e0a495bdaa3b74d92b5d4e52b3e25800cc444357865d7bc654dbcafa9b88298b2410e1b3dc6630ae13997a0896b0c14a1c929165dab950f30ff71062157ee8ee00b87d88863397bc545ae3da12ca0624733887d8489aaca6d848ad8504c1558cbe65432339995dcc8c0d4210c3f5096567134a0428864bb86c070116d36d11b4eedc1d942e6e19c559f0885f8c5c6c3c4771e19bf989156b7005a8e608a83f512345be4d41bae534bcca22902b5be1c8fa94cde96d03c45bca727a9578a71cca25587a964b833642c6e101855008658be10830682f8465ab87247996617c3477dc5b840fe497fe4bab3701ff0068d19362bfe7f70a71a7083ec9716a13a3ca3bc9f980729b9a2a9fc46ebf4f718ec15b3dee5815ac8dc20a4ed7eb5030017e51fd5d420b31cbf8aff2a31d4fc47438810b64bb86c1b94142ebea3ed40b60b843c71004ff00ada9b22803e41a659473e63e82535d40c334b835477b1fc439870c46ded1e772959ccba8e0280e798e17b95dca42e0f6882512505328e36caaa955a712cf13020a0acccbbac524b85c6b6357bc624aae8f082831c8cdb19771ad22da58f0295076f654bd6991894f907c506fcc40027f42e5910e620070e708507e627ef95a3428f6188e3bc3186fe14d6661fd023468f7a89b456e611878dc115031b915ee3ca23bd2205681002784cbefb626f3dc2cbcc8f7185563840cb1a455e1f0c6abfbb32c8fe9889a13de65a54309177141705c620f62773141259405313d9615a6d9817be2340d65d63705cb9710c0682ee3a1eea352a9870801a353e2208b4e2134562312b6ea5ae73e658a64c436a0f28cd42b9ee3a55861f3135ab28b96179b80ec22d2a5e24b6068c3546dabbe260accad638bfdd42d955d16b2fa1f6459c5bf8f1fedca7bd6c8acff00bf709c4a2a4e2f26397e25e11e1e985ce03e445fabd70256778890cb1e6bde62b57d5352b3ac7a0800b7a8d8ddb7269048a8365dc1721fa9d210aea603f0fb82341d87702463c8ff00622b76ee0471542a03fe35719fa7a2d8fc89b673f2c56e579620282e26c90cb20d4fc19bf1b97323d23b0d10d203778119b7c11dfc0b24b1abbe1dc6d8c42b0d825fba10b9406a21e49c9d73ff003d2ec833c1d331cdedf64b12298e13a8302d1884044277c4cc001930221e8326037acc738951cbb1cfc46aa0c2802b6078970f5ec73750aad1b57b40341c929588eb72b1b842b6b4c46596ba2b7644098e2b8969ba8030623b94cdc680af98960c48d37322ca626cb3718360ac1b55dcd56c35ef1da7b8d53dc26767b034ab47046580163c9134868f789a260bd170810a13465d538ccc619e1251d8bb963cba20294e2a0f6bc3db35c02f21c4e25d55b884af44c773636c6eb788d5bcf98b403a9e22bd9dd090e3cc5a850961a8e4f6408502ce250a02b750c3702ed2d07a60680e4ea064b0ccf44d21165820b7a21002e1ea62cc74399e128bab80da5ce0872c284691c39ccaf1422f0d5bb79f68d4158f74e50436c31a3c4e982d4212b7ec61545f490e02c9b01dc075a875f74e2a5f6230751c9fbccb580602c950435ee9881b65f24402db88a944cc440368017d813aa9922022a3fc310a2e8687818e7dd3087833add842026bf725f143c351ed5e03a8d10c993f718c31d8fca540327e654aa398608e95e253cace0cdc1885f9a891b2320324af4b7ce2c45633e65adf32e0b11770af30081547269768616467c4b9dd6d2c58b41b5d44b514c348af1a212da2293be9ba5c04aa8611ab057928234535b5067ffde68403bc08b53cea97d45fda17e902e205f100c39f78872d54ec2fde5eb38fbc1b67ee0bc202ee69fa034f5538881cb0a894568679dc83ff0092ad8b482d119b8ce5980020d9883ef0f28deda8a443dc1194ec206c01a182e0d8abdca2e3ff00f39b22ed4624428f2513faa3c86bb40f88d1d204916216965f0c6200e5df611856b9b261e5905f8180120de3835de9e771de65a5a14a947439dede67f7224a22b51889d01c7f6111f673325cd9451d4ea50b663ba912adc5d2cb08f255d2e1666ea35097ca54b5f034c60ac1712bf0197921548461795731684a895afec85133007c467b56bef106c95a57effc40fbc45b505dba8736c892cffbe2038839e9f03c0e21944be15ef9ad44478317244afa14f0cb6969fe086e9bdae840a72dbca62a1bfee3f983f72facc5c54cf876f30a835c116cc6caf686acd44d551d35772a09763cc7cc4bde422585abc41579fb93134e58c4630264c8f78fac5e04ba762e855fcc478669858358517fd2d4e7e16c330226b9689420847daa0abe2e783504733259a25005928a870a98ee151ac323f93f0811b3194af999c2d654b59685d1912c910387752bc945962adc0cc0c444d3b3b1141c8b01b32b8562f08b3739cc79788cbdc6ba993107da56e7e51a0090f48da3dc08170be1d40a75023af41aff00b11ab7704a062a00a188172f338ce89736baf1280b582e544751cb9323a456cdadcb85a1744c24204a81780066585b6b95850f64690e0a996e6294ea88d100eea2cb00c54e8d6631b19157dc050b3f32ed3ec9543c53c812a940e7b36ac54094f087be82726609069d4abc2f630351571c5c54b5b2b2d063a7880e690a35cd9f12b869c9115e1177e1196023b9ef2d3d9085c0c85c3c83568845c81a728c16a036529e4798f92aed5750643b0e048cce460e9133690e5515fc8231a562d3407877ed32199caa1c514f3dc61295084070cd462a3029c3c161adf054dca80d94176e60522b4f088df8708caf842140161665e807faa0f61741be73ed037500ba10c0f31d78cbe074470587bca844f065a7534a97c7711680edbfa81a54305cc4b2ef300103fb2588a531660879956b4bea2e6bcc34a6ef922a558f4ee5c0ac2285be20b02b85589ed848557b8230a3c264470961ac8ccc30bc473136cc4a0c9cbca2b6dd5a2105a9dc95309802222b289b76d46c050f78e6e53cb981a86882539c585dd3104376ef58cc15659949fca722660db370d888b2cfbf133980dda128c89b0e7a89825c031dc80327c445311001200b20e339d8ec8e83ce2379475bdab23896b32c1010752c3a843e3506bd4455019ec605fc445e032bea7341e412ecfa1ed85829165bc4b2b3a8d96c74ce462403f666554ed1b0eed28c9c52fd1f23a95032ba74d85f338a5eb3c4ca111abd7b476265997539f2ce5fc4a945e0f22662468547551f38461d018c46801aaa6b630b28c12e4299862c28ae8dbdf528ca1ef14af28c9500c3f04460ea5404354978230e0f27b7e9829114ccc729a356be037ef28aa96114e5dd777fd58462d4b3ac4081c2b69f97f118a59b36ef7f93a9c8f596c7e41f9fc4393070c15c5cc83867001232ebda589de1724d9dc2308c6356b89d476659a6ff009965a790800af6401ee083038d3b25116b240824e2b6904a7d7fe1103496310b40d9dd28e75632e85540976ad4603f840567525412ccb868574fcbd34f7974dc47bb944a5e17176f990b7abd77e6738f7e240d4a1a19c41e13831481a552c4df2372ca22ae6894a66e19a10d4c810a9104a68e2430538e7c4aa31985da3b8d53ec44b034aee056e1bf3387adca302f1107ca36b38ea1ce2ea5e9cb1748442f1a89e8425e75e25534b2eefb8a8ce2543878826a2880a0370e077db10044275ca22cba8ad2cd658cd440eb092f8f02210a1896cbc3c4bf0f24a06d0698cf26f64195ee8815a6f884b2ba8113961caa0aac026433342e6a494407adc5dc56464b8dcb40b629dc301db3791ca0074e145e56d1a9bc3b8978e9bc333069c91582872c40a2b591ef2e2e6b24399c0751871dcaa058f367316b6cc011de74c400a1f24c0ba7240463295af902be30cb6ca9d5aa613278ce09aa7e392013d7839b8240df6a2a8b28038ac4447cdc16866b0b1790614668161b0ce1a5a8296e82c40a196e1fc5415f998c0520f25381911cbca0776bb5e6f8e7f8f69713b6559b473e780c567316a9c8391746d771c22dad07e0c40ce63e824d665e0f5040177c34898e1bc2586a5ef4902680945ecdc24b28c7944581aee730a80cb01b05571652e0379a95cf1186e5cb311548343086c2730ab2a98997031d225344122412c81d8e1e880547958adab97596bc4c9dc19972ca6aa535a8320ee2d6bea2385116e1cc5240c6dd4288905b590182f98801c44340f1197b0b2858b6a655d25c5194b4c16ee51b6652ac405848b08dfb7b455aacb6cbad6a16b18827db0754c9d5c43f6c47d8b0c20329b86c994d3d38607d4a1c2092ec520ad93d3304072e1878a4b841a80142c605cdaea0baa2a9acb2acdd7771dd2e7c2791c27511052e2230ca145d30aa079986d92962eaa8898258b25a1969bc4635e4a9447504403b94b0e731ce2a82c940669b4cacb8828aef630379cae8880990d12d7b68d2a65f23f3106f8a1786ebfe40001730fe0d31124361e0c441093e64c00a8335dd2b85b54dd9432cd9cbf2a8424a2efc4508a609b701e5fefcc36916bd1589b5dcbdd4f660fbc0b1ad8c2cbba49c01a87414898b6d649796b47b20d39a897a6e8c9d99500fc07fbe63c2e24be6fde106735fd897609c3aa02b353585405b5dc7188e7a1cc655d56cf502814d0fc4c03a83c4372c1ac3097dfea098866edf112ccf58dd86031ae5562cb98261e8251067952afde36d17eb1192bb0d45a1a9c40609931792788e109a5ce6533f720ee7e510202fa96d15772b3e2164204fe08a69c3b972312d3e6a402f912e003fc4034ba38da26e20d24612e5fa2209cf31bb96a593599ed94216172d11c3a193a952c916fa4960b07f696bbaf2e3204b77c4e422010ee2900c5730c602fe11f8231ef0688ad89426123280820aee513aed2ccc0e240aec5288a34da52444bbbc312d68b8c2946cf51035765d9160b56b531f73c2333ab3ed14d30c13b416c4601f7be915c56ab3ccd413188719800866aa7fb3e94866142a434cb39622003936bc427476c387e9d675ef29c2aec41942de38874837d72c44b6eda89c56d377081c059419507073db1c159e3a4aeac815c5658ad6acb1304dc0262ce4afb10658f10051ddf4eec40da8aa063550981eaccd34a1af658ffe463b5603290b322b05308911d92aad5fe2222cbb6f31f0966de65e8439a8dca5148e4d60f136c6a544d8a9258cb2b9f30df22d4c64424663b3714c8bf12dd4b93ba2080f2228ab6316e71f4ba0dc5c2fb193ef72a858e7a8482c456c3d042afda454005b8852527dc50a5ce501e26d0b9b8061c40688be486394e711b16c7a832e0bfcc6b4b4d428a7dcdaa43bb85384f1334bb330a50bf1070d6fb80e46509312857dc0318af68011c4176c72150be0e61e384c0a63d5666e1ef0aa11a0afb324febab9dbcb1aa60d4a4a8c3ed2bc4a84a81121a85f6cb3b2e20c71065c1c9037b8100a2a2487cd403dae36bb1172b451c7c3a9cb5053ed592072fca1ade5865d620795428af431e9f611005872b8576728ac32bb8cb1783110c40202ada590b594a2764077dc608c2b9959a2985ea59218d072b7980e002197a96136caabd8ed5791814edbd7bbd9af785c102af3827952c2ab14bba83ae1bf7dfbcc50404a75e47b36dfd4b00888e830c723086616ed94a6e0f72e1b3a8dbc388881972d4408b891853a49481e088a009602e7de5e032398ac872c4320385f6954f0df898d4e505704a8a69192e584e900aa5b30ce0f36e5816abac2b476571063f244053a44480318f7158507825c054bae2a1ed495085b14f0254948d919752d330c1ef3c210b6a2ae1ba944dd30acbc2e0f17e8f3d46018b83176610344406d70c50a3944ec0fccbd606fb88b5bb98efda36035a86161e610808d439484070db398110de8839f39a97ebdfee658b2a8951f48f1145518f10d91734dde3132a16d0ad84ab772e74104048c30b8c38599f5cd3b8844c1fa827442acbd4a0b4c7a5aaeb1026494622038b2c1b7008adcc4426e351732e63806939f1052772a0cdba8302ccf72a44c9a372b4d302d2b0310595cbb19780c65e87adeab2661b8398abb73146d476b61ff00789899e772360b33871d87f311015c9b5a0f9443a727c4bc0b4cfb254483f0626d3762df996081764c8c468ddf32952c359a2cdc610a0bb6939d011cdf87f5314565fe57035ef3d9edc16d4a70e8b98c86045deebe2062bb5a155c5c0101e9853231b82d7503a1768a0624c1645841aa0f313b4cb9ea046933eb703b11b49af0409195060dfb2442cf505bca9dce1c3b100a37c094d08ac7042a60d352347cdd7e608287413100fb6a5113f04041e107dcfa04ac4b1bc38468668427853c9d12b555228b40c105b253ecea03a07da086c2fc13020e7cc2421ed67ee25588ce586584755fa94387e252b5d788ad78282e00de608be091fc4071f922dcbe585f0f315c17d42bea79195fe1f886ff002bea3165f681b047247f537981cd6257847e6543329b5a208b92eae21a05c1a102a8b7c92f23c881ef2a91cf0ab01728a0306284623011c8df98ce66dcc211757030cb788a4c6d239045cb032d40c88c9f4a3755d970781d4e28cd0fb47c6a0e34ba9fc06504c86c3166e808e0f730a0f364c0b0dbf304a72842f930cca76ea256268bb272b19d079b3e9f78065a8d8aba8d41fa04a55d0ce7eca7c4ac5baddeeb0cd7e9ed086703e87b8200eb5721e0f1fdc3a50ba083e4d152d5f33f47988724b56cf45f314146cc472757bd1b0aa330df8954798491b6e28082fcc124b2398aefdc143415d4b72b9679212b91c4b176cf1dc8563273728c35cae300e2f5012ae7c220946915e0b7197994008968d65888aea38f8c2a906af500b0f5e0445208582cf922e8725770e3f4e6fb85082f2aacdf4c32717c88a5d868399904cdd423783ed9ec8389bdee07703ee6bde55ddb0cb76476bf899a8ebcc18be63bf79ef1a013542d4b2818c07352caafba606097c4b339118258d8c321a8e752bd5889509e6505bbc2280691cc5c3a8129cf5e841e06bcc186a200fb60c820be266ae1dda670660b788643b8784b1630c1107ee572605c4c4398ec9b445cb148183716925f997c925daa594d8367996bae005f784e91d44dcb0dcdde798629b9680559751cfa39f454ab0e3c23052b858c348f403e3d0f9ebe911d8ba3c4e0acd66731116c23cc32c1793e24bfa8d06cff0009547adaa1ae2000db78352da460f7232a606dc711075f7875e22aad0af96c8b46890ca101d5a1f10d99027ed0d5620c064061fc6ff103fc695b263e4c7b44115d3b7a623041d923cb328b2e39880241e6b0c1d1b1e2f31239c20ad5ad3a994c58bbdc06c69e6e3b15c780c2cc22f715a4068dd111728532cd8c359640fc8dcf6acd0180020128ea221296b7302cac2f306a52c2e2a05e510740fbc1088a22121b5ee985bba03fb88b3f897018f04ba5ac5bac84745b25ce152de0416816b79710bbcdd4510578900542b4ff0014a862aca0a0e86509430604bf6c362f611b90dab730ea7b111a22fc7f712813a418aa56acae7648d3ff004955c23c12efced7bf50d2efc97bb887f2ab29a8101bab599a2100c1088ab961f445bc27921cb903c185dc7c90b50282ab70424be35c05f6f487220b233ee402ed912a2ea5903522ae157082abc1f9408009757c21477f95c35854db4afcc3e8f89ca03579aa405436058202b681861ce1b3e188a05b9c2a036824a36bea033dcb993e214b8612d44dd0721e73bf17077a51540caaac7297ec74cab0d05b4f3d43ae082ff72800c750b597ec23b4c6250106ad458ad27b43868c60a7b9146e53a598cc0e10637f01006a5a0c83f6e3e201826ce6f9c9c467206f47fcecf13220bedcee3fec6043c31d9e4650468a4df3a865669c47ce80d4013f5450b0ff002239da9673077c52661a56a010682a508bbd8664dc7c45677e0d5c5e58424f2b32fc0f4220c2328d17d972e545f623c3a704616eddcabcb998f5af32a2e1b8833e752800e98475bb856fe2913b25c77f710e187a4e3ae61f0bb864c318c0b00008635417198308b5073d4fe5302119b27d44688379e672406def0315c4da28eda9dca5eb3080ae228396ae50f4195efc4e3c5214d4600b763ac838665561da58bb16dd7a2226fa984d91c857a1579d47cc845e2ebd2ccb8893028a859e3de370002258a6e506772eac82a63577196cba53e60ab2fcf7102655cc4124a5946d0c54ad84b33e12b356430f9946daf314aa19732e872e3c44b1aca31597c4388a5b2029aa3a96e71e20b255f4cb800b572d94cacc27f28c46644d08b896c1d4bd870662cda30d4095a5ab94adb593d48a625a2ba5306dd6abe8621c25a7c2ed5f8f306a0750fb5c9d988113508b5b6436b27c0a7fc11bf75cc3c83f896f69c10fee2567ee5cc15cef6256551e58026251409646962503c7a468528e87fc4ad22881de738836850d1ff8c1f70470d315e8f8735ad4bb658058d4b331514594562a5b920758c8f044e099d0673dc7020d91a450b59e44256670a65a13e93a0bb21e5d443c966e0234e90d7af1167113cc7c31d9b9784e00658a53ae20072e629a202b4132f5055e40ee053ac5b7c8862b16dba2101ad1b717046205e41d1070aff2cb9e1c1b08ba1791fa4d08c5505cb473134f023793e25c8da64a9f6056a5978ec61273f0d036f9859833db4a0c106ffc607f11784ad6eac3300479c18ab2f30a0440ed040f2bdbf31856be0a867de350a14e364f6855e01d82089acb891948d5da0c7f30c46797fa09803456ec5c140b27b845006ce0fe102baad853de57a2f1302116ad52b1a3e941025c165c06b4aef315d506539df10a7b3d5cf68a012c386c014c76fbd915a078a1a8b29ed6294bd8a34765ef4a51adcae0a8c9bf06c96d6530e194b9be2f31118705aa52bef5645cb4d4c59571071bc7a0c40a17045544ed2fcd6c7103d9230ee28e1c76b988ee56884b9de46d8a59dee73c6f9a63de945f89ae61b1cbfecb1022c84f2f2c22227d9d3e57ea03021b555fc8bf99b77a744fe49869f1287b21a3e161fef9822b40f4b63f4af695495841c9121e6ab9105936d78312afe8998c99bdd2a9c0369a712b88afb9ef369fd251539f843c25f642c1e220122a0d142fca13582135b1ca2a5d6764b16a986c1ffa45df505a0c5a327cc00b0a2aa302ca620516503b9d9a09580e4a81517b23caccc17ea01041a98ab0b9732e8b9f492b66cc1f282b7bf305e75173887e2e1f69ac0d97b42542798db7158741715992824a2b8cc5aa8ecce21b40f048a0e18a0fee4dc700588c578b9ee810416c0784020026e34682c460bbf69453f69773463314ae10e558c0a8c91844c79f431528ac6e218ac772b8055b04cc2622a2d88ba945c6c8292368363f8859654bc4052db71196d4001164c28d4afb46ad802525f8865c0d4ad2d9965618e71f20cb50c2ff00f81a8b39633155962408d8bc232e6959a97d4ee118612b70fc4d1c3986a732a5cca83a94a28d2da8988e13df99550290d0539a961c255aff000b279d9f981d4c952c52edd63f4c24a7fa301b47b89b50465c21f07ce22b3e0808429a25b588d3504e278fe210c2b431c92c6835eccee85c0772cc1506fe268d3e8db8d7fc6242dc3e46d98054d20540dcaa5354b82e1a2305cd28e18855349f52a2085461e87b051216b70324c93ba209027894ca830972e5cbcea73e8fda2e71a89a60ab1e2f8c000ff8150a35ed17e3b95c88b7028dac0774ed83d0c2b1fa1206a01329071cea5b25b1fb821213bf2ca25e384a4a0fd00b6a1d813903d5b1640fc221f1db3180d1a2300926367e088a6ed742033d17aa318433d51a21e2e52f9ba54c193c8c6d695aa0e01e68c4b209955b3e605d0a5afcb360adc4bb5c9d8b2a05777e8fdcc00d8ff01190d8c8a55c4ee062c903da35947ccb03c5f25f51a760d025fbc7a009dc41e3da7afee409d400fc5c245aeb2dfe5162360a17e617f1c99b8b28e9ae4302d8a1f08ad6d6e4606e57ccdb3651711c8484353b11b1b7ad3a98810f30a928f30838fc543da383098d2c341c414b0325d08380d25c0d96ca8d02c5ec4cb819e82fe23e76407f71576c0170d58b7fec20954c765c557a6c038eefa3883eeaf6c709c8a8846cc2d3978dd45962100d9846c2524363f9bca6c4e7071142aa2d9966a39f751adc734230967e54fc145820d8e4e2e33e0c4007859e357c66e608aa82d9d3dc1a0145bc9cdbcbed52a86356420fdc01a35f32a0fa7f012c04451fca30591d75326f67d98ee83b418976f9973910b6eae1290eba88353a250bb2b998a19872f2e659a30c42d01d412399a1b3f11405e2ccb327ba334dba6301482b8da0dc2c8c2d08ee64cce2d546d1f8c7ebc55c4c43f2622523dc25e5382532d9598834db6a1ec4f1c45c5e0099b66a88c834b423a7b10562b8a0b057bf840a0555cb1452ac42fdcbea0331ea165aa97009d918363a1ca5b8ef3b99a09934e6242f998de5df89921b7888c14d6632c2f88d515b834e18e00981cf9805e6ee2b7d4dc6546e5bf088b3b965c5b068e6a5e0b15416dce865d5da38770b6e10016cb5b8a23ed05be22580e55981570b1516a0874cba0d7dc07c9b264b89fb9b2bde11733c23a3a3d09cce3d0659e6aa2253c32c541ccbb62620c673086e10e60e4b2c88bc983161e25ec30c3ef18ba0f702c18a62112dc4a62ced5d93c65860ab32ab5599674011eceffe1dc00c86843addc66ef00f95e0ccc504737bbc262a833ba621d916eba83d15c6e1d41a1b3f94204df286599c071940d4360bd44801021da7f321a15969cac461540282220b66e0e6a8a0ab49979e68f8a240c8c10550fe2000c117da2c7ff2bf32fd14c5ee565af51bf440e6053500fa1387034d4fec95d3ccab1c62ad147b2e540dcec13fb895c78b28800c9e95300bc415709d967411ad9f4c0877f76ff2898b95db71814c8a15458d8d70427172f74c5c1a410a202bc4d74038597e728030c535fccf735c624858f34812e6663f885c3dbb1f789400fb8b883896afd31f0f15c8808802afc894e001a93cf99ab829c1ef2d0eb833418a2a367d11710d2b6f218c45468283db8e620bcf0d465c74c05bda55c43b24334d54587d20b111c2be389601fb07ea2c01e40659b6a3441d00c297f04a190ce1bdfdc2b72ca40a84dd874132efa702cf689c8dd4c5965771497c423933ac214bff00822c080b6d820f723f6865a480d6b7d6620dd3ec200ea997a37994261897b763dc02ba42970cf0b70b3e8206d55db87e57c4c3323c92ba272ff4c010d3cf08c3088114ef0c0b2e1dd52082e108283db2ed9eec64c0478641f109de2e63aac2e9868b9de330f963840ec4d4bc1d0bd9e3e13488357d05fc32afbb00d9f93c99181e59b0caf1c20b24ecb0f1001d769c30abf0af018d809c7ca9cc654dd7ed1c800b8f28d9c1704cc4f2069c41320b8462191c1e6e09a2f6609af9eb1335278e00c3a23429f688b4a3b9707e6d82ee3a8785c918e863704f6bb9a9a4016802aac41a8f1cc057750a0890aa90b8286225473cd051bdff00b22b70770106006a2b008155d40492d02d630364c375dc0ea871551abacc198551711915bdc600b7b540293d70416b901105176fed01857e5954d6ccf53c44a7b809451af12c0a5f6445406d759a95641d12a175a5e65f3a11b4f72fff00a4884731332868759b8a6867d0bb8164b1621108be12d194d95516ae12dbf294fb38599880492cb59820deb2663c2c03cee560541db4c5b6ab05d4b32f78a1618f8675098c6d2fae7a89655be952f515e4620301f6cdbc427111d7b8b486fd0aa5e83f87ad6a067d2e1a26579835c99866ad952dc4c44b9c6e15705ca0e54730a5942a3a6e41641cb484412d917c23768d5fd08dfe595ee1952c68fed0206b9d80e932fca61440cddef70233be3b852e470c14a12be960a68817d7c146aa5cbf5bf45c7a5cb997d0dc62b297bccb84df136651eacc2ecd7cc5197b905ce28fc8011aaabc08a699f4fe98940f845c01ddab847f5897b8a3c4dc551a17550cb05f92142c715515108a0230d941b10505af021acfda5e7435a81b51e3da1de14c10916a38a94b6a8ca8acca0aafb4ccac37b8238989453c44a5b5c0c1ff0071321e0c86c40a4ce229816d3b25d36654402d9d656c6a02375e003cea807be22820b21f0115cb54adfe91b4b286fecc29be56d48ac8a2428b910b71d9131327da09697fcd0426229bba470068d909ce93c90ecc6284558bc59f32df68186cff007731e939085c01e6123c8f954ff8ea5e0a60d8fc401e8a830fccb05a4c405b49cd7d01bcc6472c0c09be017ce567df0afbb47a207bdf99928a257f6c43aeb7584fcca8283c4304bc6169b6bd8a0a033fc2f98cad07ca04ccf9ff00113a8f80bf51f4b0f04fdc74157b13ab1a9b99e0570469bcd630886d8e0b3f11a40ac41156ec4860d0de22a15d114a8513c4cb922c520f116d9ec856112a1566b0ee20c5ba8281037091742c079d48228aee20b1daf50162c8b9b95e1fdd95ab31c9874820208f72095d2f10152fc3ff0066315f930c2bbc518b64cbdb0e19bb85cd4cd41d37a410554ea6405caa3c5d44f0c523f02363912b6869ee05067b470334d0331143008a1513ad8798164bdb1182a75c43283c752a485e342003e99edac4f042b6ea5855f8e2cfe7fb8b557a63aa63432f52ed226a396ddc4da8fe51cb087e613c4c0f29685f745b9925d5cc9213ed2e2b44a6a18017a8446a0c9e6340a78bb96ba2dcc34ef8996efd7b8fa8ae825464fa83ab98d0818895e451605deee2a7a62d42f9fdc879b6776803c206115ec6426a8c501ee898617b65816e3c657607562270fec8d133a11899e77a22e0fba9f8a3580f63776a867239b254363688e29ead2c22a14990aaa575ea0220793248f0c065dbb1f7c594179de170ca1ed2f2507057eea3bb49c8aa2ef49e52b052e1b444b47dd0251fce23b1f941029f7ca9f8a502128f74b8249515168e90c3708796194056a23312fa200d2c095552d54370c993dc52833da05b9e60b05a8bf5300c89674ea28bd4a312e59dd4583e85c4a4c19762a0b30b94f51e86e1d52c9f74be3a89e07a36802b799f1a837025ff00908b11e1a047481ef92843f07e9454d94970811ce1bfb8ad1e87f4e824b5cff751c52b3ff9646d07406cd2f08e85096148f509b0b036405b8a8d77c4c756ed0bf98b11f50417b7862b6c45a8b3e634142e7cc60a8f9ccbfb165241454af699501bfccd4976a117f20d012a7d8ca174743da6a7bec640970b0334c88ff0cc2ec46da516023255c4b03e87f62005b614de62d97bea543869e25144468d00d1f8627d217f31f60c6ba3b7265f50fedd7407ee2b42f1c572d1f78bbf960cc2f22f921688f5957e3a81a169d17b8f170a829f32ea3b4ad5f98860da6adc091ab2d0a8d26f2e2a5117340c1f1025907146e22ce1f208080ba158805e2d960ce504ac79240182eec84d1737dca6b1bc7313ab6195d01fb864281f794871c970074181d94f69596548d84c3ef2830b4c7513f72ad5b014188c490f95f89724cd62b308ba07482987848f1a605ade6c1fb44bc8e0cbf2555a48cf8ad40110bea8ff00333ebfb628d8f139826d0d3c13f484410d9f1065617ef0681dae06d4b926a33919ea522ac857e02b0c1a867971517b870626529831e710417ee754c70550bd70cf2974878ca5c50c0f31e0f36482edcfb6600a50cc29837100f2800ab2012bb860ac890396014bc3281c8ea54aaac2323445466d0911934c02e5335b5f314ed6467c2205dcbf776b70d8e202cd5c0d188e926064a7fe07fe44c9b4c200828479d136f468528b459dcee35a87c080032950097382419d9c912252dd41cc364a73b8f121de5a663383dc81a8c8558ccab2eefda002f3c4a9602df2b1447a0b441621a8146afd1068f3cd4366c43003b451027d112376d7300730900625b1382906d30b4e184a68438a8792287f1664fe3c68ac7ed9bd6f2600a07e31b7f831ff0089964276ac1e8a7d93ff00013ff3b30f17b67fe7a7fe56583fa71473f5a29bfaf13c9f846aec7b22d66f84083dbe7ff310238fda33450a0f89ed2fda2cb7d3687a99f40e2a14cf24b47be52f798025252a6a9dd1f6c30d128e31114d04201a826d87a2e341b3ed880b7bd22b9c904ad7ce5f8963b5144464d79fd84401a767f5411765843f9220969fe5732acbcff04dc2769fbc08f881005087c1149962e1cc456f1ef3279955c55dc7c21335fa42c90a22b1514aab71edabf13251d770a85573645dc8716e14722e5a45e4fccf252e247fa858b494444aad20b46dbccc6aaf68f4afca5efc896bed118d80d6a3a0683644a1c59c4cce22f04a41bd7040d942a762fc66534dc68359a228f2be3862a0a52d012ec1ce0b472f6560fe99e043567f7003b4fec6519b7592a4a12bc88802dd4f7326f5962fd40c3f136948a8ea63b5a16085d79942a720d452365e2513b7981a9ed820d0f30e1b3c41a69712ff0044a770a0dcb2a9a9c9029e60346efb8f3644c99606e17e42176d38f685deff00102d607bb82d3960c2999c6aa276151b68a8c191c62640b3c4a19604011ab2e28502f3072f6764bc87ee3115b5b01018e4d15f88abd098616286ec2ff13aa2060725879c0af7c1d51ad05ad50b963e5d450ca734d4cb91b68d4c00440a5f2c465da6b625eb0fa929436e1820e911c40208523a62b57b6868543cd066c1a731d62ae5469c7b24beb0cc628d8d3501bafa3c4450e4d4d2a54293a389826ac8caaa884485b50aee595772fec4232da430bc4310916167f71a1ba62b8edc409a36a8b54aaa026c03c7f4818a1cbcc42ba2e8b8900a21b096d63de0965f50467f16c1a6f99926606a286c34cbd541c9301709281ab7082d9875bf6cbc024f1f7740ebd8e280c4a65a45200838795abf129bd8284800f625481e3d0970cb03cb10a03e82c74c37b94bf03cc0852dfc40c2cb562b08736f896d6c839d92cee087329dca77295b805c6a63e621e621e657ff00134bfd67f9a9feea3fe49bff00481ff880ee742ca56da8f63027294e1657b879cdf729dcad6d9e66208c90601528ea51d4a3388efc423120a324571d4cdce4204a02fb883a0184d0fbe95b3edb5813e4b997b0891da7005cc2a3f5e239c79811bf818b4a7dd41b457503eee64c19f7986a9510c27c42ea66dce218bc93f528ea5c59978965b03c455ad545c029141a051297c1157ca03e6253973058d11a22c8f591b24c7c7985b26c8c0db56c1eac29584b8193b865a8190ce37030ee3e43a12256636ac667b11c08c6c853ce02f0a43a116399660ee01527e217ec38b840a6b81cc373f4227a3abbfa9d073504a5007796c8ec0430df3fb805489852f21185c02ca2db15939819a362dbf8f710f5f407f3043c3d26052c76c1f3427bc0036575502c5df573c8bf78b6ce7cb16173d914149279b7d87f70b97f4c1688bc3319930c343f3001096ae0f12ab358f7801b6c80ac27d4456c865e229a80e12917e20e2035c7dc051bfb981a199ab77ed1f8fa96178b81031ea6fcce3cca6e375a8adc41132186bc40c4cd6ab089963379d403350852aba63349c88e6d95d4406177e65a0159b544ab105bcc4547cb110dcbbda582820c36474b05e61400d7dc116db8e44ab059ba637fe0204007823f2b8aa2af01178b263301572fa9280fa7254015ee6b6c116f1bb41a390087dcb8529a91777da987a745c5ebca04aa053b20f622978d45bc663a6f12d86c998a2e3e05cbe2b82588c043f4005cf710ae92a9634bb7c770f3110c408394112eb0f10a64f88643b2770cf31c31c2d900020e581f51dc344c5ef33490cbd4361dcbf433296cc844f7abefcc6e023907d086117645757c1855a733485f702563d1b96de77294c398a699ec47297806f9776c118078238955516b88c693c25bd28f2ca2f30c27ba187a477bf4bf58419ccb98631717dcbf70570da5e7c7a0f4b94dbd1788af12d596d6fd0cf2ca838cb883cb57bcfd1125a7d16335f7c847ea2b005807a884d8e5755fd5a16394ee652a04f02730b8f0c7a28dcb3001060338be22553e5e1b502f923265f8834683e20baccb67a8afc4cdefd31700f8898d6634322d29ab2664166657881e2003833188e5252bb8e67e888d296b6095652989460819d4acddfe637185c15b433064600db94b8560f796aff3325d5c4eea161502e752b454d9bdcb2c95f312ca5c456267675cc2ec0bee3c116df80089775c4e181873dcb2fd0de2d4570fae8acc35a515e67894884edaa1e3cf61e3dd977c4241697c5b001b4a7005890d83f000230a072b7f7b96d49e19964a5a057d4365202af1959a6c0e114dbb17412918bc4a476f6c4b103087119896819553f10474bcbf300db2a2ac65acc32c87466e607e48d387e12cbe84472231bb9b02bc5a308b52d289518c40408a2594c5a6ea52b8b8ac4186e0e60622f388d3b256787cc5c441cce21e817cfc9048083aad41ed67cc4cca818f12a5447a8a9b3da0f6a7c90321ee4f784a3c4c5cadca885dca2f328dc4133642f364f96e266f1711b3af31a70824a1192ccf8c1abfc8ea14729ec25d67833889e5ca638b45e0234302660370657247a0850db190056a217bfd8caf895a33b6fe264c77e3faa5eb37f9ccc206ba49835e132be90f36dc0df284d95a0786e541e768ff0032a147eb63b7314244a9870d0104d8d93a632876cdbc42014524c1dc1e30425b7e12872beb142969a62042bf0cc38c7d93257f1c4e1f90c6b6b9a8e6243f42184e1ec8472ca794ad2bbf7c0031f89b76d5ec99a68414677dc1b85e6570d44a2ccc2f7894f51cb2c0d23536e2a5c41ed29d32d73b1ccbd45c7897f72c97ef2e5fa63b87a5e3d16dfa5c2106bd07b7a3a41eec02ecfe119fc3307daf83503528e49e583b2085fc64bc87d69545f6ad6170a7abcd357fc712d7e6431b0fbffa9c8f109fb969130d057f12d503f3898541990852cf989ba9f6e00407bd8a4905945e1143190f81f8221cb79a377f273040a6e8455a03e2146d8dcf746995a95d6e5832e6357a1318ee2e3ccb736c1d671e97e6723f10abb0cc586598b15351a87716c4768e020c54baf88d86bf11e6ee00f311d4be42605041ed3d88839602f9b87e494ddb5f30fa2f9462ad5f3033dca6ff00941b63166cc3ab0a784a52550c27977bcc47d09f324207955dea680cf6111c8561b5479accc9c67175ca82f8c09b406d6750fe434162cf7434691c665e003ca35843b744b08f572af78955b82fc88f5d983bfa43b551788a84838724158a31bfa79eec61be26eeefa940e1b07eeb19663d72779940a863a99da5fbdc6ea0cc2319e42393d9d0f9cee02276f5310b0dfb42300f1175e1f1ccba1f742a62c8ba24004153a624594ea6828849bbfd32d344603a770469a843f303e623a2fda17111fb80f9840b34d416f2cb97ff00c5b72f26e5ce7d05c417508507d16a1023d4623a221c4f7543dd0ecdb301b83899ff00e930debd78f465fa8fd7a5ca830732f1b8c0739e440cbaf222cdb77b545100fcc21f7d925e027b5213e24301d83fb301c0dab867b751fc889abe28850df19988a8bfc2dc4d27d8fda797300c1c5486b8bbb52085ee21fc40a887b90636e4c010750f10bc901b1d1ca66cdf74100553e7066790d8fb28acde78858457d831ea09e1fea63f2b9ffc405a23155fd251235fe752d831d2e6c530d1a6481298ccf1595616255c45ed4fb3329960addcacf88d6ec86792a7c91319262b8f99b715f1e819c40fb864d907f12d7e7cc49f7509697744b9b15e484163e6408f230fd996c274c47002ff004d42252b589c217ae7f7d0ca4f387fe423a2ca46e99cff00a99f27842702f210283fdc270a1ff0cca8aaecff0028325790e50609f9c95547e5ff00115a557757f530a99e2813cbe411e1f4a4405bf32265c7b6d0ff00ab12a637c023c2ca69716c660fbcc72cb5025d0b02c1bdc28bc87b10f25cf72741fe650768b4ba45506971792d0286b51526e5bcde257d437d4a5ef31e91bbaa659d2fb99f119497db880060cfa3a94d5cbc7e91c30975b17dcab45dc71689f31d460ec669a580566508e51ef34aa04ac6412dc05f06a36546b68a94a666d57cce9ccb414c10b5c32e5a9b8a2ee1cc33bc92c5803168f6cc0020e8accf684af32e0a610f94474436d5101fb44c932e89918ae73984b1174a4b951d4d0d7ec3f982b31ef7e0882c2bff0082645155cc206adf15e1ed39402e220c341b743ec1012e1861f8788030f0d9f72c003f912a124c5e58f6ee3170f848053a70ccb2917150632df064fd435872514a944a47020be6ce2a22b55982c5c0cf1f3392cb770dad3da157cd7510a46a15649ed3a1fb850c8577296168ec8b339f98dd54d4b666e616f497c2350e84b73114b432c305ce65e169708205dcb4e61ad7a90d446710d4689384b5f69ccccf8668417de258fe082d41c1afa943641bd5fa188beb72f3e8fa5fa9e8d384c4200504bf4b97061388ccf52d970f42fd0db9659599873a7d104323cc4aba230ddfd3238dec51ba13f84b017790a239565ac049775b617080a3a20aca47ba0835b8886dd2f14c46a2f254c25388020ff646b077558c928092f01f4895a30d6913dd13a4ff00a03fd98a221a60be9856a0f37f116d23b701832c9c069f2968325700323bcde87cb067032bc22caf307cd80be65064bd992e06939e0c518bda0d4b353511bfecca3a6aff00a312a29e1401f208fe622343564540952364baf3b830c18f2a760f59544f390b7c4a21f65f8bac00ed9c5863f0d0b1086e85af99570df21fc21406eb1f9c54b01cdb23f73df2c4fc42216e77282295868710689b09b53e5bdbee18031058c2ea842a707d4181170c989462e739b9f2f43445a2294b9628395f99934c3b97701497e5946a0af2b0020111613ec469b313b189c1cfbc12f93e20dd913c44cbaa44669fbcc9765c1d668f688fb7bc286df8952e9f10336231798f23f041852ebcc15ef131b6de88ab54effca05f1c07f31d106d70fd9109a71fd91a37529e2359cbf44ccce26e16e962917e47c436bfcc9401a62d5bfa2391568403c4596bccbda8a609dd47b3f11e19b96372a9d67da174f32d395ed13d7e31da5fcc0d80d2d3b45f1f8834bca5a798b3996747cce51022006003cae5e81fb129c01917105c1075d90696051a998128d5a3473fdcb11b9c07c43019a760ca179f9510d42ddaee1292ced9842a1bbd6b2f721484e530846d62e9857a325b3d8ca8d5b7808e09d094d60dd2caa25a3f119c87859982486d22fa8f1f1301162f27f688af8e3088e9bde0ee12b40fbb016bdea616879628a2e625d32d4059cb1c31006da8239fd4b8c3702ced2ed204287ca682a24cbf3284c7e63b4bcc31cd0c9bb9ed0b2b940864ccbfa83ffb060cbf4dc3cac3d087e661c6664de679373150712dc6636618ba5fb95a29a46ef533ef1a3a995625c1fb979972e5c12e5ce3ff00a65fd4f68cdf3ebcc7066aa59dcb2c871985b8953889117a6506153e25f62301274fb88f98f567bb1e84a8fb93dc4e27e7d283894a4ac33005188f41335a662cad6622f4dc0956db8d52d5f553904088cb2242879c9295a7c5587c4534d8d970e4c0f29044728a2ffc80146dd08be6702cc898aaa36025560509de1693aafe48c934dbff00530984e48437d89c5f91140cdc1afb665852deaa58f972cfcc2213212173c78a67ee0a58b163fb80b6c8532bea3580959fcd330a1cb110981d4c73ca46a9a91053f2ff008a5955ddbfc860d005706574402fd9085da100e283154952ccf02161928ac7f34c5697029fc906ca6a26eb441cff00c855f37ed0b35b96a89265963958131770c8dd95e61bc61863ac434c246f407b22b652c7414f3025669914afb107e57ed0b99dfbc13391d42865b8ab267c45dedef30ad54b6ddd456b6fbc37b9632e88819c1dc2ac24155291d00bf4802f35e6a704a9db2b263b69f2ca78c86d010c1117a879281d9c44bb6708fb9d4c38d3a9d9c0cab8cc05bbb62014793c251309ef32dd9f78b4120d59033562c2059e252969f9967375f9836cdd7bcae61742b1ef3052fdc5832a4b6804a4ea2e145a0f42cc9119f78039260bcc11e04e2312c05547b931d44302e29cb53e5751ad5b47b4f6625430be252b45baa83c0dec4b493d5a1f59ee9c55167e22601c2113460793511834ad17e110045c06e655e1a21a1e2e2df9662747ea0eea551119f4c8352c74a91605b50022cc8190fc70fb2085bd9641296bd4285963b8844019a0eca11365a15ca586fcafcbe2016fa02600d7eb1050011b422c2ad6afb46b19fa9cb6a90fc43116d084f32838010abd7a1ce60b5808838d3e214db888b008a0da5c1f64592be08015cc74fe582051e20019c4b78b25035510a29fb841cea20bc661c8d32fa833f7e8421095aefd2f30094a3c86c8d4fdc5ce37063346352fea0cb60b2e1b4b972e7ea3087bcfcc7ebd1019205b0a40b6db99b2880bb7d469a57b30af14c4011cfbc2d4a57bc0b1ac505f3814d9af32c1a1112c689d479c5c2dce1ef3a8a4070fe651e7f516eecfb4b51b1007ac41fc14301a1f302f19f110ff00d4ff005661fd57051d13c933c9dc2b00f665fd82f223486fc0f98d781cd54b05b4450a4a61b6c61f694ab17842dbe68547e6f79b2d7b45d1a17015a40e8560b740c1e20141bdaebccc03e8c7379d0c1ca35868130dcac6272f77484375b822c2a5f382228055f4955544097b0a51f89681ec620995dadfdc15d5aee32c0f05fda0075f0222e4fa82e1551694ad7bc517205c2a366002078551b383da03b0fa2346a04c5148620345450089a5c2f56d5cd343037530bea56832f185f30b74a106c6cf11ddd830a043691dc30b86c80fd4092a9a7961c8ead57f7984920dd17322caab53cc9ac3fb2002a561985a7e1a64798bc1e8ea6502180f79420f16458a581c05fac2d89c8c41b487133234b982d2abcea51566ac2d8412f591078f8cd4423f72e51dc2847a5032fdcbe36f7063907754b76ac60bfb94417940c1090a9004be4f93f2046f8556fceaa8597006be22636bf8183f71d501d0fe9023f2c11e4505548000b7807786a06a752ff2ea3550a55dc6c8402d387cca395bf55050d0999b49e634f48bf5976c5726a16592c6ee28edbf1006ed7b933737e8c69c2be63158250f026ed8b9a82ac325c15bcfe11c8163da5bdae51a3e24230ee19514be5e1047a081bd22b9f5473cd10a265040a8bfd398d68f985fb4c6136bd9f30b51c85062bf6b0997ee60470d158ac2b9e98cb49d06cc12acefca620f9bf893851c770cc283c1304f6a24bd81d46e483c23174a06930f487244612bc04a0fdd44468fc4ac7996799f30f31a0de095d6fd00deee5eeebee25389943690d98997ab94de618a871dccde3242af984f0b82753139d4a7cc4d61bf4007999a86f70c0fa10f41cea3af1ffd0cc41fa94adc5bd30f4371a7798c4f0814f10beb313b19b4af41ea2d93886e339ffe065f99b9788bb8a631982e72d45d4e217d9072c3f0cb6b69821c7e27ea3f6475e652f39993c4a6330bf3529cc36563a22ec49e58d1c4662161871363088744b8f9840bada6b7f8a55dc96514fa9e05789f6418efee0e63e65096c989843ed297b85aef110bf32c7254b3bc45c0ee14e4fdc295c5b2d5f2f30d1803a8ea0ada60541f30f4bf3115b9a6613dacdad28f31271885b87e09ed61915a80a0158e08c5aeac12c04a7e65af64a23aeac8b10b0d67999068eef531035c8a83a58c48e94469397a2a10d8928f9870cb742883523fa0351812ab5f63186354348e54c4be492a10f8acb10a1ba304a8232b82c5c6a2eaaf71e268063fe95c54536e454dc1fd05ff00296c2a7253da3a1d448c15553a6059f2ccdaf44a1e111a98e8538ee5868e1463ece6145790057b7135a2729f9b882c08fca1c651bb2c0a8f6a17a42a883eab9fc4a4caab2c3bc71064c90ac5f772941659604555e501ff00411de6274cdb274aff005c083530a16e215411af79ff00330e86145067c6653395da0c5f4e14053d90f5665410176d843f04016142c1b5a0a58165526fdcb71c161f110c1581ff0020e9337f914020355827fc7cc22a7407a8f7c154e71d2fa10a92cb6d0fc4220b4b89b9f646a1591557fba8a99297a7f07cc2e107f299183ee05dd9d7712b63d081a6b17e5005a7d406c17de25b65329045485039f6838f31fc4e5965845cf1ecc0ec1eeca007cc3b6d0aac570adb4638b1485b412eb4c0b019201c2d06ba79be2a15949c61088235dfb18e7c7bc997bc06ebce895f31034ec735045ccd06534cb8e1f70d3e80410344ab7cd5c52412e9a7cc1ca2d708a500c15103c9127151457189701c88dd591f9411751dd054b34f05dc143af647d8474989662a348439ccace634bb201fdcaa6cb05797d4b68d5ccdddb70087b6273e20b5accf6416b230b4c1f30b162aa5c21e5a87832c98f985409ccee139f53de040f52ec8af570cb4cbfaf411e872dce7c4b9707d1710dba9630c412bccd3799696a82a842cbfb8566710831f987adc1181d4a81e653ff20312abd29efd0bf88652dad5cbf19965fa10dcb8cacca6b432b1a9b382559aa7de279a8d9a5fb82d36306ca2ee5b465b8be607ccb5e1a85db9665f6968f71cb90fa8a0e3e552efdfda69da7bfd61b368c03acb17d01157987bb10a2dc00dac6af066363ac4b6b751c81712a34fe602aff989ee284beee10eb6a17293aba8ab72b608ac56b7885a578155cce8152dafbcc1408721fc4b81a3fc322000dbc357c4110a6fa17001a1e42dfee1b1909b6dc4a2a1c1cf98547b8aa738652281a1f48272497ab77c8858825cab1a9666f0fd519d26fd137159a3201ef199464c2c8350323911fb5d998399a3941c108f047cbf2310b3b65c87a1da770a88eac2f2441456f4e480242c11de4fed315eeda17024dbc038f04d5180025bbb4c8572662721321722ac4f6e580bd160a3c932c2704094f23e460710b612cd96c41f94a071001fcfc1083d20fbff009459727022ea09bd6ae5ea29083f4ed2305453fb7500c1e50cb55c205832c22f19d9ef088e9b65f18814a8a2d2ee0084e22c9813c81440e3e20840165fc8f9dcbaaca452fd9c4528bc557a82ac2d7e22c79174c2324313da352911e5768e2126d87f8966afcbb5cbfd732989561e0631d6357583aff2e7beaa177b80f0cb4259053fc4bc812c3bff00b31d4adb022d46c837ff0091f7399c45ef5515690a6ec2c169903abcaff13087fc49e5a6523ed0dff47fe46387c350f70ddc0b1691af0d41f2e6668197583de22d2fb8d252508ee5e68b8bafc25df2f88d74c64f98a2c2bb8327c6d4bf0db2d38320dd0b85894a054ecd5ac0fc629959bd03ee6227c84028490860007dc872005c2452dcc31ec2d3528016e886d49b6aefb85401f01305884594786206a8af1299c31678a94032de6552b194e42c00e3a2643dc72cb1139ee6177045e526758a7cc129a8aaed29ce600f3137337a25bd950beb1dc22771cc3640afe618619bee5ab0e26aa23b841ea0e21cc7f1049689c13f301de906b8a671d91d744c54db7284dcf27335ce7d2c97e7ff008b97e9efea4e3735ef38979f4b838f32ddc32f453afa8458f0cc750de185fbc224bc1505e25b7a2283598bae53c25cbce48689641262a24c5442028ea27a665b05ccd25ce352c94be4943056ea055eee57faa0d4b2f71dc35e9916ac859b6a16cb6cb8358cccdf8956607379799765e9e267e20f997e7111bb9ce1cc5566ee354de6b7883b694e2a5a25198696a978f135047035748ac2d58a61205ab2d12c561c58b886c2ba181bf2a96efca1958b9cafc466eb2ab27b210b1c9a41c0c2fd2c23fd110017ed7b3106410260f48fb3a08a438fb4b4f9ac4af258c9bb97b81d97f2fea3021a0297b10a466c5465af2dea3293c80f74431a532916eb12cfeefe2551acd4071fb23c0a3c5051460da613ce92de47b678d8fd4af22836ff00246dbc00bf02056858fe9fcc5e237b0fb3316401b17bc82a644a05ed98c01b0c980c6bc8441850e13e120c60cd0b753640864b6cdc27f99dd5a864f9b982351aff00a45151eeac46b5339b0fc7ea1ce77596f2dca820dbf28866167298781fe61817b4581ed29e41a33f6ae2776b6469fcc7a04ace071288659891d93bd0c007ed8206cc3faf11ee4c469d0711ca331c14542921b399665ee0009a872b31e2728cc580cb67b40990c1ee8d92b38ea389a218e8f4456995c25e4f2970a6cbcb370f601546819e739411f8cb37ba86507ec97a4e236f367051e4efdb12a8307cafb910b1cc5a5ece1f983c59ee6e0642156f1183cbafee792482af98c8e8d85fe9a8186fa83dd4c4cdc0d7e9e1941c996b6f72c142dca45cdcbf2ba85b557d4d857c443142383ee5b6941886e0cbaea344419d2588f43d862e0ce6d03f925055ed7c2045ce040252f164008b6e511332d7ab3704899d61f718a81d0012ae1c360826121cecfed186ec7bc5df023ed9819afb898688eab588aa1e22d14131d988158850a82a5316a375a8c556337b95b9ac9fa25e3299b2889c3e1b2ad3da1b1fc45ae07dd8706187446cc1707c85474a8e5a105c95ed0aecc16ca4ee2fbb12dd8d7a01c931f12bab9835c4327389772f1a23a5b33ef14c9a78988b18616ef5ef1cec07ee17695894852c74cf827319f11f32a567d2bd56afa95f98652fff0025dc5c4bf4770ffeab1e97f7307f72e0f997e8bcce25b7e9ed1dc3d6fa99f89f306bda0cbf32f15896f654e67ccf98f87305f88f8305d24b46f1fa82d6a2ba865a83e263a9f12bc1133882ef44b015fdc2c148fbc73a054a3c23274af68b559f532b8504b14309258f0262d8fd96215d6aac26a61a02dcc0bcb174015de7a95e60aa07e09928128edef3a19c0a45ae406af8ff0092dc82e1602595feaee014d3e159405db63dd1c3807f01376bf00c1e65c07791f695410771fb47e0b20f944a80c95f1538e657f02ccbd53940f4c204b5222f97fc803dd591eed165683d48bc591c2f941b3e2d108314b1a42c68bc1f9e3f19846515e47cb71b8597643dd0b9523117f8ff00c97b4ae3d0f09ffb2e18985e48076a2cb2f7a96b0977e2097be257c40647aa52bc9704bda094bcecb4b46c1c1d1944bca5ea3aafb25c019d5a27f2800e5a10fdba60338ebfe8824318028f682fc0a72cc7258db04561335c83ccb41f48e29f50c28af2537314063ffb69be8b08fda3dc86dad6d8ac000700009f32e1191605d13a8ebe2f17f6981b103178f2666a52a2df34ab996ff5a43e09d9903f673f280e7d70661ec177d4b5f77016f3d4ca8057bee54d22432752febcc6a2889b7499f21c5ccdd04076e665a6911710de22e11bb894d85b801fe503033e0b0e698f05d70834bc5211701422a4ece4f920b451a45a3aeff533c046eae7a4602c6b2426536ab49f6ff5cb0f3865fe446ed22d547d118e09b3a7a384569a8dc5f7c218063a5e486bf7459a328470f24135953a57ccc8aba7cc30e600109c16d6b69525ed5b1b41e85e155f80edf702d0f768c16f6f7719ee3848e16b2f98c203ac0fd41657e771c4018d1044a4ff00188210f002545c4650c20eb700a1e41c12d859d908194bd5111c836d98d38051fa4ece050b8142566462ecc789166aabce5fa8d6005a5d7bcb1b781d55018fada8ec0fba39d5245b458f72a15b7df999be479ab8a35918172bc15de6cae2840c711e09b944b765c2bbcc00d847da8f6914141125de3e264c41bf6834ee2460605327a3c32ce18cc2eb254b1c6666b589c2660a4cb52c79f682ae5d2225afe22360d5f244370584baba99e112b705f4c5569fb843adf528dd4f6c3c330b561840223e6577a884a89b95d57a2a64ee5cb8307bf4232a7bc3d3e31372a37c47d6fccbf307ccbf30712f3065930658b31c4352e33f528f685b551f8f42af79f42be22128ebff0094bf7f101ea03d403880fcca81528f1281761105cf73308ffc286e965359e617568ae032c90b36b86dce862f657da2489b77318137db8ba3842e52b49f84b002176f72dfd4162252200fb69fb69ff11a5c3d618bc83ef62300e0bfe0185c06f260a20b78256d81f246189492d9deaf763dade8179ea39f7a1f78648085bb01dd5e3ea30b095a07bd4605b45fa425319560a2ec888c0d427d17f710bd5ee72de109f999be3ebf12914590ec435efac63cc7f17ad2e02438bec798ddb4a4060ba06eff00e3021b57bb81a142ef350d2ebc440bb962dc01b01cb7a88525e1b86c82c2c63e21746863b20cae942f9c13a52d643289c9975fd4c6a317413205e7ff004136702fc210baa314aa39c1495a5cd6164a0406bfc83f98bdce6e1141d242bca71158913519506cb008bf6a77e60c443550bc675f8471b222f02988abf21f965a9859d89c63a60602d93cefe588d1d29f9f9a65e80afc34e5192841d2edcdefb8cab289f21feb8c5bf4fce00a26eebe2620e3b328288d435aa727bc741568502b980b4371145f11158618972aeb70afc4f86e582c61f2c3a130015f83f7320890ab6723805d10114774b0147cf8fd4687fafa2ee1192b681e1cea08b5e4d9f94410766c875ef1d0a53cb74e255c991ee15feb96e55bbe4f2dc70dc628f70eff001055994689e9ea57e0635845c110d0a3c233990750ee2b2fc08e3f004007c9bfd47ac432f47cca6095a7b464a790981fd4e41718275164406aa8d0460f256d47ea2c258f7185168e394a11d276953181a36a841812adcc0952f3c264f1d30fcfa20402801cf36a17072f2a896605a63c9be2592bcf84fd43bc90d0c27dce209f02bf911a863c379a3de31d955f695391944167972327cc0841ada788e652a640c0c28d4283350634df301b24835367355e2375408cc8e5a0ff0013154c20602242d4b6d02ca01f8cb20c2965cca1763da505416e4a112310899fd4d0888e239dd9ecc05668f306d08aed9c85860cb25f6858656a7192c960c1f68d34ad750ca604a74b89d3330e0fb4186fee02e11452ccdb48a3922df5108eb7f989c25439bbccb79f46eb10fccee7b471e8172a5543d4f5e12fd2a540950e6c2018c1063d5dc3da15c462c1b38b970752e730f79656f1305c8fb43962105e712d46ea5af6cf25cf76653cca407528ea1f52b206adb838294d6a2c32f426e0107ec80f4cd2fd8230bee1811b4b996a35d06cb3d412a1182ae502d682c5a4aa321dc05410481762f22e71c78493cb4cadaff3cc4dbf44b8a002d69ec97683a6d08e0f68017cff00280df05a7c9ccd8e4dc1172acab9763b9686b53f47910952b9ae1edc31b9ac7e95bf72ac384df64588b522def305d6efd69a969b457802b8611208a3743c431090563c8ea1893a50dc153bed7c7afdcb5a9dac4be600472a1fb413d8ed27e583d6f3b46fbac520228d07a18134153628f34cc5385cbe7e8128efb105929ef1f314168ad3f695d1e0db52c40795ff0028b3bf532f26ff00897fb945211b659c90f1cc608eba8a44bda1f057b5408390d3231ab9a6d93e3ff2201336018a879f4559d777e312e2eaf27e56548364fd00fd460ed913da7fe909c413da4aee210c00287c7f82290d1b5731ecc244e3fa91c2d94df8b11e00b6318f2b995d82a1d078757d54e647fe3deb8860bc8765f36fd42a2ad919adca8a2fbe9c10ab2a8c5f3ebf31320002508aabd9241f0eb30d3f51869bcdc87dca94079cbe8fcc1529e44a7d712d15c57fe07cc3318500c3cc5e0c54d8889b52cc201b8766b2c0102f49046d95e250673df3096b785fe3df712ed78cf0d0adc10ec1837ef32422b71030f38af6f10cd3ec8b7b39116e9815f72577e31055334027fba9681a4ffd87dd13424097576ee2b238bf20c3f98e550b117f0bd42b4675401ab205e55b8fb87fe40b7d7b76eaff00cce165ecaf880a4b6c88369b5a4982aaaac5fba08ccd0bbc416b8b87c4a41de1700b79e74fd4f6810a4705964410870073b04c91b7a8d4d8eed4d97dd3e22eb091f9a94dcb85107b388053d911340c633051e20d414e6162fbe25f780b2035e0b7b5cb92b4d91f887401b7dd84fb12e94cf38ca38813a6dc5c0ed5b0d587748d418e32ff00395881f848e55723054c203b9508e7b4b476f662a2c657dbf947139e06a553bdcc2b07b412a5bda14691f78edc67da0282c803dcaec4212ed43a84cc9f761e0087faa6f8865e3de63503083d7cc08c7e133d2a3d347b40036fe656b4b15616082561ccd330429b981c42eb7985db96679636d5b64196bd350587738707bc6a29f52cabfb1325e13c42fa831b8ef3f53899aee37e21b84a95e86fd35ed119871e87ff000faf2c23eafb45a94ea98846ce0618b28a78f48765b03cb1e9cc063ddbda141404b84b9a32918b972f12f102a04646ad8c14190654cbcc48e80772e40a1d5f32c2b63350e29ad2e98490aa7b6428a262af994c7d520b8fe55529ac3284bde03e6b90fa73f3738a85767debf11b059b85dcc10d0883e830ed3d970ad820c008e0b915f8812f702d7c4c4c8fe812ef7872c43d85ff00c42bef1fa30a371b6ecad9fd445e502c497a7fb70b73fd33e6eb10f0adaa0fc080654ac557be16401066722f62374b68cbf84c43385f47e0fb86f20302f74c14a9f604d4ae3d85a7f89a2395c1f3aa99431913866dbf8a961334b86d1131ff00a8fee05663dd02cb401ba130885602b440efdefec9761f3b7ba52091ded8b336e11b780b738be0e39594dbe1119a8720bf93718a46b3f4496080000bf0b805c141ee1a40f918c9c4606d7388bfa974c0e81707e0df881295c50fa2238de331bc7f2b3070276b32f751916a307e09504d990fed528860aec3b346e604c8c00f2e1ee6620b414227f2973c3419a755d4696a2b58ebfdb83b9b02fe192286ae4cfddfca1cf488b7df32905608a3e60b7d5208bc6688a2b297e52615a28eb5c1fee653fc287a8c5f2f13935dd8acb47999d1dc25dbc432906f0c995c777984042d67d12fe84bde9cc28415dc3f1d9e331f3301cb755d40770709ef6edf7281f7ad310c6e8ea91a8b6c7864205619f9c5b1e076596a8c181c5888afdb425e59cd4c9c53e06d9e66656e8c4ec658e25ada7838845def90384c3f94b4c48a0178bdc2139ac53186b44d1a061ae559da40a774947c596fe829a7617fca397b412b0ff930f316cc1f91fd446dab9a4cf751486057f8cf3923d0148d060d91c41ec87020ec4626d258955736571ed2d341cc951971305025e6f507d0f037c47e281d478351a6d5c1d4a936130084d142a63834350ddd7e5882d10cb4081a0f136c141738ad29d6d100047622e420f20545b89ba0d0fe61e543fe54b75c2ab64b228e809a66758627a12aaec8f205aa23045ef32001a680701165043351bde5000219432bee942d0bed3f5098b81485384b7b7cccb2cd4d1ed02a388d01ae2fb64f350112cdf71980200a086e7ee2396e177e2503454b6b3046a0bde5b9aa82cb6fa8ca3151038c4cd1d7551b334f8980fd454834d930695b941b62582970065f50a3177ed034b0f75007089e183381bf10de57cc50da0946f32b80485027e217a5d7995b770685048397c04528bfa85f11dcbf5b97e898898a60183d7a999fbffe17c42af9855e994f02c12e996ef33dd2959580ff00d8b71899b485107706592f1e862e5f9f42fa2e5ac39cccdfb4bb80ce67822789b867a8e14557bcc6410ec1065701b8f98b20f61e552a7bd26426502bfb07fe4a3732b64be2a194a128c8891b362ffa117850aa2caca82d8143c5c2548b1f65a40b06641ea65027823c7f1280b8e09e2a0ca6b49e4bc5c403cba3fb012947ccfea0fe51200192470f3001900207f48be338e49fd7d4c7e4e8440700f58c407d116f367431f2ea5f60110bcf881594140f1c13c93b14fc1fb817feb26731e2dc0c2e79da8f886c86d4a3d88c51dae2c8aeb38fd4bb05d13de2634178b3801939186c0076082009258a143fb0805cf5cfef296b099878da5142a08bddb7bcc5ab0a9479728232f017de9badf9885e01c5d54146a4a5c3f0983345b2fb772c77d2113de217e7287eb50064616a31e181908a7e80bfc667881ca3f4fd4b236d00fec78964c6520cf81a896116593f1159ff00a8008ca400602dd46d83f081e1dc2b9ec7f6171ad8601bbc7102226e7de2d4b302134c87e5fb8bb6498bac7c401baf5009c0b2720f88c1194b283fceb715b982917dee11e780e4e982c1982f4f5026aac445591207b26ff4941b006ce4ed2ac6e3a8bc2aa06c14cf988dfdcfb4f6804ee3a33c62317f3a357fe49c90c57946205d1e08afd4ccbbc2f264751cd0cd714622e6213c31b557c229db9865ff00d901123f5d13b2f7f10574e54167bc0ad41401fc310a321829f289a459862de6541e3259792577cb0280479412fd225d8f925df349b3ff00341a972b2fbc58388a6462423dda6056f96c3708c8f2b3552b92bc6b5127ab963e109e6b8c87d7bfe22784bc2707f9e62303c460572397ee6bedfc02bffcc3c2566f6fda662862542d0b95c31f68f30bcafcdc44bc9da0649a0b2c4fbc319a2f506703cc1b26fb8028181da1bd1f921085b2d571e257baea2e60b441d8a5bdb72c2b2c188c217ba4f6c5ce1e77597659d66a1c009d01fbcc10621abff886a527841a799ce199d5b980802a8978204a06730a6d899bb810d1b5d6f3ccb397c42c801cab87283ef1c3f32d5a588284db8ebee30fcb4afe606afa92c378782a179bdc20e486f53614e23b85fc43da64a856c97ecb85de61f88e4aafb95f25bc4d4090895941b6617069b971b6bdea701f912a811b810aed0c51b31d5cf7b86e14ac2d8981a60bbc404c3e606480a4c371c0b57069711bc26f063c42c8517b76370ab35f17117a067136acf689e2e0f1123cdc07c4bb3d065cb7da5cb972f50b74370b33f44d194f6a5b94861fd20032c1389e280753e33062c5971497f53f0972fd2e69172d2e712e5c611dc0cece7897f52ea8e21b8600d0b6858816a9ed106abdc0001cd90a377c2302592eff00b84535f844cc4d9103e92ab699cbd739890bd4803e6c2502b800fc8fee0c51a19834a60bb392005ad504e73dc0877df5aa6e5b3fb47eba83f1d59041d96b2bf27714eada23cc0fca08ad639ed0a664e4add2f27ce20350d40f056a2494580af2388cc0ea837e704a81f8ada4056cc08fa2304183c96ffd66001d8a107c332ce0b1a1fd6238a3432074ee3cb1c2d17982c2e080abe77f499ba6810fdce5a42be9b20aad45dbe44d23c7e1f80692f0fc6ac77291f22c2758965ff409be82709e6fff00256212d5371bca6dca5e782e5c6a26c58f387fd892ace4fb0bcb32f135405f7c7f515259050ef4ff0010f216f37c6c2b634d0fe1198691de721967890447a39251da90df36c203959d3c86196736591f1ff08dc063c08eaba4aca937ba7bb98f63eaae7f102ad28c53e3ff005801759017883e302c01f909432d62c20208a2934f8946d2d3d8788d68bd86f7f319c427ff00547097130df9592222c22d9473611000343a31e02b2f21001eb68fd0d7e230041c34605daa8a364b82b27825cfa30d02af0701ee842972dc3befe17022e434e98015ff005e7e6259370d4fd51616f4831e5fd236217b4bb67dcd7cc174c60a61e18c781fe11f701d81b014fbc191b5d4f89ff46220a0568ad14ee0003c1883f37040a625cbf49cc6743f9a02718093fcf10305e1475f09172cf6ae3cf300d583854e965012781784a23056c3427b32c0925ef01c7f9f31683b61fc78798ca4d363dc6067631b854446d63f88fc0b2e38f07417101a643b99a3c2f7a9a23ef95122a672b188b3209679905c57e21f2d6ff897ba94dbfbfe2a2970b00e0c367b5eefea69a4730bea344f382bea001e04c10d3c10ab30f2d40280750c02f23b95563d4d4b1f9834b3dd98651db04024c1c4548f3ee45d2bb6c880869b737e232381a21206ece47ba5e63a9b51bc7e2959ace3cef24076e01ac88573418097307da356e37280ecc15021aa3706430ee0eed14a89a0d44aac9068db2b979d2e8c09604566b7a8d30ccbd36d30ce9dc785e635ad9f04a591532533a8146ea23a6fda5d8dc327997b3f89ec6a712de91d64808262bcc28c0405a4c461b903468f837128177003fb101b5f725b63e9a630a61e2c836f78a8374f92f08d995c885c28eae2950585501a10532b5042e6fe25f63ed12b39445b76bed02ab485963100870450e710ba512777383919cbca3532d7bf897ef71142bf7287f697549c95e81a6728762606a8fb8753ea00680ffe2fd2e5e65f997ebc7a5a712fee3bcea59dc7a172f115ff00c830d7a2d0dea3a49dd01bb3bf4f9f5b971a06e52b52d78a88594a8a52abfb189549e6cfe5433fad7fb1822c54b6225fd6d7edbfe47f030569cff8a98e092c1f20c432c3b209cf47f10442f2eab67fc4b43297f69dbf880bd901f2b99a50bd0759ff0054161229fe7f10b2d77c9c2301805a66f46e0415457f7152e8054a95dc0bc306047ee9583e61844d6d0b381a20c502fd0944a8081428787e92e8c68a9e33fb8339aab083f9f3a83ced059face20d8d288f3a2090ab4a69dc608ad49f2f2fb8595011a5f8450a4860bfe1f3331966dd3b404547e008fd27305b40ee253b650dab93fa20e12b8ff59ef02079b03fcf780237909ef980c209f4608c60e059577ffa8dabb0a09dd9fa8d3674fe4288c40c8d831d54855b5fc9f98bb192430142d6f650e3f922b7abf87228d83235fb134ba0d13de21d704ff033081003a798d801c22f310e12f11fb83b5a334d6f98d202447f48a8b1cf57bc08be7bc123399e1a3b818af74053b72fe65c255f0f4f710d4c17e4bff03da636c780f2bc91502d275e655b76f29e211915aafd26f4abe701a61c2234cf7c681fd82c3161e069f0980b4bde3921c2c965a3e7fd50288b53ad22459bb68900577ed9459957490d165fc03641adb9d47e899c5a42b7d2ff0050a07342bf846a0656364e67359acfc6f5ec875fe6ba4f68a183d45ab0406f7a4ff12807742edd40902151b6e9886c25e02e2d2a2c59d4e9b6102c4573aa39fcc5070fa41de6c8387257cbfb8bc19937239fc6e589cca47da7f1dc2faae244354567643f8a8825a6148a6f6420963a2bee9b108103c7717152e86f365256b1eee5106ac5d9e62884d62791aaee28d0950000279880e47aee35a8697c5c2ab4757ed1a3f331458fecc13255db3fad0d4985d7fd3b94170c2a6dd4dc72aad6240d07ecd2894fbc4c807c44ad7c616796ae2c390c4d8af082ea02141cb0a03ccd26ca9b3c130e666d752853b52a1fb871821a080a3da0c7cb3f073b18a1764f94a3c4bf02d5383bba6824d186b501f8ae0c0b69408e72c06401127041a0398c03276e31a0ff003a970a7f696673146a3974c0773584c15683bb8212893bc40430f980540f285ab6208ef71192e3345a3cc228a1e25e25a51728655101594a50ff0010162c107587ccb8088755dc42b2a3a2205d3736b0f9219ac1750c2a85cd62502d15b86c5d10c4fe42163487e612e4a3b80002df5006e5b5ac45d968f6828b1253b253ba66ddcab830e5c456ee0bc5a7cb0c1e1e2088a286134b599a0c82f3f4201bb40d7481ff0004b3acc5ca885d17b847985d67704ee56e698dc3d1cc6bd1f4771a222a0e21eac6b985378801a33e8c7d6a63131788317ee5a5be25af788bf71059d12f32826d266296402052e4e9fd84e224207bff00c8f94ca5fa8ccd77c06241d2732a4f8dc60230945e0651139a33790fe903781700cf1cc2ca4c8f2bb7b608061cc8f9744a50de0bf16ffc8246508f7275efa8f877d35c9180554a7b0bc204101164a609e8e6c4bed608d2b4b527f93fa8cb1a9500f1e729e26d1e5b44496c0e25edd421116873a464299366fd3fb8398bf27f263f882199e1379648f94084ff00c8f053c0aefb3de642634440bdf4b0b18ffc9801745a968d14fbfa48c7a6710c3dd04cbd1d6f37cfe52963f91fc9b9b00ba7bc1ff8882c837f041fca2949b8f7add10abc58458ee0fe36a6117ef00161aa7d0f0c4b3bb34f883af71f2112a4557f207fe41bdfe570fc21b3b255b886cc8c0b1946236a165c26553341fb821185563ecfea5368926eff00df72f911f711446112e68812b50e09e1e930362781eeb051bd4d14fe25f796cb4b2a004d208b48340a88e5eff48aa519857808ab408a357bc502b087675ca170cbb9ee50c61a2a5059f84498d1c0f08979c5e8afee19c64a3978ed170cb59e7da0a48a6587fb834c0036440359b2014f7ee7e65e49d51815effa8bc8a80beeb713149690a0c9c155c05190fd032de82f127f98b4002cd078ea54596bf84631b705f0cb8d18e560a92ab2367d2a0259070c61f92582090a1dbdbea0dc8d907be1ac7acc9f844ca9401c9e2a999cf9c4d922550fe7a30fd2c5716daf831ab95c0ca9a90010f5b9776c4ba02ed471498a97c0dae09cca80ad7f44677094fe85b46198b9cb1339a6038c304bc44ca282682facfe39896b8c1079d4160cbb039e09f1929179e7ea312821c1e268cd0456ba7e5106e18223bc23650f830fbfd4497984f1e0e87ea66ab61a31dab6a5d7f5032ac2c31fb8c94f8afc8d440e87f2866ccd2aec1ef0ac37c512c391fb951af7988b3020cb3b92e81d138cca4aae1ed2921c18b8848b379a83c89e4d84c5157c5c1c6c1001227420a841ace1042c9ecb07ccba5685402b2be732a54bc156400466e0b4b27afed9aa02cee1c1e800dc06d2e1725d8a2287ca9658fb8442c17a3330b5badaa68803e6145d542e55bb0fc417480ed0008945ad7ab9baae788b34eac6a2f61d40dc5f25328b45eb5575040163a3128817bb142a859117e0cec00f300b665073751b310d94101820942569d5a86e7cc82ea3e6d06255fa880105828a5f64ac825f925b2a162ee0e58d302a285bc023a5212c8aa3dc85872212d65e5ce316f88ddb9dca6ac9dc2d6d0782c0956fea025afda6897f78131f5429682572462c9a2bde26947e60969a1ef30e9f31af290cf0b83e6732de22a5b7b2a5f9850447529f329e657cc4f53a19995b6583825f987a713e7d48ee38e60fdcbf5c7fe41cc1865bcca34661d099142dee54c57847ebae448f04b4b9c507b5234c6592069688f762546b1154c000c60afc93a386ac1e6546ccfb912839acca06b49dcbca029f4a9079e2150795587c21ea140b135e27209896f9fe90a83e157bea1ec8603332d409d03e1f07ec80048af56bcdc3bd98328f9d7d627f19415dd46ed7b6fdc42a48b574ee0cd6d2d0af9e3036e49537f68a8880d0bda1b448bdd3501e179fcc58b4e13c7f6637394a39c618fd455d0946a3de18218529b2fe5320abc41d212723707d4db8102df0dd89595ec93cd8c1772ff89fdcbd8250e886e5c18a89f954206c2146cd70609211a0c8d584c5bc05ef0ee0586f69d1f7751b0ae6cb3e1cca2030bf43989c550b4f8555150ac8cfb39861920d850697ccff00c334f1b813c5d915eedc3a002ee9ab8d55e6ff0040ca68942906610fb97c1a5b989828d378dbfdc67cf37bff0020a789a1a4e20a19a816714c022a320d5fb4be002e50dda6401d912c107009c43c9ca7876751cc3c1e6614d597a470caaeb0d57b2ff9b9c10b8a0fe61f607c0af36e20ece7011ed1aecbe40f1c46c578d3e8fe2144397ee8ff00c67ebec001dcacb26f71fbc531603807982c4530e9e53b89cb8f847c69f1284a32702f57fdcb22aab158354efda186e50c22178b2da3720979184ae12f241dcecf3c6363fea99d6155d65b7f4c4285969f200c30d8de0647641235d072398f697742bc84b45beb35f8732e88052dd7f12b8cbcc1bb1860b2fe6e0fba61f9951965af598286ca056ad0c2eeb817aa7fec0358b0ff001026729c212f976810b06523af89dd483ee2e5bc152f72a5870f1a1481718541e521ce157b2f2823adae12fcfef988c1cb08049506015c9ba0111c185e3a7f12f638dc91f69686efd8432415898d08fbc0ef04c2be4dc0b5681482a2afe0dc4808bea2432f9848d93b555e488ac391a0860014f193fd4b192fb40086e59841537257296cc7759615475ea09224e88c901d3d3501e9cc56ac3954cb9b839569e2e0cf103fb850718c17f6cc2bcff3108b7f4b310171e70731c625a5d0753d43c0d942c4b369174088583d2598e8dee61be0ae5e1b4f899325fbc659bfda16d5b43a8ab35af310acaf32880a1ed2a2dd4a56e00da2bf3136901b82be1b8c581caa2ce2a05a150452af6b9e597c41ad15170834ba9445c7570db954522c4640d54ddbaa955b706d567d4a833455364020fc32523153a9651562ddca06960b326055fb251003017918c2e5f9816cfaa71ac4671e639f68d5f33c22a50c34c12651f78538b65ab4416732c29606621c046bbcc12a2cbe3111d9729894eb336c114702cb5c04bcc7ca2fcb155e62349ae61ef0aa21f89c43b4b972f1c7a187ff008664bf64bc0e8f329b3552882ed8fdce37d4339cc5367982295985c5264a9fc03316345ca378884b103918b41d50135d0b4da7f9cc0b5f84e3d3dff110f140aaf8891b45d703e35145a862f26a79c54d31ca0a9611294d065a6f96894c81c26df28c74627d0d83468de1f8b19214acd6e4d72b70056d03fc1f7832afddb1efb7b308a09c03cbacce161288c23958158a31a93010738a603f4fd6e178496ff5cc1392a7cea37f72aea4a8fee2204d3db5462a1a4bce38fc0c049d929fc7f11d431bc0be61514d41950253a19ccef921e2334dc4e641adefc01f44fc79e250649476cfe12ecb40b59c171ba76ffcdfed8443b00a8ef6b946a6b7c9f700047943c1ff0050c2a79987e52c8abcc821654044066e83fe99659483f197995085e0a533741f3748df04e5e23307c42cb4e2a34c81c5359b2397a49085b4f4e6328da11f3cc11a65a970456265417da550d9742e01a23c9b272730f3d8c529485b06fa4acb512112d8640b89412d38c4694171db051f568beb2978090f78ad890fce2234ddcbde52c177ec9731e1a9fdd71aa44547fe10081bb87c27fe44d636cb0f3e21cd75fb91e1849a802adacba3d90187208e1195088bf921200a88bfa3fc43832395af88e26d97897dc3300d50090368f7141d4d2c7e9f6980f83d9d3c18c46924911414a750f0c5600d036fe189002e97bc52bd44af874cbebb3fe0904de38e87dbff00b29e277e0dd9ff00d96984724344e3170fc5451bc005b714fef52ca92c2c3de1fa2e6488ca5ff91f135220c2cbbb100555e84726ac5e102a702f19cf9d4289a02aa77e9ed08778394f82b232c7f6023e1ce3e63d64e5a2bbff00d5ca62d2d94f73f43300bcc887ee0bcddf9025fe910a2bc8c3f2f78728204830357fa437f70f0341903eee625e4a4b1fd88841a0b1fd27ea2d648b8574f313241c529dc5a592f05fc4ff0043cceb3fdc4360d14a9f2ea30ba787c3a233570075ed1a3066e3f992eda86903fea3598de98b20f430c0bf9ce44bc2972508c20d783f9a672166c5711a8a21025917618afb897d2c24abefca0fc28402d8342585bb7b637e7e0d6670a8eb72ca1bda80e9a6c6a16c1610a8bf021b0ddadb6e0230da748554e1e0867467c4a19b818c60f31d5ae20383130cfd8c296c958ab12ad85055263455d7bc6a74f112cd1f31137700b8995ea551cc0dd9a8dc059bab8afde369c441eddc32cdd4038d301b5d3c112db43de34b7684b3a8f78a32ce2c847003584a0d81ea1369a472cb3e58cdb5d9031b74e7cccf7196448f32b64c965b33ac448b9fc4c8bb2505ba85f443b6a21e65c1c4b87a14e63172cfb7bcc1b4fb80eee53b8277e820b683ccbcb3e8824dbc7cbea1820071e96752e5cbdf1185d4a7cb12e99472ae6245ac44011b265ce6154eebcc136ebb85eb5b9b7b2e15147f8a8701d07f989ab80d6ac94152d7c6918acd2d5af318ce22db02704481a17c4b0762863fb4103963dfdb8894d6d6fd114c066a855b0e8ea0ce20b112b069f86257251763e381891c31e71961854a0b03b0e6242e740da2aa98361eb52c07a8073d93f056e5fc15f996d0180af69fe676508045d3bd82f5e131b0d2b687e9111a8cf3ee084b5a70ebdcbf08e777e07f7217218e57fbf32978562974e498a4c8e98425d2b0e79fe49646d9903dde17e6282625d3ed124ddb2fe250b5ad9e5f292bdbca97f2666bc9e617b2f44505ac062fb4ba61ae5ea876186ac53f2449a78bf91067955729dc052c6dc7e05c705b392c1efd4074a02852febf996702d5880c2f597d1e2b509e9c069dc56ff6295f11f2d9ed975cb001c57150039225b05883991d5c464a8f3005031c107f8b071e10b56c3f27bd7c40a75c6969c3fccbdb8d9c7c3b980aaa3c0bd119cf15fdfb4e6a1ed1e3ac78bdbd200a980b2dc08458b59862dee15b62cc57702e6b6fea21a018d4f9946917887d9cc16d59c2fe6a62587194d38c0eb7b41fdcbe2559117f885e2788782e0a7ef60f15c46809765e59a195e4db32b7dffd880cdd747ff443f5a9a50e8389fe4a61ac7e2320acaebfde206af45b6fee50ada22aff001f30a689b69b60b22f1f7844e705d5aa996a11a191ce0bc7880a82e8c3ee3fb96c0e61b0e98a2291c11e5cc6a20c89af7ff114dc372cbd603f152d70953fe1e345077994f8ea22e51828180c41fd30fcc624d3b7254dd7dccc791691c78233ad24cbc595128a18c37df9890985a1f7002865cbf80a62907028461ad0845ed3167a0a48351525abd2398c90485abed174f0a1ecf2f6979e4aaa9e0c7ed2d29e3557461ef663f2c0f78bcafc42556d31c442a712612037cc0a17e5fcc499afe01142ad6475ef317e6c3f81fe4803ccc87f95ff002221a50959ecc432c954352bdebb4ff230cc6101a59a8492f803f681f1aff2296b6e4124bb20613c87d0ecb4dbf5048a1e4531a886758cb114f0212e5c84928e0432aaf0a22806556d97f5196d8a821fa6bccb088509009461e502a2ce98006083328e370dea5911f6a6f8abb10d9c04c9b303a10c56c85e69a80b0183988bc92c8c1e211d7f5393d089c951dae2640dca09e5982ec804a59f1324bd66ba608bc4a7ca5088e6220e889aca287734c3d594bc3f0d1031e0368be132c89e5343be25babc4ef5e95f3169d445d4e4d916cde260cb1170dfda582d82f3f329450c5c43ef11d811b72be21d86a66cc6258d608238889d54c3da7240170b20d689e760c60659c4e63adcdf3994ea357304e2915c2dc45908edcc4ba6e0005405c1ff00cf997071e9c4685c340628ddd32902e0a8864ff90f52effe043ee4702fa64ffc21544e176f7710ee0511c7e751be66724430cd990622bb781f2731ad90aa8cb2ca53c27a3643f84d8f82c61a9087f10440970db6f0d4bae1657c9d3da6cbc7f910f765593cf8b48842995c3c697112a6386dfc90fddf20fe28128a5b86bde60829e2dfe8b148c0a530bf02178db2c12fe31d1c5fd04a0bfe26ec7785fa808161d033190a91b17cbff2716b90d56f766c7f8933078e1247b2ff0050456826939355246a4b27e5d40f4f502b98b4bf74bf9816288823f2c0465754570c88180546f92b1ad90165fda3d40aa12fc34fa210dda6a1f056307dd00abf781eda8c2d00d08820363d46e9a1541e39822e9a403012972bf9fbc2b43d823f973f351caab113f9a47bfdd80a65806442d5fc1978d5e4459392e3316f3644076268219e114e17dc513c309f1f28f3eed03cea1db7bc9d6bce49dd3ff98c883146fdcb1ab91ca67da631cc0c5a8e0fad90fcc525ff0002de61da8ee2e791311c2d83fc5ef1833c0683c50424d8620ca8aba2001d208bbc4b0378220a03e445daa4ef06209574d3dd172ada327da04b32d0d4a2db1cc776451f80dfece626c52305cc39fc9987b8d85f06bffc87088066cff3704a96b1948d1c6097608bc295b15fd40ab7c135f700ae1ca2fdc84b4970e41ea129f170567763b896d68140d3ca7d444e03eaf8cc5fda20b196b689075fe090f94a56eeb40f30b356329caae215407b1d398cb3f8c0faee3940607bafdf87703d6db00757afb25e5dd8e7dffc6041ec90078bdc72836f5e52d70458bfec2085a0e07201fb1f3570a25ac49bc23fac41900502683f24e00e009d7fd513820613fce20188080f341b3a8b3f2172fed15b5f290081105010c4cb87e7d2c0b746bda8881bb741f49a24c5ad8e4e6312b03107dd7ca3a9c23fcbe1345707e9aff52e44a61035175ee2495d87700c0e6120959797dc0445151516743dbf718e0765fcc8a14c7d0748e84b1408f1b9583d953f4dff00444b04d545ff0091d45154536d2ff306827d1518b64d2dc663910aee36e6c73636d652e4b1d20cca08120fb85d952ca0d879e50a20a4f713b8d9a34b8109a60b960957da3dc23c45395b297603d26124b9adf3d46a8c447ac8ddc9295d615a724cb032ce3a86f0159afb957042a55110ac54c0f29cd58f3162a9b94b31d426f37f3158e65c38cc1158cf3999a07804b92baea1245f1496345e982d563d04338421191d0440aafd42b1b3b953711dcbc4a0e6a30197d8971cfb8864e54ba70798b4a01335ed0776e0b3c398d5d96034405c688df9d9060ee00c5cb2555c2ef410db6bf116977f72d747e6744379a3cb179ca0240784a8c1510ea6f44c9d4307352bdb00e258bc2695fad26b08783031a6537ac4238ce2a28254032aca9dbea985c69b4af1336adf3a82aa678e5085953c3282ad3daa96e237c041928b38210463c4812871f1043b608d65cd3988e5950a5e612cc91910f9948511765af32e22182223e533a07f295812f34f1b472142a83a2731bc21f68dae0128f708e856806ddda0aedd63b7e6275fc04705606b0e1f74e256a2d145777afe63a05965ec5f4c68af9ed32386b342b56c401ff310afd4ba8a57edbb8b58703f1197ea5d06702184adc8497ec4af8c3797e9f30975bb3dece3f10bb2a69fcedfea62c1bc83d65320199051c6e074a507eaca088e51670f20dcc5106027af8a5a9e971c1845f6fc0fd4618f74f2220e096cbf987ea53bad49a032122a8e0207050145178d320dc69ef05d85f02668be70a7bcc00325bfdfa7e230278ca1de7197dd46e26a80bbf7982c538a848877ca3643c96bbf6ffc852b8e9bc407445fb6911ca605cbebb5fc33134b650c7f8dca602380a3f246bcb7754f882d45eca1226519cb930e8becfd4ba20c012dedb81dd09bd16c2850af24aca2e520af086e33e463c95801f3e12ed4d03860d443982ff3994b588f88310e3605bff650b5ad6c74f0608b9cd5e11080a6f7b857b4c1bc40f822919c46587131fdaab8fe270e77c5ee6a0d250421f2dd7cc10601a560fc443a01c3acf9968b50bb20a5c26e7cdffe474a6eab1f564b831602f13a6682e06a2f0ea653f6803901b0f7205f7a813c4492be3f99200c8b2bdc46eaa3fb8388f4f9873119c3805f10b1b2887dd00a98e111da2563a9024d18dc27d2451bde168cfa1fa8cb623c29d2dfcc472c0883f90f685c1a178bb1648214db4d0e2d1ecb828c0fe9e629820107f50988bc052be2e6ca00e3ee6deee45f788ab0618fd20026bda87e4253a1ae5778d3ee85d1ba4d43fcf98b933ba134c10871f817b03c4c429cd11e17af6ee14ac0320e6a803774d85bb7225304c061591ccc240762fdbe227aaa0327c4c9803f3023409a183be8329f10036e7e1e3c4b27530197348602ad2323dbfcc55860be1f0836d9616d7ae48c9c130f8620138842ae6a1bc4705f03ff002645bce53f10080b632af7fee185c3763ed660180206ac7cebe250c4527f9c7e600ed0ba814e9d1040ce8215005599f688bc09b66b6a63900f796c1573a411607b9b8b8ab6945cac02e0410474852a118e57128654264105c4ac03da08cbf129555900a55f104bf21668d5df5028c623c97701215cb31bb72d7b4a055b65928aaf04dae64be5f31a2d5312f24f68644162968698508dcc705788c7f4e14207bdccb339481c5f7dbf52e50131a85aed22e945421c29f3286c1e6080955c440c785948dbd9e951dce7798d3873f328cc2be2295c622f5b200815f242c58350f683ed199e89bea27751a184a742511456e1b35e85bd3a2142d3897a96459f1ef335b6a68f10d7a52592e30f6c43243f33843a50988145c94bf88fe8414ca3f11c3052cfc62f845aab30c038d67e0886f1e45f9b858ebe0278219a7dc88e67ce6ebc22ae69593e46080acb44e68b3e8dadbf3a9c5083a43011b305efde0726bfe887ee50882a8bc58966187e80c7eeb827f9f98991f0cfc00941861cf9b47f30e516ceff005f330c303967d512c2db74be5582560ba9b2df65fbe238c80a8a60259b02fec350010e95cbe78a94a8d191e1ea5b3e808779a84962d5db73f1ee9220f16346cdf5c448e11aa754c2f4959e51eea816514703c68312f508819f0f2c3ac35c567735237fde6002ef0d2f716266c7bea7e5fc443eb8ff0061329c70bded87c4c93734b102231afcf103281b193c7303b3191cbcc6949b027506b04dd953aef0d6076c01e7516e502f97300c14926b09ea2d984f371806c59ce68127030f08c1815267cd041e3eea3f99f153a55a8df10a87e0e0feff00887b21e5be48b9f169aabcc3c3e63fe6412fb2a32b92bbb32f117021b19e89d1093017ca206c1a2f27bcbe0be1fcb983f88acbf60b60c58ae84f24186d31b2c5ecc40f4b04f61967eb301059121c29c64d4ef4a11cea9fe2366cb1ec9705df30a161b948ee43ec11099ae4d70b3097602ef422163c7fc052eaafb821039074b31ae21b541662bbe1810f2469f55ff094a4951a4fee67d07b4b025b15b9a515bc8d4b80f6398cab6ce107e90a5ae625ed85bf240c71154b1c55792fc454d939069e4877985abcbedb9e48cb6bddf86e219059616bf85c6b7247f01cce663efdff00e4ab133c107e539ce967fcce7340c8ee015ae6baf294651658590e3803e731eb8e6991fefa96d18d31cfb728368680e4f788e70b07f83f98e088c505ff00bf13a4ba727c9ff93cd4620ff9a8d56c4b27e088aeda77735c9f1295855b03e8fa44a11f578d1f99d598073e900aec52deeffe30a61610a3b4fe188e16989c784c364941ecde1cf4b217fbe2192be43e57ff0052d4bc327b29b788406438eafe87f728dcd7bb7dff00889464983e47f32db6ada7c1d798383b526759d7c461e96c3f933f380d4670eb71d3f989879ee0ce31f7299d554177d4d38d882eb3313f0400f2595deeccfeb8d13c9ee9415c808175849ac79decf13010e9caddecea0ca724bfd4e3f68c591922fcd00da1c0fcd5fd4c1828a0857bc6c9073d89446681ce850a2318892d67998a808c923b8e049d4c0ad76234e808a28598768f3bf044b2e6a128073b85c57ea3a961b6a25271d12cd537c772914b7cc01a54f1334732834cbd7764bdb4838d42f870cae39602687c4ca0de61482ee994523586aa5c55a56167ce62291e04aa52f725d423978445031ac20aa0b8807ec637bbb48e300f78d722e7c22c40b7f682448457f488e56405f40561ee5fb4c4727702863105d8443dd1c326058301ea88aa8081c3cc2bb212fc27ccc5799c6608824e752bc95317bccc5472d4b65af32cf8895b941971acc5a72622f506f12966ea0bb8a055a3b9717657883e57ed1eed3add50a1597a3fb875576f3f82221e7c032903ed85c71a367c9f2b899acfcdba950cb66afb955b3318a715c38251ec463717740db0f17159581c11fa81acfdec62e0dc5401a50a43f88221dd22c3acc31441604fb772ca5d0f8c9b03cfd43383551deffd883868454f7931447658bd067ee015a09766359fdca67b44f6ba87442fd01d416854243d1516e82c2fe1ee54252d2521650ba8f871334e901fc7710bf9584f12c52337ebc88938b69e578b84d9f080b74847a67015d866371cd0dcec20c0dbd83c402198bc06080def877108123e130c779070f88e376a780f622d05d016c3bb81830a2078651213660298a5a864f37827432707825311dac54e76954e82da1df7444efda2ff00093267053f2768f11c97f81f895345aa40bfa826c773402c569d87fba83037304fb3120ef1781e6b88928754ba76ca081b291da06f62a3148a188745e6ff0010efe9a1ecc26ac0a3fc2e54c3c725c729668e3a84485ac88002b46c3add43d9b7626f94860cbe92fd0cdff137793687bb10337a14fd547557200b26b30b24c2bf3767d4a6da4aaad72ff981d56a02aee706bcc59d3336d20de4e98242ecdbe6213bd6c8d39ffc95c0142b9ae2105a39970030a83477139745f8850356dcaf75c429060472542306ddb29c31be1a8025669fde55351d322d3c0969ac34e5bfce20055ea37788919bb3198db1b7236c64825e0e7dd7fc819f4254df10c9e105079a6e5ca958d0ae6e03bdc4af66b889a2cd0295fb54156b81b53ec52b8ab58e7a3e62a5c92f60c4d12d6399e2f100c6637af64d7c997f65899d0c984b8d32a86307a69df61b838e28e6f339d36df23087bade57922612cfd20351e04a06242b2183a9d8c18c8ec3fbf12fbd6d6403c76fc4b97cb11e4c412ad14029d2c3e614715449d79fdc743d05fb4e7e2e1ea34b6caf5637f986a268c1c6599997df02d172c90c47fd469056043e6a2857e18bda77fda5d2aab46d050215c03e1bd4c40e6907cb53793ee137bc0f387dfc7642f411b4f54c6edc6109f0cfee704aa5e0dee360b61fe20f389cd78a93fe9988c78d83ecae26cb1604dcba4f9b47f8f3183a9345515dcc392ae3faf98cd44adc5fb4fe4c71cdeff136b50d27b778f889276dfc1bafdc1d56e7119f208f4af3dc3b8f553af63de9fdce535601e33323e4609fefc46b11bfe41420ae17859fb8fb510673f9f46096399884765d92eaf07441d2a05a58c1050fe0cb816acf50bf04f1a850f3c54a1d1744fd55310e35b1cc105801ee2a0dbc409051c6620041bb8c2a4ba16423143576650026fc4410a698d5b4a819347ee0a5dded0619fb99b6d2bc7108a0784ebdb150ea62352dae93e4c7688be40808f61fb99cc0fc4c162c94ef040142fd4d6116b29960a5eedc55523c3086c0f290ef5f53b49974b8a0152e678af540ee146da38a869cc02f382ad04be09f52afd3da66b33c6d666ea146e88a76903da62f70af3396aabcc1c799707336f45f98a458e7e257431bac453108058419a63df294b8dc6dbd4517dda481465e7b941576149a60251b81c747994aaaf895b1b2e036a8ee35432bf7453737012d3ef13b7dd986f4b00204c136ac7ee5843754757ef1c06b770145d8c22f98e6c4f26100930835228950e3c108ce1afec7f50877242041b447db1b854078e6e7c6a53452c0c0f075143337f9852e78f31613d4fe95a23197b3af33c12a9c36bc46ac0ad37baa3005e44f68f5e3c0378885da207dcb4e602c5e69876bdce43f242f288111f899e9d016df8c0e97d24964a058cb7e1794edb53bb7bc0cb4a2a69de7730508ac7d9c097208c643ee4cc885991d63cffd85446fed495074002f78148d180d04a001c0a84ca2178a39851863a968d3912d0f9750445f99d4782c2dbc4a2b60f3fda598d5c95415c9ea2fed8485869bd4c081b0296580a4ae86258bed171f10b6b30a05e332fe1c035c6fe68da879e082a7ec07c3fe2356b6fd4263abcc81efff0010cc100c0737061ec04416078ad7bf3064b9ff00508f9aefc0f0110b5fb303e20056387f8128c69cc57d906ad81a72c2b3cd36222d902cd0f860685c07f98b2b1809d23a16a502fb9709ff00be80f50b2f1e1e1187468c82752a0fe484082c0155d3d22fe6d58980a6c6903942d66a662f96628e147c4b30b659cbc543d25511ae5f11884548de95fec443dd0c9c10232169f31a3c083183fccaa0565c4e94ff001b815c32dc45e3de66cfe6631718094ad78a8e0061831a82b8623936f4a3d97a8ae9d0ede0889e7d541b13aa091a635c2b06073981fcc0245caad2fe900e0cb69c4090b43631d78fd446416730f1bebf32c4bef8183ff62c4552c9f1729eef257a8659ad8207770eebfca3f0823564c58f11601ee487c44f1a98c127f299f52b28c32574727f99520da353d8731a9659c81fb96857612f6e2625ad9b10a883d7016f2c051f74611a0b703dd324628ee00ad90f3f34c0fbc8014b4584edc2fd435e08fca2d9e4c4a9bc8c829e3f2468b372fdc764b250c55f0322e181d8e19e43f9463f086ee6e9f6c4acff00702d14d925f24a0f9a02dc30099ef047f2fa4a94203a5d0e65b23747e1087441270e98ca28cf6b971fd231c92d159c2b93f3286b82ead0f0bfcbe1398c12aa3e048d00b328c5534e454ff399431bc4378461d869561c54c816bf2c70c2f6fe5a08ba8de0a4883d50498ee8baea555537a19f68b0e1789416d4f2a222ad0777f88f9c0a42a8206e12b185d23fb5eaa68d629155e170d817e624b810b7806611a857fb99aa83455415aa32d2b1281777e5135565ae250d2fb128ca23420086a0169431d1284a654681fc8945b66b1c48c0f820d4ff008896a00e81305d484cd61ea24e69801c12aaf3d1578111c620a287ba66c918dce0486307e60d167b4c9a6fb4578430c2dfa99810a9f5f1e999a6897e65d4b89bdfa0a752ea2b1f9f4b637eb7e86cee68ee01ca67cc0b3197c660ad472dbe08559f6501f418b0b822c71a03ce58f46ff8bcc60b1cd94d7cb0d1b9dabf6b3052eb7225fcd00842c34ff3e21a895c9fbc4154200518382904d68948b86f2c4ecdbd84b494c2c98d9ad83dea4eaebf6bda586b0d2257e7d803e53f4963fdef01a32a2c8a29d7ee88ce348445079983161f82b57f5135c1b27c841ac6dd1a357a910113f28935a08ff98c4cea4b7e712d34706360bc3de5d5ee6db3e1cb183f696bfca14e30c81ddca3f69285820b3f01fcbcb3fcc726682c59d674cc03cd25791c2044d9868e91410b4087ed00179131bdf750e4b828471d2250a15c1384b9614204075feb9d191416f8d47a0f1557923c4c603f18af6991b814b029ad7f70c2879f02f66a620e2b81ce909ae12cabcb3b814650727bff0075031ad05fcea322cc81dbeffe26c82a87d31aae2878ee149acae97d7987921a3f6745cad3b500b7d885afe4e875199a564a7a39856dcfa26413eee89bc14d3f190503187487893301e4bfee005b5f907cc714c297ec84d50ae27c410fb740f6995d83f208c80aa9a0ea980c160062cea0b1972ec4c9e14cc817a245ee257439596f9805616030a813ae885307c19f0752e9547f64e5bc9e08b02594603de1a6c50aae183a82cb800250583e9fe2081de050fdc02af308dbc3a96e4e0e588d28be48e6bfa8b8eb40c23a882eaa9b7d8962003555b65e9c0398042b385dc522b0b092cf487e2282e8506a62729fc34fb9fa8ce70ac1bb56119d308f601cdc2d54fc24e2525425fb08454c061236531698d422e0c8efb3056b4821e7f96e27500ea2f64c2500a3f9f247a8a8607c450c8a85a3e18c5e3b03f3733512f1f09c90845899d90a19ad941c35b8ad9eb86e32ff00c60a80caa2cf984b43742f7ff710c2828b5fc895e80c5bf51102aa28a3fe7bc4a014043b848ada83fa8525628868f3b3f33e075a10503fa4a1d4f220f26cff00089745bd15c731f88f09961782a0fdf3a51f31884301b39f1ee250e87b578804c56abe97f2a362ad2963f83332c0a25d3894d80123ddfea2d54e42939cb29b80caeff3e209158328ff00b114270542f70475190af785a0297b5ed5cc257101a6fdd8bfc4b82f7f28429664014ffbe262143c880e62bbbb7bbba63e1b820bcc13d79f98a33016ebfcf895e39c6f4e32c46f6a95afbda8c806563d2f0d5f88e8baa580f66e69cdc3e7708955bda236d7b2021f2fa5756773081c36bfbfe220458bf22c665e80d945ee18c05fd5a7f9f3982dcdb280cd841c30607d54b5663e22f0c37a1898a2c8ea2362fe50e71316fc3100481db92e0a27df0303a220d871ee820b57589aa353cc9d64914629e214362b515003ca651a0471685e27b01288f76ee61b626e15177f83de5da6a6ff00d54f920a325d828d8bf99f74e88eaf6cd400ce3c928277e7afa96a7e885fccf362a0a20faa5208f009c447f70a18398066881db295e2067109c90b656d940a7ea29dc537996da80729a9d172d9698f7861baf68720dc2ad5412f52dd24cde4959b8795c00f5d43d0f680aa1101407504a1a365c5b92ef5bfeb39c0b97f68647881b21a39c271f38841dac18f0e21fe2297c231e618f8e656046bf42e11439a759e21100b96c5f71406c495b9157b2223d4bb925c9b5414c45b75e2f58f6dc6f7fa70f4732fd07d6cebb942c1697e24b180d558bda3d0758657f89c0068630ed47694798e52d580f680426fda0f52bc1457c0fe13dda414e6f9f9c44d95f6976592f545f23d9144396e4c7ed0c5586253e58cc46b653ef00a3f54993f984fc5a2e280cac9cab7cc22c3632fc9ccc46383f371b8c1b173cdff00ecb4b1e8a8fe6f984f295a69f3788568b48f50656bb500302e9b7da056536f81111e73b80b20381f05ca92b599381ba84ac9b7003a2ff588af3705de750ebc1c36a09e1502e3bad4b4391c2a0250aec057e37001c050c8f0f4c03d3902a7972fa88bda50fc8465399935a1fc442a2d063efa435217dac20400adc803adab08931571563d7bb10e59a0fec9111230b13cb18bbce45f38cae33ba9699f3728b903e013cc475eb80888acc7d423b68a9f06600b6f74c0fca00040aa96988077ec499c74d2d896a946848aad37b87ee2591d2c511cb8401f5370a85b46d94fdcd004cf4cbee5ab7207cc052de0c189bb0adfea2d104ac208148ed99458a64dd9824c308ae2a3f5ad51cfb4170e53b2a2096298b07da5e11e09d901969bde8e6c2600f43524113e2c230c9058dbc5ff0029c6b4fe03fc665825b078a969bc769f7d44258d6f7fa22c8dce4e9ed1387c01fc91d7f93386160953b1f3dcbf5e206c5b25858583fa08031b58f7c4d296adf532ce0a2243a483aa17e5005c73041d3b8001ca589cc3d1ccb3427b866732469f6d225943d52cbed8ca2f3663b9044ed94271ef0ab0e1385d5c263771b8644de62ec810e52327bc42f2c7917987a89d087df1082b4b6c6b810b95d6b6f598e4f0e0af659911caf6b05b5f2b8139de58e523baa63afe505d9845add3b97345e28ff57705327f8f6a092d81b8ff008625078b0138573ed1646b65ecae5f88eea4d9392e33ad2a853db518832ca02ff3f985d9268555169ca15b426329333b4f1195856c23c731ac4760fe5fac6e8babbe8ff880043823726e7c8a7f2f9dcb8e23cf3feec3bb62ddbf066402b0ec735e8fc46c5248c9eedfa664aa28b4f9ff00ca2ce145375fa40ff24dd554b0236357bc84ed3809ef1efcfec9d1a8528b914f7b26a102c02e580e2e58408b0764317e51f5452d1728a082658fc84d226895843fe1dc3b33a0881e60445c0582414b7ca09ee1906a1ac5386fc42978f9981cac6c76d5cb0333e250b1bedcc6a724c4dcbc1895e93da17a7d085300398480df65429d8f68d46a5a81e19639bd76cf7aac21eb640a10427dc4201727fc519b22e763f31855be14fc4261bbbd35ef1b78c46e6ce577403da308c380bf31005f880aaded889a621c901afdca7447a3177260cefe2616c112bc49a1810747ef32a9b23d2529698dc4c26b9b544c377e205d352bb656f4981b828c4c9686e61c61ef1632d452b6c2ab99bad42cf0f133de23a9f75000bb63c7701789504eb3480c9bc1ee65928ee51dee1aa89648d81beb11b8c3226c38e62284bca3d8ce25fa5f22e7c6667054a2d7d440ab848dfe58d11b2db23527d6da3ef12d9776cbee50982cf6bdb8fe63472367f3dc4027be47cb72a01f085ca9f6af8b8d069432908be8fc93b40f1a8f2258310da0f97f88944233fa2ba86c96c39f10c665283a264b66ac1ed7337295e4bce8414378f965c88d03b10792b1bfc4ab65cd0acfe086015ca4152d0914b583f5185011f09e23d12016c1ecd7be62cd4554b0f820a9d302aa6d794303fb273a003d9edbfe2518650c8a82d51c3698d16fd380d4cb2007e265bb8d2d1e05931a502b6a95401f63df9a811d86cff88cf0838079a9b1c1c00bc09830043cfb1102625fdc232ce0ac4390f8f88946bd6cedf24b81ebc77f8fe65a11a3f960420888327ed8c825ee55ee02be64903e1069bf2988dab7fa95e04e53b671001a2282dd37a990d94a5fedb815be4ac7ca631568e90fca22e61b6218b49f6112bc57881e5ff5120c2c18fc9d44532e69b72ac4a398433fb8f7d3a40cbf99776b61cc5ef3ccb77e651d5a6f82349faa2bf7ee352878d41e203bd0601d7885cfcca9979954976dc1ed28b58a07ed10c1d6b0fd884d11bacd7ed2e122b330a40ca1dc7c4424e048640a2145a1d1cd42a9c4aca544d591bc15fa89a05e5529b11aac4b01e2302a89bd9103b5995bee285295ba5940b2eb1f83e60c35d4da90d4408816fa6ea219555bb85fe128c5b5cd97f9aea2a04cc9f1f04540a395bda6e35ccc4bbfd3ed1e37ad43ae12d0634b8f9b8800c1341c68ff00900c81e45ba840b40295e066222e5e873679428f48213c5b17d214e6a96e4c21503aadc6953b03e911939d1d4c6545e5340cb2c01380ba88d06729a8a00fb87f302faba01cb3e0145ff9031a33bc7c7f894879601eff0011421653fe0f98c34c3d0a771c00cbafe29ca8d14f64f1dec1c7ea3c13c8143b36a95bcf4046124a28b7f6c41f6e814f8dea2e7ad456e27a2cba4983bc8ffd7ea3fa140a080b58ff0003cc6e258b1ece636bce323ef222d61e12bb8cc022ff00e0dfc4b267e8fdd1fcb301169aa5400c3b450f769af9cccc8e02153ab3fa8ba94b837ae47ce65c36a44af6ea32a741977ea095e6c1fe41f694060fb83d3e264a87f38d2e8115727df5f30f2fcbdc8e47f3b8446e23f11cc492c45a4ff1789867d81faf11e048c848b51fb03d9e5f303ab65d9f921bd9e28f94feeac6c04421e65525ee4b06d147ec0c455fe6467fce352af4a882f61abfea3e0e80fb1a7f3070dbfe537b46a702c6fdd09ca21149eab5054854c42d7c44143c57fe401d894a9545bc854583a3facc41e39903b800580d91f4fe60db64630e5ee0ba82f2ca2195481a81f52ed801c87de0b8106d4592c02b295c223652315f6f85c45731001b83839399ce75dcc591f2d425285d2e330d0ba3dc5caf29b4213d71b5c197b8a80bba088b2d67a3888e9fe103d03e2585298832ac226ade4c591f7434d04f0405e80881ba6bde28c0afccb795796141681e5885b3e253b7d443431d0a7cc5985f0984a172b582fc4e70bb2250e22a286cfc40ada8f99c102ae82e5039266f7010dc30cc1782350dc0c609d41816903c66077ab81583e6528c435b3df51e313a87d2391ff03f2cc2804eaf7f73615d96cf6d220842e5b3fa8f307a87fdc5b05ac19e36450d1ad8a6e9dc51786cb7cbcc6ac4ec2d22f34ad87ec21b3ce35fe7dcad23b9c91d6a0ecbeb1105444cd08f8a2619e500fda25b79aa179675edbfefa8066a530fa5040087f421ccc980294b429095480f93060a054672c62263183cb337241a9f358fdc0799a164e15b224f48fda598047b14301e63453e1570fed8c56543f72aa582fd18e9f7815179c41f0408beb03647da07035d65968b3b7c9f17896233d41f78787df6cf78ab5834207c4292b1dab7bc31aa64bf320e845e734471a0a01a962843404ea390adc2ea20688e44fd4236be45f711366a70be2152a9680abc222921fe00c4559432c583962ded4296af4642fdb30080db13d8655f3036f79b7123ee62c93a7a3bba8d0c81788eb108e10ddfd3f99442cfe408b8399b0f3fc882001db0f2660bf69ec56033f281456947296cc60915f2f303f632b4d42b216116bc235b10929fa1fdc64e995c37e2b24e612c23e4d4a8572a5007d18cebcf095e194c78ad015ed984cb7bc8bf153361b830f84d150142bf09e1e015f1a94751481334c16b7da63d58023efdbe2077ee09f6acff00d9e1bc4908246d55f8710141e0007cc61343cb3df89408cce0fe5423318a3f935015f105f0f0ca121b2b567ba350b519d411bd561b3127935780e1bab12cd74fd00428ef4b6865f84116b08b4bfaa4901170143c77e611014a05bc4ef2bb6e8971ccdf5959b42e8647483a271921313afba0115fd2669e3fb8f8cd326ae58941df065894a78c1fc11cde15a3a789762ffe0260a094d6057e41fb677313d04b40545547947c9fa8d9d6d9ac69e1fa83176a0d9fbfac46413219fb398934248691935c59443029a5eb17180bec81ee95cadf864ccbbe072e037042a2ecb48ac735c4fd8fe25d06ef47f3a9dd3400887ead68b9c245095f3e23755603d98542016ce2b8ab1fd9145a48be01ec8cb7d823e5fa9f632b83575086d05ecfe11906af72e04028e443226aafc2ea53146394ff007c4c85c374e086a1707bc89f1ff251b6123e1b22e88302cf39e206e4c39dfb1940eacc0fbf7026726007fd965660e69f5b83ecf0d03e1d7e6504444fe0ccbb0a4408facc5e628a68d177fea0dd9457fc4891bf2041d0c00bc0b01fa8dd34cd0afcc03594fb19501027f618d3ee236a12f8ecb311b08141e351009944db3bef860c0cc2da17f23e9c2283cf90f75c4d93ab2c0f20fe8ccab186e3f3183ac1e3e8fe612a2b176dcd235a8da7e7b94257299ee49911974ccf35506c31464ff50a7ea4b1e2146c7a6d9f99994df7a252d0aca1c1e22287fcfc44a1885fb8809a9d1840d8a97fa096149c060a0698520de6500b6659519f302144d5dd511f828ec9409925f6a25d041729e63ab59c8ffd4a671ca7f310cbeb7ee888c3f13dc0dd9f3d445511c95279bbf659b035c51100108150039a1fdcac397c12843b827daa86708fbc1a594f17043411d688d84225baf98a5994ab96e218955c4151a96a03882179cc53bccc5e962201e260a1a8b83885b49f08c30d9ed281bfa9640bab22ba87bae657305968cce4344ac594b2c188cdc9cab614f796acf6708e6037f64b5e898a85c952eac3cd4caf691f62c6ef528174d3fc443e50b7fe5e239a75bb2c78b8f945ff00405cbce12c81efa965b8e86e35aa570118b83801feba86c03817f47f685193916cff003cc54dded7a7ee6730701fc5c4cad2eb87c0ccda8556fd21d0179b347e63a26ba6c7483a113a1ec9a5994f787042e583c93dd716e697455f0a98301467fd40d03e954798021606053152f46904d6bf08b234e33197f5b026df6254b7340de0001ee39f128f247fc5a3e40b341fa420488643c1d32b6681cff899f0ddd70815786384570a59be129651a681f69f2363fd68662e3731180c2f0b7ca5298498df48ae5c3a44ba554bb6cf50919f42bf02f100177a0d7e254832dfc8ff00622fb088d1ff0088c83ab06fb6e1c415a07c4f31161f6b82505d6e9d4d8c15e5af14785eec5fe370f14f415f28550874642075c4715dbb8c946cb0ac3b462871bea1617f9d41685ba4ca16f1b8875c3df8890900cb063ca352fc8a0704c54e0f99785ab203cf4964e17401fe3de3508ab34aba07fab232d2e660df56b881e3e14f9455b198ec440b60c85407101e200a898e32a51054bed8bf7bfdb814ab22cdfc91045992c76880d30109588baa8206f1c30afe62a1aac287e05c58754420b6c0612cfbc4950a684c4bd55703aa5380d178f910c129c91fb200deb0c5be501506170e961900db2bbaf68dd1f7a048151b6c50f86092a0d3a3f88b95f2fc80d445217700855794469c778ffb31a096ff00815f99b670ed4e9dc0113458fe9262817b640fdc427d8bfe5cc032f28650e60c615db5e5295e14172f1e62841e729f33b8b7031e33dd73fb8d602059ee99c2eec14f3058e1905c73eff88b52a035ff004940169d9810d30a60075584b71716e00970f6f71191a3b3ee21150d9ffd944067a6b5ef88ad03202d7f881c4b2133216e5ca070711aa44365e216c9db5563d889754b69fca5077086c723feb8cbc666053e6287633360386044970ed239a1e0d9bfb208ba5bf13b4e33e4420e4b630b93be88e74ca8f91026af60fe610be4b77dcbf00dd0b0084aad93ed1683b911e33120ab7b24cb002fc9281201487bb0688b86ecb57bb45c51776406e867f7112cf88ce088fbc4581052a2ba2ac941d8a0144731b23bedfb8bdc1745fb7fd826190fa8887c89488e7f7002e5d0373e5101850477b73fb4711225968b5d39544f551bc571695377c90d8386cf606bf246035d835f61dc62f70877fedcbc7d7807cb505a071ae6eeff00c479a5e1fc443f01bb042091ff0052219038707f32e318d61f66921504afc848daff00c562a00c95d06fc42401a4e4216d096cda9b37825d21384a6806ff003f593f30d63dc83bfe0d4c524ff03c4a01ee387c6204cf5088169bddbc42db547854b59615d33b4dc257bb6e1842ca3c5c595b491a6d5ff3886abcba0a9fe7636e2face7637d6665b06d85f3ff00236d096170598cec40c1469b2afe3f11ec19568f9d401acbc11a398fb860d67182150f16a50bcee50b8cbde67cb0d314c5bea28e0b8e05e5e2291a66a941a101dafc4c6ad99a8e1ccc405282ab436ad4c350692ef50cf0b22be368b6f101f33480b08be2582f52c020f5964a3e58f20b83d9aed504d507bc53818bb00db920908da9b32c33e65fde3085e1c257b4a8b52fc1f72fa02acd091891852f2df3789ee0607fea10332f0ae35fccbdab42505fc26da80711ed50682d85ab3d989464be48fd5c725b9f888b04dbd4fe12a8465073eca8409af3c81e2a345e5ea5bf9634c82db0b0e83cd5357b56a359c25037f19fa9ab0361077ca28d261f0a0a00be4ba8a124f40f71a3c7c0781c431487925edcc36233b60ff9e26781d48b7146100c1e14bfdf1008e345af8a086e5f9e10b631d91fdce683419f1167714fbcb05af8b2e140b5835fd431b1afb54cc6c65063f703ab3e4c6ef2a661f85420092f23ed4ad62698fa20cbc8b1c7d54be14557b9ce6263b35b2a527f9c730ad855e901df965c2804ca6c0fdb826718b726857d7021c06abea29b34aa487f308f8dc0a6dbcc5ceac36fb2221a0fc72b44c3672290353c4c57931cd7d967f096b1539cee01dcb41ec58c2ee6587ee211cd8c4e18d0357bc2e16d4fff0060ddc8b501f68086080a220bf61ec45d9de00f96e182e17aa9f1909a69158043869aff00a9c6d87076557881578703c40aa3a5353d90ed2a6b15fcb14799afb210239ca7e7928025b3a3f507f7489c9cc18ccd24fc23e065a7f24c61c0cafcb02d8a0728f79e424691229d94dbdba86a2f8b0813c270acb38b775063262ed8300be431018613a2078d9d246bd330d3e6342d790cb2722b3fc2b865a18d7e22500d7e884c6470adb04a56343afd8c6366af25ed2d62b2013de0813a22ca239230f1364b73dd798d780e40ff0054b49c1e67bca4f423c0ec94961b0b0e2ee0fe1930243895a3afc1c30e30b9435931fccc76a3c13a4020b7904fc2787ba67f76161a6340a14700770b16aa540451821019141fcbee7341d9262fbc090b7b944734193fe7e215291a148f51b00c81aaab2c0a235a7b02144c67b04b13db41ef4a202392ff00e6a09a0ac78398f6716c5f7794eec1647f0970fb5e29339519917388c5650130c736ad987683ad949c0de3a9e5a304fd40fa022956a11fe9f0c3d8a7b08286b29bb0b9c5d00c69ef71152b064a408536689c4a0a2c420e5fd55f970fc0d7f816a526ca11f68961ef4fe0060977812fb1ff0053339c08071bccb4d816e981d272032fdb86209bc3c3daed8e0b5607d9c1fa97b0f5cb1fb9c142371edc3f8601562befdac91bb33e40b3fc13d9c001f63de29e04653ff5c19fc8a2854c54a62de01bc468d8285bc3a62b55008b520466c86d77dbda10bcba13f922c5363ea37cc4d2d81a14407480e363cf4825e19c0fc7302ee515e4238651ff00257b94e2f90557ecc70d9a55d89b19978ff1b25e3c6afcc57f30d0986f43de20672cb4cfcb30f1acc2c1e5c4b3468b08200b0ad3f8d862bd2ff70fb92f8c8a1a4b8a56fa1dff00863ccff368bd4b4214801c19e170005f14a00f9d14969ea8dd88f3198bff004731683c509959dbd5f1105254f7284147602c6c5df48498dd70c530a6f792580ccc4615084f0876c31bfb8452d71c21ccf75c73dce48a231630f12ba7f24a58c8de3035ca26704e229f33f2c36ea5b70fcc01b8d5b33dd56b97bc21a175b40dae0d5de26138128e0128b0cc690307ac4b1abeed894e1f68260af1d5462883440a8eb37e481ed103495f4147fe8237b4f825409a500d5fbca2a5b16308041a5350dafe08331eec3f4ea3403a68af734ca4033b5e3d105d1356598160fccec18496311759572c0296ff00511009461357ba5465041e16b096dc405f32236f207fa82089d6d5f570b243cc3e8892d5aab7ae92c00ca5efc21f41bfca619823218f8855495278063ddb7a07f704c575014f8da65028b21fca64e4ad6a3da109a434451c03013db8217671a4c7c4ea547e08711614b91d35f3104602b548a231c8190d5d5ae4b83740377569f128d2db7230d72f1da3e5000532c431bd97edae66eaacd638ca131d336836f901f89020b6d50547e2f5fc46e337907f43986baa95ad916d09783f911a72ef314536792d41c1e176bfa82fd1c61f11c1494ea39009b65de1be2ab9319bf488d6ae51f798813760865294031f1977001a19a25d15b671e65201fdc01f294138780d09db2d119687d10d12145db26e5d081a20f811225e4b29e5cc42f6b403fdf99c1f0e1ec88b6deedffc888aa7ce97b8a9c10bb274c6a095bc3d84a71a4b2277dc3f03c8bfb428df27ec3b9428d672650ec96d221412532ac3da0072bcc0a360f217515d83cbcc62b5f041366ecbd3009263779b80e3a9ab6e1470452e77e21352975cc6d0b9c512b93b9952c8ba365c3089a5acc0330f9132d8795a244a87ab354aeb00ff00c50d84db3375007d192348b8a30c91928806a9e64b08dc1e08c51df32868dcb3150cbfea18ff005c0c10cd25c6e2c980bfa9a221d8817c838ea02726d06d48a08f2748704edab399a250a9f213b5c661e14cb8abc363f33c31f21cdc4b4cd2a539a8e1b52daf1385ab215d9c439e062c66ff00102232b302197e6db3f94e6e2fdf07305932231fe461d68a8d9f6ea56ae984b7a9a236a20b50883e07a86b2263fc8f98b9e0eef8883485da600a913205c775297c84ebc2f3fc4080648565d3a8236d1b56f68410f342845616c4e1d4040b5c1f9a7b9188bfc44b2a8b311c03450c9f93fa8f15daf178be268574dd5ef2850e70ff008fd4c10131a3a1b277802b460c35ee328d1f00612110fe4576ee14e9ce404067ecbaefb31a49bab2e40de023f31732e7c1cb9dff008423158173da9ff9188aafc0b1d05f040ec950c3086f044c8c2d1109fe6a3f34a900e8983c46e7401fca8a3eab1453ae48354881303fa1f98ff54d41605f05018c4bcb79a86fd00657ce20264194fd1037514fa406a587d7b05f8e18a8b951c13e26e7f080750f64d183ee958c497fe4931de1f933fe136b40a5c57875ff006570c801791e3f8840dae7fed9fb8f4914d1b73ed02825ba9fb4b855682fde0c668402dc3618fe916a7d51e5fa9400cdb77e626650b3bbf10e0e5c0079b97059805b0663847c7f2990b9dd168350373a7d4f0c582a2b70bfaea677808a86dc453150f10e8229d41a344a237a82a24dd5357b4700516ffd638ba9a695fca246a9cb352cbf040866b980375f7877fda5d383de5ac5b98bcb3886e544f32a32b0f51c02c970a5d0ba37002e83b982d590452476cc3b6bbf0f11af9dcf7152eb38e654bb4f744458a7b881874aa23768c45bea304055e83d5ca07152215ed4c060fc0acf51400705ab8fb4c506eac4fe673c9720f759b0d38e4821085c13aea23428e6fa4a814f9224a5205af81fe65ef8b6395f2e12e0928c4acefa981b6da705904c1496f7e60748843e751970d141be100d850c06dcbbbfa8d7fc8822bf52cd43e021ee474256c4a2f88c5f401367399a83a07f9071156cfe95f588b441480b75055bba1fb0c6c5a0a350158252c6e7a7f1183d80deef0408c38a3e78dc6caf005ff0c2addc02a26d3a7a0f7995319196793fa84dd23fb22d297443c6118d45bc8ae212c895bd5c7998fbea043f52daf75f94a4ca4e3f00529760f5e7e2044da07e3855146b2fd90e0204028d66ca7077dc7cfe684bef2807791a46fe11e829c9fc054634d216fcb4954d8b9d218ac9d3fb47a00b5a19882839765cb16c3c09802c1bf305a1502e143308e2a2fc264db0b32dfc4b53f496bc3880022711c051c147f50d19e7c24e09432e1119e7501822719746115ae4aeba7daff7a866b45537504b2d4d86d8034a302bf8388f52ac139f3fc418acb861713911e68f0ee1c5b6404de2ef5f11ec67e690ee28b94612b081174d0460a6254fa8ea430ccb84a976b91b67b8707bc5cb9b600f30c5d602fa2c65975a0770b4503a311d8b9e20852bdb1048f5dc5c8b889864ee73a22bdc00b83c4a7c877d03aa6cf98e683796c4102c2d47e0959072b029c50b5b4006dd070621a260edef102c0768759e464b807e508d28a4ed9b8d574e5b290072ce47f7382510c2d3ff0044410678630b135b8b091ba59b0c14d191768fd440c67287c251aed720e7c30f6200fd222f11db29d3873747538612f0079813aa03af150ab79ff4ae629b94b6d68e20aad9fc900ad6d1c7fd888d1cbcf81967b80ef714801bfa65710c02c5c81d4bb4f74579c202a15e407c33fc47adb71aeab22084942f9503871b45187e6fb895db7243ab351eb75007bda427616ec0e2071320c3d83981ac210d49ac6d0c5bf046e401c27e3646807480ca0010ff0083f101952ad408a92c75c23c65a670d4c25eec44166627d91d4c10abb3f8ee2aa6de83a812b2c5153d32bc076d23d2996417c8ff00cf24c3a6227b81920678578a57319de0d0d9e61eea20c7f74a326345a4941b8c4efe6c9849c5095f4771b0102d1da35920270764f1fb4cd1c4a3074eff0088a173ad817315b09ad7c9fe60b585548c0f06298dd827fe4bb32a25e23fcc4a4216a2071cc7e130404b529dff00823faa6109f379fdc6aa1ddf7ff685b30c76fc91118b8aedf81fc4ddd6417f728e2f80c1fe311d6ff151fe91ac5ad8f9291d3bda3cabea516aa0b2bd91546806be3e23a41410bff1139ea418bc404c981de3da18ea145b177e20b4a019ed7f97360a8fcd0b8526379892f1fb9bc2101d0072cb0e12401ee9110060cbd12814c012e1078b4194b51fc22242e85f43fb94200f0598de5ef156cc0e3889825595389cdc075101d72513e2e514298cbc0e9cdea03e25fcf7857f996c74d92fd937c4f7830af1845a170db30554031825788d56370a80ff00d9f0883de5df0c0611ad972c444868daa53c47a08ec33cca4dd54b0a8386220bf6c50fd66725147f68d1e2478080a56143fcb102833a80f300b9c9fa846c3041f697daefdc0f789a1d89cb32b47a25c02560dac07ee3be2c7b3f72a40064787beac7cf11db186a0cd59864c2c2035a371714d781f69921ca0d0f2e2a234a2ae230483059fe6014a30253ee8a7ab2b4bdf48fee9817f65a8a91df64bf52d0e1641ff1cc6ecd5c883fb9951fcb6fb40e1064107e9b6217cf0b67e2734c250f9712b43b62a42a2bb2a3da6733bc0fb44fc6ba7f63444a9d0cbe627c805f1159426748a575fe9332ced91687ed3132f4703f9635010ee2ed3162152b5c12ce9a4f83cce0c6a5969de4fa89547200a3b6a171842022594a165a07592fe295088027f7c85c1401279488365a6c3feee325ac56aaadf99a8a1c62139ded75019cc83af295c7ba2910e53e2ba6f1630a6b0525fc25e4667830c3b53ec886d2b508218882b8142e4160e03dd0b0499d1184019c529d545614d429c10c5db9f6995538fcc630099368c81133f389634a4bdea31de59bc24648fddcd57c01efe8971c0ab89d706e22d721c12d72980a90689f88d134123c679b83dc40718a58bc7d70e10611ba1f6cea5691d60cf0713245dd56b7c40edf18a1e9825bc80b2eb398a74548b3ef15b10361fa959606f2ac1c6cab767e589e0af2c32c28e258a5561714ad4b56cbf78220e33b8a72bf098a601ed514a5d211a579b357144ad91a484d82df120c9033196ecb6dfedca00643b45aa66b77d372ce7a3ea5b27851f6113ab08aad0393c4062b6dd13de3cac511a4788ddd2b923213bd79220a6d73202e5c8cdfa954bf90b74d18f6c29c899020c008e33485446c73c4593076ac2d0977817f1f719b2817a0ae01c7ee258ab080e7d9992294c81f3ff310032ed6b20cab9678837960a3b7b8159b8c58214fa2c7989b5b474570f11e5d34697baf88889a2bb0c42c1b997c5b0048c30e7a4a5c43687f6d4e726d0900e083c2f1516b1961fb3cc45f390f891b8c4ee3f44accc5810fe63552e5b2de2a30c862805f9cfce650da13d0ee7e73453a7c4aa5c29d47e7f8974342da1cee2c38d9336ebcc2404753a3df9962028a027495435ec0880cf901edd41bbb9a0f8f12cca4086bc773873997a41676d964c65b81bb62f9c4546ec61dff00b10cb8bbd87d3f8894b9207b295e5e536f677364cf08f4cff64e13f8890c57a07c3ff953311a3ae3586a14a69745f30a111bcd2fe655e2757d09d189204fd198700df9119a22c040f0820b70f7857f50c530fa9ea123f1481ae67870c0abc4c61d5437862335bba73d7027d10242b84ad2e103e406176022faf67fe42253db67cbfc4708b8dcee6a8cd00ec8a073f1afdde18e4b431053cd40583d2891960b5fe254c61106c8836993b2f87240c0df29cb8112203ecce623018882c448301a2f883a2e045dbb1e23783c6c3dd8dcc94aa50ba0fb1c45ad0026d97bcc3169fec473ab3044d315b604cd6889ace651393189d621184a281c368d55e35a200986680fb8c829b0ca7dff00a8290d8389dc4b5aa9cc6e1e6a9409303ccd312b5ab8d2cddf552cfec472e3e656216b8cc6fc83ca114ac05dc03354bd5401f08adcce5e201f6d41685c60440df47fa132caa2f6c525a3797f260b8a4aff00c102443e5dbbcc3ad2646fe040328ea00f0228ed2071c858545d0b1a9551751c0bd57e1ef1d299b47080f70400a80636cc1c3f2a546e00cadf1a84740a2dcbf496434d02a1d433a22e4fe37326baa907b69fb960f6a8821ce6a04fe64be89cb5fe37fcc5c08703273042777d989841dd89ed2ab6ddac7b8f004007b4071a074fc69fdcbcced6efb2a4cc97bf8486654c106955fe3c4ce07287e6188d88e430d336eaa35a80e935f64c268b5ab2145d0a4ce7b0951bec5dfde275c4825ec6233562f6a7ea71af5a1f986831a147a2b2c572a5a801e2e2eae222d3de516fd7973bea5c38210f7ddf1395564e7cdc4539e3dc3304eceb37bf64bd30e43a3ecc0461ad5288515119550f960cc6c504714732cc89e62be21629ecbecff118868982e89931738688007d4ef752a9177a07c5b2d2353827c704559557e07073705db89b40edd0f425260b1a0f4ff09c82a031fb95cae420c1f0ce614105d3df552f23bee77cc12686bb8d416b07104e134a868f3e62d2f0fa0a901565510c749e90f500cdd673f286263f90071ed980456288299c3a680ee1c82871f7a711af294fb08257df196c73bd95ed3ce2950c9ff0855974dbc2af2bcfe2064b0573b9be3f1323e2e1fcf32cd3ec40e06f75302e28b54fb4a5a857ccc65c63b5c9c476b6d2f58c41bca14300bdc405bfc93316e0c823db1c6fc92d45eabacc563b55d5f12e444e5e3bbdc3a14356c7b4d02e9fc08136793dd29c326ae62af5100a817ac471a3dc86292bf98ec10e8ca455e1c2285f5ce4fd44f122b482bc52ff0050c0f836e1d42560d7e62604944fd2707383771194bfbf31c8a1ba580621b94b686080aee35bb80153b785f8625376b5efb88c6ed8789752b98c3fb4da4218add3a95ac7dd36f8626055b4f779808d038f29d74784398c5db7012a272388f303d07aa29287627f011829c28a2fb80e07a97fca19ebb08087bf1fc415c79244b4162347bffda8e1c70fb521d520a40681f000e5f30a0dddddf0ebee69c50c57926ac8ab0f4ee293c6b0affdf102d92ff2478845548c12bc9c7ed1a8034bff00ab46e897104f37859d7dce9414fb4590e25af25f2801e402b0fa3da2ddb05d1e9fe5361320650cd485e4fea602a393497237c78f0bfe260a602377bbca366490fb72c0bc200a0ba5660b89d60ba364db58c94ee233493789980ffbaf088ea91283ef4a98d82e85efc47412103a238b225959f740b6a32c1378bd9fce262a72ec0069efdc810572426ecc4a215abe66f5bd44aa5d805f23ff009338d30047d9fd47d672aa39f696448a0209df8fc417680f83f225cee0a5bcab84263e057e8663decc95d25510e2150a97fccd4224982a387d23890a021dad336849fa31997d36d01be2e1bb834fe117480be1393fd999f1cc81f72eaaab7728fd151a82d4e9f2f6814e1c805b2693dc8045d3cceb842550e69a1085a1e5a1f68803072ffea4082aba88f4c1625f882bcc072c00618843980360b8d148328b0054d0c63a98206bc4a12a6259de205ba48255a24f3c447c414a06739440cf477115b61d56665abb9879d4218bcc2ca36dc5210154c2fdca41fb8c64077a4f380a5f88287351c90bc9776b35dabbe9fdcb41707f8c4cfab2ae8a4bf37ed47750be438557059379a0af3dc3a98f323d5a030bc5b5ef0e8641774bbd0d73ef788c4509b54f66ea764e6afdc502173ba8d498e066eaa6814f05dc73adc81f80ccca4bca53db1122a5e478401e7017c6882ec0c04fdca025cfd2116022c9b2b595a160079c51ee0b02b5d25c0ce32ddff3814d167f04250010f2cf31231ee87c8d45a155d2f6c10b35c0f6ede3da16b09455f28bb1aaec3799738700968f956702e80dc180ab7de0d21b6455d75fcc0325c4167b4da2c7b3ae1880476fca43f0120050c21e65d351cf177c225e00b9a83f507eef02ff00888eea198e961c76f4895d80b27b22d7b724e7d4e263c32fa88163ac9ffc965b7a28f7b31f6476efe025324248a13a8032e503b1a23a6627e8133e6cabb1e2e00242420ad1ad2c2cad948bf31324a981e90bf256044f98a501cd579468274082d6df10a75115a8ae81a430666e02e4186039f7828817a2ecf12bd72a818338eccfcca31264db3ca7fc95cd14fe4d542a283395eb6267a4c0ff0081334289feaa55136b1f50789c372a610f119a5fa4c10f38c2e2d88035a3646ae053d2f30b8cce3808731e2e19d0e15fcb58c18983afcc0333886bb72731baaa35c623b014f27ee21455c0d979f30834e6120916293f8c68cdd77713257ef09d2954d4ac76e2bea508e893ac1291fb016b8e08ed007217e128aeadabf68a804bd86bda206e663afbcb0b4eb9e29a2fcbba82156d0a7e92841d98530700e6ee58089d28b8016f42ec60de7e925881cae0caa17ac0a2e5a6c22e013632bc430966b92bfea250a01b71ec4dc60ca195ef41a800ce17de262ba830651474c097200708c141afca32980fc08c31015224d13bcd738990e34d03b65ad5c383ea27771699de204c08d8fb603c380663104a0521ed8f4061b1f50b02bc340962f38247d9cca15ab648b28938097fe51ef0af1061660617faf88655b491ea0aac694173dbfc441fc55003fd718e670cf45fa899b865a5f27ee310746f0755cc02976ecf66040368a03f1fce2253f0c27c53af7ccbdd5cd8715e25a42001da5a8c98035c171cb9698bf7188715371eec43861bb16f961f88ec82056d3882c130188d190f12d8004518fd4a1a63f8240546a3080fb40c24da38821a1c79b9f1888417be0fe507b154e4f8ff005cd85d9ec2439a375a59795af89f5445dc90a20aa6e586eb48f714c8670d619924c595ddff004ca1832e01d5e2008d48a47c387f10a268a57ecb7ecd4475488a7c069f729d445c09e2cbb82950feadca1c89572ff4e663f6070b77da37de14d7d845ae76cb4927c59ee8495e4cdff255946a142056238cb7849efb87df69a5f74388a9f2041a65da88fee5196e61654354aff284d9c65009f12f26d90feefc4571b354fb04da6aec2de2370037085794941582389f84c095d398fdc5875aca5f51276121287739088dc9e6efc4a1cc30e6283512ea108a7b95b9773e22ea6e30500b558e07e313881b05dc5514af78bbc972b36ac36751558ba8ab4b8930a622b859d429bd7c174cdb85ecbee94b1ed54e3ccb050d05a1601c71940203a335588c78db2a26addab56fda546b942a57ba2d0351513edcc78e41b26b800c87c273ecea65f67c77713b172773f042018c9843ba2740559b23071ea3e05310c10d77f645bffa983f40aa30dde37017d435c04b37e388aa66bb1fc401a7b88fe47e2152f74aec3509f74240c4b15e3f9fdcd703162f7ec9a27b908fc9859b0b087ca0143e3805173b1e5a96608fb5ae91902ae49eeccc208968e2280c4642b1a858fe11bb2aad98f2cb52cac11136e97769ec435750a0abe163c63e981d2b800e71d8af2ff625bd71e4106445b479f38202731a53dd8d245ca0bfce088383170fb40f4b323fb1028d2853b9cea35e8a9d027497e51384a10ea8415f042db5ea6489a7e4e9965410fc92d2c3c6a9e33c02fb41af962b0078dba67898d8774971700ea0907b4abd28d4c96a3520b0fcc68c7c065f31e29eb46ef10b7e91a4bb56a212870cc8037d0e08431a7a00705cb2a3fe0a2549fafca0258f129e2e5fce07d351b8d596d99b74ba9989676e3ad8815fcebfdd88b35320835802087052a2a3f42aa89c855b5454a68ff9982bd1d87f660baa0a791838f2305b6fcc4a422a72e0e13ea0011700f9842a3ab0f9448a35a3653d8ccdd254294dfb472b34601f8dc08357e0a62d2d43f159236eb01ee3889ac0c9ee52e2b11ffc646f00320623a311e8b69e22b9b29ddc4ca0f82e2464a76951bbc80ccf778ee18d66777c84555e075899a0835093a4c410472d91c527dc23600cf3813da521a8349d7845050800aa306fe94e5940e2ef862a295067ea0caf88b972e06b4869567fd12ccbab996c38e781d92ccb98cc1a44a785c3336716e08bc1a85a932b11a038e752b4cb65c4939a398d361b5a00aa6b74e65b40f408e3845e31fc9159956b71f31b0ab43cc41002602bc25b58142e005ca0169a77510423d988578a01181c008ad40e4e8003ee2bce3c952fda1c723d9986938518793f9cc396f0b88e0533cdf0c328c385d1d308425850e3ca2a36681c12ca9576f29e263ac19541f5022144c0e7af895dcd08e253b48a27e387dcb6df0338aeb985ab2096759140b9e62bfcdc1b1338ebe88641725ba38bf338f003a1dc6032d51961fcf4d90ce9adb1e53050143b4a408815629ffc818d291abb4ff04c5068347d3843fb200fb61a103c22fe350992e51cf70b800329f67308de34d7c794a5bdba904a1a3a4beec7c41f4ba59f3899f17cbff3c9137bd003c412c5807b5c10835a0a79e5354a14983ddc38b2c159dd5bb9c3395d3abee2c909c90eec9664aaf30ebb97906c10fabec8ad16843eafdee10da0e8fe2e62dac8723a87ac2a1bf75871312a6cf0dc5a7c65f57b84aa8c206ee60351c619832af0400f78196bba0ba8c4aa0541e2004436893e236e8d8def8c982003b45ecbcfe9292d37b1f114af53e13cc0c28b3d4e8990176cc7ef06d0d50a6fdc8ceaef566f3fa9605940bcb24c40041dc820181e4c1fc36456f5db6f889558dc033d709d52201fc4bcf9873988bdc45d5e7da50002aa5e744b6cc91cb1f841c798a772c83dd261a6a174f1eccc4d49ff00759e439d914c7eae6c45c4032712db6a08968ee7e58e8099a683f51f1312c7dae5e8d7a2d7c9e8c74140e78b217e7ff2255d8bb2753b8809bdf9940cd2d66bdccc5c3481a0848f81e24dca7bb3a578e3fe41d3be2b853b84ca32eeaf725839e0506f40e6229280159fa95da03ff033912010efea6260558fe515e550fc33f999e02851f2a95df4c73070a0723cdda52111f2a08c1f11c8fc47d60d81036ef90bbfa832a8a5bcde9f896e257c80d92661391841676b9fcccd80d5a8f6bcac0ad96171e5041672cc17f31ece5c9aae7941d2a8323f8450ac3603c1cc6f17076c1fe7899d471fa08dccc56d95c20216c32fc989567d36c7c0dcb3409fcae2324686abff0068c6804115fefa8554a5f5beedc32c90f7fd2196a47f29a8095ff7071fcc4de6d942fb4093c3b43dbfc6370387d06882ad38c83e3fc4b81cc61f88c58699446128fc5fcdcb5c9b903f70cdaa887865856dbfdc2f4316e5ef16505e788c9821fe8c7588980a7798338c962ac3cc20e8b28f8a081a679794cdbc472989c03d8f33f05b8300847912cd727da342a7e8bd44b27a6835d116edc10915f0d29c922577cc47ee122872b351f6b37258b306dfc1dc70a2003367bc51bd85301c81ac9867835d5d3712bc2933e2295aabb9497cb07b217f6ea28514756fa8881877855dc7806ee8c520ec7d47a2dc196c161edaaefa73011b52b25eae5d3aba03e711b003dcfcc4b235d717d433c8508300e01a8ec83ce3a6841889ef2a599abe214c0e161515c445cada11bfe62530657046496571c58159f64baa0455a918e60c3e5a28f5b119030d793055b4dbbb470e6721150ad2e54cb541b8c1601a50076529bfa8576d50da194c3c7046506cc24138d92ce1ace217c40c5ed393b090eb06fa950bf712b5b6c3ca26ae0cdc05f9211ed24a0daf0cc0e609d0c1802ecfcc45070e02a5d45305283a476c2e8a42b5da56008471a415f77dc08ed0f0c606b86cbb9c10d204154a56dee372c4d5b7341b16f26f787d05430bf895f9c86c37dd886db7463816805a7330f080c23700535862153fe4e02d5b3c42c6f02640dde63b8bc4ac8d5bfb951a0544e60c7ee610acaa185bfed099e9835f0f73290ed346190d3b8d188ce213e4223b4be60b0b365cee62159dab442c34a583f84560518375c57704e8014aa583d5f0c0041b06044a96c1a5502a0982a335bea5f0dfe661828d32ff005f7382c8296425d8ca0fbc80aea1beeea3ade251f7ab8f36ebc11f1d4ae30e460fbff88100bcd6f74ff92dc1aaa92bee28d1000ec1c09a4e330af218957fb596b5fe625351e81e7e11d0523a3c662f496c55f7ce3a370b1927bb99437808989bb614c8cbdd433c105e1e3e9ef98d71dd301e9cb12a7dd41c46724a060eef372fc62541460ec0a0fee011234512bb09804e91ff00a99184051f221c1cadc03f6a02cce0e6f296c54501ee3b8c060718a290ef0ce3ef18da6b27ff0012a2966f822b345950d9fb842d6ce172fa935546182b8a050f923f96df400989b84b4b4a19e9dff18635758514653ad9a0eea3d9c45d30b5ccae18e04f788ae2e165517c4bd546f063639cb643a315fbdcc241bfacf70492c6c8e57b812efe2d1a2fda570007a9d4a9a5d56000a1f93f5ca633659b0f7440c8ec807235c001eca0c03ee65c64ac07cde25608580becbfc443b06c572f50174aa31fb336cb8915f999e391505bd91a457045bdb131b1a9605543e8cb6804d5e8e04f84381efb1f686c04182b0ea22e5068fe3180ce06e3fdc467d183f1941db1339e09da7cc600b73a2f88106e4e093250166f73fea1c03bf9278804b7904cd013601541b0434acb22af455bfb845ab0ff00a100288b0ec8d3e5d878e62c7f1b100434536116f1cec3effe46116a1fcd6d091a9436f9e2d24b3c9fd8fcc2285ed1c999febf50e2034aa74ba78ad4e9530130318288fa97cca53de46dee9a0995b27e201e2a901f0dc5f080e07dc660c61603410156b96f619b44976bc4562ca1694f433345d89ee4e221f5bb7441026d1655f350a81a7d028158da64ae9ee660e609f0ea11c6c1603f50e32294fb5c4d16a71ce1851ae76af95873705a3de6d818ab141a3fa946ab933f68f490419c4e68a764410b13f501d241460b198153a8c50d36c1fd4bf6580a4be6614c5c57096b4e18713a2a5162964f3fcc04ad78b1a85747b7017113832ef9b8542b8167c46a79431879262b270c9f5dca9b0acaa8bacee0ca97297610af823e44e73d3e60155e034d211cfc063f2c451525d891a3b065d3c733012f95f0ff00c858513b077728c028635ce7fa81e44abb97752e8decb91613adb759fb9c2641c1edff0065cf5900fb9585821d568ea03254c9aa0f31a618f0c6c1b7de01b163da219581b068ee08bbf90966e977842b44dac12c023ae10c22df2b95469cdcc432f7c4035f280beb43961db12eaf9429e00e42e255dcac0fc4010350c57bcb63dc27688444997817f28a6407517ab53d259abc4d357a8dc17e574428d2b87482d03d1fc2003098394c3ab456ccc2be51035d900016e99f24bd2d7bce906de266d88f1015830e998cb6dcf0900a5ee440a968296acc2a39c960ff003de0c807a0f30c7c0d6ae28921aea7e63caa51a1f6e2023bfd2590c7be4f3d4cb3e0e4b1771b32aea1d79a560cba427da0be6e8c567e274474ec42dca3081b5632a11dd939694b518b22e5141996232645c45e48594c423d779493744304fcc2b0446cd4ded662e085a5967faa5d7355daa0beeb6101050516b67cc459e54dae72d4be218fd01cc725fb4a7e5010f54b67de3a190e22fc4e6807f59a8e5b0403b51979a827f6c30d5a331c6406ac1f79693485ca16fa9f31a0939ef1a01759170bab289ede7bf78161d5cc39ec94d17720ff0076406a81e093fc713420b032779834300668b17e8d8c071da5257d17fa3e60ecb4c16e5a7506ff00a641303b4a2152bf6d47c461c27e58807a05847e3281eeaac202c00a8dd3fe3de27d2203c04455775741006acf2c3dc89e49324fd9fb9725b7f4a74853223207bb96049493f83113b80e40f3f12f8b33199ebb86d548258b8f9872e43111a058c93ff1dc228d84b3d07dc3f101fa025bc4b8f81d7fc994c06ffd399a4a40a912d32362bf100243b76008a2c13713466210002f08ab1dd238010f32a0b0aba552821cd16850a3855cc10007804136b2120456c051b3c3c4ebe0da089be826b9db00187bb41f9c1716b07c1d4edf539479871242d7f01981180dcaf8dbf504a2c6966656558a45144d2b3bde2f60adad94751979e246497333a87c15f99b15a817d869069e41e5e6905d50f70dbc66679af1fc08a9bd1287d89721b4ff008b03986e19e0254a776fe5115d1063fccb69b69e19ca130dc4bda64dfbf09ff36664730ae290a5baa214512b50fa32ca155ff296a02e7c9fa2c3f33036b814f528e5598a2ea24d9365bda10117281d2c61169a144e912c667e828cfe62c172f02a3e2521dece6fa450eb0fcd99798c163e4d0871a02b07bb050f889c8becb7e0291695e602b701b45fb4f9a88dc31502eaa3a0cb41fb238af34a8c0863ae05e62a59a145a0f2f29b63f88f101811fcb061baaf0079891fdd04e312d8a453de14597647d5b7f0892f9011f00dc65c28e68c3409d5beb9851b80300c1b1036178e63540cdb4bfc98ad02af6c70db08b550bf0c140dd9aa57cc8b0eb6c12ed27e0ba230d1e9a3df9849e63f60856dd0b003e73fdc2c780af040f71eb4a0595696fc04b26aad9cfd12c8c46465db356226f99cccd497cc11c2471a3c1ccad0f4ce66334a76728fc13cb00e7caccfdaf24b21b23f23350c2fb0e4516a7292bf0806447315b436f67995ed24b13e1c45022ec23bb8f717351138166c5c330a11f41329900e85fb458856e993ab44200e8f7b96890c134856b3556113e2359f183de32983f3ff00a8baadbff02a5e2de107d91022af2b5fdb0aa13e08eb01e0b8f5a5ef16b45aea17a014ea2943e904b4466f3a802029c6203a57da58a8101889f825661a4b8af9b17eb0bd412dafe095f43ab329aaa70118801f0952419feb439c6ba0470aa9ec97cf6933065016f940852f88d5058410936fe821b1391b25f93c90cb0c319897b66cd20a45748c62e68a2fa8b48c31da5ad0353115295600e7de3c59c80b76bfb8debca4c01b89009456b0ce41dbc75334a2b6d14b115c128c9479f683dbe3cf7a3053df46376b80d6a214bbbc2d242bb5203cf988c7c00118c8b185dc1894deb38a3e7a5c31f993f648b6a4d8b7e063ab0d07bc7676411bccb10999479678814edb945c8abc133865dca25ba94a12ca50f99924aecc2d319fb959861c2d62b70e600db9189ad102d5f2e610b7163965e7981622b50eb3128619a74b299ddabd662c02c2e99a38817f9075346d94d4fcc493b688bd1ee15f32aa5070419bb900b79272294dcaf933498e8a3dff0097185f9b492bf6dda6c20334317b250df6cd8415599ff109892b0238773018fadac9edb88888703c8dfe1313a65cbc88f8146b2756b988d1a54172ee0598fbd63f5331c8d3ba22f3aaf92a080ece453c1c4b616519be394aa611c2c0868336e74b86e8ea814bcd991f88c9122815eb84480684eff1732e9169f87fd4eb8ba3e0fe100762bb38fe66c63be13e39981d45949db532e2e2827677ef33026c7e90a599c07b90ba6e91f019954181462e2d2322dedf89e21819ec1943bc3c10d79e1f577ffa8a971c017b4b20daa99afc197a863817f7328f1a28a9d9c440556abfc13a91401aef5862206e5027ca164a723f0c2e24ac03e58f45646c21f124e288510d9839f1c4b27668bf997163c72df39659cb986d4739ddefca9c796aa1e63574e028dfb4dd470b9636b5fd98658b1c08cc4da086787d5c2280d8a0e21844ed1348030849f6402143ff00084b0a96c7f43105d6eac7e12aad0d6559e22d048208c7cd8babee6b883ec82ae05f2295b29d15cf0cf68185d818dbdee1684721f919e631c8a7451655c059ee62190ea8aaebfd51579c11f1a8815dc00f66586e0d6f6a39d98f031e227e2eb3d9dccb734aabff007bc69672067dd994a93b1441acee5fd1225b195c35d31082b22b593e1964f91b2f840a271f4c2a2ab19fed4d457406b80f1544201aedfc93368468339558a62fc208a419a01212075b379ef1183c81f41afc44fc593b7cff00ae5e8637e43a26ead2ed4ded5fd44014702f9f689054f049794aa184d413807f71a2e056fd460da947dc502119e11816539fea4b20eb55e01cfea1411c585217efa2400acb10574a167fc3b8540fc4b1e2572a9a12fc8d440763953d90584dd8ee1160366549b1b72c6c7dd0cd882e58f4732e090a253de2a4d2f941edf398d8801ac5b7f7ce0a822195067f1b811f0c49916dc09760060c9ed3a1df197e6688cbc8fef01a26d680a6745c03882c7ec612c3a003d63300d4690f93961e10b931ff00b9ce405a9f3ffb2ec561c3981c8f0f8857a2ee7de196fed05176cd1000474482e3b871fb9c26e8148ac2706e07dab60900e096e4d78819dd141a3ca782c202e1a5bf7e3f989917b15fca74f9653ee7f888ec570bd572c18dc2e8042804524b3da349ce853f6e6148e691a256a02dd5229295476ded6820ab5f2c20423c4b3b3f102a37dd00d7671b8d8fea10174be704c0a02543f710f03f1ca52d32f44c84b38731c14ed703e52475f32daa2c0a9198109282032590413c4055cc114bba402bc7a6e06bc658992596724d27ee560631d134b3b152e5ab4033b2bd4c84ae8905acb4bbebdc8197d3016087206cfea82a04ada20db0698a8a9e0ac153e61574d14dfb46db3cde2156fc5a7c43887ea41a173e92365a7fc81559cee66e5e5b8ea7be0b2a2691011f13685cf14ba9da96df708d178a01786202b805e2164e1cd400b0f94b0599948b5112ea3b81018077dca36a8f31c8686d738ef26c80073d5c22b379e612ff0033202170285e65a05a22452ddc54ab4cc8881e8c547d922d5ae1c1054a3de2290b0bcc251c2308cc98170205a85748f2f89f23012f9856cca697db310c962d2364afb41f566040a5dd010369123f24e58670742b82abfd06157da8b04ced2a852291fcc1d47abe070aa9d8c502ab92aebcc42c16d347ba5d4d65327f5e25be37b1f9821c2f0ae1e7fc273ed8298d1cb689501a571fa070e636c09bddee112533843b822712985ca34367b709a1502977d400c050bf8e11bd58366fde098d46cbe6c842a2e097ee2d6e89c7f6814061c16e644a0b9795ca6146433ec9d61e71f93fec2293cfed110f405af24082566c10ef2340139332b2177b402f7858a03a8522cf3a35369ca50c652f7cc9c2271429a0206b50c0aa858b2a502190fc7042ac23d8c441b56cd84ee5c06231005d947b86e86fc822dafe97fc4a2ffed89f19fe206b3f028a165eb1a0b7b2332e74a9fca101a37f5311ed205229b8364060cfe489272d87f725c006515705b889d140d3f8d70a2a805353ef0efa0c7be11ade5419f3442c00a42cfd453139d48838c3ff0080943a2b7bb22d0e190fc2628a2876f9b94b08c8800a1d0b81f789e4c10071764b03c15045d10c02be898e456212d6735a07c310d66ecbf7099a3133f7129cb32a16838a999b0bf9cc5c1df345256f2567b0dca0761894ca11890cc3f715658588b3ea232c1fc0094326c1116b36ae42fc3353da1fb0388f86506f73a8184c65b4f9458d48823ad2db17015de1ff003d9b18415fb6629032c8af8b8bb00a0c908da246dfc9021e98658d9528661d47e07449288fc9b28087e41e900d38a703032b181207b00659261bdb3c060a6ac869f084bb06f5f4e62f3b74d3b403056c4be2b53cf08c5fc217a911592bf07cceb020b1ec26452ad510f68806f925587bfe63226c5b608322f9485aa5804c4d3701aa0052348c5450fd8037bebf98ca56d623bdc07b8710f3ed36ff00e188cd96b0f97773184b86f4ea66cefcaca032a199022b9fd90c53b755d333042e8be8ee32ae14387b40c028b0f87708d5cca7c420595e8a37fdc520ee288026236fe08845dc85b8c0385c144d4223f3c48fc904045918b30e11a80aa4ca98780089d842bd1ba2d26a898d8f74dc109aeaf11c2ac7882972f56e1d29e200a55b07f2f7d43cac001fef9855f048bfebc46bae029246b692a1ba747e94aca0f62fdcbc339ce170235abbdc6511c0bb3c402aabd5183604d60101d9b45c20054f899b0129bda8f5e55c4c5989cf3f72e50557735562018bb82841f6c5410e3e48b1656c92c9e8bbd92d287957ee85563af745d55fb71400db2b454b8830ea6a5256d10ed2d5ec4c72bab024314325f64afc4aacc3632f91c772891b81083687b6f8896e5d7fb171096411b747a6a2a4563b2008cbd529f30e0c730d81786e1700eebac5bdda7b698693b7631020b4f2a2286e6d0ba9d9c1c4b47661c0fa46806766a660605bd0c02b309efa1c74802fdd123fe28f3f52cb958336e5400aca582cdb2e3c40aca1d4bc3586303982024ad9acca3594b981efb96bb7a990b43a8541639cc5c88598c8ee26b4ca024873ac9685881c799a06baa3171e82d9780823ed5f7fa8263dc17ce54e7ea0f758203622e81ed13b08043f046a80a95f60e2684d6bff00ed47b95920614084103fea772181bf78e18874cee0eaed521aed0b44cc3e29860a657a84ccb6a026c6082ad430f98b74219c0f1710bd6c828ead95e5500fe22e613c00eb87f72929be1b0966ca6f908c1bca4c7172de2db23f8891a71a7e672255daad83eccc4c42ba2878572c540f8c00f9103455be9e0d3fb9b63d74c48c2b0bd9ef789a005431d4b62eee3fba113199a3e7a607096bef0b2458d18980bb08a5e1a2cfcc3d2885c1c42bccae48fdc20aea28d3aee5a070ab0f7fb862a5ed6deec4e680d52ae0b3403fb3f52d43217bfdc225be9855a6dbc6edfdc092eb6084fcc243bc08b3dc67e6277f51d602280bc5b0d9ee522fe236786ca1cd14e728e61ae2ecb51d982ac07bc2cf3ef2f090a099791eefe274982807dc01a3e03e6a5ef3ee5b3d5b0d5b5576e5636228828098b3229ec29c03c1113fb33192f220ea627f21ccb282885b459bb05f88cfa61cc024a806d3ea16dc5d8a3fad4589c62f05886e0f63ed2a375147b91b2dfb93da63c16059440cf5e47b4aab68fee08de904983e860b1bfbc7a31f612a212b05ef93ea29ec0dff00ea265f58507b33060192d078994859ff001980635ce5bc5ea0c21b028f744fbf5a5fed08115887d98982055b9f98587a198668ea4baaf9c423d80060585b3816f880cd91161efb8c4b18150325aadd81f5086014b1f45fee5652bfd91343281f87503297c0b8ef5d59a854580acbcf82508bb913d46cdf675d3cc291654612cb9c5e9798173cf63dc2553f1b084d4b5f21f1b96eba5cfc91005b830c85d112f31c6dcf11ff00a6224b9f07daf1000162ebf14c53540509983050af15c1602b030f330c0023f0188a18faabef69431d5b177e275698711db50565a628e3c5667b4a006858f60e3da1b06dd9f196d5a27fe11da29ffa46f4b765f52b0bca1e043a186f02194154ae5fd41160ae0a804a12d92ebde62baaf0113dc821fd21143d1b9099b8300a097b4c1a0f6788ec236de01edfecc3c00ab690d383a048ce10b81841674be18f996905c1b1ed0c862f04854b93b7294bb07988168e9b21722f6a708cd4f3b239d316c863de44f0821492875e63102d86fdf9e264f81e9c6e00f2a81607545a042b2b9868a01d2222874204d83d9144b01cd440146808a182ca6a53a624a1e2620591ef1a8507e259ab1e1887f032e8db888ebf32978c778b99e234033f7370280b660bc92ee09723e22c3c7984f0e8e88ac7bcd373c147604ac229cfde3dbed1d329178f689b469086f29786e35485d5cfdc28ff00a2ab8483a4a89c02703b20e144505a88b457756a55528f441ed8e7929fa85b73678852cd86ce3f8807bac0ef575887a2b75b80b6eb907081e69ad897b2c1acc0658972fcc7157d2d19a462898741c9bcd4226d9a5a662ee26aa0f612d02d3c75141da2f32acd02809680d4691dc4b18160a02dca8b538964a8f3897b93e518a2c62ea3ca95c75089b6344c1add94811ef761d904859bfe5cc51c920e362d3f085b7402d222ac881c07e981d59c406789bf51dcb729c03879bdc4905a2b630b7b7000f2240300a963c0ad438c4c0f231ffa94c2a975478bc32a1bdb687d63f98da8eac03eda95f3b69607464c00422f04701e7910bdb96b6e7c7b4ac3b0a830522a9d8e2a3d426f844c1da6c8c8b15f42cc36a37f40c0c7e383edfe61d803e81acd92a219046ab9b4c8ef1002cd7ff01454f44ca1efb40aff003f51cc7c992a8be7ccab816c24d99ea1fdc84a2f625a3b9442c88544fb47a357afac63f052a02bf281641225a5b0e5ba4d5cfe62e8fe6308ef5da3c27129e05a305d635ee6a520d0e59d472653e2b9713176cffa4280b38a13887c118b02fde0c0df1688a5c567607b30196f29840a3e5640b1de3f8bc4363461fd060aae2e5fe972f36cc5fd698e8a7bb3ee1081e12513881c98849b86d07ca4b5a105d1fac91d04c58a7dd885628173f2614668a116dd8d4ce17402def092a184944d529279a901f425546b8f94dcb097d6ccdfb92e86e50c17ef10291d3f9448ef91f7c429f26e43dd864c65e4cee8ff00b191eb5396e32ab7da8ff119a2563f0344577b8c69f189d73dce40140fb19f88d4381543e605cc8ba09b7c5da778c4c80b3a93b24761eb59ec1304797479884b966a7f925f8c6978cd705c0a8f1e62808dbee2609616653e23183a7387c3c460a20036a93b23de0b8d0f4cb83e7a95bb2a0d52250dbae060cbd4632fa7a3dccc2e5c113f911405f6f7575f98a69d1041ef8400a56ca5e61938ee213b668600e6b8865e502fdd3027641c820e531c033fd7c457d5600ea21c0bdf47b4ec870b7ef1fa942f50779feea36566c93da320451cce68b840f1f03f0ffd9d4412406cdce18795f8239132633f620e35c3175484415595bc8208eb39b685551c3a1112ed04d41436a60bd8eff040a8ed74dc81826691ecff003299cd2c5f8ff880e4db018fe51a191a8daf59e25b4d5ae9ed11b88c9c505e18343ef2c2b0d381e5168153807bff00ec49789eaa953a5ced042da3c4bf922414e80733830d76a540bc1792df8e267077895f7981166676efa971c06c69e23f21fd26d15e2ced2ce0f8dcc1937a8cb8b66776ec4f7d40053cabfb22dfcb1fe9e260d1dd0b7b4528a856b16f75b22268862da4b2cd219697ccb4146f460d4c32082a38e3445ef7424a26830061114160a6eef88d69a3f9111970d3223a2440c3f99922ed6857c41d5adcb682a7b21083278685c368ba95fa8e9c0b496a91f923559e0450371f8415ce4e6034b8f31655d2d7e23a78aef38600582dac2a6a0f2823b4419b136570ef907882b72ed652881d82135023188adb46077f0184005b4710c0039b44efb0f2a7f9f11f9c1cc60de10a8cb923821059f61b8a9dc8c3fe6913272361fa3a8b5f3483702ca2d6cbe250583d8614ea6fea53b503a4755ae4cfd408c37e2c6551f33ed08d0f64c48d0503e116b2fc5094520b4d31812506cee63cd7c8849e686388c366b3e98b5816f7001da74930250825e5cf51bd92c81a16fbf1181970797c86ab8403d8e601b0f128a2aa8eb3129d465a84d28eaf0c1fede2e710116354efe49938ed0dbf9885b799fe1c911265727e1e10fd63fa720451fb63ddc6029d86696b0e1c2f226cfbd423fe7e208a02e815f1b5f889670e4c422af194a2c24fd3d541498327f3bfe210825a4fb40a18b60a7ee226e983e3d4c12ed1c1c5ee329a4741ea0617a2ad1e44308783b8441b6701e371fd40d94b7b335a2aecbd8d4622d9b285f13081b586ff00a8d0f21f78935ea8857c9e1f7855870fd06a9463cf24bc4a7c09454f7932e3148f6b840a7f0352c0e380a3cf0f88fbc68fdfd3e621814e0ccc7df6cafc4a2002061e78f9407bb3857d26c8602be5a2dd815ef48e43714fe22046a68787da18f1e32fd7dc593a8c01ff003a99487f9c4327ce62761b5a078e6190c2e87ef71cf5483f189b82eec53eaffb01b45174bfef2e222e22426d0b71647bbd939259d9fd3e61da8abaa1065e302a6f10319f1adf6662ed5fd5a12ada51b0f1070d5dd69e515acd5488aebe2675ed1bcc4067da7ef7000316e3f398222f0b97de35154d8de42f660c7317517b90d07302a6be3332e30a1b2f75c311b4bc4339db6c40515374078dcc6bbade7cacd642722808332ea4378da47ee2e87b2c3ef500fa205be2670122957b41a3aa07d32e030d322b89eea3a2841805d65f30fbba2d5e345d65b8558d31607f00ee39d81b277466521c901f921354755d115394400afe5f8968c9c9840a621bd33f30fa1405bd89207261fc004086269b1499a416dff6e350f4e87acc5bb269819ba928a8fedfa81b81631160b2b8cca29744b02f5de20a46847cbda3d004c87d8ac4b19c2f3ff508e10c997da1edc1952f66e25aa8b423db9828091c40812a640a661f9c4131ea7188d980f99a7a9b030232cd87b618fe632a07f9056634f77a44b05e1b730af3133679b2c4b6316dd098325d80c7a361460fd44a281489fefc4a8869ac67c9009f87d22e0b6285c23eeef7d20caa95597c4c81c6c6036b136ebf21cccfe22d65e2a59c081fc872c25d49b4405419232ecc3c33194d1ab62a0e1691cc82b8ea489a9756992bb8f5e52a20010e32c079942dbab2c4be1e011cfc4540b9581f8206e4714387c4b6218072916266159fc2ff00b831c059eebe65f08d784405dab04bcb2c0d1133bdc4955ef2a6eb78c010c0e1c124bc7243ca37162512ecc24b2a905a0c1d08855ace0f845776abb7ec846dd9978be6b52a47c0d108519154f94f22e0038a1029edba5d78a810c9a63f750141584c28d570dc18a9d6a13c456179c4ccdeac51212202fd1292da3f64d20f16d469613c908a80f2cb2b27bcd21eedb8295ccbe0566cdbe3510d8b923008c8c15b475e8800d8a2f5a8c910ed70a2a0eaf8c21523e2dc9395d19420586f35c2656300214f88ea16ac965188054cc0cb007d908d95361416dad859f39a97ed2ff4852560ea01c59d8d416a39b21939587b600f4b8d606a2dcb004b741fcc6142a5405de43cc4904069db12b79cee623492db2355b6b07831a12d518e122ab71b415080a40d0205c9732eb2bad964a4bae6025c5b070f8847bb7f6608ba2ed9ff0052e4c4bb0fb770eab98d2081778654642af91b999979a357a9c072a5670b31793929f98ecdf721613627f58941021cff0094aa037aab8c96574959f13c78e0ff009175e46c35d6587f54a5c1f887b3d09cbd90df6a4b7cc1a46c8026d6c59b2fb331bcd9667dccf60b003db52ec2afbe7f78c690f081d91b6124b97e47ea523a6a13f89670b84dd254b1fdb985ea69d4681ef47b93d31f67714ced5420c68c3feca55d5c2841372d3a0dd4ca9c977bdf50b406236c9040f15e8d0aed2a81f7ae61c0b3b32f8f12c46d5d1f8818570a5b7b903a7b463f7633076316bda29cc8e03f52d87fd8c5ff002a225a1a404ed19047fe4542b171328ff3a8f1339fe34982a0ca1f7cbf681a10fca1814e05403cc546720fc9e59b171d6fb236c02d2f95cbdb2c296963b2bae3e6040366c3fc7c42b098adff00308aa6025fcbb8dd31368310ad9549578868a6466a7de00b2cd87d446abf4c839420300d381dff00aa12b28dcf899009a343def1092e5d0fe05c1ef600abdffa8074405b74434d0b5592798c205016ab2a3af68fcc45e220b47691329fc420a1572062d4cdb4b07c42c0235888c513844b0147491c13aadb54ac9ddc855ef1154ae451015d3d484f1d05f2a984e6f07885566dff00704aac45ac0af6fea6446e587fe4613d8e23f99d5e4e0bdd50c0863f411fc4016cb275ed00af7a28759d7c40d065b757f9f71d8442a011b195b2403d015c93e68953b970a115fdab0b747d341f7f29742d166a1fb777b47b830da13666ce19aad4e584d46fc6e152856351c9a3b0098508721fc08652a2e10794f0888803f98fc058a1f3196f3c86bd21a7b962f6848cae1aa43fa170bc7e61e28ff4aaa54070dd3f3e6211937dbf78e7ea12c186ed6d8c1d769de1d03dd28f92c43e58405ec955a0922e7281e6a0b0d6c631fc4795e1c2fe12c1800c1fcc34e4afc08ea00b34b47dd0e515e43eec20bf572aae2f7fb832dc552aace2a6defc20594c66ecfb1386e0581f995809c68c7cc64a10b2a0e2940a0c5935304668cadddee20509ce73d89687955cb7e2580d28ed068577d0f3362ea362bc1c438de6ae2fd23888c5b193fc90895585a368845ecb554ff753118f70c7bc72809a2e61135c06d3397ae9611f10ba22e285f0038246206a19fa9c870e493dee00b7cdc60098130c01c011d10124e20c88b676223cf25f9571eb955b956f2ea69503677f3a8db74c8ecbed858b7f0deda2688bbf0147d53715dcb2a333635fbbc7ee5d177fd6215da8b69502f2e4de517d8657640e6cc338ec2489b560dc8d0754629fb45915c6cfb44903f09e6ef198964aec8908786e5b540810bdd5add23413ca65e3280cc45e56d6e36a48f500b1779b420e0273709631056e98d41100b001056372c2542a9ae58d5e06210a199b72ba65a69f89b0adb02058732a800f784e8a40c423a4bdcb911cbee57042bff72d07c784916e8751c59e494337504d8965cc15e260188d60ee2ad6a12ed3888fba00e981cc0159e2a5c40a2353719896c5cc3771485b1e25a505b9d7aa992333bb337696afba0940610aa84bcc261814559187da5aabc3b11a5ce2184192638c2642161586e27a565a451cad9871a44c9bc807da50d17c19902db01981aa38030ac729f7b84501fd434426d42c18712143cb0b70c15112cda7164b6557a6f9c3d0787917503ada807f796ac452ac4187b12963ca55d2bbc3374dcf88363b970661091f845660533feaa345ae03ff00441a494bec0b19a975d291e13305383d70cf795eca5b1dc00c97fe922af8f023eca99d296590fe99bb9e692f8a88427316bb14a23cf9975fb1c2bd54c8e8bb50959694202f8810db23e16dfc418585ee17de5252ee142fda3b41d917bd622ff2eab64829159663b83444dab3da0751d827e3331f1bc2f60e2148a7a21f1da227dd43f4834aaf917cc6bcbaa9ed9443dab56f981641077c81071cd0cf5fc3f99400f22c0981194c03af294f52f23d8d886abf932dd3a880bdf4233b8202177b1ecb9837afcd4b628eaaaaf16211a891403a7942368c5927fb9882dbafde843f4cdb3eeea008b6207bd1bacdf1203781428ff10ee21afb370ca836a3761fd4bad009b277fe626e3ce5ff002cffc4002111010003000301010101010101000000000100021103101220130430144050ffda0008010201010200ddddddddddddddddddddddddddd62eadaf6bdacf67499354e99ba43ad8c66fcbd1377777ac3add55f97e077474b463de66641de803ad6de876626cdd9bbb37777777777addef588cb4b89e5ae64de9e9eb63d1f0f7999f1936675999d6eefcec7e37777757a4ce93737474b7ad7b26efaf5366acddddddeb777777774f96235b71bc5e7c5b89e3f0937accf9dddd824ccccc48f4019999999d677a4ce933e1f923deea6f5bbbbc75ff008ffe13f86bfc55fe2b1eb7add66f5bbbbbbbbac1ddef766cdd66356be1a3c4f03c3f93c4d3333326647b668cdddd8f441ef3b6337b0ef7e4e9eb3766cddfbde1bbfda7f671ff005f1ff771ff0075a64cccc44c0cccccced9ba3bbbbbbbbbbbad9b6e89333cdb8de1fc3f1b70fe7f9fe6d3ce644ce99b0e9e9e87a23daef58c3e5ef76675afd919bde613d16f4dbd4cccccccccccc47acccc4c4ff1ddd8cddd9bbbbbbacc4cf2d1e3787f0785e178bf3f0d713bc0420c23d31eb2660779376667c1330ef7e4ef7e766f599998998cccccdddf8cceb33111326666133323f1aba3030a95f1f9fe36e07f99fe7fc4fe77f9dfe7785a35cef57a3e35ff0047eb77e726fc9deefd6aeec3b666666666404ccc66626233330e913333333c95f25732661d333326234b70db8ad56333264ddffc19936675b0f8df9dff0017e5eb77749bbb1f8226264c99988c1d3b66cc2a5430333b559bbbbbbe96c3c6f1bc76aeeee3d6ccc9bbbbb37e7773a3adeb33e326ccc3a7ec8f799890eb777774666666662666796be736103ac833777566eaaaecd56de97489c9199999deeccccc99db36666ef47cef5bbf5bf199d664633199988999d6efa2dbbbbbbd666666666640ef7766eaaeeeefa6defd6eae8ef2460223d3f1937e73acef3e4874fce4ddef7777766eeeccccc666666679cc4cd1f8ddddddddddd9bbd6aefa556cdbd2eaaaaeac5c7af4a84d63de6274c3fc77fc0f8cfacc3af4337757777d69377e733313311326eeecdddddddddd5f4d9b7a6debd7a6dbeb75b362dbaacdf5ebd7a55ddd57ac3e1ecf97fc833fd5eb47777566ec26ecddf97e3133a4eb7d6eeeeee8bd6aebf18989e711133ac444447bcc9b33137777acf97e9e83a7ef7added7477777ad3bddd3e33e73222662279cccf8d17ac998199999e71333cb5f3e711ef1118acc3acc44845eb3333333e0e8ef13fcf7adddf5e866eeaeefaf45bd16ddddddddddd8f599113199deeeb6f7eb7d7bf5bbbbbbbbabbaaacd5d623d6e89f0fc84ccc8cc9999087c333b611f8ce85313ce04c9989aaba58b976e5cbfadf5ebd7af5bbbbbd3d3de2623137d7addd11ddd99318abeb57499158cce87fcb77bcc3a630877b323f19d66667a2da3f1937577a44c9aa59e4391e42fedbfbfd0bfb2feb777577d16df4d95b366de8b7bf65bd36f65cbb6f5edb3659b347776318f676cc4eb7777777e526f7bbd64dddddddd2dbe8b9c9eff42ffa7bf4ac66cdd56dbad9757d7a6cdbd9c8721c8729cbfa7e9edb7af5ebdb7f7eb5711eb66eee96f4dbd2ef590eb777566f5bbbb18c3e4e8eb7777e1eb2666667f8e67c0faf45cbfb2db1119899e5aa6662624d1f458b16f458588c66faf5ebd6b377a5d3e77777777664d99f4333e4f9dddf80cccc8c7bcf92c3abebd36f5ebdfbf7ebd7a2c5fdfbf4bb37d36dd888c4cc9bbbe8b0faf5aaf5bb3573ad6109afc6cddd9b17bcc89bb3766cddd8cddfa00f8de9edeb33a2c5b7575575744b16f5bebd7af5ebd7af5eb7447757758f5a4dddef66f55e26b326fc6af6f6ff008e90333bc98fc1d677ba7443e77556643a7ad825bd6aec7a61377777777777777777777575999deeeeeeee7071578f9b86d4f9cf9c7a3eb330e89b1e999999b9913ef613777777766ccfbd9bbbac63333ff0bd6ebf39366759c5c4f0d6bb96e3e7e3b5777a7adedecff2dd99d68bd137adff005cccc99999f29defd6ccf8cef1e8f83a667f8e744e2e2a53acc97af350e34e8ffcb9366749d67c6efc67f96eeec26673717f991e89933e708f4fd3d6f79de717152a76f7889c9c36ae75933bcfb5fb26f79d6ff8effb133ae5ade9deef4f58763f79937a7fd8af1ff35293749b34997ad1e7a27599bd6eff00866664dd9999da67de6666666664c99d66eecf7cf4af0db8733bceb261322ecccddeb19bbfe581c3c474cd87477ac2b62dfcdff3d7f9dfe7b7f3db8333fc5ff126fc6c7b66647addceb77766eeef5992c56156b6e1bff3da909bb333add666fc0f4b0333bc38ed42bc7c16e1e2e103a7bced777907938ee998b1e3b707fcff0081fcd7e24fbcccc99999d6eef61989330eb0abc79f199981e7ca2154eed4e5e06a56bc3f89c3f8db891ae4c0ccf822109ac4ce2e138cada95e22b007e0e88b1b97d65a944eaee7926bd6d8e5e2cf8c99998991f84ec99998c66cc02b536d56b9984d40f9ccc42133938a7adad96f6f22d52b5a99e1e2fc9e2f0d4af96b095a96aa412ec1c104dc9bbaaa4020d9b538edacaf49e51558ad2d5843ed8bb99989303e35999843adddccf3e5af9c99d91333108465a8d6336264681ba3a2c65912695ad392c35e4fd2af1f1e206933a7b6cf27978ab54cb5b2b097ad52cc08c265e8d732b4fc5e14ca70bc17a4403addcccc0f8cccc003ef66266615f2748bacc09625a9608f4ca95e3e4a96de858b683c75e6a3157484e1e320336f6ac460b6795e628b5771896096858884c4d462ecf3e48362cd6b1896e2787f16b9999819937499999f3bbbaa5b487599845cd84cb556dca7316e4aa59f5578f8f3984c11ddf34e3fc295b55e1e4e302870f1708318132bd5a6dad4adb8ab440b1b313ca81198319a9e7ce2334896ad6faf5eab74bd1a79f2198d6d57a0cf8668eaccec3061f0201d6632f5bc5e3bfea16e338c872d5a9c9448356bc55a67697a71ff003940213623f295e326b620b348a82803a87569a306279411672f1f15a79f3c9c754b3184cc3a66786ad6646318ab0899d0ea96d1c841122af596a7e2f0df8ac7a2f6746bc8f3d994ad216d8460130fb3a008c08c5ad612e5104960eaa1377a6a955073a6b844f199373265a99f2f4889d317483baa4cccf29087551202e64c4c4e65a5aa41466cdddf45ebfd15e7390e43910ae758f7bd091846663d6b0232f4a5ce8474742220d92e3301041300ada89d66794ce88c44548cf39889d1099931032b421d2ef475bd34bd6d569e113e726e88f02388809db3413aa9609e97a5a5b565b8ab43ab15b688c65918d0b96acccc22263118f43d227c262759999998d5ae0eeee0538ed6afc261d63165acf2bc8db7c7e0703c16e2f0d30a34483c57e3e71eb3320266440c665e9452225f98fe8adf48cf229deea0091a9c0563f08f44b55aa461359e50eb633176643a04679f3840cad0b9c40758f5a5b66b2ee9c670538f741adb8de3bd2dc5c6f8b71db8dac1e1fe8390ed8a3915e819a4dc817b6f35b06bcd5b6e5abfa16e85eacb5acda844f3e423089d356b6a332b5449808998d506206626640c95adedc6d023d83d61081897e278c815ad681312f4f1c8715ad52bc9c6d5acadab66e5fd3d91109a28274cab62b2cd6af1db8a96ad859c950ada6444a0180fcae74cd18857ce3565dadc488a32c09333bccccca8b7b70f1057a26a9358b0508ad7c792a77b199c9c746156b6e2bd0afe5aa5ebcdc5cd198ac3a4dd7a51972c617f56697adf47c940c6b695bd40669f2f416eb0418319b6ade96ad2f1585872d59a4ccccec956d6e2e10845060334533319a8747c074ccb5291313cf9696a3468f1d671f30f4c0c6246624db579a5793d7af5f92163938cc2b19e6fc7519b17a26c45580bb148902d5b71da95b2da5a16ade22087c92d6a14e34981d9d303a66799ba822c08f4396047ace996111ab5e3e7adfa3bdeace275cb4b5704af8ad4e1e3e13ad8cc49a74c26a9d8460bdb0e9e86c5eac25aaf1215ad871089998a15e1ad0112336610e8ef32330998c03bc18c6130262065a9f9d69e6fc74bd6d0f9bded7e3e52cb19c9c57e1854a52ba18461f276cd6047a1d610832d0ed08cbd7f36bd582aca9ac4e9994e12b8423d6333126c5f4d9e479ffea7fadfeb3fa8feb3faff00ebaff51fd3ff0041fd07264672d6aadbad993279b143fa29c7c95b1f17b598a5ff006af2168d4e2296801a0c50262937acc874f418bb902d2a2bf04ce4a86a235ac7ac495e12b90211331874dff5797da79f1f97e5f93c7e7cd78edfcd7e2eb6b6c439ebfd7ff5715e7a50f946544e5e2a72539ce96ca22356a4ade963a621199181366ccf922f7bb30e99acc9918acb1b966a8f9b5abc89c5c599d043a7a446318af2372e5fdfeaf2fe8dcb71d19fd4eeeccf81e3fe9a5c37ac8f4cbce3b58bd6ad19677109613c95a3aaa4c04c60408ccc87c0b19a44ed847acf87a627256ae332b2d5a718667c335e6b7f5ffd9ad96d46abeb7353310ab5e93c954cccf8c2579ebfd75fea2fbdda52cd3912c9c17f4dbbc46be5082200c1de98bac3a7ad8a463350e9ed8fc66758c2232d2b648f543a626db99febbff536874ddbfbb1f89c4d1a946ad48082f58d5aefb6cc27bf5bb33c94f015fe9aff005ffd55e5b5994e4e46c412c586131333cf9003a52309bd308132630209f1b8fc2667c6ccb0a9e42c50790fe8fddfe97fadfebbf2fc6f45457758d7cf9f3e501a792ad513120cc4c6ad730333777612b62cf29c820383ba4c0cccf204508f699d6f4bfabfd2ff0063fd7ff5ff00d7ff005d7fa7f4df5beb47d6ac6de9bfea73bfd4ff0057fd6ff57eef3375ddf90f39993331332313331a86231b6a95ed57667c0976debd43acc1f537dd790bfa13a020661360c60674adadccf35b9adcadbe77bdddef77d77933e73eb7d7af5f3ebd6eaeeefadf4a4dc66ec4eb333b7edff0d51ddd2c58e53fa0fe93fa8feaff00abfeaffa1e7ffa2bcffabcbfa7ea72fed7fea791e45f8d99f59de15f1e3f3f1e3f3f1e7adf4db7adeb7ef773332c5598ba5915715846cbbbbbbf1933fcb7fd3777d7a1f5e947730a95f053f3fc9e278ff3fcce3fcff338bf238fc79d6deff4fd7f5fd3dfb6eb1eb77e43c675bbbf299b935519efd2eea3d12c44f9dff43fd5ff00c5a3bbe8e4fd3f4fd3f4fd3f4f6db7acf90c7ac0f389910ad78eb1b5d6b9fe393588aaa93576b6b113a7ac8fff00037fcb66efdefc6c26784f2570a158c02ad31509e50ab0b7a620ee40f3f9b5cde9552366b8d9b6cd53a06b37a7e5fbcff3cff7dff3cec1aee4585fd2fa2daac158dbd0b6f55e42e2c4eb1180132b6adaf4df4b964357caa156be7cd89a2b999998ff00e0cef66ffe5c7e30662152be4ae2917ace984c404ccef6b61d04cf3e1ac66304b796cdf6ce8faf425b3c950b03eb7477777fc36308ff008e7faefd6350cc4f01e4ae05abbaa5b6113a1f3e4205abd08b326103d0e31b6563525aab9857375b16f5e97d6c6646c9931267599f599f1aff00e0dfac02934a5aa5bf4152b3dfa6cb133c0b1419b9881073199d9005707d4dacb4acc627946d1566e634789a9d20666247e08ff96eeeff00e4264ad7f2389375ae0d9df4da0ccd984296e27ae3b15b71fe6d5a93418f5907374b1084655b58744b6e346a440d81bee16f499d3dbfe2c5df8dff004c9933bc3acad4e12beff5f61e88c406db0eb201c55e138bc346eca4f15b279bc2cac184de89a180c142314319bba5ff0040f3e1a944489819999de6645dddeb333bdf8df87adf82142ad430af941426b30802beab47851b55c2f5e46c5b11845f54502d5f2bd043a040d56ad77401181ab844d8d9b1141309999d66231b366cb3261fe79f584d599815a87995bd92d09e961058dba6c42cd6c60798d88d4e4af232d50956b6c659b55307a6040c60c201d0af456a5a990790c0c4f392b19bad9bfbdd9e53e93fc43cb52b63ac03a2a12b52b6a36dcd824d49835a30851ad846317266655eab66200702c444b759ba426266548b3409ea1367a0c45ccc82cdd6cf27a6bababbde7def7e3cf98566201d146ac06cc12ebb83ac66fa4698053f3f298bb9d3084460119a5ad049c26ab66de50304050b60b1449af64dd15d523d6f5e9e56c998ff0096fd2032d0315633300372cc2ac1ca83646d343c834ad6d5b2a587c23502cbefd7c6eb345736a94b459e5ab12adaa84102a30999013de88eae8263315bb7a871f9b0cdfb23dec028f1fe7596ad58a0880baab34eb14aa8fbfd5e5792ce88fbfd1b0aa9c9fb7e9ee7e9d10ef66748a3b369c98d5e3b574b4b51b0b4f3a3914eb7add23549ac2538de56fb08551bb6faad5003c146be2bc655bbc983ed8cd102b68df30b9181f979216ba99302aa84c6cd80b36eb303ce5ab934119bb00e399ac2161631aa562814e3b59b548c1dcf53151362eb3617f82dfa7bdef3bdcc256b6a54ddcd2ded84516295d2acf4a81e5aa79f2b657a04c2daa0adbacc0f23babdef413068365f2d5eab6d3a2d95b2b58be1aea0b0570a04599e53230eb3b2b62152be773c82b58f446a42f6717d0c7a11b5c5b15c2b61ad6a8d8e554f459430108beb7e77431066667c0e6cdc951a15bd6b308d7ca215ad1a42cd43d16c00122154b0cd5cf099999e530aa7a04cdd6d30bfab5030aa1650235cdf257ce161aacad5bfb06ad50bb74a8f4246debaccec09bacc26603de8878f2d7cf9a880a57c950469e4955e454fd43188c6be587236f76600b0b36140f36ae15d599b0ae0796ad71a62905bb1110846a9663551b190ab66d92c6e602ea2626eef5beb3c3c76a763ba90a95ac2d1a8e827982d9e4b3a5adc653cddd029bedb0fa0f57bee790ad1e3f180b5a58adbd6079cc2679c615f15390acc2dbbab8c201c6d4580dfd68ad6ad332c6ea642a5ba59a7444819e2b52a9b6b35206782a2c260546614f2d96b6b5b2b5bd5757f4ad8bf22a0c2172d93312bc76a1542dfa9cbfadadeb44301838909e0ad82c1976bc7e308dbd366c35b3cb6b886eabd10827195b19e53cecadc2e5999d3d0150b195acc96040103330a9565792c69ccd8b6afa2c215ac50f36a1297b42cdd9e8b2d4b000727bc4f20933fffc4003211000201040201030302050403010000000001110210213141512012306103405060f0327191a1b12281c1e142d1f152ffda0008010201033f00fbf4b46495f909f767ee57dfb18c63fcd318fcdfd8a17e03a3369dda07fa29fd4a9534ed9f533118f93eae758f93eb65b5118d9f5aa49a8cfc9f5ab4aa4b7f23a763fb85ecabcda491b1a18c8b3fc347defa2b554153a9b7461a879cff0052a54d70b357f61afa6fe9d74ccb9792afa74d34d34e14f3d8fe9d2a9a68d4f3d92dbf7df9bfb34210994b10847287d0d7031afcf3ec7d8fb1b1f7f887e2c9f6131313b3e0aba1a1da3d88fd28fed1f92e8427a1f054b81bc41531a1c152e06b768fd3cc63f0778f35742b21324a5f041040ff004ca179afb49d3276c47447e987f7cbf5ea23f4340fdb42f69590bd88f3778b4eff0034ff0016fd94217e5dddfdf318fed991ed3fb07f8a7e1dfddbf3efc57db2fcaaf05e4842fb85e102f28f623d85e71f9263b33a1f9b1f82f14217b38f6e3d85fa01f8210bc90ae85e31e0bc109885eca7657ebdc9fb2c7b8ff05165e2bcd79363f17e0eefc1da3ce7da8f09f38fce3f04217b6bd87e53e2c7f62bf36fc5793ba1597dcaf39f38f617bbd7e257b6fd87ee210bdf91d7a1adfe097e598fde63f7bd6e5e909285a15595b1d2e1feb375b135107a524af4d4b28a54703a5c3fd051f8e75b8152a15a7c154a1953d8de88fd01e9cafb07f7aeb7f07a524bd892342aa5ad8d38fcfca823eddfd9ce0e6a152a12baf0cc2bca689cbd9ea585921fe7ba44a9454f2554e5fda478bf7a4f46f7ec77e2a973d9eae4ce18fb25e4a7813d32a488fcc43944a8125077a297f046691d2e1fb3d7dac8de874ed0d93fc581fa9a42a72c8f7650e9c342a9492460eed253565ac94bd62d51db1d047e0e70359f793c90f03f0556d11fc2459bcda4cec852ccc0d6fc1bd11eeb64e589691d09a87a12729592c8ad3eca5b13c2b4a82a587a1d0c9cd9a86b578336564f7a232b5f819d104593237e1169d11ee489a95b20c5bb3bb4e50de09d5a7024a1084ce87d98c0de86b636318d124ec54b5084d4abd2dc73791a77efcd2424dc1ca26c9a134661d94e79237693a21de564870f44b8435bf77bb3fb05e52256c459a7ef4a3d5bc0d61f84e0e887695288d7b11af09c09656c9c5aa584caf6555b4854e04b56e50a4e3cd252c6ff008725756f166a1f0468e47383b1aab369c2270f68595cab4609230c5c1f22a9433bda254f2851ac8de8a8a97046eceacb121d3bf61fbfdfba842bf6757e08b4ac13b5921c223c5bc724530cf48b924eaf246c952acea707a526bc51225920eed1a232c93a22c96d94ff0031b70b07ab2dc952e04d4a38f0e44b5a144f17e89cf3e12463c16e05b17060e84ea9a914ad089382979d0f8c8f964387e53e53eec91ece0e8e7c392767a7f899191372f0cf56512a1110c8cd9b1b69ea0512f672319df8493813727a5421350c5c1e9dab4e606f4439a911931e30e2d1242942597b13cb4c55618a9c24264199e7c208fe43a1e34c4f57ccf8a62b411bbce0913c31d2fd2eed9552fe04f4c4f62a98962d070c5692357efd8eef2478b5cf9ce11046af9bca863a593b3d0f026a2604aa9959d89b991395c8a879d92a1381a6e19ea7150952ccd9ad123797815288d78fa9440bff002424a15a6d3e3cddad14a7295d4c21dd3bf0489ac9e95f179cabbe0956689cab49c11a38b649cad8de1bb4eb0c953c9cad950f944eed22f19c311d11edcf9f627e0b838670ce483af04d43298d1431539e04991c8d698db9631a1a29a94313d0b865112f650b284f427af14ad04eedcf836704e6fc1c1167a42576d421edda510e07b569c0d61f94e89d8f93ab2bc904da1ca4419956917827943e7da6af1e724d95e11df87c9d18c5a7cb060f8132081722e3d86b298d6f252f78296b652b6ca1b89b491ece22f993ab4fb3395b270f64794f846894465689f18d09f8f22a88f1cb6c87e7c5a2d3e1168bcf92b3ab47768c9d7b2991824767edb246aa5262d2412466f37925de593a2a4e1a1784291e9f853565a2a58994553167b5b267ca324e55a540e9c3d09e5313cf82bf47446512bc644d411e7393fa13e117915a2dcdb049c13962fa6b1b3abf045fa189e4e15bd3ac89ec5c124e8a9f05567c0d6c6459bd0d5e054b965357c13e12a08d9240d6cead04a925c59924e7a2acfaacdb85a254118e07438685c8aad3f0a93c68e09d5e6fd096892494c979152a17841245b07039c0e62eafcd9ad79227c22dc7b522585963adcd5ae3c7bb45a6f89582b586a44dff00ab052d6194f2514e84226c989092144a330c4ed041040d62ad09a9f09230776e7c12d0f83bb7169b2a72c552c1c318d68a944b947a94abf288d89a95e287c1d607ca3846658c9b322f0262d2b213d8d655fb31088d5e7768bce4689f76454a844b8a4850fc7b22d39f2556792a4f057ac95953d8f923c155b1a95b3d354a24c4936818d0f4281252c4f564d1c59db8bce49d11a25c1186756947a65264b97b13e04c5c0fe9b813d5f9823286f77eed386549b4d5a3db8d199199c9226b42582599b3a189df8230eee651d93edc8a952d9ebab07a72f67179381bc22048e8686acf68eecb67faa781793baa9393d1543251e81350c8724689632aa1e06f63594549cc8ab58248f19232413b23578dd9a72673b1d39e2c9d9d2e50aa49d93d884b24389c189437b44689c31bd90723397e72606706e4e6d18339b492f04a81d3864e1db124e7434c9d5a7288f6d252c7f51c242a77b22f182198c11683a1b1bd899f277763e3d9c409ecc244df9b262d3bc6469ee0cfa6bc3baf0947169bf764f04269a1d3a13d0c4f0c952b23a7634e515bc4b2124d8f472ef3b3328ec844db03f1c64e15a2dc7849179c92b23a35a13b39ce2cd2f813c5e344af63d385b1d6a13ff712583a38bbb498be2f04da2edda7cb838247c13e5381de5c409d30c8c54c5569fb3d12757f52821c33a16989e07c0d8df0529cac91e538b4af0923c57864ead91f07645a4e8958219ca1bd13c91864a1ad93683bb45e32c75eb08e5e44b0afc0dbf0e0ebca48b491e1839f0826f1964af627431267a543c9eb5287f4dc3d12a579aa51236e189e11d5d543a72b289d923e8e5ecf561688f6e6d073e3d9c939b66fc92ec9e591856e4f5a864a863a30f44da72c5b98663b1df9bc0de17fd1197920445b9f0938234723b7625b62d94252d9f4d727d3e194f099ca5fdc8e0ed14f253ca292928f93e9bd3297a689cab40ead1240f823cd2d0f62821a687435d1ea52bc6162d23595b1d357a909a9fec2a94a26d2529e948959d4c8f16fce2d1e5c927045a756c5a3c72412a06b0c5226b24606f304a9582393bb4e87fc2b6299792163d98c5a0484b49b2be11f55f254f2d8c6ecc634459d6e10f0975fdc74a97771024e5945594e074e99f5169b2b5b4989e1e04d28b4124f9653b7a76278625943a1e06ea49ebc324da55b9432a5825e7c270244af2e3c235e13e2bcb276648449cf8b766f4461db944a924e0f4a8137070b64679f6e48d1d9dd92d890ac842569249c48a858e6d0a797ed415538ab28a2bca7912f66542637fe97c124398209536c78f44da3c39f09f15e1241df84db062d24784efdc6f287a64892c11944e84d4312ca44e48f348a29db295ac8f8462cde109e1a294293a43633b3a27440de46dc21a2ade4aa2723e6d3a22fd79d74e132a58a94943db813d78c225b4c8729953c327626d90e1b3927c23c39bf64a1f2418f2e6c9f9703e3c248bf5eea7864382764659382762e47b428964acda6dd11b29a76ca568aead606f7e091c95708fa956c6f6c6ba3aa87cb13dfeffb09614feffd8e86b43634b6543dc898bf722111a1f4376655d8ddd08474d0caa9730d15d38991f28a1943d32699a494aa5b47af304e590e5689cab71ecaf2e7c648b743f34bc7b26d1e51ec490e1db9208722599284f2ca17251d942d317087c22aaf7ec2e7366f9b7627b4262bcf046c5c09ec6b0f434a1e510a55bb385ff23ec6b477fe04f8425c0b6c4f5e33a1ad8c633bbf4c69ca654b28a9e589e190e109b96460ebc39f6609cf84e19c11af248a56d9f4d7251c2627ff0088f947c1da3e9bde0a5b84d0acbb10ac8427ab229eca56da28ed142e4a1685c213da3109157054f91bdfb4c7e73bf263192d34e06de62dd5a1e644f44f43da7fdfc1fb552e46f769dd909dba1a3b111a635f2762e18bdbec9b71e3d096c5a486b58276c9c21bdfb4c63f0631fb8fc57831fb0bc50aefa1ab3688448ed04fdc3645d59952e4a921f285ca29e5328f93e99f4fb28dc9f4f8650f1251dafea50f1ea5fd4a3b451dafea51da28dca16a927237a1bdfd931b19574543bf62e448423a1b1fd82f085289b25ab227437bd0b930a092303793b235f8667c8eff0002e84ca791085f027ca3b684b9427d7f513ffed9f03431950c63646c5d94feff00f852bf7ff652bf7ff42e2dfb923818d8ff0068a8a9f24efdb6f4389f752f144e44849e09b7c0de931bc8e46278629c1d7e598d1515150c631953e46f7ee46ecfc2317686f487b68a5612114b50c7c1dfbdcb1258258f44e863d0e24eecd653fd0ede10f9230f66071f025b296a51e9c12e44961c89c3ff00052e08f9463036e0e58a708cca446c9d0d6049c411c14bd22347ab0f6461de4e0aa246add5e2cb6c4b086f090de5952d0d6192fc55a7434a5fe767434a5ab6053929e0e48d12ce8838b3767a567c0fb19d8d92438627a1a7827c7947769d8b47288cc8ab50f0259a442bf4c5c90e1153708e1b3d384c6dcb17653a10b77635943767f91ecebcdb85046206b3a1b38172f052f522d3911927c22d19568b4098f5c104e44648de84f285681b1b1c10c822cc8781f272c8d11a1d5a1d3b3e723581a19c953e4f923652f4216d0bc97e35bb743db47242c1d896ff00c09bc293a5812d91192742396463ff00640ed1a6777e09708dcd93c685a6469cda4ec81bbf03b26b1b274279274358689cb310c74e7684f5b2323e4938437b121592d94ad0965e04dca46650c9d8bb3820e514ea05c7e3dbb439c14fc494bc313ca1c6d1037a254bc0dec9d8a94666495181bd9cdb274429648959bd0d6205c888769640acce2d2258b756870c538b39c0f5c15693236372887289206f62e4a5e5b1703e2d1f164f78425d9ca1be4a76ce98d13e327575f88766f08672f67a570378446d4b1bc90a18d651cb3b1a78c0f921c118208d18246aceaca23921c5b8649f024c44103787a21e742dad78b7a2376e8e189d9724e08c8aa5035b396a46b4c4f2c5382564f81bc2245c94f22d2d0b82448c64e48d898a67f1d231b7089d94d3c096869e8a9e0e50f3166f467e47c21ac326cd3c89b93ab3a9c153593b29453d11958231519270c8728879272acd2c14bde049c09b1ac191aca13f8bbda1bd9c323289d126087925c10c4f22e18d1a827284869ca1cc32a910b6c9ca21494eca78425c0b8bf2fdf7f77252f6c5c5a4f89453a81698d6b27ffa6461321e5938230d93816db16d13f07437b232ca17c94f086f1a21c6c8c34748ab708a9ea0a9eed07ab03e766656c9b7454f4c6a5b26f24ec8b66069e48ca322643c8d1d98302d4c31f3933d89e8e18a219ca2767289cb248b3e0719272c8f6d08e864efee5724e8c459ad9227b67087c8970353d09eb03e06b63634f64bc895a54214676413b1253b1919636f393d597812d18b36a4879c9997825e5c8bff0012ad3270c4f2ad39b3da154a48b27868e511ab232276e6ddd990be0e8eedc227036764124e509ec8234ce882622cd0ded92a111c0fa18ccdd23a1b1bddf9fb291f43e4ec4b4ef045dec8522d92b04684b3248e722927086f063e491acb312c4913a3b272f4259168e05a637ac8929d3383d3a24eecacce84d6487813307364f22caf0e589b95e33a46674744612b76853164fe04cc1c93bc1c1286b64f0468c40dead0c9f0e476e85c948b81b237b3b17046acfec31274548ec6f298f926c96c532cf53e8530b246048e589e3621d2e5153437bb282763436e53421ad8dae10a21b395912c650d698de4ab5c0a9fe654f29c0d7054646ceed37eaf042947427b12d5b63551c096d8912e16464e4e8820e84b0c872b43d32722709e05c1c0d28685b1bc318d659d91a1ad1f03569d787262f4ad9c21bdbfb69284b0a4e606f8ff0003ce46966ce47c9d93a12fe62db25e110327429ce0878b7624e594ee44b11243944b230491bd89f026e48c22978e48d6c7cb1f07d47a7fdbfe8ab96529e53627945512358931b44604f8b45a09bc90f04da54338433d2f04e6722685a669ac8d61c90e46de44f2ecd1382304a95b1ad132d59b52ad0c9d0c9c35813d0f813583bb609f04b62425a247568816dcb1acc38f697275e3255b82a796a0696c4d6a598c21c73fd0aa73afe625fb913784dfeffdc8c2c0f6464973b10895104704ece8ece5e04d421acda85b928282913c23a25431ad10399438948a9f270ca78427a4468afb2a7c8e22d5440f6762382545a04c8c41168dda46b04096518c8aa8e48c702da3d394429448991a2543d8b81b53035b4263591352f63627c1fee723d8e4686f2c4f67442446c9c10c6d49d1eacb17037e15460aa9d952c13bf3978219d92e083b1690dec7ca29452892703a7086f0a17eff00dc6f6d8959a16dbcfc12f67a5c31bc2c1c9035a25cb169291b7084b62e05d7f416a189ca3af1e189fc092966650d65930b428842dbb4ebc64820494ab344eed3b3a3117753c887abc5d6d14a727aff0099191ac0de8e18b9134e1e48ff004d42986439429c892209c7effe0f4a1bd9398274608d8dead22dcd9722b54b13e31a193bf17e0f4b0465ddbd11a671c8d6dc0bbfe837b12c312d0dbc7eff00a8decebfe47c9f04ec8c0f646b02dbc8b6ff00b1d224825e4a753243210eade485f02731fd871c784da210f499181ad281ed8b83af2c4c8931707577e3df839921644dcb19191bb413c217035a24f83d2c556074e5139e455249ece8684f627a230c5102d22346250de87b19d8a09c9c1c2446ecbce7625ab36e10d8e618d28e05b27035a2a949e3f7f046c8c90b2ff7fe06f435a272daff002534ece913b652b0c5183a7fbfec3da2762e09d5a33037b1ed21b27046c5b6c94708ab87047253c8bf909b95246931a4359844e6d82324a9440dc48d6b637cf9be09d9c322e9fb4d687cdd3d893914e095288cb13c8912e46cce05a6a08786268456964750d1989349896189ac8b44b82348e96464e7927820e6d24e4aa1c783b444a13cab265518d18878297cb1ad21a69b17034a6fcb1a5848aead31b59652b7b13da91bd421259c89e913b504e85238447cb1f166cc6510f2258471a16989287c91b72529606d4bc217027c14a70c4b435a1b1bcb14cf063838333054f4a08c21fb286713edc123e06b68e6c95e2d3744ff0021a73c09eb670cf4e53446c4d4a64653c93b43fe242794c9c313781c4364153d68aa9791c8f7fe0ccb62da649cb17653c33844bcb230883843e86de5ff005169896511a1bb72c8d2b2ecf817636b0342486f476e05c1886bfe4a7a9ff739c217f31559652b91f03786ca56f02da1b1ae47b5919c8912b7084dc21216c5b7a2343e589e10b9d14c6363786c4b44896d89686de0a9eccda3cdad139b74c6b7ecb6a51235f286d124abb7ab7241c090a3026b04698da8ff00e8d653248d91a381b7046c74b844ed489e111a1731fe04fe4549ea517f8b3a86b63cda0756069e58a08c0de0825c218bb3f9db108c68850c689d7f81c64aa7444489edc0a2258b491c899f029ca813783688cad8de73248a9c2d8d6b636f391539627863e09de48ca1b7237a236ccc8dec4b440e20e4e0710379634a121bdda3ca051f237a4398391adda3364f0c8c8c6ce064607a622140f8b664826c9090de9c9b4c6b825e4c8943c1851864e598943782a5b42627a254a27054d4267f51724704e5214ffa90b68c6ed2a48d646f086b0351035fbffd8d606f052f284adc0c484b291c886c8ec5110c6f587fbfe454f6f024a113842c413bb278591f2c6dc21a79652964a594ad215598c8f4b046ce3484b48a9ef0459ac1396217221ad10e64a9e11cbc9c1d927223e06b4c4b7925e7427a3035bf397025a39324da0ce6d8230c9528cf9c0914bc12a19551ce09c31bc2635c0e250db96358191a1399d8a089e7e0e4852914bd31c4919173816d6c6a996e46f67435a13fe2170e7f993a70c6b6c5ca1d394378643c0db944aff48d650b6d8969e6dc9fffc400221101010003010003010101010101000000011100021012032030134005501460ffda0008010301010200b6db6e5bdb6dfa4fa5b8601aeba9a9f689e7ca53fc96dfa9f689f949c7fdb276fdde479324e1866b83e8d8db2decc481f84927e0b6db6fe0fdedb6dede5edfa4fc6649f8493e93f21d7637f5ecf90dcdfd5b72fe16dfcd6db6db6d1fa3f4bfaadfb5e7c9f27ff7bff49ffa5bff00d2dffe8dbf632e5ece493b3eb24e51b4d8dcf94f97fa1f29bfab7f2bdb7e89f7a727e07ef27e1f2e87fcb7fe67cbff003fe6ff0095f37fca32dcb6f0fadb7afd24c92493272488b689b9f27f43e43e53e4f7fd0dfd1b5bf73ea8e3d390c3eaf64fd87f3b6db6fdee4cb525b9795fa3f4924c931324924e0df46c6e7c87ca7ca7ca7cbfd3d9b0f2fd11e9c383f9cfcafe16adeb913262649270fa5ebf6bdb96db72e55b6f2f224e5abebd7bf67c87ca7cdfd5f9bfb1f31f29bfa7b21c3e97fc2f24fb3f8b932dcb6af4fb4c9cbf4b72b865a236d72db6db6daecb5e5e5a356df46e7c87c86c26049d70c3fd9249124924cbf7bd3f0b8fdaf5cb47113a72db96fe30224090c37373e4d77fa5587fe4b932fe972e493f1bc32db72fd9cb6fd6004e432071c334c1b6fd2fd6ff00e049f95b6f2fe772dfadb797eb2761924090d7c9ac303ca4f8f0c511b8649f4b8b6ffb6db6fd276ff824e393f59240092481240381471d407201c32d1fa274ff006b939393fc36e393ed3b24924924902049023acf2013cf9f26b2490026243834eb900ff73c9249863fe0bcbc92492493861c7e8236da2236e5b6d1e0dcb8132624e1d8e4ff003dbd997276dface5cbf98db6fda65b6f6db68da37d7ab470c32dbc0327d9c0e49f91fe3b9024b8f26264924927eb72db6e3d81e7cc35f2eb24813cc8124038186530397fc53fcd396d5fa5390223af9f2ea9204927e872e183924499264cb94c009261f411a3f89fb1f698fe7122763d8130c53a010d1d3cbaf935f2ebe5d5d6490240920001a9a9abaf87575f26be7c3a879f26a6b3913264306fe76dfd6e5b7f3893cbaf9f3e5d7cc818192490c0981e7cf935f2e8e9fcdd3c79f1e4d7cc9e4d7c790c11fa49227935f263f57819204ff01f7b72e5b6fab6da7d1edbc989279f3e64ca23447d0db4468e4c75f2ea9e5d5304c32079f3e40c92491ec92649204c932dfa5ff12d5b6da61c0fb4881e7cf9f3e7cf9f3e7ca7975f1e648010247069970624cf3279f327649d903120493264c98f27d6fdefdafd972fd261f8babae001a8409279f33cbac93cc92488924c3e92227249f476a37eb300fcce38f1ca36f2de197f271e3d9f40fbc475f330c3a1922492493cc9249e7ccf3027d649224cdf676d371c7ed3f293a98e24c30fc6dfc224926481f7b8922448706d1e3fe09204924932737dbdab861b69b0c9fe47264fb18e49249fa49fe092481307172dfa98fdcfce226fb6c85c71cd5d36761ff1b8f2dc9ff8baedf9adb6db6fe67ebbefb6c63dbc32ebf20ff89fb0fd6dbfedd361fc1cbc793ed6dfa49f7b8f176f9b6d8c1a320735cd8f8f6fcadb6db6f5ff00c8f3f16cfc86ff00749c72f24e244cb70fc8e2fc9f259f507265513e6feafcc7cdfd8f9387249c8fed0ff7382ab75f975f947eb2222492644c8f025a276bb1b66df29beff229c7a61db7357ceda8cc30c37d7e6fedfd5f9b5df9796271c3eb3b276da36e3caec6ff008abb7ac5db6edd77d3e5e3f23f2ff5fea7c94db24b67244af208aeff0023b7a367e4504f09f770d7ce08ec219ae3838f1c3074de9d55cab68f6e1d7945728991c557659aec6d6aa80bc931e1f51d3e490126ba9b26bb0edb289b9f27f43e4f42edebd18e2a6c48eae6b9514cdbe370eda638e241d76d870c796e001806c3957ab219396d1e57970ca2f11ec865f547d572f0cdbeee186c3864e5cd767218889cd711c705db5d5c75359b6ce6bab86382e6c3d03553657819b0e6ab898b4c5335da88bb7f437b76dffaebb618ab925b56e3f4b6dcb8f1c92651aa36b8601f13f1edaa70ca3ae275cf463aa063c0d726cfc6c9131cdb6c70c81b608ee078fe7ea3d1c170c4c172f07b7d7aae6a83b38061b9bff41ab6db7901cb96f1ec92049f5a9a9aa6cb8ebe76d0d1f8d344cd4f28ec3ae5571e4f5b6c7cbb6daec7cdaef8beb6d94c0a639be18621aecfa5ab5c986505e2e4e0dbc324cd76db586191d735d8dad72a89b1c5fb472018b8f2aa63f4455b9aedec5c9e76d7c386c6d1d576dbe3d8e4f2bb6cbd1d1dbe4f58e2643031eb9b2a71c79382e0aa60f0c4e3cbe85e19a6dbea3474df61d4c04c71e5137f43f51818b838120247ae2226ba9a04c47737f433c864743e308ae4dcc7243514c86498a2eced9a8e2386570cd73630c8305c78e194c310c4e1955c136cbc1b69b72bd1c32de181c49e416a8fa1c7131cd711cd35880f1cd41f46ce2197efb68fc47c7e3c6afa13872644449af0c4c78e18b866bb6dab95c4c72729c0759c9e135cdb2e218f6e7a38f2f0c83867aaa36c472f2d5e5d5df534328dc1707644d8d9d86dbf85dc729b1b6db6bb3954c714daea6c8b80f436c3975dd530cd8af4c04136f3e75d6389310d41fa3863945e496de5cb6d1136c8f132acd839b02619b3b6e3a8a8686a6b2fbfe9fd0dfd7abe8d8726daedf1a5b47d57615700c5b707639735f8ff0093acc1582f4c306a61b7b36b8e2dd714cd8043a983464803665a63ca260fac71c1ae7a75d393cae26afa98627af7b6dc5a6de8db5db73d1b9b8f37f89d64c10411031c50f29aebb1b1801a0639b7c492eaf84c549802ea6bb383eddd735c7071cf5265041e5c1b4dab9456dbd72e191c5c431ddd8d96b863b50d77f6ae2aae0dd76bae6e1975d84db1cd8f3e61c8e08b86419566c0ed80be8df61d70cd5575c1e0c954fac3578622382a71d8cd4757821305c4b7e96e180baebbab576dd02f0110e02e55bc343e23e2343371544db554f91423a6ff001d1c9c3061826b888238eb036d76d64e7935b5d7d2ea3a3f5d0cdb6d57076c5310c099aa3b6ae18623975d9538f2fd2ebaedb2a2ec282f1c1ae29860b88f74d3538e6c54e5be8d8d8d8dbd5dbe341cab0c151f5ea6d83a63acf33d8f9f1b03b6d944da86a39e1cae4d076980a0980839b61860a18263abae08b8bf60433653d3ab9b695036d5704c343e3db49862269a07d1c4754fa8982226db69b6b6e1f53045e69b0d476765f7e91ed30c03581b1b1350d101684c79ae6d94626ad8826e2bb0827072d001db6337c3648f0d53e3c4db81ae861936d1ca3a9a9f4b8e6c2d72744d8d9d974db6d52387d0d4d76d70219aefaef1c55d759b6ce3c9cd30c39b1b819aae4db59a66c6c44d1d9c1310d4c144cd71d8c5c0bc0079bbcdb60757247530d5c75f3a9c93cbf13f0ff13e10a3f5736034c7547b6d317e376d51c3a0640f269b6b20fb76b9abe97015e6a183c79326db5db61d0d857866c86a394cd8335cdb25114e530d57d3b1c5cdb5d75ca72a1956df5efd7ab688996251f3e537d43c99b38f65ae0ebbedaedf1f4c328d3671d761e820dc31e1c9ae05c78a0ed15e6bc33730c81d8e1ae3930361283f18194d9e06faebf59b386079f324353535f29cd4c9f78fc4e6ce0a6383861883aa89861947046aec38e049ba36dc5806a10eaedb1ae238261913635218936357b0c4b6b86d40c440f59b66b90d4d736df044243a37144e5f56db6fd5f8f6f81f87ca40866c08219f21270ca236ac707d1bbd9000cd4e1dd9d75e0b8f075788753931cd9149b6b4c00038e5cf13c87540d7d7b7636bebd5aa29ca35c350313cc997d5f5eabf13f07f1db480866a8b8922e5b6daaf7514c7b0c35d75c9d09c99b6266bf4993ae5d9bab8e7a53269a21a6baba9a9afdd5c50432db6d536ab6da38946e5b6af249c921a3a22a391396adb5701735c043172ebbf2d09e7cf874d7441f371fa3c7244743e13e1fe27c2fc47c46a1cbf5b6dfa5b6dcb826ce5a6487027676493cf986b314ca932797475471fb57a982b5ec35be4d0d797eb27f81edc5ec9249979247924924794249876e5ca7dafde40c924f3e1f89f85f8bf97f3fe47c7afc7fcf6d3c1af9f0e8687c66869e7fc36faf5ebd7af5eaf24927ed6d1172d0c9801803649324fa5bfe9924924796abb7af5effa1bfbf7ebd7bf6efefdfbb93cf974f1e3cf9359f9fabc7f0ab3e967930320c4c1e5fb3c993fcd7f79279f1e3c78f1e3c1ac9f85c1cb97e82bedc0d73d7e72196600e49105c3ff00c37ab56bb2982aec6d7055d8699382f2e2df66df4818104cf213263c72fe27fe73f55b8af279008eb03131024353574758072a882bc571d75da4b865c98037d7aa388865b6dbd932e4ff00c370faa3c316d76a0e181db71cb45c7ea8f2e51f55c31e44a1204c9121c5c149249dafde7fe0adb6d765365aa32493147896ae51c8e27d1cb1300d71c17354e55c901249130ca641b7b796fd4cbfed5aedc76d54f280ae79400c11f5c0bdb5726532fd150064c710c4a60fab1c3272e1b7bb93e97f5bc9249fe5b54dddc420d703003b62573d1b8a6daa9b7b36f562987d12c923ca8122262fa179432cf390c1afd1fa397eb027e13f678e1955f93d79f06b6705c00ab971c77fe8efe8dbc99b67bd81baa861c390c050b68a62180ab9323af9729b55139716e3f5b6e049327ddfc1c396e5b5d9dadaaa30c5c95c5408edec4133cba49823864d8e6ad3b71c8a2b329c98a36992cc9924972bc72db6dc8012de98e5bd93b7a71c81caab6e3a99e5c926390c0c86a9e68ab8b4305d76d4c365cdb12e186c7270327663c72b865caa6c35c1ae51bc706381e7c872dedaf2fe0b7d28bcaae5af154da4c4c8e4c72c761476132819396e2710cb577e889cb31c4a3454ec71c8638988b442dc721c86be7c8e481272fe7e96e29972d31d8db1c0147508e24864751f56bb7a532c987245b8ae04828e6ef00d68d1715c14310623c1701644902710c4035351b7f19f7ab8370021972a86019412ae6bc38369b2ebb0024f435c40f2156e4c910151c530c011829aec289578978f3c989204c1c32801aafa11fbcc70e4311c5f5e945131698f264c9cb1c89e7c78350889e4d3ca48e9fcfc799e38b8ae472f0c9939b6b86de85129b061b5c4c8639032645a2e1c736d8d4d7b70d43af2d1714d9dbd7a77f53ce27930e455035b8eae18e7baa9ae0e432a4570401500c9c5a235c8e0e2471c77e4c713861b0ec067ad8d43672a1c9972d93204c759922783593971e4ea9b38126486404031651982b68d500098a3530299265b45204e4c9972b9b60051e245cf35005c036b070c4073d5c072d1b863957aa2e2ad96d01b31c1c814c939110d525b46b941d4c0f280b68a040afd66517946d9326449917d2eaa551a655f46d1d45626572431447245765c72da356f95a33262f996ad140a83c55b52218ec1e5cf46c2ea6b56c4812657248ab10e4b56e4c717d7a1f5e9cae196ad30d8db10d707c394796e78357538bc43572abb0d500cb865ca345c1531c482346b8371cb90c11592d182b41046e4932e25763615cb24997d38995c996e381e41c7536f4bae4c7670d4d5c8b35d72daec6deaa83b0a062de3823417d39ae2d81c8b8aaedea02841914daf265e2ba859276e2e3b6cdb00db16fa5a63d782ed423a862ebb192784f3ae450b3ce5c517636514f0fc6681312e29ca38e7aa28b75c7676ab810221a9abc4300ca8e27aa65b6cc755d50cbc397d2dabd145b5fa2d31d467f33548111e6c9917d1b39b1ae279090c51abe60daa357fffc4002b110002010402020105010003000300000000011110213141205102305003124060617122819113b1c1ffda0008010301033f00f818bfa57ed88545f08bf51822ae8be1dfc278fd2f17e7e6ec8fa3ff00199bb85667d0517775387a3e84a49b72a6c9bb1f43c3c9f8f93c66ced27d0fa7e4fc7c9e3367b27e15d62898a9355fa17ff2783f04f3ff0067dbe2978f9c35e52ad65fc89fff004f1f2f2f06dcaf1511193eefaabeafd3f2fb614251817d6f3f3f3f2f2bf946b103fade7e5e7e5e798d75d5c851f12c6318d0e8cec42ec44d245ee8fd597e0322915421527f756343228bb1762aa626217c9bf9e7c1d1f749e0bf617f85046bf587f073fbb456c7549f8c63fd095668d7ec2bdae8fd8f848d7c32f9e5c97be7f647e97fb2b1f19e4c63f99545ea5fb42f7bf44fa9fa27dcf847b2ff00a3f755c50988475ce09a4d19148f54fc9be0fdaa885c18fd6fd6f847e3bab1fcaaf6ae0c63f4c7e03f647a18fe6a7e123d491bf92b7ae3d0aabd4b82f808c0db96459e09bafd3dfe4af5fda869cc8db96451ac0db254af867fa52f1524ddd1226f58ba169897e82bcbe3578a25cba69104f08a464953f3f0e49f8a822c86dcbf4452190c8cfcfb5692f078a13c7c3c1365cdc729b31a22cc5916867627f329b864325cb3a1a13b327f212e6909e289590bed964d89e5bf42f2b90e937ab3c95a4ecfe0847ddec558fc5484f9aaa554e96bf16b04e6be29c523422708b489ef8409fad934494218c6b036a1b19e514fe91e99b8d5dd218b28fb95655c5c3aac609b3e6ff1a6b0429249a413581b19d93c2305f9c0d5a78b548b322e359244948db9746b03dd521312a2627811d0fcb2459d5a52d0c970412ac5c9b31ac5571d1a7c20daa746f9dc986b24644eebf3e7d0c749e57f4c137aa22f4954826f48bfaa2e376374f17768f1763c7c54a437726cc8354d97a4387c270464f147627c364ab5208c608ff293481bcd21d8595821c0e73612c8bb133aa256a49d1d904f04bf358cbd1bc16bd20694d61dc8c1b64f0837a3469d2325b83782334813b3a2ab207114ea8892324928c31b1ec852c8b2b09d88cf29ff0078c5bd3a1c44d19d8d270c6f356342d97b2a75c63f05d5b1fa2e5ee24e2a989e297b1391e10d648c9a269025645ed454b5b8460591a1b7243943d8bca89090b44d8b9df0945e923781ad9181bcd6dc9792fef0b4718e13c62e8952ab0263591a1aa2a6d62ad1d8bd4a9a122455813e7176364d628de69e2c8c13922f036a3746490e6091e86dd53b3a40dbb8f8ece89bd20735b5e9355162d61c136a6f83aec823037cbb22ae9173b27845991720ef05e0d310b43a4728ba1d2793e1aabe2f435c1e196945e51191b677c1a72869d99e438fe922d884b154c69c8c7d0e6c86ecc66f83a41274497bf08bd22c5a689a2e4a854d8dd7b12c709cd2e26e5738368d11c209aca89e2e38762d7aa6b7e7047044db8ff291664908918d5a9234ec8d9ba4d1e87e94d0f43991bc23c929110c9e514d1b1d2d088573a21f2758b322ebd7a2189db6470782c4521d1bb21222fcb089f4a748a2a3a4d63d091a4764e0bc31aa68bde8b45c97034e29159f6ca758a745e2915d9040c7919026a571d1b5c1a13c1b54586472d116a3c9381a1c9ba5a46492429a48f1ce79e8ff00d23d5275c22907dee10b64d21ca270379a78ec9b21a509179641f70d57b12157aa4d2324f06d40d71872491924e8eeb16a4d2292e51d90746c95298c8c8d1144f39a69d278b7922b6926bd136209aed16b9bf44e48e51ec9a5e90a5939c0bc542a5e2b1743d0d21bb9f6bbd21ca63c33c5ee06b08823037918c74749a6c81d26b37432384de908d5609b0b67468d9622f46dc22f72d2a89e44f034ef5d324877e5d9d93812c90a1088ab7481b523c93775953c24b522914dd60923ddf77fd1d92ed4daa40e651625116131a2d6a6c6b02c33c72788b5c20441b44f8c1148e362e36452092454d9d924116626413724d904b9343433b179291acd545f24d9918e31713c10ac4dd0cdf2b4108bc22724a81168547249084c83eeb32384e2ab07435ecd221413642c90e082158d91726e36764dd89e05225621c2a4d8b726ee87b3b22274436d137443b162193667645179645a27278b5041049361aa4d268d291bc88b138218a2051613e09a821c0c689b0dd8914c312c1225744606f226ac246971974bc234cec8734d104a945ad483b23026ac6eb1644a1aa41275eb8bbc9d924902cb1bbb3b26a84858445367621719c90a3838b0d5d17b1157cbb25169f1c52725b841b2d08865a69b2e432f2891ac8991812b31316cf15a121649c70d1b44ba490ae22f58524bb0f34952cb8e26bb2c4b11a3b1aba27243a5a899154f243f44895d9392f045c925c9228b1146dc222cb27756c4d409118ad89a490a397445d91ea8bc90e49ba233ea8215c9a45c4eea9b4311040d9be50586a1d66c431bc514c96b10ab288b11e23a58586460b124381ecd12409084d093b89e06b8cd644bfda5d4d20957125c1b96abff00292f49b11593a1ab56f03565e8957a5c9e11c648707dca48e7348c0d59f08c0bcacc6a888b22482315b70bc3278490e044ba5c73634458865ac5a916254d2303dd2c35721c9f7294452c3c71d564bde8960d225220971ca5410e190e51b1cca2473574926ec5a633c86ac32794d2444dfd2f64a246b9c09d98bc940d5990c6ad4818dd6d6a4dea8bd1b21dd137e1dd630691089c11836499488b324b9824d0abb2689dcd9181e5888623aa5c9ff083448cb895e9235c50b62581510b82ae8689aa18d59a913cd5e8bde93747db662c72d5246ae993662f2214f38a3109dc8e10a59371a354bdcb4d1c4d26e86f224b8e88a45ceab7aec5162cc970458870268821d6e236ab0e2b371ab9a746b2764326974d16e5aab631d18f8c2937c17a13c89dd58f2f0b3561bcd6795ee45c826c491ebb566ba22add1bb51bc10a8e6dc20984412398a412d3e0e2c4a714d3132c4a1e1f15b36881b2541034e50dab8f43d924d88b22f14b171be1365481b19dba23aa7674688cb244223d9278bc89e0f258232453a3ba5941a6244108daf741d1d9df3bdc516a75c21589bb22b0a49a5a078757a20824dd6f4836893431a2064d98a64ec4ad57d1d0de29d89709a439629910b47689c21eab2244d348818c649fd228847546b633f83ea884cf1771458687b21c322cf0c870ce89b1192decb709b22fc206e9f70d59fa7b2f4b8d51cf28e6882705cd3acab8f2c690f3b3cb63a463dd03eebfd1b3b1a254a26e89ac645d0baa3a3e4a8842ab3f84e44ecc5a634e51b209bfbe3145b1270c8bd25dcd8d5c9cf392467434e5b36279136254b4ae6c633c9e863d9d1db133c5684b1ea42e33eb8c9d7091f25ed7d8c6319d9274344e5099d31fb2d622895c4f1c5b22e3c21b3b12c7e72f4762f7ba585c278ff7f3bf8210b54633c8f2e87b4794dd0d5c635a3c8f23cba3c86eee9d897e1a1085d8842a37818ff29f1eab19a47c4ae2c6318c7463aecee884210842a3e86363dd577ffd084210bd902fc274677c953a1c7cba10ba1550842175ec9e535912206ee6c69dbf035032dc11363aa27fa4224d086f034ee4963f834313ff0069b3a1ecd0d904dc9dd1d22e89ba3be084f9bd1393b204c4eebd11913d9d7ce2591774d0cf2dba7f48476765ed48a274ec42a2c90743426afcb4c4b148c574357469d1d19da1a1bb8964e892d086318c7c1210be6766c5812363d0e47a18fd7372044d1ea89ffa4678c56493554754ec4b24e0ee89d52174748fe1fd27231fc92af47f4ece86dd865ae7436a9fda4f05b3aa319193aa3a4db826470469d5aa6c8c1b44db63d9a1106d91c1e87171bc168353c364d19dfc7c08d0c6ae87ba48b6c8c5c8b8d13ce32690d12323248e9348b93cdd3ba4dd0de6a9e059827042248a451a1bc8a8a9181e4bdc819d89d17c9464ece8936c9c3b11b270276755b215893b24d32e41348cd26969229344e91743761bb3e317e0882c3d1173fa342783449d16b90e9b757a37c668ff00058ff3f6c8c23c98de6890b05ae216e8bb27040912ac358476222e23a1b1ad93666d1621ca2724e2b2f235fd27435a26ecb1d91fd268b024ed5822884894345c45c870489d98b428bd3a47636318ceebd71b729c0c7f9ba43d0f75fe9e5d9373bb1d0b68e88a21e8ec6a891d0d8f62c8a249d8f62812c8962b1aa588c556c5ae318af44a34c6344a133a1907474588c97b0f28912ba14dce8687c67d8cec475f92e97bd110745e58a2d49523592734427a215abd9d5230362269f693aaa592558d1183b16511744162293921c55f66993465aa843d56f4b163645e9d12868d33549a4f1872c5ce6aaabf0bb108e89aae3a1e206b2226cd52314bcb117205362f039229181b1e68c8c936a49075c1523048d1735468b2e0f44098a8c8e3d1693be1a20d904e069899b208a473ec7a43189649c0f43aafc0bc2a2ee8959a3aabc2251087ba374744d5c488c704c8b0c9b10460eec362d88f1c8dff0082c409e4f110b1e9926c31ac0de6b3e35936cd1162f7a747637826ccd9045d139364dd1a22e281611d0f677c1efd0de07b12e1dfe0f441e4d9aa2e89c08475567442bb2450416b0de69d0f43a3794324e89c0d2c91626ec8b92a58b54f1593c7486c8b3148b3491ae13c7b1aa6d1dd1322c391e4bdc4ef068b5868dd368dc524d516188923344aeaad3a77cba18de68965926909fa9e87c60425624699a6e8bbb923813c88d51d206f7c762c33fa7933c8f23c87ba43b0a2e49a62d891d21ec64e442374532455c917a491564d6e7437665ec346c7b2724d990344d991747624e0970a8b0460fe8f432c28140a8d52e490490e8960ec5c1489888c734aec9bd2093aa46ce98d8d8d648724e44243a2674412a51177735049393a1e44949d0c65a46af3cdeee398487ba41b63d53be31c53152314dd52c53759a4d253440992464b4a3a1aca26e87926c3d139a45c9b11820ee9382334818e8e689f19b31097a672755489ca16742d5649c9023b168fe8d16bd13c91647477492158792727646096342e52ae21b272ce86cef83a2c0de3dd62703c0b836343da272245c9435713c8d6469cac1d89e46b03d8f439193934c8c8a69d522d5d2f4c0de6891b117919192722c9d5605b3486f07640de0ececec8c0f759b1069b20489c1a2e7622703d0ffd1ab344d352416b526d2298244b04dc4bd091d134e87ea9c918ac0e919248b12355ff00c13c8e9e2d8909d8b49d0db21d8dc117aaec8b1049ae178e0a938ab5a1522c2749c97e13962591686c816c9c1dd5f62d934440fb1bbd3b3686ee5ec364162363774364e8835c576379f4baaf640b623559e1048a9172c4649ba272378643b9362f662881c431e47b149225913c08d0b087b20d0f43d9d905c93b10a0e864f0ee934688c88911d0f67433b93f83581f427912ba43c8f7491510dd881eeba272258210e07b20fe53a1ec4b2258f57640cec9c7a62c409a233c5211a26925ee344e8bc8b10452722cc0929109a963d31abb1bb1181c8d8d39a3151213108424e45a192cdd204453629bf08c9716989c8d61536cd114b587baac223086f276421bb21e69d139668489c515774ec591139121704b83912cd67149b5362748c96910a28f85b831b3b364918af67469895c4f041d90464532cb0f44ec8b33a3f824c468912bb27027915207b1f1d5628e48c89606efc5ac9d1b6263783c86c68ecea8f62559bd1ed9d0c4cd095d8b0a9d53a3a22cc9c938215aab8bdd214d1d62ae9277e96c6ae4099d1191178642842a4aba2158b9233446453463c326c8863d9371ac5233713c0e6c2766258248507648f43641a3ffd9, NULL);
INSERT INTO `crew` (`id`, `firstname`, `middlename`, `lastname`, `father_name`, `mother_name`, `nationality`, `birthdate`, `rank`, `vessel_type`, `final_school`, `martial_status`, `waistline`, `uniform_size`, `blood_type`, `safeshoe`, `health_status`, `bank_info`, `tel1`, `tel2`, `address`, `city`, `english_level`, `application_date`, `passportno`, `passportdate`, `passportexpiredate`, `sbookno`, `sbookdate`, `sbookexpire`, `lincece`, `licencedate`, `licen_expire`, `image`, `file_destination`) VALUES
(59, 'Su', 'Su', 'Win', 'U Win', '<NAME>', 'Myanmar', '4/2/2002', 'Engineer', 3, 'UCSY', '', '15', 'XS', 'A', '14', '', '', '09-22222222', '09-3333333', '', 'Yangon', 'Pre-Intermediate', '5/12/2013', '4444444444', '5/12/2013', '5/12/2033', '77777', '5/12/2013', '5/12/2033', '333333', '5/12/2013', '5/12/2033', 0xffd8ffe000104a46494600010100000100010000ffdb00840009060712101215121112151513151717161718171818181a171717181a2117191815181d2820181a251e171a223122252a2b302e301e1f3338332d3a282d2e2b010a0a0a0e0d0e1b10101b2d2520262d2f2d2d2d2d2d2d2f2d302d2b2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2dffc000110800b7011303011100021101031101ffc4001b00010003010101010000000000000000000004050607030201ffc400431000020103020404030603040709000000010203000411122105063141132251613271810714425291a123627282b1d1f033435392c1e1f1152444738393a2a3b3ffc4001a010100020301000000000000000000000000030401020506ffc40033110002020104010302030801050000000000010203110412213105134151226171b1c11423328191a1d1f00615334252e1ffda000c03010002110311003f00edb5a9b0a0140280500a0140280500a0140280500a0140280500a0140280500a0140280500a0140280500a0140280500a0140280500a0140280500a0140280500a0140280500a0140280500a0140280500a0140280500a03f0b81b1233f3a618ca3f680500a0140280500a0140280500a014009c75ad5c925966456c60500a0140280500a0140280500cd632b3802b20500a03cee2758d4bbb05551924f402b56d25966d18b93db15965447cdb64c71e363dcab81fef15c540b575378c9725e375296767e45adc5d471a6b77554fcc48037e9bd4ee492cb7c1523094e5b62b2c856bcc36b23044994b1d80395c9f6d4066a38ea2b93c264f3d15f08ee941e0b3a98aa41e23c620b72a2690216e80e4fd760703dcd6f0aa73fe146b2b231ec9514caeba9183023620820fc88ad5a69e199ce5651c56e7516264c973b9277273df35dd8a58e0e64b39e4df7d9e4f27832b48e7c25601751d9703cfb9e8375fdeb9dac8adcb0b92de9dbc3cf46b2dee1241aa36575e995208dbdc553717178658524fa3d2b064500a0140280500a0140280f359d480432904e01c8dcf4c03ebb1dab19465c5fc15f3a49346ca46e1f03b640ff3fb579fd457aad669e55b586a7f870598385734fec4bb6998b3291b2e003ebb574b497d93b27549711c24fe48671492927d926af918a03c2fae3c342d8c9e83e66b0d9bd70df2c15dc138d09fb839ce08db7077520f42307f4ac264d6d2a2b744fcb9e3a03e8500ec4ee7a8070481e9934c99869b2b965bc4fa941c63201c7ceb62b358783ea8605011538821729b820e37e84fb57321e5a895ee87c35c73d32674494377b15fc41c89d7db4e3f5deb87e4ed9c7c9c30ff00f5c7f32c5293a59677576b18cb1f901d4d7a2d66be9d2c7758ff0097b956bae537847ddbcc1d430e87d6a5d36a21a8ad590e99ace2e2f0cf4ab06a67f9f01fb9be3f3267e5a87fc7155359ff00699d1f14d7ed51cfdff2397d714f5e58f11e26d2c50444f9624231efa881fa2803f5a9acb5ca118fc14b4fa68d76d93f97feff0072bbe5d6a15f62dcb18793b6c19d2babe2c0cfcf1bd7a45d1e0a58cbc1cc79f5c9bc707a2aa01f2d20ff007b1aec68d7ee8e7dff00c646e5fe232dbe5e29318dca36e8c3be573907f980fad6d75719f68c5726ba292ff9ba0690b98595752b296d3f0b966054672d1ea7032074c6dd710435118fd2c91d6df25c5fdf6b8238d18786304007a93b962075249ce5be9b6e67ae0b7393ec8e6fe9c1a0fb339ceb9a3fc2555f1ee0e3f7047e82abeba2b0992699f2d1bdae7170500a0140280500a01407871097445238eaa8cdfa2935acde22d9bd71dd34bee71f8388488a8a1b68e4f1541fcfb6ff00b7ee6b80ad92497c3c9ed25a5ae4db6bb587f8132c78fcb118f7c88e47900e9932020e7db727ea6a486a671c7dbf520b7c755352c70da4bfa126c79aa78fc3cb160923bbeff187ea0fcb2c47cc7a56f0d5cd633f2f3f722b7c5552dd8f7492fb60d4f21f1679d245918b3236a04efe57c9c7c8107f6abba3b9cd34ce4f95d2c699c5c7a6bf2353574e5106feea2c1473d7d3723fe7586d135509e77451cb38df34a70fba91215f133a59b24a8126372bb1eaa573d37f5deb18279598e1a3db96b9b6de591de6c46e40c063e5d083e10f8049cb3311819ced9c669836562967d8dbf0be64f19b201d19032519339eea5ba8a648de9e3b72b2692b62a1f8cd8193d2b59494565f43b29b88089cea5701bbf5c1faf635e4fc9c745a897a955894ff00b32f52ec870e3c14dc4b8fc30c9189dfce31d016ca861824a8c0eb8aa91576a250b1acb876fe71ca2d57a7938b50e993c48256d723e01f4dce3b01e82abb9c3537bb7553c2f8f7fc0d36bae3b608bab3ba8dbca87a0e98236af5fa0d6e96d5e950fa5d7473ecae71e644aae9111138b5ec7044cf37c00608c675676d38ef9a8ec9c6116e5d12d154edb1461d9caf8addc123130dbf843fac9cff0063185f9035c4b675c9fd31c7fbf07afd3537d6bf793cff002fd4a0b7b02b21935b1edb9cea5cb100e46c0163d3d05667729436e0c57a5946ddfb8da7283d9f8c8248dfc427c8ccc0a06edb0037f4ce77a9b4ae9dc935c94fc94755e9b69adbef85c9d2abb07982938ff01b59f334f952abbb86d3e51eb9dbbd4f4dd647e9891595c1f2cc1dd1b66d715b070a411a9db76db7200002a81dce4fb57452b1acccab98ff00e260e1e5b95650a1635651b3e48c0ca8d5e1e3e2d2dbf9b3a9b5676c554fd99eeec9bd558e8dd703e1f6e152da49a58c602021869caec56443f09fe6ce0fb559939c2398ace08524de1b3a072f72ec765acab33b3e012d81803b003e7542ebddbd96aba940b9a8094500a0140280500a014079dcc21d190f4652bfa8c56b25958368cb6c9338b5c40d1b3238c3292a47b8af3b28b8bc33dd5762b20a71e99e758241406f3ecd6d582cb29f858aa0f7d3927fbc0fd6ba9e3e0d2723cdf9bb539460bb5fa9b5ae89c333179cbad23649623d44ae83eaaac37ad70cbaaf863939cf38f2999271f76219997532e7a69c0d5a9cee0ec3720e41c677c1313af73ca3ef933967c0ba06e5b1222eb55183b3e54b67a1d3b8c7b839a36215b8bfb9d66d7852290c58b771e9ec7de98229ea24f8e8b1ad8ae7cc8818107a1d8d476571b22e12e9994da79453ded8c510c92c49e83237fdba5793f21e3347a38ee936dbe96517aabacb1e1195bfe1104f700c8a750456383d549655c8eb8d9fbf6aa75dd751a752ea327c7eacbb5ea5c7305da2fd51636d322640f4246dd88ec4543b6145bb3530caf9594ff1fb90394a6b74197b696f1a8d483a8ebedf5af67a2d269aa8a9d11ed7673ac9ce4f12648abe4667f9e6d5a4b53a14b15656c019246e0ec3e79aabac8b954f0747c5db1af509c9f1868e7969c2a794e121727fa481f563b0ae4c69b24f847a6b357456b329227cbcb8e96f349b178a7d2da7f27871eaf9e972dfbd5bbb48e3527eebb397a5f26acd4b4f88bebfdfb955656f248c042acce08234827073b12474f99aa55c25292da8eb5f6d7083ded63076915e84f0c40e39c345d40f093a756083e85482323b8c8a96ab3d39291a591dd1c1cc2ef97aea27f0cc2e49380541656f930d87d71ef5d68ea2b92ce4a2ea9278c13b9b3851b7f001397314ad211d198c916bfa02e807b0aad45bbed7fd89ac86d819e9642c4963927ad5f48aa757e4e795ad23f181cee173d4a0f849fa7ed8ae36a54558f69d0a73b792eaa025140280500a0140280500a039bcfc5ecf88de3db4b1b4128768d250c0eb2848d2eb8c0271b7e99a82ed2c2ce5f6343e7274d8ea5d7c3ff783eaef9299258e31303e2ebc12a46022e4e4677ea05537e39fb48f40bceac730fee7df0be01666e8dac970d2cc8ba99154aaed8c82fbefb838045490f1f15cc9e4a96ffc825397a75a49ff00537f040b1a84450aaa3000180055d515158473252727ba5d9e95b1a9e73c7a94ae7190466b0662f0f263b8c5aa5b2dc39902ca6276077f3324674282db0dc74f73ea6aa7ed552bbd16f92ebb5ecdd1458dc72feb78a55032abb1ce31a970c0fa8ef569a23aef8a8addda2f11d62450cc360003eb8ac9034e726d2240ac9a10f8cdc3456f34898d69148eb9191a9549191dc645111db2718368a1e5ee2e9c434f8ca639826ad00e55d76f321f4f30c8ea32bd88279dacf1756a6d8d96678f61a3d7370c630d8963d73dd381fe8de1836fcab0893f4cdc1ae779fd2b9511705c45fb7c17b493c4de7dcbf8add5e340eb93a475ebd2afd5a4af51a6ad5f1cbc22294dc66f6b252a80303602ba318a8c5463d222ce7931dce1cc73db4eb1c4542e80dbae724961dfb6d54755a99d73c44edf8dd055a8adca79ce48171cef3340348559b510cc064690060aa9ce09271be7a5452d749c38ecb10f0f0573dd971c12791b8d5c4d33a4aed2294d5938f290463a76393b7b56fa3bac9c9a97243e57474d55c6505879fea44e21cd9f71b5210069e6b8bc650770a9f79940661df60001ec7d2ba4cf29abd57a31e3b649fb39e25334335cddcdfc3675542da51469cea2a000064b01fd9ad5b8c565f067c73bf51972cc9fb1b78655750c8c194ee0839047b11594d35945e7171787d9f7593064b9b78f4fc3a58e523c5b597cacbb068dc7746f7009c1eea7a66851d4df2a24a5dc59efc62ee1b8b786f50abc31b6a7ce30617f24c1c1e9a722423d631594dae5166138d91dcba3da4e1b656f200b6e9ac824123201df4ecc76c91daac29db38f2f831b2117d1279778899d5c96d5a588cf4c104861f42a6b4b629358378bf92dea137140280500a0140280500a038efdaaf036b7b81771e424a7248db44a3aefdb380c3dc356c99c6d6d2e33dcbdff00334573cdc0db5a5ef5931343a40c96b831f95428dfcc5738f4358c17617eea77aeff0053e792b81ffd9cb25ff119024b267e23ba863939f59188e83fe26b3d915152abf7963e4db70ae2715d462681b5464900e0aeea70766008dc56a5eaec8d91dd1e8fde277691a12ec5410467d36eb9ac327ae0e4f8f639d4dcec2091ad03025880b2e7ca3574240f407723ae3b6f8c1664e2e5c9b2b98967b29509123783229247728d8eb5a3aab9b4e4936882ddd193c7099f16376c21f12e24d0b2a0d0bd95748c1f9efd6a9e955eec94ede17497ea6ea29e362ce3b307c4f9bc25cc56dfe91524ddd4f50e08c0006f8d59dba91db357f1c12b9a52e0e97c1b8989c1c23285dbcc08fd8806b2995adaf6f392c2440c0a919041047a83d6b242d6560e68d1b5a131674cd6e434449f882e7437f4b8cab7b3483fd52e77397875f1eeba361ca970b28b8993e1967d63e460871fb015a33a5096e5947cf1ee6510168e24f1655f8b2da5136c80eff9b1e6d2370373a46f594886dd46de22b2cfce4ebfb9b84964bad00890a22a0c00140d5d77cea241cf42a68cc696764d37321f3eda5b945965765906553480c5bbe08246c3d723ad50d6c2b694a5d9e83c4db7a9b856b2bdf27319e07322b2bf954e704e3a8c118037db7193d7e55ce8ce0a2d60f413aec762927c2f636dc8fc704522dbb46816438d6061b576d449dc1e9ed567477ed96c6bb39be5744e5177293e3dbedf62b3877244f7f219a7758e0d7205d272e544afd0630b9258e49ea7a5758f0d6e8a775ae527c1ebcc5c5e16856de08d922b763a31e60e002338eb93b9ee4e7deb93a9d42b7e85eccf73e33c7bd2477f18c75ee8f1e5de6bba11c690c7b2f97c32ba8b313e6f30dfa923b74a2bacada84794667a5d3df195b6662d9d5a224805860e06467383dc67bd75575c9e6de33c153cddc2fef5693458cb69d49fd69bafea463eb592b6aaaf52a713987d9bf160931b497782e814653d3515c03f51953f31e94391e3af70b363e9fe66a6e16474b0918ea31cc904adeb2c6d24249f4d4e47eb53424947076dae4fdb37f30b789598cf3dcc981d163495d55dbd132bb7aeaf638de135dc8c35ec8dd411e9555eb8007e82abb79792547dd600a0140280500a014028089c57874775134332ea47183ea3d083d883b83434b2b538ed673be13c06e785dd431b0f16d1ae1592518f2318e48f0ebd4122403236c85ace7254a29955369f4ccff36f14978b5f0820f3206f0e25ec7f339f9e0927b28ad97051bec95d6623f82ff2760e05c2d6d208e04e88b827f331dd9bea4935a33b14d6ab828a255d202a72bab03207bd609a0da7de0e79c539496566be9974ba32e109015941c0d59ee761d70323ae0e71ec5a6e1bd1a75962b74c188c625521980f2827232476f9d52bf5aa9b5424b87ee6b3839e70fa3df80dba4f656a6450dfc084efebe1ad5eecaf09b8f467d395e2b99a6b85440e1888dd4e46a8ce0f43a490cac0ff004ef58e4b2e705866d2ca32a8a1be2037ac95ec6a526d1cfb9eb8ef10e1f721a39336f20ca06452a081e642400defd7a1f6add2471f5775d4cf29f0cfbe15ccb69c5c2db5f44a937e0209009fe47ea8c7f29c83b75e94c60cd7a8ab53f458b9275ac8385c17912124a4b108756e4f8d0c2a84803701d5fa7653582dcdaa6ac2fc111eda031aa2a0d73392230db979339791c8ff00568de776fc6e001b2a0392bc638585dbff00726d385d8adbc491292420c64f563d599bdd8924fb9ad4bd5c3645228f9e383cb7291985753216c8c81b301bee7d40aa7aca656456d3afe2f555d1396fe999db7e4a98c6ed29457d39894b75901040661d14e0a9c64e18d43a7d1b4f361675de5e0d254be73d97bcb3cbb6a425cc6647df2aae47f0dd490cac001e75605483d08353d7a3ae12dc53bfcadd74363c25ef82cf957221653d52e2e97e9f7990afeaa54fd6adb39a8a6e66e050af96de2cdcdc16d2356caaa3548e14eca3a2e7d5d7a66a9dba48b4dc5727534de4ac8ca31b25f4a3e391782cf0c92492ab4634e80a7f11c839c0ec31d7dea2d1d13836e5c163caeb29b6318d6f3ef93695d1388280e1dcddc2db875f6a51e42e2688fb06c95fec9dbe58f5a1e735353a6fcfb6726fa5b812add58c203ccf3c99eb8b747d2c66723e1218b141905980c600665c9e84911712e19c2a32892ae400080c6595ca8c0d4d92c7db2401ed5820b355557db2ef81debdc462678cc61f7443f104ec5fd19bae3b0c7bd092a9b9c773582c284a280500a0140280500a014065bed2e4916c1cc593278b004c0c9d466403006e4ef44457b6a0f047fb3ce4f1631f8b2806e1c6fdfc353f841f53dcfc80e9be5b2be934de9add2eff002363582e8a02bb8dda49346635f0ca3ab248ae09d4ac3046c4636277aa5aafda5493a718f74c921b30f711782ddb329b5bac1b98d7cd9e9320d9664dbcc0fe2fcad91e84d970564529a4479c3e0a6e5c7b8bab0b68600d047f77895e77043b623505608cefbeff00c46c0c6ea1b39199a96d7b7b0bbe4d0f06e18d6e0278994550a880285503a00001b002a9e9a8d442c72b6795f04b3941ac4516757c8889c5386c5751b45320746ec7b1ec41ea08f514c9a595c671db239a716fb2e991b55accaeb9c80fe471e9e60304fbf96b6dc726cf1b24f30658f10e117733599b8710c8e4452b63c40d242243037958052caf2ee71e6d23d285b75596422a4f0d766d384f068edf2412f23001a47c6a217e1500001107655000ad7259aea50fc4b1a128a0327c7f906def2532bcb32b1ebe60c3e81c1d23d81c7b50a57686164b736c9363cb6d64a3ee3213fed239c96594e366d6bbc526c06a5046060a9d88166aafd38ed4cf0b3e2df759e74ba431b4c5668910998c8422a4ab10550cc41446231f8f343720714e5ee2378c6e05c2db33a84116faa28c1c8533213e76382da76c851960a091575155b67f04b08b4e50e5d9ecf519eee498b0c04258a2fb8d44927f4fad069b4f3abf8a5934b42d8a02a39ab85dbdcdbb8b9074202fa97e34d23729807271db073e9421ba98db1c48e79c52cb89dd030476f2a46cef24b9c20792462cc199b1ad501083a82173bed81cfd52bed96c82e0bae55fb3858584b76cb238dd635f801f5627e3f9600f9d0db4de3941ee9f2ce8143a8280500a0140280500a0140280afe2f6ef2782146409e377dc0c2a65b3bf5f3051b7ad0c32c2864500a014045e21c3a2b850b2a06d272a4fc48d8c6a461ba9f704506070bb316f0c5083a8451a4609db21140ce3b74a025500a0140280f99625618650c320e08077520a9dfb82011ee280faa0140280500a020717e1e660ad1b689a26d71bee4671865751f146c09047c88c1008027d00a0140280500a0140280500a0140280500a0140280500a0140280500a0140280500a0140280500a0140280500a015802b20500a01402805601f28e1b7041f96f5ac2c84d662f265a6bb3eab730280500a0140280500a01402b19c019a269aca02b20500a0140280ad878a0698c7f87a29fe61fe3fe7ad4ceac47246acfab05954248280500a0235d5ea47b31dfd06e6b9facf25469789be7e1764b5d52b3a1697e926c320fa1eb58d1f93a354f6c1f3f0c594cebec935d122140280f3b99b42331df033598acbc186f08a1e11c78c929462319d24631a4f6f98ab3651b6394450b32f079cdcce7c5f0d40e990083d3dce7626b65a6fa72c7abce0d1c126a556c63201fd45546b0f04c9e4fbac01580549e34357c1e5f5ceff003c579a9ffc8e31b5c767d3f3ee5c5a37b739e4937b701a1664390463f538357f5dac8cf432b6a7da22aab6ad51911b819d28ec4e06475f61ff003ae77fc79aaa89d93785926d5f334913e1bc47385604d7728d7e9ef96dae49b2b4aa9c565a3deae118a0140280500a014028087c44aba98b5a876190b9c120633b75c7f8d73fc82f56a75425893ebfdfb9254f6c949ae0afe53d01248e3c810bf845486f2b2a82465baecc37deabf88a3515426efedbe8cdd6d763fa3db826b711c4e21d04839cbe4601001034f539c9dfdaa4ff00a9c3f6afd9f1c99f45fa7bc9571388d4b374156f55a9869ab764fa4690839cb6a3c3867114b852c9a8619908652a415241d88dc6db1e87b534baa8ea23ba3f6feff809c1c1e1932ac9a0228198d20ab7a153fb835d0ed14fa66a2e2fd2350cc77600803a9aa4ab72784597349156fc71c9f2a28f9e49fdb153aa17b91faafd8bb875691ab1ab1be3a66ab3c6782659c7252735730fdcd542a8691f2403d001d49c75f97ceaa6a751e92e3b3a3a0d0bd549e5e1230bc52f24e227c3f1bc0f116449001a83874c2e93d55948046fbef5e72c92aed96a270dcf29afb63dbf03a1a9f1d2ae0941f1ee793b4d672305ba9247658464ec2311c7a7ca327cce72c4fb8f9d628b2376db230db86dac7be49745a1524e5672be0d1f26731cd24c20998b8607493f10206719ee300f5aede9353294b6c887ca78faebafd4ad63e51baae99c004d0191e21cdaaac63750148ee1ba1fe61dfe42af434af194caf2b927866178c738db5a5ce575c85946b098f29db492588f363b7f8d6d65aa2b64bb358c72f7227f29719b6ba7925d641c8d48701953f0f53839c7504f4adbd5df1c40c28ed6dc8e99c3b894730c21e83a6dd3db1b551b2b943b2cc649f44da8cd85601557dc281cb210bea0f4fa1ed5e6fc8f8484dbb2a6a2df69f45ca752d7d3233d7d0b7994b1646d20a29db21810c0af7edf2ae2557cf4f1950f1cff0033a35ca32c492e57bfe848b7864208cb38ce40c6cb9ec303fbea0fdf6a22abae2da5f0693957179e132df8670d6560efb63a0efd3bd77bc4f88b6ab15d6f18e97f9296a351192db12debd4948500a0140280500a02b78edd4b1a0f074ea27197048036cec0f5c6715caf29ae969231925c3ff1c13d352b1b456df9c186e4a139744661a7f861980d4493b2640ce3dbe639b568edd6cabd56ec670dafc3e0de772a53af192cb1e15d7f2dc2ff00f6c43f72d1fed10af4e543e6ca206e6e1f24e3c3500f453a0138f42415cffd6a1fd9eaf53d5dab77c994e5d678f83e38d9791a38222a18b789216048589763d08f3331007c98f635a6af490d4d4eb9f414e7069c09d02470809a8027d48c93506969d3e8a2aa8be5fcf6c96729d8f733f6fed7c54d39c1ea0fbfbfb574a12daf24128e519a669226c12cac3dcff922aea51922b65a3cb88dec6a8d717122448b80ced9c163b2e0004963e83e75a392ad60ca4e47acc19d811e70eaac853cc1908f29523a8c56d071c64493c96dc2b85953ae4ea3a2fa7b9f7a86db73c2248578e596f55c98c4fda270c76d170a09555d0f8fc232486f96e73f4ae76baa6f134777c36a610cd52f7e518606b958c9e89f27dcf31762cc724f5ac420a11c23584141611acfb3de16cd21b8618450557dd8f5c7c87f7fb574b4353cef6713ccea56d54aefb6740aea9e745019ce37c3e388190be1773a48cfcf07d2add364a5f490ce2972ce57c6794ffed199e785845d010cb90c54633b1d8e00fdaa5bb4fce73c91d7667db82db90b946154639f1267d8ead80d3be941dbae724eff004a28fa01356a3a172ff06303674845df6073927e550dd729a25ae1b4bfaa84a2b20a0e236f2b39c86619f2e3718edf2af15e5349adb2f7c3927d63ac1d1a2ca947e0817962df78b484b60bbcb23a83d638a2231ffb92c47e9ef5d1f1fe0d46b6effe26b18f8ffe90ddaa6dfd3d1eee1e07c0241f51d08ff8d702c8ea3c75d84dafc9a2dc5c2e8e4d0d9ca5d1588c122bdce8af95f446c92c368e6591db2691ed568d0500a0140280500a03e648c30218641eb5a4e119ac496519cb5d14fc3e1583fee7265e270de117f36b5393244e4fc4c324eff12fae96ada3151588f4691585823715b79ede20c844b140cb282ecde2a2467cea0e0f8d98f5a8270d83b963bd64c963c2079ee9bb34e307d960854fff00256a047e704f387b83d67395f68576840f6232f8ec646a04575e40b7772d1e82cb16862ecb945907646ef22fb74cd79fd6f8bbeed57a909622d61fe059a75318c5c1ae7bfb1a4aefa58582b95dc62e23500328763d01edef9ea2a6aa327d1158d2333c4ade0b985a0b98b5c2ec8d856652ac18052181c8eb8eb53cebcfb91c6582539d402c6812389151517f0a2ec3e83fc2b68c54560c379e4f7b0e24d19c12593b8f4f956b3a94ba3319b469239030054e41e954dac70cb09e4f23771f89e0974f10aead1a86ad3befa7ae363431bd6719e4a3e29c9b6d312c99898fe4f84ff60edfa62aa5ba3ae7cf4cea69fcadf52c3e57dffc947c2794e2f126fbc4874c1204207943031a3862d9c81e7c63d41dea05a28416eb1f05ab3ccdb3fa6a8e1ff53dee78bcad2471dbff0002247d231860f1e8770e001f0e985f1ea580f96716598dbf4a8bf6f7441b69ad3f5bea94bfb3fb9abe0fc496ea212a2b28248c30c1dbfbc7b8ab94dbea47763050be974cf6369fe04d271d6a5212b38cf0c172a30411bec7a3038ee3e553556ec64728a9233d73c21a39ad61560359998aaf4d31c471927f9dd0fd2b795f9793555e160fbe5fe0cf1cc58060a5c31c8c05c67233df39c54d75ca50c1a575b4cd8d502c91afeebc25d58cef8ffad73fc8eb5e92af51473ec4b557ea4b19214bc4f544c57cafb0fd7b835c8bbcd7aba394a1f4cd617f5f744f1d36db127ca21f1086e2e2c655824659bf030382749074eaed9c15cfbd743c1dd65ba64ec79e5953c856f955f0ccbcef75786205bc0b85b3d123499465134f89182819d4c2d76031d4ee2ba775f5d11dd63c229c6175d528c7f8bdcd95ac705a5bc508f3a2ae149c1271d58e7d49ae76bbc8696b8c6535b93ebdcbda6d3cd2d91f62dd4e40c574e0d38a68d0fdad80a0140280500a0140280f0bdb45990a3e71b1041c1561bab29ecc0ee0d01005f18818ef301718136311b83fed3b44fea0f94ed83be95182aec3c9c3d22126a691de12f900e4c8e25707f9516461fd340598b96b8012d7c90e3067036d3e9003f19c7e3f8476d5b800595adbac481106154600dcfcc9277249dc93b93926864fcbabc8e200cb22202700bb0504fa024d0d6538c7b654af0ffbc13278a8cac7aa1d631e80f4ab0ad5158488b6efe7245e60b7585608d065a59b049eb8486590ff00f98ad636394d64d9c128f07ef03526518ec093f2c63fbc8a9ae7f491d7fc45fb5a467ac69fee8aabbe5f24fb57c1e91c614614003d00c56adb7d9b2583907dac44d1df24aa4aea890ab02410ca581c11d08d8fd6b28e1f91cc6d525f069becfb9d7ef58b6b923c703c8fd3c503a83fce07eb465bd16b3d4fa27d9792d9a4d75730c8b94920b67eb8f30798123dc694a8e70538ed91d4aad9553538f68ce5b70df1266885bbb9b547b75624889de47660d2b1f2baa214f2e1f0659069da91828436c4ccee7659ea4f9cbe4daf07b59228824b2f8ae33e6c63e42b4a6b9423893cb36bec84e6e508e17c13186763d0d4c40d64e7fc27814b6ed2436f3c892c4c488cb901e22729246ad94231e52197e2046a51835b1ce8532836a2de57e44ae11c60dd5fdb07004b0c17ab200081a8496a0300775c82411be0861938cd6196a8b77ae7b46c6f2e9214692460a8a3249ff3b9f6ef5826949456598ee05c6a537baa50522bd6956243d51ad950027d1986a047aa81dab2f85928d574bd5e7a975fc8d15cf158c82ba4b03f406bcceb3ce69649d6e2e48edd7a59f79c19dba80962c0b683b01b82a08f36e0f98fee2bcf39c12fddc5a4facfb9d284d28e1f68b08e79022852c13034e33b83d0e7be6ac4aed7d495694a297c22be2a9372e191ec61f12f6ebc538616b65b9db1fc5bcc66bd1ba1ea740a3aa787f2fe4a3bb65b9acfcb946caa86c8527e123041c1ea41fcb8fa9af2aa4ab97a73fa945f18fd0e9c1ac378c365bd9df4ccea0a8c6da805200f5dcf4aeee97c96b2ed4c60a1887e1d2fc4a56d35462da65cd7a8290a0140280500a014028050184fb41e11c4649527b295f4a281e1a36921b272da720383b6ded8c1aca286aabb9c94a1d7c1f3c9d27dec69bb8550db348ef1bae1565958147d2c3638f108feb1ed42cd536e09cb837b9ac1321405073b70bfbc5a9f2ea689966518049d1f12807624aea001d89c56532b6aaadf0fc392921b455026b522393487f2024327670bff008880ed953974cec41001c9028a5f54387feff545adb7135ba96d1b003299f5ae73a2458c2900f70449907bab03deb1d16aab37c725d59582c4588fc5d3d87a7f9f6ada7639259378c369251c1ce0838383839c1f43ef5a1b269f47d50c98ff00b4de046ead7c48c665809700756423ce07bec0ff006688a3afa3d4af2bb47198666465742559486523a820e4115b1c08c9c5e51d72c78fc973246f6ea0dc4f688324131c4565904923ff002a9ce1720b1c0db72307a6a6cf520a42e79d6c78720b78354ec99c95230ce492eef2746666258900ee4d6082dd7d75f0b9649e50e793c426317dd8c7842fa83eb03040c1f28c6735931a6d67ad271db83c138cdedb5ccd6c552644f3c7ab5f89e131f29ca2b33aa9f2e4293b6feb59c18f5ad858e1dfc7e04c9ef3ef281e7b6d6a84959ad26f15a23dc8c04914f62141f422b06ee5bd664bf9a7d10785f0c8a3e2505dc53b4e2e61b842eda3aaf8240ca2aef846ce77f2efbe68c929ae316e69e724805b89ce0e48b74f32636f2ee0499ff69260e9fc89e6d8bae33d117374bec7a71228f776b14206985f40d38d2303548063b22c68a7de403ad6306678764547d8d30b1881ce85ff003ed54178dd2a96e50593a3eb4dac6481c72162534a92002361d0fd2b87e7f4d64a50f4e395cf48b3a49c5672cf2e5f95a1636729f32832439fc50b11951ff94cda08ecbe193f157a3d34651a60a5da4b2539b4e4f043b9b10fc4a4cb69f12d2123ff004659836dede32feb55bc8f8f5ac828b96306f55de93c9f3756a1a68c4243af80ee4a9075ea9230a411b1d81c62b95aef0ea1a550a165a79fbb27a753ba7993e19a4b20c1143fc58debb5a18d91d3c15bfc58e4af66d737b7a3daad9a0a0140280500a014028050181e78e71bbe1f728ab0a9b7d20e483fc43bea01c1f291e9827be0822873f53a9b2ab3097067b895a5c719b893ee83168ef1c8eec748f13eef0a957ee5902f419dc9f5ac9adea77e3674750e03c37eeb6f141acbf86ba751ea77cfd06f803b0c0ac17a9af64147e09f42431dcfbccd7566d0ad8c51dc3e4bcf1025a6110c60ac4a75053e61af040206c73430c8d3715b68674b68e41324e3ef10c7137f1a1d793aa16d959186a6d00e71ab0194e06dd959c1c3a595fdd1e3c1ada54e271c9a6410489228324662ccba41f80ef9d2a77031b6d818030cd288c958dfb165c62e9aee47884863b68f507652417f0ffd33161f8149d017f136ace55483942c93b1e33c23df902cc430cc81748fbc390bf97ca994cf7d272b9f6ac336d2476c5afb9a7ac16c50189e66fb3a82e58c90378121dc80331b1ee74fe13f2dbdab3939f7e82163cc7866238f0938744d6824cb3048e465c81a54c929519df045ca67d718ef42aea37514aab3d90b96f942e6f88289a22ef2b82171fca3ab9f96dee2855a34965bf81d9797397e1b08bc3846e77773f139f527d3d076ac1dea288d51c448fccfc19a6f0e7849171012508214b29f89351d813d467233b11826b28d6fa9cb128f68adb7bd59b2ee8e255d9a6b75226423f0cf6fbb8f911229ebe959225252e5f7f2bbfe68c8f3a71030491cd1c9193adfc4311c6a678648c48d093aa2931279ba86d2a7208c5086766c93c7b975cbbc49668424424707730c1e5666381fc69860431a285403209099dc1028c516294125fd17ea6af81f07311f165d1e295d0ab18c470c79cf8718f9ee5bab103a0000c365caaadbcbeff22e2b04e7c4ee5558aaea60090b9c6a206c327a67a50c49e11813cc57374e91cbc3ae21915f31cc8198c4dd3243a2a94c1218670413ec6b6c1461abb1cb6ca0cfce749ae4786ef6e565d335a1911818996e800a55c9cc64cb1c430e0635e016eb58459bd49d6d47bc11adf8c2f091a5c7892a4305b2c6a7fd68d72cde6c1f2817108db3dbe8ecacedfd9aa8a7cb37fc1ee649618e4963f0a465cb2673a7d3b7a60e3b671582dd52728a6d61932848280500a0140280500a014079dc5ba48a52455753d558020fd0d0c4a2a4b0c8bc2784c36aaeb02045773215180031550700741e51fbd0c462a2b089d4361406638b726472dea7118a478aea35c03b3c6c74951e246704f9588f2b2f6f4a18c199e61e04d66e7884b046de01f163787593095259d5e33b1824f30fc462672c08524a64c1b0e699963482eb3e582657247e5951e2c9f61e303f4ac1893c2c941cbb3a0b513487f84a11e43de471ba44a3ab6a919a423d5d577f301b14a992d9b9f5f9fd8d572f5a3450289062462d2c83ae24958bb8cf700b63e95ab2dd31db1e7b2ca84a2805015365c0e3059e648e595a5924d65064076f228ce48c46b1afbe9cd0d1d716f2d16d437140280857dc2209c869625661b06e8e07a075c301f5a64d255425cb4466e59b42aea6153ad1a3666259f4302080ee4b0ebeb4c9aaa209e523e795a396387c09930d01f0c380a166400689405e8482350c0c306ed834378a4b845c50d8500a014046e276297113c328252452ad838383dc1ec47507b1028083cb7c2de081527d2f32b48cd275323331fe21c81a59860951b2f41b01431b57b96f432280500a0140280500a0140280500a01402805002280ce711e5c6f0a48ad997c195191ade4cf8786041f09d41683af401946365077a18688fc9dc151628fc68dc5c5bff0cabbbbc68e00f3c00f934b060c180cf98838208ace486144238fb1abac138a0140280500a0140280500a0140280500a0140280500a0140280500a0140280500a0140280500a0140280500a0140280500a0140280500a0140280500a0140280500a0140280500a0140280500a0140280500a0140280500a0140280500a0140280500a0140280500a0140280500a0140280500a0140280500a0140280fffd9, NULL),
(60, 'Aye', 'Aye', 'Win', 'U Aye', 'Daw Win', 'Myanmar', '5/12/2012', 'Engineer', 5, 'UCSY', 'none', '17', 'XS', 'A', '9', '', '', '09-88888888', '09-88888888', '', 'Yangon', 'Intermediate', '5/12/2012', '444444', '5/12/2013', '5/12/2032', '88888', '5/12/2013', '5/12/2032', '555555', '5/12/2013', '5/12/2032', 0x89504e470d0a1a0a0000000d49484452000001000000010008060000005c72a866000000097048597300000b1300000b1301009a9c18000018b749444154789ced9d0b945e5575c727a1298aa20579181f28666c696066be8ff3cd37d3b02444506a40c1c2a0584b91d2ca2b42025d94165de972958780828f2e595a515e021ae8223c440bc20a8f5002e525e5a16b756984ae02498000494862ff3bdf99384966e6fb66ce3e779f7beeffb7d67fdd28c9fdeedee79c7defddf79c7dbaba08218410420821841042082184104208218410420821841042082184104208218410420821841042082184104208218410420821841042082184104212c639b74ba3d1f8c4befbee7b1ef453fcef8771fc0df41afefc3b6af2121f8a2fc5a7d06dd0b9f57afde3e273eb76271566d6ac593ba263fe2d3ae252eb415261dd071d2f6d61dd1f4845e8ededdd0d9dee5bd0ea040600d5d22bd0376bb5daaed6fd83640a3ad834dcf14fc57155021d9e1a5d2ba133bbbbbbb7b7ee2f2423f0ced98d8ef568021d9cea4c922f9861dd6f4806a023cd855624d0a9a909084f6b2fe178b875ff2125061d681eb4c1ba33539396b4dd09d6fd88949046a3f1571cfc596823daf238ebfe444a041e1f3f09ad4fa0f3520a425bbe81e361d6fd8a948066b3b9273acccbd69d9652d76a49e65af72f923653d151ee4aa0b3521184c07ef7d0d0d076d69d8c240a3ac93f5877522a7a10f87beb7e461264707070673efae72ff93c286d6ddddf4862a0637cd9ba73528569a1757f2309810ef176d79a466add31a962b4aaafafef8facfb1d49047488d313e89454b13addbadf91349882c7ffa7143bd62338dfc938ee8577cd375b1b5776c487e24bef53b5f51838df9338fd146bfb8831e80c072875a8d7713c11a79c6a6d53c64cf581608d522038c0da20620c3ad4d54a83ff006b5baa42bd5e3fd0fb3cb4ddaeb6b68518824eb08bd2dd840b4e0a063e3f45a1dda4ed595aacaae00e7086c25de4f12e3ef65b20b3363572020bac0d2146a0f19f500800c75adb5155e0ffbf51683f2603ab081a7f8ec2dd43ca83ed606d4b55e9eded7d8b2ffc11d48e8d4663b6b52da46094927fdfb0b6a3eaa01dfe5521905f656d072990fefefe77686491719e9ab52d55a75eaff72a0480b5ac285c2134927fd0bdd676901668cffb15da93c9c0aae098fccb0ac76420e914a733f38fc9bf84603290740c937f79e2749281575adb4122c2e45fbe282503d7301998314e67d92f937f89c264201917c7e45fd6382603c9583826ffb287c94032264cfe5503c76420d91a26ffaa039381641b1c937f9582c940b20568cc5f283cfe1f6b6d07e90cc7642019c631f95739b49281789dd8dfda1612081af22a85bb01937f25c331194898fcab2e4c0612b90b2c50e8044cfe9514a564e07c6b3bc824710ac93fdc493e676d07991c68bfe3155eff980c2c13f2d82fc91b34de1715a23f937f25462b19287d4966074adfb2b68978647347342edac61d83e379382ec6f1570a8d3d32fa33f957729c4e3270a456a05fdc8de3a5389e8ac0701002c33badedcc962206fa5862f2affc2825031918626339d0c710937f99a0940c6460d0609c81bed1b091b611937ff9e01492810c0c13a42c037d0cad920492b50f890e8ac9400686d1181818d81d177b142efa02e83fa06713706488be69ed53a28bd34f06162a8cafe7fcd89231362463ced4a13d3d3d3b4984c2c5dc076db07690a6247164ea5ca28e2474adfb95b264ccdd0b7d419eb60b73247e70ba7c1e835e4bc00931745f61ce2485629c0c8ca95761dbd7a3be2acc9c39f30ff14367cb8f2560703431f9972f4e619970e292b1f94fd03455c721b2ec8d08f3780206c61667fe654cc99281217ab456abcd54715aa3d1f8b4cbfcae3f424cfe658e2b793270025a2d89f95067cd77e5f86ca72226fff227c364e078da2089fa49390afff0e4040c28529cf95711324e068ea589d537c49df053ae42777e5f34e43391fa5be1349bcd3d61cf5c1fc4e5bbf135d01dd023d0726885d7b00f86fff772ff77eec0bffda1fc5b7f8eb97d7d7defb7b64b0bf4efcf6a148a29913674fc3a80bfdc03ad4ee0a263689d6bd508b80e5a080d498273686868bbc87d2e1ae8ccef821d47425f93196491935c92245d82dff86aa3d138027f9e6e6d7f08e23b9969e7e7b35cea67e0e5daf7574b5f1fd721f2a92f876cbf4477e821fcf92a1ccfc2f1703476779907fa30dddddddbc39e8fca20c4f1bfad7d0d3d816bb908c78f48ffb1f64f28d2476ab5da07a5cfc0ae7ff47de8bf3279627874dc3672adbba2f54572a06f05ec9a06cd85be0fadb4f6fb38926bbb0c6df0e7b367cffe036bbf69925160f8e2a806fa47c9543ff765f7e8de09783c7d2f6c3d139decd709b4c1842473d7fd22b019d67e8c4d995e2564066fb3d97ccf3646e03f7c3b818babc41dbd1db0fdc3b0fd2697472256e6acdf58b50d37a5cf4adf75ad2786b37c9f7e289127866f6d71b15ae5b327a04aded1db30057e380c7a30810e1245e863ff091d6aed686bac9f18e429608bfa864e67efbcd17e8877f40e806f0e866f1eb01ea0056aa90c006bbfa784c113c3efe7064864561cf4f215619ecc45e6401f1f44e13f86af162730204d84bef2b3b69fa62a8e4f3ece84bfbee014cadc8f0cc29b7e4012024ee15d531e2ba093ba5843bd2df0d70eae3541679df5204c406ba17366cf9efd26eb762901f29a788ad253c146791591cef819a5c1ff616bef940138fd40f8ec97090cbcd4f474d5128593c5e70f828380ccf895c7ffaf2b048093ac9d923a7287f39fc5b2aa9ea42c7912bd44263b59b757eac04fa728f8fb6209003f0d3cc913b89ea9d60e491944ec7de0e7c712186065d1c3b83bfda975bb25ce14853e75ab4492d0c7d153ac3d9132be9e4292934212d72bc1ebd933c7b51283213e7e5a4e1234b594917a4ca6fa39f2d603a9ccda081f9edfc527cc51912f2821fe856f5f9400109a896609adadf0f513af496000e5a245fc4ab02d52e22cd0af6bbb421bc7da09a9316bd6ac1d5dab7ebbf5a059e35a65a36501d14244fb63719c230b5af05af281c1c1c19da5b4bb2cdaf1d7bc07fe5b1f8e0740432316bc3c944805e8db1058df6addbea9113c7e1900f44044de0d3e596634405661a0fe18c7f9782dfb33e54cfa54bfc9e602fcc62dce28a72113d610a47655b4abf43000240206c8fbe08fa70b1e102fe278197448919fcefc2bce1cfcfe778baeb28bdf7b0ac73d8ab23575180012c0dff90b1bfc180477e278b8d3aeff3e09700d3be07afed27f4e2e648e8304013e09b4600030c6bf3f17f1d82f5366af43e71fb4b6792cfcfe119743eb0bf0c703e27b6b9bad610030c497e78a9df093d97157ba123df6e25af782ae282010dc964319b2101800ec980afbaf8ddcc19742fb591b3a595cabc0ecbd317d24d58bbb2a3c4f8001c0085f943356a77e61d3428d3c904079a28b5bcbf01c6b23ad60003000761f1db133ffc495bcdcf668c8ceb5b0eb86483edbd868343e666da3050c0005e322ed9be027dbccebcabb9e822c6039037a234210787ed4629799c30050207e49ef63113aef72dcc1ead6f615055e6ff697aac111fcb824b772e4ed600028108dda095b4b6acb57f4ce351dba2f421038d7dab622610028085fc947b54c3706ffcd55fe962d73fbe187db950380ec83f7216bdb8a8201a0005c6bb6dbaf9407ffd52c9ada7aad823f6e54f6ed632e81599245c0005000ae55c053f32e7563553a6827882ffc6ec49a3e3edddaae226000888c143c71bad57b6fe7daf66d91a721a7f8248080f2725f5fdfbbaded8a0d03406460e3ad8a837f69d16bda65d10c82d85fe0b7cf86ae821e90d719996ce42bcb6e5a462c75028abcaed1f0eb2a1e51f4f775d636c586012022b2cbade21d493e7b1532c107bf859f7217fac1d451e2529616a770c7f41ba2fe563108ccb1b629260c00f1904d185456f9c9c497d835effddd7381df9969b2d77a6dcc6bec145cc7be5a5b62c9d2696b7b62c2001009d75a6faf75175ad0fe17278794f572ad925f2f2a5ce7aa58d73951fcc6992afecff9b320034024fca6a61a1df0faae38d37ba7e015e57338ffff290e9497225ce76499a2b067c5b06eb53626160c0011f0937e343adeaa4dfbaf2983f3ce8096680dfc115aa47dad2188ef2459a9611bced5b0b627060c001190197a4a03eaf3dad786730e49608930f857c86ec5dad71b8a53d8bbd2eb7a6b5b62c000a08c7c0e733abb25dfd3a55ba8429292176a0f7cf95e2e8323c5c1ef9157817b146cdd20e5d0ad8dd186014019bf8167e8a092e5ae3d5ad784734d73adb26093bd9effc5f11a1c4f934f9b18087f22fb0294654212ae7d40232843ff626d8b360c008ac85252d8f4ac4200f881d635f9c1bf7812d720137dbe813f37bb32a831e05a939842db45e6626435059b014011749043153ad97ab9c32a5d923cf64ff4cebf5ceef4b26d94d2352481df7761ad42fb1c6c6d8b260c008a4849eb507fc880d5ba1e37b177fe75f2fa92dbc01f096cbc42a17dbe676d87260c004af812dfa1d9754934eda3713dae95edeff4aef6547f7f7f4de3775306b6eeab100056e6544a9c014009a579ff3fd1b816d7facedf69305a54a5a2224e61fe83ccf3b0b6430b06002560cbc50a01e068854b91cf5e7777f27bf87bdfae5a5111d87da4423b5d686d87160c004af84d2727ed07bf49e60ea1d7815788e33a1dfc1a76970dd7fa2ab222b0ad1eb7b6430b0600056419acc25de5d2d0ebf00b7b3a99dbbfa86a77fe91c8675685f6ca62ef05060005dc04126ee3e80085ebf8e70e7ee79966b3f93605b34b0b9e923e11da5e5224c5da0e0d180014801d9784f8c04fa70d9a602289bc0e96f4aeab42b6bf1df2c5c6bf7285b4d945d67668c000a080c25cf39b42af01e738bd834e7b9e86bd39007f2c0a6cb325d63668c00010ce1485bbc9a9a11781f3fca2cdef2ccf7992cf44e92460b691143fc9618a34034008b2422cd407782cdf3bf01afa8b083239019fcd0a6d37995e6c6d47280c008128ccff5fdd15b8ecb7dd56e3be2846f027c69cf01b8a04ad0d90c95fd67684c20010086c9817e88365a1d7d06ec351d99350c3d6dc806f9606b6dd89d63684c2001088648343ec0f5dfa8bf7fadd5c9bb5eef28aa0656f4e842edec2bf3fdfda86501800024127f85160273a2be4f75d9ba9adb286bd2b8364550c5c67f326c6531265d0436000080403ece721f6874e28c13916b60900576bd99a1bbe2a7248ffbdddda865018000209dc4823b8e6bc0cf036e767f67f0ce09f3981fdf7116b1b42610008c48597000baafde7daec3e9443a63a1652c834b0ed965bdb100a0340202eb00848e87e7a38c7ffb4f98d195ab6e6067cb34760ff5d616d43280c0081e011fbb5401f047d9f6f37ff5faaf76ad99a1b030303bb07b6dd6a6b1b42610008448a7886d82f9584437edfb599cc9253f92a6de09fb787b49d946fb7b6211406804042030006e85b037fffe5713a684a7bf525879f0d181200d65bdb100a034020a1af00fdfdfdef08f97d9ce38671ce9fd45e7da9e1029f00a057ad6d0885012010679f04dc0b5a39cab95726bc5d5712349bcd3d03fb2f93800c00619f01652f41856b906cf6f5d06a119e4afe5d7173916c818fea81fd979f01ab1e00da2dc469a77abdbebfb50d5545611bf787ad6d088501201004803b037d708cb50d55056d775460dbdd616d43280c0081282c06fa92b50d5505fe3f3bb0ff7231100340f072e07fb3b6a1aab45b47d181be626d43280c0081b8c08220b28b8fb50d5505fe7f38b0ed4eb2b62114068040424b82e1dfbfced97ac5231ba388ef43da2e8785560c00816814058506aceda81ab55aad2fb4dd5814940140d0280b7e9ab51155c3b12cf826180014801df706fae13a6b1baa0682ee2d816dc68d4118005ab8f0adc157310f501ce26bf8fc959036e3d6600c009b519850229a6b6d475570e1a5c0a4d2f211d67668c000a040bd5e7f57a81f381fa038e0efef84b6577f7fff3badedd0800140090ce0a70203c00ba1c541487b060707dfec465f3d3991b67adcda0e2d18009470e17900d161d676e40e9ed63e1bda4eb9bcff0b0c004ac8a410858ef5736b3b72073efe59683be1fdff206b3bb4600050a2bbbb7b7b17581c448477cb9ab52db98281bb0f7cbc21b08d56e4f4c586014091d0bde6bc2eb3b62357e0db6b42db27b7642d0380220a5b858bd6349bcdf758db921bf0eb5ea1055c4539ccff1f0903802292c577e13b05c95de6726b5b72037ebd42a15d9ec3719ab52d9a300028235b4687fa04da803b4dc3da965c803f7ba486bf42bb9c636d8b360c00ca48914fd8b551a1b3dd656d4b264c75e16b357ee7db34bb6dd6180022a0b0d06493648ab1b52d65077efcbc465b408bad6d890103400414aacd0eeb7968bab53d65c5effdb742a32d72addecc001009dcbd1fd2e878f234d195c1ba7303a6b8d65e091a6d70bfb531b1600088046c3b5ca3f3f90e58fada734503bf2dd0f23f7488b53db160008887dc81962975c057a58495b5416501feda0f5aa7e4fba5d6f6c4840120221aeb038685a780dfc8b2636b9b52c7bff72fd7f2bbe473ac6d8a09034064b4be08783d18ba9d78cec03f3b404b14fd9d7da9360680c8b8d6eebd5a8fa39b9282ac1bb02db24007beb959d1cf2f57614a36034001c0ceaf28de9544573008fc1e3f05fb064d1f23009c616d5711300014806b3d9afe523908dc204b90ad6db34636f8802fae541efc8fb9cce6fc8f05034041f8c9411a538447eab6dededeb758db6685e443e083c5ca3edd90eba49fd160002810d87b897267ddb4b7a064bead6d2b9abebebe776b4db6da4ae75adb56240c00058277d537f9c74bed4efb5b683f6bfb8a42e644c867d1087e5c52b5dc0a0340c1f8b254ab2374de7515d8624cb6613b197a2d82ff9eaf42d67f6b18000c80dd4747e8c09b84c1f1e31c5f0960db74e8d6487e93dc4c2537666100300203f5abb18200b402e7ffbbae4c1611e1a9e9d3b26f42447f55eabd7f240c007648a18a6b23766a791ab8475e39ac0d9d2cb87e98e1ee8aeca31fe2a7a65adb6a050380217e93cadb627670d72a837d1db497b5bd9d22197e5cefa52ebc84773bdd51f5b9140c00c6cc9a356b47f8e1c1c81d7d38102cc61341dddae6b1903d1164e0474af26dad65e27b6b9bad61004800bf82ed99023afd702090a78ea3659f3c6bdb711dd330e03f09dd5990fda2677a7b7b77b3b63d05180012a1d96cee5960101896ec6474299e0a66bb02a7befa5d940e812ec3c07fb1609b9fc12bc6fb8bb23575180012c23f0914f13a309a5e816e92b9043e71a89618f32bf506e5dcae958f08de426d925ac63bff96300024069e04de06bfdc6e344046ea55d70a465760e09e85a070843c29d4ebf55e1cdf3b5c97a0a7a76727914ca2c1df9d81bffb211c8fc1f14b387e4fbe4440af5bdb239b82f29d7f5b180012c47f1d08dec78edaaceb651ab675bba6080340bac83c810b9cfe0ac22a497c27937c2afb9dbf1d0c00898347ee8f1b24ca4a2f3f7330db6abe5a3000940079e79665bfd683aa2c923afef255c5baddca00034049f065af16baf8b3e3ca2c79e4979a0b95a8e6a3010340c980cfe6404f2430d89212eefa8f57a9928f160c0025c4b566cf9d2a956bad075e0292cf950be5cb8975bb9411068012231b8520085c9ec020b4d262f8e07dd6ed5066180032007efc48c592844b1b8dc641d67ecf0106808c90997a32e32d81011a4b0fc0be43adfd9c130c0019e297d5ca9cfb2c2611c9d38dcc87b0f66b8e3000644cad56fb207cbc1003e8d7d683781283fe39e83c0cfc6e6b3fe60c034005809fa7417331a07ee0ec56e275a295d0f7f12af3b1aa95e7b68201a062c85a7c048283e1fbafe1f8640283fe095f20f5a3552fcf65010340c5914f89688721e862e8de98730b70ee976479b0ffad23a1e9d6f6571d0600b235537c75a2b9d02918b017413f92925d7e57a3675dabecf8e635fefecf2be4bfc9dff1e5bd240979a16ce421e7e2dcfc34610020a4c23000105261180008a9300c008454180600422a0c03002115860180900ac300404885d108006b434e30bcc10421a458fc26342101604d972fbf3ce993d46ab599d68e20a48ac816708101e079790208dad0526adb593b82902a82f1373f30003c2d27b935f0248f0e0d0d6d67ed0c42aa848c39a9a41c78f3be5902c0c581014074a2b54308a9121873f342c7ad2ce396e5a49f5208006ba039d64e21a40a60cc1ee80293f75e435db2dfbad3a93db756968ef275809038c8d8f2777e8dc12f3b54edb2e9c4f8c35285130e3f56c87af2d3fafbfbf7e6274242c29031e4b3fdf343dff9b71aa7f76cfe115ff441e5c414459542276c0e008383833be3ff589dc045511415595236aea7a767a72d1e35a47494f5855114155f52ae7d9b770dfc87e9d02bd6174751543c49615749fc8f9a70c07f3cc3fa02298a8aa77167eebad60614cbac2f92a2287d61f0dfdf76c316fcc5192eeddd67288a9ab856765cda5d367244b47823818ba6282a507e2ccfed68f00fd368348e7399ec4e4b5115968ce1bf9ed0e01f06fff018685d024650143541e1cebf1ec7e32735f887c1490e75cc095054d9243b354fecb17f2cf03af0019cec81048ca228aa8d24dbafbe97a37c3e906f883291c0da408aa246954ce73fb3eda7be1006060676c78f5ce0386b90a29290cced87ce1f73865f0c6431017ef4245cc07d8e5f0b28aa686d9425bd389eb0cdc29ea2a9d56abbe2628e921243d02dd093bedab046e1028aaab2a4d0ce0b7e4cdde217ed0db9e1621e841042082184104208218410420821841042082184104208218410420821841042082184104208c98eff07314bf0cd798418320000000049454e44ae426082, NULL);
INSERT INTO `crew` (`id`, `firstname`, `middlename`, `lastname`, `father_name`, `mother_name`, `nationality`, `birthdate`, `rank`, `vessel_type`, `final_school`, `martial_status`, `waistline`, `uniform_size`, `blood_type`, `safeshoe`, `health_status`, `bank_info`, `tel1`, `tel2`, `address`, `city`, `english_level`, `application_date`, `passportno`, `passportdate`, `passportexpiredate`, `sbookno`, `sbookdate`, `sbookexpire`, `lincece`, `licencedate`, `licen_expire`, `image`, `file_destination`) VALUES
(61, 'May', 'Aung', 'Moe', '<NAME>', '<NAME>', 'Myanmar', '5/12/2002', 'Junior Engineer', 1, 'UCSY', '', '12', 'XS', 'A', '', '', '', '09-77777777', '09-77777777', '', 'Yangon', 'Intermediate', '5/12/2012', '0888888888', '5/12/2012', '5/12/2032', '99999', '5/12/2012', '5/12/2032', '888888887', '5/12/2012', '5/12/2032', 0xffd8ffe000104a4649460001010000d800d80000ffe101b64578696600004d4d002a000000080005011a0005000000010000004a011b0005000000010000005201280003000000010002000001320002000000140000005a87690004000000010000006e00000000000000d800000001000000d800000001323032313a30373a31362031373a34313a353200000d900300020000001400000110900400020000001400000124901000020000000700000138901100020000000700000140901200020000000700000148927c00070000003e0000015092860007000000200000018e929000020000000437313800929100020000000437313800929200020000000437313800a00100030000000100010000a002000400000001000001a5a003000400000001000001af00000000323032313a30373a31362031373a34313a353200323032313a30373a31362031373a34313a3532002b30363a333000002b30363a333000002b30363a333000004170706c6520694f530000014d4d0001001600020000001d0000002000000000415a552f7076613174736b64624b32576373395469586d5368417a76000041534349490000007b7b302c2031302e37357d2c207b3432302c203432307d7dffc000110801af01a503012200021101031101ffc4001f0000010501010101010100000000000000000102030405060708090a0bffc400b5100002010303020403050504040000017d01020300041105122131410613516107227114328191a1082342b1c11552d1f02433627282090a161718191a25262728292a3435363738393a434445464748494a535455565758595a636465666768696a737475767778797a838485868788898a92939495969798999aa2a3a4a5a6a7a8a9aab2b3b4b5b6b7b8b9bac2c3c4c5c6c7c8c9cad2d3d4d5d6d7d8d9dae1e2e3e4e5e6e7e8e9eaf1f2f3f4f5f6f7f8f9faffc4001f0100030101010101010101010000000000000102030405060708090a0bffc400b51100020102040403040705040400010277000102031104052131061241510761711322328108144291a1b1c109233352f0156272d10a162434e125f11718191a262728292a35363738393a434445464748494a535455565758595a636465666768696a737475767778797a82838485868788898a92939495969798999aa2a3a4a5a6a7a8a9aab2b3b4b5b6b7b8b9bac2c3c4c5c6c7c8c9cad2d3d4d5d6d7d8d9dae2e3e4e5e6e7e8e9eaf2f3f4f5f6f7f8f9faffdb004300020202020202030202030403030304050404040405070505050505070807070707070708080808080808080a0a0a0a0a0a0b0b0b0b0b0d0d0d0d0d0d0d0d0d0dffdb004301020202030303060303060d0907090d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0dffdd0004001bffda000c03010002110311003f00fdfca28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28aab7d7d67a65a4b7fa84f1db5b40a5e496560a88a3b927814016ab92f1178e3c35e1705353bb53738f96d61fde5c364647c839507d5b6afbd7cebf107e3b4b7425b0f0c4af6362386bdc14b9940ff009e6a466253ea46fc76535f375dfc4ad32d64790bef91c96691db2ccc792493c927de803ebdd43e2febf7e4a68d65069f1118125c933cddb9daa5514f518cbfae7b57372f883c51a97fc7eeb97bc9ce20716c3918e3c9087f5ebcf5af9324f8c568ad84914558b5f8cd06e19914fe3401f56c50ea4dbda3d675546931b985fcfb8ede993bf3c5595baf1a69c449a77882f7e5e8b72c2e94fd7cd0dfe35e31e1cf8ada5deb2a4b20527df8af70d3b52b5bf895a360c1876a00bd69f177c51a3ed8fc45a5c5a844b9dd7166c62971ebe5b6e563f46515eb3e18f883e14f16b18348bd5fb52e736b30314f81d4846c1618e72b9033ce0f15e377b62b2296519af35d6fc3905c379a8be5ca8772bafcac187208239041a00fb8a8af96bc1df1a353d1aea2d17c779b8b777089a98c2b4408c012a2a80c33d5c608ea41eb5f4f5add5adf5bc779653477104ca1e396260e8ea7a15604820fa8a009e8a28a0028a28a0028a28a0028a28a0028a28a0028a28a0028a28a0028a28a0028a28a00ffd0fdfca28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28aa7a86a163a4d8cfa96a53a5b5adb21925964385551dcff009c934006a1a8596956536a3a8cc96f6d6e86496590e1554773fe724d7c6fe38f1b6b3f106e7cb8e37b5d1e17dd6f6c7877c74926c120b770a384ce393935378abc6d7ff12b530b087b6d06d1f36f6edc34ee3a4b28f5feeaf45faf22e58d8c6800da2803c13c41e12d46e217f2d493838c66be4ef1ae8dace932c8d34722804f3835fa9d0da40461941fc2b3755f05f87b5c81a1beb646dc319c73401f8bb73addcc4e55988c5429e22987f19fcebedaf8c3fb3344229754f0cc272013843d4fb8c57c01ace91a868979259de2323a36086183401e87a778cef2d240c9291f8d7d4bf0b3e37cb6b3c5697d2e50e0726be0113ba9ad6b0d626b4955d588208a00fdd8f0ff00886cb5ab349e0903ab8f5abd7f62b2a17415f9c1f06be32cda6cd159de4b98c903935fa1be1ef11d9eb36893c0e19580efeb401c4eb9a42dc46cacbcf359ff000ebe24ea1f0db5a4d2355779bc3f7326d9233c9b5663feb23c9e064e5d7b8c91cf5f55d434f49d0bc7cd78c78c7c3ad7303bc6bf3a8a00fbfa19a1b9863b8b791658a550f1c88432bab0c865238208e411d6a5af96ff0066cf1cdd6a36377e03d55d9ee3494f3eccb727eca582b267d23761b73d9801c2815f5250014514500145145001451450014514500145145001451450014514500145145007ffd1fdfca28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2800ae7fc47e2ad03c27642ff5fbc4b58d8958c1cb3c8c0676a22e598fd071dea6f1178834bf0b68b77afeb52f93676681e4600b1e4855500756662140ee48af822f3c41ad78e3596f127889f32bfcb6f6ebfeaada2ce4220fe67a93c9a00fa3e5f8df7178ec344d1710e4ec9af27d8cc31c1f2911b1cffb7d3ebc79df8defbc57f10e382d6fef20b2b285b78b5b78dca48f9e19cb3e58a8e9d875c66b9db23802ba4b79318a00e62cfc37e28d382ad95c5a4a83f864564c8fc3756e477be21b3245e692d2228c97b6955f3ff017d86ba5866c56a45329eb401cbdbf8a74b2e22b976b490f3b2e51a13f9b000fe06ba78aee2914323020f420f06a7920b3ba8cc73c6aeac3043004107dab0a4f08d82b9974c924b172727c86daa7b728729ff8ed006e990329520107a83c8af9bfe307c05f0ff8faca5bcd3635b4d4c292aca30ae7d08af6578bc45a6ffac54be886394fddcbf91254fe6b4906bb693bf90e5a198ffcb294147fc01ebf8645007e28f8bfc1bacf837569748d6edda09636201238603b83deb906423a735fb1df163e17685f1334592d6e9163be8d49b7b903e656ec0fa8afc9ff0018784758f056b93e87acc4639a16382470ebd981ee0d0061e99a9cda7ceb2231001afb2be127c629f4e68adee252d1f008273c57c4c541abda76a771a74a1e363807f2a00fdc8f0c78c2c35bb54961915b700719ae86fec21bd8cb478ce2bf2abe1e7c5fb9d2258d4ce42f195278afbb3c11f16f4ad6e14579d44b81904d006ae9eafe00f1ee9be2f8cba59a4a61bf58ff00e7de6f95c918390a487c63f878c1e6bef14759143a10cac01041c820f420d7c85a85f693a8da30b82a5594e7e87d6bd4be0af8c63d774dbdf0cf9c2e24f0f7911acb9c936f3f99e4ab7ba08d973dd40279cd007b6d145140051451400514514005145140051451400514514005145140051451401fffd2fdfca28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28ac4f12ebb6be18f0f6a5e22bdc1874eb596e594b6ddfe5a960809cf2e4051c1c92383401f1efed01e357f1078ba1f0469f337f67e8c0497c118ec96ee40182b6321844b8c7a3b302322b82d3b0aa0570ba1c57da9cd3eaf7b96b9d42792e666e4e64958bb1cb124e493d493ef5e9363a7c981c5006edb3e315b70cb5976f61271d6b523b3947ad0069c7355d4b8c77ac7104cb4efdf2f553401d025de3bd5a4bec77ae48dc3af5c8a4fb5e2803b75bf53c13552f6cb4dd4e231dd448e0fa8e9ee3d0fbd725f6e23bd28d4f6ff0015002dd687a9580dfa4dc79d18ff00961392dc7fb2ff00787e3babe7bf8c7f0fb4df893a49b69e2fb06bb6ca5ad5a518de47f06e1c329f63c57d151eb00704d457874ed5606b7bc8d2446ecc3f5f63401f88dab6977da26a13e97a944d0dcdb394911860822bd1be05fc3c5f8b1f163c3be049894b6bfb92f76c0138b5b6469e61905482c919507230c4639e2bec3f8dff00009bc5b6adad7861c36a76ebf2c721c19907f017ee40fba4f3d89f4f923e0af8aee7e0f7c71f0d788f5c88d97f64ea4b06a0b3a1cc36b74ad6d72db7ae56195d97d481401fa41f1dff00611f0f788adffb7be0aac1a06af1e3cdd36695d6c2e11571fbb3b5da194e07fb0c4f3b796afce1f14782be377c219b1e2bd1753d1d1338b8742f6c76bec3b6e232f0b7cc40e1cfde53d1973fd16c7224a8b2c4c1d1c0656539041e4104750689234951a29543a382acac32083c1041ea0d007f3a5a5fc65f89f7d243a369d2cb7d3dc308a182288cb348c7a2a2a82cc4f6039afd9afd967e1a6bdf0fbe1c8bdf1a2347e27f10cdf6ed4627396b74195b783838ca27ceddc3c8cbc8515f40e9ba1689a3eefec8d3ed6c776777d9a048739c673b00cf41f90ad5a0028a28a0028a28a0028a28a0028a28a0028a28a0028a28a0028a28a0028a28a00fffd3fdfca28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2800af95bf68ef17c53db5b7c37b02e6eaede2bcbd656c225b296db1b60f2cee036d3c0500e39047bc78f3c67a6f80fc3573afea24129fbab687f8a7b8707646bf5c127d1413dabe11b27d535fd52e7c4bafc9e7ea17ee2495f000e0055503b0550140ec00a00d6d1f4c48624451d0015dbda5a800550b280002ba4b78fa5005a82018e95a91c0bdc5450ad68c6b4008b6b19ea283a7c4ddaaea0a987028030a5d1e361c562dce82792a2bb8a6b0045007945d695711e4ae7f1ae7ee05d419dca7f0af6c9618dc720561de6956f3020a8a00f18935164e0922a01adf967935dc6a9e1947525066bccf56d02eadf7347918fca8037e2f11a03866e2bc37e387c37d27e2068d26b3a72247ad5a266395460cc8bcf96feb9ede86ad6a1777d66c430200ee2b17fe1316809466c83c11da803ea1fd887e39378d7c1dff000abbc557007893c2d17956fe6b0f36ef4e8c8546c6065adf2b13772bb18e49635f76d7f3c1e2fd6f56f0578d6dbc77e07bf9f48d4924f316e2d5f632bf7cf66571c3ab02ac32181048afd81fd98ff68bd2fe3bf85596ff00c8b2f15694026a5628d812260017502924f92e4e08c931bfca7828ce01f4f514514005145140051451400514514005145140051451400514514005145140051451401fffd4fdfca28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a64b2c5044f34ceb1c71a96776215555464924f0001d4d3ebe51fda13e233ab7fc2b6d0a61e75c2e757600ee8a260af1c40f4cc8a72ffece07f11a00f2cf88be319be25f8c5e5b7661a2694cd6f6681c98e66566cdc6381990631e8a077cd59b0815142818c5727a4c30dac4914638515d85acaa31401d2db200056e402b9fb79856d4128a00db8855f8c5654528ad08e514017d6a5aae8e0d4e181a005a43d29690f4a0081fbd54939ab8f55241401993015cfde5b472039506ba394564ceb401e59aef862d2f15caaed639e6be73f167826ead4c9344a4e3272bd7f2afb06e901cd71baad9473a32328208a00fcc3f1cc37081967070a6b0fe1d78ff00c49f0c3c5fa7f8d3c2b706defac24dd8ea9344dc490c80f0c922e411dba8c30047d4ff0019bc01f69d1a7bfd3e3c49082cc1475039af885b8a00fe99be1ef8d74bf88de08d17c71a30296bacd9c774b1b1cb44ec31244c7001689c32311c12a71c57635f2f7ec75e10d7bc19f00b40d3fc448f05cde35c6a096f2021e186ee42f1ab03f74b290e4762d83ce6bea1a0028a28a0028a28a0028a28a0028a28a0028a28a0028a28a0028a28a0028a28a00fffd5fdfca28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a280303c55e21b4f09f86b53f12df297874cb596e5901c17f2d490809e0173851ee6bf2c61d7af359d46ef5fd524f32f7519dee676e837c84b100738519c01d8002bed7fdabb5d9349f851269f6f318a5d66fedacb0bf79a304cce382085222c31e841da7ad7c23a469d33a2e73d05007a0da6a3d39ae96d752e9cd72963a3b9c706ba9b5d19f8e0d0074b6da88e39adfb7bf1c735cddbe8ee31c1ada874a946319a00e920bd07bd6b45740f7ae662d3a75e84d68476b70b401d2c7700d5b59bdeb9c8d2e17b55a57957a83401d009a9de77ad62ace475a944f401a6645350b906a9996a332fbd003a5159732d5a794d5292507ad0064dc2f5ae76ee2ce6ba698a9ac5b95073401e7babd92cd13a32860c0820f706be6af83df07f4693f6a3f0de95adc05f45b8b8b8d4ad62c808d716513dca42c0821943c7929fc483078cd7d65791641af33d6ad66d3755d3bc476036dde937905fdbb648db35bb875ce08255b1b5973865254f04d007ea9d15caf827c5963e38f0bd8789f4f531c7791e5a22773452a92b24648c64ab02338191cf7aeaa800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2803fffd6fdfca28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28aab7d7d69a6595c6a57f2ac36d6913cf34adf75238d4b331f600126803e31fdac354fb76afe1af09a00442b2ea537273f39f2a2e3a7f0c9c9cfb639cf91691a72a4480af6aa1aa6bd79e3ff0019ea3e2dbc56517937ee236ff9656e9f2c51f1c64201b88e0b64f7aee6c6dc281c5005eb3b4518f96ba3b6b7518e2aadb47d2b2354f887f0fbc3330b7f12789f46d2a5e7e4bed42deddb83b4f1248a786e0fbf1401de430a8ed5a9144be95f395ffed55fb3ee8efe5ddf8c6d643ff4e905cde0eddede1907f10fd7d0e38abffdba3e07d814168badea5bb1936b62176e73d7cf921e98ed9ea3df001f694712fa55b5893d2be0497fe0a05f0cc2c66c7c31e247ce778b88ed21dbd318d973283df3d31efdb999ff00e0a1d68a53ec5e00b9941ceff375448b1d318db6ef9cf39e98f7cf001fa50218c8e94efb3c5e95f99927fc144aec48041f0e43c657259f5cd8dbb3d302c58631df3f85387fc144afbfe89c2ffe0fbffb82803f4bcd9c46a16b043d2bf35cff00c144ef87fcd385ff00c1efff00705245ff000514bc2e45c7c39089b7829ae6f25bd306c178c679cfe1401fa3ef62c3ee9aa725bccbef5f9f56ff00f0511b264637de02ba89f710045a9a4a0af624b5ba107db07eb5d0daff00c141fe1db283aa7857c410feef245b0b59fe7e3e51be7872bd7e6e3e9cf001f6ac8245ea2b3e573d0d7cb16ffb777c10bb6db716daed9fce1733d8c640071f3feea790ed19ff007b83c74cf4d07ed73fb396a4eb0af8ac43232862b71a7df4414904e0bb5b88f23041c3119c73c8c807b7cafe959734a4572b6df163e10eb017fb33c6ba04aef9c46352b75938cf58da40e3a13c8e833d2ba69a1678d66859648dd432b29cab29e41047041a00cb9e5535cdea1024f1b21c735b1741973b8115cfdcc84671401defc04f1cb7837c572784357b8f2f49d61bfd1f79f921bd380b8f4128f94ffb417debef1afca2d6156e63cf292272ac0e0823a60f6afbff00e0b7c445f885e108ee2ed87f6b69c45aea0a3bb81f24a3da55e7b7cdb80e05007af5145140051451400514514005145140051451400514514005145140051451401fffd7fdfca28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28af3af8a9f167e1efc14f065e78ffe26eb36fa268b658569a624bcb2b025218635cbcd33853b634058804e3009001e8b5f13fed8bf1e3c13f0ebc3d6be09d6b5fb2d32eb59632dd24930137d960f9f62c6b9919a560301412554ae3e619fc9bf8edff0548f8cbf166e6f3c3ff03ed5be1ff8599de35d49f6cbaedd439c063202d15a165e4ac3ba443f76635f9eec03dddc6b3ae5ebdd5f5db996eaf6f6632cf3c8792f2cae4bbb13d4b126803f4ab52fdb4fc1da2402dfc0fa05f6b93f1fbfbc61a75ae197a8dc259d8a9e0ab4280f66af1ed6ff006bdf8e9af055b0beb0f0fc62328cba6592b33eec6497bb370411c80536e01f5c11f193f8c7c2f64e21fb509e5242aa420c8cc4f000da0e493dabd4fc3be0cf8c7e2d30ff00c223f0e35eba8ee3fd55c5ec1fd9f6ce3d44d74638f6fbeec7e46803775af1af8f3c588b1789fc49abeab12b6f58aeef6696256273958cb6c073d300638038031876fa646a311c407d057b3697fb287ed3bab796d3c5e17f0f23b95717da83cf2228fe2c5ac52a9cf601baf5c75af47d2ff618f1fdd98dbc4ff15ecec7284cb0e97a499f0fd82c934d1123be4a67b63b800f9a62d39f1c2e3f4aba960a3efb22fb961fe35f5f58fec09e02655ff8493e2578b6f5bf8fec2d6d64adf2f60d14f8f9b9efc71ef5d9587ec2bfb355a973a9ff00c249ad6ece3eddabc8bb738e9f67583d3be7a9f6c007c2862d3e2ff5d796e9fef480546d79e1d87fd6eab649eb999457e8adbfec63fb225b98dbfe104699d060bcdabea6fb8e304b2fdb3664f5fbb8cf402ba3d3ff0065afd9574cc7d9be1c69526d7120fb4b4d75c8c75f3a4932bc7dd3c7b726803f30ceb9e0d4e1f5db01ff006d93ff008aa6ff00c243e06efafe9e3fedb27ff155fabdff000a0bf669edf0c7c2ff00f82e87ff0088abb69f047f673b2dfe47c2ff0008b6fc67ced1ed27e99e9e644d8ebce319efd2803f2547883c0edc2ebfa79ffb6e9ffc5548357f08c9c47ae58367b79e9fe35fae5ff0a7ff0067beff000b7c17ff00820b0ffe47ac4ff8503fb36ffd132f0c7fe0ba1ffe26803f2b166d125ff55a9d9b7d2653530b3b694662b885ff00dd706bf506eff674fd996f3679df0d3c3ebb338f26d4439ce3af97b73d38ce71f8d72d7bfb237eca17c59a6f87f0464b993fd1b50d42db939e9e4dd26073f7471edc0a00fce27d31ff00876b7d18552974e94754cfeb5fa1d73fb19fecc926ff00ecfd1356d2f76ddbf64d6eff00e4c633b7cd9e5eb8e739ebc638c72d7dfb10fc237679748f17f8db4c63f7231a8dbdc42bf367eecd6aee78e07cfd81e79c807c13369e3f8e31f88a8ad9af34c945c699713d94aa7707b795e2607839054839ca8fc87a57d9379fb115daecfec5f8b37b0818dc2ff4582ef3d73ca4f6e476f5e87d78f37d6ff649f8f1a7069742d7fc2be208d031d931b9d3ee1c83c055f2e68b24727748a074c9eb401c5e93f1fbe36f87d94d9f8befee1176864d4365f87556ce09b9591867a12a4363bf4af48d27f6cbf88562b1a788f44d2f5854c86781a4b09a4183825bf7f1839c1e2200818c02723c735df82dfb437876379f51f0136a16f1852d368f7f6d78c49ecb00759c91df11e3debc4b58f110d02e0d9f8b749d57c3d71b8298b54b29ad5c310180c48a0e76907e873401fa4ba37ed71f0d7590906bb0dfe8133b1426e21fb45be49f948960dec0118c97440a739e064fd6bfb2b7c50d22ff00e2d69f6be15d5ed751d2fc436d34339b795244dd1c52cd11601b28e1e228030dc0965c6738fc1c8f59d135100da5e43213d00619fcbad3eceeb51d0f54875ef0edfdd695aa5ab0682ff4eb892d2ee16520831cf0b24884100f0c391401fd97d15fcf37c0aff82a47c53f8737f6fa3fc79b793c73e1b6582dff00b4ed921b6d5ec5519b74cca91a477a4a9552ac6273b4319198b6efde0f871f133c05f177c2365e3bf86daddaebfa16a0b986eed58e370c6e8e4460b2452a670f1c8aae8786506803b9a28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2803ffd0fdfca28a2800a28a2800a28a2800a28a2800a28a2800a28a280395f1cf8d7c37f0e3c1dad78f7c6176b63a2e81653ea17d70416290c0a59b6a8cb3bb636a2282cec42a824815fc907ed79fb5debdfb4ffc44ff00849fc4c25b5d074adf0f87fc3914a5a1b2818f32ce41daf7537065750380a832aa2bf733fe0a97a07c41f88bf05b41f85bf0d25b67b9d63c496b2eb10c93c713269f6f04f223c818ef108b811b128a58b2a81d483f9a5f04bf61af0af826e20f117c4ab887c4dabc45648ecd108d360719ea1fe6b939e417545f54279a00f8cfe197c12f8e1f18a08aff00c3b631683a14bca6a57e4c30ba67930a856925ef8289b33c1615f72781bf616f867a42c579f102ff0050f175f6dfdec72ccd6963bba82b1c2c26e3a7cd3107ba8e95f6dc36f1c28b144a11100555518000e0000740055a5427b50072fe15f04782fc111793e0ed034dd157b9b2b58e176fbdf79d543363736324e326bb517370dfc67f3a8d2173d14fe556e3b499ba21a0060794f5635614b9eac6af45a45f49ca42c7e809fe957d340d4cff00cb093fef83fe140194b9f535328adc8bc33aac9d21618f55c7f3c56827843553d623f98ff1a00e6578c54a0e2bab1e0dd4ff00e799fc08ab03c15a89ff003ffd6a00e381a7eeaecc7822ff00dbf33fe1520f045f9feefe67fc280388dd484e6bbaff008422ff00fd9fccff008530f826ff00fd9fccff00850070c5aa33d2bb93e09bf1e9f99ff0a85fc17a881c0cfd0ff8d0070ec2a0615dbbf83753c6761fa6455393c23ab0e911fd3fc68038d607b13559c37ad7592f867554eb0b9fa0cff2aa32683a98eb049ff7c9ff000a00e649907426a8dec10dfdb49657f125cdbca36c914ca248dc7a32b0208fa8ae8e6d2ef22fbf130fa822b39ed651d54d007ce3e37fd98fe0878ecc93eabe17b5b2bc7c7fa5e979b09b233f31f236a3b7cc725d5b3c67a0c7ca7e33fd8535ad3d5eebe1678c2521598a586b6bb86dd99005c42b8cef18e620307ae57e6fd3078987507f2aaec9ea2803f037c6be1ef8a9f0c6536bf123c377367017318bb55125aca783f2cd1968db218746cf6201040facff00e09f7fb5c5b7ecedf15d74ed5b512bf0f3c5f3476faddbcf2388f4cb96c2c5a92272a366024e40c98793931ae3f4a756d1b4bd734f9f4ad6acedefec6e5764f6d7512cd0cabd70f1b82ac38e841afceef8cdfb06d86a9733788be0dddc5a44ec0bbe8d765cdabb756304f9768b3da36564c9e191462803fa928a58a7892781d648e450e8e8432b2b0c8208e0823a1a92be77fd93eef587fd9dbe1f693e289addbc41a4787b4ed3f558209a298dbdc5b42b16c93c9f90305419038cf42c3e63f445001451450014514500145145001451450014514500145145007fffd1fdfca28a2800a28a2800a28a2800a28ae73c45e2ef0d784add6ebc45a84564aff715b2d23ffb91a02edff0153401d1d3599514bb90aaa3249e0003b9af9b7c41f1e2ea4f361f096940478c25fea6fe4a67d5601f391dc1665fa57ce3e2cf1aaebaca7c79e2dfb5ac672b6b06d48811e91c602923d48cfbd007d71e2bf8f5e02f0dacb059dc9d62f633b441660b26ef7988f2f1ebb4b11e95f36f893e377c49f17836da42b6916ac781601c4c47fb53fdeebfdcd9ef9af169fe27fc39d107fc4bec5ef1c7f1cb803ebf37f415cfdefed1de482963676d001f772777f850077d07837c457d234b242c1e42599e56f9999b924f52493d735d15afc34d41803753c710ef804ff3c57ccfa97ed1de219432a5eac43b792a171fcebcfb52f8dfaddde7cdbf9e4fab9e7f0071401f7945e05f0fda8cdeea0991d732228fcb93fad4ad69f0dec07fa56a16fc7fd3524fe86bf352ebe285fca492ec79ea4d634df117517ce1cfe7401fa82fe2af85762b9fb44528ff00622df9fc6a9bfc5cf87362b8b68a4603a00aa9fcebf2d65f1cea527fcb423f3aa2de29d5a6fb8eedf419a4da5ab1a4de88fd4893e3e783a2388ec246f72ea3fad5097f68af0f47feab4e4ff81495f987fda5afcbf75273ff00012297fe2a397f824fc5c0fe66b9a78ec343e3a915f3474c303899fc14e4fe4cfd279bf697b44c8874fb61fef393fd2b327fda7651fea6ded53fe039feb5f989aaf8a2db4990c3a96a56f0ca3ac7e70771f55524d71b71f14f4388b059a698aff7233cfd37114d63283575240f055d3b3833f575bf6a0d447416a3fed9ff00f5eab3fed45ab8e8f6c3fed90ff1afc9c1f1674766c18aec0f5289fd24af52f0f30f136971eada6dcfee64257122156054e0823358d7ccf0b463cd52765f336a395e2aabe5a70bbf91fa10ff00b51eb7da7b71ff006c87f8d573fb526b9ceeba87db1181fd4d7c38341bc23e6ba03e8b9feb49ff0008fdcffcfd8ffbe3ff00af5c5feb265bff003f7f07fe475ffab998ff00cfafc57f99f708fda935b079bb8ffef95a947ed49ae678ba831ef183fd6be1aff847ae31ff001f7cff00b9ff00d7a4ff00847eebfe7ec7fdf1ff00d7a3fd64cb7fe7efe0ff00c87feade63ff003eff0015fe67ddc9fb526b5de6b63ff6cc7f8d5a5fda8b553d5ad8ff00db31fe35f031d06f7b5d291eea7fc6b8af16ebf65e0e30c7a9cef24b3a96448a32781c6492401f9d6d473cc0d5972d3a977e8ffc8c6ae478ea71e69d3b2f55fe67e9b27ed417e48dcb6a47fd73ff00ebd69c5fb4ee47ef2d2d1cfd0aff008d7e3fafc59d1f763cabb1ee5131ff00a32b62cfe2568372fb3ed861f7951947e6335ddf5ba3fcc71bc157fe567ebe43fb4a69d27faed3adff00e02e7fc2b4a3fda1fc3320fdee9c3fe0327f8d7e55697a94faba19347bb86ec0ebe4cea48fa8ce456b17f1145d525fc1f77f226b3fed0c2a7caea46fea8afecfc55b995395bd19fa9d17c77f054dfeb2ca54cfa3a9feb5a0bf147e19df605c2bae7fbf1871fa57e4ff00f6aebd0f2cb70bf553fe152a78b75584ed691c11d8d7442ac27f034ce79d29c3e34d1fac9fdbbf0aefd7fe3ee08f77f794c7fa8a7ff63f802fc7fa2ea36fcff766e7f5cd7e54c3e3cd523ff96a6b561f891a92757cfe35a199fa6f37c3dd2ee39d3efd493d3e657fe44560ddfc37d5e2e6078e51f8a9fe4457c0767f15f52b720a48e9eeac47f2aeeb4cf8f5afda0511ea37098f572dff00a166803eaeb4d27c65e19be5d4b49373697317dd9ad9f0d8ee32a7254f70460f715ecbe13fda27c57a028b1f19591d56251849c0f22e863a6ee36483b7456ee4b74af8bb4efda535b5da26b88a71dc4a8093f8f15d9da7ed0da7de8f2f53d3ade643d76b7f4231401fa6de12f8abe07f19a469a56a2915d4981f63bac437018e3e50a4e1cf23ee161ef5e8b5f941078dfe186b78f3525d3e46feef2a3f2c8af6af087c53f11e8cd17f60f89e0d6ac9142fd8f507f33e51d02be7cc5201c0c363a641000001f7ad15e13a0fc75d1268e38bc5969368f39215a6406e6cce470de620dc8091c865c2e47cc4648f6ab1d474fd52dc5de99730ddc0d8c4b048b221c807865247420fd0d005ca28a2800a28a2800a28a2800a28a2803fffd2fdfca28a2800a28a2800ac7d6bc41a27872d0df6b97b0d940338695802c47655fbcc7d94135cefc46f885e1ef861e15b9f1678925296f0fc91c6bf7e699812b1afb9da4fb004d7e24fc54fda0bc59f10359b9d42feede389de410c28c42c313312235e7e55031c0e4e3924f2403f42be26fed73a469f34da6785a6312282a67081ee188ce4a862638c1e31b83363a853c0f8a3c43f1faf26b99aeed1552794967b99d8cf70c5b93966271cfa715f235eebd733b13bcfe758925dcb21e493401ed7ad7c56d6351919ae2f269b775dce71f974fd2b86b9f195ec990ae40ae10bb1ea69b401bf3ebf793757359af7f70fd58fe754a8a0094cf2b756a61763d49a6d733e32d5ce85e16d4f5453b5e1b76119c91891fe44e983f79874e6949d95d8e316da48cef147c42f0cf84d9adf51b8325e05dc2da11be4e7a64fdd5cf5f988e3919af07d5fe39f896e9dd749b7b7b18b3f2961e748071d4b6173d7f87bfe35e2b2cb24d23cd33b49248c59dd892ccc4e4924f2493d4d467a57935317396da1edd2c1538efab3f4bbe14a5d5ef81349d5b5a2b73a85ec6d712ccc8149123b14c0000501368f9401c67bd7a5e31c0ac1f0b597f66f86348d3ba7d96c2da1ff00bf712afa9f4f53585e38bdf15c7041a6784adb75c5e64497247cb0a74e32700fb9078ed5f97d475317899734b76f77b1fa5538d3c2e1d72c764b6449e2bf881e1ff09214bc944f778cadac441939e9bbfba3dcd7885ceb9f12be23b9874ab67b4b073d23ca47b4ff007a46c17fc07e15e91e19f849a4e9f28d53c45236aba8336f3bc9112b75ce3ab1ff007891ed5eb71c71c28228516345e02a8c003e82bad6270b84d28ae69777fa1ccf0f88c4eb59f2c7b2fd4f9cf49f80f33ed975ed4d509e5a3b74ddff008fb11ffa0d76b6ff0005fc1b0ffac17329efba4c0fc80af5aa2b9aa66f8a9bf8ade86f4f2bc3457c37f53cb64f839e066e56de653ed337f2af43d334cb1d1ac63d3b4e8c4504430aa3f9d5fa2b9aae32b558f2d495d1d14b0b4a9be6846cc28a28ae53a028a28a002b99f12f84744f1642916af196317dc743b5867a8cd74d45694ab4e9cb9e0ecc8a94a3523cb3574795afc1bf042ae3c99c9f53313fd2b3aebe07f8526522da7ba818f4258381f86057b2d15d71cd3149df9d9caf2ec33d390f97f51f82de26d264179e1ebf4ba68ce57ac12f1e9cb0cfe22ade93f13bc59e13b94d33c6f6324d08c2f9ac36ccbefbb9593f4fad7d2b54751d334fd5addad353b78ee627182ae33c1f43d47d41aec8e6eaa2e4c541497e272bcadd37cf86959fe054d13c41a3f88ad05e6917293a71b80237a13d997a835e55fb41696f7bf0ea7d4216293e937305dc6ca76b0cb792d83c7f0c84fe155f54f865a9f86ef0ebdf0f6e9e2913936721dc197ba827a83e8d93ee2bd11a2bdf17f822eecb56b536775a859cf6b2c4c3215dd0a6e0091c64e473f8f7a954e9d0a90c55095e29af54539ceb53961ab46d269fa33f3b34cf887e34d242ada6ad70c89d12622750300600903606070074ed5eade1bf8eb32b8b7f14da2b21381716830cbfef46c483ee548c0fe135f3b9564255c15653820f0411eb495fa253af38eccf82a986a73dd1fa11a46b7a5ebd66b7fa3dca5cc0dfc487907d194e194fb100d6b0771d09af893e187889fc3de2db4692564b4bc6fb3dc283f2b6fc842474f95c839ea067d6bed9af530f5bda46fd4f171343d94add0996e255e86acc7a85c27463f9d50a2b739ce8edfc457b0e36c8c3f1ae86d3c71a842412e78f7af3ba2803e8cf0ffc67d7b4b71e55e4a17bab36f53f81cd7baf82bf68b9345d463d4a156b3b8dcbbe5b2731aca14e76cb113b24527a839f6c1e6be010ec2ad457b3467e5622803f79be1afed47e0df145b4567aecff0066ba8e31bee40f91caaf2cf181ba32de8a1973dd7815f5347247346b342cae8ea19594e5594f208238208afe65f4cf145f584ab2452b2329c8209047e22bedafd9d3f6a8bff056bf0697e29b896e341bbfdd4eb927c976231322670181fbd8c6e04e41382003f6468aad67796ba85a417f632a4f6d731a4d0cb19dc9247200caca4704302083e9566800a28a2800a28a2803ffd3fdfca28a2800a28a2803e14ff82843cd1fc14d2a488310be25b4de40e02fd92f064fb6ec75ef8afc569666918926bfa73f16785742f1bf86f50f09f89ad85e699aa42d05cc2495dc879043290559480cac0e41008e457e167c77fd93fe237c1abcbad52ded65d73c2caeef0ea9691990c108e47db114130900e0b9fdd93d1b270003e57ce68a28a0028a28a0028a28a002be7ef8edaf086c6cbc39111bee1bed530e0911a65507b066c9ff0080fd6be81af863e226b5fdbde30d46f14e628e4f222f976fc90fc80e3af2413cf3cf6e83931953969dbb9db81a7cd52fd8e2aaf6996c97ba9d9d9c9f76e2e2289be8ec01f4f5aa35d4f816259fc71e1d81c90b26ad64a71d70d3a0af1eacb960d9ef538de691fa9f4b938c52515f955cfd2428a8e59a282332cceb1a2f2598e00fc4d783f8abf68df875e1b79adadae1f55b9832192d4029b8718de480483d719c574e1b095abcb968c5b7e473e23154682e6ad24bd4f7ca2be33ff86b98ccde6af85ae4d8a901a51382d93edb36fd3e6aef7c33fb507c39d7265b6d4ccfa34aedb41ba5cc79f774c851eed8aeeab90e3e9c79a54dfcb5fc8e1a79e60672e58d45f3bafccfa3e8aad69796b7f6e977652a4f0c832b246c1948f622acd792d35a33d54d3d50514514861451450014514500145607887c51e1ff000a58b6a5e21be86c6dd7f8a56c67d80ea49ec00af9cf5afdacfc11652b45a3585eea4a01c4a008533db87f9bf4aeec2e5b8ac4eb420dafc3ef38b1598e1b0fa569a4ff001fb8faae8af8e6d7f6b6b44b8f2b5af0cdcdaa1618759431da7b95655e7e84d7b9783fe337807c6b37d8f4bd4162bcc67ecd71fbb738ebb7b301ec6b5c4e4f8ca0b9aa5376fbff00233c3e6d83aef969d457fbbf33d5297248e690107914579b73d13f2b7c6963fd99e30d6f4f08116df51ba8d557950a246db8f6c62b99af56f8dd66d65f1435c420012c90ccb839c89224627f3cff00faabca6bf4fc2cf9e8c27dd2fc8fce7130e4ad28f66c5562a43292083904750457de5e0ad6cf887c2da76aaec5a59210b313d4cb1fc8e71db2ca48f635f0657d19f01b5b3bf50f0f4ac48205dc2091818c24800eb93953e9c7e7e960e7cb5397b9e663e9f353e6ec7d21451457ac7881451450014514500282455bb7b8789c6d355a38de5758a252eee42aaa8c924f00003a935fa41fb2f7ec59adeb3aa5878fbe3069e2d344880b8b5d16e4117178ff00c06e63e3cb8470c51be67e0328527201fa5df05c4a3e0ef8104e19641e19d1f78604306fb1c59c83ce73d6bd2e8a2800a28a2800a28a2803ffd4fdfca28a2800a28a2800a8a7820ba824b5b98d26866468e48e450c8e8c30caca78208e083c1152d1401f0f7c66fd863e1b7c459eef5ff074afe13d7ae5de690c2a66d3ee2572598c96e4831963c6e89954724c6c6bf3a3e26fec79f1bfe1b3dd5d7f639f106916e0b8d434726e0797eaf0605c2151cb931945e70e4026bf7e28a00fe5a27827b59e4b6b98de19a1768e48e452ae8ea70caca704107820f20d455fd2878e3e0d7c2cf89219bc6fe18d3b5499c6d374f088eef1b4a605c47b26002f4c3f040239008f907c67ff0004ebf865ac319bc15aeea5e1d91bfe59ceaba8dbaf23eeab1865e9b87329e483d88600fc6da2beedf13ffc13dfe3668e249740bbd1b5e89412890dcbdb5c310b9c159e3489496caafef48e84ed1d3e75f157ecf7f1b7c16d27fc243e0bd5e28e2fbf3c16ed796cb9214667b7f362192401f3727a5007ce1e39d6ff00e11ef0a6a3a9ab6d956131c241c1f365f9108f7527771d857c1f5f4a7c7dd5e483ec1e18f991f735d5c230c11b731a03dfaefc8f503f0f9aebc9c6cef5397b1ed6029f2d3e6ee15d97c39111f883e1b1312abfdab66411fde132ed1dfab60571b5d6fc3fff0091ff00c35ff618b0ff00d1e95e7e23f852f467a743f8b1f547ea5d56bbba82cade4bab96091c60b124e071566b0352f02ebdf13b55d2fc01a1ccb6a75a9de09ae5c12905bc71b4b2be3a16d884283debf35c2d075aac692eacfd03135952a52a8fa23c4fc37e0cf899fb5c78bee7c33e00ba3a4f8374e93cbd575d604c03fe99c40106691bb2a9c6396603afb1fc44f859f0b7f67d9b42f83ff05fc3907887e246bf35bc2358d5523bdbd8a59d8471185641e540eeec026c55032092c5735fa99e00f007853e177842c3c13e0ab14d3f4ad362d91c6a06e763cbcb23606f9246f99d8f249afc50f8e7e33f10697f1dfc63e37d36e64b6d5bc3f791cda6cca017b692db6cd132ee047c921dc3208afd56ad3865f84e4a0bb2fbfa9f957d6278ec4ba955f9ff00c03d1bf695fd8dfe2efece1f0f17e30fc419ac7c516c2e2083517d3ef25966b192e5b6c6d2f9f0c40c65cac798cb61d80c6dc357c0f07897c13e379069daa5b359dcca488a4988906e618c093aa93f9138ee057bc7ed1bff000517f8f3fb4c7c37b7f85de33b5d0b4ad23cf86e6fce8f6d3c32ea12dbb168c4c66b899446adb5f622ae6450d9c6147c12090723822b4964f49b738ca4a5deece78e635168d26bb58fae3c1fad78dbe11de4f3e99e6eafa0c04cd7ba71c9786dff008a584e49da8396381b7a918dc47dd1e1cf10e93e2ad16d75fd127171677681e371d47aab0ecca7820f20d7cfbf0024babcd63c07adce37cb35c4304e1c0613c2ede5c88e0f0cb2264303c106be88f885f06a5fd9ebe2824fe1788afc3df1cbb3db400e574ad582976800ed14aa098bd00da7ee827e5b34cb3eb38596292fde41b4fcedfa9f5b94664e862238693f724b4f2bfe86ad14515f0e7db851451400579a7c4cf89161f0f3498e4f25afb56bf7f234dd3e205a5b89988030ab96da0919c0c92401c915e8b717115adbc9733b6d8e242ec4f60a326adfc23f83176fe0cf12fed37f106c98eb97da75c3784ed27e469ba6989bcaba54fe19e607721eaaa72396cd7bdc3f952c6d7fde7c11dffc8f0f3dcd1e0e87b9f14b6ff33e45f82dfb39fc5afdadbe2b5c787af66b692facede5bbbbfb6ced1e9da5c1138421bc90e647dee88ab186cb1f9be5562b8ffb46fc3bd53f64cf890df0bbc67a5433dcbd8dbea16b7ba7ce3ecb7765333a249182a8eb89239236574521d188054ab368fc35fda7fe22feca5ae59f8ffe1e45617b73aac77367a8daea91c935b5cc123a484308a489d5c3a2b2bab020820e54b29f9e3f68efda2fe217ed41f1264f89bf11cd9c77a2ce1d3ad2d34f88c3696767017758620ed248419249246691d98bbb6085daabf7785c1d1c552e69a6926d249d9249dba1f9f62715568d4b2776f76f5773d1bc0de3189ae06ade0ab8f2aeadc879b4ebc459a1954750f13e52453d3a57dc9a47ecbbf073f6a3f00c7e39f869147f0e7c7160ccb771e9c0ff00679ba018857b6040851dbeeb42176aff00030c0afc8df005edcd8f8bb4d92d4905e658d80fe256e0835fb5bfb144b75a5fc40f11e93193f65bab38a631ff000ac9b882df52140aba10787c4fd59bbc24aeafba14e5eda83ae95a517a9f2d783bc41e38f879e2c9be117c66b6934ed7edb8b779b062bc8812165824fbb223019054f623008207d04082010720f435f677ed21f02348f8d5e10468a38e1f13e825af343bedb9649872d03f768a603691d9b0c391cfc2de1b92f25d12ce4bf89a19de15678dbaa311caf3cf06be338a32c861ab2a94d5948fb7e19cca789a2e9d477713e1ff00da46cd6d7e23f9e0106f34fb7989273920bc591e9c478af03afa7ff6a3b429e26d16ff00031358bc39c0cfeea42dd7affcb4af982bdeca65cd84a6fcbf23c9cce3cb8a9af30aebbc07ac9d07c5ba6ea24858c4c2394919fddcbf237a740735c8d15e8a972b52479d28a92699fa3c47a536a8fc388b5df1e681a5cfa2595d6ad7b716e9e6259c0f3c8d2a29127ca8a4f5463d3b1ec2be9bf0dfec95fb4378a144967e0cbdb38ce72fa9345a791800fdcb978e4e72070a79c8ec71efa775747cd4a366d33e72a2bf473c27ff0004e3f1edf387f1a78a34bd262cfdcb08a5bf9481d8ef16e8a4f6219b1d71dabeadf07fec17f01fc344cbac41a8f89252723fb46eb646a3046152d961c8e41f98b1c80463a5311f89da1787f5df146a90e89e1bd3ee753d42e0ed8adad2269a573eca809c0ee7a0ef5f69fc36fd813e2df8b7ecf7fe339ad7c27a7bbfef239c9b8d4360eeb047fbb19e9f3caac3aed35fb1fe1af08f857c1961fd97e11d1ec745b4277186c2de3b7466c637308d57737ab1c93eb5d15007ceff0006ff00661f859f05a08ee344b0fed3d6872fac6a2a92dd06206443850b0a75c0401b1c33375afa228a2800a28a2800a28a2800a28a2803ffd5fdfca28a2800a28a2800a28a2800a28a2800a28a2800a28af29f8e7f1022f855f06fc6bf116495a27f0fe877d7b03220918dcc713790a14abae5a628a3702a3396f97349bb2b8d2bbb23f953fdb9fe2a37c5efda97c79e248a5596c2c3517d134f288114dae95fe8cac3058b091d1e40cc7277f451845f92d559d82a8c93c002a573717523dc4a5e592462ceec4b33331c9249e4927a9aed340d1c41b6eee57321fbaa7f847f8d781395e4e4cfa5847962a28a3a6f846fef705c1407b77ae86cbc2b73a0788f49bf9326182fada5933c10a922927f21debd374e215530315278a778691d002769201e848ce2b09bba713a6114bdeec7db35a9a52eaf0ddc37fa4accb3dbbac914b103957439041f635d7fc3ff0007a789dd6fee4e2c8152bc7faccf3f957d93e10f04f8791521688600033815f9ee1b0729da57b1f7388c5461eedae45f0e3c7ede2ad3a3b5d6e0363ab46111d64c2a5c1381be3e832c7aa7504f1915f99dfb62fc26d47c1df14ee7c5d35abff6278b23c49281955b8030c0f61918007b0f515fb53a77c3bf0dc88aca983c104000835b1e28f859e19f1cf8726f0af8b225d534d9c61a3b940cea7fbc927de0e3b1391ea08e2beee9e3d57c3fd5f14f5fe6ff0033e12be5ca9d7f6d85dbf97fc8fe3efc59f0bbc47a15e3c9656b25e58c8c4c52c2a5f0a7a06c0e08ad6f873f03fc73f107578ad2d74f9aded370335c4c851553be32393ed5fbefaefec09aee97a8c93781f5bb7934e2ecc96d79b9a54538c286c2838e4649edef81dff817f64cf1869243ebdab5adb43c6e8ec62f32e48ce080642b12e477dc71e9dab659a62b93d9ae56fbdedf8339d65787e6e7936976b5ff0023e2df80ff000709f1de89a55a44c34ef0bac7713c9d02bc63f74a4e305998648f406bf45fe20f84f47f19f83f50d0359f2a381e2f3639e5036db4d0fcf1cd93d3cb60093c71907826bdab43f875a2783f46fec8f0be99e52fcccf25c48a6496538f9e4604972dc93c8ec06074e0bc51f0daefc461a2d6ae556cf20fd922f963623fbd8c96f5c3122ad62e86170ce95f9e4ef7ecefe61f53ad89c42a8bdc8adbbe9e5ff0c7e6bf857c25aaf89ee628ade26588f2f2638c0eb8f535f5df843f67db778e369a1cb9e77b0e41efc9ec6bd8348f04699a3b25bd842115782718cd7b66856e90aa83c62be3b0d828437d59f6388c6ce5f0e8781dcfecfb01b621923031c918c9af01f1c7c043691bcd6111858676ed1c7e23be49fcabf4ae631987191d2bccbc4560972aebd735d55f0d4e4acd1cd4717513bdcfc9cd13c0a75cf1869de0ef10e2d6daf6e44772643b5648932ef1ab71f34a17cb5efb9857e84ebba0596b3e1cbdf0db22c56b756925a6c8c05091ba14c281c0c0e063a554d53e17e85e243b2fa15f301cee233cfafd7debd0bc2fe0cd57458e3b4f35350b58c058c4a712a281c00fd481fed67d322bd3e1ec452c1a9539addeff00a33cbe20c3d4c638d4a6f65b7ea8fe6dbe2a7c24d534bd4756f871ad27d9750d36e5e5b29181d8e849d8412065597bfe35f23dff0081bc59a6dd1b3b8d32e3786da0a46595bdc103915fd6b7c65fd9b7c0df1934c846b7a7cf69ac5ba116da95a188c90923a1dcc9e6267b1c7e0322be478bf618f887a3ea0d1e9fabd85fda0398a491191f68e81c1c00dfeee47bfa7a9f58961a527866a506ef66ecd33c658455d255d38c975b5d33f217e037ece9e29bdbd8fc67e24b392d2ced01782290157661d188c702bf607f655f86b7fa25beade3cbf81a24d44082d99b80d044725b07b6e0483e848ed5f45780ff0065db8b18e34f1d5fc3776cbcb5959ee8e376078dec46e65f5008cfad7d1379e09b09acd74f798c7671aec4b685162855060050ab8ca8c70189ae7a58e6aabc4d7d65b24ba7abff002b9db53011f64b0f4345d5bebe8bfe18f863e307c49d45ada5f0cf841263bf2b777d10f9766398e223939fe2618e3819ce47c852c32c0db264646f461835fac7ac7c3af0cc1131118e07f7457ce7e34f87da05f2491aa6d3ce0e3a57cce6d1ad8baaead497a2e88fa6cabd86169aa54e3eafab3f1c3f6a2d3dae5bc353c233216bc888f507c920f5e31cf6ef5e096ff0faea6b14b9cb65bbe38cd7d97fb51f872e3c3e9a3c3336556f64119c7de578c9ce7db6feb5e67e1d3e678697fd890feb9af672794a3838c5f4bfe6cf3334829e2e4d754bf23e5bd53c337da682e54ba0ebc722b9bafa67c471295e4020d7cf7ad5badb6a534718daa48603ea3fc6bd74eeae791256763fa3bff823f78f53c41fb3e6bbe05931f68f09ebf2b280b83f65d4a359a32484504f9a930e59db03070bb457eb457f3b9ff0465f172d87c59f1f781de4541ad787edb52552c4177d2ee446001f75885bd63cfcc0038e3763fa23af6f0b2bd247818c8daab0a28a2ba0e50a28a2800a28a2800a28a2800a28a2800a28a2803fffd6fdfca28a2800a28a2800a28a2800a28a2800a28a2800afcaff00f82b3f8e134bf80ba2fc3482668eebc69ae44654590206b0d280b898940c1a402e1adb8da501209218267f542bf9f6ff0082aa78cdf5df8fbe1ef0544d235b7863c3c92b2b336c5bbd4a677936a93b46618a0cb01963c1fba2b9f152e5a4ceac1c39aaa3f31ecb43b0b6d3a42b183b0704fae0d654439fc6bad3f2e9b383dc1fe55cac2335e1a3e866ad63aed3dbe45ad2f100dd123faa83f98158da7b7eefe95bbab0f334f85fb818fc89a896e6b0f85a3f55be09bacdf0efc33741b734fa65a4d23704991e252d9c1c6ecf07debea0f0fcc5194d7c6bfb31dfb5f7c22d024924323c42e603b88ca886e6544538f440b8f6c57d77a2c982b5f2f28f2cdc7b33e814b9a0a5dd1f4268979945c9aeeeda6040af21d12e70abcd7a2d8dc640e6ba212396713aa07345568a50454e5862b730b6a579c800d721a936ec815d35cb120815cddd47d58d65366b03949e48ed4190f0696d75c503e4393ed5c2f8df5a36af1585b1ccf70fb107f33f402bb3f0a68bfe8a8641bdc80493eb58dddec8ded65766bb6b926dea6b2ae35a8de40a5b93eb5dbc9a18f2cfc95e3be38d3e7b08cdeda021e2f98aff00780ed4e7744c2cdd8eda05566122f7aec74e7e00af33f07eab0eaf6115c46d9dc2bd22d50ae08a7014d5b467531f22a5aa703f1568b0c66ba11ccd033002b1eee70aa79ab7713002b96d46eb00f353265c22721e23bc3b1866bc275c7de5bdf35ea7aedc160dcd791eacd92d9ae4a8ceca68fcf0fdb5ecc9f0b787efc63116b1e49fef7ef2de661f80d86be58f091dde1d947a38fe66beb6fdb4ce7c09a301ff0041e88ffe4add57c8fe0bf9b41b8f661fcebd8c07f03e679d8aff0078f9181e225fdd935e07e258246d443a2120c63247a826be85f10afee4d701676d05cdc4ab3286c05c7eb5e8c5fba79d517bc7d23ff04c8f145c7867f6c8f075b2f9821d720d534b9d50819492ce5993703d544b0c648c82319e7183fd5d57f233fb3e3597847f682f86fe2707ca5b1f14e90d3383b7103dd4692f3951fead9ba9c7af19afeb9abd7c04bdc68f13318da69f90514515dc79c14514500145145001451450014514500145145007ffd7fdfca28a2800a28a2800a28a2800a28a2800a28a2800afe55ff6c0f154be34fdaabe266ad248d20b4d6e5d2132bb42ae92ab65b40c9e0180f3fc472ddebfaa8afe3875ad75bc57e27d73c5722b236b7a9de6a2cad8dc0dd4cf2e0ed00646eedc57063e5eea47a59647df6cad7036e9d21ff65bf957296f5d55e7fc7838f63fcab97b5af251ed4fa1d0d81c715d14c3cdd2dbfd839fcc7ff5abea9fd933f675f08fc5e8efb5df1d5f5e5bd85adc0b5b7b7b26489a591555dd9dd95cec01c0014024e7e6e307ebaf881ff04f8f0bff0065cd75f0f75bbbb5778c958af76dcc2cc07ca32a11d32739397ebc0e30796a62a9a972b3a6961e6d731e13fb1dea4d3f80750b091c9365abcca8a7a2c72450b8c718c172fc64f3cf7afbaf487e457e79fecd7e1ef12fc35f1e78b7e1ef8c6ce4b0d40c1697b146e4ed9628de589a588fdd78d8b28dcbdc60f2085fbfb489795af131497b6958f5f0f77455cf61d266c05af41b0b9c639af2cd2e5e05775632f0288b2648f42b7b8e055e1364572f6d3f039ad359b8ad5331712ecb20ac1d425db1b1f6abcf2f1589a836f8c8a4d8e28f92bc4de2458be27d8c378d880a944cf4dc79fd6beaff000deb368215d847415f24fc5ff01ea3ab47fdaba42b7daed9b7a15eb5e3fa1fc6df13785dfec1ae40e5e2f94920ab71eb5c3edfd9cda99e8ba1ed609c0fd456d6e0da7915e45e3cd6ec23d3ee649594054624fd057c9537ed2e86122381f763d6bcef50f1bf8d7e26dcff006569b0c896f2901ca83f77dcfa5554c641ab4756453c0c93bbd11f4d7c0cd75efadee579f28dc3b47feeb1cd7d596af9515f397c30f09378674f82dd861828dc7d49afa02d5f0a2b6a37515730aed393713a349314f69b02b3165e29924dc5745ce6b0b7571806b8ed46e0906b5aee7ce79ae4efe5ebcd67266b1471dabc9906bcc3557e5abd075693835e61ab4bf7ab9e6ce8823e07fdb46690f85742814fc8dab6f231dd609403ebc0635f2bf8186742baff007b3fad7dfbf16be0978c7e3cea1a1f873c332436b6b69732dc5f5ddc64a44a502aed55f99dce5b0a303d58715eebe11fd81fe18783bc3653c47abea97f3ba665612470217f544542547a02edf535ea61311085049ee70e268c9d772e963f1f75f5fdcb579e69edb6f88f553fa11fe35f4ffed09f0ead3e1a78c2ebc3fa65cc977a73c6b71692cdb4cbe53654ac9b42aee565232000460e06703e5bb43b750faab0fd41fe95ea52929439a27995a2e33b33a98ef6e74bb98354b33b6e2ce54b888f231244c1d4e4107a81d083ef5fd8d585e45a858dbdfc21963b9892640d80c16450c3382467079e6bf8de9c6e888f6afeb23f678d657c43f013e1ceb41999aefc2ba33c858966127d9221202cc01621c105b1cf5af572e7ba3c7ccd69167b1d14515e99e405145140051451400514514005145140051451401fffd0fdfca28a2800a28a2800a28a2800a28a2800a28a280380f8afac2f877e16f8c7c40f2794ba6681aa5e193e5f905bdac926ef9fe5e36e7e6e3d78afe41b4c4db6a83d857f521fb6eeb8de1efd947e255fa4ed6e66d18d86f52012350963b429c9030e26d87b9078c9c57f2ef64310a8f6af2f307aa47b1962f764cb57c716647aab572d69d6ba8d43fe3d40fad278074ed3757f18e8ba5eb0c52c2ef50b686e486da7c97914380dd8952403dabccbda2db3d5946f2491f737ec79e22d5f47b4d42ce4b4ba5d35ae9658af3ca7fb379cea15a2f371b03e1010bbb2464e3835fafbe0cf12a6a164b6f2b6e0477ae1344d3fc3de2cf87d2784ad2de0b2896dc25a882358d2074e632aaa0001580381db8ef5c1f80353bcb1b97d3350530de594ad04f1939db24670707a11e847047238af9ba956f55cd2d19efc29da9723dd1d5f8dbc05a26b3e39b1bc2c96d7d1c1247e784cbfd9a6652c80f00ee78d4f7c6df7e75b57f85f7ba15badf69531bc800dccaf8dfebc1181c0ec47e3587f11ee6e74fd6745f12465cc1323594c7f851d4f991fbe5c17cffba2bdb3c21afc7aa69a2da66dd95ef529272698db928a6b63c8f4a9c1039f6fa11dabb9b29ba5721e2db11e1dd6c5da0c5b5d385719c0572701bf1e87db9ed5af63700814d69a03d55cefade5e056a2cdc572f6d3e40ad213715a193469b4f55666dc2a899f9eb486718eb40135bda4133ed954107ae4563ebbf07bc33e251e65c5ac2ec7fbe8adfcc56943769192ecc005e49359571f15b4eb09fecf6a867da70cdbb6afe1d69a8a7a32a31a8dfb87171feccbe128a5f356cadf3eea08fc8f15df691f0d343f0d4216089176f40aa001f80a9aebe2f694968b2410b34a7a866000fc79fe55069ff10b4ed78fd9ff00d4cffdc63d7e869fb2847e1437eddabccd0302249f200055f8e40a2b2da752dc1a779e3d6a4836d27a6cb37159293fbd124dc502b11dd4dc1ae52fa6e0d6a5dcfc1ae2f58d462b4b792e256c2a0c9e40cfa01920649e073d6a24cd228c6be59eee75b5b54324d21c228fe67d00ee7ffac2b72e3e11ff00c4a5afb56be68252ac55500da09e99041271df919f6ae87e1c68c407d6eff2d2cc4b0ddfc099caa8f651f9f5ef507c4bf17082d648d1f0a80f7a9e556e6915ccf9b96245f0bb48b0d2f4d91d196478646495fa9320e4e7ea083f423e9595f123c6021824457c2a83deab78164b9b0f0325edcb1126a72cb7982a54aa3e153ef75ca286ce00e78c8e4f9d0d31fc77e31874169192d220d737b22ed25624e8a3702a4bb90b820f049c1c5272f7524528de6dbe87e56fed1f7fad6a9e319ee756b0b9b18d22586d4dcc4f179d1292c645de06e525ce0af05706be468c95d463f72c3f426bf7e3f6ae7f0b6adf0bb5bd06fed613059d8cd716fb540304d6d1b344f1e07ca548c71d5495e8483f80a33fda5163fbcdff00a09af7701514a9f22e878f8e8355149f53ab6e62fc2bfa74fd857577d6ff0064ef87778f279862b1b9b2cfcdc0b1bcb8b60bf373f288b1e9c71c62bf98c0331fe15fd14ffc1343595d4ff659d36c03313a3eb3ab599049214c93fdab0010001fe919c0c8c92739240f672f7efb5e4787992fdda7e67dfd451457b078814514500145145001451450014514500145145007ffd1fdfca28a2800a28a2800a28a2800a28a2800a28a2803f3dbfe0a77ac3e9bfb2a6a560b26c1abeb5a4d9b2fcdf3849bed3b7e5e3ac00fcdc71eb8afe76edb88d7e95fba9ff056bd65edbe0b783b404936fdbfc54970ea3765d6d2cee46323e5da1a65241e49c11d0d7e15c1f717e95e3e39fef0f772e56a44da81ff004703eb5ced848f0ce92c4c55d1832b0ea083906b7f503fb91f88ae76d7efd714763be7ba3f6aff0066cf8a83c4fe1db1bf7702e0288ae501fbb3270df81fbc3d88af77f1eda47a6eb167e35b1188af592dafb1ff003d0002290fd40d84fb2fad7e3d7ecf3f1025f0578ca0b5b8936d86a8e90cb9e892748dbdb93b4fb1e7a57ed1e906d3c55e1b9b48bc3986ee12991d549e5587bab6187b8af9bc450f67374fa6e8f7e8565522aa7c9ff5f89a5a8d91f177836f3498197cf9610d03374134643a7d3e60013e86b8cf863e2691a248e5ca4b19292237055d4e083ee0f06ac7c3ed56ead249b45d4be5bbb195a098762c87191ecc391ec4554f1a69c3c39e2a83c4b680ada6b0e23b803eea5caa8c11e9e628c9ff0069493d6b06f69a364b7833d97c6fa6a788fc393246373b467f95799685a94ef6e91de0d975180b32f4f9c7523d8f51ff00d6af4ff0f5eaddd9aa939045707e39d1e7b58a4d474afdddca2b14200c138e841e08cfad692fe646707f659d4dade610390db3fbfb4ec18f56e83a7735ab1de24912c91b0656019581c820f2083e950fc30f1259eada0c36a550c2f12aedc0c018f4acff0011d8cbe18bc3709b8e9d213b940044458fde1df68ee3f1fab4f4b936d6ccbb2dde0f5aa52ea6114e4d645d5c1009af3ff156bc749d327bd63fead4e3ebda9365c20dbb2382f8d9f1cb43f0168b733ea5782dadedd4b4cd9c1623a20ee735f8e9e3cfdbafc6dae6a92c7e1bb4fb0e96a488c190a4d20cf56201da08ec0e7deb8bfdaabe25ea3e38f1ccfa1acee6c74d7f9933c3ccdce4faed078f727d057c9cf6d5f4194e5d4e74d57aeaf7d979777ebf97e1e766f9954a12786c2bb5b77d6fd976b6ddeff8fd449fb5f7c418983c4932c808218ea374fce73f75d990e7e98afa2be0b7edd7a8c9aa41a27c454f284b28582fe238099e9e6f4e73fc4001f4afcccf20e7153a5b135ea57caf0b38da11517e5a7e1b33c9c26718ea53bce6e6bb49dff17aaf91fd5ff807e2359f8af4b8ee239d6570a096072194f46fc6bd1e3d403f435f887fb0ff00c5fbf53ff08aea73b48d6242c7b8e4981b85ef938391d3b0f5e3f6174cbc69115f3c119af8ca9194272a73dd69fd7a9f59523094635a9fc32575fe5f27a1e8f15d67bd3a7bd8e3505d82e4e064e324f41f5ae59f505b581ae24c90833851924f6007a93c576be11d10c921d7b575cb7de8a363958d703819ee70327b9a136f439da56b9c9de5f7660e84e701d590903a90180247bf4ae0b525b8d6af2df4ab4dc774c8f3e3a08d79c13ea481c0edd78ebd27c53f13cf73a859e9da7f962e659d550b0076af3bc8f7d9bb1ef5d3f84f4586c2dd6665cb9e4b372493d493eb52d5dd8b4f95731d54b3c5a368eb029c109835f35eb31cbe36f15daf866366f265632de329c14b58c8321c8e85b2114f66615eabe39d652cece4676c05535cafc30d35ad347b9f175f2e2e75921e2dc394b44cf958ff00ae992f91d54ae7914a6f99a88e9fba9ccdbf1c6af6fa569aca9b628a14c2a8c2aaaa8e00038000ac7f04da3f863c2f71ad5f80ba86b0df68930436c8464409904820292fecce476ae7ef54f8bfc636fa3e736b6a45d5de0e3e443f2af0eac3736064671dc6293e2c78b2df45d22eaeee24091c31b3b13d828c9a96f5722947451ee7c21fb5bfc46926b33e16b494f997a7ccb8c1e4408781ff000361f92907ad7e683ffc7f467fdbff001af76f883af5cf89756bdd6aec9dd732165527ee20e157f01f99e6bc1e53fe9a98ff009e83f9d7d16068fb3a567bf53c2c6d4e7a975b1d8c5cc75fbd5ff04a7d4dae3e04789f4b90b16b2f175cb26400a239ec6c88008e49deae4e7d473d87e0b43f72bf69ff00e092b7dbf41f899a5ee4fdc5f69171b41fde0f3e3b94cb0cfdd3e4fcbc7507af6f4f00ff007a79798afdcb3f5fe8a28af6cf9f0a28a2800a28a2800a28a2800a28a2800a28a2803fffd2fdfca28a2800a28a2800a28a2800a28a2800a28a2803f1b3fe0af7a8797a27c2dd23ccc7da6fb59b9f2f6fdefb3c7689bb7638dbe76319e777438e3f1960fba2bf5d3fe0aff7b1beaff0974e01bcc861f104cc481b4accda7aae0e73906339e3b8fc3f22613c0af1719fc567bf805fb941a89c46bf8d60db7dfadad4cfc8bf435896e7e7fc6b922764ceb6d090030382304115fafdfb2ffc4cff0084afc2d6c9772e6f6cf16f7009e4b20186ff00810c1fad7e405a72b5f45fecf9e3d7f0478ead96793658ea6cb6f364fcaae4feedbf0271f435c38fa3cf0e65ba3bb0557965caf667eb578ce33a3f8834ff00145bae21bdc5a5d907812a8cc4c47fb4a1949ff65477aee752b183c5be19b8d2e460a668f3149d7cb957e647ff0080b007dc7159135a43e2ff000adc6985f6fda621b1c7f048843c6dc75dae01c77c5657c3ad6279ed4d85f031dd5b3b433213cac919dac3f315e1af8add19ebbf86eb741f0e35e99a23637a3cbb9b67686643d56443b587e0457ae6af025ed8b0eb915e23e2bb56f0cf8c2db5e806db5d5888a7c745b941f29ff81a0fcd49ef5ecda6dc0bbb2539ce455537f6593517da4785782b527f0b78aeefc3b2129107135beeef149cf1ecad95fc2bea6bc820f1168725bbe0b346403f515f317c4ed225b648fc4b623171a5b195f1fc501ff580fd00ddf81f5af66f86de258b54d3e17dd9dca2953766e0c2aaba53470368b3c31369779917365889f3fc4070afff000203f3cd701f1074a92ff409e08ce189e9ebd6bda7e2458ff656ab6de20883790e0c371b7a056e4311e8a47e033f43e7be20907d90be3729229b5676669465692923f99cf889617b0f8ffc416d788c274d46e148c1076873b78f75c1cf7ae6d7c3fa8ccb98eddd87d31fcebf493e3f7c1cb3d3fe27cfe284840b3d6d5240c170a2745da4138c6594023b93bbd2b8cb6f045aaa00b00231e95f4d471d18d28c62b648e796453ad565393ddb67c14be1ad54b605abe7e94e9341d42dc665b7751f4cff002afbe93c156dbcfee07e5505f7822c9a23e6c2aa31d718ad16637e837c34d2bf31e65fb1c68f7d7ff161a080308d2cdde5c1c60865db91f89afdf0d2ed8c36d12139211727f0af807f659f85b65e11b6d43c6124404daab22439046218f3b782063712cd90482a56befdfb6c767606ea5070146154649278000f527815e063aa46759d45d7fcac742a32a346141eeaff008b36f4ab16f106b96fa744098aca559ae1bb6769da9ee4ee0ded81ebc7b0788f538b4ad38c5190aa8b589f0eb4a7d2f40fb7dea2a5cdd169a50bc00cfc903d874f5af21f8c1e2c9adedcd958e64b9b8611451af259dce140fa935cae5cb1e6660a3cd3e5472ba02cbe2af1a4fac484b5b5896822f432b60b9ff80ae07e27d2be8a7956cecf1d302bcdfc01e1d8f42d321b6003381ba57e32f2372cc4855cf3dc8ce315b3e30d5974fd3e591db0154934a0b963765547cd2b23c9bc4e2e7c67e24b5f0bdbeffb3cb26fbd913388ed9397cb0fba5f1b14ff00788f7af48f166ab6fa4694ca9b628e28f0aaa36aaaa8e00038000ae7fe1be90f0d85cf89afe3c5dea6db977ae192dd7ee2f28ac377de23241e08ac3d747fc255e2ab3f0eb066b50c67bbc29653147cec6238024385e48e09c7350b457eacd1a4df2f446cf81ec64d27c3d36b57d9179ac30ba707aa438fdca7e0a771c8c86620f415f0afed45e3b7ba953c336927123092e307f814f03f123f4f7afb87e26f8a2d7c37a05dea175208e382277663d828c935f8f5e2fd76e7c45a8cbac5d677ddbb4b83fc2a7eeafe0303debab09479a6bb230af52d06fab3ca75d3fb96af2598e2ed0ffd3451fa8af53d79bf746bcaa6ff008f943ff4d57ff4215f430d8f06abf78ededf94afd76ff824adff0093e26f89fa56e8ff00d2acb44b8da4fef0fd9a4bc5ca8cfdd1e77cdc752bd3bfe44daf282bf51ffe094d75247f197c636202f973f86bcd63fc5ba1bc81571ce31890e78f4adf06ff007a8e6c7abd167eefd14515ef1f3614514500145145001451450014514500145145007fffd3fdfca28a2800a28a2800a28a2800a28a2800a28a2803f0cbfe0af47fe2b0f85fff005e1ac7fe8db5afc9984f02bf5cff00e0b0165e56bbf09b52df9f3e0d7e0d98fbbe4b5836739e73e6f4c718f7e3f22623c0af1317fc567bf81fe1213533f2afe3fad635b9f9ab5b533f2a1f6358f6e7e6c572a3b2475f667e515bd03321574255948208e0823b8ae7ac8e40ae822e82a646903f647f66cf8869e31f0759cd349bae615105c0ee258c00c703006efbc3d8d7a46b29ff0008ff008f60bb8c2a41ac43b8e0f26e21215ce3b650a7d4835f9a1fb2e78f47857c62fa3dcc856df540bb327813479ffd094fe8057e9af8eaead6fbc251eb51c989b4e9a2b94c6d2587dd71cf38d8c5b8e78efd2be73134fd9c9c7b6abd0f7e8cf9d2977d0ee7c4fa4c3e22f0ecd66e76b4881a37ee922fcc8df8301f51c573df0d7c41fda5a5c6b30292a0d922370caebc107dc1adcf0c6a51eaba647f3020a8af33f3d3c37f10eeeca37021bf54bb45030158fcb20f424b2ee3fef566deaa438aba713d875fb38e781d6450e8ea432b0c820f5041ea0d78bfc31b8b9f0ceb973e1bb972cb6d27ee98ff00142dca1fcb83ee0d7bd91f6eb10c3924578178a226d1fc5ba6ea4bc19c3dbbf3c90a77271ed96fcc515159a9052774e27d57acd9c5ace86cae03657eb5f2eedda979a0dc1e6d98a20efe530ca1fc3951feed7d23e15d4d6f2c044e73b96be77f8968da0f89d2e94622bc52878fe34cb2f3f4dd4ea6ca44d1ddc4f10f1278774bf1a58dcf86bc416eb35c59b091549642c993b1d194ab0f7c1f50783cc3a27ece1e01d5e353e18f176a9a4b85065b2d46083519632386ff0056d684a6e236b63a7bf4d6f10badf345a8594bf67bfb6398a50323dd587f123771f96080451b0f1368daac8b6dac6dd2f520c10076023958f00c52701b3fdde187a6304f4e0b1b1a6f96a2ba3b6ac2b5582f6351c64be7f83364feca7a6f51e396527b8d087ff27d71faefc02f86766df609358d57c47aa1ca3aac915a59c3f7958c891abc9b94fdd4130208cb70707d0eee493ecceda8ead21b50b97f3676d9b579f9b2d8c0c679ae22e7c4f0de33697e143f237136a247c8a0f5f273f7db1d1b1b067396e4576e271f4231b538599861e8639cb9b135ee974492fbda5f81da68305b7db21d174c454b2d35544a5000bb863080018e3bfa702bd5f41b6fedef12c76bf7a0b2552c3070646e467b1c2e31c719ebe9e47a45dd8e8d6096769c2af249396663c966279249e493c935f437c1ab2696d65d6ae393732348a48c7c9d13b0fe102bc68be796a5e225bc8f5fd6a74d2f4ad80e36a57c8966ade28f88325dce0bdbe94bb93a6df3e4c85c8ce4e17711c7070723033eeff11b5cf26d250a7a29af2ff863a73c9a62df1f99af6592e1ba7f11c0e9e8aa3af39fcaaaa7bd248c292e58391ec9611adbdbef3e95e2be3699fc49aed9785a07c25cc9bae083c8b78f993d7961f28e0f24678af5dd72ec69f60d938c29af24f871147ad6b3ab788a6392b20b48096fe04c33903a7ccc40ebfc3dbb95356a214f4bccf4ed4e4874bd1f6c416348e3c2aa8c05006000074005703f0eecd5edf51f15dca309afe568e267c716f09206dee033ee27a670bc600263f899ae1b6d39ad216fde4c4429fef39da3f535735fd634af0778492159923b7b2b50bbc90a3646bcb1f4e99249a4dae6bf61c53e5b773e18fdb07e2348f7561e03b09086be7fb45d633c4111f95738fe27c743d1483c1af8db53214ac7fdc502a1f10f8c2e7e237c4dd53c4f3b1685a5315aa9390b6f192100ea3e6fbc7048cb1c714cd464dd2bfb57b986a5ece9a4f73ccab539e4dad8e0f5e7f908af3193fe3e13feba2ffe842bd135e7e08af3a93fd6c67fdb5fe62bbe1b1e754f88eded3ee62bf4abfe0962f22fed1de20895d846de0abf664cfca59750d342923a1201201ed93eb5f9a965f7335fa29ff04c3b99e0fda72ea289b6adcf853528a51807720b8b3931cf4f9914f1cf1e99ad309fc54638dfe0c8fe8528a28afa03e6428a28a0028a28a0028a28a0028a28a0028a28a00fffd4fdfca28a2800a28a2800a28a2800a28a2800a28a2803f1a7fe0b0166cda07c2dd47cb52b0ea1ac4064e37299a2b560a3f8b0de51271c7ca33dabf16e23c0afdecff82b6e96d73fb3f7863568f716b0f18da2b8c80a239ecaf41241e49dea8060f73c7a7e06c2df20af1b1abf787b9807fba449a89f956b1e1e1f1ef5b17dcc698ac480e643f5c57223ba475d627815d0c3c8ae6ac0f02ba484f18a991703734dba9ecaee1bcb6731cd0bac88c3aab29c83f81afd1af06fc4593c6be0036f3361e48cc33a6720381823e87391ec457e6dc07e615f437c10d65adb5abad1dc9d97500997d03c470463dc37fe3b5e56674b9a9f3add1eb65f52d5391ecff33f40be1778a258b4d5b499bf7907c87f0a5f12bbdcf89ec759563ba2cc679fe1639fe75e6de1f94da5d974380fd6bbf96413ed73c91cd787195e2933d6946d3ba3e9af0e6a519b05ddce54579df8c7434d575286ff0092f013b7f1eb4786f513f6658c9e82bb15459c0cf35d1bab1c9f0bba34bc1e658624439e38ac2f8b5a1ff6be92cf8f9d06e561d411d0d779a0daaa91815a5e2ab159b4c91719ca9ad396f1b3214ad2b9f9befa9b02d04dc3212ac3dc706b1af61b6bc52b200ca7b1ae7fe31f8a3c3ff0f3c53143afdf45a7a6a8ce6dda725519a32a1c16c6d5c6f5fbc4773d01c737a5f8d746d5d3ccd2b50b6bd40bb8b5bcc928da4e3395278cf19af2aa732f89687b10e57f0bd4ea22f0fe8f0c8248eda30ca720ed1c7d2ba7b69161185e31d2b88fedc8bfbc3f3ae7356f88de1ad1437f6a6af6568541244d7088dc70782c0f5e3eb59c1eb68a349a7bcd9ef7a2c72eb3a9c1a721cac8df3ffbbdebef8f0b598d2f448a08c6d0a80715f0afece37561e3248bc53a6c82e6cee59960940203ac6c509018038dc08f7ebd306bf45eded552c1401dabd3c345a576b53cbc5cd5d25b1e19e34b596fcb407386eb56bc0b610e8168b6ca3e4192074e58e4feb5d4eaf68a65248ef5832482dd78e315a5acee63cda58c8f887a90fecf9421e4a902bccfe1fdc9d074b31063991de47c9ce4b9c9ad4f16de9b91e5e722b896b9fb35b90a71c563297bd7368c7dde539cf1feb926abaf5a5b2b1f2e095666faa1c8fd6be5cfdaa3e34cf6da447e05d36e99750bf8d1e7d84ab476a4904e47fcf42853dc6eaf74bd626ee4b973c9cd7e52fc42f11bf8bbe2378835a24343f6d7b5b660300c369fb9523924862acd93ebd00c01be5d4bdad66e5b2d7fc8cf31abeca8a51dde9fe6757e048311c9707d783f4adbbc7c966f526a3f0c41f65d1448782e33f9d4576df29afa27ab3c65a451c16b8f9245710e3f7919ff00a68bfcebacd61f739ae5a5e248ff00eba2ff003ade3b1c72f88ecac87eec57e87ffc131a2964fda7e768d19962f0b6a4ee40242a99ed1727d06e2064f72077afcf2b2e23fc2bf497fe095e9237ed21e21942318d7c137eace01da19b51d34804f40480703be0fa56984fe2a33c6ff0647f401451457be7cc85145140051451400514514005145140051451401fffd5fdfca28a2800a28a2800a28a2800a28a2800a28a2803e11ff8293e83fdb5fb20f8bee5799748b8d2b508c74fb97d044fdc0e2395cf39ce30067047f34b6afba353ed5fd707ed1be146f1cfc03f887e138a36966d47c35aa456e88a1d8dc0b776870adc13e6aae3907d083c8fe43f4d983c0a7dabcbc7c7de4cf5f2e97b8d1b37ad8811fae2b9fb27dcce7d5db1f9d6edd1dd63f435ce69e4799201d9ff009815c08f499dad89e0574901e2b97b13daba480f02a2469066b4479aeffc0baa0d2bc5da45e31010ce2162c7002ce0c79c9f4dd9fc2bcee36a9ef2e2582d0cf03159631bd18120865e41c8c11835855873c5c7b9d34ea72c94bb1fa61a74c038f6aef6d27df18af11f06ebf0f88342d335db723cbbfb586e07b79881b18c9c119c1193835ea7a75c7419af918e9a33ea26aeae8f55d0ee8a6057a8e9b73bc0c9af12d2a7c30e6bd3b4ab8c81cd74c59c7347b5e84e0e2ba0d6d43d8b2fb5715e1fb8f980aebb54941b423daba56c72bdcfc71ff82837839351f001d7a34fdee8b7d0cfb80c931cc7c871d78199158e33f77d326bf1a2bfa2bfda67c383c4de03f1168cb179d25de9f731c49eb298dbcb23dc3e08f7afe752bd4caa7784a1d9fe670e650f7a33eebf22c1bcbb29e599e42a4636ef38c7a63350aab3b04405998e001c924f614daf4bf837a19f11fc53f0be9213cc57d4e096442bb83456ede748083d8a21cfb7af4af4a72508b93e870422e7251ee7f415fb3278422f08f82f42d051361b1b28217e7397541bc923824b649231c9afb91702d00f6af9a3e194420b684631802be8b33016bf857cbd36dabb3e86aad6c8e1f5a900724579cea977b4100d75daddc7ef1abcbf56b8fbd513638238cd5e7f32435c76a371852b9adad4271bc9ae2351b9ce4e6b964ceda71384f18eb91e83e1fd575c971b34eb3b8ba6ce718863673d327b76e6bf237c3b14b25b41e7333cb31deecc4966690ee2493c9273ce6bef6fda87c4d1e91f0bef74c5702eb5a961b288646ec170f21db8391b14a9e982c0e73807e2ff0009d989751b68147ca983f828af6f2685a9caa777f97fc39e466f3bd48d3edfa9ed2a82db4e8a11c7007e55817cf843f4ae82f9b0420fe115c9ea72610d7a4b738a6f4384d45b7487eb58130fde423fe9aa7f315b3767325654abba7853fdb07f2e6ba11c5d4ebad78873ed5faabff049dd2e5b8f89be3dd7560668acb44b5b469f276a35ddc6f543ce32e2dc91c7f01fc7f2a11b65b927d2bf713fe0933e159acbe19f8e3c6d2c0b1aeb5ae41a7c5210eb24a9a641bf3ca856895eed954a93f38901c639df051bd5461984ad459fac7451457b87ce85145140051451400514514005145140051451401fffd6fdfca28a2800a28a2800a28a2800a28a2800a28a2800afe3e3e3afc35bdf82ff001b3c67f0d2f229218b48d5ae058191554cba74cc65b3970802fef2ddd1885180491c6315fd83d7e1e7fc159fe017913e89fb47f876df01bcad0fc47e5af7e7ec374f8fc60763ff004c56b93194f9a17ec76e06a72d4e57d4fc7adde6d948a3b60d72da74bfe977487f86403ff1d15b9a74e24478cf75ae4ad65316bd7b09fe22187e1ffebaf216e7b67a3d93f22ba385f815c759c9d2ba4825e054b45459bb1be0d4974f9b561ec6b3924a75c49fe8edf4a8b1aa91ef1fb28f8c86a1e1dd47c21393e768574cd19273ba0b977618c9fe170c0e3800afad7db7a7cfd0fad7e32fc27f1b4be02f8a76da9349b2caeae9acaf724edf227700b1c7fcf36c3fafcb8ef5fafda5dd8751cd7cce6743d9621c96d2d7fccfa4cbab7b4a093dd69fe47aae9971861cd7a76913702bc634eb8c10735e99a1dd060013d2b9e0cba913dbf41b8c3af35d7ea3740db119ed5e63a35ced71cd74b7b7b98b19ed5d317a1cad6a7867c47884f6b383dc1afe6cfc5fa48d07c59ad68815916c350bab6556c642c52b28e981d076e3d2bfa52f1a307b69727b1afe767e34c220f8b1e2b407703aadcbf4c7df62d8fc338aeecaa5fbd92f239f308feea2fccf31afa8ff0063ed21753f8d1673b286feceb2b9ba19ec4ed872391ff3d71dfafe23e5cafb63f61a8e16f891aac8edfbc5d342aae7aa9990938ebc103f3af4b1f2b61e470e0a37af13f73fc0e4451463d857b535d0fb2f5ed5e15e1994471a60f615e95f6dcc18cf6af9e83d0f5e6aece6f599f2edcd7986af3e37576baa5c65989af2dd6aec6f2a0d6536694d1c9ea13f279ae1b519f8635d06a171d79af22f1f78b2cbc29e1ed435fbe3fbab285a4db9c177e8880fabb90a3dcd734aedd96e774124aecf843f692f16c9e22f8856be1a82556b3d140dcaa720dcb8f31c9ec4a80ab8e769cf39240c5f00dae6e26ba3d11428fa9af2286e2e355d66eb56bb3be69de49a524924c93b6e272493d73d4e6bdf7c216ff64d144cc3e6972df876afaea34551a2a9ae87ca4eabad59d466c5d49b9d8d721aac9c115d25c3f04d717a9cb9635a416a2aaf439a97973545577ea16e3fbbb8ff00e3a47f5abae7bd45a6a89351924ff9e71edffbe8ff00f635af43963b9a57f702ded724e33fd2bfaaff00d94fe150f833f003c1de059e354d421b05bcd4c888c2ed7f7c4dc4e1c380e4c6d27940b80db51410b80a3f053f613f8383e357ed1da436a102dc681e0d29ae6a4afe5ba3b40d9b589d1a446649270bbb0ae300865dad9afe9c6bd3cbe95939b3caccab5e4a0828a28af44f2c28a28a0028a28a0028a28a0028a28a0028a28a00ffd7fdfca28a2800a28a2800a28a2800a28a2800a28a2800ae53c77e0af0ff00c47f066b7e02f15dbfda748d7ec67d3ef23180de55c2142c8c41db22e7723819560187205757450d0276d4fe38be2cfc2af12fc06f8b1ae7c2cf15ee6b9d1ee5a286ebcb3125eda3f305cc6a4b61268c86c066da72a4e54d788dd068bc4f238e06013f42a335fd2eff00c149ff0065abdf8d9f0e2dfe25f81ed1ae3c65e068a69bc888664d4348c1927b7450373cd130f36050727f788aacf22e3f99dd66e9575686e633c3c033f8eeaf131149d39dba1f4186acaa42fd4eead1f18ae8ade4e2b89d2eed6e204901c9c73f515d55bbf15848e84cdf47a7dc37fa3bfd2a946d52ccdfe8eff4a92ee7cedab0c6a9763fe9b3ff00335fa83f003e24278b7c256d6d7736ed4b4d4482e031f99d00fddcbd72430e093cee07db3f97dabffc852ebfebabff003af4ff00873e33d47c0fab58ebba712e8a047730e70b3404fcc87d0f1953ce180383d2b8b31c27b7a565f12d8edc062fd8544e5f0bdcfd9bd3af464735e8ba35eec71cf5af997c13e34d2fc4fa45beafa54c25826507b6e46ee8e3270cbd08fe6315ec3a56aaa08cb57ca424d3b4b73e9e70babad8fa3b49be00039ad2bcd55421cb5792da6bd1c30e4b76f5ac1d57c631a2b00ffad74fb4496a722a4db34bc77e21b5b3d3ae2e27956348d19999880aa00c9249e800ea6bf9def166b3ff0009178a758d7c0206a57f737601ec26919c0e7d01c57e8efed5bf18ff00b37c312784ec263fda1ac2142ab9cc76a4957725594aeec155ea0fcdc706bf30abd9c9e9be5759f5d8f37349a4d525d370afa73f649f13a7877e305a4129023d56d67b4c9e00618994e7d7f7640fad7cc757b4cd46f347d4ad755d3a4315d59cc93c2e3aac9190ca7f315ea62297b4a728773cea153d9d453ec7f4c1e1dd623681086ec2bd022d503478073c57c0bf07fe2f5a78c7c2d65addb314322ec9a23c18a64c6f43f43c83dd483debe8cd37c5b1caa3e71f9d7c8a9d9f2cb747d2ca95d734754cf42d5ef82ee39af28d52f72ccc4d6aea9ad4722160c3f3af34d5353525be6acea4cba54d95752be0aac735f9fbfb4df8ecdfdfdb7826ca4fdddb11757bb7bc8c3f7487fdd525c8e87729ea2bdefe2f7c56b1f04e94eb13a4daadc211696f904827204ae339f2d48ff811f947723f38efef2ef53bc9aff5099ee2e2e1cc92cae72ccc7a926bbf29c2b9cfdbcf65b7a9c59b629421ec23bbdfd0bfa1db3484003e695c283ea3a7e8735f470896d2ca1b65fe0503f2af20f0569fe6ea100652040be630f46fff005935eb977265cfb57d0cdf43c4a2acae655dc98535c3dfc9926ba8d425c29ae2ee5f73d38a22ab28c8db413e829ba7f9c2dcfd9a279eeaf66115bc5129792476211515402598b70001924f1553509c436eee7d2bf6cffe09dffb11eb9e1ed574dfda0be30d8c9617769139f0c68575198e785a54286feee36c6c90a33793130ca96f3080e131d3468ba8ec8e4ad59528f333ee3fd8a7f6751fb39fc17b3d075609278a35c90ea9afcd1b394fb4c9c450a0700aadbc3b633c0cc81dbf8b03ebca28af7231515ca8f9e9c9ca4e4c28a28aa2428a28a0028a28a0028a28a0028a28a0028a28a00fffd0fdfca28a2800a28a2800a28a2800a28a2800a28a2800a28a2800af95be207ec57fb37fc44f056bbe07d47c216ba6db6bfa94baccd79a5816f7b6fa9ca810dcdb4a43888803fd56d301c9dd19dcd9faa68a4e29ee8a8cdc758b3f966fda17fe09edf1bff674bebcd6f42b46f19f825a76306a5a62b49776d13c8b1c2b796a143acac5c0262f3233d772f2a3e44b0bc8e55041afed52bf243f6aff00f826468bf10350d43e23fc01b88340f135f5c1babed12ee410e8f744a93235bf97133db4f23f3824c2cc7a47cb1f3abe0fac0f4e863efa543f0ea3706ac48d98587b1aa7e27d0bc5df0f3c413f84be2068b7de1ed66d4032d96a3035bcc15b3b5c0703723632aeb9561ca922abc57d1cb1901b3915e734d6e7a71927b1e1fab1cea7747fe9abff003addd27e7b34ff0064b0fd6bf7dbf63dff0082727ecebe31f865e1af8cbf116df53f14ea3e24b292ea4d36eeebc8d320691dd46c8ed962999940eaf332e79da0815ef5e33ff8256fecb3e2ad6af359d2935ff098bd9cdc3d9e857b0a5a23b67788a2bbb6baf29189cec421138540aa36d762c1d4714d1c92c7d24f959fce9f843c67e21f04df8bfd0ae4a64832c0e49826033812202338cf07823b1afaa7c3ff00b4fe96d12a6b763716928519687134648ebdd58678c0c1f4cf193facb67ff0494fd9a2da231cdacf8caed8b121e6d42c830181c0f2ec1171df919e7ad779a07fc1317f64ad1658e6bed0b54d6fcbd876ea1aadc05664079616cd6f9dc7048fba718c6320f1623228d77cd35af73ab0f9f3a0ad07a76b1f9d5a9f893c4761f02adbf687fecdbc9bc1977a89d35278d3f7c240ef17986372a3c9f3a3317981b1e610bd738f8fbc4ffb4d6b1a8c4f6fe1cb1fb2961c5c5cb091c67ae231f2820f425987b57f54937c35f005c780e4f85d2787f4ff00f844a4b33a7b68cb02259fd95873188d4000679c8e437cc0eee6be17d6bfe095ff00b296a9746e34fb6f1068b196245bd96a8648d41c6003771dc4840c7197279e49e311feacd08b4d6beacbff0059eb4d352d3d11fcd8ea57f7dacde4da86ab3bdd5ccec5a49243b8b13fa01e8070074ac6934db297efc433ea38fe55fd27ff00c3a77f662ffa0878b3ff000636dffc8747fc3a77f662ff009fff00167fe0c6dbff0090ebb9602a25656385e614dbbb6cfe6a7fb1ac3fb87fefa356a2b1b587ee46b9f5c67f9d7f445ab7fc121be03dc6f7d17c5fe2fb266f3085b896c2e6352df7000b670b6d5ee0b924770793e61adffc11cb4f9599fc39f1526b650ac562bdd09672cd8180648ef62da37672761e08e38e4783abd86b1d49eecfc5cf0b78c75df056a4354d0a7f2df189227c98a551d03a8232067839047622bf553e1f681e39f107ecb77ffb4fdeaac3a669b25c97d3ede29a49e7b5b5b816f25c424a85648db76ff9b6a88dc9604103abd0ff00e08ebaebea709f13fc4bb44d352e479cba7e96ed712da8209d8d2ce12295c6402564543f361f1b4fec2786be0dfc3bf0afc28b6f827a7e9293783e0d364d29ac2e98cc27b698379de6b31cb34aceccc78f998918e31cf2c929d76e55e3af7bff0091b2cf2a504a3425a76e9f89fce7ff00c3517849e2cb35e138cedf279fa7dec67f1af37f167ed39737313dbf856c1919863ed37b8f97d71121393dc12ff5535f59fc5aff00824dfc5dd0755b8baf845ab69de28d2a69e7682dae9c69d7b6f0e03448e65668a461929bc3ae76862abb884f96359fd82ff6bbd0648a2bff0086da8c8d32965fb1dc59dfa800e3e66b59e6553ecc41af396414e12bca2d9e9bcfea548da324bfaf33e4bd4f52d4358be9752d52e1eeae6762d24921c924ff0021e806001c0aab044659923c03b8f209ea0727f4afa3ae7f641fda82d276b797e1778a5997193169b34a9c8cf0e8aca7af63c1e3ad719aefc20f88df0e755b4d3fe21787affc3d797f019ed6db5180c134916f31f99e5b61d46e520120679c577fb3715b591c0aa29cb7bb363c1b65f66b296f5c60c8700f7c2fff005eb6e793a9f5a9b6476367159c7d1142fe559173380a4d61bbb9dbf0ab18da94dd4572b2be4935a57f719279accd3ec354f106b161e1dd06d9efb54d5aea0b1b1b58b9927bab9711c51a03fc4eec147b9ada2ba1cb37a9fa05ff0004d9f81f17c53f8edff09c6bf6af3787fc0901be01e176b7b9d525fdddb42cfb767ee8334e5776e263405590b63fa3faf97bf643fd9eecff00672f835a578466547f10dfa26a1afdc058b736a1322992159635532436e731c4ce589009e03607d435eee1e97242dd4f9dc555f6951b5b0514515b9ce1451450014514500145145001451450014514500145145007ffd1fdfca28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2800a28a2803cf7e22fc27f86bf173488f43f899e1ad37c4965049e6c09a85bacad049c65a17237c4c40018a32965f94e4122bf3dbc61ff0498fd9fb59d4e3bff076b5e21f0ac1e6132d943711df5bf9658b6d89ae91e64600ed0cf2c830a32a5b25bf52e8a89d284be24690ab387c2ce2fe1cf80f42f85de03d07e1df867cd3a6787ac20b0b77b82ad3c8b0a85324a51510cb2365dcaaaa9663850381da51455a56d110ddf56145145020a28a2800a28a2800a28a2800a28a2800a28a2800afe6b3f6c1f1f8f893fb4b78c7c41e7f9da7e83703c3ba680ece8a9a6e629b6160bf29b93349f28db97e0b7de6fe94ebf07fe327fc136be3cdaf8a354d53e1b6a3a4f8a748bfbbb9bc8639e7fecdbf88dc48f318de390340c14b04591661bcf25231c57163a9ce7051823d0cbaad3a751ca6cfce3b8bbf35cb678ed5817f78b1a1c9afaf1bfe09fbfb64c92cb12f822dd163dbb647d6b4dd926e193b71725be5e87705f6c8e6bdefe1effc125be256b975f69f8c1e36d3743b25753f64d0639350ba9a3070ea669d6de28188e55824e39e5474af36184a8dec7ab531b492f88fc9656bed67518349d1ada6bfbebb90456f6b6b1b4d34d23701523405998f60066bf7dbf60dfd83a1f8530597c63f8c96693f8de7412e97a5ca03c7a1c6e38771c86bd60793d211f28f9f247d99f037f651f815fb3c46d37c35f0dc506ab34421b8d66f5daf3529970370f3e527ca472a0bc7088e3620129902be8baf4a861141f34b73c9c4635cd72c744145145769c0145145001451450014514500145145001451450014514500145145007fffd9, NULL);
INSERT INTO `crew` (`id`, `firstname`, `middlename`, `lastname`, `father_name`, `mother_name`, `nationality`, `birthdate`, `rank`, `vessel_type`, `final_school`, `martial_status`, `waistline`, `uniform_size`, `blood_type`, `safeshoe`, `health_status`, `bank_info`, `tel1`, `tel2`, `address`, `city`, `english_level`, `application_date`, `passportno`, `passportdate`, `passportexpiredate`, `sbookno`, `sbookdate`, `sbookexpire`, `lincece`, `licencedate`, `licen_expire`, `image`, `file_destination`) VALUES
(64, 'Aung', 'Moe ', 'Nyo', '<NAME>', '<NAME>', 'Myanmar', '08/18/2001', 'Student', 7, 'UCSY', 'Single', '', 'XS', 'A', '100', 'Good', 'This is bank info', '09260965397', '09260965397', 'NO28,11th street, Lanmadaw, Yangon', 'Yangon', 'Intermediate', '12/10/2021', '78956463', '11/26/2021', '03/28/2024', '232323232', '11/04/2021', '11/05/2021', '2222232', '12/10/2021', '12/11/2021', 0xffd8ffe000104a46494600010100000100010000ffdb004300090607080706090807080a0a090b0d160f0d0c0c0d1b14151016201d2222201d1f1f2428342c242631271f1f2d3d2d3135373a3a3a232b3f443f384334393a37ffdb0043010a0a0a0d0c0d1a0f0f1a37251f253737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737ffc200110801a501a503012200021101031101ffc4001b00010002030101000000000000000000000003040102050607ffc4001801010101010100000000000000000000000001020304ffda000c03010002100310000001f0c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000def4bcf9fa92675ccdba65e663aa8e345dbd6ce0bb35ece72cd7b9c0a0000000000000000000000000005974f3ac58ce71bc985df1aec6adf246df06bac82bc5735b3974fbb0dcf117e8eb1814000000000000000000000037d2ecb6a7877c749a48378951e564c632338c8db5c998e4c1a676c188f710d6bd159c3d3adccdf3d0580000000000000000000019e951bd9d6f9d34ceac6f5642c6d0ef2cbbc3b1bb42c99d326ec60df316c674df431ae7448eb598ece42cd6df30a00000000000000000002cdbad6b1bc55b77e5e2efefb9f9d797937a9acdbdabec4fb41b2cd9876897118df6884b88f06fa6bad674cea9a737a7cfd6741ac8000000000000000000176c41373e9bfb5e07a4c6e496293376e67564af09c9fa9d7d67e6bbfabe1d94b3062cb28724c88488c6faeb836c6b83352cd5b9886f20000000000000000002fc62583bd8e9dcb70d4e7d3abbf06f274a487659f687725c6b9b21e3f7b0be1f99f4a893e60fa2732cf1eef51b39c96ad92e63dab35a7ab7381ac800000000000000000763df799ed70efe3fd469cf4ef678d21d5a3bcebcbee53e59e9f7a3625b1b41925c47824c47a9269a68661da396a794f61e6759e76258b78d2b491ef0160000000000000000007d06496bf9fd11f0fad26f16658ec9c6abeb383ac54b9c6973bed5de6ddc6ec6d0227c5786aeb85ad9dec70b076e2e75d974f33e8bcb591c3b41d39e9837800000000000000000003e9f4b6d3cde8e776f8fdde988fa5acf679ca9e8389ac72fa125a5e2db8fb58df3ade7919bd2879fa9d19b8eaeee78f6a5db4b9066c1e57d179bde715f6d7af20b00000000000000000017697bdceacbb9c9e3da87475e46b1eb248655db4db256e7f57ca6b31f6f1d0e7d395cbeef9cb25ef5ddbaf1e173dad57bf0deceb9563a7e565b3cbeb5be7d3ca41dbe276e01a8000000000000000001d9fa578cf65c7b73f4d2ce35154b3aad3de6b5bc415eded672eee6d6756658f5960f3be8bcfeb3ea6ce926b3c4afe82338d726ac69e57b9c9967971173e9e66a1e8f30500000000000000000327baf51cbb7c3bd6df1bcb5f325396c43b8c58d2f5946d55e7cbe92ad1af65886dce72bd1f98d7a73f4b5ea6d9d6608b8f669634e86373786ee796e9cc3a7300000000000000000059ad6a3ea552dc5c3d114f8d88b99d5e54b666ad29cd935f3da9efab78beb166c59b79b3e62d6caf0dcac53ad7165049433aaf170f5edc738378000000000000000000013c08facc9cdec70f454c6706285ba91159e0f5d60db7a4b62fd0b565957d62ce2aea5ad2b464f5b4af0f2fbd5efc437800000000000000000000003ddfa7f11ecf8778f5b7cb974d67825f2bd5df8dd78fa1c736df2eb3ed0966d23d4934d23964d2bd6de25f3dd7d3b71e2bb5aeb3c75ca700a00000000000000000003a32facd662ee72aff001edd0825db9f4e647660960e0fa1a9acf9db10ebe9f374f34ae797d59c2bcaafa67d5e5c36e96f34bad6b3738ce76b34a7d0d4f21c7fa2f2f1bf1c9e0c6c00000000000000004d0ca7ba9eadbe9cf3be22e5d7b1353b3c3bc756ed72ac562397914fad8f579b8b63a64e7d1f451e75c3bbd2b1db8c126d1598425b1ac36b8758f699c7ac315bd7378be5fddf99efcb86350000000000000001dbe27b2c6ba2df7e5d10e77f579e7b9c7bfe4f55ed23daa0d25c4bce83a7ced61355dbd3e7edf26f4159671d39e2b58a51ae74b3e6f44b269bf0ebb670958ce0d38fd88753e7e9a1f4700a000000000000027f73e63d571e926faefcba6229f4e98adb6d5fb73bf2f26c79fd1d1daad93356f524a91cfac9adaa7b7a38da633e8e1ad2bb5160b556d783d72efa6f2ed9c6d2e35df5238e58acf2bc7f4be6bbf20de4000000000000487a9ec4167cddf6db19cdceb9d483198fdbe557b38e5d77bfc5bdc7b7539fbc28c6526ba49822b11c7d316e9cba7abcf56d52b9e2f54d24524bbedae65ce338348a58ace5f90f6fe23b730e9800000000000075397e9717bb369270ed9cb32e23de3b228648bd1c77de3cf4c41b432793d36f6af244b9d36320c63610eb36ba9ccbda662cc91492efb6bb4b9c646914b1555f13edfc675e75c75e6000000000000f71e22fe35eda4f0f9e7bf72f0c3dbc5e3307ad87cb63af3f5bb790cf6e7e921e143c7a7ab97c8edcf7ec24f1993d9ede2b27b4cf8a4bed31e307b187ca62cf5d63c46c7b8dbc3665f72f0c3dbc5e3753d578f929ef1a0e9900000000000000000000000000000000000000000000003fffc4002f100002020201020602020103050000000001020003041112101405132021314022323050232433341541424380ffda0008010100010502ff00e5600982a633c89e409e409e4434b435b0feb154b44a40812709c6719a9c6719c615dc34ac34b0846bfa7aebdc55817d5af471856158d48319197fa4a9371441fcc56111e9846bfa151c8a883a0fe7223a068ca54fdfa8680ebbfa044750c19789fba3dc8ebb9bfa061962f21f76bfdba6e6e6e6e6ff009cf4b97eed5d0c306e0680cdcdcdcdff00330d8fb95fc0866162f9ede426aff0f4796e25d4ce53737373737373737d373737ea7fdbeda7c0814bbd482b4104e20cbfc3eab65de1b7571b9240d373737fc967cfdb5f813c3abdb0ea3ad942592ef09ada5be1d7d7183a4e5373737fc367cfdb5f84059a9415a0fe17a51e5de194bcb7c2dd63e35e93644e537373737e87f9fb4d8790950f8f0faa096e50ad8674af2eb79bfe12a0c7c74696787d463f8688d82c23e3d8be93f3f67c36b06ca88b11f1cf78800027110a8966323457b718d762d8bb9bf5ee6e18c047ac4c9af8ddae8df1f6bc32bff498a783dc543ae5309df6a0cf1172eb681d5a3688fcb19ebb03aee6e6e6e6e6e6e6e6fa186667fbe7a3fdbf0f5d609f6b08045486c7aaa4ac31412c388668417ba10eb60a53cb80cdcdcdcdcdfa4c32ff007b8c3f73146b0dff006c86e3561d7c6b7e5baf0ab96bd58f5355919888f0af094d9cc0e9b9b8f684072d8ce592d38644ff005292bcadc26318c7de31fb98ff00f15ff7cb87f01533720373c401f32bc9baba824a84d9a2fee5e2e62181c302631103083add4ad82a0ca961d2c3f77c3ece7887f7caf6b1d76c8ba132683616a8a9159315257f9e67211d2bb25953504dcf64f2da6960533ccbab95e5234f98d320ff008a31fb9898cf95662f87f6ead5796731395386de657d5955e79333dc534e2d475e54642265bfe38f53195e0d625a7ccbf3b1571dab76486baef53e663b0b43ccc3fe14a1ec16d4d537dbf07a5aaa394bcfe5ff008d4c712d47571d352eb569401b32ea0726d4b2647be45358ad1c9e241db02c552227096d7c9205f310684f126dfdbf09a7cdca1ec2e6f7e3cef71a8a14cedeea48cf6acffd4a98fe27b9db5d7b7ef2b50a0c613206b36a0da8f8adbed6c8282238531fd85236622ee6559e65df6bc097f13f16fbba7b5f79fcdd3716c2b05c0c231ccf39567e56441ae84cdecf887b5b5306afa185a1332ece34d4348abb99f67918ff006fc15758dff661fe6ffdf7fec0c3a33cb1053b8b5012d6e32bd4f6969f6a4ece657cc78764f0e84c26130996bf9f681b28bc572ef39177da0367071fc9a1dbcb967cbfb5993f00f5adf704caa9b8d791a9e78965fb98d5f15b9392d948b82665b8ec326b785c4b2e458f6bdf15428a5278a650e3f6f186f22af8c88c374d839259f9d6a62f4cfb3c898d9eae12e5797e3ab46c7225347b81a12dae07d87c4a5a76804f2104332323ca3678892a4ecfdbc5ff009157c5e22fbd35fbd6b1bf1b161f871e60b686a9abb7529bacda3ee069ca729b8ea0cd958cd18cbed15a33166fbb41e37527dac1ed47eabf8da7daccb1a287a3fe0decc3c8ad8d495d53da6e729ca7285a1684cb1c22db61b5befe0bf3a7e40fc2cb8476e6b980db462de2c5063fb8e3ee9ed3737394e5394e50b42658e105f71b5bfa0f097de32cb97639f35238b1f6365468caaecd8df5dcdcdcdcdcdcdcbae158b6d6b0ff0043e0adf8a43f0471b1bdc4c9af9282444b6069b9b9b9b9b9b8d60119c9e8515a0c45687c3ec8f8d727dec5c56b8d15ad110c12c59f10c3326be2d11f5373737371ac8589eb5d65ca508b3535352dc6aec97e0b27dbc3c5f362ae837c5662c31c75b939291a311f5d6c6ea0132ac680051e93a99388974b6a7a5bebd214d8806a1f8a4fb2f47108e8d2ca8316a4cf2da26c09c4cf2ccab1898952a7a79cd319e5cf2d635425e9ed7566a7fad52799620e0074afd994c10c61d0c7104d415f36b31bcb0144500f533719c240acd0003d2e36335349f5bc32bdb09faf47f664680f430c32df69c8300656756667ebf3e8b0cdf15ad60f5199f5f2a7eb61d7c291d3f5846c56d15a0337d597716be1088a4ef21c59146bd167bb7cb883d6e362e4f2ecfa94af3b5475d6e7c17115e069ca6fa6a59f33516cf4b7ee907f019e24bab3ea786a6dc7a186c6e3240f0345317a5bfb74222b159f3d5e27c0f59867892eeafa9809c681e93ec632f29eea51a299b8c767d1eeb158374ba241fc06660dd1f4eb5e6e83407a5fab8dc07451e337b7a888af2efd2b820f59968dafd3f0f4e578f498dd7e444dcdff0001137a89ec560f598f2cf67fa5e189aac7a4c3e8e6090d01fe2648b07acc7991fef7d2c64e150f4987d1724530180ff11114facc7995feff00d11ec7bdc89df64ceff2677f953bfc99dfe4cefb22779913bbbe7797cef32277b913b8b677574eeef9de5f3bdc89dee44efb2277d933bec99df64cefb2677d913bdc89de5f3bec99dfe4ceff002677f953bfca9dfe4cefb26779798cc5dbfbefffc4002411000201020603010101000000000000000001021112031020213031404151225060ffda0008010301013f01ff003942d2d2d2d2df152e07129e0ae36bc05e5acade27e02ce8535be759574d0b4b5e6f9a2b636897236675ae5d64f9912dd8dd0ad44f454ae52f011ed8d54684451ba2ef85ccb96521f345558897dcd9d12e86f24cada52bb92547cd1eb3b7e16b12a652e8a169416f21ba73ae0eb2a915426fd732d3d1b68b51b21cdf953957c15d67758c4ebd687348788d95f01b309fe73946a84da646571274439b7957352e6945a305fad18aa9230e54918d2dcae71c2fa28451444a34eb923d928d50bf12d128dc38b8b311ef9e1c7de87bf24329c6e461e27a7a6787f335a65df1acf1152460bd32826528f7d53e28f7a31484a8cae9693d53e28ba17a2f45e89bb9169174ecbcbd17a2f45e8bd17a2f45e8bd1275fe0fffc400251100010303050101010003000000000000010002110310121320213031404151505260ffda0008010201013f01ff009c9592952a54fca4f44fc47ac1f80fd66d9750f81d7953bc779368db2b2590b8ee71e572e5895c85eef6fb61dc53780809510a276428b37e02bf1030814538ae0ac7fab10b1366a1dce30114dfe5c2f537d40588519298e134c8ee77b7cbfaa42266cdf54ac94a3c35013de7a3db427194c1fbdc76812a0ecc8ae4a0c1f2ced6b63e13edf1cc2223dd8184a14c0507e00d55443aed741440704e69694d191841805a2e5bdcd70705587eeca465aaa365aa8b785177568f11a8e2b2298fcbdec79e135c5a6518a8de3635c5be26bc382a6205eabff36031d950f36a6fc4aa94e791b5957fdae76b3ceb37a465aab8e76b2a16a90e1c6ea7d4ff0036503f8aa3721b9ae2df11db4fa9c095a656995a65531895904f6c9e16056995a656995a656995a656995a656994d6c7f81fffc4003a1000010301020d0205030207000000000001000211211031031220223032334041516171a1508113527291a204234262b160638092c1d1f0ffda0008010100063f02ff004ad45c96b2bcabcabd5e15de99455ae86a17254aaafa3c9bb4d554a2a8f449376e59aabe831ba5557d0277582a3fc573e8331ea98cfd40a0054a1e615d239ee677e0d17941ade16d54c415999c167b48f4e3843c2832ea16666acdce59ed23d2835b7941a3868aa14811d9663a7baab0fb2afa27c576088659f11ded662c495a9e5569df47500ad58eca84ad6f0ae9edbf9c2384865ddd7747022e9f0a05d65cae0a99a543aad52dd2d11dfa7e628b53f090aad0b53cace6795c5669054158cdab148d2fb6fd83ecbd919b962859a3dd6742fe3ecbf6b0b3d1ca1ebfe118d2bcefd82fa0587ad163455c83307ac54e1bf71dd54e28ec02f890d0de0141ce1c8ac7c1dd95257edb1725afe5735184a1b49e7bf60fe91631a8298b03782f86d223fb59dd380af45b13f65ff4a5a66caae191d543d13d37f674108ac1142dc66deaa15cbb273b9599cd0563608e6f10a1a155c3ecb6ab3308d3e1544855a2a58eedbf62b3dca8f8ae2af953f2a0ee2322a15f450284dc81e2eb639a0c68cebcafdccf3d6e43f4f8086378984dc538d3cd52a3929b8f457cb5755dca9b82876f92e6905c66c08aff002dca5a72319e51c36129836ffe8536b5aa9ee8a9e2a5c493d6c69f98222c18eaab07efbd82e121b5b077401508b30824158dfa738cdf978a8c3b20f5a2b8a8c0e0e4af89fab740f950660c4306433d956c3172bbca84d03f8a2a4d9289170a0dedeeeb1634755ec877521555549c0e0ffdab3001d956e54c86bd35c2e2328f5a2ef6628d67537c9e66c6f74d43be88a85f030b422eca81aa2c928bb870dee026b2662c69ea9a7ae5cb54157a817dbf2e105c57c3fd437dd51caf0af50ca3551495f0587eadf307f50b5bd94f35390d7b3dd54abd4e4cb562e104f752d96fd256d5eab2e3fd5601125460c41eaa4ef9828f985adeca392735116b83966dcaf21669c655d0e322e379df987faad737aa8e687d9036cf05cd55a166344e8719d7293f6f4063b98b3bd1485213b12fe0baf11a59715d380f416f4b7af15dd7428b9a601e1a4e654bbede84f6f236cdb4bc2a692a153195085567db7e9346f34030465c8b8d90726993cf2339aa7079c3971def1dfabfdd53410a0d906eb605b452e54cb9b9dcd62bc6f0d0fd554d2c1c8ceca80b92a936524762b170a319bcf9283ec79eeed6f35d2d23441aa6ce993d54bfeca995f49a6ee5fed674b01cb958c2c6f74deea326789526fd018ddda2de8a340e6f0bed01992068dcddd5adeb930b1868642cec9f6d18773dd4bf965cb7455bb20f6d1cf23ba8eb5d075507434b7db46fedba35bcceeb0e47467749e5bb41b9468dddf732ee67454de1fdf736b7a68f1c7beeefdca56d3c05b4f016d3f10b69f885b4fc42da7e216d3c05afe02d7f016bf80b5fc05b4f016b785afe16bf85afe02da780b69e02da780b69e02da780b69e02da780b69e02da780b5fc05b4f016d3f10b69f885b4fc42da7e216d3f10b69e02d7f01633aff5ff00ffc4002a1000020102040505010101010000000000000111213110415161204071d1f08191a1b1c150e1f180ffda0008010100013f21ff00cacc211be868dd42d7f0c511a64fec64985c9fd3f98fe8f53548a50942108e088d065b8bb27d472d22f0418d08d3dff8ff001d2d4a3094214ae4e849286c89c11840d306750928af3c8d04d7f893fd22d70208b90409703208c1a231143ad2f418d090ff00831a10942c138249c27810c622063582b23dc44bddfc0df4f0262621227c324924103c5ac600e91cf240b52844922082626264924f0493840c9c44eee43a387ceaccb410f0a28208264938c898d922648c63c0c81c73bf3ab46c42509a651a91ac632820b013249246c9249246c6c6c64dae76de0b454154b6ac548122a280386dedc2aa1dc4571809e00d923631891ce56f0dc4c845b39311a308535b844cbe83311f1d43016324924924924927067d7ce5be83196ef7181086114771142d930e6db134e09b0c63a8a1158c92492492491b2c73960a8c321160f4c0842626264e0d27742085bea89092dc7c1642465259d436615a7bf13249e7155708a41499a53d2e3503d4aaae93d35c2d88e81b9d21f4337091a94262626492492332615fba22cebd48156e38ce9ef08e608244f063cb735a81415044ae9051235f084a4c2592c33b9693d06eeef42b4bb8b0d9ac3a82082649249248c30c31743da089c44d451c1a1b9bf5d5fe7e1205ae880a9d731a5474168022e20f1b1942be93f47c3a315a4ca63cf00bcfa3105c4030c3630e54fd1858d973688b9cbdd8f596a14cb2caa2753cdbd110a4ce6d7620ad7a8f6b56b4fd12d885bf0791001fae7ea3baba77614a8ce1e0ae1f492318c38dd5207186e5cf3713f08c3dc8512d0acfa643ba89f844619f07d87a8ab28123bae9fd5f41894c2322c6fea2a75757582703c335bc31fc9e1c0dc13565a75912d16f6213ea12366573957854c09b7a84165d114749598c59918cb148c1a21c57a306ba4ec1287746e12efeebb172f76920c536c06327a96298691104c223599d05636d998dc8f0875e7135f595e941e7ae56169fd4471098909095034510f31c13116819f918e4927f8422fac6b98f8eb4ab1d7fd18516b02bca6b77c8ed3f70cdcb6ec15d7a972117af744a4964d6a86237f46123e728cd25566489d4957b243aad4cca2d55a7d3327a72886211224f98d1f054d0f84fd14dc9e9916dcb0912e709e49aa648513e432155848484532197991566d462195b9434455c67a8ab4d040cb4111934ccd913ef54f5e72c9c03d048e967b932b71fc42fb86c2b30b08106f8895b72a60a8b5f1725634c8705815c54cc7d88c914bab6ac91ad08856d4a64dcc93495df41ad95504bfcd134130f30e548b03b3244da2217e39b4420eed72200f516812d810d8b77ac429724c6cbab909eb98b0eed2aee28a7e91b5eddafc2120ea755f61ec4a9214d21535868de7e88d9caca48a4345194f25481dbec2c4eaccb2a0c9ad112a8981c46e436c2bf3b1cdf5dafb3fee0758294bbb1ec637c94f09a113436906f368408e882bcbc05a42893201111aabaa7ea33110318d855a4dc348ac750d7172396e99f3911ab7f9f83151131d57f42c3b029750d9666a0ab32042a0f044c04263d5c4e6ab3d19aee44f2d86f83e894b1c114042ad691945d176e6dca44b6e109afc9565c4cad07506d0626d216a7a6021ca14cd668591c8931a1a058a0106fb10337772c372372aeccf6649134a8b574798be55d18cf784adb9742615aac817a9ea29239cae7934d39c89f94e0b3864d36bf820b424a5ccd7ce214664d4df489940a5a59d0a0a246141f5b14843657ce17044d124a70d60ec7e01b53bd348e92854425748ab5b1313a99063192db96f9c46f39fb61ca991db43d8eb4f05bea217de06c24026a73e81976e10f2a85a221d02b030ced2c4dc3b122c1726abc96a391964f3d55e213ec994907a448791acb1ea57f563dad2513a0fb85c4f2c857069a81aed21b628c47c02da19087b77d1fc0630ba58c2156c4c5a8aa842aff00d3349b9ea42d3b27a04e84271a29d3096030c30f10b6c448ada8bfc120f9c90d28650b90da51372b790beea128b53b90b990a686214065861865968a3d0448ca65917f0ae8ccf7ff008350590e72d9dc813b415fd88f6585ba3a325e08c30ce612f62c94585a1623a65b58813d1327646b5ab9eaa8f9dd0861477dca4548916051651e1c3c2f0a6a262786444e2a2e6f1a7953512554b7122b2c0d58a6937ae62f6e6034d38747cd3d92232a0a5248484bf4a9490c2ca2a8d0d0b730c65c587904631fcd8bd8418e2c90848582160dac040d28aa214ca793c9f30c6219d451558212596c4e837003425098e6c4ec3d213420dc21bdcb426e45568458954636264c5cbaebd11b6f9155d0f49bead8de602474b2e350d9595f41cbb10e62022cf81a560dd73098ab01a168541a68ee34d05670c827d60d10d2d460c71c988356b2456485a0510892db818972648a6b51b3e5e47ca810be7fe44e4f8cb2961c8b2254412145883a5b9251dc99ed1a908943d449250b06408cb34910bbef9e05c0f039dbd57979b2f12f0417efb6c4d8828eeb804eac688106fc380d56184d26fa0b265336887be2cd8135339e58cb818c90468aa74e9caeff0055d08908434487614cdf4189fbb8fa0b1163d234383b0c81c53bf032e3d0555c285c0c78212c91caced6484288585a2eac2923ac68393877e0d22fed83448512bfa09a494e560ca4ad6042162f12039593d77c22c59ef49109a6ae0052a24907ae30342927d68b251e8c6515d590d45850858b1e08e757290a6811a9658162cb13249141d13c09604f040d198a8cd81ea2cb964353190b81e0886ab94ac6cb2288583c1521310ece6875a32a6d813e2689092dcfa153a1e221703c36890b46e4e45ff2c0b1781f043955bbecaa57a12602627c5034549571b021703c36091d6f27b0580b17c0a110cfa2e061313e281a33d5c9e8e8c42e0786c3e77e724cd097554245bc5d0f2f68f1f60f2f60f3f60f1f60f17686ef37d1e5ed1e3ed1e5ed1e0ed1e14123fc0f0af63c7da3c1da3cdda3c5da3c3da3c3da3c3da3c3da3c5da3cdda1b7cdf4787b478fb079fb0797b0797b079fb04de6fa1df79ba0f8c96bbfeff00ffda000c0301000200030000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022e7220ee3c000000000000000000000000000062f89ecb2a917470000000000000000000000000bcfee392986e9a22100000000000000000000003d189cebbaa586da35eb000000000000000000000649c79168aef9c733350000000000000000000000202b99535f5cfad2baf00000000000000000000b379efdf9d102685ee43400000000000000000008b35f52cd9ba969895689000000000000000000025c447ce56b3658496950000000000000000000005e9767d14fe73423d16000000000000000000004107f6086ca2fe8e44f8300000000000000000002eeda481146278629b648c000000000000000000466979a566471c4a1b0c000000000000000000004e9f6a29bf5e599e72e20000000000000000000003f919d22d19aef0b80000000000000000000000002e86e3ef76d5ac68e3c000000000000000000001aaa6782979c19e327c7580000000000000000000493fedf884f92d7b2e5a3a400000000000000005602bb57a8d86353de946ca828000000000000000dea29764ab8aaada7d1286162000000000000004e367b56bd1097520f1b4618d2000000000000001e1e99ea2c0e865a68ec58923200000000000000008822997014a1a6ef9594a0b68c000000000000000000000000000000000000000000000003ffc400221101000202020203010101000000000000010011213110302041405161715060ffda0008010301013f10ff009c1309a4a44c5444dfc4bf2c0f2a81147c116c3a52e51f00e38b97d097129efd205b51fa444dcb972fc2f83efbc8717ca58b26a5cbf0d7b817505b514251f14b1fa70226f8d7baa9bd93f7830cff001d23cf76840090712536229fa42ab1cd3d4fe208ea6b168befd25c8f28812e371130cbdd9267a5cfc21a9c402ee6e456f76120ac414f216d1b814a23a715c1a975a96619758d4f7a580771ae6d76a9fac1d39aab28cadc147e401716db7b8501e3b811a71338ba82311a32ca79dcbda776c4f7c1c2ab3a976c32de6cf5006e296bbc6997c6a089641c479a9a9a66be0bb30e154ba600b5e3fb9d4ac11efaf04b3962a5e8842c8373376c5a8db8b9f676d5e2234cdd0c38c87dca0fd96023c2a239c27a48fd52dde9d86e02a65f3f810cc10fa80dce08616f014a895d628be3fb928e7620e1986f890515e26bac28ae6c22d23c3ce77dc5d50788c9d42fc074cddea14f1369815e3a1d43b78101412d1c5453a8002a118ff07fffc40023110100020202030003000300000000000001001121311030204161405171506081ffda0008010201013f10ff005c4118bcbc1c0c11fc4a30740c823f82a8ea1a967e03cf15d2620d9dfb45a2e1fb10475d2fbd8adae4640cdf96ddca1b94101658f1193eb80475c6fdd64d689f3890c7f5d20c776cc4ab17265b4623e18dde79b7b9fd444dc39816f7ed2b18b8405957100724ad5898ed53e91dc662b553560aeeca4cb3159c9516ea2dad82cc132ee55ee5192546773d6940bdcef91faae7ca2f2864b4bc767d88aa0514772b57c74c5859998ccdca487b3825bc689596eed19eb878018dc48c900e40f7152a082fbd2c9f38dca4698352cf3737379dfe09a51e0169b222a1cdcfe7cd4ef89137df7659ff00639cd4ac32a0c5a135640b8538419fa625765d665e0988823c609f52f3e4a5b0e1750f0ce7b681b76ca15b1d9552561c0b5ca970a8f712978632d7c195906cbebb29c27c98ab9dd4146c97b5c18ed57c55f55c456df34bf20013dc18bce33642e61f1584ea54fc364614d92bc50b8579f1d9ea368f0f16e7882ee940a9fdf8dddbfe07ffc4002a1001000201030303040301010100000000010011213141511061718191a140b1c1d120e1f050f180ffda0008010100013f10ff00e56bd37b2e1d69e4fea37e23fbc29cbbdaa3b3f0fea6df79b41388ef63336a39cbed11144a4d47fe5d22e0d5602513e16c4400c340273ca21db39c8b3107682d21942f65c7eef766cf997891db0cec62057fc7721a2f27f4800106804c80883021ca10e08a81731a4225d48cda01a4060b6c971051c1a9338dd8c9ff001280446a6e838b8060bd0544815acb20ca32ae9302637976933849a4c68823b30f7c91c3fa8dda1b27fc1731a355e0800003408aa1688a88b8c0c60b9702e09a65efa30ccc896cdf254944d06a4725e3627fc0ce397d22afe1e3d20dcae9708250ca331984484074974501e1dc627f45e4fae707754200684c21d656f5121e88c184c2179863498b1a4570c64515ca8140a4693eb73ad9734c55103573bdfc68496060c230c0867d1655c51c5d35258c3cbeb7c89a8667448cccb0a728547ace5659bcef7503a12483a120965fe1d1405f731e62534fd61aef5bd38c29d22fb2f129828a0086bc7c297cf31b01e69fb92b4281a470909dfa041041d07aa61e85e81452b868b7eff582bc7354012c7ea42caaa6757a94c28f698e3b7865a7ab4e0fdfa45ac46b0c5f9d20bbc07784107f1fb2cb0c2c534dfac63e14aa29b737756afa15eef55f41ca1a0316dbb9226a56da7da2a01f83e2a5efc35982fcc27780ef0eefe0d965961e81df8beb3e041da9026db02f9777d5fe0aaeb840c0281f31a0276048b59f6dd56bc9175a818a0af9f68fee930276c5c29809594e63d23a4b1df895f5410055680de57c009b60eeda9ea4abc50964c30f57abf1de68896669d8846f59b7f48618f6d1ef09208ee4a7ae9d430875066693719055551b1f55396f8188907ec2887c471426dffa44082bb5dd7a6b072ee8a58bbfd5607029a868f903e463e40b88f884d5a442b76cf4c1de10d2d02808313237cdca03447710d78068fb4142ab86ecf4e25a956a6e3dff0089365965eb217581b4cb7724a3c0a1039d7e6e52b638968f6fab35a377782bf246698eb71bc7062d202c1a1714236c58f99681bdc06ff8842c6af19be8c518a5a14fbcbf1005a4d72241c9ae18c2aa691dbb3fb973c0d371e3ae92cb2cbfcadabf1c2502396a0f2fd5908d4f5a3f98a1c47da5ab829da2af64c3f3306f1817e465e80ae3140834c0af78bc5a8450b5c053bb4802bae8b5993a7a3039e597941d6a0f2468e7b0769dce81dd3ca31e73ce239888fad8de587c407e25eb0415d08c8b7fabc6c8da8f288ac788622b41ebafc5ca72c837ff00c36ef326914ec375e09629aeb817b1c579b83338a2acd028803aab431e366b8aca46086d42d0ed02309916df3e4fb4d3a62e0626a0a3494ef1eb346c16b1534e51fb239e287b91934df9fea3a4d6d821b3e852e97c6d012c6c77800db39f955f76e5d2ec7d7eb2944ad8f44d538255d74d6835540fcc674600034098c6864d526507a9194ae1f6561ec3bbf5d96de575194b612b0f1e4ef1d482805d1a4aaf329a89ca3152134b69078c83ec449ba8ad3cf12bde0f451c4130c1b09080888ee42461400660957e79977852b2bc4379a18f422c5b31295d5facae6c0b35bc9f69e0d486b1a8fb7ec81905fda1602f9e8acd6662a76748b44364a48a64ae526d4a633decfc5c5544725d9ffd30205dcc29c348a178c26484143410fb0ae73e614bea3269dd7688d59b2c3d50d683b210f488d90700b3e58cf937515aad6cc9e5942549bb27989ac05896328b967356bdd8fccb983343eb10d522f8bbe5ed0d4bcc559e4294f7668fef514dcc8e74df47ede904c01f305435344c212094d06a7acbe6bf1a7ba637e0072bcbc66210a101c7eed7d486fe51db57532ca2e7c1afe26b52a9d5dd7b14635a96add4740f1a3dee128eae8ba1baae034de1391ec17099c6cdfc328947a9d3c301b69a732e1e7d6012cba298ec78604a46d5bf6e60bcd2077cdfe21fd175b6f826dc8a7a1e4fac4a9fa1a70031e97eb0e73a74c2e29eeb342c04c298a94f43783b793bea78600326a6e7661328c30af030dd704c5c80a608dd393977f65c386056dd26d4c54514d55dde5f128f88dc724aa2e1a5789a600cb48de1be63768297af765c158d52bfa38f21fd542fca70ececfbcb1670ef72f94b92735617da17401a1bc33f00edff008fab0c36d294e8b1f3e9087069159d251ef01051fe1ef050a989da62fccfdc387b909a2376a3c142c50bd7d96086d62bd86b4e4d46402665e33fb47aeed327e9e847b46dec5c5183f3e20102000a021d44c065eb09f251fad883a823b811b30d25511449157413b46b1a7913f31b2d2dec845145d3d71141a22fb422ea4ab316eff1f3002aeac13843bc5887206e37f56dfab12be6e3c2e30f4c081765c792641d8fd9fc4568ff004ce0509e6a259d0d44b22ad572ebf12fdf2e4133e912e0df81aa1cf300470dc1621be099771fd9149b107c91472bde11bc368c300a38b52b5d7e256b295ecdbe3ef09517998dcb68726e7b63ca7d663d0d8f5a606fd328d91f832d43707dd2dbd0130c3b05f310d09a06c7995a36900701689a9a59824a118f5b21480ee137ed0ccc77ba96ebee3bdc1944efc761b2506ab2e256be752f2f9768c0583623e4016ae288e2519cec170d72ebf574de60e570418a61d1b555aed6c7d616adda19a2827b5936381b781c3f794d5e5ed2f8ec952c97b7908273193aeb4d52816061b80b57de35ce94ce92d89732e597d4c348409aac60f636efa9f1043215e28567407fe625549c5e14b8158c721804694577691fe4034f7dfc13d4726ab99512973988b23165a6af538f4f3f59a4da8df006243e233c7107294ddb08409408f52e241e4d15861f9b9705eb15c610d11154e96ed3204777fdfa8566db9d62c84908daf58107a76808d881552cd10ce2276d290076d18ab463340570361ed340a0d94dbed183bb5cd7a6080040c00504298ccaaafda5c7429a2bc01cc6f4b2355757eb03ac722b14bf8b9a2769a2b6868f343f387e266bca33e353e186d3b3adb3affbbce365a7acd1896c6a43c2c5acf820e49b6034fd9f694c39e43da1cdde656bc6d2b357848030044f33b93bb2dd3c935010360cb973385d2fab4b18027fdb7d739592af6a5cb40ed1d99ab6bed13fa65f04f194c9f98b8cb9eb83e6a50fcda183305ac4c35c143e66ec9b392190077aa8a90cc25b18b0067031ee8f74eeceecbc6e66c42921b5e7b47ef4684e0ffb7ff81ae7a8e1480a621b815bb3b7ebd62a607b3848c051a53836978134fd4cc1ee402a615dab9f0c10cc14196c853baa992d55e56d8e9ac59bcee4ee4ee4ee4eecbf782737cefd8ef2d567ea69ddefff0006e04b57d16be2ba43870191e207ad1e2108438923b86749c3ccc73024c26a7bdf88513c8ed0b5a11600d3a0b0eb1dd9de9de8fd8eb0daf5742274f01f60fcff00c245b8092f4a4614bb9a24742506f59266944a4bcddc6e4c4d3f7948bda5c3075303cc4f31ef83d3ef4b23c08b3178b5e886692ad33ef0478bfccc3aecb69f25cbc07ec9f433f111144a4d47eb4709f5a67fc6f0249aa9aae577d25a22c105311155b4dc3a259853df8dc74742ada70944444ed39862f87da29a0c57211ab78b98c7ae0c1d470c6f5093dd60ca00e0251826423716684a1e1d61e87b8c3c56bf1eb110a0d22523f54a685b5ff310220280349531aa22e961811a14c15324c2f5e8f0ecc3c29293a3b16d68f52e6e53236edd4021669e3843860e25f408d06509c98161495b341f68f24e6060c8723f514ff91dd63cc15001406d0ceef23a0b1906c974a9e95ea254516bcc577900ea8005bc05e232a168608910ab6b37a84a2cc6cc30ade491d4cf2c600da895827a8dd79e20fb524d5c8f4fee51284ec347c67e624a7cc5f98137e721f1a447603481f9fec8a98981a6c27d3806a98d3a1bbed710271057f9a4204c8c25b7b58f0e65e12d21a4d499a65464861bc79878b4308c46c86e291a7d17f1323e9c4ef87f537260b43e0d5e8a5645a4d6001bc6ca58c09da7af77784ceb4051065c6182158952f8941e0c09ef5f4fb263577697f1ef314a50ead4ff0034ff0078202372c1dd3fd1f9970ccb0d60520095225a47509d546f1a7963079e121ec06a4aadd85385a7ef37ae53ec7f7057e97a8d8868283a3c4b76e2c15bd0a5f3efd6dd8ea1d1e8170ebb3106e0dbf6fa7a988f2dbcb98310094929317265cb884c6e61e18cf4d29260332d3589a99af409d163306c93b378af89da46db9e215968164ce5acbdc295a00240a4cad5e6319a60bfd56f033fd7ac5bb31810750e8f5494d1233822f3df67c7d2bd088547865f819521b10c1188da292342deeb93f72b65bb4dfbc34332dde5bbc266b329b6ea7eecbe21a53a24c93d80c43263a334c0f0d0f74fd4d6e4c18eb12a241d3990cf395e3163fdfc7d2d347716ee5fb1ef2a087abd412ef2a1c9d9da6471ea76b33241a8cb6b32cacc575015159f00fcfe62740c524d56328433fb43024dc8cd1333df2f6b86bc11e23ea112083a2b4ab35f0e3f27d2d0c0cdadef4f8a871d07453238cebef1878e8181f997a35e4d1965660a10469c05b307d5aeba2462f8deb87534610e41aea7452e970c77abfc3d2947d43a8c30102e9fb33f8fa46bd6255b1bbed08b500083a08c71f80c20558d6185fa24ff000865c199405c39636ea91e872888644da6529d00187f51f560bc71b9ed72d31e22eb1d1eb93a6a1eff00483502b1e5c1f172a087a945334982282ef43db695bea13247035603434e80f5a89d0108905417c6758d5f6203c91608bac747adab297cd2f97e8eb21789e463ef70e2081d6fa0398a22d7269c388a268eeb14cd0183896754183d52317c269d09b4e13523eb1d1e9135a09c2b27be7e8f970871ab5982084638e38398a29701e0fbcd0cceecb3ae0c187448c5f32e80d1962ba76e7c758e8c30621ca002387d9f44a8d389c243ea8240f48c1f5aa9a53594aeb3350e9080120091869c190354a5f1fa6685fe7e207a420f4901e9103fe78e49249238a6b116173344080b48807f026aaa9594ea231557c1895fc017456de3feff00ffd9, NULL);
INSERT INTO `crew` (`id`, `firstname`, `middlename`, `lastname`, `father_name`, `mother_name`, `nationality`, `birthdate`, `rank`, `vessel_type`, `final_school`, `martial_status`, `waistline`, `uniform_size`, `blood_type`, `safeshoe`, `health_status`, `bank_info`, `tel1`, `tel2`, `address`, `city`, `english_level`, `application_date`, `passportno`, `passportdate`, `passportexpiredate`, `sbookno`, `sbookdate`, `sbookexpire`, `lincece`, `licencedate`, `licen_expire`, `image`, `file_destination`) VALUES
(65, 'Ko ', 'Ko', 'Ko', '<NAME>ung', '<NAME>', 'Myanmar', '12/02/2021', 'Student', 6, 'UCSY', 'Single', '100', 'XS', 'A', '100', 'good', 'This is bank info', '09260965397', '09260965397', 'NO28,11th street, Lanmadaw, Yangon', 'Yangon', 'Intermediate', '12/07/2021', '255266226', '11/30/2021', '12/01/2021', '123', '11/04/2021', '11/05/2021', '23424543', '11/06/2021', '11/07/2021', 0xffd8ffe000104a46494600010100004800480000ffe1017c4578696600004d4d002a000000080006011200030000000100010000011a00050000000100000056011b0005000000010000005e01280003000000010002000001320002000000140000006687690004000000010000007a0000000000000048000000010000004800000001323032313a30393a31332032333a30333a303100000f90000007000000043032323190030002000000140000013490040002000000140000014890100002000000070000015c90110002000000070000016490120002000000070000016c910100070000000401020300929000020000000430313500929100020000000430313500929200020000000430313500a00000070000000430313030a00100030000000100010000a002000400000001000002d0a003000400000001000002d0a4060003000000010000000000000000323032313a30393a31332032333a30333a303100323032313a30393a31332032333a30333a3031002b30363a333000002b30363a333000002b30363a33300000ffed007850686f746f73686f7020332e30003842494d040400000000003f1c015a00031b25471c0200000200021c023f00063233303330311c023e000832303231303931331c0237000832303231303931331c023c0006323330333031003842494d04250000000000103d71b58b39b90bf3ff9f3aa4e214e363ffc000110802d002d003012200021101031101ffc4001f0000010501010101010100000000000000000102030405060708090a0bffc400b5100002010303020403050504040000017d01020300041105122131410613516107227114328191a1082342b1c11552d1f02433627282090a161718191a25262728292a3435363738393a434445464748494a535455565758595a636465666768696a737475767778797a838485868788898a92939495969798999aa2a3a4a5a6a7a8a9aab2b3b4b5b6b7b8b9bac2c3c4c5c6c7c8c9cad2d3d4d5d6d7d8d9dae1e2e3e4e5e6e7e8e9eaf1f2f3f4f5f6f7f8f9faffc4001f0100030101010101010101010000000000000102030405060708090a0bffc400b51100020102040403040705040400010277000102031104052131061241510761711322328108144291a1b1c109233352f0156272d10a162434e125f11718191a262728292a35363738393a434445464748494a535455565758595a636465666768696a737475767778797a82838485868788898a92939495969798999aa2a3a4a5a6a7a8a9aab2b3b4b5b6b7b8b9bac2c3c4c5c6c7c8c9cad2d3d4d5d6d7d8d9dae2e3e4e5e6e7e8e9eaf2f3f4f5f6f7f8f9faffdb004300020202020202030202030503030305060505050506080606060606080a0808080808080a0a0a0a0a0a0a0a0c0c0c0c0c0c0e0e0e0e0e0f0f0f0f0f0f0f0f0f0fffdb00430102030304040407040407100b090b1010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010ffdd0004002dffda000c03010002110311003f00f87eb36f24a248e5a24b7964acce333a49297f7bb2b42df4ba2f23ad0e80d2e4f92892b0fccf2eae697a87994019f27dcad0d3ff0079e651aa5c451d1a5de57601d0de47e5c759d27dcab7249e655493ee5741c667c91f9759d79fbbad1924f32b93d424a002493f794daa1be5a23f364a0d3da1a3e67cf49249e6252f9749247e657978da8665bd0f4b964ae8af34fad0f0be9fe6257b4e9fe178b508ebe5aa634f73054cf9aa4d325df4491cb5f65d9fc338a44fb95cf6a9f09e593fd5dad614b1a7b1f523e4afb3fc9447a7d7b4f883e1fdd469fbb81ebcca4b3974bff588f47d74f1ea65c5b8ecfcb4a24aa91f883f77e54956e3d53cc4af4a9e34f1ea6082cef3cb4ad08e4f2eb9e92f3cb7a34bb8f31ebd2f6b4c29d3347fb43e7ad68f50a87ec7154be5f975d0741a3e67c9e5568c7279895cf256b799f25739c64325e4b5c7492796f5d0c9feaeb98d43ad00674927994be67c9e551e51a9638fcc4f36ba00cf92b26f3ee56ac91d64c91d0073d27dca86ae797e5fef6b2750f36802df9959324b16fa23f36b3e48ff00e7a5006749f7e9d4d924f3288fefd0011d11d11d11d694ce7a65aa59239647a9e9b1d741d950cf923964acf923ff009e55d5565c91c52568064c91ff00cf5aa71c7e5d6bc91d09feae83a09eaf6976f546af69f245d6ba0e7a612567c9f72ba793ca92b2648eb9ce8123fb959fa876ad18edfcca3ec028a606769fdeb423fb95a36fa5c5449a7d1500ce8fee5127dca58e4f2ff75491fdca0e1a86bc727fcf4aedf478fe4af3db7ff5d1d7ac68f1fc958fb4289648ff00e7ad457927c952eb1587249546873da87dfa58e3a350e9469ffeaeb43a03cbf2e3ace923fde568c925415d0075ba5c714695e9ba7c72c895e3b65feaebd8bc3741c667ea9e6c6f49249f256bea11f98f593247e5d73818724959f27dca8754acf92e258d2bcf035a3925a83edf2d508e49647ad6b38fcc4a00a9fbdd9fbc7ad08ecfccff0055514927971d6de9727c9401932511c7e5ff00aaa8b54fddc749a5ea9e679f1573813491f96f56e38ff7951c9feb2a0f365a00e9fcc8a3b1ae7a493cc7a87ccf32aa49e6c6f5d0684d2491799449f72b0e4d53e7a3ed9f250741b7a7de4566ff0072a6fed0f32b134bfde55cff008f3a0e3357fb465f4a238fcc8eaa4727991d6dc71f969401ffd0f8a63f2a4a2f23ac3f33e7f2aa5f33ccaec38c54a248fcba248e58e9238e83a0c9bcb3f328d2f4b8bccad1fecfa9a3f2a3acc08754b3f92b3f4bfddbd5bd52f3ccaa9a5c7f3d6806ac9254579251249ff3cab3e4fb95d07390d61ea967e656c56449f7e4ae7f69ed02a15248e5a238fcb7aa72568f97fbbae838ea16e3f2bcbaa9247e63feeea0ab9a5fdffde579b8c0a67af781f47baafa7f43d1e5d91c55e7df0ee38a478ebe9f8e3f2d2bf31cc8fd0b2ea645a3e975e9ba5e9716caf378f50963a24d6258debe67fb48fb6fa91e8faa781f41d513caaf28f147c038b50493cbaeb34bf124b1d74d1f8e2ea38fcaa3fb487fd9c7c0fe24f80775a5bc92f975e25aa784eeb4b7f2b657eb2c7ac5aea9feb12b99f167c3bb0d62c6ee5892bb29e627c7637047e5d5bd9ffcf44aa9247146f5ec7e34f03cba1df49e5579649257d560b1a7cdd4c17b308e48a3a238ea2f2fe7ad6d2e4f92beaa9d43c7a8167a7d68f94688bad12f5aee0a673cff007e4a864b38b654db29248e833399d43ad54d3e3f3124adc934bf31e88e3f2e3a00e4a48eaa5e7df4aeb64d3eb9dd523f2e4a00e7dffd5d64495d149fbcff00595cf491d0064de7eeeb26493fe7a5757796ff0025729247ff003d28033a4fbf4471f995a3247e67faaa4f2e58ff00d5bd0051a2b428ad3da1a7b30a6c74be54b49e5d07416aab4925249557cc8aba008ea94927cf56e38e592a2b88eb8ceaa74c96392b474f8fccac8d2f4b97ccaf43d1fc2f7f2561f5936f6661ea91ff00cf34acff00dec8f5e9ba8786e5ac3fec3ae2a98d1fb3a871dfeaeb6e3adc934bf2ff00d55431dbcb1d14b1a1f5622b38ea5d523f9288e396a5934b964adbeb82f66713249f3d16767e657592786e5ab7a5e8714747d70c7d99523b7f93cdaedb4f93cbb4aa92697f3d68c7a7d63ed0e3a94c24ae7b508e5aedfcbae67588ebb29d431f6671ba8492c75369f1f99449a7d5ad2fa5767d74e822d423f2ea28e3f32ad491d548eb6f6873fb33add3fa57a3c7279695e6f1c9e5ba577ba649e625507b3376b9d93cd91e4a24fbf491c95ce073f25bcb5524d3ebacd43ee5676a1d6b30399fecb963a4d2e4963ad1f33f7751697f7ee28330923f33fd656dc71d1f633fdfad0fb3cb401ccea11f98f514767e5bd6dea1d6a1b38fcc7a00cf92a0aebb50d2fe4f36bcf64d42803529d279525677f6a7c95169f2798f5ce025c69f1567c91f995d3ea1d6b8edf2d00411c92c75b91ea1e6543fe97fecd451c7e5d7401dbe9f1f991d68ff00ab4ae7b4bb8f2eb6fcd8a803ffd1f8ba4d2fcba9a3f2a3ae6354d525ace8e4964aec333b2bcd4228e4acf8e48bfe59561dc492d1a5de4b5d06874b58b2472d6d55193ee50061491d2c7492494bfeb1283313cbf324a24b7f2e96ce4f2eaddc74a00ce7a8a48fe4a864925dff00eaea2fed09767955cf50e73264fb952c7279959f26a116fa96dffd65719c750d1f28d431c9e5bd43a86a92d54f33ccfdd4958e20299f5e7c27d53cc78ebebb8ff7895f11fc2393cbafb1bfb53cb4afc9735a87eaf931a124759fe6c5e65677f687995a31e9f2c95f067e8b4cd58e48aa2ff59279b447a7dd7fadadcb3d2e83d2a74ca9fd9fe5fef77d6ae97aa4b1a79551491cbb2b0e4fddbfeea83cdc6e088bc71e13fed84fdd257c3de38f03cba5df7eed2bf4234fd522ae1fe20784e2d613cd8d3f795ec60b1a7c5637047e767fabfdd52c727975e9bae780e5d2ef9e5ae0a48e58dfee57e9182c69f118dc11a3e679759326a1e654b2472ecac9f2e5f3315f607cefd4aa1ad1c9e654b247f25548e3f2e3a5924f92827d999d712797feaeb3e493ccad09238a4aa92471475d074193e65626a1e6d7631c71495c9eb11c51c9401c74924b54fccad77ff57593247147400492561c95b927d96a0a0e7f66735fbd8eaa49e6c95d3495a36fa5f989407b3382f2eb46392bac934f97cbfddd64c9a7d73fb5a66d4e9d421f328924ab7fd972c747d8e5a3dad33b7ea750e67cd97d2a18e3f32bb28f47ba92bb1d0fc172c95e754c69afd48e234fd2e5b893cad95e856ff0eefe4fdeca95ebde13f87ffe9c92ecafa7f47f07c5b13e4af02a66276d3c1543e18b7f07cb1bc7f257b4e87e079644fb95efd1fc3f96493cdd95ebbe1ff05c5a7a79522578f53313d7c1608f8ff50f87f2e6b124f867732257defaa785ff0079fba82b47fe10796b93fb44fa4a7971f975a87c3fbfb37ae7a4f0fcb67e5f9a95fa53a87c33964af17d73e17cdbe952c68ffb38f8ba3d3e5df5d8e97a3cb257d2ba7fc2ff009fee257a3e9ff0bfb57654c69e67d4cf8e7fe1179648fee568c7e079634f37657dc3a7fc2f8b657591fc3bf92b93fb44f37ea47e68dc781f54f33cdd9449e1b96dd2bf48e4f8776b1d711ac782e28e3fdd2256b4f310fa91f06c9a5cb1ff00ad4ac3d434b96f3f75b2be9bf12785fcbff555e5971a3cbe67dcaeca7989954c11e2faa6872c75936fa7cb1bfdcaf7e93c372c91d67c7e17f9fee57d07f685330a9823c9ae34b97679b5cfc7a7cb257b9ea9a1cb1d8c9f27975e45259cb1bd4d2c69e3d4a643e5cbbebbdd1ab274bd2e5b8ff590574d1c7e5d7a54ea019fa8475876f71e5bf955b9a87dcac8f2fccbeaf4bda1e796ef24f328fdd6cacf923f2eb4abb00c8f28d429feb2b452b39ffd650739ad1c9ff2ca4ae87ccff41ae23ccf2eb47fb525f2fee56666675e49f3d4d67aa451c959d79e76fac48e497ed71d68076faa6b1e658f9515727247f256df9717d87ccae7a4b8968008e3f2e3a34f93cb8eb0f50d53cba9b4fd53cc93f7b5981d0c924b25548f4c977d685e7df4a5d3ff00d6495ce027d9eae47a5f99449f72923d4258eba00d1fecbf2e3fddd67491f995349a87c95149a85007ffd2f84bcbfb651e5f975159c9536faf50cca9247f3d4b6f6f5379715247a84b249e55739a11f952d249e6c695d3c9fbb4ae7ae248aba0cce62492591eba1d2e3f92b26ba7d2e4f93caa00e7af23f2deb42ce8d42cfcc7a23b7963a00cfd5238bcbfddd727e5fc95de4967e6573d26972c6f41c6731269fe63f9b572ce3f2e893cd8e88e4fde5739cfecc4d523976562799f3d74f249f2573127ef1ebc3c61b61a99f4afc27d4ff791d7d7727ef2c6be2df84ffbb78ebeccff0059631d7e5398d33f5ccb88a3f363be8ebd1f4bbc8a44ae4f4b8fccaef347d2e28ebe27d99fa161ceb34b8e2923ab9247154367279755354d52b8cf608b50922ae3648fccab7a86a9e6573325c514ce1a85a8e3f2ebadd2e48bcbf2a5af3792f289354f2dfcddf47b4f6679b50eb358f87f16a763fbb7af9abc51f09e5d2de49637afa3f4bf1263aba574526a9a5ea89e54bb2bd9a798fb33e6ea608f80b54f0dcb1d79ec9a5cb1bf9bbebef7d73c0f6171e679495e0dae7c3bbf8ffd5dad7d1e0b3ea87cde3704780c77959d2472efaef6f3c272d9bfef607ae624d2e58dff00795f7982c69e3d4c119f1c72f975cf6a1257a0c71c55cfea11d6df5c3c1a94ce3639258deb3f5893ccadbd43ad6249fbc7aeca750a393fdec6f492495d149a7d54934b968f68739cf7972c949fd972d771a7e8ff0068aeb34ff09f99fba8d2b1faed33b29d33c724d3ebb7f0fe8f14895e9ba5fc3ffed0793cc4af68f0bfc27f2fcbf32d5eb8ea634f629e18f06ff844ed648eb463f01c55f5dc7f0be28fc8ff0042ad08fe17c5e5fdcaf0aa6627653cb8f8ba3f87f6b25743a5fc2fb592bec18fe19c51d6de97e07b58ff00e58579bfda27b3fd9c7cb5a5fc27b0aef74ff84f6b257d1f1f82ed6ba18f47b5b74ac6a6627af4f2e3c9f43f84f157b7697f0ee28d2b5b4b9228e3ae863925ff009675f37531a6df5329e97e07b08eb464f0de971d6b47e6c9537d8eb8ea634f629e08c9934b8a4a24d3fe4ae87f751d50ae2a98936337fb1fccaa72781e292bb2a9a393cba29e340f31b7f87f6b5d169fe078a3aefaafc725767d70e3f6664c7e1f8a3aa926971495d0799573cca3da0feac72779e17fb65727a87c3ff32bd8e3928923f324a3eb82fa91f326a9f08e293fd6d73f71f04f4bafb03fb3e2ac4b88a2a3eb878ff523e33d43e0fc5447f06e2afaee4d2e29288f47b5adff00b443ea47c27e28f84f17d86bc2e4f83717995fa9faa785ec244f2a54af3d93e1fdac6f5d74f313cea9971f9fb27c27d2f4bb1f3763d79678a343fecf7fdd57e9af883c0f14963e54695f24fc40f03fd9e393e4afb6c1634f9bc6e08f8fef2396aa59c75d0ea9a5f96f2573d27dfafb0a750f9aa94c350ff56954e3a2493cba5f322912bdea6729cf4727ef2ba2ac7923f2ea2d52f3e4a008a493f794472799fbdaa7feb1eb72ce3f312b338cc4d4fcedf5c947279725771a87952561ff0067ff00a750068ff6a4bb3efd725715dc7f67fc9e6d73dac59d680727269fe6568697a7cb1df574fa1e97f6c7aec750d1e28e3fb95981cf492451a7955159c959da849e5c9e551a5f9b23d00745491e9f50c7fbb4f2a97cc8ab9c0a9a84749a5dbd5b924f312b3e393cb7ae803fffd3fcfd92ad69f2799536a967f3d548e4f2ebd438cd17ab5249146959f25e45beb4a83a0d5d2ef22b8f33cd4ac8d523b591eaaffab4ac8924a0059248a37a23d42b0f548e5df56f4b8e58d3f7b5cfed0e73a1fb679959d279dbe8923f2d2b3e4925a3da1d0687f6a0a5fdec91d64c7792d4bf6f341ce1a847fbb92b99f2e5df5b725e798f551ffd6514ce82192497cbf2ab2a3d2e5ad6f322a23922af37104d33d33c0727d8de396beccd1f54f3234af8cf43b88a3782be85f0bea9f2475f96e647e8595543dcecef22aef74b93e4af2cb3bcaef74bd522d95f0350fd730874d26a1f2564ea97156e493cc8eb9ed43a57827b067c9256749279756e4aa9249fbbaeca679664c92564ff0065cb247fbd47adb8fc9df5d959c76b225635299e6fb33c5f54fb569f447aa5d47257a96a9a5dac95e71aa4715bd6263eccd0d2fc512c6ffbdaf63d1f54b5d623f2a44af996493e7ae9b4bd62ea0f2fcbaeca7502a608f4df147c3ffed4b1fddd7cf9aa7c2fba8dfcdd95f4268fe2c96f1ff795e85e5c5a8279b5f494f1beccf9ba9823f3f350f0ddfc7e67c95c1ea9a5dfeffdea57e89ea1e07b593cc962af1cf147c3f9638e4f292bd8a7989f1f53047c47269f2d61ff0065cbbebda35cf0bdfc75ca7f65cb1bfef23afaaa78d32a98239dfecb15a3a7e9fe67fac4aef23d1e5bc4fb8f5d6e9fe07977d726371a2a782393f0bf84e592fa3f293fd657b1697f0deff7c7f257acfc3bf03cb1df47e6a57d4ba5f86e28e3fdd57ca54cc4f7a9608f9ab43f87f2c6f5ec7a3f86fec75e9b6fa5dac75ad1c71475c753313d8a782a6796c9e13968fec7963ff58f5de492567c9fbc7af3beb950fa4a74e99c9fd8fda8934b8a3aeb3ec71543b2b0f681eca99ccf99e5a526c96ba2934baa9f6296b8ea543b034f8eb5acfcaa863b396b4638e8f6804b1c9fbbad64ac98e3ad1fdec6f5e6d4a804be5f994471d1be8df58fb4332e55ab3b3f32b2f7ff00b69566392ba0e737238eadc767e5a5548e496b56b9fda1d065491d11c7e6543712516f257601a3e5f9750bd47492495c7ed00d68e4f328f34d672568c7fbc928f6806449f7e88e4977d68c91d4b247151ed0e7a8558e3f328923f2eadda74a2f23f328f68064fd8fcc8fefa57cb5f1734f8a3b5afabe4f2b657ce1f162ce292c64afb6cbb1a7c7e3699f983e31ff008fe7af3292f2bd5fc711c5f6ebbae0ef2de2f32bf5ac1543e0ea1c1ea9e6ecfdd5686971cb1a7ef6b73ec7155bbc8e28ed3f775f407cdd4398d43fd6567491fc95a31fef2fbcaa9af23f2eb40398f2ff00795ad1feed2a2bcff59fbba3f7b24741994f54b8ae7e3d43e7fded68491ffcf5ac9fecff009e803b7fed0f92b3f54fde279556e3b38bcba49238a3ae80174393cb7aeb354d53f7754f43b78b679b4bac475a01e65aa4916faeb34bf2bcb8eb0e4d2fe7ab71c7e5d6606b491d43247e5a52e9f7949a849e650065492799feb2a18eb23edf2d2c7792effddbd007ffd4f84deb2648fcbad08e4fde54b1c75ea1e79914b1c94496ff003d11dbfcf401ae950c71f9953797f25436f27974019f269f5a11c714695a325e45be8fed48a48ebcba8073de5d64dc5bcbbeba192f3ccac8924977d660558f4b96aa5c5bcb1d7431c9e5c946a125694c0e6238e5a2f23f2eba88ff00d625249a5c51d765303cde48e5df5b91c72ecad092ce2a248ebcda8694cb7a3c92ef8ebe95f0bc9f25a57cd51c9e5c91d7ba781f50afcdf31a67d865d50fa274b93cb48ebacd3ef2bcca393e4ad1b7d525b7afcdea1fb165c7aef995a35e6fa7eb9e656b7f6857cdd43ea8d0d43efd733795adfda1148f56abd2a673d4394fdec7257436faa797552f2b2648fcb4fddd150e32dea9aa4b5c46a9e6c956ef24963ac4b8965a00a91c72efae9a38fcb4ae67fb40d11ea12dbd14cccef34bfddbd7b1e8faa7eee38abe60d2f54977d779a7eb9e5bff00ac7aec3cba87d41a5fef23a4d434bb0bc7f2a54ae0f43f147c91fcf5dee9faa4578ff7fcca0f06a53388d63c176127fcb04af16d53e1fc525f7eee04afb0648e293fd6255bfec7b5913ee57a54f1a63eccf9c343f8776bfbbff42af57d3fc076b1f97f2257711e97169ffea92ad7da2ee9d4c698fb322d0f47b5b3923f92ba7923fde561dbc95d0f97fbbaf20eca74ce7a4a3ccff9e75a127dfacff32592bcb3dea74c248ea2f34d7436f1f98952fd8053fac87b3398a9a38fccae87ec0288f4ff002e97b40f6673de5d68fd8056df974471f99256676193fd9ded52ff00658ae8bec0293ec715007291c72d1247e5ff00abaeafcb8a4a8b54b7a00e2a9f1c95a3b2a3ae1a863ed3da18f5d147f72b9da9bed92d5189d0c7255bf33ccae36ae4779e65761d0761557cc8a88e4f323ab540195e6cb5379a6a2a2839cd58ef2b63ed83fb95ce5bc75a327eed283a0d0f3284ff00595cf799ff003cdeba18ff0078941c35023a9a5eb50bff00acacfb8bcfecf4a029849fbbb1af9efe2049e658d7a3eb1e24fecfaf9efe206b1e627ee9ebd2c19e4e30f87bc611ff00a75dd79649f7ebbdf165e798f772d7051c72c8f5faa65c7e7b8c0923ac4d524f92b6ef23ac4d523f92bee8f9930f4ffbd5ada875ac4d2ff777d5ad27ef1eba0f3ce764fbf56e393ccab9e54545e47146940193249146f56e392291eb88d524a34b92803bc92b3e493e4fdd55bfed48a34aa925c45256806de9727c956f54fde2564e97245b2aa6a9a84b1bd74010de7df4a8bccae664d43cc7adb8e4f32802dc75a1247e652c76f155a8e3f328038ed534bacf8e3f2e4fde576f269fe65167a3d007ffd5f83638ea64ab771245a7bd6747a87cf5ea1e785e4759f1c9fbcad0bc93ccace8edfcca0d0e8a393e4ace8fee51ff001e74471f99250067ea1feb28f33e4ad6d423a864b3fddd7381871d5aa9e3b7968923ae3a6150c99248a3aa925e799516a11d431c7401b71c9e655c924964a8e3ff005955e38fcb8ebb0ccab249e63d4baa49e5a545e5fcf49a87fabaf36a134cca8e4fde57b1781f588b7d78ef975b7e13d4258efabe571b4cfb6c1543eccd2ef229123ad68e3f9eb88f0fea9e64695de47fbb4f36bf2bc6d33f54c15435a393cba24fb959f1c9e63d687995f2b50fb0a61f68a3cca864922a9a393f775b53a66d5023bc96b46493e4acef32b3ef24f32bb0e534248fcb92b1248eadc927971d64de5e5073993791f96f59d247e6568c9279946cfddf9b599e799d1feedeb474f9258ff7b59de5fef292839cefacf549634fddbd779e17f144b1bfef5ebc1a3bc963ff0058f5b7a5ea9e5d73854a67da5a3eb96ba83d7791dc7975f1ce87ae4b66f1fcf5f44f85f5896448fcda3da18d4a67ac491f99feaeaa49a5ff00cf3ad1d3fa56df975c7ed0c7d99cfc76fe5d4b249573ca9693cbff009e75c7f5d3b29989249491d6e491d67491d1ed0f4a9d42dc727975347279959d1c953472455c7ed0a36e3ab558bf689a8fb44d5d006b54958be651e657a0719b9e64547991562d41e69accd0dbf322aa9249552392b3a493e4a0cc649feb2b1e493ccad6df593791f96f4019fe65684725624927994b413eccdafb453ab363ad0fb3d6851ad1c9e654de67995931ff00acad68eb339fd99a11c7e5d1e5f97447255b8e3f3280f662555924ff009eb5a31c74491f9741d067471f96f5a31c949e5d2c71ff00cf4a09f6612495c16b9ac456f5b9aa49e5f995f3df8b35cf9e4a029d329f8935cf324af2df1249fda163e556b6a1fbc93efd64eb11f9763257a5971f2f8c3e55f187eede4ae0b4f922d9896bb1f1c49e6492455c1c9fbb4afd4f2a3e0f18686a1245d6b12493e4a2492893fd59afbb3c1392ff0097babd4df2fe7928923ff96b1d741e599d2492c759579a856b491f991f955c9ea1feb28332a6a9fbca34b8e923ad7b38e8025923f323a97fb3fe4fb95349fbb8fcaa863d43e4a00d6d2ffd5feeeaa6a91f99572393e4fded53924f324ad00e524d2ea54a749feb2a48ef3cb7a00eb34b93e4a963bcf2ff00d5561c7252c924bff2d6803a1924a9639228eb93fed4968fed0977d7401fffd6fcfdd53f795932472c75d34927ef28ff00591d7a8719cf4724bff2d6b463bcf2e8923f2e96d3fe3ea83a0bf247e67ef6b3e393cbad0f33cc4a7500364d525a2393ccad1bcb3f92b3a4fddffaa4a003cc8a3ff5559f249ff3cab43cca3ccae7f664fb331248fcc7a238ead491f99feaeadd06c65d1566f3fd61ac093fd65741997e493cb7ac4924f32b4aa947feac5739c645fbd8ff0075469727977d527fcbdd47feadebe5f187b982a87d4be07d52292c63af52fb679695e01e03d43cb8e3f9ebd93ed15f97e634cfd532ea86849a8796f47f68573d249e64751799ff003cabe26a533edb0550dcfb64beb49fda72d627991543f68963aeca74cdbda1d947a85432495cf7db28fed0f92a8e83724d42aa49e54959326a14477941ce6854de67c9e6d73df6f35ad1ea9e6570fb33325a9a4b78a88e3f324ad2ac6a019b1e97fda0f447a5f96f5d0d9c7155a923ae33433f4bbcf2efabdd3c27ac796fe5578e59dbfcf5de69ff00bb78eb338cfac343d53ccf2ebd23ccaf0bf0fea9f3c75eb11dc797418fb336ab3ea6f32b3e4b8f32b8cee2d55193fd654925c451d6249715ce7192efa37d64f99447256606e79953573bf6c8a8fb47cf401d3f9b1543fda7fec560515a7b43437e493fe7ad54fb4564c9279959f25c57a8761d347279945e5e57311c9e655c92f28025924ace924a5924f2e3ac3924ff009e5418fb3347ede28fb78ae7a493ccaa9712506c76f6727fcf2ad09248bcbfb95c44724bb28f32803b78f54a23d525ae4e392b592803ac8f54ad68ee3fe7a57071fdcae86393cba00e9bedf151f6f8ab0e392a68e8036fccf3296392b3a38fcbab927dca00e1fc59aa7969257ce1aa79ba8495f47f8934ff0032c64af2dfec7f7ae1a8078e6a9fbb4ae2358d525fb0cf16caf5dd734b8b7c75e65e24d2e28d24afa0cb8f91c61f27f8a3f792492d727791d77be288fcbbe92b82924fddd7ea9971f9de3699ccc9feaea58e4f3128fdec9251e5d7da53a87821e67ef2add65d6d47f72bb8f3cc3d43fd65711a847fbc92bacd524ac0a0e331e3b7f31eba68ece28e4ae4fccf2ea68f50f9e803b2d423976564ecab7fda1e656b471f991d68067471cbb2a68f4fae87cbf93caaa1401c8ea11f975cfc7f7ebb1d423ae4bfd5bd7401a31ffab15d3d9e97f6cae223b8aedf4bd53e7a004b8d1fcbaab1e9715743aa5e7c95e7b26a92f99fbba00fffd7fcfc93cda58fefd6b6a1e5564c7791475ea1995754eb5254d2527f658a00d18e48bcba3cb8aaa7d8055b8e3f2eb9fda00be6cb59d27dfad0f32b3e48fcba3da00da77db3cca8638ea6b38e801b4ed3fad1247e5fef62ad08fee2566067ea1feb2b98924ae9a492b9492b439fda0799f251fbd91e8f2e2a4f2fcb92838ea13471d43249e5d2fda28923f323af9ba86d82a86b785f5cf2efbcadf5f4a69fa879891d7caba5e9fe5df79be5d7bf68727fa2d7c4e3699fa765d50ecbed144952c7a5fda2a6934b964af83a94cfd2b06538e4a593ee511e972d126972d51b14fccf2ff754b1ea1449a5dd49449a3dd475cf5299e809e645254d1f95e5f95beaa47a7cb1d5bb7b3f32b1f667406cab7a5c72efadc8ece28eb5a3d3eb1387da059de451d68471f995524d2e5f33f755b7a7e9f2c7fbdd94142c7a7cb1bd74367a5fdb2b6f4bd3fccaeb34fd2fcbaf1ce73938f478a3aeb34bd2e2ad1fb00ae9b4fb3acc0d1d1e3fb1d779fda15cce9fd2b42803a78f50fddd125e4b25731bea5df2d7181a325c4b1d67c9792d1e6542f5ce04bfda82a2df51d15c6049fda953472797556a48e396ba009a4d42a1fb65655e79bbff00d5d491f9b5d54c05935496b264d52892396aa496f2d150ec2dc7a85687f687995891c72d2d501b7e6cb59d251e65677db2bb0e80923f2dea27a92a37a00b71c9f252799514727c9537faca0e72de9f2574de67c95c6c7573cca0e33acd3e4ad0f32b99b3bcad58e4a00d18e4ae86392b9e8e4ad18e4a00e968acadf151be2a00b7a85bc5227ef6b83d52de28ebac9350ae4a48fccae1a8761e51e24d2e593fd55793ea9a3dd6cf3654afa7e3d2e2d9fbdae67c59145f6192be83067c8e30fcf7f18697e5d782c91f96f257d0bf1124fecf792bc46f23f323925afd532e3e0f1873f52573cffeb288e4f2ebeea99f32686a1feaea63279695955abe67eefcdaf50f3cc4d524f92b16b6b50eb59d1d739c65492cfccac38ece5f32ba793fd5a5548e3f2e4fdd50011e97e63d76f1feed2b0e38fcba2493e4ae80372393e4ac492496cdeb6f4b922d9593ac573819f25c452573dfd9f16fa97f8fee512472d006b47a5c52568c7a7ff67bd53d3e49634ad2a0083588e5b84fdd555d2f47fc6b424d428d2f54a00fffd0f83648fed9589fd9ff003d6ed66c927995ea1c750963f2a3fdd56e47245beb9d923a58e3963fded0074de64527facace93caac9fed4147f6a0ae73a0d19248a8f2fccaceff00594b1c9e5d7180491f9749be5ad1924f323fdd567c71f9925667392c92799517fab7ad08ecfcbaa9a87dea0ccceb8ae7a48e591eba2924a82b4031638e5a24bcadb924f92b1248fcbfdd5073d408e4fde5759e5f969587a5c91475a3f6f8bcba029953ccf2debb7d1fc595e63aa49e6494b6f1cb1bf9bbebe571b4cfb0c1634fac343d52293cbaf52af997c27aa4b2489fbcaf638e4963af84c6e08fd23058d3b2d91543e5c5ff002d2b93f32b46df54af00faaa750e876454924716cac492f3ccad68f4ff00312b33d2393d523fde5508ff00d657a0ff00c237e654b1f85ebcbf6807296ffeaebd3343d3fccaa96fe13aeb343d2fcba0f3cd18f43f32bacd2fc275a367f7eba0d3e4ae3039e8f47fecfadc8f4b8aadc9fbc4a48e3af3cd05934b8bcba48e3ab9249f25676a35c3500d6924963a3fb4eb9e8e496b42392b8fda01affda02ae573be5d6b47feaeb103412a4acb924f2ea192f2ba009a4ff5759dfbd91ea192e3ccad1b7ae7035b4bb7f4ad68e3f2e974ff00f5759da86a9f67ae80342493cba863bc8b6571326a9e6512492d755303a693ca92a3ae33fb4258e8b3d42592a80e9f651b2a1b7d53e4a9a3d4283b024d3eb264d2eba0fed18bd697fd6500725e5f97593a849e5d76525bd73d2697e650061c7256ec7f7e93fb2fcb8eaa799f3d0719b5557cba58ef3cba97cc8abb009a3fb95abf6cf2eb12a293cda0e836ff00b4eb463d52b9392f288e496839cede3d43e4a3ed15c9c7a84b25687db25af2c0dc92e2a1df593fda1e6511c9e63d6606e47fbc4ae4fc41a5ff00a0d7431c952ea9fbcb5afaacb8f27187e6dfc5cb3f2efa4af0192be8ff008c91ff00c4c64af9c2493e4f2abf4ecb8fcdf1871179427faca8b54fde5dd1a7f5afbaa67cc92c9feb1eaed66c927ef2b6e38fcbaf4bd99e3fb330e48e592aa7d9eba8fb3d4124741c750e7e48fcba863a9750fbf59f1c9e649fbaa00e864ff566b3e493cb48eadc9245b2a9de47e63d741d05cd2e4f928bc93cc4a34bb3f928d43ad73d402a496f1474471f9950c74492566068c9fbb8ff0077552f2f3e4a23d522912a5fdd49401c75c497556f4f925f32b424b7fde54d1c7ff2ca3a00ffd1fcfd8ef2b42f23ace8e3fecfff005b4b25e7995ea1c63697ed12d45b28d95ce7413471f992553923f323ab91fdfa4923964a0e7228e4a2a28ede5adb8eceb8c0ce8e3f92b463f2bcca248fcbae4fcc97cccd06675926a114759f7979ff003d2aa491cb25677972c959816fed87fb9459d6b47a5c550ea11f971d0067ea1d6b124adbd43ad626a1f72839ea1872492d2f9b2d6749f7e88e3f32803592b5a3922d9592952c727c95e5d4a67b5873d37c1faa7fc4cbcaafa7f4f8fcc8ebe44f0bf9bfda31f9b5f56685ff001ef5f17991f61971a12511c7e65431fdf7ad6b3d3fccaf87a87e858733a3d3fccaeb74b8fcba863b3ad68e3af1cf70e874ff00bd5d3e9767e6fef6b8d8e4f2eba1b3d53cba0e83bd8f4b8bcbacefecff002eaa47ae7995a11c9e6507391471d68dbde4b49249e5d2578e07471ea156a392b94b793e7aeb23fbf5980da8d2a4a2b86a1d0471c7e5bd4d1d26c96b4eb94e7248ff00d5d127faba87cca2493cca00cf929b4e9238a8f2e2ae701238eb5a38ea28e3f32b4638eba00db8ff007695c76a927ef2b564fb95ccea35c6067a54b25c7eee8bdff5955abd0a606149256b697fbc4ac9b88fe7a974b93cbaf500e9fcbf2e3a48fee5657db2b56393cc8eb8cc6987995b96f25733ff002dab6e3ff562bb0d8dbf2fcca5fecff92aa5bc9f3d74d1c91489401c15e5bcbe5d45fd9716ff00de57a1491f9959379a7d70d4038e923f92a1fb1d74ff00d9e28fecf14533b0c8d2f4bcd1247e5a56bc71f969593715dc6654923a248ea5a248eb8cd0c9fed1ff0062adf99e67faba8a4d2fcc7a863a00b71c9e5d5b8e4acff33e7a8eb9cf3cd98f50f2e8d4354f32c6b94d524f2eb42393cc8ebe9b2e386a1f1ffc688fcbbe925af97e48ff007924b5f5dfc608ebe56afd3b2e3f33c61e63a847e63d247254dac5415fa160cf0474927ef2b423922ae7e3fbf5a11fdcaf5a99e2d4a86849aa79759f26a945e7eeeb3bccaccf36a13492799553ec7e5bd5ab393cc7ad7f2fccf2eb9c0a7e5c5b2b12493cbae9e4b397ec35cec9a5feeeba0e82e59ea1e5dad54924f31eaa471cb1a5548e3945f570d403a18e4f2eb3a493cb8eb47cbf93ccae6a4ff595b0104779e5d7431c9ff2d63ac7ad2b38eba009a49228ea1f33ccac4d628d2e3f32b403ffd2fcfd924f328d3e3ad58fcaa5bcbc8a3ff575ea1c643247fbbaced92d2c9a8798fe55684727995ce067c7f7eb423fb9536ca365719d04325e511c92c89449f72a5d3e48a34aec39c2492b2a48fe7fb95a9ff210a8e48ff795d0011fdcfb952c7e5532a09249637f2a2ae73a0d59248ab9f92f2924b8f3297cbf32b8ce333a493ccacf923f32afd57a0e731e4b3f2ea9d696a1feb2b22492b33a0248eb2a3fddf995adbea3af2ea1d54ce93c27aa7977d5f63785e4f334aaf8bf4ffddbc75f4ffc3bd43e48e292be2731a67d9610ef64a34fd53cbaeaf50d3fcc4ae6754d2fcb8fcdaf89a87db60ce9edf548bcbfdea256859ea91489fbb7af16bcbc963ad1d0e497ed51c55e39f547ac7fcb4ad1923f93cdae4e3925aedf4bfde475e6fb43421d2e4977d76fa5c92c895cf476f146f5dbe9f1c55b7b4022ad58e3f2e97cbf9eba1b38ebcf030edf4bf2deba1a9638e8923a008aa68e9238eb4767eefcdae1a803a9bff2e54eaa5e6571d43321923a5f33cbad0fed3acdac4d0779915247279951797154b1c7e5d0074f1c752ffabac98e4a9a393ccae8022d424f32b1eb4a48ff007759f27dca9f66064ea1d2b9d92ba293fd6573d791cb5d94c0c98e4f324a248ffe79d43f63977d68c9672eca2a019df6f15d3e8f79e6571125bfef2bb1d1e4fb3a5501d8c91d2c779553fb43e7a964bc8b6500451ea9e5bd74367a8579ec9aa7ef288f548a803da23d42292892b93d2f54f32bac8e4fddd0011c745e59f9744727975149aa4525694e99d0676a35932568c9279959d2506811c7e5d67ea9fbb8e8f32b3b50d43e7ae80268e4a49248b656247e6c95349e6d719c653f33f79fbbab9279b225429feb2aed4d4039193cdfb5795256df99e5d8d2dc69fe649e6d1e5f9695ed65c79f8c3e5af8c1e6fef3ccaf956f3ee1afaebe2c47e657c95a8475fa765c7e638c387bcfde3d45e54b5adaa47f25257e8d4cf04caf2fcca9bfd5d5bb78ea1b8af50f2ea18727dcac9923964ff575d0c91d1247e65739e7995a5feee4f36e6b5bfb52291ff7759d2567feea37a00ef2493e4aa9fba916b83d4350fddd43a7ea9e67facae803b1923f92b2638fe7ad792e3ccb4ae77ccf9fcaae702e492797587249e63d126a1525741a7b30ad8d3e48ab1eb6238fcb4a02a06a11d436f27971f9545c511d9fc9e6d0667fffd3fcfd93ee553fdeeffde55bd92d2f975ea1994e3b3f2eb72cff007759f2511fdfae1a8739adbea192f2892b3e3fde3d634c02493cca6d3a4b3f2ea9c91f991d7619972df50f2e92e3548ab3e38fcba238eba0d0d08e4f32975092923b7f2d2b2a4ff5741d04be6511c959f2f5ab6941c3509a4fbf5852495a3a87facacf924f32b9cc424ace923a97ccaab792571d40258ea293fd65431c94492455e79ea1b967257ac781f5496ceea3f92bc9f4f93ccaf4df09c7f3d7cae30fa8c1543eb58f54f32d63acfd524f33f751d4ba5fef2c63ad1934ff0032bf36c49f794ea1c17f65fda2b474fd2fcb93cdaef23b3a23b3af33d99ef53a867471d77ba7c7f2475ccc7a5fef3f775e85a5d9fc91d79beccdbda1871c75d66971fc956edf4bad6d2f4bae33b013fd6574fa7f5a8bfb307fcf4ad58f4b96b301d4d93efd68fd8fe4ac3923f2eb9fd9816edfef9ad2acfacd93ee57180497150c9f72a4a5923f32bcf02ac927c9553ed9591249e5d2c72798f534e981d0d9fef12adc9f7ea1d3e3a9648eb6017cc8a88ef25df4797152471d761d06bf99e647593256b2543256decce739392b3a493cbae8750fbf5cfea1f72bb802393f79449715cf4927cf50f995c350cc9a493cc7a48e4f2ea28ff79feae8bc8fcb4a298047aa45256e7f6a7eeeb93b38eadc927995dc6854d4354ace8f50f31e8bc928d3fbd6807a9e8724b27975e8f1c9e5c75e59e1f92bbdf33e4f36803464b8ae7b50d63cbad0f2fe4f2ab83f1249e5d007431eb114947db3ccaf3d8e4ae834bd5315981d1492573d27ef1e8d52e2aa47e6de573fb33b0dbb38eadde7faba23f360b1fded64c924b251ecc0874bb7f31eba2bcd3ea18e3f2d3f75449aa4b5981149fbb8ff007b5911c9e6568c9e6c8959f1e9fe5d76610f2312785fc54d3ebe4fd423f2ebeccf8a11f9895f19ea11fcf257ea597543f2ccc4e0f50eb5cf3ffabae8754fddbd73125e57db533e64b9a5ff00acabf256259d6b4927cf5f4079e67c91d53924f2ea692e2b26493cc7a00b759ef52c727971d432491495a01c749e6c95a3a7c752c96fe63d6de9769e5d741cf5054ae7648fcb92ba7fb6545247e5ff00aca00e7e9b249e5d6e7f67d626a11d69ed00974ffde7995d8c7a5feefee5713a5c75db4727c9599995754d2f35512b424f3647a8a393fe7a5007ffd4f84d2a3aa5249e5a795543fb50d7a8665f923f32adc71f9759f1ea1f251e6573d40342492b3a3b8f9eaa799e652dbc7f3d719ce6dc92565c9feb29d4576015638e5df5723a4fdd474b24914747b40343cc8aa849feb1e92de48a964ff58f5d0741cecbd6b423a248e963fb941c350c9bdff5750f975ad711fcf59de5d739899f24759d2475b724759f2579e14ca91c7587791f975b91c7fbcacf923fde5719ea1d66871f99fbaaf68f0de97f3d79c784e3f9e3afa13c27a7f98f1d7cae30fa8c1533e8ff000be87149a547e6a5686a1a3f96ff0072bd23c27a1ffc49e3a354d2fe7afcdf187de60a99e6fa7e972d7431e972d6e47a5f975d3697a5feeebc5a950f7a9d33cb64d2e5adbd3f4b96bd224d2fcca863d1ebcda950ee2a697a5d7436f6fe5d4d1e9fe5d5af2eb94d03cbab96750d4d1c7e65006879759f79675a11d124741d072724755248fcbae9a48fe4acafecf15c350e733a38eadea7449f7eb26e24af340e6354e9556ce3977d7412475369fa7f98f5d0666b6971fc956e48fccff575b9a7e9ff00bba248fcba0d0c3b8fbe2b3e4ad0d524f2eb3fcc8abaa981ac9593aa49e5d11ea1f25731aa6a95dc04d79a8561ea9aa554bcd42b93d5354a009a4d43e7a9a3fbf5c9799fbcae874fbcae303a7d3e397a50ff00eaea18ef3e4acfbc92b4a66624759faa49e5a55aacad524964aec34327ccfde5743a5fef2b9eb7b3f32bb2d2ecfcba0ccedf478ebbcf2e5f2f35cf687675dbc9f7283439e93cd8ec6bc87c51aa4b23f955e9dae6a1e5d8d782f8824964beacc0d1d3e496b7239258eaa6971d6dff0067d694c03ccf32bb2d2e4f2e4ae7b4bd3fcc7fded74d25bf9695d9eccec0d5248a4a8a3ff5959dfeb24adc8e3a0096a6f2e292924d2e592963b3fb1a579e01e5f9759d79a854baa5c5729aa79b2257553a67938c3cc7e267ef2c6be34d523f2deeebeccf1c47ff0012a92be33f127eede4afd0b2ea67e6d9a9e65ae6a92efac48e4f31ea5d524fde567c7257e854e99f346b6976f56f53ff00595347f72b0f50925eb5e91e7849279958b562b4bcbf93caadbd98193e5fc9e5564ffab7aeb248e2d95c46a9fbb92bb89f666b47256879916cae66392a58ee2838ea5335bccf9ea5fb7cb5cf49517db25a0a3ac92f22ae7a4fde5548eadecad0e1a81a5d76fa7c7e625626971d763a7f95e5d6651877179e5bfeee963bca24f2bccfde554fb00ae703ffd5fcfdd66b16b66493cc4a8a38ebd438c8ea0924ff009e753496f2c9447a7f994012c71d4b1c7e5d68c7a5c51a53ab9ce81b791d67471d68c9255493508a3ae3033a4aca92396ba193548a4aa7e5d1ecc0ab1c72d6ac71e7f7515657f6879756e3d43ccaec39cb526972c94be5f975a1e67c959f249e65071d433e4fb950eca1eaa6f96b8ea54021923ac8ad1924aca923977d78fed0e82d474b79fbc928f2e5d95d3687a3f99b3cc4af3aa54f667553a6743e0fd2fcc7afa57c0fa3f977d1d73df0bfc0f15c5f47f257da3e17f85f1471d7c4e37313ecb087a6f84e38a3d1e3ad6d434b8ae2ba6d2f4bb58ec638aa6fecf8bfe5957c7636a1fa060a99e592697e5bd6e697a5e2bb1934fa23d3fe7af9ba87d2193fd9f447a7cb25743fd99fedd4d671f9759999cc7f67f975a55ab24750ec8a83439e929d57a48fcb92a8d719d0145412f5a2392b402593ee564c91d6854d247ff3cab1a8072971febeb32ba393caacebcae539ccda9f4bfde3d64c952e9ff7e803d2238ff7759faa49f3d684727969593a849401ccea9715cc7995d0ea12571d79795d54c0d5f33e4ae66f24ad18e4a4923f32bb80e52f2396b9ed43ad763aa7eeebcdf54d5228e8032a393e7fded779a5c910af32bcd43cc7fdd56869f7975250741eb3bff77e5561dc7ef1eb3ece497cbfde536baa9d339cb95149fbca8aceb4248eb6f66661a5c7f3d76fa5d9c5ff002d12b94d2ffe3eebb08e4f32803b8d3ffd65126a159d1ea15149795c6064eb97914895e6379f7ebbdd53f795c45e5bfcf5981d0e8f2797629f27975d0f972dc2545a3c7e658d76fa7e9f14695a019da5c7e5d5b923a97f75ff003ce97cbadbda13ed03cbf3292cecfcbad18e38a89248a3a2a543626ff5695937979e63d54d5354c572526a9f3d620745a849e65731e6799255493548a88ef3cc7ada99c750c4f8811ffa0d7c47ae59cbe65dd7d97e38b897ec3e557c7fe20925df257ea3931f96e30f00d523fde51a7d9d6b6a9e6f99514727f67c75f7f4cf99a950cef2eb3a4fbf5d3c9a85625e6a15dc7194e3fb95a3256247aa7cf5abe645b2b43b0c9924ac4d42396b5bf7b24fff004ceb4648fe4ae83338df2e5df57eb4bfb3e8923a0e730fcbf32a68f4fad68ea58e4a0ccc3fb04b534927975a3a849e5d7272492d0719d0dbc9f256e4724be5f9bbeb9ed2ede592b6e4fddc7e550054924964beab71f9bbeb3e493cb9293fb422df5c607fffd6fcfd8fee51e5d677f687975a31ea91495ea1c65392f3cbab91c9e5d1247e63d27d9e5a0e8347ed9e62567f9945bc7e5bd6849245e5d719cfed0c9d9552493cbff55feb2a592aac71f975a18fb42e5431fdca87cb963ad58e3ac7da1b19f247e6545a7f4ad6923963aa71c7e5d6c04d1c950c9f72a64aa9791f9895e79d044950c91d5aa8f7d739e599d1c756f4bd2e292aa492574fa7f9b23d79b52a1dd87342cfc372ea1e5f975f47f81fe1ddfc9e5f9b051f0efc27f6cf2e5912bf40fc1fe13d2e3b18e5d95f1398e34fa2c153388f01fc3f974bf2e5d95ef11e97f674fdd252e971cbbeba08ebf2bc6d43f42c16088a38fe4a3cba964a86b8fda1f614e993c71fc9542af47f72b3e48eb3362d5558e3fddd6847f7288fee570d43321a28a5f2eb10313508fcc7ac3f2ebb7d92d64c91f97feaab1f68071d2472d11feeff007b5d36cac9b88fcbadbda00ea82f24f324aa9e6554924ae8029c92564c971e652c9f7eb26f24a9f66685bdf155ad2e48a37fddd733e656b697fbc7aa03b7f33e4acfb892b43cbf92b999280393d424ae624ae8754f377d73d27fab35d86611c9e5d743a5c9e62573de6568e9725068676b9fbbaf28d53ad7a66b125707aa59cb23d0072727facae874be95524d2e5ad0b7b7f2eb403ac93ca92a1acaf2fcb7a977d7653a66352a13472797fbaad08e48a4acfd5248b6567472796f5d879bed0ec63aea23fbf5c3e9779f3d7591ea914895c7503da1b551c927c959325e5549354f32ba0e821d5354cd624771e64946a9fbcae7a3ae7f66687b4e9727c91d7591c9ff003d6bcdf4793cc8ebb28ffd5d0741ab1c9e652c9469f1d4baa59fc95e79ce43fda9e5c7595aa6b1593a849e5d79c5e5fcbbe83a0e9b54d53e7ac892e25bcacf8e3964ad18e3f2debd0a6739a1f60968d2ff007756ff00b422ab7a7c7e6514ce3388f187ef2c6be4af127eee4bbafb1bc711f97635f1478b24f9e4afd2f263f39c61e5baa4716fa238e2a350eb5931ff00acafd1699f3350b52471573f791d76327fab35ccde475d0719cf6cad6f2fe4a3cb8ab43cb8b6628032638fe7ab7247f255b8e3fde54d27fabad00e4e48fcb7a1eb4248fe7ac9924f2d3cda0cc89ffd5d4ba7f7a754895d07390ea91c5b2b1238eadea1f72a18ff00e3ee8333734f8e28d2a5924f31ea28e4f92a1fecf8ab9c08a4b38aa1b78fe4adbf2fe4aa3401ffd7fcecbcd3e88e3f2eb464d522928f32bd43cf1238eb5a38ea28e48ab47edf17974019d791d61c979e5d6e5e49e6561c91f995cf50d03ccab9a7fef2aad5f8e4f2ebcf02dff67c5449a5c51d4b1c95a727faca0e83269b247fbbad2acd924ff9651d073d433a38e964f2a3ff005b47da2aa49256871d42df97f2564ecad68e8fecf35e3d40f66548f4bfb6495e9be0ff000bcb717d1c5b2b23c37a3cb25f27c95f68fc2ff0bfef23f312be6f1b883dec1608f64f84fe07f2f4d83cc8ebe94d2f4b96cec7caa9bc2fa5c5a5d8c714695d8f97e6495f9be36a7b43edb054ce623b3f2e9d5b5796714759b5f2b50fb2c198b27eed2b43cbf3288fefd1e6578fed0fa8a62c91f975054f249f25415471d40a9a3fb950d4f1c7f25014c96a1923f323a5d9156ad71854327cbacf93ee55b924f2d2b3af3efd70d428cfacad43fd5d6af9915733a85c4545303264ff00574492778eaa492451d549354b5d95ec5327da1535393cb4ae22f354f9eb5b50d52d644ae1e4922aee36363fb53fdb4ae834bd53e7af379248aba1d1f54f2efbf7af53eccccf6efb47c95ccdc4950c7aa79963589a84947b339fda15350bcae7b5092a9c9aa7cf59f79a87eeeb60f685cfb456869f2571179a855bd2e4f32b6f660741a849175acf8e3fb47fab4ab927dfaa7a7feee8f66741a3269759dfd9f5d0c97959de67c95473fb439f92cfcba97cbf2eadc92567de5c45b2b4a60711aa6a9e5c950e97aa798f46a9a7cb249e6d64c71fd8debb0e33bdd3e4f31ebb78e3af32d2e4f9ebbc8ef28034648e88e3acefedaf7a24d634b8e3ae800d53f7695871de7da1eb9fd73c41e67faaa874fbcf9e3ae73b299ec7a3d7735c368f245f618cd6b49aa6976695e39d87591ea1e5d676a1e248a3af2dd43c511797245beb939358fb6494199de6a1ac79959fe6799589a5fef2babd3e38ba5767b339c5d2e3963ad6f28d1e5c51a7eee8f322928a604327ef3fd5d6e697fbbac9f2a2ad6fb1cbb2bb0e3393f1e6a117f6357c25e2893cc792bec6f1e79b1d8c95f0c789350f9e4afb7ca4fce731399d424ac3b392b72f3f78959d1d9cb5fa6d33e34d0f329648e592a5ff005759ff00688abd4332a491cb1bd68ffcba5644925125e5739a13c7feb2ad3d64e9727cf5b724915740189247e6475c4cff00eb23aeda493cb8eb23cb8a4a0ccab67279895ad1d9d431c717fcb5ad1f3228e838ca9a84759d1c75a325e45e5d6747a845e6573816e48fcbaa9e6797535e6a95872492d6606b49aa7eefefd11c7e62561c7f72badb3bc8b657a14c0fffd0fcec8e3ad18e3f328b38e2df5ab1f951a56d4ea1e79932474b27dcad09248ab3bcc8b7d770094e924887faaa4fb44b59f249e5d7380799fbcad1d3fcdac94ad6b7ae30343ed92d5c8fefd538ea58e4acc0d7934b8a48fcdd8f58724714752c9aa4b1d733aa5c4b23d7381a1e64523d2c959d1c95a31d069ecca91c7f3d759a1e972de49e56caced2f4ff0031ebda3c07a3c523c72c895f3b8c3b29d33b7f87fe0f8ae3cb9644afbfbc0fe13d2e38e09765793fc3bf0dc5f6eafb034bd2e28d23f2ebf3bcc6a1f554e996e38ff7756e393e7a3fd5d64c9257c4d4a87d560a9935e49f2561c927cf53492567492579e7d560a987da26aa9f6f1552492b2649283d23a7fb6c55524d42b9392496aa49a857966676f1ea15a1e6570767a85249ac79741a1e87f6cab525e79695e5b79ac797feb1eb1350f16451a7dfada99d87a3c9a84bb2b2750d6258e3af0cd53e2845a5a7ef67af32d53e365847ff002f495e9d3cbaa543c7a87bcea9e20badff007eb9e93c49fbbfde3d7cbfac7c74b08ffd5dd2579bea1f1e3ccdfe54f5eed3c94e3f687d8fa878a22fefa5731a878b228d3efd7c47a87c64ac993e2a799feb2eabb3fb243dad33ec693c59149593278925af92a3f8a917faadf5d8e97e388ae13efd554c96a07d74f74935c96b5742d5e5df5e4f1ea96b27faa7aeb747d43e7ae7fa901f44e9fac4bb2b3b54d53e4ae0e3d53e4a24bcac6a53025bcd425924a8a4bc9767dfa2f350acff00322af37d9816ab734f92b263a9fedf157407b436a4bcaa9fda9e5d64de6a159ffda06b40f6874379ac55bd3f54f32bcde4bcad6d2e4f9280f6875926a9179959f26a11573126a12c6f58926a9e657401d65e6a15cf5c74aa9fda06aa49a85739e79d647256dfdb25af388f54f2deadc9ac5006dea9aa7975ccdc6a92c959d79aa799589a86a9147feb5eb6f6606dc97952c7ac4b1c95e7d26b1148ff00bb7aa71ea92eff00bf5b7d48d29d43dff4bf165fc69f7d2b4754f164b7095e17a5eb1e5ffac7ad1ff8482292b6fa99d952a1dbc9aa799491c95ca47aa5aff7d2b423f12451ff001a56df523cdf687ac69727c95b91eb1f63af27b3f1245ff2cdd28b8d63fe5aefacaa6083da1ea5fdb12de574fa5f95225788dbea9147fbd92bb1d2fc591561f520fae1ec7247e5d8d67c7a84bb2b274bd62d6448fe74aeb238e2bc4ae8f6550d8f27f1c49e668d257c5be28d3ff79257dbbe3cb3f2ec64af8a3c5127fa7495f4582a67c2e30e6248fe4f36b13fd5d68de5c7c959d1c9e63d7dc60cf950bc92b3edfa574125bfeeeb3e4afa238ca9a847e6567ecfddf9b52ea12567c9a87eeeba0087fd5d126a1e5d43f6f96aa492799401a3e6564fda22a9bfd5d615006ec979151f6c96b0a963925dfe6d0719b9e5cb2554fb3d6b472799449e5475c6073d791f96f5a11c7e5d5493548b6511ea9f3ffcf4a00d1923f92b27ca96b6ff00b52292b12493ccaf42981fffd1fcf2b7925ff5b566ab4779e5d2ff006a1aecf6666364f37ccfddd68c7a7f9959e248a492b5bed96bb2ba0e721fb00aced52cfcbadcfed4b58eb3ae2e2292b9fd980471d68c71d64a54bfda1e5d71d43a0e8eb9c9249637a59354aa926a1e65667396e38fcc928934fa863922928bcd5228ff00d523d73813476f1495ada7d9c5beb93fed4ad68f549647ae83a0f47d2f4f8b7d7bcfc3fb38b7c75f3869f24b23c75f4d7c2fd2fccbeb4af87c6d43d2c19f68fc3fb38b7c75f4ae97fbb4af16f01e97e5a475ee9257e638da87d753a667492799593255dae4754d5228ebe56a1f4d832a492573d25c568c9aa455cf5e6a1599f454ea1a3f688ab0f54d53cbaa926a159125c799407b4164d525ace9354a86492b9fbcd4283b0b726b15cc6a1e28f9fefd67ea9a85705aa495cfeccec0d73c512ffcb27ae0b54f145fecfdd3bd2ea1f72b82d724f2d2bd2a78203cb7c79e24bf93f8debc1754d42fef3f8debd23c5124b70fe557071e9ffbcafd232ea67cdd4398ff0089f495ad1c72c69fbdaeca3b78a34ae37509258d3f775f4c78f50c978e591ff7759379a7dfecf36ba6d1f54b58efbf7b5e87a878a3c2ff00d95279a95d54e99e3d4c69f37fdb3cb7fde5745a7f8a25d3de3ae4f54bc8a4be92589292cfca92bd2f6663f5c3deb47f1c4be657ac687e38f31e3f9ebe44f325ff00966f5d8e97aa4b1bc7e6bd7cb637047a54b1a7df1a7eb9f6c4fbf5ad1ea95f3af84f589648ebd4f4bd525923af94a98236a750f428f50ad04ff595c469727c95d3c724b5e3fb33da3a6924f2d2b124d525aa9be2a37c55b7b302dff681a48e4f32b3e4b8a23b8a3d981a3249ff003d688e4969b5563ae3a94c0b77979e6567ff00ababf54248eb138c4a8a48ea5ac4924a008a492aa6a1792d4d2495c9ea1795d00179aa4b1a5711aa6a92c95d34925727ac495d5ecce1f6867c7a85126b114695c9ea9aa451d79beb1e28afaac1608c7da1ebd278a3cb8eb9ebcf1a5790ff00c2492c95524d425923afa4fa907b43d224f1a5feff00bef50c7e30baff0096aef5e591c92c8f5a3f6397679b47d48e3a98d3da74ff008812d779a7f8e259123f9ebe449350963ad1d3fc492c69454cb8c7eb87da367e24f323ff0058f59d71e24f2debe70d3fe205d62b47fb72ea4af3aa65c14ea1f47e97f1025d3dff0079755ee7e13f8c116c8fcc9ebf3b350d4258ff007bbe8b3f145fc7fba8eb0fa91d94ea1fa69e28f88116a96324513d7cbfaa47f6cbb925df5e65a1f892eae3fd63d77b1c9e5d6d4e99e7624cfd52cfe4ac3d3fbd6e6a927c959da7f5afa0c19f1d50d0924f92b29eb5b50ff595cfc9feb2bde3cf29ea1257252495d6c958779e554d339ea19b45568e4ab35dc63502ab49e555bf2e9b41b1564fb94ba7c749792799447279725066744943d24725557ff575ce06249f7e934f8ff795349a5cb255bb3f377d74015248e96924bcf2ff00d66cace8f548ab403fffd2fcdc93efc950c71d6b7d8cff007ea68f4faf50e333a3b7fde56e797552f23f2dfcdab71ea140107d825a8fec72fa56dc7e56cfdd53a83a0cd8f4b9688f4fad0b8b8f2eb3ff00b43e4af2ea007f65c5251fd8b1526f96b47fb42b338c23d2fcba248e2a2e2e25d9553edf2d79605b8f4b8ab463b3fde7dcac3d3e497a55b8e4fde7ef23af36a134ceb3438fcb782bec6f84fa7f98f695f38784f4ff0032fa3f92beedf847e1b8bf772ecaf95cc6a1f6182a67d29e17d2fcbb5aef3cbf92b3f4fd2fec695a3279b1d7e57ed0fb0a6676a1279725793ea9aa797fbaaf4d92bc5fc48f2efaf36a1e95339d9354f324a4aa11f9bbeadc72551ec12c9252c7ff004d2923b7f32b5e3d3e83d2a74ce62f2ceb82d63b57b249a7d61ea9e1fa0f48f1193cdac3d434f964af6493478aaa49e1f8a4a9a6741e0d268f5e2de348e2b78ebed1934397657cabf163479634afa6c39e2d4a87c71aa49e6495347a7d45e5f977d5d0c7a7d7d453a9eccf36a5439d923ae535093cb492592bd0af34faf3cd723f2ec67afa0c21e0d4a87946a179e5bfeedfcbac3935497fbfe651a9d64c91fc95f7582a67c1d40924f31eb5b4b93e4ac5adad3edfcc48eb6a851b91fdcae86392a1b7d2e58eaa797e5d78350f5a99ebde17d525b374f9ebe94d0e4fb458c75f1a68f71e5c895f68fc2ffde58c75f2b89a67bd4cf47d2f4b97656847a7f995d6c7a5d12697e5d7cb9ea1c16a16747975d6491f97589247e5d73819124753c7f72a4f2fcca58ecff77454020a2a7f2a5a5a298107994492568c91ff00cf5ace924ac7d99352a117991561bd4de64554e4a3d998fb4394d42497fd6d6749795d0c96ff00f3d2b3bfb2e2928a74ce3f68733fda95c46b9aa7c9257a6ea1a5c51d8cf5e19e24bcfb1d7d260b0471fb43c9f5cd525ae364bc977d6dea924523d7332475fa261e9d3a74cf1ea542dc71f995af50d9c75b71e9fe63d73d4a8152a047e546ff00712bac93548bec3e55711aa6975c9de5c4b1bf95bebbb0e79b52a5426d524f31e4ac37a3cc964a87cbaf5bd995ed6a1723925df5d669f24bd6b8d4aeb12b1a94cd29d43a7f33cc8ea8541175a9ebe6ea1d94ea1e81e17f363f2ebd7a3f2a48ebc73438ebd8b4f93cb8ebcf0a9505d423aceb3fddc9fbaad1bc93ccace8e3af4b067cdd40d424ac98ff00d58ad7d43eed6749257bc6654d424f2eb8d7ae8b59ac1a0e7a855f2ead5151c971e5bd68666e471f96950c91c51d548f54a24b8f32839cced43efd67c7f72b4350fbf4ba7d9d74199d0c7feaeaa3ff00abad08e3f928923f2e802a4767e654d1dbd5bb78fcc7ad08ff00d58a00e2354d2eb264d3fe7aef350fbf5c9f97e65007ffd3f81ece3f312aac745bc9e5a561c924b1bd767b433373508e291e3aa926972d5bb393cc4ad0f33e4f368f68067c7fbb4a3ed9f3f9b5a11c71489f7288f4bf31e8f68067491d1f6796b4648eb4638e28ebc7a87399da5e975adfd970d4b1f95514924527faba0ccc9934bf2ffe99d2fd9e2adaff005955ab8ea00d8e38ab5e38ed64ac98e4aeaf4ff2abcda950f430d4cf6ff87fa5dad7e86fc2fd3e28e38ebe02f01ea9148f1c55fa1df0bff7891f975f0b991f65833d8a48eaaea1a8451d5b92b8dd5239638ebf3b3ea29916a9aa62bc2f5cd522fb7574fe20d53cbaf1cd4350964beae3a8771d0d9ea1e63d757a5c7e6579f697a5cbbfcdaf4dd2e4f9238ab33d0a66dd9e971469479714756e493e4ae6754d53cba0f60d793fd6566c92451c75ccc9e20f2e4ace9358fb6507616f50d43cbacf8f50f9eb26493cca2de3f9e803d0bfb3e292d2be5ff8c1a3f989279695f5b68fa7f996b5e65f14347b592c64f2d2bd0c1543c7a87e3ef8a23fb1eab5afa7dc79895de7c50d0ffb3dfcdf22bc5f4fd425d3dfcaafb83c33ab923ae535c8ff00d064af42d2ff00789593aa69f2c89245b2bd0c1543c5a94cf8e75c8fcbbaac993f7895ed1e24f0df96fe6d7071e8f5f794f1b4cf9ba87271c7fbcaef3c3fa5d4da7e8f1495e9ba3e876b1c7454c48533263d3ea1d534baef64d2e28eb0f58f2abc7a750f6299e7b1c7e5bd7d8df08f50f2ed63af913f7523d7d4bf0ae4f2d2bcfc61dc7d6ba5c7e6495d1491f9695cc697aa79691d6b5e5e7c95f0f50f60cf923f2eb27508eb5bccf32b3a48eb3030a9d1fdcadb934ff92b0a8269d30a7471fef28f2eb6ece3ff009eb534cee312e2b2248ebadd523f32b27cbaee3cb3263d3ea6fec8f6abf1c7573cbf32b9c0e224d2e924d3fcbaeb648fcbac8d43f771d14cf36a533ccf508fcb8e4af9abc61257d09ae49e5c727995f3078a2f3ccbe92becb2e3c7a8793ea127ef2aa6fa8648fcca248fcbff00575f754ce53acd2ecfcc4aedf4fd3e292b92d0fee495d947f72bc1c4d4033f54b38abcb75c8fcb7af63bcb3fb67ef62af3dd634bf2e7a30550e73cfa8ab525bd45b25afaaa750cc8ababd3e4ae32badd3e397a5189a8739d0c7f72adf9752c767e5a574fa1e97fda97d5f2b50f50e9fc27a5d7a94767e5a55bf0bfc3ff002e38e5aec754d0e28ec6b94e7a8799c959d255bd424f2dfcaaa9257a5833c7a84b27dcac08befcf5d2d73dfeae4af7808b54d3fccac3923ae85ffd6561c9257398d4398a5f2e591eb46e23f323acef33cbaeca67925b8f4fa749feb2a947aa799255bf2fccfded74010c9f728d3fefd7451e97f6ca864d2fcbae703474ff00f59252799f3d451d9fc9fbaa3ecf2d005ba8a4b8f2e93ecf4491f991d74019f71245447716b587aa69fe5d65471cb1bd6807ffd4f8374b8fe4acfbcb38a8fed0359d25e7995d006847252550b38eb464fb95cfed0cc3ccf2ff00752d61c9ae796f533d64f97401ad26a9e67faaad58f54964ae67cbf2eade8d599cf50eb3cc9634a8a4d43cba964ac4923baf32b9c0d68f54f323aa7be5a238e97fb3fe4ae3a87407f681ad08f54964acff00ecf35ada5e975e6d4a675533d8fc07aa5d47aac75fa7ff0008f54f32c60afccbf07e972c77d692d7e9cfc178fcb48ebe0f31a67d3610f7f92bcdfc51aa797e679b5e9bac578e78bfee495f9ed4a67db60cf2dd7350f32bcca4bcfde7dcae875493e4ae224ff8fa15c67ac7a66972798f5e851c7f257946972451bfef6bbc8f54acceca674f2495c16a925686a1a87c95ca6a97141d8731aa492c9593a5f9bbff007956f5493f7959f1de573999d5f99f251a7c9175acf8fcd913f7b5b9a7c75d068779a5eb1e5feea3ad6d434b975c4f2ab8ed3e397ad76fa5ea92d9d6982a871d43e4ff008b9f0df54913fd457c0fe28f05ea9a5ddc92ca95fb65a859c5e20ff595f32fc50f84f15e7992c55f554f1271d4a67e63697ac7f65c9e54a95a3fda115c279b1bd7a3f8e3e13dfd9bc92d78649677fa5ffadaf7a99e0d4a61ae697e65731fd855349aa4b56a3d52592bd83c8a9822a47a5cb1bd7451c7f638eb23ed9149534724b47b4153c3136a9aa4bbebcf2f3efd7712472c8f50de697755b7b43d2f66711a7d9cb23c7f23d7d1fe07925b34af38d3f4797657a6785e3f2f65726271207d21a5ea1e62475dbf99f25707a5ff00ab82b6fed02be70f50dbf33cb4aa9f6caa92492c91d67c7f7eb9ea1a1adbea18e3f32adc724556e83322fb00ab71c7e5c74799491c9400b711d677975a3e64559de645be839c23b7f2e892cfcbad68ff00d58acf924f328039d924cfef65ae6750bcf2ec6bacd4e3f312bccbc4124428a671d43c9fc59aa4bbe4af9efc412799e64b5ec7e28fde7995e59aa47e657d960ce33cce38fcc92892cebb18f47fde7eeeb3f50d3fcb8e4afa8a750f1fd99534f93cbaeda393ccaf3ed3ff00d6574d1c9e5d79d890f667431c75c76b91f995db697d29754d2e292953a863eccf0bbcb396aa471f975e8fa869717fcb24ac4fec897ccaf7a9d4397d95439eb3d3e291ebacd3f4ba23d1efe3f2ebb7b3b397f7676571e26a1a53a667c7a5cb2797157bcf80fc272eff003765727a7e8f2dc7972d7d3fe07d1e58e38e5912be72a634eca74cecb4bd2fec7631d731e28d3ffd064af4d924f2ec6bce3c5179f2495853a815299f3aea96ff00e9d5524ae87548fe7ae7a4afa6c19f37502493e4ac4bcbcf9eb59eb264afa2a8666749a87c95cf799e656b5e47e6562471d71935096493cc8eb125eb5ad247f257395d94cf24ad6f1cbbff00e7a57a169fa7f97589a7fddaef34feb5d0011c7e5c746a971e654b797914695ccdc5c7995ce05bfed0f2d3caa87fb42b124bcacefed08aba00ef63d5292ce4f31eb94b38fcc8ebabd3fefd73817350d2fcb4ae364b38b7d76524915725249e5d14c0ffd5fce18e3fde55b8e38a3a3ca8a964fbf599d06ac7711469f72a2fb67bd67491cb59f1d9f975a1c6743249e65548ff00e9a252d534a00b5f63f6a58e3ab71d68471d073847fbbff5945e7954491cbe5ffcf4ac48e4f31eb30093cdab7a7f9bbeb43fb3ff0077459c7e5d0741347a7f995ada7c7e5bf9b50c72574f6fa7c5789e5579750d299ea5e0fd42291e3f2ebf44fe11de57e7ef81fc3f2c6f1fc95fa11f0bf4ff002ec63f32be17187d6610f79d424f312bcb3c51fbcb192bd224ff00595e79e2493cb8e4af89c61f6d873e7bd523f2e4ae27ccf2debb7d72e22fde5793ea924bbebe67d99ef1eb1a7fef2bac8f4fae0bc3faa7971f9b5ded9ea9589d8685e69ffbbae7b508e2ad1b8d425913efd727aa5e4be650043269714950ff0065c51d6279947f6a4b1d660765a7e9f1491d7411d9c51d713a5eb12c95db69f27989e6d7181d6697f658eae7eea4ae6239228eb6e392baa981a3247e5c959d247149feb2b46493cc4ac9ff00595e95339cf2df12786f4bd51e4f352be7af167c1bb0d52393ca82beb6934b8a47a8a4d2ebd2a78d3c7a94cfcdbd73e01c51d79c49f08e58dfca8ebf4d354d1fccff009615c9c9e17f9ffe3d6bd2a7989c7f523f39bfe157cb1d759a7fc3bfb9e6257db92785e28ffe5d688fc2fe5a7fa8a3eba1f523e5ad2fe1dc5ff3ea955354f05dac75f4fc9a3fc9fea2b94d5343f31ffd5d6d53121f523e5ad43438a3a34bb3fb3bd7d13a8783fccfdeecae7a4f0bf96ffea2bcdf681ecce7b4f8e593cbaeca3d2e5d91d779e17f0bcb26cf92bd23fe1139767dca0e83c1b64b47946bd3354f05ea91bf9bb2a2d2fc0f2c8ffea2ba00e663d2fcca24d2e5af63d2fc0f75b3fd45685e783e5913ee57181f32c91cb1c9447f6ff2ebdd350f07cb5cf49e17963a9f6807934924b1bd67fdbe5f32bbdd6347963ae0b548e58eb6036f4fd43e4a59350ae63fb43cba9a4d42ba0e725d4350f93fe7a57996b9fbcaeca4bcf32b88d62b6c19c750f27d623fddc95e6fa87ef1ebd8f54b3f33f7559dff00089cb257d453a8719e71a5c75349a1fdb124f92bd063f0bcb1df57a6e9fe079648fcdd95b7d743d99f1fea9a1dd47feaa3ac4934bbaafbde4f01c57163e56cae0f54f85fe6495b7d70c7d99f2a4724b1d6dc727995ec927c3397ccfb9587ff000804bbff00d451ed03d99e7127d968fb00af62ff00855f7f2475d9687f0fe58ffd6c74ea6343d99f387f67cb792475e85a1f86e59248e2952be84d2fe1fdac6ffbd4aeb2cfc3f15bff00aad95854c69b53a664f86fc0f6b1d8fef52bd4f4fd2e2b34f2a24ae763d525d3d3ca8a97fb525af06a543a0d0d624f2ebce3c49279895d349aa4b25733aa5bcb2256d86a8799893c72f3ee5726f5dbea9fbb92b88923f32befb067c754219249648eb26ba192cfe4ac4923f93f755f446661c94799e5d3ab1ee2b8ea530346493e4ae7ab43cbf92b3eb6a67965bd2e3f9ebb7f2fcb4ae4f4b8fcb4f36ba18ee3ccaee02a6a92573b1fdcadcbc92b9e9350f2e80092aa47e554dfba923a87cb8a83a0e863922f2eb452b9e8ee3fe795741a5ea914941c64527dcae7e4fbf5d849245b2b99bc922ad00fffd6fcf2df1511c9e67faaae72aec72566667411c7e6252f97491c94be650053923f329638fcb7ab34569ecce7f6847537f681a3ec7ed449a5c51d667419379aa54b1c92d4b1c76b255b8f4f8a3a0e7163925ad08eb3fcb8a9248eb9ce83463d53cb7ae9f4bd6228efa3f36b88fec8f6a3ccae3a84d33edcf03eb917eee5afb73c0fe2cb59238e28abf25343f125d47e5c55f5dfc23d72ea478e5af85c61f65843eec9358ae0b5dd53ccb193cda3fb425913cdaf33d735897f79157e77883edb0661ea9a845f6eae2248e2924a354b896e2fa88fcedffbc7ae53d6f68743a5feed2ba7d3e497ad7311c75b71c9e5a7fabaf2c0e8a4d522d95c6ea171148f516a1fbb8fcdae6350d53cba0e83ac8f548a3ac493508b7feeab829358977f95b2b73478ff00b424a0d0ec74bb8ae9e3d525f2ff00775534bd3ebb7d3f4fb5f2eb1f66073d1dc4be65743a7c945e4714759dfda914745303b78e48a88e48ab8393588a34a4b3d53ccaf48e83d0e392291eadc9e557056724b5b91c72c95c67196e48e292aa7f67c527ef6b42dedfcb7ad68e3a00e67fb0ea193438b67eedebac8e3f2eba2adbda01e432784e5ac8d43c271799fbcaf6f8e38a492a1d43479750a3da01e0d79e1bfddd707aa687e5df57d3579a3fc93f6af1cd634bf2eeeb6f68718786f4bf2ebd4adede2ae0b438fcbaeb638e5df5e953a84fb33424d2ed64a34bd2ed68ff00595359feefcbaa38fd99d347a5c52474491c5e5d11c946a127c95ce771c9ea1a7d8495ccc9a5c55d649593e5cb1d007996b9a3fdb2bc1b5cf0ff0097e657d6126971495e6fae68f1488e6ba0e1a94cf95350d2fcbae664f363af63d734bf2e3af21d52de5dfe6d7618fb3228eb99d524a4fb64b1c8f59faa49e63d4d3a863ecc34bd3fe78e5af488ece2f2eb88d3e3aec63b796bd2a750c4d6d2f4b8abb7d2e38b67955c9e97e6c75a31c92c75b7b403ac934b8bfe59bd67496717fcb57aa9fda1fbbacf9354fde51f5c02dc96716cfb95179717f752a19350acefed4f9e8fae01a3e6451c7552493ccab51c7e6252c9a7f9958fb436f6664f99f3d475b51e8fe656ddbe8fe5d152a07b339aa48ecfcc4ae9a4d1ff0079e6d43259c5a7a579b52a1b1ccc71fcfe551ac69fe5d8c95a31c96bbe8d72e3fd064f2abdac21e1e30f9c3c411f972573d1d743ae49f3bd73b1c9f257e85833e1ea0b25731256e6f8ab9d924afaa33312393ccff57449675b91e97e6554bc8e802a471f991d64c9a3f97257411d45a8495ce719ccf99e5c7496faa567c9f7eb423fb95d94ea1cf505d524f92b9d93cedf5d0c91f991d6549a7fef280258fee55aaab1c7e5d5aacce833ef3efd4da5c9e5d1247e6554923f2de838cdcb8d53cbae4e4b89647ab5feb297cba00fffd7fce7d946ca96492a2df58fb338fd992c71c54492509ff1eb4491f98f5b1d043f6f96a6b793cca3fb3e593f7b5b96fa5cb1d004b1fdc4aa9aa492c95057471e9f15e5007271f9bff2d2adc927995adfd8fef449a3f989599c664fdbff00e9a2d24727995a367a3fef2b723f0dd7181c9fdb3cba2dff0079257791f85ea58fc2f41a5322d2fecbbe3afac3e19c9146f1d7ceda5f85fe7afa27c07a3f96f1d7c1e647d6610fac34bbcf32c6b83d734bf31ebd0bc27a67fa0d1aa6975f9ad43ed299e012697e5d2aff00ac7aeef54d2f1553fb2fcbfded729e95332b4f8eba18e3f3288f4ff2e88eb8cf48350d2fcc4af37d5343f2fccaf479350f328fecff0032b403e7bfecc977d7a6e8fe55bd7592786fbc4959526972c7fc1e5a50741a3fdafef50bf893cbace923f2deb8dbcf36f28034754f144b79fbadf469724b795c9dc47e5bd6e6972797401e9b1e972c91d6de97a3cb1d73da5ea911aef74bd622923fded068685bfeeeb6e392b124d52d6aa49ae456f47b3333b7924fddd548e4f2eb94ff0084974bf4a83fe12c8a4ff575e781deff006a7ef28b793cc92b134bd422bcfded76fa7d9fcf1d0068471cb2475179a6b5bcbf93caace93caad00a9247f2579978834bf9e4af489249767eeeb88d423f32834398d2e3f2ebac8e4ae6648fcbad0d32bb00db8e3ad1f2e88e4a4fdd7fcf3aec0f666959c9e5bd549248aa1b8b8f2eb264d528f661eccd0aa92475cf47aa4b23d6e47a8571815350d3fe4af37d723f2e392bd6754bcf92bc9bc51279745338ea1e45ac59c5a8572771a1f991d6b6a9ae4be649f2516faa57a879b50f32d4fc2f8ae4f54d0fcb7af69fdec8f593ac68ff006c92baa9d328f218f4f8a3aeb2ce48a34ab7a86872ff00cb2ae6648e58e4f2abb8e73a68e48a4ad08e3ae3b4f925aede3a008a4b3a23d3ea58eba18e3fddfdcae338ea1c449a5dd56249672c7257a6f972ff00cb44ac3d523fde54d30a74cc9d2e4963aeb34bfde3d731feadeadc7a84b1c95b7b43d43bd9238a38eb3af354963ad1d3e4f312b3b54d2f15c7531a045fda3ef55354f2af2b26e3cd8eb3a3d53cb7fded6605c92ce28eb0f54b8f313caaa9a86b1148f593a85e799fbddf5e960cf99c41e45ae49f3d731249e5a5765ae4716fae4a48e2afd532e3e26a5339e924ac49350f9eb4750e95cf491fef2bdca6667431ea1fbba2392b3bfb3e88e4f2d2bb8e33423a5d43a5674727ef2a6ff5895cfecc0e7648e5df4475b925bd6249fbb4a299cf502392b6e38e28d2b134b92b593fd5d7419991791f9750d4d791f9744740117d8fcc8fcda4ae92b0a48e8033a48ea2fb1cb5ad6f1cb5b71c7147401fffd0fcec8e3f2de8f2a2ac4f32a58ef2bb0cce86aa7992efa3cd8ab4238eb8c0d18f54f2e89354f32a1f2fcb4acfa0096492a6fed4f2ec6b3bcbf32adc7a7f9940047e249637fdd51ff0944bb2b47ec7159ffad4acebc8e2928a8739af1eb1e65741a7eb9e5d713fd971469447a5cbbff775e781e8f278a3cbaa91f8c3ccff00575c1ff645ff00a56b697a7c5e650741e99a1ea97525dc7f3f975f537c3b93fd3a39657af9134fb38a37af63f03ea92c77d1c55f07991f61971fa53e1b8fccb1aced73f77fbaae0fc0faa4b7891fcf5de5e495f9ae3699f514ce4fecfe6511e9ff00254d67245ff2d2ba69248a34af37d99d9ed0f38d423f2d2b9e93ee5743ae6a11571b26a9e651eccda99a3a7c914895b71f951d7967f6a79759f278b3cbff0056f41e91ee91ea96b55354d4228d3cadf5e01278a2592b99d43c517f23d634ce83bcd73548a37ae4ef358963ae4e4d43ccff005af553ccf32bd20373fb425ff968f5b7a5c9e63d71d1d9cb257b7781fc3517fcb44ae3f66068697a5dd6cae9ececfec695aba8496ba5f97f73ecf5e67e28f8816b1bf951bd667386b9e24fecff00f5725790ea9f1025bcfdd44ed55354d525d51e4aa9a5e87e63fdcf32b40f685b8f5cd664ff0058f5e91e1fd42592fbf7949a5f81e5d413ee57af785fc0f2dbfef654ae3f6666759e1b8e59238e5af638fee562697a3fd8e4adb93f76f599e8530924f2e8f322913efd54924f32b9ed53f76941d068ea9711475ceea9a84527eea34af22f1678c25d2ebcf6dfe2c451df7ef6eab4a6739f42491f9945bdbf975cf68fe30b5d713cd89d2b464d5228d2bb3d99d0757249e5d68ff68578e6a1e288a3ae7a4f1c4b1ffab7aec39cf5ed5350977d73179aa455e7ba878e2592b3a3d63ccae80f687a9c7aa455ad1ea915793c7ac54d1eb9e5d4fb30f687aec9aa455e65e38bcf2ec64f2ab2754f14451ff1a579178a3c592de256d4f0c0725aa6b1751df494ba3ea9f6c7f364af37d53549647fddbd68784e496378fcd7aecf66719ef3a5e9fe6574f79a5c525711a5eb914695a1fdb9148f5d06674fff0008bf991fdcaf3dd63c272c6f5ea71f8b22d9f7eb3a4d52d64a0e33c2ff00b1e58deae471f97fba92bd32f248a4ae2754a00d5d2e38a4aeb7fb2ed648ebc9ff00b5258e93fb7258eb9ce7a87a747a5d676a1a5d7271eb92c7feb5eaddbf882293fd63d6601268f5524d2fcb4aeb23d522913f76e959f247e67ef634ae703888f5496ddebacd3f58f323fde561ea9a5f975c749ac796fe551ecc0f52b8f2a4ae6754d2fcc4fddd7271f8a2291ebacb3d722912bb3d981e7b79a5cb6fe6561c91ea95e9b247149517976bb2bd4c21e0d43c2f54b3fde5731a847e5c75e9dac47e5bd705a9d7de610f89a879c6a11d54d95d0c91f96f5cf3d7d21990ff0067d5492adff68512475d8719891c75b71d11c74eae7024924f924ae7b5092b6e493fe7ad73da875a0e7a867e97d2ba68ff00d58ac98e3f2d2b5a38fcb4ae8332dc91feeeb9dad78e4f3296b9e98091c7e5d4df638b7d431c9e6568c71f99feaeba003cbf2e3ac9924f2ff755ab2495cf6a1f7e803fffd1fcd18fcd9288e396b5bfb3c55ca0ccc88e396b563a3cba3ccacc0b927ef12aa49a5cb255a8e4a5924f32b402ad5ab3bcaab4d8fefd6606e49f72b135093cbab5279bb2b3e48fe7ad00a9a7ea92c8ff00bd4aecb4f92592b92fb3f969fbaad6b3d4258d2b8ea1ce75b1d5b93f7695cc59ea12effbf4799e63d0741d669724b5e85a1ea9146f1cb5e7ba5c916cadcd3fcdd42be2f323e93087dcff000ffc71e624716caf63d4350f32be65f84fa7ff00abf35ebe9ad5238b657e7750faac19931c9f3fdfad2ae72493cba24d525ff9695e79e853a654d43b571d2472d4ba86a958926a9e5d0771cf6a91f975e7ba86a9e5bc95d36b1aa45bebc5f5492591ebcba87a06b49aa798f52d9d9f98f5c1f992eff36bb7d2ef3cc8e83cdf6874d1e976b56ecf4ba9b4bd2fcc4adbb38e2b3aec0f686b687a1cbe6472c95eb1fda1168d63e6eff2e4ae0a3d722b7b5af2dd73c712ea9e65ac741dc743e30f145d6a9e5c51bd7997f61dd6a9279b2d7a6f80fc1f2ea0fe6c8f5f44e9fe07d2edeb6f66687ceda7f80f5ed4123f93ccaf63f0bfc2fd7a37497657bce87a7d859d8d74327892c34b4fdda55199e716fa3ea9a5a7ef2d6b3a4f164ba5c9f658ecaba7bcf88915548fc51e1c93f7b2eca00b7a5f89354d523ff51e5d6879959d1f8a3c2f573cad2ef3f7b15797ecc0d58fcd93f7b46a11f9895cf5e4914727eee8fed4147b33438ef127c3f8b58b193caaf8d3c79f0bfc47a5df492c55fa1ba5ea9e5d8fef6b99f1069716b91c9453a607e6b697f1125f09bf952d5bd63e3e7c95d0fc5cf87f169ef24b1257c0fa879b1c9fbcafb0c153a61ed0fac24f8b92ea1fead2b3a4f8b12c75f2859eb92efae9bfb53cc8ebb2a6080f7993e2e5fd5bd3fe2e5d57cf7feb2832796958fd4cccfa57fe1724b1a561ea9f1c2ea3af01bcd42b9eb8962af4a9e18f2fda1ee7a87c6cd524ac493e2e4b25788c92452564c9aa456f257a54f041f5d3e8fb3f8812ff00ad9528ff0085b12c6ff72be70fedc97fe59d68697e6c97d1d76d4c1d30f687d4ba5fc54964f2e28a3af4dd2f589754af11f0de87149247e6c75ef3a1e9f147635f398c31f6874f1ea175b288f54977d2d5a8e4f2ff00755e385436e3d425d9fbd4ac4b8bc9647fb944727ef2ba6fdd46bff4ceb43138893cd913f7695892472f99f72bac9354b58e4f2b651e645249f72b30388bcb3bad95c96a9a85fe9f5eb3aa69f2ff0071eb8dd534796492b9fd99d87331f8c25b37f3644af42d0fc79a5c89fbd4af2cd53479634ae67ed12e9f47b338cfa664d522b84af33d7238a492b98d3fc492c8f1d76faa4714969e6d1ecc0f37fed0f2eb47fb62ea38eb98d53fd0eea97fb53cc4af50cce9a3f1c4b1feeb656dc7e28f312bca3508e5e954e39258eb6c39350f43d4354f32b88bc92a18e4964a9a4fde257d860cf89c4d339ed53a573daa574527facae7248ebe8a99e7989feaeb5a393cca350ed469fdebb0e326d9492475347fbca3508fcba00e66492b3a4ad193ecb59d25741cf50d08e964b8ff009eb4471fc959d247e6506668fdbc511c959da5e972efaeb23d2e80327f75beba78e4f2d3ca8a924d3e28ea68e38a8038e9354a87fd656dde697f3d2c76715007ffd2fcfc92dfcbae7fed12d743aa49f2562d0719049712d167e6c950f99535bf4a0e835ead471f99556ad4759807d9eb4238e28eb3a4f36aac924b5a01d67eea4ae7ae3caf32b0e4b8baaa91f9b41ce743553f7be6511f9b5a3a7c75c750e80b78e92492b47cbacf92396b33435b4b92bd4bc371c52579147e6c6f5d8e87aa5d46f5f2b8c3bb067db9f0eff76f1c55f4d4927c95f1cfc2fd52592eebeb6b793ccb1af81c6d33ef30673da8475e7baa74af42d53cdd95e6faa492c6f5f367bc727aa49e5d73d26a1f3d686a924b25729279b250053d523fed0af33d53f777d5dbfd8e5dfe556dc7e1bb0ff5b2d6deccd0e3b4fd1e5b84f3634ae86df4b8b4fb1fde7eeeb4350d522d2ed3f775c9fda25d624fb947b33335bede2b463d525ac9d2f47ff9e91f975a12697e5bf951d5016e38ff00b41fca8b7f975dee8ff0fed638fcd912b43c27a7f975e91a85c451a7dcae703988ee22f0ff00eeadaae7fc251a9d53fdd48f56fcba00c3ff0084a35eb37fddbd2de6a9e23d613efbd759a7e9f175ae874bfec1d3e393cca00f328f4bba913f7bbeb92d634bd52ce4fdd3bd7bd49e28f0bc7feadeb88d53c51a0c8ff7eba00f2cd3f4bf11f99fbb77aeb23d535ed3ff008debacd2fc71e178ff008d68d43c69e17913f76e953ecc0a9a7f8e354ad693c712c75c47fc241e1c91ff00755a379aa697251ecc9a950e9a3f1c4b5a36fe38fde7ee9ebc9f509228ff00d5561c779e63f95bfcbadbd994759e3893fb62393ccaf823e22785fcb793cb4afd079238bec35f38fc40d3e292392be9b0607c05259cb1bd11c75e8fe28d2fcb92bce24f377fef6bd639fda16e393cba4924f928ff005759f25e4b256d4e99b54a85492f3cbae7b54b8adcd423f323ae624d3e593fd5d7a586a6519d2494b1c72c95ad6fa1dfc95e85a3f81eea4af50f2fd99c468fa5c5a83fdcaf7ef0bf83ed6393cd952b47c2fe07f2ff00d657b1e97a5c51d79752a014f4fd2e28d23f292bad8eaa69f671492574327eee3af8fa950048e4f9eb5a3b3964ae53cc96392923d5258d2b303d4f4fd3e28dff007b5d9471e97feabe4af9d64d62feaa49a878a247fdd3bd0667d4b1e8fe0dd9e6c9b3cca3fb53c11a5c9e56c4af9974b8f5e93fd6dd3d1aa69f2c9ff2f55cf50d0faaa4d73c257163e5571d25be837923f96e95f3dc7a5cbff3f559faa697af471feeef5e4ac699d87b9ea9a3c5227eef6578e6b9e13f2deb3b4ff166bda5bfef77d6e7fc2716b2279b2bd7a4719e4fa86972e9effbb4f2fcbad1d3f5cf9fca964aef24f2b547fded711aa784fcb93cd8a8026d534bb5d423f36bcf750925d2deba1d2f58f2de38a57adbbcd1e2f1047e6c7401c9e97aa7f68251247fbcac4923974bbe922ab7a7ea9e65063509648fcb8eadc91fc9e5567c927ef2ad799e6257d0610f97c61ca6a9d2aa7975a1a87facaa9fc75f694cf14c9923f92b0abb3f2e2d951496f15761e7869f1d54d43a55a8e4acad524f9eba00e764fb94bfeb2a0a9a4a0e3347fd5a56779752fdbe5a968023b7fddd7631c9e65733fba8e3a9a3bc8a803a192cfcca23d3fcba48e4f32ae471f98f5ce073d792796f50c727995b9aa5bd548f4f8a3ae803ffd3fcfdf33e4ace923ab7456671989fd9d2fad68471ff00cb5928d43ad167400797e67ef6b5a38fcc8eb27ccf2e4ad1b3d43e4a006d3a3aa925c4556b4be94016e48e293fd6a565491d6dc9589249e5bd0664b5ada7c91469fbd4ac38e4f323ab925006b49aa45b2b264d52292b264b8977d674925719e8532dc9aa4567fbdaeb34ff0010799feaab88fecffb63fef6bb7d1f4b8acebc5c6d33b299f47fc3fd6258efa3afb8b43d52592c63afce7f0dea9fd96f1f975f57f81fc712feee292be571b4cfb2c19eff00aa47f257966b95e9126b1e658d79bea11f99257c1d4a67a14ea1c1496fe63d45269ff3d74f269fe5d727aa6a9f63a3d99e95321d524d2f4f8fcad95e7ba86b1e67fab4a8b50d425d51fcaa4d2f4796e1e3aec3a0cfb7b3975493f7bfeaebbdd2fc37f678fcdae823d2ed74bb1f365ae7f54f124b797df65b6acc0d0d42f25913ca8ab73c2fe17f31fcd92b4343d3fccf2e5912ba1d43c496ba5a7951250074f1de45a5d8f951561ea924b25707278a3ccaced43c512fd97f76f5c6074326b9169f2795447e2caf328fcdd51ff795d0c7a7fc9f7e80372f3c512d727ac6b92c89fbb7a8754d2e58eb99d524f2e8033ae354964ac4924964a8754d52b13ede6bb00e87cc96392aa49ac4b1d64c7a856749f72803463d725dff00bbae874ff105ff004ae22393cb93caadbfb64bb3ee568077967e2c8a4f2fccae9edf58b08ebc324bcf2ea2fb64b5d9ecc0fa264f1658491f955c17893508af124af33fed997d6a1d53549644aeca6079978b7fd65793c9f7ebd63548fcc93cdaf3db88ebd2f68739cf492799447e6c94491d76fa5e9714895b7b438ce224b7f32ba6d1f47f32bbdb3d1e2aef34bd1ec23a3eba0727a1f86e28ff00d6577b1e8f1474471c51d6b471f98f58fd70023d3ea5fb1cb5a3b22a2392b1fae812d9c7e5d6c5614971e5d11c95e781b7e5dad67c91dad54935496b93bcd525ad00e9bcc8acff00d65171e208b67eed2b998e49647a97cb8a833093c492f9750de6a92c94b249147593fda828a806b47ac4b447ac4b1ffadace8fca929d5c74cd0df9248af13f7a95cf5e6971799e6c559d2492c7517f6c796fe557a806b7ef634fddd68e9fac4b22795252697fe991f9b5564d1fcc93f7740193ae6971489e6c6f593a5f8925d2fcb8a54ae9a4d2e5d3d3f79fbcaceb8d2e292b9c0d1d434b8b508fedf5c1ea9a7cb66f5d64771756ff00baad0fecbb5d52b331a8796c771f3d6ac727995d16a9e1f8b4fae764ff0043af7b067c7d42aea11fcf257295d06a179593feb1ebef30679b5096ce8924ff0096b5147fbb4aced424f29ebd0a94ce3a84d1de7975cf6b1251e6799feaeaacff00eb23aa3320f33f795524bcacdabdff002f75a1c66ac7fbca23928d3fa5674927ef2803a7ff00591d64c91cbbfcaa2393cba93ec12d6606ee9727c95adfda06b928e4f2d24a592f25a00e864d522acefed0ac4924f328f33cb8e803ffd4fcfd8fca928f2fe4a48e3a5f32b33333a4d3fcca3ec67fbf57ea3df401892ffc7d56ac7f72b3e4bcf32a68e4977d07396ef23f3128b393cb8eaa7db3fd8ad0a0ccd6ff00591d67c96f147491c91475a31c9ff2ca4ae70326a2924ab727dfac9d95d06864de494472798f46a1f7288fefd719d068472451d7596faa571dfeb1eba0d3e3f32bc1c61e8533a7d3f54f32fa38abe9af01c7149e5fc9fbcaf9efc3fa5fcf1d7d15e1bff895a472d7cd624fa0c39f4ce9f1fc91d5c9248a38ebcb2dfe207c9e56fad08ee2eb54fdeefaf9aa94cfa8a668ea9a845b24f2ebccb588fccfded77baa69f2ecae4e48ebcf3d43828f4b977f9b5b926a96b669fbcff591d25e491475891e972ea97d1f994010ea9ae5d6a91f9515765e1bf0bcb1bf9b256e697e078a34aec7508ffb3ec63a0024d5228f4dfdd3d788eb12798f24bf6afddd5bd63ed5fbcf2ab88f2e58ff00d6d004c64f2ffd6bd6de97a7cbaa5f471455e71a9dbcb5de783fcdb34fb548f5ce07a6c9a1c5a5c7e6cafe5c9593f6cf2ff7bbeb3f50f147db3f755c15e6a92c9fba8eba00dcd4354f32bcf750d525a964925ff968f553fd6474019f24955249228ead5e59f97595716fe65694e9819179aa7974bfda82aa6a1a7feeeb88b88e58de8f6607a147aa79752ff68579bfda258eaac9aa4b5e953a607a979914947991579647ae4b1d6bdbeb92d771c3ed0f4eae7354e95931eb1573fb53cc4ad3d987b439dd53a5727796f5d6dc564c9feae8a66273b269ff003d771a3e97f2573de5fcfe5576fa3f7ae803a1b7d2eba18eb0fcca3ccf32b9ea01b926a1e5d11ea1e6573d1c9e64953d6666755fda11545f6f35cd514017ef350a5fed4359be5f994471d0684df6ca9638fcc7a964acf9354fb1d7381b7249159d626a9ac7c925727aa7886b93935096492803ac9358f324a2393cc7ae652b5b4feb5d007431c95ad1c9ff003d2b9e4ae9a38eb9c087cbf312b99d434ff9ebac8fee5684967e6574019fa3c92c69e6c895dbe97aa446b998ede2a2493cb7a00e9b508fccae6648fcbad5d2f54ae8a4d3fed963e6d796761c4496f15e2567471f9727eeab4350d3e5b37f36b3e4d43cca0f36a04927da2b0f508e2e95724922f32b264bcf92be9b067cdd4388d53a5548fefd686a1dab0fccafbcc19f2b50deae4759ad0f32b99d43f795eb199255092ade975a32475981871c959eff00eaeb57cbacf92839ea1a11fdcaca923f9eb563fb94ead0048e3ad1ac7a5f33f79599d06b47feac545247e67ef6add9c9e625684967f27ef6838cc492cfcbaa92475a11c7e5d5693fd65007ffd5fcf2df1511c950ea1d688e4ff96525667197e9de5d54924f92923922ae702292ceb3ff00b3a5f5adb7a2ba0e831248fcb7ad08e4f328fecff32b46cf4ba0e333a48fcca24b8f2eba1fecfa8a4d2fcca00e4e3b8f31eb42493cb7ab72697f67a8a48e29283421f2fcca9a3d3eb3a4bcf2ff00d55456faa5796741b9f6396ba6d2f4bfde564e9faa7995d5e9771e5d78f50ec3add2ff00775b7fdb9e5feea37af3df32592b474fd1fcc78e596bc1a87a14ea1ec7e13b796493cd92be9fd2f4fb5fb0d7cc1a5f8922f0fa4714b5eb1a5f8b3ed89e5475e4e30fb2c19e8faa795b2bccb548e5af4dd2f439754fded68ffc20f2c6f5f3350f58f0bd3fc2f7578fe6d7b1e97e1bd2edd239644aef63d1e2b78eb3b50fb92451d71d43a0e7b54d52d7fd547b2bcf75cd525dfe5512472d9dd492cb5c9ea92798fe6d14c0cfd53588a38ff7b1d705aa6a96b23d6b6b12451c724b2d78bc71cbac6ab2451a57a54c0f4dd3e3fed47a9758d522d2d23b5ad1d2ede2d1ecabc9f53d52592fa803a6b3d522913f78f5524d522df5ccc91f9763fbba48ef3cca00dcbc93cca23fbf5871c9e6511c9e657401d3c9e5494491c5e5d56a6c95d8061ea11c5d2b89d534b94d7a6c71fc9593796f5c607995e6975932697e5d7a9496758979a5d7a14ea01e6579a7f9754e493cbaee350d2e2ae4b54d2f15d879750adfda86ad47ac561c96f59b407b33aefed7f7a23d522ae468ae80f667731de7995d0e97aa7975e4f1ea9e5d6b7f6c7b56807ac47aa574d1fef12bc023d62ba28fc51e5d6350ccf5893ca8e8fb79af21ff0084b3cca97fe124f32b1a8739ebdfda159f26a96b1d793c9ac4b23d1fda92c95c6741ea5fda96b1d126b95e5be651e651ed0d0eae4f124b25626a9aa4b2567ffac7a3cb8a8012393cca3ecf2d6be9fa7fcf5d347675d00733a7c75d6471fc9447a5c51d6b7975cfed00874f8eb5a493cba2de3a5bcfb86ba0e812392b423922d95ccc927fcf2a96393cca0e73ad8e48bccaa9a8475cf47a87cf5a1249fbba0086493ec725759a5eb1e5feea5af33d424a3fb52b8c0f79fdd6a89fbaae235cd1fcb8ff0077587a1ea12c77d5ec7259ff006858f9b5c6667cedfbddff00bcab5247e6475d6f8a34ff00b1bd7095ef60cf99a8739a8475cd576da8475c6c927cf5fa1610f9ba8159d2475a35937124b5e81ca4d671f9746a3f7ea18e4968b8ae8032e4ff005958f2697e5bd6d5606a1250719abe67c94b1c7e65675bc92c8f5a1a7fdfa005923a8a4fbf52ea1d2aa568694cb767e6d7411c95cfc71d6ed666636493cb4f36b369dfeadeb4a803ffd6fcdd93fd6527f68cbe953d411dbf98f5c679e6ac71cb27faca58e3ad08e4f2e3acf924f9e4ae83425d951471d11c956fcca0e8343cca23d43cbae7a4bca3ed87fb941ce74ffda947f6a57311de54dbe2a0ccb7a8495cf49a85686a92564c9feacd06845e5cb2511e972c952e9f2574fa7d9f98f1f955c67412e97a5f969fbdadbfb1cb27fabad7934f976511de7969e6d78b50eaa6743a5e97e5a79b257431de799fbab18eb8d8f54bfd51e38a247f2ebdcfc1fe13fddf9b2257cdd4a67a47131fc3fd7b5893cd96be94f03f82e58fcb8a4a23b88a34f2a2aef7c37aa7eefee57878c3eb32e3d8f43d3ed6cec638ab43548e28d3ee51e1b8e593fd6a54dae47f257c9d43dc3cf750bc964ae4f50d5228d24f369354d63ecef2452d79c6b1e6ea92551d01a86a96b23f9515707aa7eee3ad09238b4f4f377d72726a9fda9254d30383d53ed523f951d743a1f87e2d3ffd3e5ff595b7a5e97146f56f50bc8a349228abd8a6079ef8b358ae3b4bd3e593f7b2d6dea96ffda17d5d669fa5f97635ca0727ac47fd9f695c44727ef2bbdf1857051e97e5bd68685cb7abd597247e5bd4b1c9e67eea4ae833372392a7a823928f34d69ed0022eb4491d11c95a11c75d00731e5d4d26975d0c71f96f4491ff00cf5a00e0f54d1ff1ae62f34baf5892ceb93d534baec03ce24d1eb26e34baf4c934f963acff00b1d4d303ce24d2fe4ac3bcd2e58ebd7a4d2eb264d0eb6f6873d4a6793ff679a3fb2e5af4dfb00a24d3e8f6863eccf31fecf977f955a3fd9f5deff644547f63fb51ed0c7d99c9c7a5c5e5f9b49e5d75b1e97155bfecf35c752a199c47d825ab7f67adb934ff0032892396b1f6873989247e5d2471d1fd9f2f995b91c754741534bd2e591eba18f4b963ad1d2e3ae9bec717915a1a1891e9fe5d5a8e4ab7247e5d67c9f7283a09a3ab7e5455523ad2af3ce720b38e8d47ee54b1d125686664d159ef46faf4bd980799f3f95449a854759b77feaeb139fda1a127fabf36b13fb425df56e3d43cc4f2aaa491f9741d06de97a84b6f5ea7e13f16799e5d7836fadbd2f54f2de3ae3a8739effac4716a9fbdae2354d2ed638e8b7d63ccb1fde3d4baa4916cafa0c21e6d43ccb548ff00795c1c9feb1ebd2354f2b65705247e5c95f61843e56a193249ff003d2b9e92e2b5b51fb95955f506649a7c9e63d6b6a1dab134bfddc95adaa49f25667966449f72b26f3efd6852c91f9941999f6727975a1f6f3553fb3ea28e3f9eb9c0d68ff7894496f2c6952c727974799e5d7653035adea2f34d64f99ff3d293cca2a0172493f79552393cba82963b8ff9e75981ffd7fce7923f2eaa4724b1d687db0ff728d43ad719c654f32592b5aaa7d8cff7e8b3ae802dd1ff002dab9e924a2392803a1d945159ff00da0283a096ceb6e3b38b65626a1d6a28e4977d0739abfd9fe65656a91f97256b799f2663aa91d9dd6a97d5ce6d4e990e9fa5cb23fdcaf63d0f4bfecf48e59512b47c27e138a348e592bbc934f8bfd55b579b52a1e91872496b27eea24fde56be87e1bb5dfe6c8952c7a3c5a5fef65ff595ccea9e2896478ec23ae50a67a9472683a7bf9512256869725fc975e545feaebce347d3eeb5078e591ebbdbcf1445a1a573d4a6761eb1a5e97169f63fbcff00595e9be1bfb0469e57c95f1749f162591ebdcfc0fae5d6b091cb257c2e627d360cfb7343b78a44fdd3a51ae697f262aa780fee47e6a576faa4714895f2750fa2a67c95e24d1fccbe925af2cd42e3ece92455f506b1a1cb5e0be28f0bfc92579bed0e83e7bd52f25b8beaab1e9fe5d6dc9a5f9727eeea27a29d400fed4f2d2b87d52e25924ae8b54fde47449a7fc95ec53039eb3d3fcc7aeae48fcbb1aa9a3c7e5d6e6a9fbc4ae803ce3508fccae7648fcbaee3548fe4ae7b54d2f35a01c15e4947995a3aa5bf96f59de5d7401a36779e5d59ac7ab14013c7256b59c9e5d64797459c9f3d761cfed0e9f4bfb9e554be5d67c75b55ce1ed02aac967e655aaad1c95ea1d064de69f591e5d75b24749e5d7381caff00659a4934f8a4ae9a4acf97ad740195fd966b364d2e28eba1f2fcba8648fcca0e7a950c49238a4fe04a3fb3eb4248fccacffb3dfefa0c7da193796715452475ad259cb449a7fc95c66350e7b6511e9fe656b7f679a23b3ae7033bec7517f61cb5d3797f253abd4033238fcbad3a29b1c741e953a63a9b247e67faba3cbf329d4054a63638eb4ab363fbf4492578e79a68495957927c952f9959f27dfad299999327faba97ccacfb8ff595349f723af500cd92e3e7acf924a964a5924ae30218ef3cb7ad193f7895c9ea1feb2ba1d2e4f92b439ce7a493cb7a2393fe7ad4ba87deacf924a00eaf4bd5258ebad8f5496f12bccace4aeb34f9228ff752d7a54cf27181aa49e5a57052495d66a9d2b13fb2ff00e79d7d660cf99a867491d5492de2ad0fb3d557afaa33218e3f2de8d423f9eaa7994799e6507966779753472543e5d127dcad0cc2f24f32a1a9bcba86b8e98156493cbad0d3fcda5d9156dc7e557653031248e8fb00adb924a7563500e6e8ab7f6096a3923aa03fffd0fcd0ff00595b91c7ff002d64aa91c7e6495adb2b3330a28d9515e472d0064c92798f4476f2d4be5cb1bfef2a6fb67fb14012c9279695855a5249fbca238e292839cb71fef12b4238e963d3eba1b3d1e5963ae73a0e774fd2e592ebcad95ed3e1ff0007f971c72eca8bc37a3c5bebd62ce48b4b4fde3a7975d07560a99534fd3ffe59797e5d675fdc45a5c9589e2cf1a797fbad27fd65725a5c97fac3fef6be6cee3724d42ebc417de545bfcbaeb347f0ddad9a79b2d62497961a1a7dfae0b58f1c4b2279513d007ac6b9e24d2ecff7513d7866a9e2496f1ea9c9712de7ef6b3f4fb7f32fbf795cf50d0ef343d2fcc78fccafd03f84fa3c5f65b4af863c371fcf5f7bfc27f363b18ebe271b4cf6b067d63e17d3e2d3ec6ba0923f32b3f4b8fe48e5adaaf8fa87d5181a8697e62578b78b3478bf79f257bfc9e6c91d705a869f2c95e69a533e34d7343f2e4fde257996b167e5d7d61e24d1e5af0bf1869fe5a494533a0f16f33cc92b5e38fcc8eb263d2fcb7aeb2de3f92bb00cefecff002e892ba1b893cb4ae7a493fe79d7a54c0c4d43ad73127fab35d36a9d2b9993fd59aee0399d63eff9b5cd5755791d72727eeffd6d70d401d4d8e4a7537ccada980492511fdfa3cca3ccf2ebb0f2ce9ece4f2eb563fb95ca697aa66b6e3bcae8036aaaf99e6567c927ef28b7ff005d1d761b53343cba24ab554249280f6856a28a2b9cd86c7f7eb277d68f9a6b3b650635096393ccab9b25aa7feaeae4725741899324749e656bc91f99593269f5cf4e9819d253aa492dfe4a3fb3c51ecc087cca24fdda568491f994b1c747b33b0ce8eb5a8a2ba0f508eb3e9b2495149795ce70d4a84f55ea87f698ff009e759dbebc7a879a6b7991567492799534925674927ef28a60124959fe67c95a1247593b2bdea6150a74b247f2568f9759de6c547b3033a4b7f2e3a8a392adde49e625627992c75466743e5f991d73125bd6e69faa55bd434f8a44f363ad0e73988e4adcd3ff0079593f63f2e4ae874b8fcbae83c9c61adaa47f2573d1c7ff003d2ba1d43cdae4e4f363afaac19f335097cba8af23a24bc96a9c924b257d1533339da2a393cddf5250719a51c7e5c746a9fbbaa91c92c7feb6b2754d42592839c9a392924a8a3d43cca2492ba002492aa7f6879744925626c8abaa99d07591c9f6cab355b4b8fe4a4f32b139fda1723fde47e555af2fe4f2aa28ff00d58ad14accccffd1fcecb3a3f7be6568c750d667193474da8e392a5fdd495ce055924aa15b524716cac3d43fd6574015248eb474bfde3d548e3964aec74bd2e28ff7b2a57381d369fa5f991fef6bb2d2edeb938ef3cbad18f54f2ffd65741d076f249f638eb9ed435cf323f2ab2754d53ccf23ca7a34bd2fe4f365ae73d025d1f4bfb65f79b2d765aa6a961a5a793f2564ea1aa45a3a7eeebc2f54f144baa5f795e6578350299adae6b12ea17dfba7ae7bf7bff2d288fca92b6eb13a0b9a5d743a5e9f2efaced3ecebd0b47d3e29244a2a1a1ade17d2e5df1d7dfbf0bff7691d7cc1e13d0ed6478fcc4afb73c1fa3c5a7d8da7955f138da87d6610f73d2e4f32c63ad1f32a9e971c5e5f951d5cf2ebe17187b94ca9249f2564cbd6b464fbf54e48fcc8ebcb3d4382d62cfcc4af9dbc61a3f98f5f4d5e475e71ae6971495d94ce33e3ed434ff2e4ace8e4f2d2bda75cd3e28d24af11d4248a3bb922aec26a15354bc8aa28ef228eb3a4a3cbaeca6510ea9d2b2a48fcc4adb923ac9923f2ff00d6d7a80733aa475c949a7fcf5e87a869fe6561de59f975c607112474eae964b7ae6248eb4a601e64559d2475b7556493f775ec1c3ecccf8eb423b8f32aad5cae80f685f9350a23d42b3a4fb94ea0a353fb47deb47cd8ab9aa6c72504d33aea2b07ed1534771e65739dc4957638e8f34d11c95d070d433a4fb95a29feaea9547e6455e5989b9525733f6c8a8f32bb29d4035e48eb23ccab9e6554924adbda0136c96a58eaa7952d1e54b597d64ec2cd57d53ad66c979449256e74049f72b3e4ab7e69aa724941c656acd929d4579673d3a6363fb94ea6c97959ff00da06b8e987b434ab37ec7ed49fda1e6568ff00ac8ebdea6067c95cfc9feb2b424fbf59d249f3d6c661247e5fef62aa9247ff003d6b423fb9533d666863d6959c9fbbf2ab3e4a34f92b438cb5aa6975afa3d674971fbcadcd1aba0f27186ac9e5573f711d6dc92562ea9d6bdec19f3350e76f2cfe7aa9247f256b3ffabaa927dcafa2a679e7273fdca963a8a4fde3d1e6576012c91f99593247e656e79a6b98d53cd92838cb54567d9fdfad78e3ae8032648ea5b7ad092b3fcbad2981a3a7f4a493efd2c7e6d674924b45439ea1a31c9e5d6b47257311c92d68c725007fffd2fcec8e48bcba24bc8a8f2a2acf92deb33309350a863d428fb3c54b41ce6847e6c9feaaa18f4c977d68e9fa5f995d0f97159d797ed00863d3fcb4f36b423925ff00551254da7c9148fe5574d1e976be5f9b2d6d4ce839e8ff0077fbd97fd5d2c9a87db3f75155bd53cabc93ca8ffd5d1a5e8f147fbd96bb8d0238e58ff7b52c9e28fb3feeaa6d53ca8d3ca8eb82d523fde5719d043ae6a92de7fabaf3e92ce5dfe6ecaedbcba5fecbb5912b9ea1a5339dd3e4f2e3aeb74ffde5727259f96f5d668d5e3d43a0ef34bb3f92bbcd0e3963beacad0f4ff32d2bbc8f4bf2e4a2a543aa99e9be12ff005895f7c783e3ff00891c75f11f81e3f32beecf05c7fe831f9b5f9ce627d365c77ba5c7f3d5b93ee554d2ff0077255a924af8da87d819f252c9f72a5924ac9924ae30327508ebcf3c411f9695e85a87dfae0f5c8fcc4a299c67cf7e27af9ab5893cbbe92bea1f165bfc9257cc9e249228e492bd8a6045e67989491c9e6579c49ac4b1bf955ada5eb15ea01dbffac4a8648fccacfb3d52b464d422912b4033a4ac493efd6dc924527fab7ac993fd59a00c9923ae6248fccaedab1648fcbae80393f2e8923adb923f32aa7975cfed00cff2e2a3ccad0f2eb3e4aedf6950e1f663a8a2abc927995e99893492797593bea5924a8a83b0d1f34d4b1dc7fcf4ac98e4f312b4a3ff00595ce666a7994799595e69a3cd3401abe652c9a8573b249516fa3d99a1ad25e51f6cf32b268df47b3035bfb4297ed11566c7252563ecc0d3fb44549fda159d24951563ecc02492a292f296a95c75a3da00bf6ca4fb41a6515d9ed0cc93cc8ab22492964acf93efd719e592c92554df51d141d036393f795b91c9e6475cbffcbdd6e59d74011492796958927dfae824fb958925694c0d14a1eaa4724b44bd6ba0e7f6853923f3288e3ad3a2a69d30336493cb7ae874b93e4ae7a4fb956e393cb8ebb299e3d43a0924aca9350f9eaa799ff3d6aa495ef533e6ea0924959525e7c946a12561f99f27955f494ccc8a4928f365a8a4fbf50d7a87196bcca8a4fde7fadaa91fdca3fb42838cb71c752f9959fe64559b5ce0745e67994797514752f99e5d74016edede964d2eb5a3d5228e89248ab4039dbc8fcba86a6d43efd435981fffd3fcdc92f3cba22eb5a1247459d9f97599998926972c8f5ada5e8f2d74d1c71491d68c72451d07399d6767fd9f47f6a7db24f2a4ad0fdede54f1e97147279b25796741aba7e9f6b1c7e6d733aa7883cb7f2a3a354d52a1d2f4f8b54bef376514ea1ce6b697fbcfdedcd743aa6a1e5a79512554923b5d2d2b93d52f3cc92bd43a0350d62591eb3a4d43cca593f78f59327fabae302d49f72a38fefd2492451d451c9e65739e853258e3f31fcaae9f4b8eb9e8e3f9ebb7d3e3af36a1d87a3e8f27eefcdaeb2cff00d5d733a1c75eb1a3e8ff00da0f5f378da87a54cf47f87f1d7db9e1b8ff00d063af9afc1fe1b9638e396bea4f0ffeeec63afcf71b50fa0c19d125249252ff00cb1ac9fb67bd7cdd4a87d512c9251249ff003cea2924ff009e559d249e5d6671952492b8ed524ae9af2496b8ed66827d99e2de28ff008f17af97fc59feb1ebeb6f14795f61af8e7c6927cf257a58328f2cd43efd2c7aa7969593aa5e796f5cf49a857d101dbc7ac7975ab1eb9e67facaf2d8f50f9ea58e4ae803d92cf54ab726a91495e65a7ea12c95ab1ea1e5a7ef1e803ad924aced53f78f47f69d45f6814010f974799534927cf59de6455cfecc0864fb94eab15564fb95b7b33869946a193fd654927dcacff32bb2987b32193ee51449279759ff006cad8d8d08e4a37d677da0d4525e574199a125e79759f25e567c979e6554924f32b9c0d7fed397d6a97f6a0acadf59326a95d007591ea947f6a4b5cf4771479a6b403b1f32a68f50ae37fb428fed0a0d0ecbfb52a1fb44d5cf47aa51fda9e5bd00743f689a9d59b1ea147db3de83334a8a6c77944979599ce2f9b2d73127fabad5924a5f2fe4ad0ccc9d946cab9451eccd3d9532d471f994797e5d247279694b26a9ff003d28f666653bcac48eb72392b2a4ff005947b326a1355292892a2fed035b7b328d2a2b37cc8a8fed0358fb3009248a924bcf92b12f24ac99350af4a9d33e7ea1d3dbea1f3f955b7247e6475c769727cfe557a0c7245b2bd2a67cdd4383d53f775871d745aa564c7f7ebd2a750cca7251e5d125435f4c719379759fe5d5c93ee527faca0f2ea1855bb1d54f2e2ab71c74012f99e5c9e6c753492799593249e5d45fda8283a0d5f33cba5fb78acef33cc4a3ccad0d3d99a3249e6543e65455cec9f72ba00fffd4fcf2b38fcb4ab5247e5a554924f2e964d52593f75599e787f68456ff00baae9b4fd2fed1279b587a7e8ff6cae9e393fb3e3ae703a7fb1c56f635c16b1a84b27eea3a354d62592b8ef32592fab8c0e834bd2e591e3f36bb8b7d2e2b74ae7b4bd53cba4d435897fe59474530175493cbae62393cca8a4d42eaf3f7b59d1ea9e5c9f72bd43d0a66b49e6d624724b5b9fda717ad538e48a4ae1a805b8fcadf5a31d725279b5a31de4bb2a8da9d42dc75d3e8fdeb99d2e396392bd5f47d2fed95f338da87a477be17b7964f2ebea4f07e872d799f80f47f9e3f312bedcf0be976b1c71f9895f1f8da87a54e99a1a1e97e5d8d7a9e971f97635523d2e2ad0b3b3f2ebe3f1b50fb0c1532693fd5d64c9f72b42492b26492be56a1ed1564fbf4da749f7ea9f995d00124717975c9eb35d3ea125711aa4941a1e59e2cff00575f1cf8b3cdf32efe4afad7c49a87989257cb7e2c8fcc792bd8c3999f37ea91cbf6eae7f54f363af4cd534ff2eb83d523f32bdca6719c74724bbeba18e4f2e4ae4e4fddff00aaab71c95ea01d8c724b52c7256547715a1e6455ce06e47aa4b5a167a85711f6835b96f24b47b303acfb64beb49f68ae677d12495d873d335bfb42a292f2b2aa94925741d05b92f3cbacff0032892e3f7759ff00bd92838cd0f33e4acf93ee543450739379959d79245249e552545e67975c67653152b3a4ad1df51d694ce80acdf2e2a24922a87ed9fec57654024a77995568a3d99ce37ccab91d55a6c7f7e8f66068f99e5feeaa2f32aad37cca00d1fb41a23b8f2ff7559fbe2a87ed12d0719d3d9ea147f680ae63ccf2e8df2d0150e9ff00b4051fda1e5d731e6512495b7b3333a7df46fae63cca3ed92d62075925e45225549248ab9efb44b553ccf9fcaae80373ed9151f6c8ab0e4d43cba3fb422ad00dc92f2b26e24ac992f3cc7aa7e65741ce4dfda947f6a54524959d27dfa0e8346492b3a4a2493f774495a533e6f18686972796f5dec727c95e651d7791fdcaeca678e67eb3469ffeb28924f324a2ce3f33fd6d7a54ce1a812475cf49a7cb1d763e5d6249feacd7b4729914b254b2512795e67ef2bd0a673d421a28a9a3fb95999995711d54f2eba193ca92a1f2eb4a60548e3f2e3a9aa5924f2d2b3bccf33f755d869ed09a3a24b397fe59a55bd2fa55fae33a0fffd5fcf28e4f31eb6e3d2e2acf8ece28ff007bbeba1fed08a37accf3c24bcf2e3f2a2ae7a4925928d52f25b87fddd54f2fe4f2a8033a4f3647adcd3f4ff31ff755cf49e6efae834f93cb8eb9c0e8a48e28d2b26f3ca92a59350f32b3fcbf9eba0023d3fccff5559d268f156b471f9744925739e853399934ff002eaa7992c75ada85e5644727995c67405bdc56e47795896fa5fcf5d047a5fcf41ce74fa5c7148f5ed3e13d2e2b8af27d2f4b97cc8ebe8ff03e9f5f1398d43e93054cf6ef03e97e5bc75f5af86ecfe4af00f03e9ffeafcdafa5747b3f2d23af89a950fa4a74ceb23a95ff00e3da2a9e3fb94daf06a1ea61cca9296ad5c4716cae7b54fddd79a7b85492e3ccacff00ed0f9e92492b124bcf9eb33a0d692f3ccff575ccea11f99449a87975c9ea1a87eee80393d734bf924af9efc41a7fcf5f44ea927988f5e23ae59d7a58739cf9c3c4167e5d79eea1675eddae59d793ea11f975ef610f3cf32d623f2e4acaae9754b3f323ae4e48ebe90f2ea13fdb25f5a3ed92fad647972f99e6efad1f2e8035a393ccae9adf54ae0bfd5d68c724b1d007591c9e5d4bf6835ccfdbcd4df6f96b9ce83a6f362a8bfd6573d1ea15ad1de79741d85a923a8bcbf2e8fb64b4799150718eacd93ee5687991567c9f728a668435892f5adcf33fd8aa7247e63d1ecc2a18553c7536c96a193fd59ada9d331f68452555ab527dcacf93efd770532f5558fee551a2b9cc7da1b14556df151be2a00b358f57f7c550fda25a29815aa9495adf6896b264a0cc8a4a4df2d44f51d741cf52a09249449792c74b45757b33a06f99479954693cd96a8e7343ede293ccf9ea8d41f6f97cca9f6663ed0d6924ace924a7557f33e7ada99b13f9b2d2799449fbbff5750d741e3d4a84fe6cb50c927fcb59292a293fd59a0cc993fd5d1e67c9e55169d2892496baa99cf5048e4f3248ebd3a3fb95e65a5c9e5bd7a6e8f1f9895b1e6d438dbcfddc95d0c71d1aa697f3d68471d7a54ce3a845593a876adc92ceb2648fccaf48e5397a9a48fcca9bcbf31ea2d43a5741cf50238e8923a4f2fe4a24a00c48eb5a3fbf1d1feb292b4a6662c925548eadc91d64c94540372393cba4f32a1a58e3acc0ffd6fce79354ac9fed0350c927cf5347e549599c61e656b47a8564c967e651a7fdca0e83a18e396f2ad491d68e971f969e6d624927cf4019d249ff002ca3a9a3d428f33ccfdd54b1d9c55ce739a3fbd929364b572cfca8ea19350f32b33a0cfd423ac88e38aa693cdaa91f9b1ffabae73aa99379b15741a5ea1fbc8eb3e38e592b734fd3e592fa3ac6a1b53a67b9f85e3fb67972c895f4d781f4788f915e59f0ef4b8b647e6257d8de0fd2ed7f77f257e7b98d43ec3054ceb7c27a3c51a79b5e9ba7d9f97587a5c7147feaebb8d3ff00d5d7c59ea127da0d5b92963b7a248fe4af2ea1e853a66749f7eb9ed43ad6e49f7fcaae2358bcf2deb8cf4bda1877925733249e5d6b6a927cf59b41b18b792567c9f71eb424fb959f27dc7accda999127fab35c1eb1a5d77925733aa7ef2bd2c3989e17ae697fbcaf2dd534bf32bdcf5c8fccaf32d434f8a3af4299e3d43c5f54d3fcbae23548ebd8f54d3fccae0b50d2fe47af7a9d431f66796c92796f47991797e6d6ade584bbeb2a4d2fcb4af50c4cefb651249e67eea3ab7e5c552500508e497ccad18fefd11c7ff3ca9b400b1f9b5af1ff00abace8e3ad1d95cf500b7e64b1d1e6cb59d249532507416bccf329d4515d001492494927dfacfbc93cc7a0e72a4950c9252f99492495a530f6625145145402ac9f7e88fefd127dfaa91c94016e4fbf546acfda25ac9f32802ed57a89ff00d654b5d94c028aa75424a009a49296a08e8924f2eba0f06a12c950d61d15d81ed0dca2b0e8a03da1a52545e6c547db28f28d01ed0238ea1f365a9bca34492569eccc7da094545bff00e9a251e6563ecccc96a2924acf924a493efd6decc0d18e4ace93ee51e65127dfa0e7a86be972797755e9b67ff1ef5e396f2796f5ec7a5fef23aeca678f50354fbf256847e5797553508fcca23925af4a998d4a845249147552e258a92493cc92b9f92bb8e5343ccf9eb2e4ff0059447feb2abde49f3d687396aa8c9f7ea4f32a1a299d055f2e2a3cc8b7e2adc91fc95c6c979e5bf955d0739d9799e5d12554d2e4f312adc91d071d4163fbf4925253a4fbf40533ffd7fcc68f4b964ab51e97ff003d5eb72393e4aa9fda3fec571fb338c9bfb3e2f2ea5d3f4ff9e88e4964ff0054f5d3e971d6d5299d04327eed2b93d43fd65759aa495cf471d501147feaead5bd45f638bd2b4638e5a006d56923adb8ff00771f9b59f25e7995c67398b5b31c71495cfcbd6ba1b4ff00575cf50299ada7e9f16ffb95e85a3e8fe65dc7e5d73ba1e972c95ef5e17d2e215f37531a7d360cf68f01f86e5afac3c3fa3fd9d23af22f01e9fe5a57d29a5c7f257c1e36a1f694c8a3b3f2eba6d3fbd45f6796a58ff7695f2e7a54e996a964bca8b7d5497ad7967a81712570faa74ae9deb98d53a5741c6713aa4958725e79956f548fe7aceff575ce7a14c593efd62d6a49f72a2d9150741c9dc49f3d64ea927c95d0ea96f5cc6a9675b5303cf75092bce354fde3d779aa7eedeb88bc93ccada99e2d4399d52de292b92d534baee2f24f2eb9ed524f92be9299479649a5d64ea1a7fc95dbde47e6567de6972d14ea1e59e43aa47e5d54af42d434b97cb93e7ae4ff00b3e58e4af4bda019b4e8ff0078f56ffb3a5f5ae874bd2e5adbda1999d1c7e5d68491fc95afb28d95c7ed0d0e63cba23b3aec7fb2ff00dbae7e4d3e8f687419d247516cad6f2eb3e4fbf45338c4923f32b0ab76493cbac492bd4341b4555924f2ea8d694c0d0a28a2ba0ec1b795469f24959527dfae738cb54553a2ba008e4fb953799e5d12553f32baa9d302d55593efd1e652c927994540218e892b26493e7a2392bb299e0d420ad2bcacda8e492a8c4b7e651e6554924f33f7559fbeb4a6150b5e652fdbc56749514bd6bd43335a393e7f364ad5ae66393cc8eb4639280343cbacef2eb5fcd354ab8cd3d991f97151e5c5537994dae702bd2471cbfeb6969b27dcaf50e3a867c75ed3e1f93cc4af28af46d0ae3e4ae738cede48eb3f64b56fccf928df5b53a871fb3326e2cfcb8eb27cb8ab5b5092a9c75ed1c7ecce65ea1bc8fcba99ea192bb0cc5b38eb5a3b3ac88eb7ab9ce7f6666ea91c5b2bcdf548fcb7aefa7ff591d616a91f96f5d0741369f279695a1e657311d6bc72796f41cf50d092aa79956e4acf8e3a0299ffd0fcdc8ede5ab71d9f99feb2adef8a8d3e4acce32dd9e97e5c75b71c9e5d5492e228d2b3ff00b40d0741a12567f97447795d150066c71d4dfead2a1924f2e3fdd567c924bb2b9ce7a8687f68567491f99feaeb123d4e5df449aa4b59999b7e5f992568c71d731a7fdaa493ee575b1c72d78b52a1eb60a99dbf87e4f2dfcaafa3fc0f6fe6578b780f4bf31e3afb33c0fe1baf95c6d43eab054cf73f03e97fe835ea7a7c7e5d73de1fd3e2d3e34aec76455f138da87d853a65bf2ead5471ff00aba2be56a543d40a86e23f32adc71d125634c0e79eb99d43ad76327fab35c6ea9d2bd2387d99ca6a1feb2b0e48ff00e7956e6a1feb2a9f975c67a473fe5d2797e5c95a745740185791d727a8475db491d729a879b41d078e6b967f3d7996a11d7b46b1a7d79eea1671475a5339cf3dd423f2e3ac492cfcbaeb358ae7a48ffe7957b079e61c91d45f63f32b464fbf491c95d0739cc49a5f98f59fa86975dbf95151259d694c0f38fecbff006eb2248ebd0e4d3eb0e4b7aec31f66727f68f9ea68ff00d656849a7fcf5a31e972c95987b333bfe58d45fba912b6e4d2e5a23d2e831a87272471567de47e5d779a869759f26975a01e6ffd9f4496f157592697e5d1259d7a80705247e652c91ffcf5aeb24d2eb9e934fa00e7648e995b3247e652f975a01cc7952d1e54b5ad247e5d1f6796803124a6d6c496fe5d43f679aba00ceff5759d5d17d9eb12f23aeaa750082964a9a48fcba82bb80abe5f9951491fef3f755a1e5fef28923ff9e741e0d430aaac91f995b9259f974be54b5a1ca72f24751475a324747d8e5f4ada9819de655bf2fccff5952c7671494491f972577019fe5f975a31c9e5d6779947995c6068f9b2d677992f999a992ad79740146afc72512474b5a00d93ee52c7fbc4a493ee52d9ff00ab928008e3aedf43fdda571b5d3e8f5c750e73b7fb645e451f6c8bc8acfd43eed36bd2a6718b27fab4a23acff33ccad0df2d7a471d439e7a864ab9247e64750c91f995d871d3218e8f32a1a5fdec95d0665fac0923f324adfac07ff57535008638fcca9a38e92cfefd68551ce151d43249ff002d65a238ff00e594541d07ffd1fcd18eb42393f7959fe651a5c9f3d66666b49feae84aa979279750c7a85694e981d0d451f9bbeb263b8ab71ffabacc0d6b8aa7f68aab2492d674724be65006df97e5d5b8f4ff0032b3e49258e8d3f5496bcba8694e99d8c71c51a79b5a3a5c9f6893ca8eb0fccfb65771e13d2e2bcbe8fccaf23127660a99ef3f0bf47f92bec6f0bd9f9691d785fc3fd1e2f2e396bea5d0f4bf2d23af88c6d43f42c1533b7d3ff7695b9e67969459d9f9491d5a9238abe3ea543d2a655b3925ad6a86de3f2ea6af9ba87a84b2564c925685c75acffe3a299a5333a48fccae67508ebb8ae77508fe7af48e8393f2fe7ac9d46b5a48eb99d43a50064492568c71d61c95b9a5dc7989401ade5f995cc6a9a5e2b5e393cb7ab5247e6475c6078beb1a5d793eb11f96f5ee9aa59d790ebba5fcf5d94c9a8796ea11d731711fc95deea1675cc495ea1e49c9c95423ff00595ab7967e6561f9753ed00d68eadc71f99552392adc7f72bb29d427d99149a7d6749675d949feb2b3bec7e65771473d1e97e5d687f65c51d68ff67feefcda9a4b38ab9fda0193e545e6543aa7fabfddd5b92dea292dfcca3da1ce739572cf4b964ad78f4f8a3ff5952c7e5474530f66549343f92b88d434bf2ebd0a4d522d959379a7c5257a814e99e71796f2f9959d247ff3cabd224d2e28eb9d934f8a4ad0c6a53389934ff32b0ffb3ebb792de8d92d74189c749a5d43259f975d6491feeeb9e9248a8030a9de5d27faca5928331b58b27dfadaaa1247e5d75533439e923a929d249e655393efd77198bfbadffbd4a4928f2fcca9b654fb4021f32b2a5eb5b7fd97e656b47a1c52475e97b43e7ea5338ef362a3fd656ac9e178bcca59343f2ffd53d1ed0ccc3ff56959527dfadb934b96b2648e5aec033bcbf9eb423fb955648e58ea18eb303a18e3a5ace8f50ab341a13c9e5550a6c9f7e9d5d8661562abd5a93ee3d73d4029c7f72bb7f0bd9d7131c75e8fe178fe7ae3a8739b9269f55248fcb4ae9e4fb9585247f257761cf3cc4f3228deadc77159f259d68471d7ac01249e5d733a8495b7247ff3cab13508ebd43cb123922ad1b7922f32b3a38fcbab55a017751fb9593247e5d5bf33ccaa727dfa0ccc492adc7f712a2fecb15ab1d71811797e654d1d9feeeb423a9a392bb2981fffd2fcd1f328b38e9238eb723b3a3da199ccea125548ef3e7ad6d434bf31eb2765741a1a16ff00eb2b712b3b47fdda7ef2b5bccae733343cb8b652c7671799553ed9f251f6cff9eb5c750d2996ef238a934f8e2acad53f7954fed1775c750e83d0e38ebd1fc0f1cbf6eaf27f0fc92f995f47f81e3f31e397657c4e36a1e8533ec1f867a5ff00a2475f4fe9767e5da415e19f0fe3f2d23af798e3f923af83a950fd13087431ff00aba864a9a3ff005950c95e0d43d826df451447feaebcf0093fd5d63d6c49feaeb9d923f2e4a0e717ede2b3b53acf9350f2eb0fed92d4d3a87606a924b5ccea12574d2562491d6c741cedc79b2555d2ff007756a48e963fbf40047fbc7ad0f33e4f36b3fed9146f45e6a14015354ff595e4fae47f3bd779aa491495c1eb15d8739e4fa874ae3648ebd23548fccae364d3ebd2a74ccce7a4b3ae62f23f2debb7923f32b9fbcd3eb1030e38fcbab71de7cf535e69f593e5f97257401d0c727975b91fdcae623933fbd8aadc7aa455e81c66d514b1c949400e93ee553ff5756e48e2a8b6504d330f5492b99d535496bac934faa9269741d9ecce4e3d525ab71ea92d5ad434ff0092b93d42ceea37fdd5741ca6bc9aa4b2567797e6564c7f6aad6b78fcbad0e7a812475932475d3c91fc9593a859cb5d0071ba87eed2b8e93cd91ebacd52394d61c7a64bbeb43333e38e5a3cb964aeb3ecfe5c74476f5d007271c72d6749672c95deff0065fef28934bf32a699ce79bf97f3d1fd972c95e91fd8f147feb12b3bcb8b4faf480e623d1fcba5934f963ae9a4d52d6b1354d522accccc993cd8ff00d6d64de6a92dbd4b26a9e6573da8492c95d54cf16a1a1fdb9e656e47a8452579c6cbafee3511c92e9f5e97b3394f49aa579a5c525733fda82b6f4fd522fb2fef6bd4032754d2eaa7d9cd74324914951491d7181931d9c5495a1542efa571810c91d50ad58bad432474019d1fdcad192b22b72b4a80449feb2ba1d0ee3cbbeae7a38eb734bb3baaccf2cf47924f312b3e3a23a6d7a587332ac9f72a6a864fb95357bc045249e656749e57fcb5ab559527fab35d87199d1d5aaab27dca3cca9a7500b54556f365a3cd96a8e321923f9e88e4a4a2839cd0a747f72aa47279747dbc50741fffd3fce3a83ede6a58e3ab7269fe65071d330ee3548aa28ff78f56e4d3ea5b3d2fcba0e82c565d4f711cb5169f1cb2256606dc71fc95a367671568471feee8f2e800fecb8a4ad18f478a48eb3a3925df5d669f1cb22579b8c3aa99a1e17f0df997dfbd4afadbc0fa1c51f97f2578e781f4b964afb1bc0fe1f8abf2fcc71a7d260a99ea5e0fd3fcbaf5e8e3f2d2b3b4fd2e2b34fdd57511fdfafcf7da1f71831b51c9feaea5f2ea293fd5d71d43d20f2a5f5ab5e5d67c72568799598155eb9ed43a57432491564ea9245b2b9c0e35fefc95147e552ea9d6b36deba0024fb95cceb1dabb793fd63d73baa795b2834383bc925f32b124d43cbad6d424f2de4ae2350bca0e83424d6258eaa49ac4b5cf49245587279b5a01d0c9a87cf59faa49e62567f99156849e6c95b53a671989a847e6573b2475aef59cff00eb2bda38ce665eb552e2adea9d2aa5c50061c91d625e59d74df6796aa49675a53a6071d247491f9bbff775b925bcb1d431c7e5d740069ff7eba78ede5ae792bb2d2e49634a003ec7151fd9e6b6e3bca3ed9401524d3fccac4934fae9bcca24a0ec38892ceb124d2e2ff9695de496fe6545fd97ff003d28343cf64d2ed6a1fecff2ebd1ff00b1e29297fb3cd0078e5e69f2c959d259d7a6ea9a7f975932697e65761e3d4383d434b8ab9efecf8bccaf42934ba87fb1e2f4aeaa7500e0a4d3fe4ad7d3ece2ae86f34ba4d3f4bf2eb631a667ff0067d1259c51d759fd972f97fbbac4934b963a29854a6711ac79bf6193cbaf3cd53cddf5ed3aa472d707aa6972ecaec31f6679ec9712d61c9e6c95d3c91dd79956bfb2fcc8e8a66671d1c7ff003cea68ede592babb3d2e58eb72cf4ba3da1ce7271e9fe6543268f5e87fd972c69593aa472c89452c69e3d4a6790ea9a7f96ffbaae7bf7b1c95ed1fd87f6c4ae4f54d0e58de4af4b0d8d0393b7b8ad7fed4f312b9dfb3f975a31c75e97b40f665cf365a864928f2a2a9638fcbac7da1b7b31d50471cb256dc7a7d7651e97e655189e65269ff00bcad6d3f4bf312bb6934797ccfde54d67a5cb1c74199891e875aba5e97e5d6e47a5cb5d0c7675e5fb43cb3887ff59576a4d52cfcb7ace8e3ff009e95f41873322928f2ea5d43ef545e657b8011c7ff003ca9248fe4a58ef25a3ccaeca673987247e6475ccea1d2ba6d524f92b9393cdfb7566664d1fef1eba68f4ff92b12392b6fcc97cbc5687187f67d624967e5d5bfed0356a3bc8a4ae8032648fccacff32b4750e959de65007fffd9, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `crew_certificate`
--
CREATE TABLE `crew_certificate` (
`id` int(11) NOT NULL,
`crew_id` int(11) NOT NULL,
`cert_id` int(11) NOT NULL,
`date_issued` varchar(255) NOT NULL,
`number` varchar(255) NOT NULL,
`date_expired` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `crew_certificate`
--
INSERT INTO `crew_certificate` (`id`, `crew_id`, `cert_id`, `date_issued`, `number`, `date_expired`) VALUES
(38, 55, 1, '03/09/2024', '8888', '12/06/2021'),
(39, 56, 1, '12/08/2021', '3949334343', '12/11/2021'),
(40, 54, 1, '12/10/2021', '3', '12/08/2021'),
(41, 54, 4, '12/09/2021', '3', '12/06/2021'),
(42, 59, 1, '11/30/2021', '456789', '11/29/2021'),
(43, 55, 1, '12/01/2021', '33', '11/30/2021'),
(44, 54, 1, '11/30/2021', '99', '11/30/2021'),
(47, 55, 1, '12/01/2021', '88888', '12/08/2021'),
(48, 55, 13, '11/30/2021', '44', '12/08/2021'),
(49, 58, 1, '12/09/2021', '3333', '12/16/2021'),
(50, 64, 1, '11/30/2021', '99999', '12/01/2021'),
(51, 64, 13, '11/30/2021', '77777', '05/12/2022'),
(52, 56, 1, '11/29/2021', '123456789', '03/31/2022'),
(53, 57, 5, '11/02/2021', '0000', '11/26/2021');
-- --------------------------------------------------------
--
-- Table structure for table `service`
--
CREATE TABLE `service` (
`id` int(11) NOT NULL,
`crew_id` int(11) NOT NULL,
`company` varchar(255) NOT NULL,
`rank` varchar(255) NOT NULL,
`shipname` varchar(255) NOT NULL,
`vessel_id` int(11) NOT NULL,
`from_date` varchar(255) NOT NULL,
`to_date` varchar(255) NOT NULL,
`reason` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `service`
--
INSERT INTO `service` (`id`, `crew_id`, `company`, `rank`, `shipname`, `vessel_id`, `from_date`, `to_date`, `reason`) VALUES
(128, 60, 'FACEBOKSSS', 'FDSFSDFSD', 'CARGO', 5, '11/29/2021', '12/11/2021', 'this is reason'),
(129, 57, 'ABC', 'STUDENT', '<NAME>', 5, '12/05/2021', '11/03/2021', 'this is reason'),
(130, 59, 'TECH', 'THIS IS RANK', 'CARGO', 3, '11/08/2021', '12/11/2021', 'this is reason'),
(131, 54, 'TEST', 'THIS IS RANK', 'TEST', 6, '11/23/2021', '11/17/2021', 'this is reason'),
(132, 54, 'STUDENT', 'THIS IS RANK', 'HTOO', 1, '11/24/2021', '11/10/2021', 'this is reason');
-- --------------------------------------------------------
--
-- Table structure for table `user`
--
CREATE TABLE `user` (
`id` int(11) NOT NULL,
`username` varchar(255) NOT NULL,
`password` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `user`
--
INSERT INTO `user` (`id`, `username`, `password`) VALUES
(1, '<EMAIL>', '<PASSWORD>');
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`id` int(11) NOT NULL,
`email` varchar(255) NOT NULL,
`password` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `email`, `password`) VALUES
(1, '<EMAIL>', '<PASSWORD>hantlinn');
-- --------------------------------------------------------
--
-- Table structure for table `vessel`
--
CREATE TABLE `vessel` (
`id` int(11) NOT NULL,
`name` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `vessel`
--
INSERT INTO `vessel` (`id`, `name`) VALUES
(1, 'Bulk Carriers'),
(3, 'General Cargo Vessels'),
(5, 'Container Vessels'),
(6, 'Reefer Vessels'),
(7, 'Ro-Ro Vessels');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `certificate`
--
ALTER TABLE `certificate`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `city`
--
ALTER TABLE `city`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `crew`
--
ALTER TABLE `crew`
ADD PRIMARY KEY (`id`),
ADD KEY `vessel_type` (`vessel_type`);
--
-- Indexes for table `crew_certificate`
--
ALTER TABLE `crew_certificate`
ADD PRIMARY KEY (`id`),
ADD KEY `crew_id` (`crew_id`),
ADD KEY `cert_id` (`cert_id`);
--
-- Indexes for table `service`
--
ALTER TABLE `service`
ADD PRIMARY KEY (`id`),
ADD KEY `crew_id` (`crew_id`),
ADD KEY `vessel_id` (`vessel_id`);
--
-- Indexes for table `user`
--
ALTER TABLE `user`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `vessel`
--
ALTER TABLE `vessel`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `certificate`
--
ALTER TABLE `certificate`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;
--
-- AUTO_INCREMENT for table `city`
--
ALTER TABLE `city`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31;
--
-- AUTO_INCREMENT for table `crew`
--
ALTER TABLE `crew`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=67;
--
-- AUTO_INCREMENT for table `crew_certificate`
--
ALTER TABLE `crew_certificate`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=54;
--
-- AUTO_INCREMENT for table `service`
--
ALTER TABLE `service`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=133;
--
-- AUTO_INCREMENT for table `user`
--
ALTER TABLE `user`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `vessel`
--
ALTER TABLE `vessel`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `crew`
--
ALTER TABLE `crew`
ADD CONSTRAINT `crew_ibfk_1` FOREIGN KEY (`vessel_type`) REFERENCES `vessel` (`id`);
--
-- Constraints for table `crew_certificate`
--
ALTER TABLE `crew_certificate`
ADD CONSTRAINT `crew_certificate_ibfk_1` FOREIGN KEY (`crew_id`) REFERENCES `crew` (`id`),
ADD CONSTRAINT `crew_certificate_ibfk_2` FOREIGN KEY (`cert_id`) REFERENCES `certificate` (`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 */;
|
INSERT INTO pos_itemtemp VALUES("IATT200005668","193020","191001","192002","40000","1","40000","0","40000","1","1","1","IAT0503200927","NHO2018000007","PAID","","193020"),
("IATT200005669","193078","191001","192001","30000","1","30000","0","30000","1","1","1","IAT0503200927","NHO2018000007","PAID","","PEDAS"),
("IATT200005669","193017","191001","192002","37000","1","37000","0","37000","1","1","1","IAT0503200927","NHO2018000007","PAID","","193017"),
("IATT200005669","193052","191002","192010","20000","1","20000","0","20000","1","1","1","IAT0503200927","NHO2018000007","PAID","","193052"),
("IATT200005669","193048","191002","192010","8000","1","8000","0","8000","1","1","1","IAT0503200927","NHO2018000007","PAID","","193048"),
("IATT200005669","193041","191001","192008","20000","1","20000","0","20000","1","1","1","IAT0503200927","NHO2018000007","PAID","","193041"),
("IATT200005670","193024","191001","192003","30000","1","30000","0","30000","1","1","1","IAT0503200927","NHO2018000007","PAID","","193024"),
("IATT200005671","193011","191001","192001","40000","1","40000","0","40000","1","1","1","IAT0503200927","NHO2018000007","PAID","","PEDAS"),
("IATT200005672","193083","191001","192001","30000","1","30000","0","30000","1","1","1","IAT0503200927","NHO2018000007","PAID","","193083"),
("IATT200005673","193039","191001","192006","36000","1","36000","18000","18000","1","1","1","IAT0503200927","NHO2018000007","PAID","","PEDAS"),
("IATT200005673","193039","191001","192006","36000","1","36000","18000","18000","2","1","1","IAT0503200927","NHO2018000007","PAID","","PEDAS"),
("IATT200005673","193037","191001","192006","36000","1","36000","0","36000","1","1","1","IAT0503200927","NHO2018000007","PAID","","PEDAS"),
("IATT200005673","193036","191001","192006","36000","1","36000","18000","18000","1","1","2","IAT0503200927","NHO2018000007","PAID","","PEDAS"),
("IATT200005673","193070","191001","192012","13000","1","13000","6500","6500","1","1","3","IAT0503200927","NHO2018000007","PAID","","193070"),
("IATT200005674","193029","191001","192004","27000","1","27000","5400","21600","1","1","1","IAT0503200927","NHO2018000007","PAID","","193029"),
("IATT200005674","193032","191001","192004","30000","1","30000","6000","24000","1","1","1","IAT0503200927","NHO2018000007","PAID","","193032"),
("IATT200005674","193056","191002","192010","17000","1","17000","0","17000","1","1","1","IAT0503200927","NHO2018000007","PAID","","193056"),
("IATT200005674","193055","191002","192010","17000","1","17000","0","17000","1","1","1","IAT0503200927","NHO2018000007","PAID","","193055"),
("IATT200005675","193079","191001","192001","30000","1","30000","0","30000","1","1","1","IAT0503200927","NHO2018000007","PAID","","193079"),
("IATT200005675","193055","191002","192010","17000","1","17000","0","17000","1","1","1","IAT0503200927","NHO2018000007","PAID","","193055"),
("IATT200005675","193048","191002","192010","8000","1","8000","0","8000","1","1","1","IAT0503200927","NHO2018000007","PAID","","193048"),
("IATT200005676","193011","191001","192001","40000","1","40000","0","40000","1","1","1","IAT0503200927","NHO2018000007","PAID","","PEDAS"),
("IATT200005676","193086","191001","192002","33000","1","33000","0","33000","1","1","1","IAT0503200927","NHO2018000007","PAID","","PEDAS"),
("IATT200005676","193055","191002","192010","17000","1","17000","0","17000","1","1","1","IAT0503200927","NHO2018000007","PAID","","193055"),
("IATT200005676","193055","191002","192010","17000","1","17000","0","17000","2","1","1","IAT0503200927","NHO2018000007","PAID","","193055"),
("IATT200005674","193076","191001","192001","30000","1","30000","0","30000","1","1","2","IAT0503200927","NHO2018000007","PAID","","193076"),
("IATT200005673","193070","191001","192012","13000","1","13000","6500","6500","2","1","4","IAT0503200927","NHO2018000007","PAID","jangan di buat. makanan sudah keluar","193070"),
("IATT200005677","193036","191001","192006","36000","1","36000","0","36000","1","1","1","IAT0503200927","NHO2018000007","PAID","","PEDAS"),
("IATT200005678","193022","191001","192003","30000","1","30000","0","30000","1","1","1","IAT0503200927","NHO2018000007","PAID","","193022"),
("IATT200005678","193025","191001","192003","30000","1","30000","0","30000","1","1","1","IAT0503200927","NHO2018000007","PAID","","193025"),
("IATT200005678","193054","191002","192010","20000","1","20000","0","20000","1","1","1","IAT0503200927","NHO2018000007","PAID","","193054"),
("IATT200005678","193054","191002","192010","20000","1","20000","0","20000","2","1","1","IAT0503200927","NHO2018000007","PAID","","193054"),
("IATT200005679","193084","191001","192001","30000","1","30000","0","30000","1","1","1","IAT0503200927","NHO2018000007","PAID","sedang","PEDAS"),
("IATT200005680","193011","191001","192001","40000","1","40000","0","40000","1","1","1","IAT0503200927","NHO2018000007","PAID","","PEDAS"),
("IATT200005680","193056","191002","192010","17000","1","17000","0","17000","1","1","1","IAT0503200927","NHO2018000007","PAID","","193056"),
("IATT200005680","193048","191002","192010","8000","1","8000","0","8000","1","1","1","IAT0503200927","NHO2018000007","PAID","","193048"),
("IATT200005680","193039","191001","192006","36000","1","36000","0","36000","1","1","1","IAT0503200927","NHO2018000007","PAID","","PEDAS"),
("IATT200005681","193011","191001","192001","40000","1","40000","0","40000","1","1","1","IAT0503200927","NHO2018000007","PAID","","PEDAS"),
("IATT200005681","193056","191002","192010","17000","1","17000","0","17000","1","1","1","IAT0503200927","NHO2018000007","PAID","","193056"),
("IATT200005681","193118","191001","192012","20000","1","20000","0","20000","1","1","1","IAT0503200927","NHO2018000007","PAID","","193118");
INSERT INTO pos_salestemp VALUES("IATT200005668","","1","40000","0","4000","0","44000","44000","05/03/2020","10:13","2020-03-05","10:15:37","ISU000006","tbl0001","CLOSED","1","","IATR200005518","","","","","IAT0503200927","NHO2018000007"),
("IATT200005669","","2","115000","0","11500","0","126500","150000","05/03/2020","11:09","2020-03-05","11:43:42","ISU000006","tbl0012","CLOSED","1","","IATR200005519","","","","","IAT0503200927","NHO2018000007"),
("IATT200005670","","1","30000","0","3000","0","33000","40000","05/03/2020","13:12","2020-03-05","13:58:10","ISU000006","tbl0013","CLOSED","1","","IATR200005520","","","","","IAT0503200927","NHO2018000007"),
("IATT200005671","","1","40000","0","4000","0","44000","44000","05/03/2020","14:18","2020-03-05","15:41:04","ISU000006","tbl0011","CLOSED","1","","IATR200005521","","","","","IAT0503200927","NHO2018000007"),
("IATT200005672","","1","30000","0","3000","0","33000","100000","05/03/2020","15:33","2020-03-05","16:06:50","ISU000006","tbl0005","CLOSED","1","","IATR200005522","","","","","IAT0503200927","NHO2018000007"),
("IATT200005673","","3","170000","67000","10300","0","113300","115000","05/03/2020","15:46","2020-03-05","18:04:04","ISU000004","tbl0024","CLOSED","1","","IATR200005523","","","","","IAT0503200927","NHO2018000007"),
("IATT200005674","","2","121000","11400","10960","0","120560","130000","05/03/2020","17:43","2020-03-05","18:26:50","ISU000004","tbl0011","CLOSED","1","","IATR200005525","","","","","IAT0503200927","NHO2018000007"),
("IATT200005675","","1","55000","0","5500","0","60500","100000","05/03/2020","17:44","2020-03-05","18:38:15","ISU000004","tbl0012","CLOSED","1","","IATR200005526","","","","","IAT0503200927","NHO2018000007"),
("IATT200005676","","2","107000","0","10700","0","117700","150000","05/03/2020","17:48","2020-03-05","18:26:19","ISU000004","tbl0018","CLOSED","1","","IATR200005524","","","","","IAT0503200927","NHO2018000007"),
("IATT200005677","","1","36000","0","3600","0","39600","100000","05/03/2020","19:24","2020-03-05","19:42:49","ISU000004","tbl0002","CLOSED","1","","IATR200005527","","","","","IAT0503200927","NHO2018000007"),
("IATT200005678","","2","100000","0","10000","0","110000","150000","05/03/2020","19:45","2020-03-05","20:16:36","ISU000004","tbl0011","CLOSED","1","","IATR200005529","","","","","IAT0503200927","NHO2018000007"),
("IATT200005679","","1","30000","0","3000","0","33000","33000","05/03/2020","20:01","2020-03-05","20:02:40","ISU000004","tbl0006","CLOSED","1","","IATR200005528","","","","","IAT0503200927","NHO2018000007"),
("IATT200005680","","2","101000","0","10100","0","111100","150000","05/03/2020","20:02","2020-03-05","20:43:28","ISU000004","tbl0012","CLOSED","1","","IATR200005530","","","","","IAT0503200927","NHO2018000007"),
("IATT200005681","","1","77000","0","7700","0","84700","84700","05/03/2020","20:03","2020-03-05","20:54:06","ISU000004","tbl0005","CLOSED","1","","IATR200005531","","","","","IAT0503200927","NHO2018000007");
INSERT INTO item_void VALUES("IATT200005673","IAT0503200927","NHO2018000007","193039","PEDAS","1","36000","Before Send","Komplen Customer");
INSERT INTO pos_promotion_h VALUES("IATT200005673","NPRM18000032","DISC ITEM","1","67000","BANYAK MAKAN BANYAK UNTUNG 50%","IAT0503200927","PAID","NHO2018000007"),
("IATT200005674","NPRM18000029","DISC ITEM","1","11400","BANYAK MAKAN BANYAK UNTUNG 20%","IAT0503200927","PAID","NHO2018000007");
INSERT INTO pos_promotion_d VALUES("IATT200005673","NPRM18000032","DISC ITEM","1","1","193039","1","18000","IAT0503200927","PAID","NHO2018000007"),
("IATT200005673","NPRM18000032","DISC ITEM","1","1","193039","2","18000","IAT0503200927","PAID","NHO2018000007"),
("IATT200005673","NPRM18000032","DISC ITEM","1","1","193036","1","18000","IAT0503200927","PAID","NHO2018000007"),
("IATT200005673","NPRM18000032","DISC ITEM","1","1","193070","1","6500","IAT0503200927","PAID","NHO2018000007"),
("IATT200005673","NPRM18000032","DISC ITEM","1","1","193070","2","6500","IAT0503200927","PAID","NHO2018000007"),
("IATT200005674","NPRM18000029","DISC ITEM","1","1","193029","1","5400","IAT0503200927","PAID","NHO2018000007"),
("IATT200005674","NPRM18000029","DISC ITEM","1","1","193032","1","6000","IAT0503200927","PAID","NHO2018000007");
INSERT INTO pos_paymenttemp VALUES("IATT200005668","CASH","OVO","44000","44000","ISU000006","2020-03-05","","1","","CLOSED","IAT0503200927","NHO2018000007"),
("IATT200005669","CASH","CASH","126500","150000","ISU000006","2020-03-05","","1","","CLOSED","IAT0503200927","NHO2018000007"),
("IATT200005670","CASH","CASH","33000","40000","ISU000006","2020-03-05","","1","","CLOSED","IAT0503200927","NHO2018000007"),
("IATT200005671","CARD","DEBIT BCA","44000","44000","ISU000006","2020-03-05","","1","","CLOSED","IAT0503200927","NHO2018000007"),
("IATT200005672","CASH","CASH","33000","100000","ISU000006","2020-03-05","","1","","CLOSED","IAT0503200927","NHO2018000007"),
("IATT200005673","CASH","CASH","113300","115000","ISU000004","2020-03-05","","1","","CLOSED","IAT0503200927","NHO2018000007"),
("IATT200005676","CASH","CASH","117700","150000","ISU000004","2020-03-05","","1","","CLOSED","IAT0503200927","NHO2018000007"),
("IATT200005674","CASH","CASH","120560","130000","ISU000004","2020-03-05","","1","","CLOSED","IAT0503200927","NHO2018000007"),
("IATT200005675","CASH","CASH","60500","100000","ISU000004","2020-03-05","","1","","CLOSED","IAT0503200927","NHO2018000007"),
("IATT200005677","CASH","CASH","39600","100000","ISU000004","2020-03-05","","1","","CLOSED","IAT0503200927","NHO2018000007"),
("IATT200005679","CASH","SHOPPEEPAY","33000","33000","ISU000004","2020-03-05","","1","","CLOSED","IAT0503200927","NHO2018000007"),
("IATT200005678","VOUCHER","GIFT VOUCHER ISOIDE 100K","100000","100000","ISU000004","2020-03-05","","1","","CLOSED","IAT0503200927","NHO2018000007"),
("IATT200005678","CASH","CASH","10000","50000","ISU000004","2020-03-05","","1","","CLOSED","IAT0503200927","NHO2018000007"),
("IATT200005680","CASH","CASH","111100","150000","ISU000004","2020-03-05","","1","","CLOSED","IAT0503200927","NHO2018000007"),
("IATT200005681","CARD","VISA","84700","84700","ISU000004","2020-03-05","","1","","CLOSED","IAT0503200927","NHO2018000007");
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.